/*
 * V2 Blueiot Tag Product Page Styles
 * Design base: 1920px (1rem = 16px)
 * Layout: section (full-width bg) > .v2-container > inner elements
 */

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

#tg-contact {
    scroll-margin-top: 0rem;
    padding-top: 0 !important;
    background: #F5F5F7;
}

#v2-tag-blueiot-tags {
    scroll-margin-top: 0rem;
}

/* ==========================================
 * 1. Hero Banner
 * ========================================== */
.v2-tag-hero {
    position: relative;
    width: 100%;
    height: 33.75rem;
    background: url(/uploads/image/v2/tag/banner.avif) center center no-repeat;
    background-size: cover;
    overflow: hidden;
}
.v2-tag-hero-content {
    padding-top: 5.75rem;
}
.v2-tag-hero-title {
    font-size: 2.75rem;
    color: #323232;
    font-family: "Gotham-Bold", sans-serif;
    line-height: 3.3125rem;
    max-width: 34.0625rem;
}
.v2-tag-hero-body {
    max-width: 42.25rem;
    font-size: 1.375rem;
    color: #323232;
    line-height: 1.625rem;
    margin-top: 0.688rem;
}
.v2-tag-hero-btns {
    display: flex;
    gap: 1.875rem;
    margin-top: 2.375rem;
}
.v2-tag-hero-btn-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #008cff;
    border-radius: 6.25rem;
    height: 2.5rem;
    min-width: 13.625rem;
    padding: 0 1.25rem;
    font-size: 1.125rem;
    font-family: "Gotham-Medium", sans-serif;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.6s ease;
}
.v2-tag-hero-btn-blue:hover {
    background-color: #72BFFF;
    color: #fff;
}
.v2-tag-hero-btn-blue:active {
    background-color: #0067BB;
    color: #fff;
}
.v2-tag-hero-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7.5rem;
    height: 2.5rem;
    padding: 0 1.25rem;
    font-size: 1.125rem;
    font-family: "Gotham-Medium", sans-serif;
    color: #323232;
    border: 0.0625rem solid #323232;
    background-color: transparent;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.6s ease, border-color 0.6s ease, color 0.6s ease;
}
.v2-tag-hero-btn-outline:hover {
    background-color: #008cff;
    border-color: #008cff;
    color: #fff;
}
.v2-tag-hero-btn-outline:active {
    background-color: #0067BB;
    border-color: #0067BB;
    color: #fff;
}

/* ==========================================
 * 2. Stats Bar — 单张白卡 + 渐变 SVG 标题（Figma 744:4600 绝对定位）
 * ========================================== */
.v2-tag-stats-section {
    padding: 5rem 0 4.5rem 0;
    background-color: #F5F5F7;
}
.v2-tag-stats-card {
    background-color: #fff;
    border-radius: 0.875rem;
    box-shadow: 0 0 0.625rem 0 rgba(34, 50, 72, 0.1);
    height: 13.4375rem;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}
.v2-tag-stats-wrap {
    position: relative;
    height: 100%;
}
.v2-tag-stats-vector {
    position: absolute;
    left: 4.041%;
    top: 32.065%;
    width: 91.836%;
    height: 14.233%;
    pointer-events: none;
}
.v2-tag-stats-desc {
    position: absolute;
    top: 52.558%;
    transform: translateX(-50%);
    margin: 0;
    font-size: 1.25rem;
    font-family: "Gotham-Book", sans-serif;
    color: #323232;
    line-height: normal;
    text-align: center;
    box-sizing: border-box;
}
.v2-tag-stats-desc:nth-of-type(1) {
    left: 10.559%;
    width: 8.092%;
}
.v2-tag-stats-desc:nth-of-type(2) {
    left: 37.368%;
    width: 9.079%;
}
.v2-tag-stats-desc:nth-of-type(3) {
    left: 63.388%;
    width: 10.987%;
}
.v2-tag-stats-desc:nth-of-type(4) {
    left: 87.763%;
    width: 12.237%;
}

