* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', 'Segoe UI', Roboto, system-ui, sans-serif;
    }

    body {
      background: #f4f6fa;
      color: #0b1e2b;
      line-height: 1.5;
      padding: 0 0 30px;
    }

    .container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* 导航 */
    .navbar {
      background: #0b1e2b;
      padding: 18px 0;
      box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    }
    .navbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
    .logo {
      font-size: 28px;
      font-weight: 700;
      color: #fbbf24;
      letter-spacing: 1px;
    }
    .logo i {
      margin-right: 10px;
      color: #fbbf24;
    }
    .nav-links a {
      color: #e2e8f0;
      text-decoration: none;
      margin-left: 28px;
      font-weight: 500;
      font-size: 16px;
      transition: 0.2s;
    }
    .nav-links a i {
      margin-right: 6px;
    }
    .nav-links a:hover {
      color: #fbbf24;
    }

    /* 上部分 左中右 三列 */
    .top-section {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 26px;
      margin: 32px 0 28px;
    }

    /* 左: 幻灯片 */
    .slider-box {
      background: #ffffff;
      border-radius: 24px;
      box-shadow: 0 8px 28px rgba(0,0,0,0.03);
      padding: 20px 18px 18px;
      border: 1px solid #edf2f7;
    }
    .slider-box h3 {
      font-size: 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #0b1e2b;
      border-bottom: 2px solid #f1f5f9;
      padding-bottom: 12px;
      margin-bottom: 16px;
    }
    .slider-box h3 i {
      color: #fbbf24;
    }
    .slider-item {
      background: #f8fafc;
      border-radius: 20px;
      padding: 22px 16px 18px;
      text-align: center;
      border: 1px solid #eef2f6;
      transition: 0.2s;
      width:360px;
    }
    .slider-item .slide-icon {
      font-size: 48px;
      color: #2563eb;
      margin-bottom: 6px;
    }
    .slider-item h4 {
      font-weight: 700;
      font-size: 20px;
      margin: 4px 0 6px;
    }
    .slider-item p {
      color: #475569;
      font-size: 14px;
    }
    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 18px;
    }
    .slider-dots span {
      width: 10px;
      height: 10px;
      border-radius: 20px;
      background: #d1d9e6;
      display: inline-block;
    }
    .slider-dots span.active {
      background: #0b1e2b;
      width: 28px;
    }
    .slide-caption-parent{
      position: relative;
    }
    .slide-caption{
      position: absolute;
      top:0%;
      background-color: rgba(255, 255, 255, 0.5);
      color:white;
    }

    /* 中: 文章列表 */
    .article-box {
      background: #ffffff;
      border-radius: 24px;
      box-shadow: 0 8px 28px rgba(0,0,0,0.03);
      padding: 20px 18px 18px;
      border: 1px solid #edf2f7;
    }
    .article-box h3 {
      font-size: 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #0b1e2b;
      border-bottom: 2px solid #f1f5f9;
      padding-bottom: 12px;
      margin-bottom: 10px;
    }
    .article-box h3 i {
      color: #fbbf24;
    }
    .article-list {
      list-style: none;
    }
    .article-list li {
      padding: 13px 0;
      border-bottom: 1px solid #f1f5f9;
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 500;
      font-size: 15px;
      color: #0b1e2b;
    }
    .article-list li:last-child {
      border-bottom: none;
    }
    .article-list li i {
      color: #fbbf24;
      width: 20px;
      text-align: center;
    }
    .article-list li .badge {
      margin-left: auto;
      background: #eef2f6;
      padding: 2px 14px;
      border-radius: 40px;
      font-size: 11px;
      font-weight: 600;
      color: #334155;
    }
    
    .article-list li a {
      color:#0b1e2b;
      text-decoration:none;
    }

    /* 右: 推荐软件 */
    .software-box {
      background: #ffffff;
      border-radius: 24px;
      box-shadow: 0 8px 28px rgba(0,0,0,0.03);
      padding: 20px 18px 18px;
      border: 1px solid #edf2f7;
    }
    .software-box h3 {
      font-size: 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #0b1e2b;
      border-bottom: 2px solid #f1f5f9;
      padding-bottom: 12px;
      margin-bottom: 16px;
    }
    .software-box h3 i {
      color: #fbbf24;
    }
    .software-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .software-tags span {
      background: #f1f5f9;
      border-radius: 40px;
      padding: 8px 20px;
      font-weight: 500;
      font-size: 14px;
      border: 1px solid #e2e8f0;
      transition: 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #0b1e2b;
      cursor: pointer;
    }
    .software-tags span i {
      color: #2563eb;
    }
    .software-tags span:hover {
      background: #0b1e2b;
      color: white;
      border-color: #0b1e2b;
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(11,30,43,0.10);
    }
    .software-tags span:hover i {
      color: #fbbf24;
    }

    /* 中部分: 6个软件展示 */
    .mid-section {
      margin: 36px 0 30px;
    }
    .mid-section h2 {
      font-size: 26px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
    }
    .mid-section h2 i {
      color: #fbbf24;
    }
    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .product-card {
      background: white;
      border-radius: 24px;
      padding: 22px 20px 24px;
      border: 1px solid #edf2f7;
      box-shadow: 0 6px 18px rgba(0,0,0,0.02);
      transition: 0.25s;
      display: flex;
      flex-direction: column;
    }
    .product-card:hover {
      transform: translateY(-6px);
      border-color: #fbbf24;
      box-shadow: 0 16px 32px rgba(11,30,43,0.06);
    }
    .product-card .icon-big {
      font-size: 42px;
      color: #2563eb;
      background: #eef2ff;
      width: 68px;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      margin-bottom: 14px;
    }
    .product-card h4 {
      font-size: 20px;
      font-weight: 700;
    }
    .product-card .desc {
      color: #475569;
      font-size: 14px;
      margin: 6px 0 12px;
      flex: 1;
    }
    .product-card .meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid #eef2f6;
      padding-top: 14px;
      margin-top: 6px;
    }
    .product-card .meta .price {
      font-weight: 700;
      color: #0b1e2b;
    }
    .product-card .meta .price small {
      font-weight: 400;
      color: #64748b;
      font-size: 13px;
    }
    .btn-outline {
      background: transparent;
      border: 1.5px solid #0b1e2b;
      border-radius: 40px;
      padding: 6px 20px;
      font-weight: 600;
      font-size: 13px;
      color: #0b1e2b;
      transition: 0.2s;
    }
    a.btn-outline {
      text-decoration:none;
    }
    .btn-outline i {
      margin-right: 6px;
    }
    .btn-outline:hover {
      background: #0b1e2b;
      color: white;
    }

    /* 下部分: 自由生成 (品牌数据/动态) */
    .bottom-section {
      background: #ffffff;
      border-radius: 28px;
      padding: 32px 32px;
      margin: 30px 0 44px;
      border: 1px solid #edf2f7;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
    }
    .bottom-left {
      display: flex;
      align-items: center;
      gap: 36px;
      flex-wrap: wrap;
    }
    .bottom-left .stat-item {
      text-align: center;
    }
    .bottom-left .stat-item .number {
      font-size: 30px;
      font-weight: 800;
      color: #0b1e2b;
      letter-spacing: 0.5px;
    }
    .bottom-left .stat-item .label {
      font-size: 14px;
      color: #64748b;
    }
    .bottom-right {
      display: flex;
      gap: 24px;
      align-items: center;
      flex-wrap: wrap;
    }
    .bottom-right .tag-group {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .bottom-right .tag-group span {
      background: #f1f5f9;
      padding: 6px 20px;
      border-radius: 40px;
      font-size: 13px;
      font-weight: 500;
    }
    .bottom-right .tag-group span i {
      margin-right: 6px;
      color: #fbbf24;
    }
    .bottom-cta {
      background: #0b1e2b;
      color: white;
      border: none;
      padding: 10px 32px;
      border-radius: 60px;
      font-weight: 600;
      font-size: 16px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      cursor: default;
      transition: 0.2s;
    }
    .bottom-cta i {
      color: #fbbf24;
    }
    .bottom-cta:hover {
      background: #1f3a4b;
      transform: scale(1.02);
    }

    /* 商品详情页 (独立区域) */
    .detail-section {
      margin: 50px 0 30px;
      background: #ffffff;
      border-radius: 32px;
      padding: 36px 34px;
      border: 1px solid #e6edf5;
      box-shadow: 0 8px 24px rgba(0,0,0,0.02);
    }
    .detail-section h2 {
      font-size: 26px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 2px solid #ecf1f7;
      padding-bottom: 18px;
      margin-bottom: 28px;
    }
    .detail-section h2 i {
      color: #fbbf24;
    }
    .detail-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    .detail-image {
      background: #f0f5fe;
      border-radius: 28px;
      padding: 40px 20px;
      text-align: center;
      font-size: 80px;
      color: #2563eb;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 280px;
      border: 1px solid #dce7f5;
    }
    .detail-image .img-label {
      font-size: 18px;
      color: #0b1e2b;
      margin-top: 12px;
      font-weight: 600;
    }
    .detail-info {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .detail-info .title-lg {
      font-size: 30px;
      font-weight: 700;
      color: #0b1e2b;
    }
    .detail-info .price-lg {
      font-size: 34px;
      font-weight: 700;
      color: #0b1e2b;
    }
    .detail-info .price-lg small {
      font-weight: 400;
      font-size: 18px;
      color: #64748b;
      margin-left: 8px;
    }
    .detail-info .feature-list {
      list-style: none;
      margin: 6px 0;
    }
    .detail-info .feature-list li {
      padding: 8px 0;
      border-bottom: 1px solid #f1f5f9;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 16px;
      color: #1e293b;
    }
    .detail-info .feature-list li i {
      color: #22c55e;
      width: 22px;
    }
    .btn-primary {
      background: #0b1e2b;
      border: none;
      color: white;
      padding: 14px 34px;
      border-radius: 60px;
      font-weight: 700;
      font-size: 18px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      width: fit-content;
      cursor: default;
      transition: 0.2s;
    }
    .btn-primary i {
      color: #fbbf24;
    }
    .btn-primary:hover {
      background: #1f3a4b;
    }

    /* 响应式 */
    @media (max-width: 992px) {
      .top-section {
        grid-template-columns: 1fr 1fr;
      }
      .product-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .detail-grid {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 700px) {
      .top-section {
        grid-template-columns: 1fr;
      }
      .product-grid {
        grid-template-columns: 1fr;
      }
      .navbar .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }
      .nav-links a {
        margin-left: 0;
        margin-right: 18px;
      }
      .bottom-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
      }
      .bottom-left {
        gap: 20px;
      }
      .detail-section {
        padding: 24px 18px;
      }
    }

    .footer-note {
      text-align: center;
      padding: 20px 0 8px;
      color: #64748b;
      font-size: 14px;
      border-top: 1px solid #e2e8f0;
      margin-top: 12px;
    }
    .footer-note i {
      color: #fbbf24;
    }
    .moretool{
		margin-top:14px; background:#f8fafc; border-radius:40px; padding:8px 16px; font-size:13px; color:#2563eb;cursor:pointer;
	}
    