/* ============================================
   Popup Inquiry Modal - 一比一复刻参考网站
   ============================================ */

/* Custom modal overlay */
.inquiry-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.inquiry-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Custom modal container */
.inquiry-modal-container {
    background: #fff;
    border-radius: 20px;
    max-width: 720px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-30px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.inquiry-modal-overlay.active .inquiry-modal-container {
    transform: translateY(0);
}

/* Close button */
.inquiry-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 24px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: color 0.3s;
    border-radius: 50%;
}
.inquiry-modal-close:hover {
    color: #333;
    background: #f5f5f5;
}

/* Popup logo in inquiry form */
.layer_message .top .popup-logo {
    display: block;
    margin: 0 auto 8px;
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* Ensure layer popup looks clean */
.layer_message .top {
    padding-bottom: 16px;
}

.layer_message .top h3 {
    margin-top: 4px;
}

/* ============================================
   Custom Overrides for Bilingual Support
   Safe default: show both languages, JS hides inactive one
   ============================================ */

/* Default: show all content (no display:none by default) */
/* JavaScript handles language switching by hiding inactive class */

/* Language switcher buttons */
.lang-switcher {
    display: flex;
    gap: 4px;
    align-items: center;
}
.lang-btn {
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: inherit;
    border-radius: 100px;
    cursor: pointer;
    font-size: 12px;
    transition: all .3s;
    font-family: inherit;
}
.lang-btn.active {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
}
.header_on .lang-btn {
    border-color: #999;
    color: #333;
}
.header_on .lang-btn.active {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
}

/* Logo text fallback */
.logo-text-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-text-logo .logo-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--theme-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}
.logo-text-logo .logo-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}
.logo-text-logo .logo-words {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-text-logo .logo-words .cn {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}
.logo-text-logo .logo-words .en {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}
.header_on .logo-text-logo .logo-words .cn {
    color: #333;
}
.header_on .logo-text-logo .logo-words .en {
    color: #666;
}

/* Bilingual overrides for header nav */
.header_top .lang-switcher {
    margin-left: 12px;
}

/* Fix icon sizes */
.footer_contact_social a svg {
    fill: currentColor;
    height: 18px;
    width: 18px;
}

/* Product tag */
.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--theme-color);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    z-index: 2;
}

/* Form message */
#formMsg, #homeFormMsg, #inquiryMsg {
    margin-top: 12px;
    text-align: center;
    display: none;
    font-size: 14px;
}

