       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background-color: #ffffff;
            color: #1e2a3e;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        /* 容器 */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 头部样式 */
        header {
            background: #ffffff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
            flex-wrap: wrap;
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #0f3b7a, #1e6bc7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .logo span {
            font-size: 0.9rem;
            color: #4b6a9b;
            display: block;
            font-weight: normal;
        }

        /* 导航菜单 */
        .nav-menu {
            display: flex;
            gap: 28px;
            list-style: none;
        }

        .nav-menu li a {
            text-decoration: none;
            font-weight: 500;
            color: #2c3e66;
            transition: 0.3s;
            font-size: 1rem;
        }

        .nav-menu li a:hover, .nav-menu li a.active {
            color: #1e6bc7;
            border-bottom: 2px solid #1e6bc7;
            padding-bottom: 6px;
        }

        /* 移动端汉堡按钮 */
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #1e6bc7;
        }

        /* 轮播图区域 */
        .slider-section {
            background: #f0f5fe;
            position: relative;
            overflow: hidden;
        }

        .slider-container {
            position: relative;
            max-width: 100%;
            height: 500px;
            overflow: hidden;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }

        .slide {
            min-width: 100%;
            position: relative;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide-content {
            text-align: center;
            color: white;
            background: rgba(0, 0, 0, 0.55);
            padding: 30px 40px;
            border-radius: 16px;
            max-width: 700px;
            backdrop-filter: blur(2px);
        }

        .slide-content h2 {
            font-size: 2.4rem;
            margin-bottom: 16px;
        }

        .slide-content p {
            font-size: 1.1rem;
            margin-bottom: 24px;
        }

        .btn-slide {
            background: #1e6bc7;
            padding: 10px 28px;
            border-radius: 40px;
            color: white;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            padding: 12px 18px;
            cursor: pointer;
            font-size: 1.5rem;
            border-radius: 50%;
            z-index: 10;
            transition: 0.2s;
        }
        .slider-btn:hover {
            background: #1e6bc7;
        }
        .prev { left: 20px; }
        .next { right: 20px; }
        .dots {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            text-align: center;
            z-index: 10;
        }
        .dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: #bbb;
            border-radius: 50%;
            margin: 0 6px;
            cursor: pointer;
        }
        .dot.active {
            background: #1e6bc7;
            transform: scale(1.2);
        }

        /* 通用板块 */
        section {
            padding: 70px 0;
        }
        .section-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 48px;
            color: #0f3b7a;
            position: relative;
        }
        .section-title:after {
            content: '';
            display: block;
            width: 70px;
            height: 3px;
            background: #1e6bc7;
            margin: 12px auto 0;
            border-radius: 4px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }
        .service-card, .package-card, .advantage-card, .knowledge-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 32px 24px;
            box-shadow: 0 12px 28px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }
        .service-card:hover, .package-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px rgba(0,0,0,0.12);
        }
        .service-card i, .advantage-card i {
            font-size: 3rem;
            color: #1e6bc7;
            margin-bottom: 20px;
        }
        .service-card h3, .package-card h3 {
            font-size: 1.6rem;
            margin-bottom: 12px;
        }
        .price {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e6bc7;
            margin: 16px 0;
        }
        .package-card ul {
            text-align: left;
            padding-left: 20px;
            margin: 20px 0;
        }
        .package-card li {
            margin: 8px 0;
            list-style: disc;
        }
        .btn-outline, .btn-primary {
            display: inline-block;
            padding: 10px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 12px;
            transition: 0.3s;
        }
        .btn-primary {
            background: #1e6bc7;
            color: white;
            border: none;
        }
        .btn-primary:hover {
            background: #0f4d97;
        }
        .btn-outline {
            border: 2px solid #1e6bc7;
            color: #1e6bc7;
        }
        .btn-outline:hover {
            background: #1e6bc7;
            color: white;
        }
        /* 流程步骤 */
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }
        .step {
            flex: 1;
            min-width: 180px;
            text-align: center;
            position: relative;
        }
        .step-icon {
            width: 70px;
            height: 70px;
            background: #eef4ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            font-weight: bold;
            color: #1e6bc7;
            border: 1px solid #cbdff2;
        }
        /* 企业优势 */
        .advantage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 28px;
        }
        /* 建站知识 */
        .knowledge-card {
            text-align: left;
        }
        .knowledge-card h4 {
            font-size: 1.3rem;
            margin-bottom: 12px;
        }
        .date {
            color: #7f8c8d;
            font-size: 0.85rem;
            margin-bottom: 12px;
            display: block;
        }
        /* 公司简介 & 联系方式 */
        .about-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }
        .about-text {
            flex: 1.5;
        }
        .about-stats {
            flex: 1;
            background: #f5f9ff;
            padding: 30px;
            border-radius: 28px;
        }
        .contact-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
        }
        .contact-info {
            flex: 1;
        }
        .contact-item {
            display: flex;
            gap: 16px;
            align-items: center;
            margin-bottom: 28px;
        }
        .contact-item i {
            font-size: 1.8rem;
            color: #1e6bc7;
        }
        footer {
            background: #0f2b40;
            color: #cfdfed;
            padding: 40px 0;
            text-align: center;
        }
        @media (max-width: 992px) {
            .slider-container { height: 420px; }
            .slide-content h2 { font-size: 1.8rem; }
        }
        @media (max-width: 768px) {
            .menu-toggle { display: block; }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: white;
                padding: 20px 0;
                gap: 18px;
                text-align: center;
                box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            }
            .nav-menu.show {
                display: flex;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .logo { width: 70%; }
            .section-title { font-size: 1.8rem; }
            .process-steps { flex-direction: column; align-items: center; }
            .step { width: 80%; }
        }
        @media (max-width: 480px) {
            .slide-content { padding: 20px; }
            .slide-content h2 { font-size: 1.4rem; }
        }
        .badge {
            background: #eef2fa;
            border-radius: 40px;
            padding: 4px 12px;
            font-size: 0.8rem;
            color: #1e6bc7;
        }


