@charset "UTF-8";

/* ===================== CSS Reset ===================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
textarea {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
time {
    display: block;
}

body {
    line-height: 1;
    color: black;
    background: white;
}

a {
    color: inherit;
    text-decoration: none;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

textarea:focus,
input:focus {
    outline: 0;
}

input {
    border-width: 0;
}

em {
    font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 0;
}

.group:before,
.group:after {
    content: " ";
    display: table;
}

.group:after {
    clear: both;
}

.group {
    zoom: 1;
}

embed,
img,
object,
video {
    max-width: 100%;
}

sup {
    font-size: 58.3%;
    vertical-align: text-top;
}

sub {
    font-size: 58.3%;
    vertical-align: text-bottom;
}

.no-space-between-inline-blocks {
    letter-spacing: normal;
    word-spacing: normal;
}

.displace {
    left: -5000px;
    position: absolute;
}
/* ========================================
   MAXCORE 核心样式表 - 优化版本
   ======================================== */

/* CSS变量定义 */
:root {
    /* 主题色 */
    --primary-color: #14c8c8;
    --primary-hover: #0fa8a8;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #fff;
    --border-color: #eee;
    --theme-color: #14DCDC;
    --theme-title: 60px;

    /* 尺寸 */
    --navbar-height: 64px;
    --button-height: 44px;
    --border-radius: 4px;
    --nav-menu-min-width: 163px;
    --transition-duration: 0.3s;
    --animation-duration: 0.4s;
    --swiper-navigation-sides-offset: 13%;
}

/* ========================================
   基础重置和通用样式
   ======================================== */
@charset "UTF-8";

/* ===================== CSS Reset ===================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
textarea {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
time {
    display: block;
}

body {
    line-height: 1;
    color: black;
    background: white;
}

a {
    color: inherit;
    text-decoration: none;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

textarea:focus,
input:focus {
    outline: 0;
}

input {
    border-width: 0;
}

em {
    font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 0;
}

.group:before,
.group:after {
    content: " ";
    display: table;
}

.group:after {
    clear: both;
}

.group {
    zoom: 1;
}

embed,
img,
object,
video {
    max-width: 100%;
}

sup {
    font-size: 58.3%;
    vertical-align: text-top;
}

sub {
    font-size: 58.3%;
    vertical-align: text-bottom;
}

.no-space-between-inline-blocks {
    letter-spacing: normal;
    word-spacing: normal;
}

.displace {
    left: -5000px;
    position: absolute;
}



html {
    box-sizing: border-box;
    font-size: 16px;
}

input[type="radio"]:focus {
    background: #14DCDC;
    border: 1px solid #14DCDC;
}

*,
*:after,
*:before {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    color: #313131;
    font-family: 'Montserrat', 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: normal;
    background-color: #fff;
    overflow-x: hidden;
    line-height: 1.2;
}

/* 容器样式 */
.container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ========================================
   导航栏样式 - 基础样式
   ======================================== */
header {
    height: var(--navbar-height);
}

.header-navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: var(--navbar-height);
}

.header-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1600px;
    height: 100%;
    box-sizing: border-box;
    position: relative;
}

/* Logo区域样式 */
.logo-section {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}

.logo img {
    max-width: 324px;
    height: auto;
    object-fit: contain;
}

a.logo-link {
    display: block;
    font-size: 0;
}

/* 主菜单区域样式 */
.menu-section {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    overflow: visible;
    margin: 0 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: center;
    height: 100%;
}

.nav-menu li {
    position: relative;
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    /* margin: 0 8px; */
    transition: all 0.3s ease;
    min-width: var(--nav-menu-min-width);
    justify-content: center;
}

.nav-menu li:hover {
    background-color: var(--primary-color);
}

.nav-menu li:hover>a {
    color: #fff;
}

.nav-menu li:last-child {
    margin-right: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 0 10px;
    transition: color 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 64px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-sizing: border-box;
}

.nav-menu a:hover {
    color: #fff;
    background: none;
}

/* 下拉菜单样式 - PC端 */
.dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: var(--nav-menu-min-width);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 10;
    border-radius: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
    border: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.dropdown-menu a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 8px;
    transition: all 0.3s;
    font-size: 15px;
    white-space: nowrap;
    background: none;
    width: 100%;
    border-radius: 4px;
    box-sizing: border-box;
}

.dropdown-menu a:hover {
    background-color: var(--primary-color);
    color: #fff;
    width: 100%;
}