/* Floating contact icons */
.float-contact {
    position: fixed;
    right: 20px;
    bottom: 200px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.float-contact .float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all .3s;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.float-contact .float-btn.whatsapp { background: #25d366; }
.float-contact .float-btn.phone { background: var(--theme-color); }
.float-contact .float-btn.email { background: var(--subtheme-color); }
.float-contact .float-btn:hover { transform: scale(1.1); }
.float-contact .tooltip {
    display: none;
    position: absolute;
    right: 58px;
    white-space: nowrap;
    background: #333;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
}
.float-contact .float-btn:hover .tooltip { display: block; }

/* Verification code row */
.pboot-code-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.pboot-code-row .input { flex: 1; }
.pboot-code-row .code_img img {
    height: 50px;
    cursor: pointer;
    border-radius: 5px;
}

/* ============================================
   Contact Page - 1:1 mimic jszlpc.com layout
   ============================================ */

/* Descriptive text above columns */
.page_contact_desc {
    margin-bottom: 30px;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* Three-column contact layout (mimic page_public_family) */
.page_public_family {
    margin-bottom: 60px;
}
.page_public_family .item {
    flex: 1;
    min-width: 0;
    border-bottom: 1px solid #ddd;
    padding: 30px 0;
}
.page_public_family .item .item_con {
    flex: 1;
    min-width: 0;
    padding-right: 40px;
}
.page_public_family .j_tit {
    height: 53px;
    line-height: 53px;
    font-size: 20px;
    background: rgb(238, 238, 238);
    border-left: 12px solid var(--theme-color);
    margin-top: 10px;
    padding-left: 20px;
    margin-bottom: 30px;
    font-family: 'GothicB';
}

/* Contact detail items within each column */
.contact_detail_list {
    margin-top: 10px;
}
.contact_detail_item {
    margin-bottom: 20px;
}
.contact_detail_item h5 {
    font-family: 'GothicB';
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
}
.contact_detail_item p {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
}
.contact_detail_item p a {
    color: var(--theme-color);
    text-decoration: none;
    transition: all .3s;
}
.contact_detail_item p a:hover {
    text-decoration: underline;
}

/* Inquiry description text */
.contact_inquiry_desc {
    margin-bottom: 18px;
}

/* Contact form - mimic jszlpc.com style */
.public_message_con .page_contact2_form {
    max-width: 800px;
}
.public_message_con .page_contact2_form .input_box {
    margin-bottom: 18px;
}
.public_message_con .page_contact2_form .input_box label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}
.public_message_con .page_contact2_form .input_box .input input,
.public_message_con .page_contact2_form .input_box .input textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color .3s;
    box-sizing: border-box;
    background: #fff;
}
.public_message_con .page_contact2_form .input_box .input input:focus,
.public_message_con .page_contact2_form .input_box .input textarea:focus {
    border-color: var(--theme-color);
}
.public_message_con .page_contact2_form .input_box .input textarea {
    height: 120px;
    padding: 15px;
    resize: vertical;
}
.public_message_con .page_contact2_form .submit_btn {
    margin-top: 10px;
}
.public_message_con .page_contact2_form .submit_btn .contact_btn {
    border: none;
    cursor: pointer;
    outline: none;
    font-family: inherit;
    background: #333 url("../image/contact_ico2.png") no-repeat left 20px center;
    padding: 0 30px 0 40px;
    min-height: 46px;
}
.public_message_con .page_contact2_form .submit_btn .contact_btn:hover {
    background-color: var(--theme-color);
    padding-right: 30px;
}

/* "Get Quote Now" button (mimic reference site's contact_btn) */
.contact_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 30px 0 40px;
    background: url("../image/contact_ico2.png") no-repeat left 20px center #333;
    font-size: 14px;
    border-radius: 100px;
    color: #fff;
    font-weight: 500;
    transition: all .5s;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.contact_btn:hover {
    padding-right: 30px;
    color: #fff;
    text-decoration: none;
    background-color: var(--theme-color);
}

/* Product Listing Layout (一比一复刻参考网站左侧边栏) */
.product_listing_layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
.page_product_menu {
    width: 260px;
    flex-shrink: 0;
}
.page_product_menu .bg {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}
.page_product_menu .menu {
    padding: 20px;
}
.page_product_menu .menu_tit {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--theme-color);
}
.page_product_menu .menu_list .item {
    margin-bottom: 8px;
}
.page_product_menu .menu_list .item .hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all .3s;
}
.page_product_menu .menu_list .item .hd.cur,
.page_product_menu .menu_list .item .hd:hover {
    background: var(--theme-color);
}
.page_product_menu .menu_list .item .hd.cur a,
.page_product_menu .menu_list .item .hd:hover a {
    color: #fff;
}
.page_product_menu .menu_list .item .hd a {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    flex: 1;
}
.page_product_menu .menu_list .item .hd i {
    font-size: 10px;
    color: #999;
    transition: transform .3s;
}
.page_product_menu .menu_list .item .hd.cur i,
.page_product_menu .menu_list .item .hd:hover i {
    color: #fff;
}
.page_product_menu .menu_list .item .bd {
    display: none;
    padding: 8px 0 8px 12px;
}
.page_product_menu .menu_list .item .bd.open {
    display: block;
}
.page_product_menu .menu_list .item .bd a {
    display: block;
    padding: 6px 10px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    border-radius: 3px;
    transition: all .2s;
}
.page_product_menu .menu_list .item .bd a:hover,
.page_product_menu .menu_list .item .bd a.cur {
    background: #e8f4f8;
    color: var(--theme-color);
}
.product_listing_main {
    flex: 1;
    min-width: 0;
}
@media (max-width: 1024px) {
    .product_listing_layout {
        flex-direction: column;
    }
    .page_product_menu {
        width: 100%;
    }
}

