/* =========================================================
   Responsive
   全站响应式样式
========================================================= */


/* =========================================================
   平板
   <= 1000px
========================================================= */

@media (max-width: 1000px) {

    /* =====================================================
       公共容器
    ===================================================== */

    .container,
    .header-inner,
    .footer-inner {
        width: calc(100% - 40px);
    }


    /* =====================================================
       Header
    ===================================================== */

    .site-logo {
        width: 235px;
    }


    .logo-cn {
        font-size: 18px;

        letter-spacing: 1.5px;
    }


    .logo-en {
        font-size: 9px;
    }


    .main-nav {
        gap: 25px;
    }


    .nav-item {
        font-size: 14px;
    }


    /* =====================================================
       首页产品
    ===================================================== */

    .product-content {
        width: 68%;
    }

}


/* =========================================================
   手机
   <= 768px
========================================================= */

@media (max-width: 768px) {

    /* =====================================================
       Header
    ===================================================== */

    .site-header {
        height: auto;
    }


    .header-inner {
        min-height: 70px;

        flex-wrap: wrap;

        padding: 10px 0;
    }


    .site-logo {
        width: auto;

        flex: 1;
    }


    .logo-cn {
        font-size: 17px;

        letter-spacing: 1px;
    }


    .logo-en {
        font-size: 8px;
    }


    .main-nav {
        order: 3;

        width: 100%;

        height: 44px;

        justify-content:
            space-between;

        gap: 8px;

        overflow-x: auto;
    }


    .nav-item {
        height: 44px;

        font-size: 13px;
    }


    .login-button {
        width: 76px;

        height: 30px;

        font-size: 12px;
    }


    .dropdown-menu {
        top: 44px;
    }


    /* =====================================================
       移动端下拉展开：
       视觉与桌面端保持一致（悬浮小卡片，宽 170px）；
       因主导航是横向滚动容器，普通绝对定位会被裁切，
       故展开时改为 fixed 定位，left / top 由 JS 计算，
       悬停/点击时对齐到“产品中心”正下方。
    ===================================================== */

    .nav-dropdown.open .dropdown-menu {
        position: fixed;

        left: auto;

        top: auto;

        width: 170px;

        /* 与隐藏态 translate(-50%, 10px) 保持同一水平基准，
           展开仅体现 10px 垂直位移 —— 从顶部向下弹出，
           视觉与桌面端一致，避免出现横向滑入动画 */

        transform: translate(-50%, 0);

        opacity: 1;

        visibility: visible;

        box-shadow:
            0 8px 22px rgba(0, 0, 0, .10);
    }


    /* =====================================================
       Banner
    ===================================================== */

    .banner-prev,
    .banner-next {
        width: 32px;

        height: 52px;

        margin-top: -26px;

        font-size: 30px;

        line-height: 52px;

        opacity: 1;
    }


    .banner-prev {
        left: 5px;
    }


    .banner-next {
        right: 5px;
    }


    .banner-dots {
        bottom: 9px;
    }


    /* =====================================================
       通知
    ===================================================== */

    .notice-inner {
        min-height: 52px;
    }


    .notice-title {
        margin-right: 10px;

        font-size: 13px;
    }


    .notice-text {
        max-width: 48vw;

        font-size: 12px;
    }


    .notice-more {
        font-size: 12px;
    }


    /* =====================================================
       公共标题
    ===================================================== */

    .section-title {
        margin-bottom: 22px;
    }


    .section-title h2 {
        font-size: 22px;

        line-height: 30px;
    }


    /* =====================================================
       产品
    ===================================================== */

    .product-section {
        padding: 35px 0 55px;
    }


    .product-grid {
        grid-template-columns: 1fr;

        grid-template-rows: auto;

        gap: 10px;
    }


    .product-card:nth-child(1),
    .product-card:nth-child(2),
    .product-card:nth-child(3),
    .product-card:nth-child(4),
    .product-card:nth-child(5) {

        grid-column: auto;

        grid-row: auto;

        min-height: 190px;
    }


    .product-content,
    .product-card:nth-child(1) .product-content,
    .product-card:nth-child(2) .product-content,
    .product-card:nth-child(3) .product-content,
    .product-card:nth-child(4) .product-content,
    .product-card:nth-child(5) .product-content {

        width: 65%;
    }


    .product-content h3 {
        font-size: 18px;
    }


    .product-content p {
        font-size: 11px;
    }


    /* =====================================================
       新闻
    ===================================================== */

    .news-section {
        padding-bottom: 55px;
    }


    .news-layout {
        grid-template-columns: 1fr;
    }


    .news-image {
        min-height: 200px;
    }


    .news-feature-content h3 {
        max-width: none;

        font-size: 14px;
    }


    /* =====================================================
       合作伙伴
    ===================================================== */

    .partner-item {
        width: calc(33.333% - 8px);
    }


    /* =====================================================
       客服
    ===================================================== */

    .service-trigger {
        width: 42px;
    }


    .service-panel {
        right: 42px;

        width: 215px;
    }


    /* =====================================================
       Footer
    ===================================================== */

    .footer-inner {
        padding: 18px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }


    .footer-right {
        text-align: left;
    }

}


/* =========================================================
   小屏手机
   <= 480px
========================================================= */

@media (max-width: 480px) {

    /* =====================================================
       公共容器
    ===================================================== */

    .container,
    .header-inner,
    .footer-inner {
        width: calc(100% - 24px);
    }


    /* =====================================================
       Logo
    ===================================================== */

    .logo-cn {
        font-size: 15px;

        letter-spacing: .7px;
    }


    .logo-en {
        font-size: 7px;

        letter-spacing: .15px;
    }


    /* =====================================================
       主导航
    ===================================================== */

    .main-nav {
        gap: 15px;
    }


    .nav-item {
        font-size: 12px;
    }


    /* =====================================================
       通知
    ===================================================== */

    .notice-title {
        margin-right: 8px;
    }


    .notice-text {
        max-width: 42vw;
    }


    /* =====================================================
       产品
    ===================================================== */

    .product-content,
    .product-card:nth-child(1) .product-content,
    .product-card:nth-child(2) .product-content,
    .product-card:nth-child(3) .product-content,
    .product-card:nth-child(4) .product-content,
    .product-card:nth-child(5) .product-content {

        width: 78%;
    }


    .product-content p {
        font-size: 10px;

        line-height: 1.75;
    }


    /* =====================================================
       合作伙伴
    ===================================================== */

    .partner-item {
        width: calc(50% - 6px);
    }


    /* =====================================================
       新闻日期
    ===================================================== */

    .news-date-large strong {
        font-size: 28px;
    }

}