/* 右侧操作区域样式 */
.actions-section {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    justify-content: flex-end;
}

/* 搜索图标样式 */
.search-icon {
    cursor: pointer;
    font-size: 20px;
    color: #333;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border-radius: 0;
}

.search-icon:hover,
.search-icon:focus {
    color: var(--primary-color);
    background: none;
    outline: none;
}

.search-icon .iconfont {
    font-size: 20px;
}

/* Contact Us按钮样式 */
.contact-btn {
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 15px;
    white-space: nowrap;
    text-transform: none;
    letter-spacing: normal;
}

.contact-btn:hover,
.contact-btn:focus {
    background: #000;
    color: #fff;
    outline: none;
}

.nav-menu li.mobile-actions-item {
    display: none;
}

/* 移动端菜单按钮样式 */
.mobile-menu-toggle {
    width: var(--button-height);
    height: var(--button-height);
    background: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-duration) ease;
    color: var(--text-color);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    color: #fff;
    outline: none;
}

/* 三条横线图标样式 */
.hamburger-icon {
    width: 20px;
    height: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon .line {
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 1px;
    transition: all var(--animation-duration) cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* 移动端菜单展开时的hamburger图标动画 */
.mobile-menu-toggle.active .hamburger-icon .line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-icon .line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-icon .line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* banner section*/
.banner-section{
    position: relative;
}

.banner-section .banner-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-content h1.title{
    font-size: 70px;
    margin-bottom: 20px;
    white-space: nowrap;
    color: #fff;
    text-align: center;
}

.banner-content .desc{
    font-size: 30px;
    margin-bottom: 20px;
    white-space: nowrap;
    color: #fff;
    text-align: center;
}

/* ========================================
   Newsletter 样式
   ======================================== */
section.newsletter-container {
    background-color: var(--primary-color);
    height: 180px;
}

.newsletter-container>.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding: 50px 0;
    color: #434343;
}

.newsletter-container .newsletter-description {
    margin-bottom: 0;
}

.newsletter-title {
    font-size: 42px;
}

.newsletter-container .newsletter-description p {
    font-size: 18px;
    margin-top: 12px;
    margin-bottom: 0;
    text-align: left;
}

.newsletter-form {
    font-size: 0;
}

.newsletter-form .email-input {
    width: 350px;
    height: 56px;
    padding: 10px;
    border: none;
    border-radius: 28px;
    font-size: 16px;
    text-indent: 18px;
}

.newsletter-form .submit-btn {
    padding: 14px 36px;
    height: 58px;
    font-size: 18px;
    color: white;
    background-image: linear-gradient(-51deg, #0a9896 0%, #14c8c8 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 4.0px 8.0px 8.0px hsl(0deg 0% 0% / 0.38);
    cursor: pointer;
    margin-left: -50px;
    transition: all 0.2s ease;
}

/* ========================================
   Footer 样式
   ======================================== */
.footer-container {
    background-color: #000;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #fff;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
    padding: 40px 0;
    text-align: left;
    width: 100%;
}

.footer-column {
    flex: 0 0 auto;
    padding: 0;
    margin: 0;
}

.footer-column:first-child {
    margin-left: 0;
    padding-left: 0;
}

.footer-column:nth-child(2) {
    flex: 0 0 auto;
    margin-left: auto;
}

.footer-column:nth-child(3) {
    flex: 0 0 auto;
    margin-left: auto;
}

.footer-column:last-child {
    margin-left: auto;
    margin-right: 0;
    padding-right: 0;
    text-align: left;
}

.footer-column .link {
    display: block;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
    text-decoration: none;
    line-height: 2;
}

.footer-column .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    line-height: 2;
}

.footer-column .sub-menu li {
    margin-bottom: 8px;
}

.footer-column .sub-menu a {
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 24px 0;
    margin: 0 auto;
}

.footer-logo img {
    height: 48px;
    width: auto;
    display: block;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-link a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.social-link img {
    height: 24px;
    width: 24px;
    margin-right: 6px;
    vertical-align: middle;
}

.social-link a:not(:first-child) img {
    margin-right: 0;
}

.footer-line {
    height: 1px;
    background-color: #fff;
    margin: 0 auto;
}

.policy-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    padding: 16px 0;
    margin: 0 auto;
}

.warning-notice {
    margin: 0 auto 40px auto;
    text-align: left;
}

/* Footer 交互效果 */
.footer-column .link:hover,
.footer-column .sub-menu a:hover,
.social-link a:hover,
.policy-wrapper a:hover {
    color: var(--primary-color);
}

.banner-section .banner-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swiper-slide img,.swiper-slide video{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ========================================
   特殊功能按钮
   ======================================== */
.whatsapp-button {
    position: fixed;
    top: 50%;
    right: 20px;
    z-index: 1000;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url('../images/whatsapp.png');
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    animation: breath 1s ease-in-out infinite;
}

@keyframes breath {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 48px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    color: #fff;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 999;
}

.back-to-top:hover {
    background: var(--primary-hover);
}

/* ========================================
   页面内容样式
   ======================================== */
main.page-content {
    min-height: 80vh;
    margin: 0 auto 20px auto;
    text-align: left;
    line-height: 1.6;
    /*padding-top: var(--navbar-height);*/
}


main.page-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    white-space: nowrap;
    color: #fff;
}

.policy-meta,
.policy-intro,
.policy-section,
.disclaimer {
    margin-bottom: 1.6em;
    line-height: 1.6;
    color: #333;
}

.policy-section h2 {
    margin-bottom: 0.6em;
    font-weight: 600;
    color: #222;
}

.policy-section p,
.policy-section ul {
    margin: 0.5em 0 0 0;
    padding-left: 1.2em;
}

.policy-section ul {
    list-style-type: disc;
}

.disclaimer {
    font-size: 0.85em;
    color: #666;
    padding-top: 1em;
}

.privacy-link {
    color: #14DCDC;
    font-weight: bold;
    text-decoration: underline;
}

/* ========================================
   页面滚动控制
   ======================================== */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ========================================
   无障碍优化
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .hamburger-icon .line,
    .menu-section,
    .dropdown-menu {
        transition: none;
    }

    .menu-section.active {
        animation: none;
    }
}

