 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
        }

        :root {
            --primary-red: #ff3b30;
            --primary-yellow: #ffcc00;
            --blue: #007aff;
            --orange: #ff9500;
            --pink: #ff2d55;
            --green: #34c759;
            --purple: #af52de;
            --light-gray: #f5f5f7;
            --dark-bg: #1c1c1e;
            --card-bg: #ffffff;
            --text-dark: #1d1d1f;
            --text-gray: #86868b;
        }

        body {
            background-color: var(--light-gray);
            color: var(--text-dark);
            line-height: 1.6;
        }
        a{text-decoration:none;}
        ul{list-style-type: none }

        .container {
            width: 92%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .top-nav {
            background: #ffffff;
            border-bottom: 1px solid #eee;
            padding: 10px 0;
            font-size: 14px;
            color: var(--text-gray);
        }
        .top-nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .top-nav a {
            color: var(--text-gray);
            text-decoration: none;
            margin: 0 8px;
        }

        .main-header {
            background: #ffffff;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .logo {

            font-size: 22px;
            font-weight: bold;
        }
        .qq-btn-icon img{
            width: 74%;
            margin: 0 auto;
            height: auto;
        }
        .logo a{text-decoration:none;color:var(--primary-red) }
       
        .detail-card {
            background: #fff;
            border-radius: 8px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .num-header {
            text-align: center;
            margin-bottom: 25px;
        }
        .num-display {
            display: inline-block;
            background: linear-gradient(90deg, #ff9500, #ff3b30);
            color: #fff;
            padding: 4px 25px;
            border-radius: 32px;
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .price-text {
            font-size: 16px;
            color: var(--primary-red);
        }
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }
        .info-table td {
            border: 1px solid #eee;
            padding: 10px;
            font-size: 13px;
            text-align: justify;
        }
        .info-table td:first-child {
            background: #f9f9f9;
            width: 120px;
            color: var(--text-gray);
        }
        .btn-group {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-action {
            padding: 8px 20px;
            background: var(--primary-red);
            color: #fff;
            border: none;
            cursor: pointer;
            font-size: 13px;
        }
        .btn-action1{border-radius: 15px 0 0 15px;position: relative;}
        .btn-action2{border-radius: 0 15px 15px 0;}
        .btn-action1::after {
            content: "|"; 
            color: #fff; 
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            margin-right: -1px;
        }
        .btn-action a{color:#fff}
        .btn-action.gray {
            background: var(--text-gray);
        }

        .flow-section {
            background: #fff;
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .flow-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 20px;
        }
        .flow-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .flow-num {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background: var(--primary-red);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            margin-right: 10px;
        }
        .flow-text {
            font-size: 14px;
        }
        .flow-text small {
            color: var(--text-gray);
            display: block;
        }

        .notice-section {
            background: #fff;
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .notice-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 15px;
        }
        .notice-list {
            font-size: 13px;
            line-height: 1.8;

        }
        .notice-list li {
            margin-bottom: 8px;
            color: var(--text-gray);
            text-align:justify;
        }
        .notice-list li strong {
            color: var(--primary-red);
        }
        .page-title {
            margin: 25px 0;
            font-size: 20px;
            font-weight: bold;
            color: var(--text-dark);
            padding-left: 10px;
            border-left: 4px solid var(--primary-red);
        }

        .news-list {
            margin-bottom: 40px;
        }
        .news-item {
            background: #fff;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            transition: 0.2s;
            cursor: pointer;
        }
        .news-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .news-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        .news-title {
            font-size: 16px;
            font-weight: bold;
            color: var(--text-dark);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .news-date {
            font-size: 12px;
            color: var(--text-gray);
            background: #f5f5f7;
            padding: 3px 8px;
            border-radius: 4px;
            white-space: nowrap;
            margin-left: 10px;
        }
        .news-desc {
            font-size: 13px;
            color: var(--text-gray);
            line-height: 1.7;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .news-tag {
            display: inline-block;
            font-size: 12px;
            color: #fff;
            background: var(--primary-red);
            padding: 2px 6px;
            border-radius: 3px;
            margin-right: 6px;
        }

        /* 脙茠脗楼脙鈥姑⑩偓聽脙垄芒鈥毬偮犆兤捗偮┟冣€毭偮∶冣€毭偮� */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin: 20px 0;
        }
        .pagination a {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-size: 13px;
            color: var(--text-dark);
            text-decoration: none;
        }
        .pagination a.active,
        .pagination a:hover {
            background: var(--primary-red);
            color: #fff;
            border-color: var(--primary-red);
        }
        .pagination a.more {
            border: none;
            background: none;
            color: var(--text-gray);
        }
        .article-card {
            background: #fff;
            border-radius: 8px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .article-title {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--text-dark);
            line-height: 1.4;
        }
        .article-meta {
            color: var(--text-gray);
            font-size: 13px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #eee;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        .article-tag {
            background: var(--primary-red);
            color: #fff;
            padding: 2px 8px;
            border-radius: 3px;
            font-size: 12px;
        }
        .article-content {
            font-size: 15px;
            line-height: 1.9;
            color: #333;
        }
        .article-content img{max-width:100%;height:auto!important}
        .article-content p {
            margin-bottom: 18px;
        }
        .article-content h3 {
            font-size: 17px;
            margin: 25px 0 12px 0;
            color: var(--primary-red);
        }
        .article-content .tip {
            background: #fff5f5;
            border-left: 4px solid var(--primary-red);
            padding: 12px 15px;
            margin: 20px 0;
            border-radius: 0 4px 4px 0;
        }

        .related {
            margin-top: 30px;
        }
        .related-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 15px;
            padding-left: 10px;
            border-left: 4px solid var(--primary-red);
        }
        .related-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .related-item {
            background: #fff;
            padding: 12px 15px;
            border-radius: 6px;
            font-size: 14px;
            color: var(--text-dark);
            cursor: pointer;
            transition: 0.2s;
        }
        .related-item:hover {
            color: var(--primary-red);
            padding-left: 20px;
        }

        .footer-info {
            background: #fff;
            padding: 30px 0;
            margin-top: 40px;
            border-top: 1px solid #eee;
        }
        .service-features {
            display: flex;
            justify-content: space-around;
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            margin: 20px 0;
            flex-wrap: wrap;
            gap: 15px;
        }
        .feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-gray);
        }
        .annius{margin-top:10px;padding: 4px 10px;border:none;border-radius: 19px;font-size:14px}
        .feature-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #f5f5f7;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-red);
            font-size:20px;
            font-weight: bold;
        }


        .float-btn {
            position: fixed;
            right: 15px;
            bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .float-btn a {
            width: 40px;
            height: 40px;
            border-radius: 4px;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            font-size: 14px;
        }
        .float-btn a:nth-child(1) { background: #ff3b30; }
        .float-btn a:nth-child(2) { background: #af52de; }
        .float-btn a:nth-child(3) { background: #34c759; }
        .float-btn a:nth-child(4) { background: #007aff; }
        .float-btn a:nth-child(5) { background: #86868b; }

      .shaixuan{display:none;color:#c531ab;font-weight:bold;}
       
        .nav-links {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            font-size: 13px;
        }
        .nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            padding: 5px 8px;
            border-radius: 4px;
            transition: .2s;
            font-size:14px
        }
        .nav-links a:hover, .nav-links a.active {
            background: var(--primary-red);
            color: #fff;
        }

        /* 脙茠脗娄脙鈥毭偮冣€毭偮兤捗偮ッ冣€毭偮姑兟⒚⑩€毬偮� */
        .banner {
            background: linear-gradient(135deg, #e956cf 0%, #3639ab 100%);
            padding: 40px 0;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .banner::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:#000;
            opacity: 0.3;
        }
        .banner h1 {
            font-size: 32px;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        .banner p {
            font-size: 18px;
            position: relative;
            z-index: 1;
        }

          .wrap {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            border-radius: 6px;
            overflow: hidden;
            display:none;
        }
        .row-head {
            background: #ff3b30;
            color: #fff;
            padding:0!important;
            text-align: center;
            font-weight: 500;
            height: 40px;
            line-height:40px

        }
        .row-head div{height:40px;float:left;}
        .item-row {
            grid-template-columns: 2fr 0.7fr 0.7fr 0.8fr 1fr 1.2fr;
            padding: 14px 8px;
            text-align: center;
            align-items: center;
            border-bottom: 1px solid #eee;

        }
        .gd img{max-width:100%;border-radius: 8px;}
        .item-rows{height: 70px;line-height:50px;/* width: 12%; */overflow: hidden;display:none}
         .item-rows div{float:left;;overflow: hidden;font-size:14px}
        .item-row:last-child {
            border-bottom: none;
        }
        .tagss {
            display: inline-block;
            font-size: 12px;
            padding: 2px 5px;
            border-radius: 3px;
            color: #fff;
            margin-right: 8px;
        }
        .tag-pu {background:#999;width: 24px;height: 24px;text-align: center;line-height: 24px;padding: 0;}
        .tag-liang {background:#f56c6c;width: 24px;height: 24px;text-align: center;line-height: 24px;padding: 0;}
        .qq-num a {
            font-size: 16px;
            color: #2d8cf0;
        }
        .price {
            color: #f56c6c;
            font-weight: bold;
        }
        .product-stock h4 {
            margin: 0;
            font-size: 14px;
        }
        .buy-btn {
            background: #ff3b30;
            color: #fff;
            text-decoration: none;
            padding: 5px 14px;
            border-radius: 4px;
            font-size: 13px;
        }

        @media (max-width: 768px) {
            .row-head, .item-row {
                grid-template-columns: 1.5fr 0.6fr 0.6fr 0.7fr 0.8fr 1fr;
                font-size: 14px;
                padding: 10px 4px;
            }
            .qq-num {
                font-size: 14px;
                color: #2d8cf0;

            }

            .buy-btn {
                padding: 4px 8px;
                font-size: 12px;
            }
        }


        .notice-bar {
            background: linear-gradient(90deg, #ff3b30, #ff9500, #34c759, #007aff, #af52de);
            padding: 5px 0;
            overflow: hidden;
        }
        .notice-bar p {
            white-space: nowrap;
            color: #fff;
            font-size: 12px;
            animation: scroll 40s linear infinite;
        }
        @keyframes scroll {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        .haohao.red {
            background: #e3c4ff;
            color:#73219d;
        }
         .tag.red{
            background: #ffebee;
            color: var(--primary-red);
            display:inline;
        }

        .section {
            margin: 30px 0;
            display: flex;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }
        .section-sidebar {
            width: 160px;
            padding: 25px 15px;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        .section-sidebar h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }
        .section-sidebar p {
            font-size: 14px;
            opacity: 0.9;
        }
        .section-content {
            flex: 1;
            padding: 20px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 15px;
        }
        .number-card {
            padding: 12px;
            border: 1px solid #eee;
            border-radius: 6px;
            transition: .3s;
            cursor: pointer;
            position:relative;
        }
        .number-card span{color:#ff3a3a}
        .number-card:hover {
            border-color: var(--primary-red);
            box-shadow: 0 3px 10px rgba(255,59,48,0.1);
        }

        .info {
            font-size: 14px;
            color: var(--text-gray);
        }
        .section-5 .section-sidebar { background: #5ac8fa; }
        .section-6 .section-sidebar { background: #ff9500; }
        .section-7 .section-sidebar { background: #ff2d55; }
        .section-8 .section-sidebar { background: #ffcc00; color: #333; }
        .section-9 .section-sidebar { background: #34c759; }
        .section-10 .section-sidebar { background: #af52de; }

        .footer-info {
            background: #fff;
            padding: 30px 0;
            margin-top: 40px;
            border-top: 1px solid #eee;
        }
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .info-item h4 {
            font-size: 16px;
            margin-bottom: 10px;
            color: var(--text-dark);
        }
        .haohao{position: absolute;
            font-weight: normal;
            width: 20px;
            height: 20px;
            background: #F90;
            border-radius: 3px;
            right: 0px;
            top: 0px;
            font-size: 14px;
            color: #FFF;
            line-height: 20px;
            text-align: center;
         }
        .newss a{color:#86868b}
        .info-item ul {
            list-style: none;
            font-size: 12px;
            color: var(--text-gray);
        }
        .info-item ul li {
            margin-bottom: 5px;
            font-size:14px;
            text-align: justify;
        }
        .service-features {
            display: flex;
            justify-content: space-around;
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            margin: 20px 0;
        }
        .feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-gray);
        }

        .copyright {
            text-align: center;
            font-size: 14px;
            color: var(--text-gray);
            padding: 20px 0;
        }

        .float-btn {
            position: fixed;
            right: 15px;
            bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .float-btn a {
            width: 40px;
            height: 40px;
            border-radius: 4px;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            font-size: 14px;
        }
        .float-btn a:nth-child(1) { background: #ff3b30; }
        .float-btn a:nth-child(2) { background: #af52de; }
        .float-btn a:nth-child(3) { background: #34c759; }
        .float-btn a:nth-child(4) { background: #007aff; }
        .float-btn a:nth-child(5) { background: #86868b; }








        
       .filter-section { background: #fff; padding: 20px; margin: 20px 0; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
        .filter-row { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; align-items: center; }
        .filter-group { display: flex; align-items: center; gap: 8px; }
        .filter-group label { font-size: 13px; color: var(--text-gray); white-space: nowrap; }
        .filter-group select,.filter-group input { padding: 6px 10px; border: 1px solid #eddbdb; border-radius: 4px; font-size: 13px; min-width: 100px; outline: none;    color: #777777; }
        .filter-group select:focus,.filter-group input:focus { border-color: var(--primary-red); }
        .tip-text { font-size: 12px; color: var(--text-gray); margin-top: 10px; }
        .filter-btn { padding: 8px 20px; background: var(--primary-red); color: #fff; border: none; border-radius: 4px; cursor: pointer; font-size: 14px; }
        .filter-btn.gray { background: var(--text-gray); }
        .table-section { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); margin-bottom: 30px; }
        .table-header {padding:0 12px; background: #fff2f3; font-weight: bold; font-size: 13px; color:#8f3131; border-bottom: 1px solid var(--border-color);height:50px;line-height:50px}
        .table-header div{float:left;     width: 12%;text-align: center;font-size:16px}
        #allItems{clear:both;}
        .libs{width: 12%;float:left;height:50px;line-height: 50px;text-align: center;}
        .table-row { padding:0 12px; align-items: center; font-size: 13px; border-bottom: 1px solid #f0f0f0;height: 50px;overflow:hidden;}
        .num {color:#F60;font-size:18px;}
        .num a{color:#09f; }
        .tag { display: inline-block; padding: 2px 5px; font-size: 13px; border-radius: 3px; }
        .tag.green { background: #e8f5e9; color: var(--green); display:inline;}
        .tag.red { background: #ffebee; color: var(--primary-red);display:inline; }
        .tag.purple {color: var(--purple); font-weight:bold; }
        .btn-buy { padding: 4px 8px; background: var(--primary-red); color: #fff; border: none; border-radius: 3px; font-size: 12px; }
        .empty-tip { padding: 50px; text-align: center; color: var(--text-gray); display: none; }
        .level-wrap { display: flex; align-items: center; gap: 6px;justify-content:center; }
        .level-bar { width: 60px; height: 8px; background: #eee; border-radius: 4px; overflow: hidden; }
        .level-fill { height: 100%; background: var(--primary-yellow); }
        .footer-info { background: #fff; padding: 30px 0; margin-top: 40px; border-top: 1px solid #eee; }
        .service-features { display: flex; justify-content: space-around; text-align: center; padding: 20px 0; border-top:1px solid #eee; border-bottom:1px solid #eee; margin:20px 0; flex-wrap:wrap; gap:15px; }
        .feature { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 13px; color: var(--text-gray); }
        .float-btn { position:fixed; right:15px; bottom:20px; display:flex; flex-direction:column; gap:8px; }
        .float-btn a { width:40px; height:40px; border-radius:4px; background:#fff; box-shadow:0 2px 10px rgba(0,0,0,0.1); display:flex; align-items:center; justify-content:center; color:#fff; text-decoration:none; font-size:14px; }
        .float-btn a:nth-child(1){background:#ff3b30}
        .float-btn a:nth-child(2){background:#af52de}
        .float-btn a:nth-child(3){background:#34c759}
        .float-btn a:nth-child(4){background:#007aff}
        .float-btn a:nth-child(5){background:#86868b}
    .mobile-qq-buttons {
      display: none; 
      padding: 30px 0;
      background: var(--card);
      border-radius: 16px;
      margin: 30px auto;
      width: 92%;
      background:#f5e8e8
    }
    .qq-btn-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr); 
      gap: 20px;
    }
    .qq-btn-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
    }
    .qq-btn-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%; 
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: bold;
      color: #fff;
    }
    .qq-btn-5 { background: var(--5qq); }
    .qq-btn-6 { background: var(--6qq); }
    .qq-btn-7 { background: var(--7qq); }
    .qq-btn-8 { background: var(--8qq); }
    .qq-btn-9 { background: var(--9qq); }
    .qq-btn-10 { background: var(--10qq); }
    .qq-btn-credit { background: var(--credit); }
    .qq-btn-promise { background: var(--promise); }
    .qq-btn-text {
      font-size: 14px;
      color:#4a4b1a;
      text-align: center;
      font-weight:bold;
    }
    .nones{display:none;}
       
        @media (max-width: 768px) {
           .notice-bar p {
           
            animation: scroll 20s linear infinite;
        }      
        .mobile-qq-buttons,.shaixuan,.wrap,.item-rows{display: block;}


            .search-bar {
                width: 100%;
            }
            .search-bar input {
                flex: 1;
                width: auto;
            }
            .nav-links {
                width: 100%;
                overflow-x: auto;
                padding-bottom: 5px;
            }
            .detail-card, .flow-section, .notice-section {
                padding: 20px;
            }
            .info-table td:first-child {
                width: 100px;
            }

   
              .table-header,.table-row{display:none}
            .mobile-card{background:#fff; padding:15px; border-radius:8px; margin-bottom:10px;}
            .mobile-card .num{font-size:18px; margin-bottom:8px; font-weight:bold}
            .mobile-info{font-size:12px; color:var(--text-gray); line-height:1.8}
            .mobile-price{color:var(--primary-red); font-size:16px; font-weight:bold; margin:8px 0}
            .search-bar {
                width: 100%;
            }
            .search-bar input {
                flex: 1;
                width: auto;
            }
   
            
            .table-header, .table-row,.gd {
                display: none;
            }
            .mobile-card-list {
                display: block;
            }
            .mobile-card {
                background: #fff;
                margin-bottom: 10px;
                padding: 15px;
                border-radius: 8px;
                box-shadow: 0 1px 5px rgba(0,0,0,0.05);
            }
            .mobile-card .num {
                font-size: 18px;
                margin-bottom: 8px;
            }
            .mobile-info {
                font-size: 12px;
                color: var(--text-gray);
                line-height: 1.8;
            }
            .mobile-price {
                color: var(--primary-red);
                font-size: 16px;
                font-weight: bold;
                margin: 8px 0;
            }

             .float-btn,.nav-links,.went{display:none;}
           
            .nav-links {
                width: 100%;
                overflow-x: auto;
                padding-bottom: 5px;
            }
            .logo{text-align:center;}
            .section {
                flex-direction: column;
            }
            .section-sidebar {
                width: 100%;
                padding: 15px;
            }
            .section-content {
                grid-template-columns: repeat(2, 1fr);
            }
            .banner h1 {
                font-size: 24px;
            }
            .service-features {
                flex-wrap: wrap;
                gap: 15px;
            }
        }
        @media (min-width: 769px) {
            .mobile-card-list,.mobile-card{display:none}
         
        }