/* ==========================================
 * 3. Product Cards
 * ========================================== */
.v2-tag-products-section {
    padding: 0;
    background-color: #F5F5F7;
}
.v2-tag-products-section--partner {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.v2-tag-section-title {
    font-size: 2.75rem;
    font-family: "Gotham-Bold", sans-serif;
    color: #323232;
    line-height: 3.3125rem;
}
.v2-tag-section-subtitle {
    font-size: 1.375rem;
    color: #323232;
    line-height: 1.625rem;
    margin-top: 0.75rem;
    max-width: 57.0625rem;
}
.v2-tag-products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 2.375rem;
}
.v2-tag-product-card {
    width: 30rem;
    height: 35rem;
    flex-shrink: 0;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 0.875rem;
    box-shadow: 0 0 0.625rem 0 rgba(34, 50, 72, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 1.875rem 2.5rem 2.5rem;
    box-sizing: border-box;
    transition: all ease 0.6s;
}
.v2-tag-product-card:hover {
    transform: scale(1.01);
}
.v2-tag-product-card-model {
    position: relative;
    top: auto;
    left: auto;
    height: 2.125rem;
    padding: 0 1.125rem;
    border-radius: 3.75rem;
    background-color: #dee9fd;
    color: #006af4;
    font-size: 1.125rem;
    font-family: "Gotham-Medium", sans-serif;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    align-self: flex-start;
    flex-shrink: 0;
    margin: 0;
}
.v2-tag-product-card-body {
    position: relative;
    margin-top: auto;
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    margin-bottom: -2.5rem;
    padding: 1.875rem 2.5rem 2.5rem;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    /* background-color: #fff; */
}
.v2-tag-product-card-title {
    font-size: 1.625rem;
    font-family: "Gotham-Bold", sans-serif;
    color: #323232;
    line-height: 1.9375rem;
    margin-top: 0;
    margin-bottom: 0.5625rem;
}
.v2-tag-product-card-desc {
    font-size: 1.125rem;
    font-family: "Gotham-Book", sans-serif;
    color: #323232;
    line-height: 1.375rem;
    margin: 0 0 1.5rem;
    flex: 1;
}
.v2-tag-card-link {
    display: inline-flex;
    align-items: center;
    font-size: 1.125rem;
    font-family: "Gotham-Medium", sans-serif;
    color: #6d7b8b;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto;
}
.v2-tag-card-link:hover {
    color: #009cff;
}
.v2-tag-product-card:hover .v2-tag-card-link {
    color: #009cff;
}
.v2-tag-card-link-arrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 0.375rem;
    height: 1.5rem;
    color: inherit;
    width: 0.5rem;
    flex-shrink: 0;
}
.v2-tag-card-link-arrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 0.125rem;
    background: currentColor;
    width: 0;
    opacity: 0;
    transition: width 0.6s ease, opacity 0.6s ease;
}
.v2-tag-card-link-arrow::after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-top: 0.1275rem solid currentColor;
    border-right: 0.1275rem solid currentColor;
    transform: rotate(45deg);
    display: inline-block;
    transition: transform 0.6s ease;
}
.v2-tag-card-link:hover .v2-tag-card-link-arrow::after {
    transform: translateX(0.5rem) rotate(45deg);
}
.v2-tag-product-card:hover .v2-tag-card-link-arrow::after {
    transform: translateX(0.5rem) rotate(45deg);
}
.v2-tag-card-link:hover .v2-tag-card-link-arrow::before {
    width: 0.75rem;
    opacity: 1;
    left: 0.3rem;
}
.v2-tag-product-card:hover .v2-tag-card-link-arrow::before {
    width: 0.75rem;
    opacity: 1;
    left: 0.3rem;
}

/* ==========================================
 * 4. Industry Applications — dark section
 * ========================================== */