/* 高对比度模式支持 */
@media (prefers-contrast: high) {
    .search-icon,
    .mobile-menu-toggle {
        border: 2px solid var(--text-color);
    }

    .search-icon:hover,
    .mobile-menu-toggle:hover {
        border-color: var(--primary-color);
    }
}

/* ========================================
   响应式设计 - 大屏幕适配
   ======================================== */

/* 超大屏幕 (≥3840px) */
@media (min-width: 3840px) {
    :root {
        --nav-menu-min-width: 200px;
    }

    .container {
        max-width: 2000px;
        padding: 0 100px;
    }

    .header-navbar .container {
        padding: 0 40px;
    }

    .menu-section {
        margin: 0 40px;
    }

    .nav-menu a {
        font-size: 18px;
        padding: 0 15px;
    }

    .logo img {
        max-width: 400px;
    }

    .banner-content h1.title {
        font-size: 100px;
        white-space: nowrap;
    }

    .banner-section .banner-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* 确保所有图片都能全屏显示 */
    img {
        max-width: 100%;
        height: auto;
    }

    /* 滑块图片全屏显示 */
    .slide-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* 优势区域图片全屏显示 */
    .advantage-item .item-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* 大屏幕 (≤1600px) */
@media (max-width: 1600px) {
    :root {
        --nav-menu-min-width: 130px;
    }

    .container {
        max-width: 1200px;
    }

    .header-navbar .container {
        padding: 0 15px;
    }

    .menu-section {
        margin: 0 15px;
    }

    .nav-menu {
        gap: 0;
    }

    .nav-menu a {
        font-size: 12px;
        padding: 0 3px;
    }

    .logo-section {
        margin-right: 0;
    }

    .logo img {
        max-width: 280px;
    }

    .actions-section {
        gap: 15px;
    }

    .contact-btn {
        padding: 6px 15px;
        font-size: 13px;
    }

    .banner-content h1.title {
        font-size: 60px;
        white-space: nowrap;
    }
}

/* 大屏幕 (≤1200px) */
@media (max-width: 1200px) {
    :root {
        --nav-menu-min-width: 120px;
    }

    .header-navbar .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .menu-section {
        margin: 0 15px;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu a {
        padding: 1rem 0.6rem;
        font-size: 0.85rem;
    }

    .logo-section,
    .actions-section {
        min-width: 180px;
        padding: 1rem 1.5rem;
    }

    .banner-content h1.title {
        font-size: 55px;
        white-space: nowrap;
    }
}

/* 中等屏幕 (≤1024px) */
@media (max-width: 1024px) {
    :root {
        --nav-menu-min-width: 100px;
    }

    .container {
        max-width: 900px;
    }

    .header-navbar .container {
        padding: 0 15px;
    }

    .menu-section {
        margin: 0 10px;
    }

    .nav-menu a {
        font-size: 13px;
        padding: 0 5px;
    }

    .logo-section {
        margin-right: 20px;
    }

    .footer-menu {
        flex-wrap: wrap;
        gap: 0;
        justify-content: center;
        width: 100%;
    }

    .footer-column {
        flex: 0 0 auto;
        min-width: 160px;
        padding: 0;
        margin: 0;
    }

    .footer-column:first-child {
        margin-left: 0;
        padding-left: 0;
    }

    .footer-column:last-child {
        margin-left: auto;
        margin-right: 0;
        padding-right: 0;
    }

    .banner-content h1.title {
        font-size: 50px;
        white-space: nowrap;
    }
}

/* ========================================
   响应式设计 - 移动端适配
   ======================================== */

/* 中等屏幕 (≤768px) - 移动端 */
@media (max-width: 768px) {
    :root {
        --nav-menu-min-width: auto;
    }

    /* 导航栏布局调整 */
    .header-navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        max-width: 100%;
        gap: 0;
    }

    /* Logo区域左对齐 */
    .logo-section {
        justify-content: flex-start;
        min-width: auto;
        padding: 0;
        flex: 9;
    }

    .logo img {
        height: auto;
        max-width: 90%;
    }

    /* 隐藏PC端元素 */
    .contact-btn,
    .search-icon {
        display: none;
    }

    /* 显示移动端菜单按钮 */
    .mobile-menu-toggle {
        display: flex;
    }

    /* 移动端菜单样式 */
    .menu-section {
        margin: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #eee;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--animation-duration) cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
    }

    .menu-section.active {
        max-height: 1000px;
        opacity: 1;
        visibility: visible;
    }

    /* 移动端菜单布局 */
    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        height: auto;
        position: static;
        z-index: auto;
        background: none;
        display: block;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #eee;
        margin: 0;
        height: auto;
        transition: all 0.3s ease;
        display: block;
        position: static;
        min-width: var(--nav-menu-min-width);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        padding: 1rem 2rem;
        width: 100%;
        text-align: left;
        font-size: 1rem;
        background: none;
        color: #333;
        height: auto;
        text-transform: none;
        letter-spacing: normal;
        font-weight: 500;
        display: block;
        position: static;
    }

    /* 移动端下拉菜单样式 */
    .dropdown-menu {
        position: static !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        background: #f8f8f8;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-duration) ease;
        padding: 0;
        margin: 0;
        min-width: var(--nav-menu-min-width);
        width: 100% !important;
        z-index: auto;
        display: block;
        float: none;
        clear: both;
    }

    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .dropdown-menu li {
        border-bottom: none;
        padding: 0;
        width: 100% !important;
        margin: 0;
        display: block;
        position: static;
        float: none;
        clear: both;
    }

    .dropdown-menu a {
        padding: 0.75rem 2rem 0.75rem 3rem;
        font-size: 0.9rem;
        color: #333;
        background: none;
        height: auto;
        width: 100% !important;
        box-sizing: border-box;
        transition: all 0.3s ease;
        border-bottom: 1px solid #f0f0f0;
        display: block;
        text-align: left;
        white-space: normal;
        position: static;
        float: none;
        clear: both;
    }

    .dropdown-menu a:last-child {
        border-bottom: none;
    }

    .dropdown-menu a:hover {
        background-color: var(--primary-color);
        color: #fff;
        width: 100%;
    }

    /* 移动端actions菜单项样式 */
    .mobile-actions-item {
        display: none;
    }

    .mobile-actions-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 8px;
        border-top: 1px solid #eee;
        width: 100%;
        box-sizing: border-box;
    }

    .mobile-actions-wrapper .contact-btn {
        display: block;
        width: 100%;
        max-width: 200px;
        padding: 0.75rem 1.5rem;
        background-color: var(--primary-color);
        color: white;
        border: none;
        border-radius: 6px;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.3s;
        font-size: 14px;
        text-align: center;
        white-space: nowrap;
    }

    .mobile-actions-wrapper .contact-btn:hover {
        background: var(--primary-hover);
    }

    /* 移动端下拉菜单展开/折叠控制 */
    .dropdown>a {
        position: relative !important;
    }

    .dropdown>a::after {
        content: '+';
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.2rem;
        color: #333;
        transition: transform var(--transition-duration) ease;
        z-index: 1;
    }

    .dropdown.active>a::after {
        transform: translateY(-50%) rotate(45deg);
    }

    /* 强制移动端垂直布局 */
    .nav-menu,
    .nav-menu li,
    .nav-menu a:not(.dropdown > a),
    .dropdown-menu,
    .dropdown-menu li,
    .dropdown-menu a {
        float: none !important;
        clear: both !important;
        position: static !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
    }

    .dropdown {
        position: static !important;
        display: block !important;
        width: 100% !important;
    }

    .dropdown>a {
        position: relative !important;
        display: block !important;
        width: 100% !important;
    }

    /* Newsletter 移动端响应式 */
    section.newsletter-container {
        height: auto;
        min-height: 200px;
    }

    .newsletter-container>.container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 30px 20px;
        color: #434343;
        text-align: center;
    }

    .newsletter-container .newsletter-description {
        margin-bottom: 20px;
    }

    .newsletter-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .newsletter-container .newsletter-description p {
        font-size: 14px;
        margin-top: 8px;
        margin-bottom: 0;
    }

    .newsletter-form {
        font-size: 0;
        width: 100%;
        max-width: 400px;
    }

    .newsletter-form .email-input {
        width: 100%;
        max-width: 300px;
        height: 50px;
        padding: 10px 15px;
        border: none;
        border-radius: 25px;
        font-size: 14px;
        text-indent: 0;
        box-sizing: border-box;
    }

    .newsletter-form .submit-btn {
        width: 120px;
        height: 50px;
        background-image: linear-gradient(-51deg, #0a9896 0%, #14c8c8 100%);
        box-shadow: -1px 5px 8px 0px rgba(9, 139, 131, 0.43);
        border-radius: 25px;
        margin-left: -30px;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    /* Footer 移动端优化 */
    .footer-container {
        padding: 20px 0;
    }

    .footer-column:nth-child(3) {
        margin-left: 0;
    }

    .footer-column:last-child {
        margin-left: auto;
    }

    .footer-column .link {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .footer-column .sub-menu {
        margin: 0 0 12px 0;
    }

    .footer-column .sub-menu li {
        margin-bottom: 6px;
    }

    .footer-column .sub-menu a {
        font-size: 14px;
    }

    .footer-logo img {
        height: 36px;
    }

    .social-link a {
        font-size: 13px;
    }

    .social-link img {
        height: 20px;
        width: 20px;
    }

    .footer-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer-line {
        margin: 20px auto;
    }

    .policy-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
        text-align: center;
        font-size: 12px;
    }

    .privacy-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .copyright-wrapper {
        text-align: center;
    }

    .warning-notice {
        text-align: center;
        padding: 0 20px;
        font-size: 12px;
    }

    .banner-content h1.title {
        font-size: 36px;
        white-space: normal;
        line-height: 1.3;
        padding: 0 30px;
    }

    /* 确保所有容器不超出屏幕宽度 */
    .container {
        padding: 0 15px;
        max-width: 100%;
        box-sizing: border-box;
    }

    main {
        overflow-x: hidden;
    }

    /* 移动端页面内容顶部间距调整 */
    main.page-content {
        /* padding-top: calc(var(--navbar-height) + 20px); */
    }

    section {
        max-width: 100%;
        box-sizing: border-box;
    }

    main.page-content h1 {
        font-size: 32px;
        margin-bottom: 16px;
        white-space: nowrap;
    }

    .policy-meta, .policy-intro, .policy-section, .disclaimer{
        font-size: 14px;
    }

    .warning-notice{
        margin: 0 auto;
    }
}

/* ========================================
   响应式设计 - 小屏幕适配
   ======================================== */

/* 小屏幕 (≤480px) */
@media (max-width: 480px) {
    .header-navbar .container {
        padding: 0;
    }

    .logo-section,
    .actions-section {
        min-width: auto;
        padding: 0 .8rem;
    }

    .logo img {
        height: auto;
        max-width: 90%;
    }

    .mobile-menu-toggle {
        width: 36px;
        height: 36px;
    }

    :root {
        --nav-menu-min-width: auto;
    }

    .nav-menu a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .dropdown-menu a {
        padding: 0.6rem 2.5rem;
        font-size: 0.85rem;
    }

    .newsletter-title {
        font-size: 24px;
    }

    .newsletter-container .newsletter-description p {
        font-size: 12px;
    }

    .newsletter-form .email-input {
        max-width: 200px;
        height: 45px;
        font-size: 13px;
    }

    .newsletter-form .submit-btn {
        width: 100px;
        height: 45px;
        font-size: 14px;
        padding: 4px 10px;
    }

    .footer-column .link {
        font-size: 13px;
    }

    .footer-column .sub-menu a {
        font-size: 13px;
    }

    .banner-content h1.title {
        font-size: 24px;
        white-space: normal;
        line-height: 1.2;
        padding: 0 20px;
    }
}

.contact-link{
    text-align: center;
    margin: 60px auto 100px auto;
    text-decoration: underline;
    font-weight: bold;
    font-size: 28px;
}
@font-face {
    font-family: "iconfont"; /* Project id 4990638 */
    src: url('../fonts/iconfont.woff2?t=1754294457488') format('woff2'),
    url('../fonts/iconfont.woff?t=1754294457488') format('woff'),
    url('../fonts/iconfont.ttf?t=1754294457488') format('truetype');
    font-display: swap;
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-folder-download:before {
    content: "\e795";
}

.icon-instagram:before {
    content: "\e87f";
}

.icon-facebook:before {
    content: "\e606";
}

.icon-linkedin:before {
    content: "\e627";
}

.icon-youtube:before {
    content: "\e742";
}

.icon-tuite:before {
    content: "\e600";
}

.icon-menu:before {
    content: "\e655";
}

.icon-arrow-down:before {
    content: "\e625";
}

.icon-search:before {
    content: "\e6b9";
}

.icon-arrow-up:before {
    content: "\e60e";
}

.icon-arrow1:before {
    content: "\e7b9";
}

.icon-close:before {
    content: "\e615";
}

.icon-backtotop:before {
    content: "\e689";
}

.icon-download:before {
    content: "\e66c";
}

:root{
    --section-title:36px;
    --product-title:28px;
}

.product-detail {
    display: flex;
    gap: 40px;
    max-width: 70%;
    margin: 100px auto;
}

.product-image {
    flex: 1;
}

.product-image img {
    width: 100%;
    /*max-width: 150px;*/
    height: auto;
    border-radius: 10px;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}


.product-info .product-title {
    font-size: var(--section-title);
    margin-bottom: 17px;
    color: #000;
}

.product-info h2 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #14DCDC;
}


.product-info .features-list {
    line-height: 1.5;
    margin-bottom: 20px;
}

.product-info .features-list li {
    position: relative;
    padding-left: 20px;
}

.product-info .features-list li::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: black;
    border-radius: 50%;
}