/* Market region list items */
.market_region {
    padding: 6px 0;
    border-bottom: 1px dashed #eee;
    font-size: 14px;
    color: #555;
}
.market_region:last-child {
    border-bottom: none;
}

/* ============================================
   Products Page - Left Sidebar + Right Grid
   ============================================ */

/* Products layout container */
.products-layout {
    gap: 30px;
    align-items: flex-start;
}

/* Left sidebar */
.products-sidebar {
    width: 260px;
    flex-shrink: 0;
    position: sticky;
    top: 140px;
}
.products-sidebar .sidebar-group {
    margin-bottom: 20px;
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
}
.products-sidebar .sidebar-group-title {
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: var(--theme-color);
    cursor: default;
}
.products-sidebar .sidebar-group-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.products-sidebar .sidebar-group-list li {
    border-bottom: 1px solid #eee;
}
.products-sidebar .sidebar-group-list li:last-child {
    border-bottom: none;
}
.products-sidebar .sidebar-group-list li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: all .3s;
}
.products-sidebar .sidebar-group-list li a:hover {
    color: var(--theme-color);
    background: #fff;
    padding-left: 26px;
}
.products-sidebar .sidebar-group-list li.active a {
    color: var(--theme-color);
    font-weight: 600;
    background: #fff;
    border-left: 3px solid var(--theme-color);
}
.products-sidebar .sidebar-all {
    margin-top: 10px;
}
.products-sidebar .sidebar-all a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    background: #f0f0f0;
    border-radius: 8px;
    transition: all .3s;
}
.products-sidebar .sidebar-all a:hover {
    background: var(--theme-color);
    color: #fff;
}
.products-sidebar .sidebar-all a.active {
    background: var(--theme-color);
    color: #fff;
}

/* Right main content */
.products-main {
    flex: 1;
    min-width: 0;
}

/* Current category title */
.products-current-cat {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--theme-color);
}
.products-current-cat h2 {
    font-size: 22px;
    color: #333;
    margin: 0;
}

/* ============================================
   About Page - Intro text, VMV cards, Certs
   ============================================ */

/* About intro text */
.about_intro_text {
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.about_intro_text h5 {
    font-size: 24px;
    color: #333;
    margin-bottom: 16px;
}
.about_intro_text p {
    font-size: 15px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 10px;
}

/* About detail items (reuses contact_detail_item styles) */
.about_detail_list {
    margin-top: 10px;
}
.about_detail_item {
    margin-bottom: 20px;
}
.about_detail_item p {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
}
.about_detail_item h5 {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
}

/* Vision, Mission, Values cards */
.vmv-cards {
    gap: 30px;
}
.vmv-card {
    flex: 1;
    min-width: 0;
    text-align: center;
    padding: 40px 30px;
    background: #f8f8f8;
    border-radius: 12px;
    transition: all .3s;
    border-top: 4px solid var(--theme-color);
}
.vmv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.vmv-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--theme-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}
.vmv-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}
.vmv-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* Certificates grid */
.certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.cert-item {
    text-align: center;
    background: #f8f8f8;
    border-radius: 10px;
    padding: 20px;
    transition: all .3s;
}
.cert-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.cert-item .cert-img {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 6px;
}
.cert-item .cert-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.cert-item .cert-name {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* ============================================
   Product Detail - Category tag
   ============================================ */

.pd_category_tag {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 16px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
}

/* ============================================
   Navigation dropdown (nav2)
   ============================================ */

.nav2 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 8px 8px;
    z-index: 100;
    padding: 20px;
}
.nav_li:hover .nav2 {
    display: block;
}
.nav2 .nav2_item {
    margin-bottom: 15px;
}
.nav2 .nav2_item:last-child {
    margin-bottom: 0;
}
.nav2 .nav2_item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}
.nav2 .nav2_item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav2 .nav2_item ul li a {
    display: block;
    padding: 6px 0;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: all .3s;
}
.nav2 .nav2_item ul li a:hover {
    color: var(--theme-color);
    padding-left: 6px;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .float-contact { bottom: 120px; right: 10px; }
    .float-contact .float-btn { width: 40px; height: 40px; font-size: 16px; }
    .page_public_family {
        flex-direction: column;
    }
    .page_public_family .item {
        border-bottom: 1px solid #ddd;
    }
    .products-layout {
        flex-direction: column;
    }
    .products-sidebar {
        width: 100%;
        position: static;
    }
    .vmv-cards {
        flex-direction: column;
    }
    .certs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 768px) {
    .logo-text-logo .logo-icon-circle { width: 36px; height: 36px; font-size: 16px; }
    .logo-text-logo .logo-icon-img { width: 36px; height: 36px; }
    .logo-text-logo .logo-words .cn { font-size: 15px; }
    .logo-text-logo .logo-words .en { font-size: 9px; }
    .page_public_family .item .item_con {
        padding-right: 0;
    }
    .certs-grid {
        grid-template-columns: 1fr;
    }
    .vmv-card {
        padding: 30px 20px;
    }
}