#fenye{margin:3em auto;font-size:14px;text-align:center;}
#fenye from{font-size:14px;}
#fenye .a{font-size:14px;}
#fenye .szinput{width:50px;height:28px;border:1px #999999 solid;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;box-sizing:border-box;-moz-box-sizing:border-box; /* Firefox */-webkit-box-sizing:border-box; /* Safari */text-align:center}
#fenye #nowpage{background:#cc0000;width:28px;line-height:28px;text-align:center;color:#ffffff;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;display: inline-table}
#fenye .fypage{background:#ffffff;width:28px;line-height:28px;text-align:center;color:#cc0000;box-sizing:border-box;-moz-box-sizing:border-box; /* Firefox */-webkit-box-sizing:border-box; /* Safari */border:1px #999999 solid;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;display: inline-table}
#fenye .fypage a{font-size:14px;}

.currentLocation{width:94%;max-width:1560px;height:auto;line-height:2rem;margin:1rem auto;vertical-align:middle;overflow:hidden}
.currentLocation img{width:auto;height:1.2rem;vertical-align:middle;margin-right:0.5rem;display:inline;overflow:hidden}

#banner{background:#ffffff;width:100%;height:auto;overflow:hidden;position:relative;margin:0 auto;}
#banner img{width:100%;height:auto;border:0;}
#banner h2{width:auto;height:4rem;line-height:4rem;font-size:2.5rem;font-weight:bold;color:#ffffff;display:block;overflow:hidden;position:absolute;z-index:9;left:5%;top:4rem;}
#banner span{width:auto;height:auto;line-height:2rem;display:block;overflow:hidden;position:absolute;z-index:9;color:#ffffff;font-size:1.6rem;left:5%;top:9rem;}