.v2-tag-apps-section {
    background-color: #001c54;
    padding: 4.5rem 0 5rem;
}
.v2-tag-apps-title {
    font-size: 2.75rem;
    font-family: "Gotham-Bold", sans-serif;
    color: #fff;
    line-height: 3.3125rem;
}
.v2-tag-apps-subtitle {
    font-size: 1.375rem;
    font-family: "Gotham-Book", sans-serif;
    color: #c4daff;
    line-height: 1.625rem;
    margin-top: 0.75rem;
    max-width: 48.4375rem;
}
.v2-tag-apps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 2.3125rem;
}
.v2-tag-app-card {
    width: calc((100% - 5rem) / 3);
    background-color: #0c2d66;
    border-radius: 0.875rem;
    box-shadow: 0 0 0.625rem 0 rgba(34, 50, 72, 0.1);
    padding: 2.5rem;
    box-sizing: border-box;
    min-height: 20.875rem;
    display: flex;
    flex-direction: column;
}
.v2-tag-app-card-icon {
    height: 1.9375rem;
    width: auto;
    margin-bottom: 1.1875rem;
    display: block;
    object-fit: contain;
    object-position: left center;
}
.v2-tag-app-card-title {
    font-size: 1.625rem;
    font-family: "Gotham-Bold", sans-serif;
    color: #fff;
    line-height: 1.9375rem;
    margin-bottom: 0.5625rem;
}
.v2-tag-app-card-desc {
    font-size: 1.125rem;
    font-family: "Gotham-Book", sans-serif;
    color: #c4daff;
    line-height: 1.375rem;
    margin: 0 0 1rem;
    flex: 1;
}
.v2-tag-app-card-rec-label {
    font-size: 1rem;
    font-family: "Gotham-Medium", sans-serif;
    color: #7396d0;
    line-height: normal;
    margin: 0 0 0.75rem;
}
.v2-tag-app-card-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.625rem;
}
.v2-tag-app-card-tag {
    height: 2rem;
    padding: 0 1rem;
    border-radius: 3.75rem;
    background-color: #204980;
    color: #38E59A;
    font-size: 1rem;
    font-family: "Gotham-Medium", sans-serif;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* ==========================================
 * 5. Ecosystem — 3 cards
 * ========================================== */
.v2-tag-eco-section {
    padding: 4.5rem 0 6.25rem;
    background-color: #F5F5F7;
}
.v2-tag-eco-title {
    font-size: 2.75rem;
    font-family: "Gotham-Bold", sans-serif;
    color: #323232;
    line-height: 3.3125rem;
}
.v2-tag-eco-subtitle {
    font-size: 1.375rem;
    color: #323232;
    line-height: 1.625rem;
    margin-top: 0.75rem;
    max-width: 60.375rem;
}
.v2-tag-eco-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.375rem;
}
.v2-tag-eco-card {
    flex: 1;
    height: 34.75rem;
    background-color: #fff;
    border-radius: 0.875rem;
    box-shadow: 0 0 0.625rem 0 rgba(34, 50, 72, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all ease 0.6s;
}
.v2-tag-eco-card:hover {
    transform: scale(1.01);
}
.v2-tag-eco-card-img {
    width: 100%;
    height: 20rem;
    flex-shrink: 0;
    object-fit: contain;
    object-position: center;
    display: block;
    background-color: #fff;
}
.v2-tag-eco-card-body {
    padding: 2.25rem 2.5rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.v2-tag-eco-card-title {
    font-size: 1.625rem;
    font-family: "Gotham-Bold", sans-serif;
    color: #323232;
    line-height: 1.9375rem;
    margin-bottom: 0.75rem;
}
.v2-tag-eco-card-desc {
    font-size: 1.125rem;
    color: #323232;
    line-height: 1.375rem;
    margin-bottom: 1.5rem;
    flex: 1;
}
.v2-tag-eco-card-link {
    display: inline-flex;
    align-items: center;
    font-size: 1.125rem;
    font-family: "Gotham-Medium", sans-serif;
    color: #6d7b8b;
    text-decoration: none;
    transition: color 0.3s ease;
}
.v2-tag-eco-card:hover .v2-tag-eco-card-link,
.v2-tag-eco-card-link:hover {
    color: #009cff;
}
.v2-tag-eco-card-link-arrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 0.375rem;
    height: 1.5rem;
    color: inherit;
    width: 0.5rem;
    flex-shrink: 0;
}
.v2-tag-eco-card-link-arrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 0.125rem;
    background: currentColor;
    width: 0;
    opacity: 0;
    transition: width 0.6s ease, opacity 0.6s ease;
}
.v2-tag-eco-card-link-arrow::after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-top: 0.1275rem solid currentColor;
    border-right: 0.1275rem solid currentColor;
    transform: rotate(45deg);
    display: inline-block;
    transition: transform 0.6s ease;
}
.v2-tag-eco-card:hover .v2-tag-eco-card-link-arrow::after,
.v2-tag-eco-card-link:hover .v2-tag-eco-card-link-arrow::after {
    transform: translateX(0.5rem) rotate(45deg);
}
.v2-tag-eco-card:hover .v2-tag-eco-card-link-arrow::before,
.v2-tag-eco-card-link:hover .v2-tag-eco-card-link-arrow::before {
    width: 0.75rem;
    opacity: 1;
    left: 0.3rem;
}