/* ============================================
   Product Detail Page - 一比一复刻 jszlpc.com
   ============================================ */

/* Breadcrumb */
.inner_pos_wrap {
    background: #f5f5f5;
    padding: 12px 0;
}
.inner_pos {
    font-size: 13px;
    color: #666;
    gap: 8px;
}
.inner_pos a {
    color: #333;
    text-decoration: none;
}
.inner_pos a:hover {
    color: var(--theme-color);
}

/* Product detail layout */
.product_detail_layout {
    gap: 30px;
    align-items: flex-start;
}

/* Left sidebar in detail page */
.product_detail_layout .page_product_menu {
    width: 260px;
    flex-shrink: 0;
    position: sticky;
    top: 140px;
}

/* Right main content */
.product_detail_main {
    flex: 1;
    min-width: 0;
}

/* Product detail header */
.pd_detail_hd {
    margin-bottom: 40px;
}
.pd_detail_head_main {
    gap: 40px;
    align-items: flex-start;
}

/* Product images */
.pd_detail_head_main .pics {
    width: 45%;
    flex-shrink: 0;
}
.pd_detail_head_main .pics .mySwiper2 {
    border-radius: 8px;
    overflow: hidden;
    background: #f8f8f8;
}
.pd_detail_head_main .pics .mySwiper2 .img {
    width: 100%;
    padding-bottom: 75%;
    position: relative;
    overflow: hidden;
}
.pd_detail_head_main .pics .mySwiper2 .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product info */
.pd_detail_head_main .infos {
    flex: 1;
    min-width: 0;
}
.pd_detail_head_main .infos_hd h1 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}
.pd_detail_head_main .infos_bd .params {
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.pd_detail_head_main .infos_bd .params p {
    font-size: 14px;
    color: #666;
    margin: 0;
}
.pd_detail_head_main .infos_bd .btns {
    display: flex;
    gap: 15px;
}
.pd_detail_head_main .infos_bd .btns .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 35px;
    background: var(--theme-color);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all .3s;
    border: none;
    cursor: pointer;
}
.pd_detail_head_main .infos_bd .btns .btn:hover {
    background: #005a8c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 153, 0.3);
}
.pd_detail_head_main .infos_bd .btns .btn2 {
    background: #fff;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
}
.pd_detail_head_main .infos_bd .btns .btn2:hover {
    background: var(--theme-color);
    color: #fff;
}