#contentbody{width:94%;max-width:1560px;height:auto;margin:2rem auto;display:flex;overflow:hidden}
#contentbody > #left{width:auto;height:auto;float:left;flex:1;margin-right:3%;overflow:hidden}
#contentbody > #right{width:250px;height:auto;float:right;flex:none;/*position:absolute;left:240px;*/overflow:hidden}

#contentbody > #left #AboutTitle{width:100%;height:2rem;line-height:2rem;font-size:14px;border-bottom:1px #dcdcdc solid;margin-bottom:1rem;overflow:hidden}
#contentbody > #left #AboutTitle img{width:13px;height:13px;border:0;margin-right:0.5rem;}

#contentbody > #left #ViewNews{width:100%;height:auto;margin:0 auto;line-height:160%;font-size:14px;overflow:hidden}
#contentbody > #left #ViewNews img{max-width:100%;height:auto;overflow:hidden}
#contentbody > #left #ViewNews #ViewNewsTitle{width:100%;height:auto;line-height:1.5rem;text-align:center;font-size:18px;color:#004D89;margin:1.5rem auto;overflow:hidden}
#contentbody > #left #ViewNews #ViewNewsTitle h1{font-size:18px;color:#004D89;}
#contentbody > #left #ViewNews #ViewNewsTitle h1 a{font-size:18px;color:#004D89;}
#contentbody > #left #ViewNews #newsContent{width:100%;HEIGHT:auto;margin:0 auto;LINE-HEIGHT:160%;font-size:1rem;}

#contentbody > #left #ViewNews #newsContent h2{width:100%;height:auto;line-height:1.6rem;margin:0 auto;padding-top:0.5rem;padding-bottom:0.5rem;padding-left:1.2rem;font-size:1.2rem;font-weight:bold;background:url(/images/newscontenttitle.png) center left no-repeat;box-sizing:border-box;-moz-box-sizing:border-box; /* Firefox */-webkit-box-sizing:border-box; /* Safari */display:block;margin:0.5rem auto;overflow:hidden}
#contentbody > #left #ViewNews #newsContent h2 a{font-size:1.2rem;font-weight:bold;}
#contentbody > #left #ViewNews #newsContent h3{width:100%;height:auto;line-height:1.6rem;margin:0 auto;padding-top:0.5rem;padding-bottom:0.5rem;padding-left:1.1rem;font-size:1.1rem;font-weight:bold;background:url(/images/newscontenttitle.png) center left no-repeat;box-sizing:border-box;-moz-box-sizing:border-box; /* Firefox */-webkit-box-sizing:border-box; /* Safari */display:block;margin:0.5rem auto;overflow:hidden}
#contentbody > #left #ViewNews #newsContent h3 a{font-size:1.1rem;font-weight:bold;}

#contentbody > #left #ViewNews #newsContent img{max-width:100%;height:auto;overflow:hidden}

#contentbody > #left #ViewNews #articleStatement{margin:1rem auto;background:#ececec;padding:1rem;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;overflow:hidden}
#contentbody > #left #ViewNews #articleStatement img{width:120px;height:auto;float:left;margin-right:1rem;display:block;overflow:hidden}

#contentbody > #left #ViewNews #nynewsshare{background:#ececec;width:100%;height:35px;line-height:35px;font-size:14px;text-align:center;margin:0 auto;margin-top:30px;margin-bottom:20px;border:1px #dcdcdc solid;box-sizing:border-box;-moz-box-sizing:border-box; /* Firefox */-webkit-box-sizing:border-box; /* Safari */overflow:hidden}
#contentbody > #left #ViewNews #nynewsfb{background:#ececec;width:100%;height:35px;line-height:35px;font-size:14px;text-align:center;margin:1rem auto;border:1px #dcdcdc solid;box-sizing:border-box;-moz-box-sizing:border-box; /* Firefox */-webkit-box-sizing:border-box; /* Safari */overflow:hidden}