/* ==========================================
 * 6. Demo Kit CTA
 * ========================================== */
.v2-tag-demo-section {
    padding: 0 0 6.25rem;
    background-color: #F5F5F7;
}
.v2-tag-demo-card {
    background: linear-gradient(266deg, rgba(119, 240, 177, 1) 0%, rgba(0, 140, 255, 1) 31.39%, rgba(0, 104, 208, 1) 54.07%, rgba(0, 45, 127, 1) 88.43%);
    border-radius: 1.125rem;
    box-shadow: 0 0 0.9375rem 0 rgba(34, 50, 72, 0.1);
    height: 26.25rem;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
}
.v2-tag-demo-content {
    padding: 4.5rem 0 4.5rem 3.75rem;
    position: relative;
    z-index: 1;
}
.v2-tag-demo-title {
    font-size: 2.75rem;
    font-family: "Gotham-Bold", sans-serif;
    color: #fff;
    line-height: 3.3125rem;
    margin-bottom: 0.813rem;
}
.v2-tag-demo-body {
    font-size: 1.125rem;
    color: #fff;
    line-height: 1.375rem;
    max-width: 43.063rem;
    margin-bottom: 0.813rem;
}
.v2-tag-demo-highlight {
    font-size: 1.6875rem;
    font-family: "Gotham-Bold", sans-serif;
    color: #fff;
    line-height: 1.688rem;
    margin-bottom: 2rem;
}
.v2-tag-demo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(87deg, rgba(255, 125, 113, 1) 19.45%, rgba(255, 152, 79, 1) 100%);
    border-radius: 3.75rem;
    height: 2.5rem;
    padding: 0 1.25rem;
    font-size: 1.125rem;
    font-family: "Gotham-Medium", sans-serif;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    transition: box-shadow 0.3s ease;
}
.v2-tag-demo-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    background: linear-gradient(93deg, #FFB69A 21.84%, #FFD4B5 95.64%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.v2-tag-demo-btn::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    background: linear-gradient(93deg, #E74034 21.84%, #FF9C45 87.28%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.1s ease;
}
.v2-tag-demo-btn:hover {
    color: #fff;
}
.v2-tag-demo-btn:hover::before {
    opacity: 1;
}
.v2-tag-demo-btn:active::after {
    opacity: 1;
}
.v2-tag-demo-img {
    position: absolute;
    right: 5rem;
    top: -3.9375rem;
    width: 38rem;
    height: 36.4375rem;
    object-fit: contain;
    z-index: 0;
}

