
  * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
  }
  body {
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
   background: #f5f6f8;
   color: #2C3E50;
   line-height: 1.6;
  }
  .page-wrap {
   max-width: 1280px;
   margin: 0 auto;
   background: #fff;
   box-shadow: 0 0 40px rgba(44, 62, 80, 0.05);
  }
  
  .hero {
   background: linear-gradient(135deg, #1a2a3a 0%, #2C3E50 100%);
   position: relative;
   overflow: hidden;
   min-height: 460px;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 60px 30px;
  }
  .hero::before {
   content: "";
   position: absolute;
   inset: 0;
   background: url(/images/8.jpg) center center / cover no-repeat;
   opacity: 0.35;
   mix-blend-mode: overlay;
  }
  .hero-inner {
   position: relative;
   z-index: 2;
   text-align: center;
   max-width: 900px;
  }
  .hero h1 {
   font-size: 48px;
   font-weight: 700;
   color: #fff;
   letter-spacing: 2px;
   margin-bottom: 16px;
   text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  .hero .sub {
   font-size: 22px;
   color: rgba(255, 255, 255, 0.9);
   font-weight: 300;
   letter-spacing: 4px;
   border-top: 3px solid #E87722;
   display: inline-block;
   padding-top: 16px;
   padding-left: 10px;
   padding-right: 10px;
  }
  .hero .tagline {
   margin-top: 24px;
   color: rgba(255, 255, 255, 0.75);
   font-size: 16px;
   letter-spacing: 1px;
  }
  
  section {
   padding: 64px 40px;
  }
  .section-title {
   text-align: center;
   font-size: 32px;
   font-weight: 600;
   margin-bottom: 12px;
   color: #2C3E50;
   position: relative;
  }
  .section-title::after {
   content: "";
   display: block;
   width: 60px;
   height: 4px;
   background: #E87722;
   margin: 12px auto 0;
   border-radius: 2px;
  }
  .section-desc {
   text-align: center;
   max-width: 720px;
   margin: 0 auto 48px;
   color: #5a6a7a;
   font-size: 16px;
  }
  .row {
   display: flex;
   flex-wrap: wrap;
   gap: 40px;
   align-items: center;
  }
  .row .col-text {
   flex: 1 1 45%;
   min-width: 280px;
  }
  .row .col-img {
   flex: 1 1 45%;
   min-width: 280px;
   text-align: center;
  }
  .row .col-img img {
   width: 600px;
   height: 450px;
   object-fit: cover;
   border-radius: 8px;
   box-shadow: 0 8px 30px rgba(44, 62, 80, 0.15);
   max-width: 100%;
   height: auto;
   aspect-ratio: 600 / 450;
  }
  .row.rev {
   flex-direction: row-reverse;
  }
  h2 {
   font-size: 26px;
   font-weight: 600;
   color: #2C3E50;
   margin-bottom: 16px;
  }
  h2 .accent {
   color: #E87722;
  }
  p {
   margin-bottom: 16px;
   font-size: 16px;
   color: #3d4e5f;
  }
  p.lead {
   font-size: 18px;
   color: #2C3E50;
   font-weight: 500;
  }
  .list-dot {
   list-style: none;
   padding-left: 0;
  }
  .list-dot li {
   padding-left: 24px;
   position: relative;
   margin-bottom: 8px;
   font-size: 15px;
   color: #3d4e5f;
  }
  .list-dot li::before {
   content: "▸";
   position: absolute;
   left: 0;
   color: #E87722;
   font-weight: 700;
  }
  
  .card-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
   gap: 30px;
   margin-top: 20px;
  }
  .card {
   background: #f8f9fb;
   border-radius: 12px;
   overflow: hidden;
   transition: transform 0.25s ease, box-shadow 0.25s ease;
   border: 1px solid #e9edf2;
  }
  .card:hover {
   transform: translateY(-4px);
   box-shadow: 0 12px 32px rgba(44, 62, 80, 0.1);
  }
  .card img {
   width: 600px;
   height: 450px;
   object-fit: cover;
   display: block;
   width: 100%;
   height: auto;
   aspect-ratio: 600 / 450;
  }
  .card-body {
   padding: 20px 24px 26px;
  }
  .card-body h3 {
   font-size: 20px;
   font-weight: 600;
   color: #2C3E50;
   margin-bottom: 8px;
  }
  .card-body .meta {
   color: #E87722;
   font-weight: 500;
   font-size: 14px;
   margin-bottom: 10px;
  }
  .card-body p {
   font-size: 14px;
   color: #4a5a6a;
   margin-bottom: 0;
  }
  
  .bg-light {
   background: #f7f9fc;
  }
  .bg-dark {
   background: #2C3E50;
   color: #fff;
  }
  .bg-dark .section-title {
   color: #fff;
  }
  .bg-dark .section-title::after {
   background: #E87722;
  }
  .bg-dark .section-desc {
   color: rgba(255, 255, 255, 0.75);
  }
  
  .app-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
   gap: 24px;
   margin-top: 30px;
  }
  .app-item {
   background: #fff;
   border-radius: 12px;
   padding: 28px 16px 20px;
   text-align: center;
   border: 1px solid #e9edf2;
   transition: all 0.2s;
  }
  .app-item .icon {
   font-size: 40px;
   margin-bottom: 12px;
   display: block;
   color: #E87722;
  }
  .app-item h4 {
   font-size: 15px;
   font-weight: 600;
   color: #2C3E50;
  }
  .app-item:hover {
   border-color: #E87722;
   box-shadow: 0 6px 20px rgba(232, 119, 34, 0.12);
  }
  
  .table-wrap {
   overflow-x: auto;
   margin-top: 30px;
  }
  table {
   width: 100%;
   border-collapse: collapse;
   font-size: 14px;
   background: #fff;
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0 2px 12px rgba(44, 62, 80, 0.06);
  }
  thead {
   background: #2C3E50;
   color: #fff;
  }
  th {
   padding: 14px 18px;
   text-align: left;
   font-weight: 600;
   font-size: 14px;
  }
  td {
   padding: 12px 18px;
   border-bottom: 1px solid #eef2f6;
   color: #3d4e5f;
  }
  tr:last-child td {
   border-bottom: none;
  }
  tbody tr:hover {
   background: #f8faff;
  }
  .badge {
   display: inline-block;
   background: #E87722;
   color: #fff;
   padding: 2px 12px;
   border-radius: 20px;
   font-size: 12px;
   font-weight: 500;
  }
  
  @media (max-width: 1024px) {
   section {
    padding: 48px 28px;
   }
   .hero h1 {
    font-size: 38px;
   }
   .hero .sub {
    font-size: 18px;
   }
  }
  @media (max-width: 768px) {
   .hero {
    min-height: 340px;
    padding: 40px 20px;
   }
   .hero h1 {
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 12px;
   }
   .hero .sub {
    font-size: 16px;
    letter-spacing: 2px;
    padding-top: 12px;
   }
   .hero .tagline {
    font-size: 14px;
    margin-top: 18px;
   }
   section {
    padding: 36px 18px;
   }
   .section-title {
    font-size: 24px;
   }
   .section-desc {
    font-size: 14px;
    margin-bottom: 32px;
   }
   .row {
    gap: 24px;
   }
   .row .col-text {
    flex: 1 1 100%;
    min-width: 0;
   }
   .row .col-img {
    flex: 1 1 100%;
    min-width: 0;
   }
   .row .col-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 600 / 450;
   }
   h2 {
    font-size: 22px;
   }
   p {
    font-size: 15px;
   }
   .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
   }
   .card img {
    width: 100%;
    height: auto;
    aspect-ratio: 600 / 450;
   }
   .app-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
   }
   .app-item {
    padding: 20px 12px 16px;
   }
   .app-item .icon {
    font-size: 32px;
   }
   th,
   td {
    padding: 10px 12px;
    font-size: 13px;
   }
  }
  @media (max-width: 480px) {
   .hero h1 {
    font-size: 24px;
   }
   .hero .sub {
    font-size: 14px;
    padding-top: 10px;
   }
   section {
    padding: 28px 14px;
   }
   .section-title {
    font-size: 20px;
   }
   h2 {
    font-size: 19px;
   }
   .app-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
   }
   .app-item h4 {
    font-size: 13px;
   }
   table {
    font-size: 12px;
   }
   th,
   td {
    padding: 8px 10px;
   }
  }
  
  .mt-0 {
   margin-top: 0;
  }
  .mb-0 {
   margin-bottom: 0;
  }
  .mt-20 {
   margin-top: 20px;
  }
  .mb-20 {
   margin-bottom: 20px;
  }
  .text-center {
   text-align: center;
  }
  .img-round {
   border-radius: 8px;
  }
  .flex-center {
   display: flex;
   align-items: center;
   justify-content: center;
  }
  .gap-16 {
   gap: 16px;
  }
  .gap-24 {
   gap: 24px;
  }
  .inline-icon {
   display: inline-block;
   margin-right: 6px;
  }
  .accent-color {
   color: #E87722;
  }
  
  .feature-highlight {
   background: #2C3E50;
   color: #fff;
   border-radius: 12px;
   padding: 28px 32px;
   margin-top: 30px;
  }
  .feature-highlight h3 {
   color: #fff;
   font-size: 20px;
   margin-bottom: 12px;
  }
  .feature-highlight .num {
   font-size: 36px;
   font-weight: 700;
   color: #E87722;
   display: block;
  }
  .feature-highlight p {
   color: rgba(255, 255, 255, 0.85);
   margin-bottom: 0;
   font-size: 15px;
  }
  .stats-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
   gap: 24px;
   margin-top: 20px;
  }
  .stat-item {
   text-align: center;
   padding: 16px 8px;
   border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
  .stat-item:last-child {
   border-right: none;
  }
  .stat-item .num {
   font-size: 30px;
   font-weight: 700;
   color: #E87722;
  }
  .stat-item .label {
   font-size: 14px;
   color: rgba(255, 255, 255, 0.75);
   margin-top: 4px;
  }
  @media (max-width: 640px) {
   .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
   }
   .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 6px;
   }
   .stat-item .num {
    font-size: 24px;
   }
   .feature-highlight {
    padding: 20px 18px;
   }
  }
 