#contentbody > #left #tlnews{width:100%;height:auto;border:1px #ececec solid;box-sizing:border-box;-moz-box-sizing:border-box; /* Firefox */-webkit-box-sizing:border-box; /* Safari */margin:2rem auto;overflow:hidden;}
#contentbody > #left #tlnews > #tl_newstitle{background:#F4F5F6;width:100%;height:40px;line-height:40px;font-size:16px;color:#004D89;padding-left:10px;margin:0 auto;border-bottom:1px #ececec solid;overflow:hidden;}
#contentbody > #left #tlnews > #tl_newscon{width:100%;height:auto;margin:0 auto;overflow:hidden}
#contentbody > #left #tlnews > #tl_newscon ul{width:100%;height:auto;margin:10px auto;padding:0;overflow:hidden}
#contentbody > #left #tlnews > #tl_newscon ul li{width:44%;height:28px;line-height:28px;margin:auto 3%;font-size:14px;color:#999999;padding-left:1.5%;display:list-item;list-style-type:disc;list-style-position:inside;float:left;box-sizing:border-box;-moz-box-sizing:border-box; /* Firefox */-webkit-box-sizing:border-box; /* Safari */overflow:hidden}
#contentbody > #left #tlnews > #tl_newscon ul li a{font-size:14px;}

#contentbody > #left #AboutCon{width:100%;height:auto;margin-top:15px;font-size:14px;line-height:25px;text-align:left;overflow:hidden}
#contentbody > #left #AboutCon a{font-size:14px;}
#contentbody > #left #AboutCon table,#contentbody > #left #AboutCon th,#contentbody > #left #AboutCon td {font-size:14px;line-height:180%}
#contentbody > #left #AboutCon img{max-width:900px;border:0px;}

#contentbody > #left #AboutCon #nynewstitle{width:100%;height:3rem;line-height:3rem;color:#cc0000;font-size:1.5rem;text-align:center;margin:0 auto;overflow:hidden}
#contentbody > #left #AboutCon #nynewscon{width:100%;height:auto;line-height:30px;font-size:14px;text-align:left;margin:0 auto;padding-top:1rem;padding-bottom:1rem;overflow:hidden}
#contentbody > #left #AboutCon #nynewscon img{max-width:100%;height:auto;overflow:hidden}
#contentbody > #left #AboutCon #nynewsshare{background:#ececec;width:898px !important;width:900px;height:33px !important;height:35px;line-height:35px;font-size:14px;text-align:center;margin:0 auto;margin-bottom:10px;border:1px #dcdcdc solid;overflow:hidden}
#contentbody > #left #AboutCon #nynewsfb{background:#ececec;width:100%;height:2rem;line-height:2rem;font-size:14px;text-align:center;margin:1rem auto;border:1px #dcdcdc solid;box-sizing:border-box;-moz-box-sizing:border-box; /* Firefox */-webkit-box-sizing:border-box; /* Safari */overflow:hidden}

#contentbody > #left > #news{width:100%;height:auto;margin-top:0px;overflow:hidden}
#contentbody > #left > #news dl{width:100%;height:215px;border-bottom:1px #dcdcdc solid;margin:0;padding:0;margin-bottom:30px;display:block;overflow:hidden}
#contentbody > #left > #news dl > span{width:245px;height:180px;margin-right:20px;float:left;overflow:hidden}
#contentbody > #left > #news dl > span img{width:245px;height:180px;border:0;transition:all 0.3s linear;overflow:hidden}
#contentbody > #left > #news dl > span img:hover{width:245px;height:180px;border:0;transform:scale(1.1);overflow:hidden}
#contentbody > #left > #news dl .newscon2{width:585px;height:180px;overflow:hidden}
#contentbody > #left > #news dl .newscon2 a{font-size:18px;}
#contentbody > #left > #news dl dt{width:585px;height:25px;line-height:25px;font-size:18px;margin-bottom:10px;overflow:hidden}
#contentbody > #left > #news dl dt a{font-size:18px;color:#222222;}
#contentbody > #left > #news dl dt a:hover{color:#003399;text-decoration:underline}
#contentbody > #left > #news dl dd{width:585px;height:auto;line-height:22px;font-size:14px;color: #999999;overflow:hidden}
#contentbody > #left > #news dl .source{background:url(../images/icon/news.png) no-repeat left center;background-size:20px 20px;width:540px !important;width:585px;height:30px;line-height:30px;margin-bottom:10px;padding-left:25px;overflow:hidden}