.thumbnail-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.thumbnail-item {
    width: 60px;
    height: 90px;
    padding: 6px;
    border: 2px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.thumbnail-item.active {
    border-color: #14DCDC;
}

.thumbnail-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.inquiry-btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #14DCDC;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: fit-content;
    text-decoration: none;
    transition: all 0.3s ease;
}

.inquiry-btn:hover {
    background-color: #12b3b3;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(20, 200, 200, 0.3);
}

section.postless-tech {
    font-size: 0;
}

/* product-description-wrapper */

.product-description-wrapper {
    margin: 40px auto;
}

.tab-description {
    display: flex;
    gap: 40px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    padding: 10px 20px;
    justify-content: center;
}

.tab-description span {
    display: inline-block;
    margin-bottom: 0;
    padding-bottom: 10px;
    position: relative;
    cursor: pointer;
}

.tab-description span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 4px;
    background-color: #14DCDC;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.tab-description span.active::after {
    transform: translateX(-50%) scaleX(1);
}

.tab-content {
    display: none;
    margin: 0 auto;
}

.tab-content.active {
    display: block;
}

.tab-content .feature-wrapper {
    display: flex;
    max-width: 80%;
    flex-direction: row;
    gap: 40px;
    margin: 10px auto 0 auto;
    background-color: #f7f7f7;
    justify-content: center;
    padding: 80px 0;
}