/* Detail introduction */
.pd_detail_intro {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 40px;
}
.pd_detail_intro__tit {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--theme-color);
}
.pd_detail_intro2_bd {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
}
.pd_detail_intro2_bd p {
    margin-bottom: 15px;
}
.pd_detail_intro2_bd .item img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 15px 0;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .product_detail_layout {
        flex-direction: column;
    }
    .product_detail_layout .page_product_menu {
        width: 100%;
        position: static;
    }
    .pd_detail_head_main {
        flex-direction: column;
    }
    .pd_detail_head_main .pics {
        width: 100%;
    }
    .pd_detail_head_main .infos_hd h1 {
        font-size: 22px;
    }
    .pd_detail_intro {
        padding: 25px;
    }
}
@media screen and (max-width: 768px) {
    .pd_detail_head_main .infos_bd .btns {
        flex-direction: column;
    }
    .pd_detail_head_main .infos_bd .btns .btn {
        width: 100%;
    }
}
/* ============================================
   Scenarios Navigation Dropdown
   ============================================ */

/* Scenario dropdown panel */
.nav2_scenario_panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 8px 8px;
    z-index: 100;
    padding: 10px 0;
}
.nav_li_scenario:hover .nav2_scenario_panel {
    display: block;
}
.nav2_scenario_shell {
    display: flex;
    flex-direction: column;
}
.nav2_scenario_item {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: all .3s;
    white-space: nowrap;
}
.nav2_scenario_item:hover {
    background: var(--theme-color);
    color: #fff;
}
.nav2_scenario_item .lang-en,
.nav2_scenario_item .lang-zh {
    display: inline;
}

/* Scenarios page styles */
.scenarios_banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.scenarios_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.scenarios_banner_con {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}
.scenarios_banner_con h1 {
    font-size: 48px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Scene cards grid */
.scenarios_grid {
    padding: 60px 0;
}
.scenarios_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.scenarios_list .item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.scenarios_list .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.scenarios_list .item .img {
    position: relative;
    width: 100%;
    padding-bottom: 66%;
    overflow: hidden;
}
.scenarios_list .item .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.scenarios_list .item:hover .img img {
    transform: scale(1.05);
}
.scenarios_list .item .img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.scenarios_list .item .tit {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    z-index: 2;
}
.scenarios_list .item a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

/* Scenario detail page */
.scenario_detail {
    padding: 60px 0;
}
.scenario_detail_hd {
    text-align: center;
    margin-bottom: 50px;
}
.scenario_detail_hd h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}
.scenario_detail_hd .desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}
.scenario_detail_bd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.scenario_detail_bd .img {
    border-radius: 8px;
    overflow: hidden;
}
.scenario_detail_bd .img img {
    width: 100%;
    height: auto;
    display: block;
}
.scenario_detail_bd .txt h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}
.scenario_detail_bd .txt p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}
.scenario_detail_bd .txt .recommend {
    margin-top: 30px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
}
.scenario_detail_bd .txt .recommend h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}
.scenario_detail_bd .txt .recommend p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .scenarios_list {
        grid-template-columns: 1fr;
    }
    .scenario_detail_bd {
        grid-template-columns: 1fr;
    }
    .scenarios_banner {
        height: 250px;
    }
    .scenarios_banner_con h1 {
        font-size: 32px;
    }
    .nav2_scenario_panel {
        position: static;
        box-shadow: none;
        display: none;
    }
}

/* fix: 防止页面间因垂直滚动条有无不同导致整页横向偏移/抖动 */
html{ overflow-y: scroll; scrollbar-gutter: stable; }

/* 页脚统一布局:删除"全球战略经销商"列后,合作客户/联系我们适度内收填充空白(全站,桌面端) */
@media screen and (min-width:769px){
    .footer_con{ justify-content:space-between; padding-left:13%; padding-right:13%; }
    .footer_con .footer_partner{ flex:0 0 auto; }
    .footer_con .footer_partner_list{ gap:28px; }
    .footer_con .footer_partner_item .img{ min-height:74px; }
    .footer_con .footer_partner_item .img img{ max-height:108px; }
    .footer_con .footer_contact{ flex:0 0 440px; width:440px; }
}

/* 页脚社交按钮:Instagram 配色(其余 facebook/linkedin/whatsapp 已有) */
.footer_contact_social a.icon_instagram{ color:#e4405f; }
.footer_contact_social a.icon_instagram:hover{ color:#e4405f; }