#contentbody > #right .Catalog{width:100%;height:auto;margin-bottom:20px;border-radius:15px;overflow:hidden}
#contentbody > #right .Catalog .CataTitle{background:#0167B7;width:100%;height:3rem;line-height:3rem;font-size:1.2rem;color:#ffffff;text-align:center;overflow:hidden}
#contentbody > #right .Catalog .CataCon{width:100%;height:auto;overflow:hidden}
#contentbody > #right .Catalog .CataCon ul{width:100%;height:auto;margin:0;padding:0;overflow:hidden}
#contentbody > #right .Catalog .CataCon ul li{background:#ececec;width:100%;height:3rem;line-height:3rem;border-bottom:1px #ffffff solid;text-align:left;display:block;overflow:hidden}
#contentbody > #right .Catalog .CataCon ul li a{width:100%;height:3rem;line-height:3rem;text-align:left;font-size:14px;padding-left:30px;display:block;overflow:hidden}
#contentbody > #right .Catalog .CataCon ul li a:hover{width:100%;background: #0167B7;color:#ffffff}

#contentbody > #right #wechat{background:#0167B7;width:100%;height:auto;padding:25px;border-radius:15px;text-align:center;color:#fff;overflow:hidden}
#contentbody > #right #wechat img{width:100%;height:auto}

/* ========== 响应式设计 ========== */
@media (min-width: 640px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .top-bar {
    display: block;
  }

  .nav-menu {
    display: flex;
  }

  .nav-buttons {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero {
    padding: 100px 0;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 18px;
  }

  .section {
    padding: 80px 0;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-hero h1 {
    font-size: 36px;
  }
}

#chatonline{width:3.6rem;height:auto;position:fixed;z-index:99;right:1rem;top:10rem;}
#chatonline ul{width:100%;height:auto;}
#chatonline ul li{background:#0084D6;width:3.2rem;height:3.2rem;border-radius:1.8rem;margin:0.3rem auto;display:block;position:relative}
#chatonline ul li a > img,#chatonline ul li > img{width:auto;height:1.6rem;margin-left:0.8rem;margin-top:0.8rem;vertical-align:middle}
#chatonline ul li a{color:#fff;}
#chatonline span{display:none}
#chatonline ul li:hover span,#chatonline span:hover{position:absolute;z-index:100;top:0;right:3.2rem;width:auto;height:auto;min-height:3.2rem;line-HEIGHT:3.2rem;display:block;white-space:pre;}
#chatonline ul li span > img{width:20px;height:auto;display:inline-block;margin:0;vertical-align:top;top:0;}
#chatonline ul li span > font{background:#0084D6;padding-left:1rem;padding-right:1rem;box-sizing:border-box;-moz-box-sizing:border-box; /* Firefox */-webkit-box-sizing:border-box; /* Safari */color:#fff;display:inline-block;margin:0;border-radius:5px;}
#chatonline ul li.silverli{background:#666;}
#chatonline ul li span > font.silverli{background:#666}
#chatonline ul li.orangeli{background:#ff6600;}
#chatonline ul li span > font.orangeli{background:#ff6600}
#chatonline ul li.greenli{background:#31A918;}
#chatonline ul li span > font.greenli{background:#31A918}
#chatonline ul li.lightgreenli{background:#28D368;}
#chatonline ul li span > font.lightgreenli{background:#28D368}