.feature-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex: 0 1 10%;
}

.feature-item .feature-img{
    flex:6;
}

.feature-item .feature-desc {
    flex:4;
    font-size: 16px;
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
}

/* product-description-wrapper */

/* specification-wrapper */
.specification-wrapper {
    max-width: 80%;
    margin: 10px auto 0 auto;
    padding: 20px;
    background-color: #f7f7f7;
    font-family: sans-serif;
}

.specification-list {
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
}

.specification-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background-color: #fff;
}

/* 偶数项背景色 */
.specification-item:nth-child(even) {
    background-color: #f5f5f5;
}

.specification-item .name,
.specification-item .value {
    width: 50%;
    font-size: 16px;
    color: #333;
    text-align: left;
}

.specification-item .name {
    font-weight: bold;
    font-size: 16px;
    color: #707070;
}

.specification-item .value {
    font-size: 16px;
    color: #707070;
}

/* filling-instruction */
.filling-instruction-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 80%;
    justify-content: center;
    margin: 10px auto 0 auto;
    background-color: #f7f7f7;
    /* margin-top: 20px; */
    font-size: 0;
}

.filling-instruction-text {
    flex: 1;
    text-align: left;
    margin: 0 auto;
    padding: 0 6%;
    line-height: 2;
    font-size: 18px;
}