/* ==========================================
 * 7. Spec Modal
 * ========================================== */
body.v2-tag-spec-open {
    overflow: hidden;
}
.v2-tag-spec-root {
    position: fixed;
    inset: 0;
    z-index: 10000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.v2-tag-spec-root.is-open {
    opacity: 1;
    visibility: visible;
}
.v2-tag-spec-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}
.v2-tag-spec-viewport {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 61.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.v2-tag-spec-panel {
    width: 100%;
    pointer-events: auto;
}
.v2-tag-spec-dialog {
    position: relative;
    width: 61.25rem;
    max-width: 100%;
    height: 35rem;
    max-height: calc(100vh - 2rem);
    background-color: #fff;
    border-radius: 0.875rem;
    box-shadow: 0 0 1rem 0 rgba(34, 50, 72, 0.3);
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
    .v2-tag-spec-root {
        transition: none;
    }
}
.v2-tag-spec-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent url(/uploads/image/v2/tag/modal-close.svg?ver=2.1.5) center center no-repeat;
    background-size: contain;
    cursor: pointer;
    z-index: 2;
    transition: background-image 0.2s ease;
}
.v2-tag-spec-close:hover,
.v2-tag-spec-close:focus-visible {
    background-image: url(/uploads/image/v2/tag/modal-close-hover.svg?ver=2.1.5);
}
.v2-tag-spec-left {
    position: relative;
    width: 30rem;
    min-width: 30rem;
    max-width: 48%;
    flex-shrink: 0;
    align-self: stretch;
    min-height: 0;
    overflow: hidden;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    border-radius: 0.875rem 0 0 0.875rem;
}
.v2-tag-spec-left-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    box-sizing: border-box;
}
.v2-tag-spec-left-overlay .v2-tag-product-card-model {
    position: static;
    top: auto;
    left: auto;
    margin: 1.875rem 0 0 2.5rem;
    align-self: flex-start;
    flex-shrink: 0;
}
.v2-tag-spec-left-text {
    flex-shrink: 0;
    margin-top: auto;
    padding: 0 2.5rem 2.5rem;
}
.v2-tag-spec-desc {
    font-size: 1.125rem;
    font-family: "Gotham-Book", sans-serif;
    color: #323232;
    line-height: 1.375rem;
    margin: 0.5625rem 0 0;
}
.v2-tag-spec-title {
    font-size: 1.625rem;
    font-family: "Gotham-Bold", sans-serif;
    color: #323232;
    line-height: 1.625rem;
    margin: 0;
}
.v2-tag-spec-main {
    flex: 1;
    min-width: 0;
    width: 25rem;
    max-width: 25rem;
    margin-left: 3.8125rem;
    padding: 1.6875rem 0 2.5rem;
    box-sizing: border-box;
    overflow: hidden;
}
.v2-tag-spec-section-title {
    font-size: 1.375rem;
    font-family: "Gotham-Bold", sans-serif;
    color: #0067bb;
    line-height: normal;
    margin: 0;
}
.v2-tag-spec-section-title + .v2-tag-spec-features {
    margin-top: 1.1875rem;
}
.v2-tag-spec-features + .v2-tag-spec-section-title {
    margin-top: 2.5rem;
}
.v2-tag-spec-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.v2-tag-spec-features li {
    display: flex;
    align-items: flex-start;
    font-size: 1.125rem;
    font-family: "Gotham-Book", sans-serif;
    color: #323232;
    line-height: normal;
    margin-bottom: 0.625rem;
}
.v2-tag-spec-features li:last-child {
    margin-bottom: 0;
}
.v2-tag-spec-features img {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    margin-top: 0.1875rem;
    flex-shrink: 0;
}
.v2-tag-spec-specs {
    margin: 1.125rem 0 0;
    padding: 0;
}
.v2-tag-spec-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 3.125rem;
    padding: 0;
    margin: 0;
    border-bottom: 0.0625rem solid #e8ecf0;
    box-sizing: border-box;
}
.v2-tag-spec-spec-row:first-of-type {
    border-top: 0.0625rem solid #e8ecf0;
}
.v2-tag-spec-spec-row dt {
    font-size: 1.125rem;
    font-family: "Gotham-Medium", sans-serif;
    color: #323232;
    line-height: normal;
    margin: 0;
}
.v2-tag-spec-spec-row dd {
    font-size: 1.125rem;
    font-family: "Gotham-Book", sans-serif;
    color: #323232;
    line-height: normal;
    margin: 0;
    text-align: right;
}

