﻿/* ---------------------- 全局字体 ------------------------------ */
@font-face {
    font-family: 'Roboto';
    src: url('/css/fonts/roboto/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/css/fonts/roboto/Roboto-Italic-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}


body {
    font-family: "Roboto", "Arial", "Helvetica", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0 auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.3;
    text-transform: capitalize;
}

h2 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.4;
    text-transform: capitalize;
}

h3 {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.5;
    text-transform: capitalize;
}

h4 {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.5;
    text-transform: capitalize;
}

h5 {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.5;
    text-transform: capitalize;
}

h6 {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.6;
    text-transform: capitalize;
}

p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

a {
    color: #007bff;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

button {
    font-size: 1rem;
    font-weight: bold;
}

input, textarea {
    font-size: 1rem;
    font-family: "Roboto", "Arial", "Helvetica", sans-serif;
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
        min-width: 320px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.35rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1rem;
    }

    h6 {
        font-size: 0.9rem;
    }
}
/* ----------------------------------------------------------------- */


/* ---------------------- 网站头部区域 ------------------------------ */
.yxc-header-container {
    height: 110px;
}
.yxc-header {
    position: fixed;
    top: 0;
    width: 100%;
    min-width: 950px;
    background-color: #fff;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
}
    .yxc-header .header-inner {
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 0px 0px 50px;
    }
    .header-inner .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
@media (max-width: 1100px) {
    .yxc-header {
        width: 100%;
        min-width: 0px;
    }
        .yxc-header .header-inner {
            height: auto;
            padding: 5px 20px;
        }
}

/* ---------------------- Logo ------------------------------ */
.yxc-logo img {
    height: 35px;
    width: auto;
    transition: all 0.3s ease;
    margin: 10px 0px 5px 0px;
}

@media (max-width: 1100px) {
    .yxc-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 3px 0px 0px 0px;
    }

        .yxc-logo img {
            height: 25px;
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- hamburger ------------------------------ */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

@media (max-width: 1100px) {
    .hamburger {
        display: block;
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- breadcrumb ------------------------------ */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.875em;
    color: #666;
    list-style: none;
    padding: 0px;
    justify-content: space-between;
}

    .breadcrumb ol {
        padding: 0px;
    }

    .breadcrumb li {
        display: inline-flex;
        align-items: center;
    }

    .breadcrumb .title {
        font-weight: bold;
    }

    .breadcrumb a {
        color: #007bff;
        text-decoration: none;
        margin: 0 5px;
        transition: color 0.3s;
    }

        .breadcrumb a:hover {
            color: #0056b3;
        }

    .breadcrumb span {
        color: #333;
    }

@media (max-width: 1100px) {
    .breadcrumb {
        padding: 0px 0px;
    }

        .breadcrumb ol {
            padding: 0px;
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 导航区域 ------------------------------ */
.yxc-menu {
    --bridge-y: 12px; 
}
.yxc-menu {
    list-style: none;
    display: flex;
    margin: 0px 0px 0px 15%;
    padding: 0;
    font-size: 0.875rem;
}
    .yxc-menu > li {
        position: static;
        padding: 20px;
    }
        .yxc-menu > li > a {
            appearance: none;
            background: none;
            border: 0;
            font: inherit;
            color: inherit;
            padding: 15px 0;
            cursor: pointer;
            font-weight: bold;
        }

            .yxc-menu > li > a:hover {
                text-decoration: none;
            }
    .yxc-menu .mega {
        position: absolute;
        left: 0;
        transform: none;
        top: calc(100% - 10px);
        width: 100%;
        max-width: none;
        box-sizing: border-box;
        background: #FFF;
        color: #f5f5f5;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        padding: 0px 25px 30px 25px;
        display: none;
        z-index: 999;
        font-size: 0.875rem;
    }
    .yxc-menu > li:hover .mega {
        display: block;
    }
    .yxc-menu .mega-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin: 0 auto;
        padding: 0px;
        /*max-width: 1480px;*/
    }
        .yxc-menu .mega-grid .col {
            margin: 0px 50px 0px 50px;
        }
    .yxc-menu .col h4 {
        color: #000;
        padding: 0px 5px;
        margin: 15px 0px;
        font-weight: normal;
        font-size: 0.875rem;
    }
    .yxc-menu .list {
        margin: 0;
        padding: 0;
        list-style: none;
        border-top: 0.5px solid var(--divider, #2a2a2a);
    }
        .yxc-menu .list li a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 5px 5px;
            border-bottom: 0.5px solid var(--divider, #2a2a2a);
            color: #000;
            font-weight: 500;
            text-decoration: none;
            font-size: 1.2rem;
        }
            .yxc-menu .list li a .arrow {
                width: 22px;
                height: 22px;
                flex: 0 0 22px;
            }

            .yxc-menu .list li a:hover {
                background: #000;
                color: #fff;
            }
                .yxc-menu .list li a:hover .arrow path {
                    color: #ffd400;
                    text-decoration: none;
                }

    .yxc-menu svg:hover {
        fill: white;
    }

    .yxc-menu > li.has-mega > a {
        position: relative;
    }
        .yxc-menu > li.has-mega > a::before {
            content: "";
            position: absolute;
            left: 50%;
            top: calc(100%);
            width: 12px;
            height: 12px;
            background: #000;
            transform: translateX(-50%) rotate(45deg);
            opacity: 0;
        }
    .yxc-menu > li.has-mega:hover > a::before {
        opacity: 1;
    }

    .yxc-menu .mega-wrap {
        display: grid;
        grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
        margin: 0 auto;
        padding: 0px;
        /*max-width: 1480px;*/
    }
        .yxc-menu .mega-wrap .col {
            margin: 0px 50px 0px 50px;
        }
        .yxc-menu .mega-wrap .cards {
            display: grid;
            grid-template-columns: repeat(4,minmax(0,1fr));
            gap: 28px;
        }

        .yxc-menu .mega-wrap .card {
            display: block;
            text-decoration: none;
            color: inherit;
            padding: 0px 0px 20px 0px;
        }

            .yxc-menu .mega-wrap .card:hover {
                background: #f2f2f2;
            }

        .yxc-menu .mega-wrap .card-media {
            width: 100%;
            overflow: hidden;
            background: #d9d9d9;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .yxc-menu .mega-wrap .card-media img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }

        .yxc-menu .mega-wrap .card-title {
            margin-top: 14px;
            font-weight: bold;
            letter-spacing: .2px;
            color: #000;
            text-align: center;
        }

@supports(selector(:has(*))) {
    .yxc-menu > li.has-mega:has(.mega:hover) > a::before {
        opacity: 1;
    }
}
@media (max-width: 1100px) {
    .yxc-menu {
        display: none;
    }
}

.yxc-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 500px;
    height: 100%;
    background-color: #FFF;
    padding: 20px;
    list-style: none;
    font-size: 0.875em;
    z-index: 99999;
}

@media (max-width: 1100px) {
    .menu-container {
        display: none;
    }

    .yxc-mobile-menu.active {
        display: block;
    }

    .mobile-menu-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .toggle-submenu {
        display: flex;
        justify-content: space-between;
        position: relative;
        margin-right: 20px;
        border-bottom: 1px solid #ddd;
    }

        .toggle-submenu a {
            text-decoration: none;
            color: #333;
            padding: 8px 10px;
            display: block;
            font-weight: bold;
        }

    .mobile-dropdown {
        display: none;
        width: auto;
        padding: 5px 0;
        margin-right: 20px;
        border-bottom: 1px solid #ddd;
    }

        .mobile-dropdown a {
            padding: 8px 10px;
            display: block;
            color: #333;
            border-bottom: 1px solid #ddd;
        }
            .mobile-dropdown a:last-child {
                border-bottom: none;
            }

    .close-menu {
        font-size: 15px;
        padding: 0px 10px 15px 10px;
        cursor: pointer;
    }
}

.sign-in-link {
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 20px;
    padding: 20px 0px 0px 0px;
    background-color: #fff;
    font-size: 1rem;
    color: #333;
    border-top: 1px solid #ddd;
    width: 75%;
    max-width: 500px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    .sign-in-link a {
        text-decoration: none;
        color: #333;
        padding: 10px;
        display: inline-block;
    }

.sign-in-mobilelink {
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 20px;
    background-color: #fff;
    font-size: 1em;
    color: #333;
    border-top: 1px solid #ddd;
    width: 75%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
}

    .sign-in-mobilelink a {
        text-decoration: none;
        color: #333;
        display: inline-block;
    }

    .sign-in-mobilelink .item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 10px;
        width: 100%;
        box-sizing: border-box;
        cursor: pointer;
        border-bottom: 1px solid #ddd;
    }

.userdropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0px;
    width: auto;
    min-width: 300px;
    padding: 10px 0;
    z-index: 999;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    font-size: 1em; /* content 001 */
}

    .userdropdown svg {
        flex-shrink: 0;
    }

    .userdropdown a {
        display: flex;
        align-items: center; /* 垂直居中 */
        gap: 8px; /* 图标和文字间距 */
        padding: 15px 25px;
        text-decoration: none;
        color: inherit;
    }

        .userdropdown a:hover {
            font-weight: bold;
        }

.dropdown-container {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    width: 100vw;
    background: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    z-index: 998;
}
/* ----------------------------------------------------------------- */

/* ---------------------- 用户行为区域 ------------------------------ */
.header__icon-list {
    position: relative;
    display: flex;
    gap: 10px;
    margin: 0px 50px 0px 0px;
    min-width: 330px;
}

    .header__icon-list li {
        position: relative;
        display: inline-flex;
    }

    .header__icon-list .userlink {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        transition: all 0.3s ease-in-out;
        color: black;
    }

    .header__icon-list svg {
        stroke: black;
        transition: stroke 0.3s ease-in-out, transform 0.2s ease-in-out;
    }

    .header__icon-list .userlink:hover {
        background-color: rgba(0, 0, 0, 0.1);
    }

    .header__icon-list a:hover svg {
        stroke: #000;
        transform: scale(1.1);
    }

    .header__icon-list .header__cart-count {
        position: absolute;
        top: -2px;
        right: -2px;
        font-size: 12px;
        font-weight: bold;
        color: white;
        background: black;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header__icon-list .cart-progress-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent;
        z-index: 99;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

        .header__icon-list .cart-progress-container .upload-spinner {
            width: 25px;
            height: 25px;
            border: 6px solid #f3f3f3;
            border-top: 6px solid #3498db;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
        }

    .header__icon-list .quotation {
        margin: 0px 5px;
    }
@media (max-width: 1100px) {
    .header__icon-list {
        display: none;
    }
}

h2 {
    scroll-margin-top: 125px;
}
html {
    scroll-behavior: smooth;
}
/* ----------------------------------------------------------------- */

/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域--------------------------- */
.body-container {
    margin: 0px auto;
}
@media (max-width: 1100px) {
    .body-container {
        margin: 80px auto;
    }
}
@media (max-width: 768px) {
    .body-container {
        margin: 35px auto;
    }
}
.trade-container {
    font-size: 0.875rem;
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-首要Banner --------------------------- */
.main-banner {
    background-image: url('/img/Custom_Manufacturing_Services_1.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: left;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    min-height: 750px;
    max-height: 1000px;
    width: 100vw;
}

    .main-banner .content-container {
        position: relative;
        margin: 0 auto;
        width: 100%;
        padding: 0px 50px;
        max-width: 1480px;
    }

    .main-banner .content {
        position: relative;
        z-index: 1;
        max-width: 900px;
    }

        .main-banner .content h1 {
            font-size: 4em;
            margin: 0;
            font-weight: 700;
        }

        .main-banner .content h2 {
            font-size: 1.5em;
            margin-top: 25px;
            font-weight: bold
        }

        .main-banner .content p {
            font-size: 1em; /* content 001 */
            margin: 25px 0px;
            font-weight: 350;
        }

        .main-banner .content .features {
            font-size: 1em; /* content 001 */
            margin: 20px 0px 30px 0px;
        }

        .main-banner .content .feature {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1 1 calc(33.33% - 20px);
            min-width: 250px;
            margin: 10px 0px;
        }

        .main-banner .content .remarks {
            margin: 20px 0px 0px 0px;
            font-size: 0.875rem; 
        }

        .main-banner .content .remark {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1 1 calc(33.33% - 20px);
            margin: 0px 0px;
        }

    .main-banner .tab-container {
        margin: 0px 0px 35px 0px;
    }

    .main-banner .tab {
        margin: 10px 0px 0px 5px;
        padding: 10px 30px;
        border-radius: 25px;
        font-size: 1rem;
        cursor: pointer;
        background-color: transparent;
        color: white;
        transition: all 0.3s ease;
        display: inline-flex;
        gap: 6px;
        border: 3px solid #666;
    }

        .main-banner .tab:hover {
            transform: translateY(-3px);
        }

        .main-banner .tab.active {
            border: 2px solid white;
        }

        .main-banner .tab .status-icon {
            display: none;
        }

        .main-banner .tab.active .status-icon {
            display: inline;
        }

    .main-banner .crumbs {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        color: var(--muted);
        margin-bottom: 20px;
    }

        .main-banner .crumbs a {
            color: inherit;
            text-decoration: none;
        }

        .main-banner .crumbs .sep {
            opacity: .45;
        }

@media (max-width: 767px) {
    .main-banner {
        background-image: url('/img/Custom_Manufacturing_Services_2.webp');
        background-size: cover;
        background-position: center;
        color: white;
        text-align: left;
        padding: 30px 20px 50px 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: auto;
        height: auto;
    }

        .main-banner .tab {
            margin: 10px 0px 0px 0px;
        }

        .main-banner .content-container {
            padding: 0px;
        }

        .main-banner .content {
            position: relative;
            z-index: 1;
            margin: 0px;
        }

            .main-banner .content h1 {
                text-align: left;
                width: 100%;
                margin-bottom: 20px;
                font-size: 1.5em;
            }

            .main-banner .content h2 {
                font-size: 1em;
            }

            .main-banner .content p {
                text-align: left;
                width: 100%;
                margin-bottom: 20px;
            }

            .main-banner .content .features {
                display: flex;
                flex-wrap: wrap;
                justify-content: flex-start;
                width: 100%;
            }

            .main-banner .content .feature {
                display: flex;
                align-items: center;
                margin-bottom: 5px;
                margin: 5px;
                width: 48%;
            }

                .main-banner .content .feature svg {
                    margin-right: 10px;
                }

            .main-banner .content button {
                padding: 12px 20px;
                width: 100%;
                margin-bottom: 5px;
            }

            .main-banner .content .viewmore {
                margin: 0px;
            }

            .main-banner .content .viewmore-a{
                margin: 0px;
            }

            .main-banner .content .remarks {
                margin: 15px 0px 0px 0px;
            }
}

.mb-3dprinting {
    background-image: url('/img/On-demand_3D_printing_services.webp');
    color: #000;
}
.mb-cncmachining {
    background-image: url('/img/Custom_CNC_Machining_Services, China_Factory.webp');
    color: #000;
}
.mb-aerospace {
    background-image: url('/img/Aerospace_parts_manufacturing_solutions.webp');
    color: #fff;
}
    .mb-aerospace .quotation {
        color: #fff;
    }
.mb-automation {
    background-image: url('/img/Automation_Parts_Manufacturing_solutions,customize_your_parts.webp');
    color: #fff;
}
.mb-automotive {
    background-image: url('/img/Automotive_Parts_Manufacturing_Solutions, Customize_Your_Auto_Parts.webp');
    color: #000;
}
.mb-robotics {
    background-image: url('/img/Robotics_Parts_Manufacturing_Solutions, Customize_Your_Robotics_Parts.webp');
    color: #fff;
}
    .mb-robotics .quotation {
        color: #fff;
    }
.mb-electronic {
    background-image: url('/img/Electronics_Device_Parts_Manufacturing, Custom_Parts_For_Every_Device.webp');
    color: #fff;
}

    .mb-electronic .quotation {
        color: #fff;
    }
.mb-medical {
    background-image: url('/img/Medical_Device_parts_Manufacturing.webp');
    color: #fff;
}
.mb-ourstory {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), /* 黑色半透明遮罩 */
        url('/img/Home_Our Story.webp') center/cover no-repeat;
    color: #fff;
    display: grid;
    justify-items: center;
    justify-content: center;
    align-items: center;
}
    .mb-ourstory .content-container {
        padding: 0px;
    }
    .mb-ourstory .content {
        max-width: 950px;
    }
        .mb-ourstory .content h1 {
            text-align: center;
            font-size: 2.5rem;
        }
        .mb-ourstory .content .crumbs {
            display: flex;
            align-items: center;
            justify-items: center;
            justify-content: center;
            text-align: center;
        }
.mb-injection-molding {
    background-image: url('/img/Injection_Molding_Services.webp');
    color: #000;
}
.mb-vacuum-casting {
    background-image: url('/img/Vacuum_Casting_Services.webp');
    color: #fff;
    
}
.mb-sheet-metal-fabrication {
    background-image: url('/img/Custom_Sheet_Metal_Fabrication_Services.webp');
    color: #fff;
}
    .mb-sheet-metal-fabrication .brand-list {
        width: 420px;
        background-color:#fff;
        padding: 10px 5px 0px 10px
    }

.brand-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 35px 0px 0px 0px;
    gap: 15px;
}

.brand img {
    max-width: 100%;
    height: 20px;
}
@media (max-width: 1100px) {

    .mb-ourstory .content {
        width: 100%;
    }
        .mb-ourstory .content h1 {
            font-size: 1.8rem;
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-Banner --------------------------- */
.main-banner-a {
    flex-wrap: wrap;
    position: relative;
    color: #000;
    height: 760px;
    width: 100vw;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end; /* 整体靠右 */
    margin: 0px 0px 50px 0px;
}

    .main-banner-a .left-content {
        width: 47%;
        padding: 0px 50px 0px 0px;
        box-sizing: border-box;
        max-width: 750px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }
    .main-banner-a .right-content {
        width: 50%;
        height: 760px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-size: cover;
        background-position: top;
    }
    .main-banner-a .fdm {
        background-image: url('/img/FDM_3D_printing_services.webp');
    }
    .main-banner-a .sls {
        background-image: url('/img/SLS_3D_printing_services.webp');
    }
    .main-banner-a .sla {
        background-image: url('/img/SLA_3D_printing_services.webp');
    }
    .main-banner-a .slm {
        background-image: url('/img/SLM_3D_printing_services.webp');
    }
    .main-banner-a .mjf {
        background-image: url('/img/MJF_3D_printing_services.webp');
        
    }
    .main-banner-a .cnc-milling {
        background-image: url('/img/CNC_Milling.webp');
    }
    .main-banner-a .cnc-turning {
        background-image: url('/img/CNC_turning.webp');
    }
    .main-banner-a .cnc-drilling {
        background-image: url('/img/cnc_drilling.webp');
    }
    .main-banner-a .cnc-grinding {
        background-image: url('/img/cnc_grinding.webp');
    }
    .main-banner-a .wire-edm {
        background-image: url('/img/Wire_EDM_Services.webp');
    }
    .main-banner-a .five-axis-cnc-machining {
        background-image: url('/img/Five-axis_CNC_machining_services.webp');
    }

    .main-banner-a h1 {
        font-size: 4em;
        margin: 0;
        font-weight: 700;
    }

        .main-banner-a h2 {
            font-size: 1.5em;
            margin-top: 25px;
            font-weight: bold
        }

        .main-banner-a p {
            font-size: 1em; /* content 001 */
            margin: 25px 0px;
            font-weight: 350;
        }

        .main-banner-a .features {
            font-size: 1em; /* content 001 */
            margin: 20px 0px 20px 0px;
        }

        .main-banner-a .feature {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1 1 calc(33.33% - 20px);
            min-width: 250px;
            margin: 10px 0px;
        }
        .main-banner-a .remarks {
            margin: 0px 0px 0px 0px;
            font-size: 1em; /* content 001 */
        }

        .main-banner-a .remark {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1 1 calc(33.33% - 20px);
            margin: 0px 0px;
        }
    .main-banner-a .crumbs {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        color: var(--muted);
        margin-bottom: 20px;
    }

        .main-banner-a .crumbs a {
            color: inherit;
            text-decoration: none;
        }

        .main-banner-a .crumbs .sep {
            opacity: .45;
        }

@media (max-width: 1100px) {
    .main-banner-a {
        height: auto;
    }
        .main-banner-a .left-content {
            padding: 30px 20px;
        }
}
@media (max-width: 768px) {
    .main-banner-a {
        color: #000;
        text-align: left;
        padding: 30px 20px 30px 20px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
        height: auto;
        margin: 0px;
    }
        .main-banner-a .left-content {
            width: 100%;
            padding: 20px 0px 0px 0px;
            height: auto;
        }

        .main-banner-a .right-content {
            display: none
        }
        .main-banner-a .content-container {
            padding: 0px;
        }

        .main-banner-a .content {
            position: relative;
            z-index: 1;
            margin: 0px;
        }

            .main-banner-a .content h1 {
                text-align: left;
                width: 100%;
                margin-bottom: 20px;
                font-size: 1.5em;
            }

            .main-banner-a .content h2 {
                font-size: 1em;
            }

            .main-banner-a .content p {
                text-align: left;
                width: 100%;
                margin-bottom: 20px;
            }

            .main-banner-a .content .features {
                display: flex;
                flex-wrap: wrap;
                justify-content: flex-start;
                width: 100%;
            }

            .main-banner-a .content .feature {
                display: flex;
                align-items: center;
                margin-bottom: 5px;
                margin: 5px;
                width: 48%;
            }

                .main-banner-a .content .feature svg {
                    margin-right: 10px;
                }

            .main-banner-a .content button {
                padding: 12px 10px;
                width: 100%;
            }

        .main-banner-a .remarks {
            margin: 15px 0px 0px 0px;
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-Banner --------------------------- */
.banner {
    background-image: url('/img/Custom-Manufacturing-Services-1.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: left;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100vw;
}

    .banner .content-container {
        position: relative;
        margin: 0 auto;
        width: 100%;
        padding: 0px 50px;
        max-width: 1480px;
    }

    .banner .content {
        position: relative;
        z-index: 1;
        max-width: 850px;
    }

    .banner h1 {
        font-size: 4em;
        margin: 0;
        font-weight: 700;
    }

    .banner h2 {
        font-size: 1.5em;
        margin: 25px 0px;
        font-weight: bold
    }

    .banner p {
        font-size: 1em; /* content 001 */
        margin: 15px 0;
    }

    .banner .features {
        font-size: 1em; /* content 001 */
        color: white;
        margin: 20px 0px 20px 0px;
    }

    .banner .feature {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1 1 calc(33.33% - 20px);
        min-width: 250px;
        margin: 10px 0px;
    }

    .banner .remarks {
        color: white;
        margin: 0px 0px 0px 0px;
        font-size: 1em; /* content 001 */
    }

    .banner .remark {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1 1 calc(33.33% - 20px);
        margin: 0px 0px;
    }
    .banner .tab-container {
        margin: 0px 0px 35px 0px;
    }

    .banner .tab {
        margin: 10px 0px 0px 5px;
        padding: 10px 30px;
        border-radius: 25px;
        font-size: 1rem;
        cursor: pointer;
        background-color: transparent;
        color: white;
        transition: all 0.3s ease;
        display: inline-flex;
        gap: 6px;
        border: 1px solid #666;
    }
        .banner .tab:hover {
            transform: translateY(-3px);
        }
        .banner .tab.active {
            border: 1px solid white;
        }
        .banner .tab .status-icon {
            display: none;
        }
        .banner .tab.active .status-icon {
            display: inline;
        }

.our-story {
    background-image: url('/img/XMAKE_Who-we-are.webp');
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .our-story.content {
        margin: 0px;
    }

.investor {
    background-image: url('/img/XMAKE_Our_Investor.webp');
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .investor .content {
        margin: 0px;
    }

.careers {
    background-image: url('/img/XMAKE_Craft_the_Tomorrow_Together.webp');
    height: 350px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 50px;
}

    .careers .content {
        margin: 0px;
    }

.contact-us {
    background-image: url('/img/XMAKE_Contact_Us_02.webp');
    height: 350px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 50px;
}

    .contact-us .contactregion {
        background-color: #fff;
        color: #000;
        padding: 15px 20px;
        width: 300px;
        margin: 30px 0px;
        font-weight: bold;
        border-radius: 5px;
    }

.streamline {
    background-image: url('/img/xmake_map_01.webp');
    height: 350px;
}

    .streamline h3 {
        font-size: 1.25rem;
        margin: 0;
        font-weight: 700;
    }

    .streamline p {
        font-size: 0.875rem;
    }

.future {
    background-image: url('/img/the_future_of_xmake.webp');
    background-color: #000;
    color: #fff;
    padding: 80px 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 350px;
    margin: 80px 0px 80px 0px;
}

    .future .content {
        position: relative;
        z-index: 1;
        max-width: 750px;
        margin: 0px 0px 0px 30px
    }

    .future h1 {
        margin-bottom: 30px;
    }

@media (max-width: 768px) {
    .banner {
        background-image: url('/img/banner_mobile.webp');
        background-size: cover;
        background-position: center;
        color: white;
        text-align: left;
        padding: 50px 20px 50px 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
        width: auto;
    }

        .banner .content {
            position: relative;
            z-index: 1;
            margin: 0px;
        }

        .banner h1 {
            font-size: 1.8rem;
            text-align: left;
            width: 100%;
            margin-bottom: 20px;
        }

        .banner p {
            font-size: 1rem;
            text-align: left;
            width: 100%;
            margin-bottom: 20px;
        }

        .banner .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start;
            width: 100%;
        }

        .banner .feature {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
            margin: 5px;
            width: 48%;
        }

            .banner .feature svg {
                margin-right: 10px;
            }

        .banner .features span {
            font-size: 1rem;
        }

        .banner button {
            padding: 12px 20px;
            font-size: 1rem;
            width: 100%;
            margin-bottom: 5px;
        }
        .banner .viewmore {
            margin: 0px;
        }

        .banner .remarks {
            margin: 15px 0px 0px 0px;
        }

    #btfoxconnzone {
        margin: 0px;
        padding: 15px 30px;
        border-radius: 5px;
        font-size: 1rem;
        cursor: pointer;
        background-color: transparent;
        border: 1px solid white;
        color: white;
        transition: all 0.3s ease;
    }

    .robotics {
        background-image: url('/img/XMAKE_Medical_Devices_Mobile.webp');
        color: #000;
        height: 700px;
        background-position: center bottom -100px;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        justify-content: flex-start;
        padding: 0px 20px;
    }

        .robotics .features, .robotics .brand-list {
            display: none;
        }

        .robotics .content {
            position: relative;
            z-index: 1;
            margin: 0px;
            width: 85%;
            padding-top: 40px;
        }

    .medical {
        background-image: url('/img/XMAKE_Medical-Devices_Mobile.webp');
        color: #000;
        height: 700px;
        background-position: top;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        justify-content: flex-start;
        padding: 0px 20px;
    }

        .medical .features, .medical .brand-list {
            display: none;
        }

        .medical .content {
            position: relative;
            z-index: 1;
            margin: 0px;
            width: 85%;
            padding-top: 40px;
        }

    .our-story {
        background-image: url('/img/XMAKE_Who-we-are.webp');
        height: 350px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .investor {
        background-image: url('/img/XMAKE_Our_Investor.webp');
        height: 350px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .careers {
        background-image: url('/img/XMAKE_Craft_the_Tomorrow_Together.webp');
        height: 350px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact-us {
        background-image: url('/img/XMAKE_Contact_Us_02.webp');
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 150px 0px;
    }

        .contact-us .contactregion {
            padding: 15px 20px;
            text-align: center;
            margin-top: 30px;
            width: 88%;
        }

    .streamline {
        background-image: url('/img/xmake_map_01.webp');
    }

    .future {
        background-image: none;
        background-color: #000;
    }

        .future h2 {
            text-align: center;
            margin: 30px 0px 50px 0px
        }
}
@media (max-width: 767px) {
    .banner {
        padding: 50px 20px 50px 20px;
    }

        .banner .content-container {
            padding: 0px;
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-主产品 --------------------------- */
.prod-container {
    margin: 0px auto;
    padding: 50px;
    max-width: 1480px;
}

    .prod-container h2 {
        font-size: 2em;
        text-align: center;
        margin: 0px 0px 50px 0px;
    }

    .prod-container .title {
        margin: 0px 0px 50px 0px;
        text-align: center;
    }

        .prod-container .title h2 {
            margin: 0px;
        }

    .prod-container .title-remark {
        text-align: center;
        margin-bottom: 50px;
    }

    .prod-container .grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
        gap: 40px;
    }

    .prod-container .card {
        background: white;
        overflow: hidden;
        text-align: left;
        width: calc(25% - 30px);
        cursor: pointer;
        padding-bottom: 25px;
        display: flex;
        flex-direction: column;
    }

        .prod-container .card:hover {
            background: #f2f2f2;
        }

        .prod-container .card img {
            width: 100%;
            object-fit: cover;
        }

    .prod-container .card-content {
        padding: 15px 5px;
    }

    .prod-container .card h3 {
        margin: 0 0 10px;
        text-align: left
    }

    .prod-container .card p {
        color: #666;
        margin-bottom: 10px;
        font-size: 0.875rem; 
    }

    .prod-container .features {
        font-size: 0.875rem; 
    }
    .prod-container .features .feature {
        display: flex;
        align-items: center;
        margin: 5px 0px;
    }
        .prod-container .features .feature svg {
            margin-right: 3px;
        }

    .prod-container .learn-more a {
        display: inline-block;
        color: #000;
        font-weight: bold;
        text-decoration: none;
        margin-top: 10px;
        font-size: 1em; /* content 001 */
    }

        .prod-container .learn-more:hover {
            text-decoration: underline;
        }
    .prod-container .learn-more a .txt-span {
        margin-right: 20px;
    }

@media (max-width: 1100px) {
    .prod-container {
        padding: 30px 50px;
    }
        .prod-container .card {
            width: calc(50% - 20px);
        }
}

@media (max-width: 767px) {

    .prod-container {
        padding: 30px 20px;
    }
        .prod-container .grid {
            gap: 15px;
        }

        .prod-container .card {
            width: 100%;
        }

            .prod-container .card img {
                height: 220px;
            }

        .prod-container .card-content {
            padding: 10px;
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-主产品 --------------------------- */
.prod-container-2 {
    margin: 0px auto;
    padding: 50px;
    max-width: 1280px;
}

    .prod-container-2 h2 {
        font-size: 2em;
        text-align: center;
        margin: 0px 0px 80px 0px;
    }

    .prod-container-2 .grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
        gap: 40px;
    }

    .prod-container-2 .card {
        background: white;
        overflow: hidden;
        text-align: left;
        width: calc(50% - 30px);
        cursor: pointer;
        padding-bottom: 25px;
        display: flex;
        flex-direction: column;
    }

        .prod-container-2 .card:hover {
            background: #f2f2f2;
        }

        .prod-container-2 .card img {
            width: 100%;
            object-fit: cover;
        }

    .prod-container-2 .card-content {
        padding: 15px;
    }

    .prod-container-2 .card h3 {
        margin: 0 0 10px;
        text-align: left
    }

    .prod-container-2 .card p {
        color: #666;
        margin-bottom: 10px;
        font-size: 1em; /* content 001 */
    }

    .prod-container-2 .learn-more a {
        display: inline-block;
        color: #000;
        font-weight: bold;
        text-decoration: none;
        margin-top: 10px;
        font-size: 1em; /* content 001 */
    }

    .prod-container-2 .learn-more:hover {
        text-decoration: underline;
    }

    .prod-container-2 .learn-more a .txt-span {
        margin-right: 20px;
    }

@media (max-width: 1100px) {
    .prod-container-2 {
        padding: 30px 20px 30px 20px;
    }

        .prod-container-2 .card {
            width: calc(50% - 20px);
        }
}

@media (max-width: 767px) {

    .prod-container-2 .grid {
        gap: 15px;
    }
    .prod-container-2 .card {
        width: 100%;
    }

        .prod-container-2 .card img {
            height: 220px;
        }

    .prod-container-2 .card-content {
        padding: 10px;
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-主产品 --------------------------- */
.prod-containe-black {
    background-color: #000;
    color: #fff;
}
    .prod-containe-black h2 {
        font-size: 2em;
        text-align: center;
        padding: 50px 0px;
        margin: 0px;
    }
    .prod-containe-black .grid-container {
        margin: 0px auto;
        padding: 0px 50px;
        max-width: 1480px;
    }

    .prod-containe-black .grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
        gap: 40px;
    }

    .prod-containe-black .card {
        background-color: #000;
        overflow: hidden;
        text-align: left;
        width: calc(25% - 30px);
        cursor: pointer;
        padding-bottom: 25px;
        display: flex;
        flex-direction: column;
    }

        .prod-containe-black .card img {
            width: 100%;
            object-fit: cover;
        }

    .prod-containe-black .card-content {
        padding: 15px;
    }

    .prod-containe-black .card h3 {
        margin: 0 0 10px;
        text-align: left
    }

    .prod-containe-black .card p {
        color: #fff;
        margin-bottom: 10px;
        font-size: 0.875rem; /* content 001 */
    }

    .prod-containe-black .learn-more a {
        display: inline-block;
        color: #000;
        font-weight: bold;
        text-decoration: none;
        margin-top: 10px;
        font-size: 1em; /* content 001 */
    }

    .prod-containe-black .learn-more:hover {
        text-decoration: underline;
    }

    .prod-containe-black .learn-more a .txt-span {
        margin-right: 20px;
    }

@media (max-width: 1100px) {
    .prod-containe-black {
        padding: 30px 50px;
    }

        .prod-containe-black .card {
            width: calc(50% - 20px);
        }
}

@media (max-width: 767px) {

    .prod-containe-black {
        padding: 30px 20px;
    }

        .prod-containe-black .grid {
            gap: 15px;
        }

        .prod-containe-black .card {
            width: 100%;
        }

            .prod-containe-black .card img {
                height: 220px;
            }

        .prod-containe-black .card-content {
            padding: 10px;
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-内容-a --------------------------- */
.a-container {
    text-align: left;
    padding: 50px 50px 0px 50px;
}

    .a-container .strength-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        padding: 20px;
        margin: 50px 0px;
    }

    .a-container .text-content {
        max-width: 45%;
    }

    .a-container .header-image {
        width: 48%;
        object-fit: cover;
    }

    .a-container .stats-table {
        display: flex;
        justify-content: space-between;
        margin: 30px 0px 0px 0px;
    }

    .a-container .stat {
        text-align: center;
    }

    .a-container .stat-number {
        font-size: 1.5em;
        font-weight: bold;
    }

    .a-container .stat-label {
        font-size: 1em;
        color: #777;
        margin-top: 5px;
    }

    .a-container .item {
        margin-bottom: 20px;
    }

    .a-container .outstory {
        padding: 0px 0px 20px 0px;
        margin: 0px 0px 50px 0px;
    }

@media (max-width: 768px) {
    .mobile-top {
        text-align: left;
        padding: 0px 50px 0px 50px;
    }

    .a-container .strength-section {
        flex-direction: column;
        align-items: center;
    }

    .a-container .text-content {
        max-width: 100%;
    }

    .a-container .header-image {
        width: 100%;
        margin-top: 20px;
    }

    .a-container .stats-table {
        align-items: center;
        gap: 10px;
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-内容-a-1 --------------------------- */
.a1-container {
    text-align: left;
    margin: 50px 0px;
    font-size: 1em; /* content 001 */
}

    .a1-container .strength-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        padding: 0px;
        margin: 0px;
    }

    .a1-container .text-content {
        max-width: 45%;
    }

        .a1-container .text-content .item-content {
            margin: 20px 0px 0px 0px;
        }

    .a1-container .header-image {
        width: 48%;
        object-fit: cover;
    }

@media (max-width: 768px) {
    .a1-container .strength-section {
        flex-direction: column;
        align-items: center;
    }

    .a1-container .text-content {
        max-width: 100%;
        text-align: center;
    }

    .a1-container .header-image {
        width: 100%;
        margin-top: 20px;
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-内容-b --------------------------- */
.b-container {
    margin: 0 auto;
    padding: 80px 50px 50px 50px;
}

    .b-container h2 {
        text-align: center;
        margin: 0px 0px 80px 0px;
    }

    .b-container .maincontent {
        display: flex;
    }

    .b-container .sectors {
        width: 25%;
        display: flex;
        flex-direction: column;
        margin-right: 0px;
    }

    .b-container .sector {
        font-weight: bold;
        cursor: pointer;
        transition: color 0.3s ease, background-color 0.3s ease;
        border: 1px solid #ddd;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 50px 10px;
    }

        .b-container .sector:hover {
            color: #007BFF;
            background-color: #e9f5ff;
        }

        .b-container .sector.active {
            background-color: #000;
            color: #fff;
            border-color: #000;
        }

    .b-container .content {
        flex: 1;
        background-color: #fff;
        border-radius: 10px;
        border-bottom-left-radius: 0px;
        border-top-left-radius: 0px;
        border: 1px solid #ddd;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-left: 0;
        border-left: none;
    }

    .b-container p {
        color: #666;
        margin-bottom: 20px;
        font-size: 1em; /* content 001 */
    }

    .b-container .item-image {
        width: 100%;
    }

    .b-container .textremark {
        padding: 50px;
        overflow-y: auto;
    }

    .b-container .features {
        margin: 30px 0px 10px 0px;
        color: #000;
        font-size: 1em; /* content 001 */
    }

        .b-container .features .item-title {
            font-weight: bold;
            text-transform: uppercase;
        }

    .b-container .feature {
        display: flex;
        align-items: start;
        gap: 10px;
        flex: 1 1 calc(33.33% - 20px);
        min-width: 250px;
        margin: 10px 0px;
    }

        .b-container .feature svg {
            margin: 7px 0px;
        }

@media (max-width: 768px) {
    .b-container {
        margin: 0 auto;
        padding: 80px 20px 50px 20px;
    }

        .b-container .sector {
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease, background-color 0.3s ease;
            border: 1px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 50px 10px;
            width: 80px;
            word-break: break-word;
            white-space: normal;
        }

        .b-container .textremark {
            padding: 20px;
            overflow-y: auto;
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-内容-b-2 --------------------------- */
.b-container-2 {
    margin: 0 auto;
    padding: 50px;
    max-width: 1480px;
}

    .b-container-2 h2 {
        text-align: center;
        margin: 0px 0px 30px 0px;
    }

    .b-container-2 img {
        width: 100%;
    }

    .b-container-2 .maincontainer {
        display: flex;
        justify-content: space-between;
    }
    .b-container-2 .maincontent {
        width: 48%;
    }
    .b-container-2 .sectorcontainer {
        display: flex;
        justify-content: space-between;
    }

    .b-container-2 .sectors {
        width: 50%;
        display: flex;
        flex-direction: column;
        margin-right: 5px;
        font-size: 1em; /* content 001 */
    }

    .b-container-2 .sector {
        font-weight: bold;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: left;
        text-align: left;
        padding: 10px 50px;
        font-size: 0.875rem;
    }

        .b-container-2 .sector:hover {
            background-color: #f2f2f2;
        }

        .b-container-2 .sector.active {
            background-color: #000;
            color: #fff;
        }

    .b-container-2 .content {
        flex: 1;
        background-color: #fff;
        border: 1px solid #ddd;
        margin-left: 0;
    }

    .b-container-2 p {
        color: #666;
        margin-bottom: 20px;
        font-size: 1em; /* content 001 */
    }

    .b-container-2 .item-image {
        width: 100%;
    }

    .b-container-2 .textremark {
        padding: 0px 50px;
        overflow-y: auto;
    }

    .b-container-2 .features {
        margin: 30px 0px 10px 0px;
        color: #000;
        font-size: 1em; /* content 001 */
    }

        .b-container-2 .features .item-title {
            font-weight: bold;
            text-transform: uppercase;
        }

    .b-container-2 .feature {
        display: flex;
        align-items: start;
        gap: 10px;
        flex: 1 1 calc(33.33% - 20px);
        min-width: 250px;
        margin: 10px 0px;
    }

        .b-container-2 .feature svg {
            margin: 7px 0px;
        }

    .b-container-2 .vm-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .b-container-2 .vm-card {
        background-color: #fafafa;
        border-radius: 8px;
        overflow: hidden;
        width: 45%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        text-align: left;
        border-radius: 10px;
        border: 1px solid #ddd;
    }

    .b-container-2 .vm-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .b-container-2 .vm-text {
        padding: 20px 25px;
    }

        .b-container-2 .vm-text h3 {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #222;
        }

        .b-container-2 .vm-text p {
            font-size: 15px;
            line-height: 1.6;
            color: #555;
        }
    .b-container-2 .alertinfo {
        display: flex;
        align-items: center;
        background-color: #f2f2f2;
        margin-top: 20px;
        padding: 15px 20px;
    }
    .b-container-2 .alertinfo > span {
        margin-left: 5px;
    }
@media (max-width: 768px) {
    .b-container-2 {
        margin: 0 auto;
        padding: 50px;
    }

        .b-container-2 .maincontainer {
            flex-direction: column;
        }

        .b-container-2 .maincontent {
            width: 100%;
        }

        .b-container-2 .vm-card {
            width: 100%;
        }

        .b-container-2 .sectors {
            width: 35%;
        }

        .b-container-2 .sector {
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: flex-start;
            justify-content: left;
            text-align: left;
            padding: 10px 10px;
            font-size: 0.875rem;
        }
}
@media (max-width: 767px) {
    .b-container-2 {
        margin: 0 auto;
        padding: 50px 20px;
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-内容-b-3 --------------------------- */
.b-container-3 {
    margin: 0 auto;
    padding: 30px 50px 80px 50px;
}

    .b-container-3 h2 {
        text-align: center;
        margin: 0px 0px 80px 0px;
    }

    .b-container-3 .maincontent {
        display: flex;
    }

    .b-container-3 .sectors {
        width: 25%;
        display: flex;
        flex-direction: column;
        margin-right: 0px;
    }

    .b-container-3 .sector {
        font-weight: bold;
        cursor: pointer;
        transition: color 0.3s ease, background-color 0.3s ease;
        border: 1px solid #ddd;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px 10px;
    }

        .b-container-3 .sector:hover {
            color: #007BFF;
            background-color: #e9f5ff;
        }

        .b-container-3 .sector.active {
            background-color: #000;
            color: #fff;
            border-color: #000;
        }

    .b-container-3 .content {
        flex: 1;
        background-color: #fff;
        border-bottom-left-radius: 0px;
        border-radius: 10px;
        border: 1px solid #ddd;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-left: 0;
        border-left: none;
    }

    .b-container-3 p {
        color: #666;
        margin-bottom: 10px;
        font-size: 1em; /* content 001 */
    }

    .b-container-3 .item-image {
        width: 100%;
    }

    .b-container-3 .textremark {
        padding: 30px 50px 50px 50px;
        overflow-y: auto;
    }

    .b-container-3 .features {
        margin: 30px 0px 10px 0px;
        color: #000;
        font-size: 1em; /* content 001 */
    }

        .b-container-3 .features .item-title {
            font-weight: bold;
            text-transform: uppercase;
        }

    .b-container-3 .feature {
        display: flex;
        align-items: start;
        gap: 10px;
        flex: 1 1 calc(33.33% - 20px);
        min-width: 250px;
        margin: 10px 0px;
    }

        .b-container-3 .feature svg {
            margin: 7px 0px;
        }
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-内容-c-5个元素 --------------------------- */
.c-container-5-items {
    margin: 0px auto;
    padding: 100px 20px;
    box-sizing: border-box;
    background-color: #f2f2f2 !important;
}

    .c-container-5-items h2 {
        text-align: center;
        margin: 0px 0px 80px 0px;
    }

    .c-container-5-items .grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .c-container-5-items .card {
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        width: calc(16% - 30px);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 0px;
    }

        .c-container-5-items .card img {
            object-fit: cover;
        }

    .c-container-5-items .card-content {
        padding: 15px;
        text-align: center;
    }

    .c-container-5-items .card .title {
        font-size: 1rem;
        font-weight: bold;
        line-height: 1.6;
        margin: 0 0 10px;
    }

    .c-container-5-items .card div {
        color: #666;
        margin-bottom: 10px;
        font-size: 1em; /* content 001 */
    }

    .c-container-5-items .learn-more {
        color: #000;
        font-weight: bold;
        text-decoration: none;
        margin-top: 30px;
        text-align: center;
    }

        .c-container-5-items .learn-more:hover {
            text-decoration: underline;
        }

@media (max-width: 1024px) {
    .c-container-5-items .card {
        width: calc(48% - 30px);
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-内容-c-3个元素 --------------------------- */
.c-container-3-items {
    margin: 0px auto;
    padding: 50px;
    max-width: 1480px;
}

    .c-container-3-items h2 {
        font-size: 2em;
        text-align: center;
        margin: 0px 0px 50px 0px;
    }
    .c-container-3-items .title-remark {
        text-align: center;
        margin: 0px 0px 50px 0px;
    }

    .c-container-3-items .grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
        gap: 30px;
    }

    .c-container-3-items .card {
        background: #f2f2f2;
        overflow: hidden;
        width: calc(33% - 18px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0px;
        font-size: 0.9rem;
        cursor: pointer;
    }

        .c-container-3-items .card img {
            object-fit: cover;
            display: block;
            width: 100%;
        }
        .c-container-3-items .card:hover {
            background: #e0e0e0;
            transition: background 0.3s ease;
        }

    .c-container-3-items .icon-img {
        margin: 25px auto 0px;
        height: 50px;
    }

    .c-container-3-items .hr-icon-img {
        margin: 25px auto 0px;
        height: 120px;
    }

    .c-container-3-items .card-content {
        padding: 15px 30px 0px 30px;
        text-align: left;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        font-size: 1em; /* content 001 */
    }

    .c-container-3-items .card h3 {
        font-size: 1.4em;
        margin: 15px 0px;
    }

    .c-container-3-items .card div {
        margin-bottom: 10px;
    }

    .c-container-3-items .card .features {
        margin-top: auto;
    }

    .c-container-3-items .card .title {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1 1 calc(33.33% - 20px);
        min-width: 250px;
        margin: 20px 0px 0px 0px;
        font-weight: bold;
    }

    .c-container-3-items .card .feature {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1 1 calc(33.33% - 20px);
        min-width: 250px;
        margin: 5px 0px;
    }

        .c-container-3-items .card .feature span {
            font-size: 0.9rem;
        }

    .c-container-3-items .learn-more {
        color: #000;
        font-weight: bold;
        text-decoration: none;
        margin-top: 30px;
        text-align: center;
    }

        .c-container-3-items .learn-more:hover {
            text-decoration: underline;
        }

    .c-container-3-items a {
        color: #000;
        text-decoration: none;
    }
@media (max-width: 1100px) {
    .c-container-3-items {
        padding: 50px;
    }
}
@media (max-width: 768px) {
    .c-container-3-items {
        padding: 50px;
    }
        .c-container-3-items .card {
            width: 100%;
        }
}
@media (max-width: 767px) {
    .c-container-3-items {
        padding: 50px 20px;
    }

        .c-container-3-items .card {
            width: 100%;
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-内容-c-3个元素 --------------------------- */
.c-container-3-items-black {
    background-color: #000;
    color: #fff;
}
    .c-container-3-items-black .container {
        margin: 0px auto;
        padding: 50px;
        max-width: 1480px;
    }

    .c-container-3-items-black h2 {
        font-size: 2em;
        text-align: center;
        margin: 0px 0px 80px 0px;
    }

    .c-container-3-items-black .grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .c-container-3-items-black .card {
        background: #f2f2f2;
        overflow: hidden;
        width: calc(33% - 18px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0px;
        font-size: 0.9rem;
        cursor: pointer;
    }

        .c-container-3-items-black .card img {
            object-fit: cover;
            display: block;
            width: 100%;
        }

        .c-container-3-items-black .card:hover {
            background: #e0e0e0;
            transition: background 0.3s ease;
        }

    .c-container-3-items-black .icon-img {
        margin: 25px auto 0px;
        height: 50px;
    }

    .c-container-3-items-black .hr-icon-img {
        margin: 25px auto 0px;
        height: 120px;
    }

    .c-container-3-items-black .card-content {
        padding: 15px 30px 0px 30px;
        text-align: left;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        font-size: 1em; /* content 001 */
    }

    .c-container-3-items-black .card h3 {
        font-size: 1.4em;
        margin: 15px 0px;
    }

    .c-container-3-items-black .card div {
        margin-bottom: 10px;
    }

    .c-container-3-items-black .card .features {
        margin-top: auto;
    }

    .c-container-3-items-black .card .title {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1 1 calc(33.33% - 20px);
        min-width: 250px;
        margin: 20px 0px 0px 0px;
        font-weight: bold;
    }

    .c-container-3-items-black .card .feature {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1 1 calc(33.33% - 20px);
        min-width: 250px;
        margin: 5px 0px;
    }

        .c-container-3-items-black .card .feature span {
            font-size: 0.9rem;
        }

    .c-container-3-items-black .learn-more {
        color: #000;
        font-weight: bold;
        text-decoration: none;
        margin-top: 30px;
        text-align: center;
    }

        .c-container-3-items-black .learn-more:hover {
            text-decoration: underline;
        }

@media (max-width: 1100px) {
    .c-container-3-items-black {
        padding: 50px;
    }
}

@media (max-width: 768px) {
    .c-container-3-items-black {
        padding: 50px;
    }

        .c-container-3-items-black .card {
            width: 100%;
        }
}

@media (max-width: 767px) {
    .c-container-3-items-black {
        padding: 50px 20px;
    }

        .c-container-3-items-black .card {
            width: 100%;
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-内容-d --------------------------- */
.d-container {
    margin: 0px auto;
    padding: 50px;
    max-width: 1480px;
    font-size: 1em;
}

    .d-container h2 {
        text-align: center;
    }

    .d-container .content {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .d-container .features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 80px;
        padding: 50px 0px;
    }

        .d-container .features .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

            .d-container .features .feature-item img {
                width: 50px;
                height: auto;
            }

        .d-container .features h3 {
            margin: 0;
            font-size: 1.35em;
            font-weight: bold;
        }

        .d-container .features p {
            margin: 5px 0 0;
            color: #555;
        }
@media (max-width: 1100px) {
    .d-container {
        padding: 50px;
    }
}
@media (max-width: 768px) {
    .d-container {
        padding: 30px 20px;
    }
        .d-container .features {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-内容-demo --------------------------- */
.demo-container {
    margin: 0px auto;
    padding: 50px;
    box-sizing: border-box;
}

    .demo-container h2 {
        text-align: center;
    }

    .demo-container .content {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .demo-container .gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        max-width: 100%;
        padding: 50px 0px;
    }

    .demo-container .gallery-item {
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
        cursor: pointer;
    }

        .demo-container .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }

        .demo-container .gallery-item:hover {
            transform: scale(1.05);
        }
@media (max-width: 768px) {
    .demo-container {
        padding: 50px 20px;
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-内容-timeline --------------------------- */
.timeline-container {
    background-color: #fff;
    padding: 0px;
    color: #1a1a1a;
    margin: auto;
}

    .timeline-container h2 {
        text-align: center;
        font-weight: 700;
        margin-bottom: 80px;
    }

    .timeline-container .timeline-item {
        display: flex;
        align-items: flex-start;
        position: relative;
        padding: 30px 0px 0px 0px;
    }

    .timeline-container .timeline-dot {
        width: 15px;
        height: 15px;
        border: 3px solid #000;
        border-radius: 50%;
        background-color: #fff;
        position: relative;
        margin-right: 20px;
        z-index: 1;
        flex-shrink: 0;
        top: 15px;
    }

        .timeline-container .timeline-dot.filled {
            background-color: #444;
        }

    .timeline-container .timeline-item::before {
        content: "";
        position: absolute;
        top: 65px;
        left: 9px;
        width: 2px;
        height: calc(100% - 20px);
        background-color: #ccc;
        z-index: 0;
    }
    .timeline-container .timeline-item:last-child::before {
        top: -10px;
    }

    .timeline-container .timeline-icon {
        width: 60px;
        margin-right: 20px;
        flex-shrink: 0;
    }

    .timeline-container .timeline-content {
        display: flex;
        align-items: flex-start;
    }

        .timeline-container .timeline-content h3 {
            margin: 0px 0px 10px 0px;
        }

        .timeline-container .timeline-content p {
            padding: 0px;
            margin: 0px;
            font-size: 0.875em;
        }

/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-内容-trusted --------------------------- */
.trusted-container {
    padding: 60px 30px;
    text-align: center;
    background-color: #f2f2f2 !important;
}

    .trusted-container h2 {
        font-weight: 700;
        margin-bottom: 80px;
        color: #333;
    }

    .trusted-container .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 35px 60px;
        max-width: 1000px;
        margin: 0 auto 50px auto;
    }

    .trusted-container .feature-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        font-size: 16px;
        color: #333;
        padding-left: 10px;
    }

        .trusted-container .feature-item svg {
            margin: 0px 15px 0px 0px;
        }

    .trusted-container .checkmark {
        display: inline-block;
        background-color: #4a4a4a;
        color: white;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
        margin-right: 10px;
        flex-shrink: 0;
    }

    .trusted-container .logo-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 100px;
        align-items: center;
        margin: 80px 0px 0px 0px;
    }

        .trusted-container .logo-grid img {
            height: 25px;
            object-fit: contain;
        }


/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-内容-stats-container --------------------------- */
.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    padding: 60px 20px;
    gap: 50px;
    flex-wrap: wrap;
}

    .stats-container .stat-item {
        text-align: center;
        color: #fff;
        width: 300px;
    }

        .stats-container .stat-item .icon {
            width: 60px;
            height: 60px;
            margin-bottom: 20px;
        }

        .stats-container .stat-item .number {
            font-size: 2em;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .stats-container .stat-item .label {
            font-size: 1em;
            color: #ccc;
        }

@media screen and (max-width: 768px) {
    .stats-container {
        gap: 20px;
        padding: 40px 10px;
    }

        .stats-container .stat-item {
            width: 45%;
        }

            .stats-container .stat-item .icon {
                width: 40px;
                height: 40px;
                margin-bottom: 10px;
            }

            .stats-container .stat-item .number {
                font-size: 1.5em;
            }

            .stats-container .stat-item .label {
                font-size: 1em; /* content 001 */
            }
}

/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-内容-investors --------------------------- */
.investors-section {
    padding: 60px 20px 80px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

    .investors-section h2 {
        margin-bottom: 80px;
    }

    .investors-section .investor-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .investors-section .investor-card {
        background: #fff;
        padding: 12px 20px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
        margin: 10px;
    }

        .investors-section .investor-card img {
            max-height: 100px;
            height: auto;
            width: auto;
            max-width: 100%;
            display: block;
        }

/* ----------------------------------------------------------------- */


/* ---------------------- 网站Body区域-内容-FAQ --------------------------- */
.faq-section-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    display: grid;
    grid-template-columns: 3fr 7fr;
    gap: 100px;
    margin: 0 auto;
    padding: 50px;
    max-width: 1480px;
}
        .faq-section-wrapper .left-content h2 {
            font-weight: bold;
            margin: 0px;
            color: #333;
            width: 200px;
        }
.faq-container {
    background: #fff;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    transition: background 0.3s ease;
}
    .faq-item:first-child {
        padding-top: 0px;
    }
    .faq-item:hover {
        background: #f5f5f5;
    }

.faq-question {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0px;
    border-radius: 5px;
    transition: background 0.3s;
}

    .faq-question:hover {
        background: rgba(0, 0, 0, 0.05);
    }

    .faq-question .icon {
        font-weight: bold;
        text-align: center;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .faq-question span {
        font-size: 1.25rem;
    }

.faq-answer {
    display: none;
    padding: 20px;
    line-height: 1.6;
}

.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    opacity: 1;
    max-height: 200px;
}
@media (max-width: 1100px) {
    .faq-section-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        display: block;
    }

        .faq-section-wrapper .left-content h2 {
            width: 100%;
            margin-bottom: 30px;
        }
}
@media (max-width: 767px) {
    .faq-section-wrapper {
        padding: 50px 20px 50px 20px;
    }
}

/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-foot-Banner --------------------------- */
.foot-banner {
    background-image: url('/img/Start_your_project_now_1.webp');
    background-size: cover;
    background-position: center;
    padding: 50px 0px 80px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 100vw;
    margin: 50px 0px;
}

    .foot-banner h2 {
        text-align: center;
    }

    .foot-banner .learn-more {
        display: inline-block;
        color: #000;
        font-weight: bold;
        text-decoration: none;
        margin: 0px;
        padding: 0px;
    }

        .foot-banner .learn-more:hover {
            text-decoration: underline;
        }

        .foot-banner .learn-more a {
            display: inline-block;
            padding: 10px 20px;
            background-color: black;
            color: white;
            font-weight: bold;
            text-align: center;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            height: 25px;
            cursor: pointer;
            margin: 10px 0px;
        }

            .foot-banner .learn-more a:hover {
                background-color: #808080;
                color: #fff;
            }

    .foot-banner .remarks {
        margin: 10px 0px 0px 0px;
    }

    .foot-banner .remark {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1 1 calc(33.33% - 20px);
        margin: 0px 0px;
    }

        .foot-banner .remark span {
            font-size: 1em; /* content 001 */
        }
.fb-2 {
    background-image: url('/img/Start_your_project_now_2.webp');
    color: #000;
}
@media (max-width: 1100px) {
    .foot-banner {
        width: 100%;
        margin-top: 0px
    }

        .foot-banner h3 {
            font-size: 1.2em;
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站底部区域 --------------------------- */
.foot-container {
    padding: 50px 50px 0px 50px;
    margin: 0;
    background-color: #000;
    display: flex;
    flex-direction: column;
    font-size: 0.875em;
    margin: 50px 0px 0px 0px;
}

    .foot-container .foot-logo {
        display: flex;
        align-items: flex-start;
        margin: 0px 0px 30px 0px;
    }

        .foot-container .foot-logo img {
            height: 30px;
            width: auto;
            vertical-align: top;
            transition: all 0.3s ease;
        }

    .foot-container .horizontal-layout {
        display: grid;
        grid-template-columns: 2fr 6fr 2fr; 
        gap: 10px; 
        padding: 0px 0px 10px 0px;
    }

        .foot-container .horizontal-layout .foot-menu-container {
            display: flex;
            justify-content: space-between
        }

        .foot-container .horizontal-layout .foot-menu-container > div {
            width: 25%;
        }

.foot-container .address .title {
    margin: 10px 0px 10px 0px;
}

    .foot-container .address p {
        margin: 0px 0px 30px 0px;
    }

    .foot-container .title, .foot-container .title a {
        margin: 0px 0px 20px 0px;
        color: #fff;
        font-size: 1.25rem;
        text-transform: capitalize;
        font-weight: 500;
    }

    .foot-container p, .foot-container ul li {
        font-size: 1em; /* content 001 */
        color: #c1c1c1;
        margin-bottom: 20px;
    }

    .foot-container p, .foot-container ul li a {
        display: flex;
    }

        .foot-container p, .foot-container ul li a svg {
            margin-right: 5px;
        }

    .foot-container ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .foot-container .footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 0.5px solid #555;
        padding: 5px 0px;
    }

        .foot-container .footer p {
            margin: 0;
            font-size: 0.875rem;
        }

    .foot-container a {
        color: #c1c1c1;
        text-decoration: none;
        font-size: 0.875rem;
    }

        .foot-container a:hover {
            text-decoration: underline;
        }

    .foot-container .address,
    .foot-container .services,
    .foot-container .industries,
    .foot-container .resources,
    .foot-container .company {
        margin: 0;
        padding: 15px 10px 15px 0px;
        color: #c1c1c1 !important;
    }
    .foot-container .address {
        margin-left: 5px;
    }

#webterms a {
    margin: 0px 5px;
}
@media (max-width: 1100px) {
    .foot-container {
        padding: 30px 50px 10px 50px;
    }
        .foot-container .horizontal-layout {
            display: grid;
            grid-template-columns: 1.6fr 6.9fr 1.5fr;
            gap: 10px;
        }
        .foot-container .title {
            font-size: 1rem;
        }
}
@media (max-width: 767px) {
    .foot-container {
        padding: 20px 0px 0px 0px;
        margin: 0;
        background-color: #000;
    }

        .foot-container .title {
            margin: 0px 0px 15px 0px;
            color: #fff;
            font-size: 1em;
            text-transform: uppercase;
            font-weight: bold;
        }

        .foot-container .address p {
            margin: 0px 0px 10px 0px;
            text-align: left
        }

        .foot-container .horizontal-layout {
            display: flex;
            flex-direction: column;
        }

            .foot-container .horizontal-layout > div {
                width: 100%;
                padding: 10px 20px;
            }

            .foot-container .horizontal-layout .foot-menu-container {
                display: flex;
                flex-direction: column;
            }

                .foot-container .horizontal-layout .foot-menu-container > div {
                    width: 100%;
                    padding: 0px;
                }


        .foot-container .footer {
            margin: 0px 20px;
        }
        .foot-container .footer p {
            font-size: 1em;
        }

        .foot-container .address,
        .foot-container .services,
        .foot-container .industries,
        .foot-container .resources,
        .foot-container .company {
            margin: 0;
            padding: 0px;
            color: #c1c1c1 !important;
        }

    #webterms {
        display: none
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 特定区域 --------------------------- */
.customer-say {
    background-color: #f2f2f2 !important;
}

    .customer-say .icon-img {
        margin: 50px auto 20px auto;
    }
/* ----------------------------------------------------------------- */

/* ---------------------- 灰色遮罩层 --------------------------- */
.overlay {
    position: fixed;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 900;
}

    .overlay.active {
        display: block;
    }
/* ----------------------------------------------------------------- */

/* ---------------------- 产品订购导航 --------------------------- */
.process-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 30px 20px 30px;
    position: relative;
}

    .process-nav .process-item {
        display: flex;
        align-items: center;
        cursor: pointer;
        color: #333;
        font-weight: 500;
        transition: color 0.3s ease;
        width: 30%;
        padding: 10px;
        border-bottom: 1px solid #ccc;
    }

        .process-nav .process-item a {
            color: #333;
            text-decoration: none;
            font-weight: normal;
        }

            .process-nav .process-item a:hover {
                text-decoration: underline;
            }

        .process-nav .process-item img {
            width: 40px;
            height: 40px;
            margin: 0px 15px;
        }

        .process-nav .process-item.active {
            color: black;
            font-weight: bold;
            border-bottom: 1px solid #000;
        }

            .process-nav .process-item.active a {
                color: black;
                font-weight: bold;
            }

@media (max-width: 768px) {
    .process-nav {
        display: none;
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 产品订购区域 --------------------------- */
.prodorder-container {
    display: flex;
    align-items: flex-start;
    margin: 10px 30px 100px 30px;
}

    .prodorder-container .product-description {
        width: 55%
    }

    .prodorder-container .product-gallery {
        position: relative;
        display: flex;
        align-items: center;
        align-items: flex-start;
    }

    .prodorder-container .thumbnail-container {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 76px;
        margin: 0px 5px 0px 10px;
        overflow: hidden;
        height: 650px;
    }

    .prodorder-container .thumbnail {
        width: 75px;
        height: auto;
        cursor: pointer;
        margin-bottom: 10px;
        border: 1px solid transparent;
        transition: border-color 0.3s;
        position: relative;
        border-radius: 8px;
    }

        .prodorder-container .thumbnail:hover {
            border-color: #666;
        }

        .prodorder-container .thumbnail.active {
            border-color: #666;
        }

    .prodorder-container .scroll-up,
    .prodorder-container .scroll-down {
        background-color: #f8f9fa;
        border: none;
        color: #ccc;
        font-size: 16px;
        cursor: pointer;
        padding: 5px;
        position: absolute;
        z-index: 10;
        width: 75px;
        margin: 0px 5px 0px 10px;
    }

    .prodorder-container .scroll-up {
        top: 0;
    }

    .prodorder-container .scroll-down {
        bottom: 0;
    }

        .prodorder-container .scroll-up:disabled,
        .prodorder-container .scroll-down:disabled {
            color: #ccc;
            cursor: not-allowed;
        }

    .prodorder-container .main-image {
        width: 660px;
        min-height: 660px;
    }

        .prodorder-container .main-image img {
            width: 100%;
            height: auto;
            border: 1px solid #ccc;
            border-radius: 8px;
        }

    .prodorder-container .upload-progress-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #f2f2f2;
        z-index: 99;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

        .prodorder-container .upload-progress-container .upload-spinner {
            width: 50px;
            height: 50px;
            border: 6px solid #f3f3f3;
            border-top: 6px solid #3498db;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
        }

        .prodorder-container .upload-progress-container .upload-hint-text {
            color: #D97706;
            padding: 20px;
            font-size: 1em; /* content 001 */
        }

    .prodorder-container .upload-container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 700px;
        height: 500px;
        margin: 0px auto;
        border: 2px dashed #ccc;
        border-radius: 10px;
        text-align: center;
        color: #000;
        transition: border-color 0.3s ease;
        cursor: pointer;
        background-color: #f2f2f2 !important
    }

        .prodorder-container .upload-container:hover {
            border-color: #000;
        }

        .prodorder-container .upload-container .upload-text-1 {
            width: 70%;
            font-weight: bold
        }

        .prodorder-container .upload-container .upload-text-2 {
            margin: 10px 0px 0px 0px;
            width: 80%;
            text-align: left;
            opacity: 0.5;
        }

        .prodorder-container .upload-container button {
            padding: 15px 90px;
            background-color: #000;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            margin: 30px;
            font-size: 1em;
        }

            .prodorder-container .upload-container button:hover {
                background-color: #5a5a5a;
            }

    .prodorder-container .product-file-edit {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 700px;
        margin: 0px auto;
        border: 1px solid #ccc;
        border-radius: 10px;
        text-align: center;
        color: #000;
        transition: border-color 0.3s ease;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

        .prodorder-container .product-file-edit .btn-addmoreproduct {
            padding: 10px 55px;
            background-color: #000;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-right: 0px;
            border: 1px solid #000;
            width: 99%;
            font-size: 1em; /* content 001 */
            font-weight: bold;
        }

            .prodorder-container .product-file-edit .btn-addmoreproduct:hover {
                background-color: #555;
            }

        .prodorder-container .product-file-edit .upload-button {
            padding: 10px 55px;
            background-color: #f2f2f2;
            color: #000;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            margin: 2px 0px 3px 0px;
            border: 1px solid #ccc;
            width: 99%;
            font-size: 1em; /* content 001 */
            font-weight: normal;
        }

            .prodorder-container .product-file-edit .upload-button:hover {
                background-color: #ccc;
            }

        .prodorder-container .product-file-edit .fileoption {
            padding: 15px 0px 0px 25px;
            margin: 10px 0px 0px 0px;
            font-size: 12.99px;
            border-top: 1px solid #ccc;
            border-bottom: 1px solid #ccc;
            width: 100%;
            box-sizing: border-box;
        }

            .prodorder-container .product-file-edit .fileoption li:first-child {
                position: relative;
                padding-left: 0px;
                margin-bottom: 15px;
                text-align: left;
            }

            .prodorder-container .product-file-edit .fileoption li {
                position: relative;
                padding-left: 0px;
                margin-bottom: 10px;
                text-align: left;
            }

    .prodorder-container .product-file-container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 700px;
        margin: 0px auto;
        border: 1px solid #ccc;
        border-radius: 10px;
        text-align: center;
        color: #000;
        transition: border-color 0.3s ease;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

        .prodorder-container .product-file-container iframe, #viewer-3dview {
            border: none;
            width: 100%;
            height: 500px;
            border-radius: 10px;
        }

    .prodorder-container .viewer-file-hint-text {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 700px;
        height: 300px;
        margin: 0px auto;
        text-align: center;
        color: #000;
        font-size: 14px;
        transition: border-color 0.3s ease;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background-color: #f2f2f2;
        border-radius: 10px;
    }

        .prodorder-container .viewer-file-hint-text div {
            margin: 0px 0px 10px 0px;
        }

        .prodorder-container .viewer-file-hint-text .alert-info {
            color: gray
        }

    .prodorder-container .product-info {
        padding: 0px 50px 0px 50px;
        width: 45%;
        position: relative;
    }

        .prodorder-container .product-info h1 {
            font-weight: bold;
            color: #333;
            margin: 0px 0px 25px 0px;
            font-size: 1em;
        }

        .prodorder-container .product-info .titleoption {
            width: 100%;
            font-size: 1em;
            padding: 10px 5px;
            cursor: pointer;
            font-weight: bold;
        }

        .prodorder-container .product-info .product-price {
            font-size: 20px;
            font-weight: bold
        }

        .prodorder-container .product-info .product-summary {
            background-color: white;
            padding: 20px;
            border: 1px solid #ccc;
            border-radius: 8px;
        }

            .prodorder-container .product-info .product-summary .price-line {
                display: flex;
                justify-content: space-between;
                margin: 10px 0;
                padding: 3px;
            }

            .prodorder-container .product-info .product-summary .price-value {
                font-weight: normal;
            }

            .prodorder-container .product-info .product-summary .import-price-value {
                font-weight: bold;
            }
            .prodorder-container .product-info .product-summary .alert-text {
                color: #D97706;
                margin: 20px 0px 10px 0px;
                font-size: 1em;
            }

            .prodorder-container .product-info .product-summary .order-summary {
                margin: 20px 0px 0px 0px;
                padding: 10px 0px 0px 0px;
                border-top: 1px solid #ccc;
            }
                .prodorder-container .product-info .product-summary .order-summary .edit-button {
                    display: inline-block;
                    padding: 2px 8px;
                    border-radius: 4px;
                    border: 1px solid #666;
                    cursor: pointer;
                    transition: all 0.2s ease;
                    text-decoration: none;
                    background-color: #646464;
                    color: #fff;
                    margin-left: 5px;
                    text-transform: none;
                    font-size: 1em; /* content 001 */
                }

                    .prodorder-container .product-info .product-summary .order-summary .edit-button:hover {
                        background-color: #333;
                    }

        .prodorder-container .product-info .product-options {
            margin-top: 0px;
        }

            .prodorder-container .product-info .product-options .option {
                margin-bottom: 20px;
            }

        .prodorder-container .product-info .product-label {
            margin: 0px 0px 5px 0px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .prodorder-container .product-info .option select {
            padding: 10px 5px;
            border: 1px solid #ccc;
            border-radius: 4px;
            width: 100%;
            cursor: pointer;
        }

        .prodorder-container .product-info .option .product-parameters {
            list-style-type: none;
            padding: 15px 0px 0px 0px;
            margin: 10px 0px 0px 0px;
            border-top: 1px solid #ccc;
            border-bottom: 1px solid #ccc;
        }

            .prodorder-container .product-info .option .product-parameters li {
                position: relative;
                padding-left: 0px;
                margin-bottom: 20px;
            }

                .prodorder-container .product-info .option .product-parameters li::before {
                    position: absolute;
                    left: 0;
                    top: 0;
                    color: #333;
                    line-height: 1em;
                }

        .prodorder-container .product-info .product-actions {
            margin: 20px 0px 10px 0px;
        }

            .prodorder-container .product-info .product-actions button {
                padding: 10px 25px;
                background-color: #fff;
                color: #000;
                border: none;
                border-radius: 4px;
                cursor: pointer;
                transition: background-color 0.3s;
                margin-right: 0px;
                border: 1px solid #000;
            }

                .prodorder-container .product-info .product-actions button:hover {
                    background-color: #ccc;
                }

            .prodorder-container .product-info .product-actions .button-cart {
                padding: 10px 55px;
                background-color: #000;
                color: #fff;
                border: none;
                border-radius: 4px;
                cursor: pointer;
                transition: background-color 0.3s;
                margin-right: 0px;
                border: 1px solid #000;
                width: 100%;
                font-size: 1em;
            }

                .prodorder-container .product-info .product-actions .button-cart:hover {
                    background-color: #555;
                }

            .prodorder-container .product-info .product-actions .button-submit {
                padding: 10px 55px;
                background-color: #fff;
                color: #000;
                border: none;
                border-radius: 4px;
                cursor: pointer;
                transition: background-color 0.3s;
                margin-top: 5px;
                margin-right: 0px;
                border: 1px solid #000;
                width: 100%;
                font-size: 1em;
            }

                .prodorder-container .product-info .product-actions .button-submit:hover {
                    background-color: #ccc;
                }

        .prodorder-container .product-info .option input[type="number"] {
            width: 82%;
            height: 28px;
            text-align: center;
            border: 1px solid #ccc;
            border-radius: 4px;
            margin: 0;
            font-size: 1em;
        }

        .prodorder-container .product-info .option .quantity-button {
            padding: 8px 12px;
            background-color: #e8e7e7;
            color: #000;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 1em;
        }

            .prodorder-container .product-info .option .quantity-button:hover {
                background-color: #0056b3;
            }

        .prodorder-container .product-info .option textarea {
            width: 100%;
            height: 80px;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            resize: vertical;
            outline: none;
            transition: border-color 0.3s;
            box-sizing: border-box;
            color: black;
            font-size: 1em;
        }

        .prodorder-container .product-info .option input[type="text"] {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            resize: vertical;
            outline: none;
            transition: border-color 0.3s;
            margin: 0px 5px 0px 0px;
            font-size: 1em;
            box-sizing: border-box;
        }

        .prodorder-container .product-info .option .upload-button {
            width: 100%;
            padding: 5px 10px;
            background-color: #e8e7e7;
            color: #000;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-right: 0px;
            border: 1px solid #ccc;
            font-size: 1em;
        }

            .prodorder-container .product-info .option .upload-button:hover {
                background-color: #ccc;
            }

        .prodorder-container .product-info .selectoption-container {
            position: relative;
            width: 100%;
        }

            .prodorder-container .product-info .selectoption-container input {
                width: 100%;
                padding: 2px 0px 2px 5px;
                border: 1px solid #999;
                border-radius: 4px;
                cursor: pointer;
                font-size: 12.99px;
            }

        .prodorder-container .product-info .prodoption-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            max-height: 350px;
            overflow-y: auto;
            background-color: white;
            border: 1px solid #ccc;
            z-index: 99999999;
            font-size: 12.99px;
        }

            .prodorder-container .product-info .prodoption-dropdown .group {
                font-weight: bold;
                padding: 8px 0px 8px 5px;
                background-color: #f7f7f7;
            }

            .prodorder-container .product-info .prodoption-dropdown .group-option {
                padding: 8px 0px 8px 20px;
                cursor: pointer;
                margin-bottom: 0px;
            }

                .prodorder-container .product-info .prodoption-dropdown .group-option:hover {
                    background-color: #f1f1f1;
                }

            .prodorder-container .product-info .prodoption-dropdown .option {
                padding: 8px 0px 8px 10px;
                cursor: pointer;
                margin-bottom: 0px;
            }

                .prodorder-container .product-info .prodoption-dropdown .option:hover {
                    background-color: #f1f1f1;
                }

            .prodorder-container .product-info .prodoption-dropdown .no-match {
                padding: 8px 0px 8px 5px;
                color: #999;
            }

.select-box {
    display: flex;
    align-items: center;
    border: 1px solid #000;
    border-radius: 20px;
    font-size: 14px;
    justify-content: space-between;
    background-color: white;
    margin-bottom: 20px;
}

    .select-box .box-option {
        flex: 1;
        text-align: center;
        padding: 10px 15px;
        cursor: pointer;
    }

        .select-box .box-option:hover {
            color: darkred
        }

        .select-box .box-option:first-child {
            border-radius: 20px 0px 0px 20px;
        }

        .select-box .box-option:last-child {
            border-radius: 0px 20px 20px 0px;
        }

        .select-box .box-option.selectitem {
            background-color: #f0f0f0;
            border-color: #555;
        }


.order-summary {
    width: 100%;
    margin-top: 60px;
}

.price-section p {
    font-size: 15px;
    margin: 10px 0;
}

    .price-section p span {
        float: right;
    }

.total-price {
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .prodorder-container {
        display: flex;
        margin: 10px 30px 100px 30px;
        padding: 5px 0px;
        flex-direction: column;
    }

        .prodorder-container .product-description {
            width: 100%
        }

        .prodorder-container .product-info {
            width: 96%;
            padding: 30px 0px 0px 0px;
        }

            .prodorder-container .product-info .option input[type="number"] {
                width: 60%;
            }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-用户登录区域 --------------------------- */
.login-modal {
    display: none; /* 默认隐藏 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1em;
}

    .login-modal .modal-content {
        background: white;
        padding: 20px 50px;
        border-radius: 8px;
        width: 350px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 10000;
    }

    .login-modal .close {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 24px;
        cursor: pointer;
    }

    .login-modal h2 {
        font-size: 1.5em;
        font-weight: bold;
        color: #222;
        margin-bottom: 25px;
    }

    .login-modal form {
        text-align: left;
    }

    .login-modal label {
        display: block;
        margin: 10px 0 5px;
        color: #333;
        font-size: 0.912em; /* content 001 */
    }

    .login-modal input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        background: #f9f9f9;
        transition: all 0.3s ease-in-out;
        box-sizing: border-box;
        font-size: 0.912em; /* content 001 */
    }

        .login-modal input:focus {
            border-color: #000;
            background: #fff;
            outline: none;
        }

    .login-modal .options {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 15px 0px 0px 0px;
        font-size: 0.912em; /* content 001 */
    }

    .login-modal .stay-signed-in {
        display: flex;
        align-items: center;
        color: #333;
        cursor: pointer;
        margin: 0px;
    }

        .login-modal .stay-signed-in input {
            width: 25px;
            padding: 0px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background: #f9f9f9;
            transition: all 0.3s ease-in-out;
            box-sizing: border-box;
            font-size: 0.912em;
            margin: 0px 0px 0px -5px;
        }

    .login-modal .forgot-password {
        color: #333;
        text-decoration: none;
        padding: 0px;
        font-size: 0.912em; /* content 001 */
    }

        .login-modal .forgot-password:hover {
            text-decoration: underline;
        }

    .login-modal .login-btn {
        width: 100%;
        padding: 12px;
        background: #000;
        color: white;
        border: none;
        border-radius: 5px;
        margin-top: 15px;
        cursor: pointer;
        font-weight: bold;
        transition: 0.3s;
        font-size: 0.912em; /* content 001 */
    }

        .login-modal .login-btn:hover {
            background: #333;
        }

    .login-modal .social-login button {
        width: 100%;
        padding: 12px;
        margin-top: 10px;
        border: 1px solid #333;
        background: white;
        color: #333;
        cursor: pointer;
        border-radius: 5px;
        font-weight: bold;
        transition: 0.3s;
        font-size: 0.912em; /* content 001 */
    }

        .login-modal .social-login button:hover {
            background: #000;
            color: white;
        }

    .login-modal .social-login {
        margin: 15px 0;
    }

    .login-modal .new-customer {
        font-size: 0.912em; /* content 001 */
    }

        .login-modal .new-customer a {
            color: #000;
            text-decoration: none;
            text-decoration: underline;
        }

    .login-modal .divider {
        display: flex;
        align-items: center;
        text-align: center;
        margin: 20px 0px 10px 0px;
    }

        .login-modal .divider::before,
        .login-modal .divider::after {
            content: "";
            flex: 1;
            border-bottom: 1px solid #ddd;
            margin: 0 10px;
        }

        .login-modal .divider span {
            font-size: 0.912em; /* content 001 */
            color: #666;
            font-weight: bold;
        }

    .login-modal .terms {
        font-size: 12px;
        color: #666;
        margin: 20px 0px 10px 0px;
        line-height: 1.5;
        text-align: left;
    }

    .login-modal .notice {
        font-size: 12px;
        color: #666;
        margin-top: 0px;
        line-height: 1.5;
        text-align: left;
    }

    .login-modal .terms a {
        color: #333;
        text-decoration: none;
        font-weight: bold;
    }

        .login-modal .terms a:hover {
            text-decoration: underline;
        }

    .login-modal .alert-info {
        display: none;
        background: #ffecec;
        color: #d8000c;
        border: 1px solid #d8000c;
        padding: 10px;
        border-radius: 5px;
        font-size: 14px;
        text-align: left;
    }

    .login-modal #login-otc {
        text-align: left;
        display: none;
    }

    .login-modal .code-container {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .login-modal .code-container input {
            flex: 1;
        }

    .login-modal #login-otc .item-alert {
        font-size: 0.912em; /* content 001 */
        color: green;
        margin-top: 5px;
        display: none;
    }

    .login-modal .send-code-btn {
        padding: 11px 30px;
        border: none;
        background-color: #000;
        color: white;
        cursor: pointer;
        border-radius: 5px;
        transition: 0.3s;
        font-size: 0.912em; /* content 001 */
    }

        .login-modal .send-code-btn:hover {
            background: #333;
        }

        .login-modal .send-code-btn:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }
/* ----------------------------------------------------------------- */


/* ---------------------- 网站Body区域-用户登录区域 --------------------------- */

/* ---------------------- 网站Body区域-用户登录页 --------------------------- */
.login-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
}

    .login-container .modal-content {
        background: white;
        padding: 20px 50px;
        border-radius: 8px;
        width: 450px;
        text-align: center;
        position: relative;
    }

    .login-container .close {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 24px;
        cursor: pointer;
    }

    .login-container h2 {
        margin-bottom: 35px;
        font-weight: normal;
        text-transform: uppercase;
    }

    .login-container form {
        text-align: left;
    }

    .login-container label {
        display: block;
        margin: 10px 0 5px;
        color: #333;
        font-size: 1em; /* content 001 */
    }

    .login-container input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        background: #f9f9f9;
        transition: all 0.3s ease-in-out;
        box-sizing: border-box;
        font-size: 1em; /* content 001 */
    }

        .login-container input:focus {
            border-color: #000;
            background: #fff;
            outline: none;
        }

    .login-container .options {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 15px 0px 0px 0px;
        font-size: 1em; /* content 001 */
    }

    .login-container .stay-signed-in {
        display: flex;
        align-items: center;
        color: #333;
        cursor: pointer;
        margin: 0px;
    }

        .login-container .stay-signed-in input {
            width: 25px;
            padding: 0px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background: #f9f9f9;
            transition: all 0.3s ease-in-out;
            box-sizing: border-box;
            font-size: 1em;
            margin: 0px 0px 0px -5px;
        }

    .login-container .forgot-password {
        color: #333;
        text-decoration: none;
        padding: 0px;
        font-size: 1em; /* content 001 */
    }

        .login-container .forgot-password:hover {
            text-decoration: underline;
        }

    .login-container .login-btn {
        width: 100%;
        padding: 12px;
        background: #000;
        color: white;
        border: none;
        border-radius: 5px;
        margin-top: 15px;
        cursor: pointer;
        font-weight: bold;
        transition: 0.3s;
        font-size: 1em; /* content 001 */
    }

        .login-container .login-btn:hover {
            background: #333;
        }

    .login-container .social-login button {
        width: 100%;
        padding: 12px;
        margin-top: 10px;
        border: 1px solid #333;
        background: white;
        color: #333;
        cursor: pointer;
        border-radius: 5px;
        font-weight: bold;
        transition: 0.3s;
        font-size: 1em; /* content 001 */
    }

        .login-container .social-login button:hover {
            background: #000;
            color: white;
        }

    .login-container .social-login {
        margin: 15px 0;
    }

    .login-container .new-customer {
        font-size: 1em; /* content 001 */
    }

        .login-container .new-customer a {
            color: #000;
            text-decoration: none;
            text-decoration: underline;
        }

    .login-container .divider {
        display: flex;
        align-items: center;
        text-align: center;
        margin: 20px 0px 10px 0px;
    }

        .login-container .divider::before,
        .login-container .divider::after {
            content: "";
            flex: 1;
            border-bottom: 1px solid #ddd;
            margin: 0 10px;
        }

        .login-container .divider span {
            font-size: 1em; /* content 001 */
            color: #666;
            font-weight: bold;
        }

    .login-container .terms {
        font-size: 12px;
        color: #666;
        margin: 20px 0px 10px 0px;
        line-height: 1.5;
        text-align: left;
    }

    .login-container .notice {
        font-size: 12px;
        color: #666;
        margin-top: 0px;
        line-height: 1.5;
        text-align: left;
    }

    .login-container .terms a {
        color: #333;
        text-decoration: none;
        font-weight: bold;
    }

        .login-container .terms a:hover {
            text-decoration: underline;
        }

    .login-container .alert-info {
        display: none;
        background: #ffecec;
        color: #d8000c;
        border: 1px solid #d8000c;
        padding: 10px;
        border-radius: 5px;
        font-size: 14px;
        text-align: left;
    }

    .login-container #login-otc {
        text-align: left;
        display: none;
    }

    .login-container .code-container {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .login-container .code-container input {
            flex: 1;
        }

    .login-container #login-otc .item-alert {
        font-size: 1em; /* content 001 */
        color: green;
        margin-top: 5px;
        display: none;
    }

    .login-container .send-code-btn {
        padding: 12px 30px;
        border: none;
        background-color: #000;
        color: white;
        cursor: pointer;
        border-radius: 5px;
        transition: 0.3s;
        font-size: 1em; /* content 001 */
    }

        .login-container .send-code-btn:hover {
            background: #333;
        }

        .login-container .send-code-btn:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }
/* ----------------------------------------------------------------- */
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-忘记密码 --------------------------- */
.forgot-container {
    margin: 0 auto;
    padding: 50px 50px 80px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em; /* content 001 */
}

    .forgot-container .form-content {
        width: 450px;
        text-align: center;
    }

    .forgot-container h2 {
        margin-bottom: 60px;
        font-weight: normal;
        text-transform: uppercase;
    }

    .forgot-container .input-group {
        text-align: left;
        margin-bottom: 15px;
    }

    .forgot-container label {
        display: block;
        margin-bottom: 5px;
    }

    .forgot-container input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        box-sizing: border-box;
        font-size: 1em;
    }

    .forgot-container .btn {
        width: 100%;
        padding: 10px;
        border: none;
        background: black;
        color: white;
        cursor: pointer;
        border-radius: 5px;
        margin-top: 20px;
        font-size: 1em;
    }

        .forgot-container .btn:hover {
            background: #333;
        }

    .forgot-container .hidden {
        display: none;
    }

    .forgot-container .resend {
        font-size: 13px;
        color: gray;
        cursor: pointer;
        margin-top: 10px;
    }

    .forgot-container .back-link {
        display: block;
        margin-top: 15px;
        font-size: 13px;
        color: gray;
        text-decoration: none;
    }

        .forgot-container .back-link:hover {
            text-decoration: underline;
        }

    .forgot-container .remember-password {
        margin-top: 15px;
        text-align: center;
    }

        .forgot-container .remember-password p {
            color: #666;
            font-size: 1em;
        }

        .forgot-container .remember-password a {
            color: #666;
            text-decoration: none;
            font-size: 1em;
        }

            .forgot-container .remember-password a:hover {
                text-decoration: underline;
            }

    .forgot-container .alert-info {
        display: none;
        background: #ffecec;
        color: #d8000c;
        border: 1px solid #d8000c;
        padding: 10px;
        border-radius: 5px;
        font-size: 14px;
        text-align: left;
        margin: 0px 0px 15px 0px;
    }
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-用户注册 --------------------------- */
.register-container {
    margin: 0 auto;
    padding: 50px 50px 80px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em; /* content 001 */
}

    .register-container .form-content {
        width: 450px;
        text-align: center;
    }

    .register-container h2 {
        margin-bottom: 60px;
        font-weight: normal;
        text-transform: uppercase;
    }

    .register-container .input-group {
        text-align: left;
        margin-bottom: 15px;
    }

    .register-container label {
        display: block;
        margin-bottom: 5px;
    }

    .register-container input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        box-sizing: border-box;
        font-size: 1em;
    }

    .register-container .btn {
        width: 100%;
        padding: 10px;
        border: none;
        background: black;
        color: white;
        cursor: pointer;
        border-radius: 5px;
        margin-top: 20px;
        font-size: 1em;
    }

        .register-container .btn:hover {
            background: #333;
        }

    .register-container .hidden {
        display: none;
    }

    .register-container .resend {
        color: gray;
        cursor: pointer;
        margin-top: 10px;
    }

    .register-container .back-link {
        display: block;
        margin-top: 15px;
        font-size: 13px;
        color: gray;
        text-decoration: none;
    }

        .register-container .back-link:hover {
            text-decoration: underline;
        }

    .register-container .code-container {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .register-container .code-container input {
            flex: 1;
        }

    .register-container .send-code-btn {
        padding: 12px 30px;
        border: none;
        background-color: #000;
        color: white;
        cursor: pointer;
        border-radius: 5px;
        transition: 0.3s;
        font-size: 1em;
    }

        .register-container .send-code-btn:hover {
            background: #333;
        }

        .register-container .send-code-btn:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }

    .register-container .remember-password {
        margin-top: 15px;
        text-align: center;
    }

        .register-container .remember-password p {
            color: #666;
            font-size: 1em;
        }

        .register-container .remember-password a {
            color: #666;
            text-decoration: none;
            font-size: 1em;
        }

            .register-container .remember-password a:hover {
                text-decoration: underline;
            }

    .register-container .alert-info {
        display: none;
        background: #ffecec;
        color: #d8000c;
        border: 1px solid #d8000c;
        padding: 10px;
        border-radius: 5px;
        font-size: 1em;
        text-align: left;
        margin: 0px 0px 15px 0px;
    }

    .register-container .item-alert {
        font-size: 1em;
        color: green;
        margin-top: 5px;
        display: none;
    }

    .register-container .success-box {
        text-align: center;
        border: 1px solid #ddd;
        padding: 50px;
        border-radius: 5px;
        width: 500px;
        margin: 50px auto;
    }
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-图形验证码区域 --------------------------- */
.captcha-model {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1em;
}

    .captcha-model .modal-content {
        background: white;
        padding: 20px 50px;
        border-radius: 8px;
        width: 350px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 10000;
    }

    .captcha-model .close {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 24px;
        cursor: pointer;
    }

    .captcha-model h2 {
        font-size: 22px;
        font-weight: bold;
        color: #222;
        margin-bottom: 25px;
    }

    .captcha-model form {
        text-align: left;
    }

    .captcha-model label {
        display: block;
        margin: 10px 0 5px;
        color: #333;
        font-size: 1em; /* content 001 */
    }

    .captcha-model input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        background: #f9f9f9;
        transition: all 0.3s ease-in-out;
        box-sizing: border-box;
        font-size: 1em; /* content 001 */
    }

        .captcha-model input:focus {
            border-color: #000;
            background: #fff;
            outline: none;
        }

    .captcha-model .options {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 15px 0px 0px 0px;
        font-size: 1em; /* content 001 */
    }

    .captcha-model .confirm-btn {
        width: 100%;
        padding: 12px;
        background: #000;
        color: white;
        border: none;
        border-radius: 5px;
        margin-top: 15px;
        cursor: pointer;
        font-weight: bold;
        transition: 0.3s;
        font-size: 1em; /* content 001 */
    }

        .captcha-model .confirm-btn:hover {
            background: #333;
        }


    .captcha-model .divider {
        display: flex;
        align-items: center;
        text-align: center;
        margin: 20px 0px 10px 0px;
    }

        .captcha-model .divider::before,
        .captcha-model .divider::after {
            content: "";
            flex: 1;
            border-bottom: 1px solid #ddd;
            margin: 0 10px;
        }

        .captcha-model .divider span {
            font-size: 1em; /* content 001 */
            color: #666;
            font-weight: bold;
        }

    .captcha-model .alert-info {
        display: none;
        background: #ffecec;
        color: #d8000c;
        border: 1px solid #d8000c;
        padding: 10px;
        border-radius: 5px;
        font-size: 14px;
        text-align: left;
    }


/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-文案内容 --------------------------- */
.content-section {
    margin: 0px auto;
    padding: 50px 0px;
    box-sizing: border-box;
}

    .content-section h2 {
        margin: 20px 0px 50px 0px;
    }

    .content-section h5 {
        margin: 20px 0px;
    }

    .content-section h6 {
        margin: 10px 0px;
    }

    .content-section p {
        font-size: 1em; /* content 001 */
    }

    .content-section .item-title {
        font-weight: bold;
        margin: 10px 0px;
    }
    .content-section .icon-img {
        display: block;
        margin: 30px auto 0 auto;
        max-width: 100%;
        height: auto;
    }
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-客户后台 ------------------------------ */
.account-container {
    margin: 0px auto;
    font-size: 0.875em;
    padding: 0px 50px 20px 50px;
}

    .account-container .breadcrumb {
        font-size: 1em; /* content 001 */
    }

@media (max-width: 768px) {
    .account-container {
        font-size: 1em;
        padding: 0px 15px 20px 15px;
    }
}

.toolbar-container {
    margin: 0px auto;
    font-size: 1em; /* content 001 */
    padding: 0px 50px 0px 50px;
}

@media (max-width: 768px) {
    .toolbar-container {
        font-size: 1em;
        padding: 0px 15px 0px 15px;
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-客户后台-查询区域 ------------------------------ */
.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    flex-wrap: wrap;
    gap: 10px;
}

    .toolbar .query-container {
        display: flex;
        align-items: center;
        gap: 5px;
        flex-wrap: wrap;
    }

    .toolbar .search-box {
        padding: 8px 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 1em; /* content 001 */
        min-width: 225px;
        transition: border-color 0.2s ease;
    }

        .toolbar .search-box:focus {
            border-color: #007bff;
            outline: none;
        }

    .toolbar .search-btn {
        padding: 7px 16px;
        font-size: 1em; /* content 001 */
        background-color: #646464;
        color: #fff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

        .toolbar .search-btn:hover {
            background-color: #333;
        }

    .toolbar .multi-select {
        position: relative;
        width: 225px;
        font-size: 1em; /* content 001 */
    }

        .toolbar .multi-select .selected {
            border: 1px solid #ccc;
            padding: 5px 10px;
            cursor: pointer;
            background-color: #fff;
            border-radius: 4px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .toolbar .multi-select .checkbox-list {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 282px;
            border: 1px solid #ccc;
            background: #fff;
            z-index: 99;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            padding: 8px;
        }

            .toolbar .multi-select .checkbox-list label {
                display: block;
                margin-bottom: 6px;
                padding: 5px 0px;
                cursor: pointer;
            }

            .toolbar .multi-select .checkbox-list input[type="checkbox"] {
                margin-right: 6px;
            }

    .toolbar .batchopera-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .toolbar .batchopera {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        height: 100%;
        border: 1px solid #ccc;
        border-radius: 4px;
        padding: 5px 35px;
        cursor: pointer;
    }

    .toolbar .batchopera-container:hover .batchopera-menu {
        display: block;
    }

    .toolbar .batchopera-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 0px;
        background-color: white;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        padding: 10px;
        width: 200px;
        z-index: 10000;
    }

        .toolbar .batchopera-menu button {
            width: 100%;
            padding: 8px;
            border: none;
            background: none;
            text-align: left;
            cursor: pointer;
            font-size: 1em; /* content 001 */
            font-weight: normal;
        }

            .toolbar .batchopera-menu button:hover {
                background-color: #f5f5f5;
            }

@media screen and (max-width: 768px) {
    .toolbar {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap; /* 允许换行 */
        gap: 10px; /* 可选：在元素间加些间距 */
    }

    .breadcrumb,
    .query-container {
        width: 100%;
    }

    .query-container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .multi-select {
        flex: 1 1 auto;
        min-width: 200px;
    }

    #order-selected-status {
        width: 70%;
    }

    .search-box {
        width: 70%;
    }
}

/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-客户后台-数据列表 ------------------------------ */
.flexigrid {
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 8px;
    font-size: 0.925em; /* content 001 */
    overflow-x: auto;
}

    .flexigrid .hDiv {
        overflow-x: hidden;
    }

    .flexigrid .bDiv {
        overflow-x: auto !important;
    }

    .flexigrid table {
        width: 100%;
        border-collapse: collapse;
    }

    .flexigrid th {
        font-weight: normal;
        background-color: #f2f2f2;
        text-transform: uppercase;
    }

    .flexigrid th, .flexigrid td {
        padding: 10px;
        border-bottom: 1px solid #eee;
        text-align: left;
        line-height: 1.6;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
    }

        .flexigrid td div {
            margin: 5px 0px;
        }

    .flexigrid .pDiv {
        display: flex;
        justify-content: flex-end;
        background-color: #f2f2f2;
        padding: 5px 15px;
        border-top: 1px solid #ddd;
        font-size: 14px;
    }

    .flexigrid .p-area {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 1em; /* content 001 */
    }

        .flexigrid .p-area a {
            height: 28px;
            background: #eee;
            border-radius: 4px;
            text-align: center;
            line-height: 28px;
            cursor: pointer;
            color: #333;
            user-select: none;
        }

            .flexigrid .p-area a :hover {
                background: #000;
                color: #fff;
            }

        .flexigrid .p-area input[type="text"] {
            width: 40px;
            height: 25px;
            border: 1px solid #ccc;
            border-radius: 4px;
            text-align: center;
            margin: 0 5px;
            font-size: 1em;
        }

        .flexigrid .p-area select {
            height: 28px;
            padding: 4px 8px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

    .flexigrid .bt-link {
        display: block;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .flexigrid .imp-bt-link {
        display: inline-block;
        padding: 2px 7px;
        border-radius: 4px;
        border: 1px solid #666;
        font-size: 1em;
        cursor: pointer;
        transition: all 0.2s ease;
        text-decoration: none;
        background-color: #646464;
        color: #fff;
    }

        .flexigrid .imp-bt-link:hover {
            background-color: #333;
        }

    .flexigrid .product-list-img-ssl {
        max-width: 60px;
        max-height: 60px;
    }

    .flexigrid div.bDiv table tr.erow {
        background-color: #f9f9f9;
    }

    .flexigrid div.bDiv table tr {
        background-color: #ffffff;
    }

    .flexigrid .icon-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%; /* 如果父容器没有高度，需要你设置一个 */
        width: 100%;
        text-align: center;
    }

    .flexigrid .item-progress-container {
        width: 100%;
        height: 100%;
        background: transparent;
        z-index: 99;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

        .flexigrid .item-progress-container .upload-spinner {
            width: 20px;
            height: 20px;
            border: 6px solid #f3f3f3;
            border-top: 6px solid #3498db;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
        }

@media screen and (max-width: 768px) {
    .flexigrid table, .flexigrid thead, .flexigrid tbody, .flexigrid tr, .flexigrid th, .flexigrid td {
        display: block !important;
        font-size: 1em;
    }

    .flexigrid thead {
        display: none !important;
    }

    .flexigrid tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        padding: 5px;
    }

    .flexigrid td {
        justify-content: space-between;
        align-items: center;
        padding: 5px;
        border: none;
        border-bottom: 1px solid #f0f0f0;
    }

        .flexigrid td:before {
            content: attr(data-label);
            font-weight: bold;
            color: #555;
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-客户后台-订单详情区域 --------------------------- */
.orderdetail-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    font-size: 1em; /* content 001 */
    border-top: 1px solid #e0e0e0;
    margin: 0px 0px 20px 0px;
}

    .orderdetail-container .orderinfo-item {
        flex: 1 1 calc(25% - 20px);
        padding: 15px 5px;
        max-width: 270px;
    }

        .orderdetail-container .orderinfo-item div {
            margin: 3px 0px 0px 0px;
        }

        .orderdetail-container .orderinfo-item .title {
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 1em;
            color: #333;
            text-transform: uppercase;
        }

        .orderdetail-container .orderinfo-item .label {
            display: inline-block;
            color: #808080;
            margin: 0px 10px 10px 0px;
            min-width: 90px;
        }

        .orderdetail-container .orderinfo-item .totalamt {
            font-size: 1.15em;
            font-weight: bold;
        }

    .orderdetail-container .order-progress {
        min-width: 535px;
    }

    .orderdetail-container .shipaddress p {
        font-size: 1em;
        margin: 0px;
    }

@media (max-width: 768px) {
    .orderdetail-container .orderinfo-item {
        flex: 1 1 100%;
    }

    .orderdetail-container .order-progress {
        min-width: 90%;
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-客户后台-账号信息 --------------------------- */
.account-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0px 25px;
    background: #fff;
    font-size: 1em; /* content 001 */
}

    .account-wrapper h2 {
        margin: 0px 0px 50px 0px;
        font-weight: normal;
        text-transform: uppercase;
        text-align: center;
    }

    .account-wrapper h3 {
        font-size: 1.1em;
        font-weight: bold;
        margin-bottom: 15px;
        color: #333;
        text-transform: uppercase;
    }

    .account-wrapper .account-content {
        text-align: center;
        margin: 0px 0px 100px 0px;
    }

    .account-wrapper .account-section {
        margin-bottom: 25px;
        border-top: 1px solid #ccc;
    }

        .account-wrapper .account-section .item {
            margin-top: 15px;
        }

    .account-wrapper .account-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .account-wrapper .field {
        flex: 1 1 350px;
    }

        .account-wrapper .field .shipaddress-item {
            display: flex;
            justify-content: space-between; /* 两端对齐 */
            align-items: center;
            border-top: 1px solid #ccc;
            padding-top: 15px;
            margin-top: 15px;
        }

        .account-wrapper .field label {
            display: block;
            font-weight: 600;
            font-size: 1em;
            color: #808080;
            margin-bottom: 4px;
        }

        .account-wrapper .field p {
            font-size: 1em;
            margin: 0;
        }

    .account-wrapper .btn {
        margin-top: 20px;
        padding: 10px 20px;
        background: #000;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1em;
    }

    .account-wrapper .btn-link {
        background: none;
        border: none;
        color: #007bff;
        cursor: pointer;
        font-size: 1em;
        padding: 0 2px;
    }

        .account-wrapper .btn-link:hover {
            text-decoration: underline;
        }

    .account-wrapper .btn-danger {
        background-color: #dc3545;
        color: #fff;
    }

        .account-wrapper .btn-danger:hover {
            background-color: #c82333;
        }

@media (max-width: 600px) {
    .account-wrapper .account-grid {
        flex-direction: column;
        gap: 12px;
    }

    .account-wrapper .field {
        flex: auto;
    }

    .account-wrapper .btn {
        width: 100%;
        margin-top: 12px;
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 全屏遮罩层 --------------------------- */
.modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    font-size: 0.875em;
}

    .modal .modal-content {
        background: #fff;
        max-width: 400px;
        margin: 30px auto;
        padding: 24px;
        border-radius: 8px;
        position: relative;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
        font-size: 1em; /* content 001 */
        z-index: 100001;
    }

        .modal .modal-content .item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
        }

    .modal .close-modal {
        position: absolute;
        top: 16px;
        right: 16px;
        font-size: 20px;
        cursor: pointer;
    }

    .modal .modal-content h3 {
        font-size: 1.2em;
        font-weight: normal;
        margin-bottom: 25px;
        color: #333;
        text-transform: uppercase;
        text-align: center;
    }

    .modal .modal-content label {
        display: block;
        font-size: 1em;
        color: #808080;
        margin-top: 12px;
    }

    .modal .modal-content input {
        width: 100%;
        padding: 8px 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        margin-top: 4px;
        font-size: 1em;
        box-sizing: border-box;
    }

    .modal .modal-content textarea {
        width: 100%;
        padding: 8px 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        margin-top: 4px;
        font-size: 1em;
        box-sizing: border-box;
        color: #000;
    }

    .modal .modal-content select {
        width: 100%;
        padding: 8px 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        margin-top: 4px;
        font-size: 1em;
        box-sizing: border-box;
        cursor: pointer;
    }

    .modal .modal-content .checkbox-wrapper {
        display: flex;
        align-items: flex-start;
        cursor: pointer;
        gap: 10px;
        user-select: none;
    }

        .modal .modal-content .checkbox-wrapper input[type="checkbox"] {
            display: none;
        }

    .modal .modal-content .custom-checkbox {
        width: 15px;
        height: 15px;
        border-radius: 3px;
        border: 1px solid #888;
        background-color: white;
        position: relative;
        flex-shrink: 0;
        transition: all 0.2s ease-in-out;
    }

    .modal .modal-content .checkbox-wrapper input[type="checkbox"]:checked + .custom-checkbox {
        background-color: dodgerblue;
        border-color: #4F46E5;
    }

        .modal .modal-content .checkbox-wrapper input[type="checkbox"]:checked + .custom-checkbox::after {
            content: "";
            position: absolute;
            left: 3px;
            top: 0px;
            width: 6px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

    .modal .modal-content .label-text {
        color: #333;
        line-height: 1.4;
    }

    .modal .modal-content .btn {
        width: 100%;
        margin-top: 30px;
        padding: 10px;
        background: #000;
        color: #fff;
        border: none;
        font-size: 1em;
        cursor: pointer;
        border: 1px solid #000;
    }

        .modal .modal-content .btn:hover {
            background-color: #ffd400;
            color: #000;
            border: 1px solid #000;
        }

    .modal .modal-content .btn-other {
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
        background-color: #fff;
        color: #000;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s;
        border: 1px solid #000;
        font-size: 1em;
        font-weight: normal;
    }

        .modal .modal-content .btn-other:hover {
            background-color: #ccc;
        }

    .modal .alert-info {
        display: none;
        background: #ffecec;
        color: #d8000c;
        border: 1px solid #d8000c;
        padding: 10px;
        border-radius: 5px;
        font-size: 14px;
        text-align: left;
    }

    .modal .shipaddress-container {
        max-height: 500px;
        margin-bottom: 25px;
        overflow: auto;
    }

        .modal .shipaddress-container .field {
            cursor: pointer;
            transition: background-color 0.2s;
        }

            .modal .shipaddress-container .field:hover {
                background-color: #f0f0f0;
            }

            .modal .shipaddress-container .field.selected {
                background-color: #d0ebff;
            }

        .modal .shipaddress-container .shipaddress-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #ccc;
            padding: 15px 10px;
        }

            .modal .shipaddress-container .shipaddress-item label {
                display: block;
                font-weight: 600;
                font-size: 1em;
                color: #808080;
                margin-bottom: 4px;
            }

            .modal .shipaddress-container .shipaddress-item p {
                font-size: 1em;
                margin: 0;
            }

            .modal .shipaddress-container .shipaddress-item .btn-link {
                background: none;
                border: none;
                color: #007bff;
                cursor: pointer;
                font-size: 1em;
                padding: 0 2px;
            }

    .modal .bt-selectfile {
        padding: 8px 0px;
        width: 100%;
        background-color: #fff;
        color: #000;
        border: 1px solid #000;
        cursor: pointer;
        font-size: 1em;
    }
        .modal .bt-selectfile:hover {
            background-color: #000;
            color: #ffd400;
            border: 1px solid #fff;
        }
    .modal .lb-file-name {
        width: 100%;
        font-size: 1em;
        margin: 10px 0px;
        font-style: italic;
        max-height: 100px;
        overflow-y: auto;
        display: block;
    }

@media (max-width: 600px) {
    .modal .modal-content {
        width: 80%;
        margin: 50px auto;
    }
}

/* ----------------------------------------------------------------- */

/* ---------------------- 全屏遮罩层 --------------------------- */
#loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999999;
}

#loading-api {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999999;
}

#dvaskdialog {
    min-height: 150px !important;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 系统错误提示 --------------------------- */
#alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

/* 状态类 */
.alert-error {
    max-width: 600px;
    padding: 20px 25px;
    border-radius: 8px;
    font-weight: 500;
    background-color: #fdecea;
    color: #b71c1c;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 0.875em;
}

.alert-warning {
    max-width: 400px;
    padding: 20px 25px;
    border-radius: 8px;
    font-size: 0.875em;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background-color: #fff8e1;
    border-left-color: #ff9800;
    color: #e65100;
}

.alert-success {
    max-width: 400px;
    padding: 20px 25px;
    border-radius: 8px;
    font-size: 0.875em;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background-color: #e8f5e9;
    border-left-color: #4caf50;
}

/* ----------------------------------------------------------------- */

/* ---------------------- 订单列表内状态进度条 --------------------------- */
.order-progress-bar {
    padding: 10px 0;
    font-size: 12px;
}

.progress-steps {
    list-style: none;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0;
    margin: 0;
}

    .progress-steps::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 4px;
        background: #e0e0e0; /* 灰色线条 */
        transform: translateY(-50%);
        z-index: 1;
        border-radius: 2px;
    }

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    color: #999;
    font-size: 1em; /* content 001 */
    margin: 28px 0px 0px 0px;
}

    .step::before {
        content: "";
        display: block;
        margin: 0 auto 4px;
        width: 12px;
        height: 12px;
        background: #ccc;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .step.active {
        color: #4caf50;
    }

        .step.active::before {
            background: #4caf50;
            box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.15);
        }

    .step.current {
        font-weight: bold;
        position: relative;
    }

    .step .timestamp {
        font-size: 1em;
        color: #999;
        margin-top: 0px;
    }

    .step.active .timestamp,
    .step.current .timestamp {
        color: #4caf50;
    }

/* ----------------------------------------------------------------- */


/* ---------------------- 数据列相关样式 --------------------------- */
.qty-input {
    width: 50px;
    padding: 5px;
    font-size: 1em;
}
/* ----------------------------------------------------------------- */

/* ---------------------- 弹窗容器 --------------------------- */
.ui-dialog {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    font-size: 0.875em;
    z-index: 99999;
    position: fixed;
}

    .ui-dialog .ui-dialog-titlebar {
        background: #000;
        color: #fff;
        padding: 10px 15px;
        font-weight: bold;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .ui-dialog .ui-dialog-title {
        font-size: 1em;
    }

    .ui-dialog .ui-dialog-titlebar-close {
        border: none;
        color: #fff;
    }

    .ui-dialog .ui-dialog-content {
        padding: 10px 20px 0px 20px;
    }

    .ui-dialog .ui-dialog-buttonpane {
        background: #f9f9f9;
        padding: 5px 10px;
        text-align: right;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

        .ui-dialog .ui-dialog-buttonpane button {
            background-color: #000;
            color: #fff;
            border: 1px solid #000;
            border-radius: 4px;
            padding: 8px 20px;
            cursor: pointer;
        }

            .ui-dialog .ui-dialog-buttonpane button:hover {
                background-color: #808080;
            }

        .ui-dialog .ui-dialog-buttonpane .button-submit {
            background-color: #000;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-right: 10px;
            border: 1px solid #000;
            font-size: 0.875rem; /* content 001 */
        }

            .ui-dialog .ui-dialog-buttonpane .button-submit:hover {
                background-color: #555;
            }

        .ui-dialog .ui-dialog-buttonpane .button-other {
            background-color: #fff;
            color: #000;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-right: 0px;
            border: 1px solid #000;
            font-weight: normal;
            margin-right: 5px;
        }

            .ui-dialog .ui-dialog-buttonpane .button-other:hover {
                background-color: #ccc;
            }

.button-other:hover {
    background-color: #ccc;
}

.ui-widget-overlay {
    background: #000;
}
/* ----------------------------------------------------------------- */



/* ---------------------- 购物车弹窗体区域 --------------------------- */
.cart-container {
    display: flex;
    justify-content: flex-end;
    margin: 10px 0;
}

    .cart-container .address-container {
        width: 500px;
        background-color: white;
        padding: 20px 20px 10px 20px;
        margin-right: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .cart-container .address-header {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        margin-left: auto;
        text-transform: uppercase;
    }

        .cart-container .address-header .edit-button {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 4px;
            border: 1px solid #666;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            background-color: #646464;
            color: #fff;
            margin-left: 5px;
            text-transform: none;
        }

            .cart-container .address-header .edit-button:hover {
                background-color: #333;
            }

    .cart-container .shipaddress {
        margin-bottom: 10px;
    }

        .cart-container .shipaddress p {
            margin: 0px 0px 0px 0px;
            font-size: 1em;
        }

    .cart-container .address-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

        .cart-container .address-item .address-label {
            text-align: left;
            width: 100px;
        }

        .cart-container .address-item .address-value {
            text-align: left;
        }

        .cart-container .address-item select {
            padding: 5px;
            width: 300px;
            border: 1px solid #ccc;
            border-radius: 3px;
            cursor: pointer;
        }

    .cart-container .cart-summary {
        width: 520px;
        background-color: white;
        padding: 10px 20px 10px 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

        .cart-container .cart-summary .price-line {
            display: flex;
            justify-content: space-between;
            margin: 10px 0;
            padding: 3px;
        }

    .cart-container .price-line .price-label {
        text-align: left;
        text-transform: uppercase;
    }

    .cart-container .price-line .price-value {
        text-align: right;
    }

    .cart-container .order-totalprice .price-value {
        font-weight: bold
    }
/* ----------------------------------------------------------------- */

/* ---------------------- 购物车页面 --------------------------- */
.cart-page {
    display: flex;
    justify-content: flex-end;
    margin: 10px auto;
}

    .cart-page .address-container {
        width: 50%;
        background-color: white;
        padding: 20px 20px 10px 20px;
        margin-right: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .cart-page .address-header {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        margin-left: auto;
        text-transform: uppercase;
    }

        .cart-page .address-header .edit-button {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 4px;
            border: 1px solid #666;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            background-color: #646464;
            color: #fff;
            margin-left: 5px;
            text-transform: none;
            font-size: 1em; /* content 001 */
        }

            .cart-page .address-header .edit-button:hover {
                background-color: #333;
            }

    .cart-page .shipaddress {
        margin-bottom: 25px;
    }

        .cart-page .shipaddress p {
            margin: 0px 0px 0px 0px;
            font-size: 1em;
        }

    .cart-page .address-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

        .cart-page .address-item .address-label {
            text-align: left;
            width: 100px;
        }

        .cart-page .address-item .address-value {
            text-align: left;
        }

        .cart-page .address-item select {
            padding: 5px;
            width: 300px;
            border: 1px solid #ccc;
            border-radius: 3px;
            cursor: pointer;
        }

    .cart-page .cart-summary {
        width: 50%;
        background-color: white;
        padding: 10px 20px 10px 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

        .cart-page .cart-summary .price-line {
            display: flex;
            justify-content: space-between;
            margin: 10px 0;
            padding: 3px;
        }

    .cart-page .price-line .price-label {
        text-align: left;
        text-transform: uppercase;
    }

    .cart-page .price-line .price-value {
        text-align: right;
    }

    .cart-page .order-totalprice .price-value {
        font-weight: bold
    }

.cart-opera-container {
    margin: 10px auto;
    padding-bottom: 30px;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1480px;
    background-color: #fff;
    z-index: 1000;
    transition: all 0.3s ease;
    font-size: 1em; /* content 001 */
}

    .cart-opera-container.fixed {
        position: fixed;
        bottom: 0;
        padding: 15px;
        background-color: #f2f2f2;
        box-sizing: border-box;
    }

        .cart-opera-container.fixed .cart-summary-part-a {
            display: none
        }

    .cart-opera-container.absolute {
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    .cart-opera-container .alert-text {
        margin: 25px 10px;
        font-size: 1em;
    }

    .cart-opera-container .toolbar-container {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        padding: 10px 0px 0px 10px;
        font-size: 1em;
    }

        .cart-opera-container .toolbar-container .button-submit {
            padding: 10px 55px;
            background-color: #000;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-right: 0px;
            border: 1px solid #000;
            font-size: 1em;
        }

            .cart-opera-container .toolbar-container .button-submit:hover {
                background-color: #555;
            }

        .cart-opera-container .toolbar-container .button-other {
            padding: 10px 55px;
            background-color: #fff;
            color: #000;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-right: 0px;
            border: 1px solid #000;
            font-size: 1em;
        }

            .cart-opera-container .toolbar-container .button-other:hover {
                background-color: #ccc;
            }
/* ----------------------------------------------------------------- */


/* ---------------------- 其他 --------------------------- */
.expand-text {
    cursor: pointer;
}

    .expand-text:hover {
        color: #007bff;
        text-decoration: underline;
    }

.alert-text {
    color: #D97706;
    margin: 20px 0px 10px 0px;
    font-size: 1em; /* content 001 */
}

.expand-text {
    color: #898989;
}

.title-span {
    margin: 20px 0px;
    font-size: 1em;
}

.learn-more {
    margin: 10px 0px 0px 0px;
}
/* ----------------------------------------------------------------- */
/* ---------------------- 付款 --------------------------- */
.pay-model {
    font-size: 1em; /* content 001 */
}

    .pay-model .com-options {
        margin-top: 15px;
    }

        .pay-model .com-options .option {
            margin-bottom: 15px;
        }

        .pay-model .com-options .title-span {
            margin-bottom: 25px;
        }

        .pay-model .com-options .title-item {
            display: inline-block;
            width: 100px;
            margin-bottom: 5px;
        }

        .pay-model .com-options .center-item {
            display: flex;
            justify-content: center;
        }

        .pay-model .com-options .a-option {
            display: flex;
            align-items: center;
            padding: 0px 0px 15px 0px;
            margin-bottom: 15px;
            border-bottom: 1px solid #ccc;
            width: 100%;
        }

        .pay-model .com-options .a-title-span {
            display: inline-block;
            font-size: 14px;
            width: 120px;
        }

        .pay-model .com-options .pay-step {
            margin: 25px 0px 25px 0px;
            font-weight: bold;
        }

        .pay-model .com-options .pay-method {
            height: 32px;
            margin: 30px 0px 0px 0px;
        }

        .pay-model .com-options .pay-option {
            border: 1px solid #ddd;
            border-bottom-style: none;
            padding: 15px 50px;
            margin: 0px 10px 0px 0px;
            cursor: pointer;
        }

        .pay-model .com-options .pay-amount {
            font-weight: bold
        }

        .pay-model .com-options li {
            margin: 15px;
        }


    .pay-model .pay-container {
        background-color: #f6f6f6;
        padding: 10px 10px 30px 10px;
        border: 1px solid #ddd;
        margin: 0px 0px 10px 0px;
    }

    .pay-model .paypal-button {
        background-color: #ffc439;
        border: none;
        color: #111;
        padding: 12px 24px;
        font-size: 16px;
        border-radius: 5px;
        cursor: pointer;
    }

        .pay-model .paypal-button:hover {
            background-color: #ffb347; /* 稍暗一点的黄色 */
        }

.btn-main {
    display: inline-block;
    background-color: #000;
    color: #ffffff;
    font-weight: 600;
    padding: 8px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin: 10px 0px 0px 0px;
}

    .btn-main:hover {
        background: #333;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .btn-main:disabled {
        background-color: #ccc;
        color: #666;
        cursor: not-allowed;
        box-shadow: none;
    }
#btn-addmoreproductincart {
    background-color: #646464;
    color: #FFF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 8px 30px;
    border: 1px solid #000;
    font-weight: normal;
    font-size: 1em;
}

    #btn-addmoreproductincart:hover {
        background-color: #000;
    }

.btn-icon {
    border: 1px solid #000;
    padding: 2px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0px 0px 15px;
    cursor: pointer;
    color: cornflowerblue;
}

    .btn-icon:hover {
        background-color: #CCC;
    }
/* ----------------------------------------------------------------- */

/* ---------------------- popup窗体 --------------------------- */
#popup {
    overflow: hidden;
}

    #popup iframe {
        width: 100%;
        height: 100%;
        border: none;
        font-size: 1em;
        transform: none;
        zoom: 1;
    }
/* ----------------------------------------------------------------- */

/* ---------------------- dialog窗体 --------------------------- */
.opera-dialog .com-options {
    margin: 15px 0px;
}

    .opera-dialog .com-options .title-item {
        display: inline-block;
        width: 100px;
        margin-bottom: 5px;
    }

    .opera-dialog .com-options input {
        padding: 5px 8px;
    }

/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-表单区域 --------------------------- */
.editform-container {
    display: flex;
    flex-wrap: wrap;
    font-size: 1em; /* content 001 */
    margin: 0px 0px 20px 0px;
}

    .editform-container .ef-item {
        width: 50%;
    }

        .editform-container .ef-item div {
            margin: 10px 0px 0px 0px;
            display: flex;
            align-items: center;
        }

        .editform-container .ef-item .label {
            display: inline-block;
            color: #808080;
            margin: 0px 10px 0px 0px;
            min-width: 90px;
        }

        .editform-container .ef-item .remark {
            display: inline-block;
            color: #808080;
            margin: 0px 0px 0px 10px;
        }

        .editform-container .ef-item .text-input {
            padding: 5px;
            width: calc(100% - 150px);
            max-width: 395px;
        }

        .editform-container .ef-item .dropdown-list {
            padding: 5px 2px;
            width: calc(100% - 135px);
            max-width: 410px;
            cursor: pointer;
        }

        .editform-container .ef-item .normal-bt {
            padding: 5px 10px;
            cursor: pointer;
            margin: 0px 0px 0px 3px;
            background-color: #646464;
            color: #fff;
            border: none;
            border-radius: 3px;
            transition: background-color 0.2s ease;
        }

            .editform-container .ef-item .normal-bt:hover {
                background-color: #333;
            }

        .editform-container .ef-item .totalamt {
            font-size: 1.15em;
            font-weight: bold;
        }

    .editform-container .long-ef-item {
        width: 100%;
    }

        .editform-container .long-ef-item .long-text-input {
            padding: 5px;
            width: calc(100% - 150px)
        }

    .editform-container .order-progress {
        min-width: 550px;
    }

    .editform-container .shipaddress p {
        font-size: 1em;
        margin: 0px;
    }

@media (max-width: 768px) {
    .editform-container .ef-item {
        flex: 1 1 100%;
    }

    .editform-container .order-progress {
        min-width: 90%;
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-客户后台-发票详情区域 --------------------------- */
.invoicedetail-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    font-size: 1em; /* content 001 */
    border-top: 1px solid #e0e0e0;
    margin: 0px 0px 20px 0px;
}

    .invoicedetail-container .invoiceinfo-item {
        flex: 1 1 calc(30% - 20px);
        padding: 15px 5px;
    }

        .invoicedetail-container .invoiceinfo-item div {
            margin: 3px 0px 0px 0px;
        }

        .invoicedetail-container .invoiceinfo-item .title {
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 1em;
            color: #333;
            text-transform: uppercase;
        }

        .invoicedetail-container .invoiceinfo-item .label {
            display: inline-block;
            color: #808080;
            margin: 0px 10px 10px 0px;
            min-width: 90px;
        }

        .invoicedetail-container .invoiceinfo-item .totalamt {
            font-size: 1.15em;
            font-weight: bold;
        }

    .invoicedetail-container .shipaddress p {
        font-size: 1em;
        margin: 0px;
    }

@media (max-width: 768px) {
    .invoicedetail-container .invoiceinfo-item {
        flex: 1 1 100%;
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- logo-carousel-wrapper --------------------------- */
.logo-carousel-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    max-width: 1480px;
    margin: 0 auto;
    padding: 0px 20px;
}

    .logo-carousel-wrapper .logo-carousel {
        display: flex;
        justify-content: space-between;
        align-items: center;
        white-space: nowrap;
        gap: 20px;
    }

        .logo-carousel-wrapper .logo-carousel img {
            width: 120px;
            object-fit: contain;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

            .logo-carousel-wrapper .logo-carousel img:hover {
                transform: scale(1.05);
            }

    .logo-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }

    .logo-carousel-wrapper {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
@media (max-width: 768px) {
    .logo-carousel-wrapper .logo-carousel img {
        width: 80px;
    }
}
/* ----------------------------------------------------------------- */

.manufacturing-plant {
    background-image: url('/img/Our_Advantageous_Manufacturing_Plant_black.webp');
    background-color: #000;
    height: 550px;
}

    .manufacturing-plant h2 {
        font-size: 2em;
        margin: 30px 0px;
        font-weight: 700;
    }

    .manufacturing-plant p {
        font-size: 1em; /* content 001 */
    }

.printing-factory {
    background-image: url('/img/Our_Advantageous_Manufacturing_Plant_white.webp');
    background-color: #000;
    height: 550px;
    color: #000;
}

    .printing-factory h2 {
        font-size: 2em;
        margin: 30px 0px;
        font-weight: 700;
    }

    .printing-factory p {
        font-size: 1em; /* content 001 */
    }
@media (max-width: 768px) {
    .printing-factory {
        height: 450px;
    }
}

.sheet-metal-fabrication-factory {
    background-image: url('/img/Our_Advantageous_Manufacturing_Plant_white.webp');
    background-color: #000;
    height: 550px;
    color: #000;
}

    .sheet-metal-fabrication-factory h2 {
        font-size: 2em;
        margin: 30px 0px;
        font-weight: 700;
    }

    .sheet-metal-fabrication-factory p {
        font-size: 1em; /* content 001 */
    }

@media (max-width: 768px) {
    .sheet-metal-fabrication-factory {
        height: 450px;
    }
}
/* ---------------------- factory-slider-container  --------------------------- */
.factory-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: black;
    width: 100vw;
}

    .factory-slider-wrapper h2 {
        color: #fff;
        text-align: center;
        font-size: 2.5em;
        margin: 80px 0px;
    }

    .factory-slider-wrapper .content {
        margin: 0px auto;
        position: relative;
    }

    .factory-slider-wrapper .nav-btn {
        position: absolute;
        top: 45%;
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(0,0,0,0.5);
        color: white;
        border: none;
        font-size: 32px;
        padding: 20px 15px;
        cursor: pointer;
        user-select: none;
        border-radius: 4px;
    }

    .factory-slider-wrapper .content .prev-btn {
        left: 10px;
    }

    .factory-slider-wrapper .content .next-btn {
        right: 10px;
    }

    .factory-slider-wrapper .factory-slider-container {
        overflow-x: auto;
        white-space: nowrap;
        scroll-behavior: smooth;
        padding: 35px 40px;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
        .factory-slider-wrapper .factory-slider-container::-webkit-scrollbar {
            display: none; /* Chrome, Safari */
        }

    .factory-slider-wrapper .factory-slider {
        display: flex;
        gap: 20px;
    }

    .factory-slider-wrapper .factory-card {
        position: relative;
        flex: 0 0 auto;
        width: 380px;
        height: 380px;
        overflow: hidden;
    }

        .factory-slider-wrapper .factory-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            position: relative; /* ←←← 添加这句 */
            z-index: 1; /* ←←← 可选 */
        }

        .factory-slider-wrapper .factory-card .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            z-index: 2;
            background: rgba(0, 0, 0, 0.6); /* 半透明黑底 */
            color: white;
            padding: 10px 0px;
            width: 100%;
            white-space: normal;
            cursor: pointer;
        }
            .factory-slider-wrapper .factory-card .card-overlay .title {
                font-size: 1em; /* content 001 */
                font-weight: bold;
                margin: 0px;
                display: flex;
                justify-content: space-between;
                padding: 10px 30px;
            }
            .factory-slider-wrapper .factory-card .card-overlay .content {
                display: none;
                font-size: 1em; /* content 001 */
                padding: 10px 30px;
            }

            .factory-slider-wrapper .factory-card .card-overlay:hover .content {
                display: block;
            }
            .factory-slider-wrapper .factory-card .card-overlay .content .line {
                display: flex;
                justify-content: space-between;
                padding: 5px 0;
                border-bottom: 0.5px solid #808080;
            }

            .factory-slider-wrapper .factory-card .card-overlay .content .value {
                text-align: right;
            }
            .factory-slider-wrapper .factory-card .card-overlay:hover .title svg {
                transform: rotate(180deg);
            }
/* ----------------------------------------------------------------- */

/* ---------------------- product-slider-container  --------------------------- */
.product-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: black;
    width: 100vw;
    padding: 50px;
    max-width: 1480px;
    margin: 0 auto;
    box-sizing: border-box;
}
    .product-slider-wrapper h2 {
        text-align: center;
    }
    .product-slider-wrapper h3 {
        margin: 15px 0px;
    }

    .product-slider-wrapper .content {
        margin: 0px auto;
        position: relative;
    }

    .product-slider-wrapper .nav-btn {
        position: absolute;
        top: 45%;
        transform: translateY(-45%);
        z-index: 10;
        background: rgba(0,0,0,0.5);
        color: white;
        border: none;
        font-size: 32px;
        padding: 20px 15px;
        cursor: pointer;
    }

    .product-slider-wrapper .content .prev-btn {
        left: 10px;
    }

    .product-slider-wrapper .content .next-btn {
        right: 10px;
    }

    .product-slider-wrapper .product-slider-container {
        overflow-x: auto;
        white-space: nowrap;
        scroll-behavior: smooth;
        padding: 35px 0px 50px 0px;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

        .product-slider-wrapper .product-slider-container::-webkit-scrollbar {
            display: none; /* Chrome, Safari */
        }
    .product-slider-wrapper .card-content .subtitle {
        font-size: 1rem;
        margin: 0px;
    }
    .product-slider-wrapper .card-content p {
        font-size: 0.875rem;
        margin: 10px 0px;
    }


    .product-slider-wrapper .product-slider {
        display: flex;
        gap: 10px;
        /*width: 1000px;*/
    }
    .product-slider-wrapper .product-card {
        position: relative;
        flex: 0 0 auto;
        width: 300px;
        cursor: pointer;
        padding: 0px 10px;
        white-space: normal; 
        word-wrap: break-word; 
        word-break: break-all; 
    }
        .product-slider-wrapper .product-card:hover .contact {
            background-color: #000;
            color: #ffd400;
        }

        .product-slider-wrapper .product-card a {
            color: #000;
            text-decoration: none;
        }

        .product-slider-wrapper .product-card .text-content {
            min-height: 110px;
        }

        .product-slider-wrapper .product-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            position: relative; 
            z-index: 1; 
        }

        .product-slider-wrapper .product-card .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            z-index: 2;
            background: rgba(0, 0, 0, 0.6); 
            color: white;
            padding: 10px 0px;
            width: 100%;
            white-space: normal;
            cursor: pointer;
        }

            .product-slider-wrapper .product-card .card-overlay .title {
                font-size: 1em; /* content 001 */
                font-weight: bold;
                margin: 0px;
                display: flex;
                justify-content: space-between;
                padding: 10px 30px;
            }

            .product-slider-wrapper .product-card .card-overlay .content {
                display: none;
                font-size: 1em; /* content 001 */
                padding: 10px 30px;
            }

            .product-slider-wrapper .product-card .card-overlay:hover .content {
                display: block;
            }

            .product-slider-wrapper .product-card .card-overlay .content .line {
                display: flex;
                justify-content: space-between;
                padding: 5px 0;
                border-bottom: 0.5px solid #808080;
            }

            .product-slider-wrapper .product-card .card-overlay .content .value {
                text-align: right;
            }

            .product-slider-wrapper .product-card .card-overlay:hover .title svg {
                transform: rotate(180deg);
            }

    .product-slider-wrapper .indicate {
        display: flex;
        justify-items: center;
        justify-content: center;
        gap: 10px;
    }
    .product-slider-wrapper .indicate svg {
        color: #ccc;
        cursor: pointer;
    }
        .product-slider-wrapper .indicate svg:hover {
            color: #000;
        }
@media (max-width: 767px) {
    .product-slider-wrapper {
        position: relative;
        width: auto;
        overflow: hidden;
        background: black;
        padding: 0px 20px;
        max-width: auto;
        margin: 0 auto;
    }
    .product-slider-wrapper .product-slider-container {
        padding: 35px 0px 50px 0px;
    }

    .product-slider-wrapper .product-card {
        padding: 0px;
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- demo-slider-container  --------------------------- */
.demo-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: black;
    width: 100vw;
    padding: 50px 0px;
}

    .demo-slider-wrapper h2 {
        text-align: center;
    }

    .demo-slider-wrapper .content {
        margin: 0px auto;
        position: relative;
    }

    .demo-slider-wrapper .nav-btn {
        position: absolute;
        top: 45%;
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(0,0,0,0.5);
        color: white;
        border: none;
        font-size: 32px;
        padding: 20px 15px;
        cursor: pointer;
        user-select: none;
        border-radius: 4px;
    }

    .demo-slider-wrapper .content .prev-btn {
        left: 10px;
    }

    .demo-slider-wrapper .content .next-btn {
        right: 10px;
    }

    .demo-slider-wrapper .demo-slider-container {
        overflow-x: auto;
        white-space: nowrap;
        scroll-behavior: smooth;
        padding: 35px 40px;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

        .demo-slider-wrapper .demo-slider-container::-webkit-scrollbar {
            display: none; /* Chrome, Safari */
        }

    .demo-slider-wrapper .demo-slider {
        display: flex;
        gap: 10px;
    }

    .demo-slider-wrapper .demo-card {
        position: relative;
        flex: 0 0 auto;
        overflow: hidden;
        width: 320px;
    }

        .demo-slider-wrapper .demo-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            position: relative; /* ←←← 添加这句 */
            z-index: 1; /* ←←← 可选 */
        }

        .demo-slider-wrapper .demo-card .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            z-index: 2;
            background: rgba(0, 0, 0, 0.6); /* 半透明黑底 */
            color: white;
            padding: 10px 0px;
            width: 100%;
            white-space: normal;
            cursor: pointer;
        }

            .demo-slider-wrapper .demo-card .card-overlay .title {
                font-size: 1em; /* content 001 */
                font-weight: bold;
                margin: 0px;
                display: flex;
                justify-content: space-between;
                padding: 10px 30px;
            }

            .demo-slider-wrapper .demo-card .card-overlay .content {
                display: none;
                font-size: 1em; /* content 001 */
                padding: 10px 30px;
            }

            .demo-slider-wrapper .demo-card .card-overlay:hover .content {
                display: block;
            }

            .demo-slider-wrapper .demo-card .card-overlay .content .line {
                display: flex;
                justify-content: space-between;
                padding: 5px 0;
                border-bottom: 0.5px solid #808080;
            }

            .demo-slider-wrapper .demo-card .card-overlay .content .value {
                text-align: right;
            }

            .demo-slider-wrapper .demo-card .card-overlay:hover .title svg {
                transform: rotate(180deg);
            }
    .demo-slider-wrapper .indicate {
        display: flex;
        justify-items: center;
        justify-content: center;
        gap: 10px;
    }

        .demo-slider-wrapper .indicate svg {
            color: #ccc;
            cursor: pointer;
        }
            .demo-slider-wrapper .indicate svg:hover {
                color: #000;
            }
@media (max-width: 767px) {
    .demo-slider-wrapper .demo-slider-container {
        padding: 35px 20px 50px 20px;
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- section-wrapper  --------------------------- */
.section-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    margin: 0 auto;
    padding: 100px 50px 50px 50px;
    max-width: 1480px;
    align-items: stretch;
}
    .section-wrapper .left-image {
        display: block;
        align-items: center;
        justify-content: center;
        margin: 0px;
        width: 50%;
        height: auto;
    }
        .section-wrapper .left-image img {
            width: 100%;
            object-fit: cover;
        }

    .section-wrapper .left-content {
        align-items: center;
        justify-content: center;
        margin: 0px;
        width: 30%;
    }
    .section-wrapper .right-content {
        flex: 1;
        padding: 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
        .section-wrapper .right-content button {
            /*align-self: flex-end;*/ /* 让按钮靠右 */
            padding: 12px 20px;
            background-color: #ffd400;
            color: #000;
            border: none;
            cursor: pointer;
            max-width: 200px;
        }
            .section-wrapper .right-content button:hover {
                background-color: #000;
                color: #fff;
            }
    .section-wrapper .left-content-a {
        align-items: center;
        justify-content: center;
        margin: 0px;
        width: 20%;
    }
    .section-wrapper .left-content-b {
        align-items: center;
        justify-content: center;
        margin: 0px;
        width: 50%;
    }
    .section-wrapper .left-content-c {
        align-items: center;
        justify-content: center;
        margin: 0px;
        width: 25%;
    }
    .section-wrapper .right-content-b {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50%;
    }

    .section-wrapper .main-title {
        font-weight: bold;
        line-height: 1.2;
        margin: 0px 0px 20px 0px;
    }

    .section-wrapper .subtitle {
        font-size: 1em; /* content 001 */
        color: #444;
        margin-bottom: 20px;
    }

    .section-wrapper .services {
        margin: 0px;
    }

    .section-wrapper .service-item {
        font-size: 1em; /* content 001 */
        padding: 15px 0;
        border-bottom: 0.1px solid #aaa;
        cursor: pointer;
    }
        .section-wrapper .service-item:first-child {
            padding-top: 0px;
        }
        .section-wrapper .service-item strong {
            font-size: 1.2rem; 
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .section-wrapper .service-item:first-child .service-desc {
            display: block;
        }
        .section-wrapper .service-item:last-child {
            border-bottom: none;
        }
        .section-wrapper .service-item strong svg {
            transform: rotate(180deg);
        }
        .section-wrapper .service-item.extend strong svg {
            transform: rotate(0deg);
        }

    .section-wrapper .service-desc {
        display: none;
        font-size: 1em; /* content 001 */
        color: #555;
        margin-top: 5px;
    }
    .section-wrapper .text-item {
        font-size: 1em; /* content 001 */
        padding: 3px 0;
        cursor: pointer;
    }
    .section-wrapper .text-item svg {
        margin-right: 5px;
    }
@media (max-width: 1100px) {
    .section-wrapper {
        display: flex;
        flex-direction: column;
        padding: 30px 50px;
    }
        .section-wrapper .left-image {
            width: 100%;
            padding: 20px 0px 0px 0px;
        }
        .section-wrapper .left-content {
            order: -1;
            width: 100%;
            margin: 0px;
        }
        .section-wrapper .left-content-a {
            width: 100%;
            margin: 0px 0px 50px 0px;
        }
        .section-wrapper .left-content-c {
            width: 100%;
            margin: 0px 0px 50px 0px;
        }
    .section-wrapper .right-content {
        width: 100%;
        margin: 50px 0px;
        padding: 0px;
    }
}
@media screen and (max-width: 767px) {
    .section-wrapper {
        display: flex;
        padding: 30px 20px;
        gap: 20px;
    }

        .section-wrapper .left-content-a {
            order: -1;
            margin: 0px;
        }
        .section-wrapper .right-content {
            margin: 0px;
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- section-wrapper-black  --------------------------- */
.section-wrapper-black {
    background-color: #000;
    color: #fff;
}

    .section-wrapper-black .container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 50px;
        margin: 0 auto;
        padding: 50px;
        max-width: 1480px;
        align-items: stretch;
    }

    .section-wrapper-black .left-image {
        display: block;
        align-items: center;
        justify-content: center;
        margin: 0px;
        width: 50%;
        height: auto;
    }

        .section-wrapper-black .left-image img {
            width: 100%;
            object-fit: cover;
        }

    .section-wrapper-black .left-content {
        align-items: center;
        justify-content: center;
        margin: 0px;
        width: 30%;
    }

    .section-wrapper-black .right-content {
        flex: 1;
        padding: 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .section-wrapper-black .left-content-a {
        align-items: center;
        justify-content: center;
        margin: 0px;
        width: 20%;
    }

    .section-wrapper-black .left-content-b {
        align-items: center;
        justify-content: center;
        margin: 0px;
        width: 50%;
    }

    .section-wrapper-black .right-content-b {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50%;
    }

    .section-wrapper-black .main-title {
        font-weight: bold;
        line-height: 1.2;
        margin: 0px 0px 20px 0px;
    }

    .section-wrapper-black .subtitle {
        font-size: 1em; /* content 001 */
        color: #fff;
        margin-bottom: 20px;
    }

    .section-wrapper-black .services {
        margin: 0px;
    }
    .section-wrapper-black .spec-table table {
        border-bottom: 0.5px solid #ccc;
    }
    .section-wrapper-black .spec-table tr {
        border-bottom: 0.5px solid #ccc;
    }

    .section-wrapper-black .service-item {
        font-size: 1em; /* content 001 */
        padding: 15px 0;
        border-bottom: 0.1px solid #aaa;
        cursor: pointer;
    }

        .section-wrapper-black .service-item:first-child {
            padding-top: 0px;
        }

        .section-wrapper-black .service-item strong {
            font-size: 1.2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .section-wrapper-black .service-item:first-child .service-desc {
            display: block;
        }

        .section-wrapper-black .service-item:last-child {
            border-bottom: none;
        }

        .section-wrapper-black .service-item strong svg {
            transform: rotate(180deg);
        }

        .section-wrapper-black .service-item.extend strong svg {
            transform: rotate(0deg);
        }

    .section-wrapper-black .service-desc {
        display: none;
        font-size: 1em; /* content 001 */
        color: #555;
        margin-top: 5px;
    }

    .section-wrapper-black .text-item {
        font-size: 1em; /* content 001 */
        padding: 3px 0;
        cursor: pointer;
    }

        .section-wrapper-black .text-item svg {
            margin-right: 5px;
        }

@media (max-width: 1100px) {
    .section-wrapper-black {
        display: flex;
        flex-direction: column;
        padding: 30px 50px;
    }

        .section-wrapper-black .left-image {
            width: 100%;
            padding: 20px 0px 0px 0px;
        }

        .section-wrapper-black .left-content {
            order: -1;
            width: 100%;
            margin: 0px;
        }

        .section-wrapper-black .left-content-a {
            width: 100%;
            margin: 0px 0px 50px 0px;
        }

        .section-wrapper-black .right-content {
            width: 100%;
            margin: 50px 0px;
            padding: 0px;
        }
}

@media screen and (max-width: 767px) {
    .section-wrapper-black {
        display: flex;
        padding: 30px 20px;
        gap: 20px;
    }

        .section-wrapper-black .left-content-a {
            order: -1;
            margin: 0px;
        }

        .section-wrapper-black .right-content {
            margin: 0px;
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- section-wrapper-a  --------------------------- */
.section-wrapper-a {
    margin: 0 auto;
    padding: 50px;
    max-width: 1480px;
}
    .section-wrapper-a .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        background: #f2f2f2;
        padding: 20px 50px;
    }

    .section-wrapper-a .left-content {
        align-items: center;
        justify-content: center;
        margin: 0px;
        width: 50%;
        flex: 1;
    }

    .section-wrapper-a .right-content {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50%;
    }

    .section-wrapper-a .main-title {
        font-weight: bold;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .section-wrapper-a .subtitle {
        font-size: 1em; /* content 001 */
        color: #444;
        margin-bottom: 20px;
    }

@media (max-width: 1100px) {
    .section-wrapper-a {
        display: block;
        padding: 30px 20px;
    }

        .section-wrapper-a h2 {
            text-align: center;
        }
        .section-wrapper-a .container {
            display: flex;
            flex-direction: column;
            padding: 30px 20px 50px 20px;
            gap: 20px;
        }
        .section-wrapper-a .left-content {
            width: 100%;
            margin: 0px;
        }

        .section-wrapper-a .right-content {
            width: 100%;
            margin: 0px;
            padding: 0px;
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- section-wrapper-b  --------------------------- */
.section-wrapper-b {
    gap: 50px;
    margin: 0 auto;
    padding: 50px;
    max-width: 1480px;
}
    .section-wrapper-b .left-content {
        display: grid;
        grid-template-columns: 0.7fr 1fr;
        align-items: center;
        justify-content: center;
        margin: 50px 0px;
    }
    .section-wrapper-b .left-content h2 {
        width: 70%
    }

    .section-wrapper-b .right-content {
        flex: 1;
        padding: 0px;
    }

    .section-wrapper-b .main-title {
        font-weight: bold;
        line-height: 1.2;
        margin: 0px;
    }

    .section-wrapper-b .subtitle {
        font-size: 1em; /* content 001 */
        color: #444;
        margin-bottom: 20px;
    }

    .section-wrapper-b .services {
        margin: 0px;
    }

    .section-wrapper-b .service-item {
        font-size: 1em; /* content 001 */
        padding: 15px 0;
        border-bottom: 0.1px solid #aaa;
        cursor: pointer;
    }

        .section-wrapper-b .service-item:first-child {
            padding-top: 0px;
        }

        .section-wrapper-b .service-item strong {
            font-size: 1.2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .section-wrapper-b .service-item:first-child .service-desc {
            display: block;
        }

        .section-wrapper-b .service-item:last-child {
            border-bottom: none;
        }

        .section-wrapper-b .service-item strong svg {
            transform: rotate(180deg);
        }

        .section-wrapper-b .service-item.extend strong svg {
            transform: rotate(0deg);
        }

    .section-wrapper-b .service-desc {
        display: none;
        font-size: 1em; /* content 001 */
        color: #555;
        margin-top: 5px;
    }

    .section-wrapper-b .text-item {
        font-size: 1em; /* content 001 */
        padding: 3px 0;
        cursor: pointer;
    }

        .section-wrapper-b .text-item svg {
            margin-right: 5px;
        }

@media (max-width: 1100px) {
    .section-wrapper-b {
        display: block;
        padding: 30px 50px;
    }

        .section-wrapper-b .left-image {
            width: 100%;
            padding: 20px 0px 0px 0px;
        }

        .section-wrapper-b .left-content {
            width: 100%;
            margin: 0px;
        }

        .section-wrapper-b .left-content-a {
            width: 100%;
            margin: 0px 0px 50px 0px;
        }

        .section-wrapper-b .right-content {
            width: 100%;
            margin: 50px 0px;
            padding: 0px;
        }
}

@media screen and (max-width: 767px) {
    .section-wrapper-b {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- workflow-section  --------------------------- */
.workflow-section {
    text-align: center;
    padding: 30px 50px 50px 50px;
    margin: auto;
    max-width: 1480px;
}

    .workflow-section h2 {
        font-size: 2em;
        font-weight: bold;
        position: relative;
    }
        .workflow-section h2 hr {
            margin: 0px;
            display: none;
        }

    .workflow-section .workflow-steps {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
        gap: 20px;
        padding-top: 20px;
    }

    .workflow-section .wk-step {
        flex: 1 1 calc(16.66% - 30px);
        min-width: 160px;
        position: relative;
        padding-top: 25px;
    }

        .workflow-section .wk-step h3 {
            font-size: 1em; /* content 001 */
            font-weight: bold;
            margin: 35px 0px 20px 0px;
        }

        .workflow-section .wk-step p {
            font-size: 0.8rem; 
            color: #555;
            line-height: 1.6;
        }

    .workflow-section .workflow-steps::before {
        content: "";
        position: absolute;
        top: 62px;
        left: 0;
        right: 0;
        height: 1px;
        background: #ccc;
        margin: 0px 100px;
        z-index: 0;
    }

@media (max-width: 1200px) {
    .workflow-section .workflow-steps {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .workflow-section .wk-step {
        position: relative;
        width: 100%;
        background: #f9f9f9;
        border-radius: 12px;
        padding: 0px 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        text-align: left;
        align-items: center;
    }

        .workflow-section .wk-step .circle {
            position: absolute;
            top: 23px;
            left: 20px;
            width: 15px;
            height: 15px;
            color: #000;
            font-weight: bold;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .workflow-section .wk-step h3 {
            font-weight: bold;
            margin: 20px 0px 6px 30px;
        }

        .workflow-section .wk-step p {
            color: #444;
            line-height: 1.6;
        }
}
@media (max-width: 767px) {
    .workflow-section {
        padding: 30px 20px 100px 20px;
    }

        .workflow-section .wk-step {
            width: 100%;
            box-sizing: border-box;
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- industries-section --------------------------- */
.industries-section {
    background-color: #000;
    color: #fff;
    padding: 150px 50px;
}

    .industries-section .content-container {
        position: relative;
        margin: 0 auto;
        width: 100%;
        max-width: 1480px;
    }

    .industries-section .industries-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 0 auto;
        gap: 40px;
    }

    .industries-section .industries-text {
        flex: 1 1 45%;
        min-width: 300px;
    }

        .industries-section .industries-text h2 {
            font-size: 2em;
            font-weight: bold;
            margin: 0px 0px 25px 0px;
        }

        .industries-section .industries-text p {
            font-size: 1em; /* content 001 */
            line-height: 1.7;
            color: #ddd;
        }

    .industries-section .industries-tags {
        flex: 1 1 50%;
        min-width: 300px;
        margin-top: 70px;
    }

        .industries-section .industries-tags ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 16px 24px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .industries-section .industries-tags li {
            display: flex;
            align-items: center;
            color: #fff;
            font-size: 1em; /* content 001 */
        }

        .industries-section .industries-tags li svg {
            margin-right: 10px;
        }
@media screen and (max-width: 820px) {
    .industries-section {
        padding: 50px;
    }
}
@media screen and (max-width: 767px) {
    .industries-section {
        padding: 50px 20px;
    }

        .industries-section .industries-container {
            gap: 0px;
        }
        .industries-section .industries-tags {
            margin-top: 20px;
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- quote-platform --------------------------- */
.quote-platform {
    padding: 50px;
}
    .quote-platform .quote-wrapper {
        margin: auto;
        text-align: center;
        max-width: 1480px;
    }

    .quote-platform h2 {
        font-size: 2em;
        font-weight: bold;
        margin-bottom: 100px;
    }

    .quote-platform .quote-divider {
        width: 400px;
        margin: 0 auto 60px;
        height: 1px;
        background-color: #ccc;
        border: none;
    }

    .quote-platform .quote-content {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
        text-align: left;
        position: relative;
    }

        .quote-platform .quote-content .quote-image {
            width: 50%;
        }

        .quote-platform .quote-content .quote-image img {
            width: 100%;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        .quote-platform .quote-content .quote-text {
            width: 45%;
            position: absolute;
            top: 50%;
            left: 55%;
            transform: translateY(-50%);
        }

            .quote-platform .quote-content .quote-text p {
                font-size: 1em; /* content 001 */
                line-height: 1.7;
                margin: 0px 0px 20px 0px;
                color: #333;
            }

            .quote-platform .quote-content .quote-text .quote-list {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                .quote-platform .quote-content .quote-text .quote-list li {
                    display: flex;
                    align-items: flex-start;
                    margin-bottom: 16px;
                    font-size: 1em; /* content 001 */
                    color: #000;
                    line-height: 1.6;
                }

                .quote-platform .quote-content .quote-text .quote-list .bullet {
                    width: 10px;
                    height: 10px;
                    background-color: #000;
                    border-radius: 50%;
                    margin-right: 10px;
                    margin-top: 6px;
                    flex-shrink: 0;
                }
@media screen and (max-width: 1100px) {
    .quote-platform {
        padding: 40px 50px;
    }

        .quote-platform h2 {
            font-size: 1.5em;
            margin-bottom: 50px;
        }

        .quote-platform .quote-divider {
            width: 60%;
            margin-bottom: 40px;
        }

        .quote-platform .quote-content {
            flex-direction: column;
            position: static;
        }

            .quote-platform .quote-content .quote-image {
                width: 100%;
                margin-bottom: 20px;
            }

            .quote-platform .quote-content .quote-text {
                width: 100%;
                position: static;
                transform: none;
                left: auto;
                top: auto;
            }

                .quote-platform .quote-content .quote-text p,
                .quote-platform .quote-content .quote-text .quote-list li {
                    font-size: 0.85em;
                }

                .quote-platform .quote-content .quote-text .quote-list .bullet {
                    width: 8px;
                    height: 8px;
                    margin-top: 5px;
                }
}
@media screen and (max-width: 767px) {
    .quote-platform {
        padding: 0px 20px 50px 20px;
    }

        .quote-platform h2 {
            font-size: 1.5em;
            margin-bottom: 50px;
        }

        .quote-platform .quote-divider {
            width: 60%;
            margin-bottom: 40px;
        }

        .quote-platform .quote-content {
            flex-direction: column;
            position: static;
        }

            .quote-platform .quote-content .quote-image {
                width: 100%;
                margin-bottom: 20px;
            }

            .quote-platform .quote-content .quote-text {
                width: 100%;
                position: static;
                transform: none;
                left: auto;
                top: auto;
            }

                .quote-platform .quote-content .quote-text p,
                .quote-platform .quote-content .quote-text .quote-list li {
                    font-size: 0.85em;
                }

                .quote-platform .quote-content .quote-text .quote-list .bullet {
                    width: 8px;
                    height: 8px;
                    margin-top: 5px;
                }
}

/* ----------------------------------------------------------------- */

/* ---------------------- section-wrapper-d--------------------------- */
.section-wrapper-d {
    padding: 50px;
}

    .section-wrapper-d .container {
        margin: auto;
        text-align: center;
        max-width: 1480px;
    }

    .section-wrapper-d .content {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
        text-align: left;
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .section-wrapper-d h2 {
        font-size: 2em;
        font-weight: bold;
        margin: 0px 0px 20px 0px;;
        padding: 0px;
    }
        .section-wrapper-d .content .content-image p {
            margin: 0px 0px 30px 0px;
        }

            .section-wrapper-d .content .content-image img {
                width: 100%;
                border: 1px solid #ccc;
                border-radius: 5px;
            }

        .section-wrapper-d .content .content-text {
        }


@media screen and (max-width: 1100px) {
    .section-wrapper-d {
        padding: 40px 50px;
    }

        .section-wrapper-d h2 {
            font-size: 1.5em;
            margin-bottom: 50px;
        }

        .section-wrapper-d .content {
            flex-direction: column;
            position: static;
        }

            .section-wrapper-d .content .content-image {
                width: 100%;
                margin-bottom: 20px;
            }

            .section-wrapper-d .content .content-text {
                width: 100%;
                position: static;
                transform: none;
                left: auto;
                top: auto;
            }
}

@media screen and (max-width: 768px) {
    .section-wrapper-d {
        padding: 50px 20px;
    }
        .section-wrapper-d h2 {
            font-size: 1.5em;
            margin-bottom: 20px;
        }
        .section-wrapper-d .content {
            grid-template-columns: 1fr;
            gap: 20px;
        }

            .section-wrapper-d .content .content-image {
                width: 100%;
                margin-bottom: 20px;
            }

            .section-wrapper-d .content .content-text {
                width: 100%;
                position: static;
                transform: none;
                left: auto;
                top: auto;
            }
}

/* ----------------------------------------------------------------- */

/* ---------------------- case-section  --------------------------- */
.case-section {
    padding: 80px 50px;
    margin: auto;
    max-width: 1480px;
}

    .case-section .case-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        margin-bottom: 60px;
    }

    .case-section .case-title-block h2 {
        font-size: 2em;
        font-weight: bold;
        margin: 0px 0px 30px 0px;
    }

    .case-section .cta-button {
        margin-top: 15px;
    }

.case-section .case-title-block p {
    font-size: 1.12rem;
    font-weight:500;
    color: #555;
    max-width: 600px;
}

    .case-section .case-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: nowrap;
        overflow: hidden;
    }
    .case-section .case-slider-wrapper {
        display: flex;
        align-items: center;
        gap: 20px;
        overflow: hidden;
        position: relative;
    }

    .case-section .case-slider {
        display: flex;
        transition: transform 0.5s ease;
        scroll-behavior: smooth;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 40px;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
        .case-section .case-slider::-webkit-scrollbar {
            display: none; /* Chrome, Safari */
        }

    .case-section .case-card {
        min-width: 100%;
        display: flex;
        gap: 40px;
        scroll-snap-align: center;
        align-items: center;
        box-sizing: border-box;
        padding: 0px 80px;
    }

    .case-section .case-text {
        flex: 1;
    }

        .case-section .case-text h3 {
            font-weight: bold;
            margin-bottom: 25px;
        }

        .case-section .case-text p {
            font-size: 1em; /* content 001 */
            line-height: 1.6;
            color: #333;
        }

    .case-section .case-image {
        width: 60%;
    }
    .case-section .case-image img {
        width: 100%;
        border-radius: 4px;
        object-fit: cover;
    }

    .case-section .arrow-btn {
        border: none;
        cursor: pointer;
        background-color: transparent;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }
        .case-section .arrow-btn svg {
            height: 45px;
            width: 45px;
            fill: #000;
        }
            .case-section .arrow-btn svg path {
                stroke: #fff;
            }
            .case-section .arrow-btn svg:hover {
                height: 45px;
                width: 45px;
                fill: #fff;
            }
                .case-section .arrow-btn svg:hover path {
                    stroke: #000;
                }
@media screen and (max-width: 768px) {
    .case-section {
        padding: 40px 50px;
    }

        .case-section .case-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 40px;
        }

        .case-section .case-title-block h2 {
            font-size: 1.5em;
            margin-bottom: 20px;
        }

        .case-section .case-title-block p {
            font-size: 0.85em;
            max-width: 100%;
        }

        .case-section .cta-button {
            margin-top: 10px;
            align-self: flex-start;
        }

        .case-section .case-content {
            flex-direction: column;
            gap: 20px;
        }

        .case-section .case-slider-wrapper {
            overflow-x: auto;
        }

        .case-section .case-slider {
            gap: 20px;
            padding-bottom: 10px;
        }

        .case-section .case-card {
            flex-direction: column;
            padding: 0 10px;
            gap: 20px;
        }

        .case-section .case-text h3 {
            font-size: 1.1em;
            margin-bottom: 15px;
        }

        .case-section .case-text p {
            font-size: 0.85em;
        }

        .case-section .case-image {
            width: 100%;
        }

        .case-section .arrow-btn {
            display: none; /* 隐藏左右按钮以简化移动端体验 */
        }
}
@media screen and (max-width: 767px) {
    .case-section {
        padding: 40px 20px;
    }

        .case-section .case-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 40px;
        }

        .case-section .case-title-block h2 {
            font-size: 1.5em;
            margin-bottom: 20px;
        }

        .case-section .case-title-block p {
            font-size: 0.85em;
            max-width: 100%;
        }

        .case-section .cta-button {
            margin-top: 10px;
            align-self: flex-start;
        }

        .case-section .case-content {
            flex-direction: column;
            gap: 20px;
        }

        .case-section .case-slider-wrapper {
            overflow-x: auto;
        }

        .case-section .case-slider {
            gap: 20px;
            padding-bottom: 10px;
        }

        .case-section .case-card {
            flex-direction: column;
            padding: 0 10px;
            gap: 20px;
        }

        .case-section .case-text h3 {
            font-size: 1.1em;
            margin-bottom: 15px;
        }

        .case-section .case-text p {
            font-size: 0.85em;
        }

        .case-section .case-image {
            width: 100%;
        }

        .case-section .arrow-btn {
            display: none; /* 隐藏左右按钮以简化移动端体验 */
        }
}
/* ----------------------------------------------------------------- */


/* ---------------------- jump-section  --------------------------- */
.jump-section {
    padding: 0px 50px 50px 50px;
    max-width: 1480px;
    margin: auto;
}

    .jump-section .jump-wrapper {
        text-align: center;
        margin-top: 50px;
    }

    .jump-section h2 {
        font-size: 2em;
        font-weight: bold;
    }

    .jump-section .quote-divider {
        width: 400px;
        margin: 0 auto 60px;
        height: 1px;
        background-color: #ccc;
        border: none;
    }

    .jump-section .jump-content {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
        text-align: left;
        position: relative;
    }

        .jump-section .jump-content .left-content {
            width: 40%;
        }
        .jump-section .jump-content .left-content ul {
            list-style: none;
            padding: 0;
            margin: 0px 0px 0px 5px;
            display: grid;
        }
            .jump-section .jump-content .left-content li {
                margin-top: 5px;
                display: flex;
                align-items: center; 
                gap: 6px;
                font-size: 0.8rem;
            }

            .jump-section .jump-content .left-content a {
                color: #000;
            }

        .jump-section .jump-content .right-content {
            width: 50%;
        }

            .jump-section .jump-content .right-content p {
                font-size: 1em; /* content 001 */
                line-height: 1.7;
                margin: 0px 0px 20px 0px;
                color: #333;
            }

            .jump-section .jump-content .right-content .quote-list {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                .jump-section .jump-content .right-content .quote-list li {
                    display: flex;
                    align-items: flex-start;
                    margin-bottom: 16px;
                    font-size: 1em; /* content 001 */
                    color: #000;
                    line-height: 1.6;
                }

                .jump-section .jump-content .right-content .quote-list .bullet {
                    width: 10px;
                    height: 10px;
                    background-color: #000;
                    border-radius: 50%;
                    margin-right: 10px;
                    margin-top: 6px;
                    flex-shrink: 0;
                }
.jump-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--gap);
}

    .jump-list a {
        position: relative;
        display: inline-block;
        padding-left: calc(var(--arrow-line) + 14px);
        text-decoration: none;
        color: #111;
        line-height: 1.6;
    }

        /* left line */
        .jump-list a::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            width: var(--arrow-line);
            height: var(--arrow-thickness);
            background: var(--arrow-color);
            transform: translateY(-50%);
        }

        /* small arrow head */
        .jump-list a::after {
            content: "";
            position: absolute;
            left: var(--arrow-line);
            top: 50%;
            width: 8px;
            height: 8px;
            border-top: var(--arrow-thickness) solid var(--arrow-color);
            border-right: var(--arrow-thickness) solid var(--arrow-color);
            transform: translateY(-50%) rotate(45deg);
        }

    /* hover/focus motion */
    .jump-list a {
        transition: transform .2s ease;
    }

        .jump-list a:hover,
        .jump-list a:focus-visible {
            transform: translateX(2px);
            outline: none;
        }

/* motion preference */
@media (prefers-reduced-motion: reduce) {
    .jump-list a {
        transition: none;
    }
}

@media screen and (max-width: 1100px) {
    .jump-section {
        padding: 0px 50px;
    }
        .jump-section .jump-wrapper {
            margin-top: 0px;
        }

        .jump-section h2 {
            margin-bottom: 50px;
        }

        .jump-section .quote-divider {
            width: 60%;
            margin-bottom: 40px;
        }

        .jump-section .jump-content {
            flex-direction: column;
            position: static;
        }

            .jump-section .jump-content .left-content {
                width: 100%;
                margin-bottom: 20px;
            }

            .jump-section .jump-content .right-content {
                width: 100%;
                position: static;
                transform: none;
                left: auto;
                top: auto;
            }

                .jump-section .jump-content .right-content p,
                .jump-section .jump-content .right-content .quote-list li {
                    font-size: 0.85em;
                }

                .jump-section .jump-content .right-content .quote-list .bullet {
                    width: 8px;
                    height: 8px;
                    margin-top: 5px;
                }
}


@media screen and (max-width: 768px) {
    .jump-section {
        padding: 0px 20px;
    }
}

/* ----------------------------------------------------------------- */

/* ---------------------- adv-section  --------------------------- */
.adv-section {
    padding: 80px 50px;
    max-width: 1480px;
    margin: auto;
}

    .adv-section h2 {
        margin: 0px 0px 80px 0px;
    }

    .adv-section .adv-grid {
        counter-reset: adv;
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 56px 72px;
    }
    .adv-section .adv-card {
        position: relative;
        display: grid;
        grid-template-columns: 0.2fr 1fr;
    }
        .adv-section .adv-card h3 {
            margin: 0 0 8px;
        }

        .adv-section .adv-card p {
            margin: 0;
            color: #202020;
            font-size: 0.875rem;
        }

@media (max-width: 1100px) {
    .adv-section .adv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .adv-section {
        padding: 50px 20px;
    }
        .adv-section .adv-grid {
            grid-template-columns: 1fr;
            gap: 40px 24px;
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- adv-section-a  --------------------------- */
.adv-section-a {
    padding: 80px 50px;
    max-width: 1480px;
    margin: auto;
}

    .adv-section-a h2 {
        margin: 0px 0px 80px 0px;
        text-align: center
    }

    .adv-section-a .adv-grid {
        counter-reset: adv;
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 56px 72px;
    }
    .adv-section-a .adv-card {
        position: relative;
        display: grid;
        grid-template-columns: 0.2fr 1fr;
    }
        .adv-section-a .adv-card h3 {
            margin: 0 0 8px;
        }

        .adv-section-a .adv-card p {
            margin: 0;
            color: #202020;
            font-size: 0.875rem;
        }

@media (max-width: 1100px) {
    .adv-section-a .adv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .adv-section-a {
        padding: 50px 20px;
    }

        .adv-section-a .adv-grid {
            grid-template-columns: 1fr;
            gap: 40px 24px;
        }
}
/* ----------------------------------------------------------------- */


/* ---------------------- spec-table  --------------------------- */
.spec-table {
    --line: #272727; /* 分隔线颜色 */
    --padY: 14px;
    --padX: 18px;
    --fs-left: 18px;
    --fs-right: 18px;
}

    /* 表格线与间距 */
    .spec-table table {
        width: 100%;
        border-collapse: collapse;
        border-bottom: 0.5px solid var(--line);
    }

    .spec-table tr {
        border-bottom: 0.5px solid var(--line);
    }

        .spec-table tr:last-child {
            border-bottom: none;
        }

    .spec-table th {
        text-align: left;
        vertical-align: middle;
        padding: var(--padY) var(--padX);
        font-size: 1.2rem;
    }
    .spec-table td {
        text-align: left;
        vertical-align: middle;
        padding: var(--padY) 100px;
        font-size: 1.2rem;
    }

    .spec-table th {
        width: 40%; 
    }

    /* 去掉垂直边框，让视觉更干净 */
    .spec-table th,
    .spec-table td {
        border: 0;
    }

@media (max-width: 1100px) {

    .spec-table th,
    .spec-table td {
        padding: 8px 10px;
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .spec-table {
        --padY: 12px;
        --padX: 14px;
        --fs-left: 17px;
        --fs-right: 16px;
    }

        .spec-table th,
        .spec-table td {
            display: block;
            width: auto;
            padding: 8px 0px;
        }

        .spec-table tr {
            border-bottom: 1px solid var(--line);
        }

        .spec-table th {
            padding-bottom: 2px;
        }

        .spec-table td {
            padding-top: 0;
        }
}
/* ----------------------------------------------------------------- */


/* ---------------------- card-section  --------------------------- */
.card-section {
    max-width: 1480px;
    margin: auto;
    padding: 80px 50px;
}
    .card-section .top-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 40px;
        align-items: center;
    }

    .card-section .cards-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .card-section .section-header {
        display: flex;
        justify-content: flex-end;
    }

        .card-section .section-header h2 {
            margin: 0;
        }

        .card-section .section-header p {
            margin: 10px 0 20px;
        }
        .card-section .section-header .content {
            width: 70%;
            text-align: right;
        }
    .card-section .card {
        border: 1px solid #ddd;
        overflow: hidden;
        background: #fff;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s;
    }

        .card-section .card:hover {
            transform: translateY(-5px);
        }

        .card-section .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

    .card-section .card-content {
        padding: 20px;
        flex: 1;
    }

        .card-section .card-content h3 {
            margin: 0 0 10px;
        }

        .card-section .card-content p {
            margin-bottom: 20px;
        }

    .card-section .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
    }
    .card-section .learn-more a {
        display: inline-block;
        color: #000;
        font-weight: bold;
        text-decoration: none;
        margin-top: 10px;
        font-size: 1em; /* content 001 */
    }

    .card-section .learn-more:hover {
        text-decoration: underline;
    }

    .card-section .learn-more a .txt-span {
        margin-right: 20px;
    }
@media (max-width: 1100px) {
    .card-section .top-layout {
        grid-template-columns: 1fr;
    }
    .card-section .grid {
        grid-template-columns: 1fr 1fr;
    }
    .card-section .cards-top {
        display: grid;
        gap: 20px;
    }
        .card-section .section-header {
            order: -1;
            margin-bottom: 10px;
        }
            .card-section .section-header .content {
                width: 100%;
                text-align: left;
            }
}
@media (max-width: 767px) {
    .card-section {
        margin: auto;
        padding: 50px 20px;
    }
    .card-section .top-layout {
        grid-template-columns: 1fr;
    }

    .card-section .cards-top {
        grid-template-columns: 1fr;
    }
        .card-section .grid {
            grid-template-columns: 1fr;
        }

    .card-section .section-header {
        order: -1; 
        margin-bottom: 10px;
    }
        .card-section .section-header .content {
            width: 100%;
            text-align: left;
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- promotion-section  --------------------------- */
.promotion-section {
    display: flex;
    justify-content: space-between;
    background-color: #000;
    color: #fff;
    padding: 5px 50px;
    text-align: center;
}
    .promotion-section .container {
        display: flex;
        text-align: center;
        font-size: 0.875rem;
    }

        .promotion-section .container .content {
            margin: 0px 10px;
        }

    .promotion-section .opera {
        display: flex;
        text-align: center;
        font-size: 0.875rem;
    }

        .promotion-section .opera a {
            color: #fff;
            margin: 0px 10px;
        }
@media (max-width: 768px) {
    .promotion-section {
        display: none;
    }
}

/* ----------------------------------------------------------------- */


.quotation {
    display: inline-block;
    padding: 12px 20px;
    background-color: black;
    color: white;
    border: 1px solid #000;
    font-size: 1em; /* content 001 */
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 120px;
}

    .quotation:hover {
        background-color: #ffd400;
        color: #000;
        border: 1px solid #000;
    }

.contact {
    display: inline-block;
    padding: 12px 20px;
    background-color: #fff;
    color: #000;
    font-size: 1em; /* content 001 */
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #000;
    min-width: 120px;
}

    .contact:hover {
        background-color: #000;
        color: #ffd400;
    }

.quotation-black {
    display: inline-block;
    padding: 12px 20px;
    background-color: #ffd400;
    color: #000;
    font-size: 1em; /* content 001 */
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #000;
    min-width: 120px;
}

    .quotation-black:hover {
        background-color: black;
        color: #fff;
        border: 1px solid #fff;
    }

.contact-black {
    display: inline-block;
    padding: 12px 20px;
    background-color: #fff;
    color: #000;
    font-size: 1em; /* content 001 */
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #000;
    min-width: 120px;
}

    .contact-black:hover {
        background-color: #000;
        color: #ffd400;
        border: 1px solid #fff;
    }

/* ---------------------- 网站Body区域-文案内容 --------------------------- */
.text-container {
    margin: 0px auto;
    padding: 50px 50px;
    box-sizing: border-box;
    font-size: 0.912em;
}
    .text-container h1 {
        text-align: center;
        margin: 20px 0px 50px 0px;
    }

    .text-container h2 {
        font-size: 1.5em;
        margin: 35px 0px 35px 0px;
    }

    .text-container h5 {
        margin: 20px 0px;
    }

    .text-container h6 {
        margin: 10px 0px;
    }

    .text-container p {
        font-size: 1em;
    }

    .text-container .item-title {
        font-weight: bold;
        margin: 10px 0px;
    }

    .text-container .icon-img {
        display: block;
        margin: 30px auto 0 auto;
        max-width: 100%;
        height: auto;
    }
@media (max-width: 767px) {
    .text-container {
        padding: 50px 20px;
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- review-section  --------------------------- */
.review-section {
    padding: 50px;
    margin: auto;
    max-width: 1480px;
}
    .review-section h2 {
        text-align: center;
        font-size: 2em;
        font-weight: bold;
        margin: 0px 0px 80px 0px;
    }
    .review-section .container {
        display: grid;
        grid-template-columns: 2fr 3fr;
        gap: 50px;
    }

    .review-section .review-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .review-section .review-header img {
        width: 100%;
    }

    .review-section .review-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: nowrap;
        overflow: hidden;
        border: 1px solid #ddd;
    }

    .review-section .review-slider-wrapper {
        display: flex;
        align-items: center;
        gap: 20px;
        overflow: hidden;
        position: relative;
    }

    .review-section .review-slider {
        display: flex;
        transition: transform 0.5s ease;
        scroll-behavior: smooth;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 40px;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

        .review-section .review-slider::-webkit-scrollbar {
            display: none; /* Chrome, Safari */
        }

    .review-section .review-card {
        min-width: 100%;
        display: flex;
        gap: 40px;
        scroll-snap-align: center;
        align-items: center;
        box-sizing: border-box;
    }

    .review-section .review-text {
        flex: 1;
    }

        .review-section .review-text h3 {
            font-weight: bold;
            margin-bottom: 25px;
        }

        .review-section .review-text p {
            font-size: 1em; /* content 001 */
            line-height: 1.6;
        }

    .review-section .review-image {
        width: 60%;
    }

        .review-section .review-image img {
            width: 100%;
            border-radius: 4px;
            object-fit: cover;
        }

    .review-section .arrow-btn {
        border: none;
        cursor: pointer;
        background-color: transparent;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

@media screen and (max-width: 768px) {
    .review-section {
        padding: 50px;
    }
    .review-section .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
@media screen and (max-width: 767px) {
    .review-section {
        padding: 50px 20px;
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- ourstory-wrapper--------------------------- */
.ourstory-wrapper {
    padding: 50px;
}

    .ourstory-wrapper .container {
        margin: auto;
        text-align: center;
        max-width: 1480px;
    }

    .ourstory-wrapper .content {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
        text-align: left;
        position: relative;
        display: grid;
        grid-template-columns: 0.35fr 0.65fr;
        gap: 100px;
    }

    .ourstory-wrapper h2 {
        font-size: 2.5rem;
        font-weight: bold;
        margin: 0px 0px 50px 0px;
        padding: 0px;
    }

    .ourstory-wrapper h3 {
        margin: 20px 0px 5px 0px;
        padding: 0px;
    }

    .ourstory-wrapper .content .content-image p {
        margin: 0px 0px 30px 0px;
    }

        .ourstory-wrapper .content .content-image img {
            width: 100%;
            border: 1px solid #ccc;
            border-radius: 5px;
        }


@media screen and (max-width: 1100px) {
    .ourstory-wrapper {
        padding: 40px 50px;
    }

        .ourstory-wrapper h2 {
            font-size: 1.5em;
            margin-bottom: 50px;
        }

        .ourstory-wrapper .content {
            flex-direction: column;
            position: static;
            gap: 50px;
        }

            .ourstory-wrapper .content .content-image {
                width: 100%;
                margin-bottom: 20px;
            }

            .ourstory-wrapper .content .content-text {
                width: 100%;
                position: static;
                transform: none;
                left: auto;
                top: auto;
            }
}

@media screen and (max-width: 767px) {
    .ourstory-wrapper {
        padding: 30px 20px;
    }

        .ourstory-wrapper h2 {
            font-size: 1.5em;
            margin-bottom: 20px;
        }

        .ourstory-wrapper .content {
            grid-template-columns: 1fr;
            gap: 20px;
        }

            .ourstory-wrapper .content .content-image {
                width: 100%;
                margin-bottom: 20px;
            }

            .ourstory-wrapper .content .content-text {
                width: 100%;
                position: static;
                transform: none;
                left: auto;
                top: auto;
                order: -1;
            }
}
/* ----------------------------------------------------------------- */

/* ---------------------- h-item--------------------------- */
.h-item {
    display: grid;
    grid-template-columns: 0.5fr 2fr 0.8fr;
    border-top: 1px solid #ccc;
    padding: 25px 0px;
    align-items: center;
}

    .h-item .title {
        font-size: 2.3rem;
    }

    .h-item > div {
        padding: 0px 10px;
    }
        .h-item > div:first-child {
            padding-left: 0px;
        }
        .h-item > div:last-child {
            padding-right: 0px;
        }

    .h-item img {
        width: 100%;
    }
.h-item-2 {
    display: grid;
    grid-template-columns: 2.5fr 0.8fr;
    padding: 25px 0px;
    align-items: center;
}
.h-item-3 {
    display: grid;
    grid-template-columns: 0.57fr 2fr;
    padding: 25px 0px;
    align-items: center;
    border-bottom: 1px solid #ccc;
}
    .h-item-3:last-child {
        border-bottom: 0px;
    }

@media screen and (max-width: 1100px) {
    .h-item-3 {
        grid-template-columns: 0.57fr 1.3fr;
    }
}
@media screen and (max-width: 767px) {
    .h-item .title {
        font-size: 1.8rem;
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- h-item-2clo-a --------------------------- */
.h-item-2clo-a {
    display: grid;
    grid-template-columns: 0.7fr 2fr;
    border-top: 1px solid #ccc;
    padding: 25px 0px;
    align-items: center;
    gap: 30px;
}

    .h-item-2clo-a .title {
        font-size: 2.2rem;
    }

    .h-item-2clo-a > div {
        padding: 0px 10px;
    }

        .h-item-2clo-a > div:first-child {
            padding-left: 0px;
        }

        .h-item-2clo-a > div:last-child {
            padding-right: 0px;
        }

    .h-item-2clo-a img {
        width: 100%;
    }
    .h-item-2clo-a h3 {
        padding: 0px;
        margin: 0px;
    }
    .h-item-2clo-a p {
        line-height: 1.5;
        margin: 10px 0px;
    }
@media screen and (max-width: 1100px) {
    .h-item-2clo-a {
        gap: 15px;
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-首要Banner --------------------------- */
.main-banner-simple {
    background-image: url('/img/Our_Factory_Group.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: left;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 240px;
    width: 100vw;
    margin: 0px 0px 50px 0px;
}

    .main-banner-simple .content-container {
        position: relative;
        margin: 0 auto;
        width: 100%;
        padding: 0px 50px;
        max-width: 1480px;
    }

    .main-banner-simple .content {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
    }

        .main-banner-simple .content h1 {
            font-size: 3em;
            margin: 0;
            font-weight: 700;
            text-align: center;
        }

        .main-banner-simple .content p {
            font-size: 1em; /* content 001 */
            margin: 25px 100px;
        }
.mb-our-investors {
    background-image: url('/img/Our_Investors.webp');
}
@media screen and (max-width: 1100px) {

    .main-banner-simple .content h1 {
        font-size: 2em;
    }
    .main-banner-simple .content p {
        font-size: 1rem;
        margin: 25px 20px;
    }
}
@media screen and (max-width: 767px) {

    .main-banner-simple .content-container {
        padding: 80px 20px 50px 20px;
    }
    .main-banner-simple .content {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
    }
}

/* ----------------------------------------------------------------- */

/* ---------------------- section-wrapper-e--------------------------- */
.section-wrapper-e {
    padding: 50px;
}

    .section-wrapper-e .container {
        margin: auto;
        text-align: center;
        max-width: 1480px;
    }

    .section-wrapper-e .content {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
        text-align: left;
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .section-wrapper-e h2 {
        font-size: 1.5rem;
        font-weight: bold;
        margin: 0px;
        padding: 0px;
        display: flex;
        align-items: center;
    }

    .section-wrapper-e h3 {
        font-size: 1.2rem;
        font-weight: bold;
        margin: 0px;
        padding: 0px;
        display: flex;
        align-items: center;
    }

    .section-wrapper-e .content .content-image p {
        margin: 0px 0px 30px 0px;
    }

    .section-wrapper-e .content .content-image img {
        width: 100%;
        border: 1px solid #ccc;
    }

    .section-wrapper-e .content .content-image .image-list {
        width: 18%;
        display: flex;
        justify-content:space-between;
        gap: 5px;
    }

        .section-wrapper-e .content .content-image .image-list img {
            cursor: pointer;
        }

            .section-wrapper-e .content .content-image .image-list img:hover {
                border: 1px solid #000;
            }

    .section-wrapper-e .content .content-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }
    .section-wrapper-e .content .content-text .item {
        border-bottom: 1px solid #ccc;
        margin-bottom: 15px;
    }

    .section-wrapper-e .content .content-text .title-item {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #ccc;
        align-items: center;
        padding: 0px 20px 15px 0px;
    }

        .section-wrapper-e .content .content-text .title-item svg {
            width: 25px;
            height: 25px;
            margin-right: 15px;
        }

        .section-wrapper-e .content .content-text .title-item p {
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0px;
            padding: 0px;
        }

    .section-wrapper-e .content .content-text .text-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 20px 15px 0px;
    }

        .section-wrapper-e .content .content-text .text-item svg {
            width: 25px;
            height: 25px;
            margin-right: 15px;
        }

        .section-wrapper-e .content .content-text .text-item p {
            font-size: 1rem;
            font-weight: bold;
            margin: 0px;
            padding: 0px;
        }


@media screen and (max-width: 1100px) {
    .section-wrapper-e {
        padding: 40px 50px;
    }

        .section-wrapper-e h2 {
            font-size: 1.2em;
            margin-bottom: 0px;
        }

        .section-wrapper-e .content {
            flex-direction: column;
            position: static;
            gap: 30px;
        }

            .section-wrapper-e .content .content-image {
                width: 100%;
                margin-bottom: 20px;
            }

            .section-wrapper-e .content .content-text {
                width: 100%;
                position: static;
                transform: none;
                left: auto;
                top: auto;
            }
                .section-wrapper-e .content .content-text .title-item {
                    padding: 0px 20px 15px 0px;
                }
                    .section-wrapper-e .content .content-text .title-item p {
                        font-size: 1.2rem;
                    }
}

@media screen and (max-width: 767px) {
    .section-wrapper-e {
        padding: 50px 20px;
    }

        .section-wrapper-e h2 {
            font-size: 1.2em;
        }

        .section-wrapper-e .content {
            grid-template-columns: 1fr;
            gap: 20px;
        }

            .section-wrapper-e .content .content-image {
                width: 100%;
                margin-bottom: 20px;
            }

            .section-wrapper-e .content .content-text {
                width: 100%;
                position: static;
                transform: none;
                left: auto;
                top: auto;
                order: -1;
            }
}

/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-文章博客 --------------------------- */
.blog-items {
    margin: 0px auto;
    padding: 50px;
    max-width: 1480px;
}

    .blog-items .grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
        gap: 30px;
    }

    .blog-items .card {
        background: #f2f2f2;
        overflow: hidden;
        width: calc(33% - 18px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0px;
        font-size: 0.9rem;
        cursor: pointer;
    }

        .blog-items .card img {
            object-fit: cover;
            display: block;
            width: 100%;
        }

        .blog-items .card:hover {
            background: #e0e0e0;
            transition: background 0.3s ease;
        }

        .blog-items .card h3 {
            font-size: 1.4em;
            margin: 0px 0px;
        }

        .blog-items .card .card-content {
            padding: 15px 30px 0px 30px;
            text-align: left;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            font-size: 1em; /* content 001 */
        }

        .blog-items .card .card-footer {
            padding: 0px 30px 30px 30px;
            width: 85%;
            display: flex;
            justify-content: space-between;
            font-size: 1em; /* content 001 */
        }


        .blog-items .card .main-item {
            color: #000;
            font-weight: bold;
        }
        .blog-items .card .learn-more {
            color: #000;
            font-weight: bold;
            text-decoration: none;
            text-align: center;
            margin: 0px;
        }

            .blog-items .card .learn-more:hover {
                text-decoration: underline;
            }

@media (max-width: 1100px) {
    .blog-items {
        padding: 50px;
    }
        .blog-items .card {
            width: calc(50% - 18px);
        }
}

@media (max-width: 768px) {
    .blog-items {
        padding: 50px;
    }
        .blog-items .card {
            width: 100%;
        }
}

@media (max-width: 767px) {
    .blog-items {
        padding: 50px 20px;
    }
        .blog-items .card {
            width: 100%;
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-文章博客分页 --------------------------- */
.blog-pagination {
    margin: 0px auto;
    padding: 50px;
    max-width: 1480px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    gap: 5px;
}

    /* 分页按钮 */
    .blog-pagination .page-btn {
        display: inline-block;
        padding: 6px 12px;
        min-width: 32px;
        text-align: center;
        border: 1px solid #ddd;
        border-radius: 4px;
        cursor: pointer;
        color: #333;
        background-color: #fff;
        transition: all 0.2s;
        user-select: none;
    }

        /* 鼠标悬停 */
        .blog-pagination .page-btn:hover:not(.active):not(.disabled) {
            background-color: #f0f0f0;
            border-color: #bbb;
        }

        /* 当前页高亮 */
        .blog-pagination .page-btn.active {
            background-color: #000000;
            color: #fff;
            border-color: #000000;
            cursor: default;
        }

        /* 禁用状态 */
        .blog-pagination .page-btn.disabled {
            color: #aaa;
            border-color: #ddd;
            cursor: default;
        }

    /* 省略号样式 */
    .blog-pagination .dots {
        display: inline-block;
        padding: 6px 8px;
        color: #666;
        user-select: none;
    }

/* 移动端自适应：按钮间距小一点 */
@media (max-width: 480px) {
    .blog-pagination {
        gap: 3px;
        padding: 20px;
    }

        .blog-pagination .page-btn {
            padding: 5px 5px;
            min-width: 28px;
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-文章博客标题容器 --------------------------- */
.blog-title {
    margin: 0px auto;
    padding: 50px 50px 0px 50px;
    max-width: 1480px;
    display: flex;
}
@media (max-width: 767px) {
    .blog-title {
        padding: 50px 20px 0px 20px;
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-搜索区域 --------------------------- */
.blog-search-container {
    margin: 0px auto;
    padding: 80px 50px 0px 50px;
    max-width: 1480px;
    display: flex;
    justify-content: center;
}

    .blog-search-container .search-input {
        width: 500px;
        padding: 6px;
        border: 1px solid #ccc;
    }

@media (max-width: 767px) {
    .blog-search-container {
        padding: 80px 20px 0px 20px;
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-文章博客标签容器 --------------------------- */
.blog-tag-container {
    margin: 0px auto;
    padding: 30px 50px 0px 50px;
    max-width: 1480px;
    display: flex;
    flex-wrap: wrap; /* 超出换行 */
    gap: 8px;
}

    /* 单个标签 */
    .blog-tag-container .tag {
        display: inline-block;
        padding: 4px 10px;
        font-size: 13px;
        background-color: #f0f0f0;
        color: #333;
        border-radius: 5px;
        white-space: nowrap;
        border: 1px solid rgba(0, 0, 0, 0.2);
    }

        /* 鼠标悬停效果 */
        .blog-tag-container .tag:hover {
            background-color: #000000;
            color: #fff;
            cursor: pointer;
        }

@media (max-width: 767px) {
    .blog-tag-container {
        padding: 30px 20px 0px 20px;
    }
}
/* ----------------------------------------------------------------- */

/* ---------------------- mb-ourteam --------------------------- */
.mb-ourteam {
    background: #000000;
    color: #fff;
    display: grid;
    justify-items: center;
    justify-content: center;
    align-items: center;
    height: 300px;
    min-height: 0px;
}

    .mb-ourteam .content-container {
        padding: 0px;
    }

    .mb-ourteam .content {
        max-width: 950px;
    }

        .mb-ourteam .content h1 {
            text-align: center;
            font-size: 2.5rem;
        }

        .mb-ourteam .content .crumbs {
            display: flex;
            align-items: center;
            justify-items: center;
            justify-content: center;
            text-align: center;
        }
        .mb-ourteam .content p {
            text-align: center;
        }
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-主产品 --------------------------- */
.pic-container {
    margin: 0px auto;
    padding: 50px;
    max-width: 1480px;
}

    .pic-container .grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
        gap: 40px;
    }

    .pic-container .card {
        overflow: hidden;
        text-align: left;
        width: calc(25% - 30px);
        cursor: pointer;
        padding-bottom: 25px;
        display: flex;
        flex-direction: column;
    }

        .pic-container .card img {
            width: 100%;
            object-fit: cover;
        }

    .pic-container .card-content {
        padding: 15px 0px 10px 0px;
        display: flex;
        justify-content: space-between;
    }

    .pic-container .card h3 {
        margin: 0 0 10px;
        text-align: left;
        color: #fff;
    }

    .pic-container .card p {
        color: #fff;
        margin: 0px;
        font-size: 0.875rem;
    }

    .pic-container .card .icon {
        margin-top: 5px
    }

@media (max-width: 1100px) {
    .pic-container {
        padding: 30px 50px;
    }

        .pic-container .card {
            width: calc(50% - 20px);
        }
}

@media (max-width: 767px) {
    .pic-container {
        padding: 30px 20px;
    }
        .pic-container .grid {
            gap: 15px;
        }

        .pic-container .card {
            width: 100%;
        }
            .pic-container .card img {
                height: 220px;
            }
        .pic-container .card-content {
            padding: 10px;
        }
}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-主产品 --------------------------- */
.form-container-2 {
    margin: 0px auto;
    padding: 50px;
    max-width: 1480px;
    min-height: 0px;
    height: auto;
}

    .form-container-2 .s-lable {
        color: #666;
        font-size: 0.912em;
    }
    .form-container-2 h1 {
        margin: 10px 0px;
    }
    .form-container-2 .item-title-container {
        display: flex;
        align-items: center;
        margin: 25px 0px 0px 0px;
        border-bottom: 1px solid #808080;
    }
        .form-container-2 .item-title-container .title-symbol {
            font-size: 1.35em;
            margin: 0px 0px 0px 10px;
        }
    .form-container-2 .item-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin: 15px 0px 15px 0px;
    }
        .form-container-2 .item-container .text-symbol {
            color: #686868;
            margin: 0px 0px 5px 0px;
        }
        .form-container-2 .item-container .text-imp-symbol {
            font-weight: bold
        }
        .form-container-2 .item-container .text-address {
            font-size: 0.912em;
            color: #686868;
            margin-top: 5px;
            max-width: 250px;
        }
    .form-container-2 .input-content {
        padding: 0px 100px;
    }

        .form-container-2 .input-content label {
            display: block;
            margin-bottom: 5px;
            color: #686868;
            font-size: 0.912em;
        }

        .form-container-2 .input-content input, .form-container-2 .input-content textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-sizing: border-box;
            font-size: 1em;
        }

        .form-container-2 .input-content .item {
            margin: 0px 0px 20px 0px;
        }

        .form-container-2 .input-content .btn {
            width: 100%;
            padding: 10px;
            border: none;
            background: black;
            color: white;
            cursor: pointer;
            border-radius: 5px;
            margin-top: 10px;
            font-size: 1em;
        }

            .form-container-2 .input-content .btn:hover {
                background: #333;
            }

@media (max-width: 1100px) {

}

@media (max-width: 767px) {

}
/* ----------------------------------------------------------------- */

/* ---------------------- 网站Body区域-用户注册 --------------------------- */
.register-container {
    margin: 0 auto;
    padding: 50px 50px 80px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em; /* content 001 */
}

    .register-container .form-content {
        width: 450px;
        text-align: center;
    }

    .register-container h2 {
        margin-bottom: 60px;
        font-weight: normal;
        text-transform: uppercase;
    }

    .register-container .input-group {
        text-align: left;
        margin-bottom: 15px;
    }

    .register-container .hidden {
        display: none;
    }

    .register-container .resend {
        color: gray;
        cursor: pointer;
        margin-top: 10px;
    }

    .register-container .back-link {
        display: block;
        margin-top: 15px;
        font-size: 13px;
        color: gray;
        text-decoration: none;
    }

        .register-container .back-link:hover {
            text-decoration: underline;
        }

    .register-container .code-container {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .register-container .code-container input {
            flex: 1;
        }

    .register-container .send-code-btn {
        padding: 12px 30px;
        border: none;
        background-color: #000;
        color: white;
        cursor: pointer;
        border-radius: 5px;
        transition: 0.3s;
        font-size: 1em;
    }

        .register-container .send-code-btn:hover {
            background: #333;
        }

        .register-container .send-code-btn:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }

    .register-container .remember-password {
        margin-top: 15px;
        text-align: center;
    }

        .register-container .remember-password p {
            color: #666;
            font-size: 1em;
        }

        .register-container .remember-password a {
            color: #666;
            text-decoration: none;
            font-size: 1em;
        }

            .register-container .remember-password a:hover {
                text-decoration: underline;
            }

    .register-container .alert-info {
        display: none;
        background: #ffecec;
        color: #d8000c;
        border: 1px solid #d8000c;
        padding: 10px;
        border-radius: 5px;
        font-size: 1em;
        text-align: left;
        margin: 0px 0px 15px 0px;
    }

    .register-container .item-alert {
        font-size: 1em;
        color: green;
        margin-top: 5px;
        display: none;
    }

    .register-container .success-box {
        text-align: center;
        border: 1px solid #ddd;
        padding: 50px;
        border-radius: 5px;
        width: 500px;
        margin: 50px auto;
    }
/* ----------------------------------------------------------------- */