.filling-instruction-text p.highline {
    color: #ed6c00;
    font-weight: bold;
    margin-top: 10px;
}

.filling-img {
    flex: 1;
}

/* product slider */
.product-image-wrapper {
    position: relative;
}

.product-item{
    position: relative;
    max-width: 80%;
    margin: 0 auto;
}

.product-item .product-img img{
    width: 100%;
}

/*.product-image img{*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: contain;*/
/*}*/

.product-content {
    color: #fff;
    margin: 60px auto;
}

.left_image{
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(-50%, -50%);
    max-width: 450px;
    text-align: left;
}

.right_image{
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    max-width: 450px;
    text-align: left;
}

.bottom_image{
    color: #fff;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 450px;
    padding-top: 40px;
}

.product-content h4 {
    font-size: 36px;
    color: #313131;
    padding: 40px 0 0 0;
}

.product-content .product-desc{
    color: #313131;
    max-width: 80%;
    margin: 0 auto;
    padding: 0 10px;
    text-align:center;
}

.product-item .product-img{
    font-size:0;
}

.padding-40{
    padding: 40px 0 20px 0;
}

.center{
    text-align: center;
}

/* customizable */
div.customizable {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
}

h2.customizable-title {
    font-size: var(--section-title);
    color: #313131;
    text-align: center;
}