/* ==========================================
 * Responsive: ≤768px
 * ========================================== */
@media (max-width: 768px) {
    .v2-tag-hero {
        height: auto;
        min-height: 25rem;
    }
    .v2-tag-hero-content {
        padding: 3rem 1rem 2rem;
    }
    .v2-tag-hero-title {
        font-size: 1.75rem;
        line-height: 2.125rem;
        white-space: normal;
    }
    .v2-tag-hero-body {
        font-size: 1rem;
        max-width: 100%;
    }
    .v2-tag-hero-btns {
        flex-direction: column;
        gap: 0.75rem;
    }
    .v2-tag-stats-card {
        height: auto;
        min-height: 13.4375rem;
        padding: 0;
    }
    .v2-tag-stats-vector {
        position: static;
        display: block;
        width: 100%;
        height: auto;
        margin: 2rem auto 0;
    }
    .v2-tag-stats-desc {
        position: static;
        transform: none;
        width: 50% !important;
        display: inline-block;
        vertical-align: top;
        font-size: 1rem;
        line-height: normal;
        margin: 0;
        padding: 1rem 0.75rem 0;
        box-sizing: border-box;
    }
    .v2-tag-stats-wrap {
        font-size: 0;
        text-align: center;
        padding-bottom: 1.5rem;
    }
    .v2-tag-app-card-tags {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    .v2-tag-section-title,
    .v2-tag-apps-title,
    .v2-tag-eco-title,
    .v2-tag-demo-title {
        font-size: 1.75rem;
        line-height: 2.125rem;
    }
    .v2-tag-section-subtitle,
    .v2-tag-apps-subtitle,
    .v2-tag-eco-subtitle {
        font-size: 1rem;
    }
    .v2-tag-product-card,
    .v2-tag-app-card {
        width: 100%;
        height: auto;
        min-height: 35rem;
    }
    .v2-tag-eco-card {
        height: auto;
        min-height: 34.75rem;
    }
    .v2-tag-demo-card {
        height: auto;
        min-height: 26.25rem;
    }
    .v2-tag-demo-content {
        padding: 2.5rem 1.5rem;
    }
    .v2-tag-demo-img {
        position: relative;
        top: auto;
        right: auto;
        width: 60%;
        height: auto;
        margin: 0 auto;
        display: block;
    }
    .v2-tag-spec-dialog {
        flex-direction: column;
        height: auto;
        max-height: calc(100vh - 2rem);
        padding: 0;
        overflow-y: auto;
    }
    .v2-tag-spec-close {
        top: 0.5rem;
        right: 0.5rem;
    }
    .v2-tag-eco-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    .v2-tag-spec-left {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        min-height: 18.75rem;
        border-radius: 0;
    }
    .v2-tag-spec-left-overlay .v2-tag-product-card-model {
        margin: 1.875rem 0 0 1.5rem;
    }
    .v2-tag-spec-left-text {
        padding: 0 1.5rem 1.5rem;
    }
    .v2-tag-spec-main {
        max-width: none;
        width: auto;
        margin-left: 0;
        padding: 1.5rem 0 1.5rem;
        overflow-y: auto;
    }
}