.kuang-nav { position:sticky; top:0; z-index:1000; background:#fff; border-bottom:2px solid #E87722; box-shadow:0 2px 12px rgba(0,0,0,0.06); }
.kuang-nav-inner { max-width:1200px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; height:60px; padding:0 24px; }
.kuang-nav-brand { display:flex; align-items:center; gap:10px; text-decoration:none; flex-shrink:0; }
.kuang-nav-brand-icon { width:36px; height:36px; background:#E87722; border-radius:8px; display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; font-size:18px; }
.kuang-nav-brand-text { font-size:17px; font-weight:700; color:#2C3E50; }
.kuang-nav-links { display:flex; align-items:center; gap:2px; list-style:none; }
.kuang-nav-links a { display:block; padding:8px 16px; font-size:15px; font-weight:500; color:#3d4a5a; text-decoration:none; border-radius:6px; transition:color 0.2s,background 0.2s; white-space:nowrap; }
.kuang-nav-links a:hover, .kuang-nav-links a.kuang-active { color:#E87722; background:rgba(232,119,34,0.07); }
.kuang-nav-phone { display:flex; align-items:center; gap:6px; font-size:15px; font-weight:600; color:#E87722; text-decoration:none; flex-shrink:0; transition:opacity 0.2s; }
.kuang-nav-phone:hover { opacity:0.75; }
.kuang-hamburger { display:none; flex-direction:column; justify-content:center; align-items:center; width:40px; height:40px; cursor:pointer; border:none; background:transparent; gap:5px; -webkit-tap-highlight-color:transparent; }
.kuang-hamburger span { display:block; width:22px; height:2px; background:#2C3E50; border-radius:2px; transition:transform 0.3s,opacity 0.3s; }
.kuang-hamburger.kuang-open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.kuang-hamburger.kuang-open span:nth-child(2) { opacity:0; }
.kuang-hamburger.kuang-open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }
.kuang-mobile-menu { display:none; position:fixed; top:60px; left:0; right:0; background:#fff; border-bottom:2px solid #E87722; box-shadow:0 8px 24px rgba(0,0,0,0.1); z-index:999; padding:8px 0; transform:translateY(-8px); opacity:0; transition:transform 0.3s ease,opacity 0.3s ease; }
.kuang-mobile-menu.kuang-show { display:block; transform:translateY(0); opacity:1; }
.kuang-mobile-menu a { display:block; padding:12px 24px; font-size:16px; font-weight:500; color:#3d4a5a; text-decoration:none; border-left:3px solid transparent; transition:all 0.2s; }
.kuang-mobile-menu a:hover, .kuang-mobile-menu a.kuang-active { color:#E87722; background:rgba(232,119,34,0.05); border-left-color:#E87722; }
.kuang-mobile-menu .kuang-mob-phone { display:flex; align-items:center; gap:8px; padding:14px 24px; font-size:16px; font-weight:600; color:#E87722; text-decoration:none; border-top:1px solid #eee; margin-top:4px; }


.kuang-footer { background:#1a2332; color:#c0c8d4; }
.kuang-footer-inner { max-width:1200px; margin:0 auto; padding:44px 24px 0; }
.kuang-footer-top { display:flex; gap:48px; flex-wrap:wrap; padding-bottom:32px; border-bottom:1px solid rgba(255,255,255,0.08); }
.kuang-footer-brand { flex:1 1 260px; min-width:220px; }
.kuang-footer-brand-row { display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.kuang-footer-brand-icon { width:36px; height:36px; background:#E87722; border-radius:8px; display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; font-size:17px; flex-shrink:0; }
.kuang-footer-brand-name { font-size:18px; font-weight:700; color:#e8ecf0; }
.kuang-footer-brand p { font-size:14px; line-height:1.7; color:#7a8a9a; margin-bottom:14px; }
.kuang-footer-contact { display:flex; flex-direction:column; }
.kuang-footer-contact a { display:inline-flex; align-items:center; gap:6px; color:#E87722; text-decoration:none; font-size:14px; font-weight:500; margin-bottom:6px; transition:opacity 0.2s; }
.kuang-footer-contact a:hover { opacity:0.75; }
.kuang-footer-nav { flex:0 1 170px; min-width:140px; }
.kuang-footer-nav h3 { font-size:14px; font-weight:600; color:#e8ecf0; margin-bottom:16px; text-transform:uppercase; letter-spacing:0.5px; }
.kuang-footer-nav ul { list-style:none; }
.kuang-footer-nav ul li { margin-bottom:10px; }
.kuang-footer-nav ul li a { font-size:14px; color:#7a8a9a; text-decoration:none; transition:color 0.2s,transform 0.2s; display:inline-block; }
.kuang-footer-nav ul li a:hover { color:#E87722; transform:translateX(3px); }
.kuang-footer-news { flex:1 1 320px; min-width:260px; }
.kuang-footer-news h3 { font-size:14px; font-weight:600; color:#e8ecf0; margin-bottom:16px; text-transform:uppercase; letter-spacing:0.5px; }
.kuang-news-list { display:flex; flex-direction:column; }
.kuang-news-list a { display:block; padding:9px 14px 9px 24px; font-size:14px; color:#7a8a9a; text-decoration:none; border-radius:5px; position:relative; line-height:1.5; transition:color 0.2s,background 0.2s; }
.kuang-news-list a::before { content:""; position:absolute; left:10px; top:50%; transform:translateY(-50%); width:5px; height:5px; background:#3a4a5e; border-radius:50%; transition:background 0.2s; }
.kuang-news-list a:hover { color:#E87722; background:rgba(232,119,34,0.06); }
.kuang-news-list a:hover::before { background:#E87722; }
.kuang-news-list a + a { border-top:1px solid rgba(255,255,255,0.04); }
.kuang-footer-bottom { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px; padding:18px 0 22px; }
.kuang-footer-bottom p { font-size:13px; color:#4e5a6a; margin:0; }
.kuang-footer-bottom-links { display:flex; gap:18px; }
.kuang-footer-bottom-links a { font-size:13px; color:#4e5a6a; text-decoration:none; transition:color 0.2s; }
.kuang-footer-bottom-links a:hover { color:#E87722; }


.kuang-back-top { position:fixed; bottom:28px; right:28px; width:44px; height:44px; background:#E87722; color:#fff; border:none; border-radius:10px; cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 16px rgba(232,119,34,0.35); opacity:0; transform:translateY(12px); transition:all 0.3s ease; z-index:800; -webkit-tap-highlight-color:transparent; }
.kuang-back-top.kuang-visible { opacity:1; transform:translateY(0); }
.kuang-back-top:hover { background:#d06a1a; transform:translateY(-2px); }


@media (max-width:1024px) { .kuang-footer-top { gap:32px; } }
@media (max-width:768px) {
 .kuang-nav-links { display:none; }
 .kuang-nav-phone { display:none; }
 .kuang-hamburger { display:flex; }
 .kuang-footer-inner { padding:32px 20px 0; }
 .kuang-footer-top { flex-direction:column; gap:28px; }
 .kuang-footer-brand, .kuang-footer-nav, .kuang-footer-news { flex:1 1 100%; min-width:0; }
 .kuang-footer-bottom { flex-direction:column; text-align:center; }
}
@media (max-width:480px) {
 .kuang-nav-inner { padding:0 14px; height:54px; }
 .kuang-nav-brand-text { font-size:15px; }
 .kuang-nav-brand-icon { width:30px; height:30px; font-size:15px; border-radius:6px; }
 .kuang-mobile-menu { top:54px; }
 .kuang-footer-inner { padding:26px 14px 0; }
 .kuang-news-list a { font-size:13px; padding:8px 10px 8px 20px; }
 .kuang-news-list a::before { left:6px; width:4px; height:4px; }
 .kuang-back-top { width:38px; height:38px; bottom:16px; right:14px; border-radius:8px; }
}