.customizable-description {
    padding: 0 10px;
    text-align: center;
}

.customizable-product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* related product */
.related-product-title {
    font-size: var(--section-title);
    color: #313131;
    text-align: center;
}

.related-subtitle {
    color: #313131;
    margin-top: 10px;
    text-align: center;
}

.product-slider-wrapper__container {
    width: 100%;
    margin: 60px auto;
}

.product-slider-wrapper__swiper {
    width: 100%;
    padding: 40px 0;
}

.product-slider-wrapper__swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.product-slider-wrapper__swiper .swiper-slide-active {
    opacity: 1;
}

.product-slider-wrapper__swiper .swiper-slide-prev,
.product-slider-wrapper__swiper .swiper-slide-next {
    opacity: 1;
}

.product-slider-wrapper__card {
    background: #eef0f1;
    border-radius: 40px;
    font-size: 20px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 500px;
    transition: transform 0.3s;
    margin: 0 auto;
}

.product-slider-wrapper__title {
    padding-top: 35px;
    font-size: var(--product-title);
}

.product-slider-wrapper__desc {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 300;
}

.product-slider-wrapper__img img {
    object-fit: contain;
    margin-top: 50px;
    transition: transform 0.3s;
}

.product-slider-wrapper__learn-more {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 15px;
    color: #14DCDC;
    border-radius: 20px;
    font-size: 20px;
    text-decoration: none;
    margin-bottom: 30px;
}

.product-slider-wrapper__card:hover .product-slider-wrapper__img img {
    transform: scale(1.1);
}

/* 自定义箭头颜色（可选） */
.product-slider-wrapper__swiper .swiper-button-next,
.product-slider-wrapper__swiper .swiper-button-prev {
    color: #14DCDC;
}

/* faq */
.faq-wrapper {
    max-width: 80%;
    margin: 10px auto 30px auto;
    padding: 20px;
}

.faq-title {
    font-size: var(--section-title);
    color: #313131;
    margin-bottom: 20px;
    text-align: center;
}

.faq-item {
    text-align: left;
    margin-bottom: 10px;
    position: relative;
    padding: 1rem 0;
}

.faq-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background-color: #ccc;
}

.faq-item .question {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #313131;
    font-weight: bold;
    font-size: 18px;
    padding: 1rem 0;
    border-radius: 6px;
    transition: color 0.2s;
}

.faq-item .question:hover {
    color: #0a9896;
}

.question .question-icon,
.answer .answer-icon {
    display: inline-block;
    flex: 0 0 7%;
}

.question .question-icon img{
    max-width: 100%;
    height: auto;
    object-fit: initial;
}

