  /* 全局样式重置 */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: "Microsoft YaHei", "Noto Sans SC", sans-serif;
      background-color: #FAF6ED;
      color: #3E2723;
      line-height: 1.6;
    }
    
    a {
      text-decoration: none;
      color: inherit;
    }
    
    ul {
      list-style: none;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* 导航栏样式 */
    header {
      position: relative;
      width: 100%;
      z-index: 999;
    }
    
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: rgba(62, 39, 35, 0.85);
      backdrop-filter: blur(8px);
      padding: 15px 0;
      transition: all 0.3s ease;
      z-index: 1000;
    }
    
    .navbar-container {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .nav-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    
    .nav-item {
      padding: 6px 15px;
    }
    
    .nav-link {
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
      font-size: 18px;
    }
    
    .nav-link:hover {
      color: #D2B48C;
    }
    
    .nav-link:after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #CD853F;
      transition: width 0.3s ease;
    }
    
    .nav-link:hover:after {
      width: 100%;
    }
    
    /* 头部Banner */
    .header-banner {
      width: 100%;
      height: 500px;
      background-image: url('/templets/2025/banner2025xf.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin-top: 42px;
    }
    
    .banner-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 30px 0;
      background: linear-gradient(to top, rgba(62, 39, 35, 0.9), transparent);
      text-align: center;
    }
    
    .banner-title {
      font-size: 42px;
      color: #fff;
      font-weight: bold;
      text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
      margin-bottom: 15px;
    }
    
    .banner-link {
      display: inline-block;
      padding: 10px 30px;
      background-color: #CD853F;
      color: #fff;
      border-radius: 30px;
      font-weight: 500;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(205, 133, 63, 0.3);
    }
    
    .banner-link:hover {
      background-color: #8B5A2B;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(139, 90, 43, 0.4);
    }
    
    /* 主内容区 */
    main {
      padding: 60px 0;
    }
    
    /* 头条文章 */
    .headline {
      margin-bottom: 80px;margin-top: 20px;
    }
    
    .section-title {
      text-align: center;
      font-size: 32px;
      color: #8B5A2B;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #CD853F;
    }
    
    .section-title i {
      color: #CD853F;
      margin-right: 10px;
    }
    
    .headline-card {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      padding: 30px;
      transition: all 0.3s ease;
    }
    
    .headline-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }
    
    .headline-content {
      border-left: 4px solid #CD853F;
      padding-left: 20px;
      margin-bottom: 25px;
    }
    
    .headline-title {
      font-size: 24px;
      margin-bottom: 15px;
      transition: all 0.3s ease;
    }
    
    .headline-title:hover {
      color: #8B5A2B;
    }
    
    .headline-desc {
      color: #666;
      font-size: 16px;
      line-height: 1.8;
    }
    
    .read-more {
      display: inline-flex;
      align-items: center;
      color: #CD853F;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    
    .read-more:hover {
      color: #8B5A2B;
    }
    
    .read-more i {
      margin-left: 8px;
      transition: transform 0.3s ease;
    }
    
    .read-more:hover i {
      transform: translateX(5px);
    }
    
    /* 幻灯片与最新文章 */
    .slider-news {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 80px;
    }
    
    .slider-container {
      flex: 1;
      min-width: 600px;
      background-color: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
    
    .slider {
      position: relative;
      width: 100%;
      height: 400px;
    }
    
    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.8s ease;
    }
    
    .slide.active {
      opacity: 1;
    }
    
    .slide-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .slide-content {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 30px;
      background: linear-gradient(to top, rgba(62, 39, 35, 0.9), transparent);
      color: #fff;
    }
    
    .slide-title {
      font-size: 22px;
      margin-bottom: 10px;
    }
    
    .slide-desc {
      font-size: 14px;
      opacity: 0.9;
      line-height: 1.6;
    }
    
    .slider-controls {
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
      z-index: 10;
    }
    
    .slider-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.8);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: #3E2723;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .slider-btn:hover {
      background-color: #CD853F;
      color: #fff;
      transform: scale(1.1);
      box-shadow: 0 6px 20px rgba(205, 133, 63, 0.3);
    }
    
    .slider-dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
    }
    
    .slider-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.5);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .slider-dot.active {
      background-color: #fff;
      width: 30px;
      border-radius: 30px;
    }
    
    /* 最新文章列表 */
    .news-list {
      flex: 1;
      min-width: 300px;
      background-color: #fff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
    
    .news-list-title {
      font-size: 20px;
      color: #8B5A2B;
      margin-bottom: 25px;
      display: flex;
      align-items: center;
    }
    
    .news-list-title i {
      color: #CD853F;
      margin-right: 10px;
    }
    
    .news-items {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    
    .news-item {
      //padding-bottom: 20px;
      border-bottom: 1px solid #f0f0f0;
      transition: all 0.3s ease;
    }
    
    .news-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    
    .news-item:hover {
      transform: translateX(10px);
    }
    
    .news-item-title {
      font-size: 16px;
      color: #3E2723;
      transition: all 0.3s ease;
      font-weight: 500;
    }
    
    .news-item-title:hover {
      color: #CD853F;
    }
    
    /* 大赛介绍 - 新风格 */
    .about {
      margin-bottom: 80px;
      background: linear-gradient(135deg, #f9f5eb 0%, #f5f0e6 100%);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
    
    .about-container {
      display: flex;
      flex-wrap: wrap;
    }
    
    .about-tabs {
      flex: 1;
      min-width: 300px;
      background-color: #8B5A2B;
      padding: 40px;
      color: #fff;
    }
    
    .about-tab {
      margin-bottom: 25px;
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 15px;
      border-radius: 8px;
      position: relative;
    }
    
    .about-tab:last-child {
      margin-bottom: 0;
    }
    
    .about-tab.active {
      background-color: rgba(255, 255, 255, 0.2);
    }
    
    .about-tab:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }
    
    .about-tab-title {
      font-size: 20px;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
    }
    
    .about-tab-title i {
      margin-right: 10px;
      color: #D2B48C;
    }
    
    .about-tab-desc {
      font-size: 14px;
      opacity: 0.8;
      line-height: 1.6;
    }
    
    .about-contents {
      flex: 2;
      min-width: 400px;
      padding: 50px;
    }
    
    .about-content {
      display: none;
      animation: fadeIn 0.8s ease;
    }
    
    .about-content.active {
      display: block;
    }
    
    .about-content-title {
      font-size: 26px;
      color: #8B5A2B;
      margin-bottom: 25px;
    }
    
    .about-content-text {
      font-size: 16px;
      color: #555;
      line-height: 1.8;
      margin-bottom: 20px;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    /* 推荐作品区域 - 核心修改 */
    .works {
      margin-bottom: 80px;
    }
    
    .works-grid {
      display: grid;
      /* 关键1：强制每行4列 */
      grid-template-columns: repeat(4, 1fr);
      /* 关键2：调整间距为20px，适配4列 */
      gap: 20px;
    }
    
    .work-card {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      height: 300px;
      cursor: pointer;
      /* 关键3：最小宽度限制，避免小屏幕过窄 */
      min-width: 220px;
    }
    
    .work-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .work-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.5s ease;
    }
    
    .work-card:hover .work-img {
      transform: scale(1.1);
    }
    
    .work-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 25px;
      background: linear-gradient(to top, rgba(62, 39, 35, 0.95), transparent);
      color: #fff;
      transition: all 0.3s ease;
    }
    
    .work-card:hover .work-overlay {
      background: linear-gradient(to top, rgba(62, 39, 35, 0.98), transparent);
    }
    
    .work-title {
      font-size: 18px;
      font-weight: 500;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }
    
    /* 评审专家 */
    .experts {
      margin-bottom: 60px;
    }
    
    .experts-slider {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 20px 0;
    }
    
    .experts-track {
      display: flex;
      gap: 40px;
      transition: transform 0.5s ease;
      padding: 20px 0;
    }
    
    .expert-card {
      min-width: 180px;
      text-align: center;
      transition: all 0.3s ease;
    }
    
    .expert-card:hover {
      transform: translateY(-8px);
    }
    
    .expert-avatar {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 20px;
      border: 5px solid rgba(210, 180, 140, 0.3);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }
    
    .expert-card:hover .expert-avatar {
      border-color: #D2B48C;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    
    .expert-name {
      font-size: 18px;
      color: #8B5A2B;
      margin-bottom: 8px;
      font-weight: 500;
    }
    
    .expert-title {
      font-size: 14px;
      color: #666;
    }
    
    .experts-controls {
      position: absolute;
      top: 33%;
      left: 0;
      width: 100%;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
      z-index: 10;
    }
    
    .expert-btn {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: #fff;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #8B5A2B;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .expert-btn:hover {
      background-color: #8B5A2B;
      color: #fff;
      transform: scale(1.1);
      box-shadow: 0 6px 20px rgba(139, 90, 43, 0.3);
    }
    
    /* 页脚 */
    footer {
      background-color: #3E2723;
      color: #fff;
      padding: 60px 0 30px;
    }
    
    .footer-content {
      text-align: center;
    }
    
    .footer-logo {
      font-size: 24px;
      margin-bottom: 20px;
      color: #D2B48C;
    }
    
    .footer-text {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 30px;
      font-size: 14px;
    }
    
    .footer-copyright {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* 响应式调整 */
    @media (max-width: 1200px) {
      .slider-container {
        min-width: 100%;
      }
      
      .news-list {
        min-width: 100%;
      }
      
      .about-contents {
        min-width: 100%;
        padding: 30px;
      }
      
      .about-tabs {
        min-width: 100%;
      }
    }
    
    @media (max-width: 1024px) {
      /* 平板：作品每行2列 */
      .works-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 768px) {
      .banner-title {
        font-size: 32px;
      }
      
      .section-title {
        font-size: 28px;
      }
      
      .headline-title {
        font-size: 20px;
      }
      
      .slide {
        height: 300px;
      }
      
      .work-card {
        height: 250px;
      }
      
      .nav-list {
        gap: 5px;
      }
      
      .nav-item {
        padding: 6px 10px;
      }
      
      .nav-link {
        font-size: 13px;
      }
      
      /* 手机：作品每行1列 */
      .works-grid {
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 480px) {
      .navbar {
        padding: 10px 0;
      }
      
      .header-banner {
        height: 400px;
        margin-top: 42px;
      }
      
      .banner-title {
        font-size: 26px;
      }
      
      .banner-link {
        padding: 8px 20px;
        font-size: 14px;
      }
      
      .section-title {
        font-size: 24px;
      }
      
      .headline-card {
        padding: 20px;
      }
      
      .about-contents {
        padding: 20px;
      }
      
      .about-tabs {
        padding: 20px;
      }
      
      .expert-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
      }
      
      .expert-avatar {
        width: 100px;
        height: 100px;
      }
    }