.iconfont {
    font-size: 18px !important;
    font-weight: bold;
}

.faq-item .answer {
    display: flex;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(.4, 0, .2, 1), opacity 0.3s;
    font-size: 16px;
    color: #555;
}


.faq-item.active .answer {
    max-height: 500px;
    /* 足够大即可 */
    opacity: 1;
    margin: 10px auto;
    transition: max-height 0.4s cubic-bezier(.4, 0, .2, 1), opacity 0.3s;
}

.faq-item.active .arrow {
    transform: rotate(90deg);
    color: #14DCDC;
}

.twentytwenty-container {
    width: 80vw;
    margin: 0 auto;
    max-width: 1000px;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.twentytwenty-container img {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    object-fit: contain;
}

/* TwentyTwenty 插件样式覆盖 */
.twentytwenty-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.twentytwenty-before,
.twentytwenty-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.twentytwenty-before img,
.twentytwenty-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.twentytwenty-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #14dcdc !important;
    cursor: ew-resize;
    z-index: 10;
}

.twentytwenty-handle:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #14dcdc !important;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.twentytwenty-handle:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 8px solid #fff !important;
    border-right: 8px solid #fff !important;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.twentytwenty-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
}

.twentytwenty-before-label,
.twentytwenty-after-label {
    display: none;
}

@media (max-width: 768px) {

    :root{
        --section-title:22px;
    }

    .product-item{
        max-width: 100%;
    }

    .product-content{
        margin: 20px auto;
    }

    .product-content .product-desc{
        max-width: 100%;
    }

    .product-description{
        font-size: 14px;
    }

    .inquiry-btn{
        padding: 6px 10px;
    }

    .product-detail{
        flex-direction: column;
        max-width: 100%;
        margin: 0;
        padding: 8px 10px;
        gap: 10px;
    }

    .product-description-wrapper{
        margin: 40px 0;
    }

    h2.customizable-title,
    .related-product-title,
    .faq-title,
    .product-content h4{
        font-size: var(--section-title);
    }


    /* 移动端 tab-description 样式 */
    .tab-description {
        flex-direction: row;
        gap: 8px;
        font-size: 14px;
        padding: 10px 5px;
        align-items: center;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .tab-description span {
        text-align: center;
        padding: 8px 12px;
        /*border: 1px solid #e0e0e0;*/
        border-radius: 6px;
        background: #f8f8f8;
        transition: all 0.3s ease;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .tab-description span.active {
        background: #14DCDC;
        color: #fff;
        border-color: #14DCDC;
    }

    .tab-description span::after {
        display: none;
    }

    /* 移动端 feature-wrapper 样式 */
    .tab-content .feature-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 100%;
        gap: 10px;
        padding: 20px 10px;
        margin: 10px 0 0 0;
        justify-content: flex-start;
    }

    .feature-item {
        flex: 0 0 calc(33.333% - 7px);
        width: calc(33.333% - 7px);
        min-width: 0;
    }

    .feature-item .feature-img {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }

    .feature-item .feature-img img {
        width: 100%;
        max-width: 60px;
        height: auto;
        object-fit: contain;
    }

    .feature-item .feature-desc {
        font-size: 12px;
        margin-top: 0;
        padding: 0 5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .product-slider-wrapper__title{
        font-size: var(--section-title);
    }

    .related-subtitle,
    .product-slider-wrapper__desc,
    .product-slider-wrapper__learn-more,
    .customizable-description{
        font-size: 14px;
    }

    .customizable-product-list {
        margin-top: 30px;
        padding: 0 10px;
        gap: 20px;
    }

    .specification-wrapper{
        max-width: 100%;
        padding: 10px;
    }

    .twentytwenty-container{
        width: 100%;
        max-width: 100%;
        min-height: 250px;
        margin: 0 auto;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .twentytwenty-container img{
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .twentytwenty-wrapper {
        width: 100%;
        height: 100%;
    }

    .twentytwenty-before,
    .twentytwenty-after {
        width: 100%;
        height: 100%;
    }

    .twentytwenty-before img,
    .twentytwenty-after img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .specification-item .name,
    .specification-item .value,
    .faq-item .question{
        font-size: 14px;
    }

    .filling-instruction-wrapper{
        flex-direction: column;
    }

    .faq-title{
        margin-bottom: 10px;
    }

    .question-text{
        margin-left: 10px;
    }

    .faq-wrapper{
        padding: 0;
    }

    .product-slider-wrapper__img img{
        margin-top: 0;
    }
}
