body {
   font-family: 'Noto Sans SC', sans-serif;
   color: #333;
   background-color: #f8f9fa;
   line-height: 1.6;
   font-size: 16px;
 }

 .header {
   background-color: #fff;
   box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   transition: all 0.3s ease;
 }

 .banner {
   background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('//css.ccement.com/zhuanti/ccs2022/pc/images/fenghui-2026-banner.jpg');
   background-size: cover;
   background-position: center;
   color: white;
   padding: 120px 0 80px;
   margin-top: 70px;
   position: relative;
 }

 .section {
   padding: 80px 0;
   position: relative;
 }

 .section::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 10%;
   width: 80%;
   height: 1px;
   background: linear-gradient(to right, transparent, #e74c3c, transparent);
 }

 .section-title {
   position: relative;
   margin-bottom: 40px;
   padding-bottom: 20px;
   font-weight: 700;
   color: #333;
   font-size: 2.5rem;
   text-align: center;
 }

 .section-title::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
   width: 100px;
   height: 4px;
   background: linear-gradient(to right, #e74c3c, #f39c12);
   border-radius: 2px;
 }

 .highlight {
   color: #e74c3c;
   font-weight: 600;
 }

 .btn-primary {
   background: linear-gradient(135deg, #e74c3c, #c0392b);
   color: white;
   padding: 14px 35px;
   border-radius: 30px;
   font-weight: 600;
   transition: all 0.3s ease;
   display: inline-block;
   box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
   position: relative;
   overflow: hidden;
 }

 .btn-primary::before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
   transition: all 0.6s ease;
 }

 .btn-primary:hover {
   transform: translateY(-3px);
   box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
 }

 .btn-primary:hover::before {
   left: 100%;
 }

 .card {
   background-color: white;
   border-radius: 12px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
   padding: 30px;
   transition: all 0.4s ease;
   margin-bottom: 30px;
   color: #333;
   position: relative;
   overflow: hidden;
 }

 .card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 5px;
   background: linear-gradient(to right, #e74c3c, #f39c12);
 }

 .card:hover {
   transform: translateY(-8px);
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
 }

 .feature-icon {
   width: 70px;
   height: 70px;
   background-color: #FF6E40;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 25px;
   font-size: 28px;
   color: white;
   box-shadow: 0 8px 20px rgba(255, 110, 64, 0.3);
   transition: all 0.3s ease;
 }

 .card:hover .feature-icon {
   transform: scale(1.1) rotate(5deg);
 }

 .footer {
   background-color: #0F2441;
   color: white;
   padding: 80px 0 40px;
   position: relative;
   overflow: hidden;
 }

 .footer::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 1px;
   background-color: #e74c3c;
 }

 .footer-link:hover {
   color: #FFC4B3;
 }

 .footer-title {
   font-size: 20px;
   font-weight: 600;
   margin-bottom: 25px;
   color: white;
   position: relative;
   padding-bottom: 15px;
 }

 .footer-title::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 50px;
   height: 3px;
   background: linear-gradient(to right, #e74c3c, #f39c12);
 }

 .footer-link {
   color: #adb5bd;
   transition: all 0.3s ease;
   display: block;
   margin-bottom: 12px;
   position: relative;
   padding-left: 20px;
 }

 .footer-link::before {
   content: '→';
   position: absolute;
   left: 0;
   color: #e74c3c;
   transition: all 0.3s ease;
 }

 .footer-link:hover {
   color: white;
   padding-left: 25px;
 }

 .footer-link:hover::before {
   left: 5px;
 }

 .copyright {
   text-align: center;
   padding-top: 40px;
   margin-top: 40px;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   color: #adb5bd;
   font-size: 14px;
 }

 .nav-link {
   position: relative;
   color: #333;
   font-weight: 500;
   transition: all 0.3s ease;
   padding: 8px 0px;
   border-radius: 4px;
 }

 .nav-link:hover {
   color: #e74c3c;
   background-color: rgba(231, 76, 60, 0.05);
 }

 .nav-link::after {
   content: '';
   position: absolute;
   bottom: -2px;
   left: 50%;
   transform: translateX(-50%);
   width: 0;
   height: 2px;
   background: linear-gradient(to right, #e74c3c, #f39c12);
   transition: all 0.3s ease;
 }

 .nav-link:hover::after {
   width: 80%;
 }

 .back-to-top {
   position: fixed;
   bottom: 30px;
   right: 30px;
   width: 50px;
   height: 50px;
   border-radius: 50%;
   background: linear-gradient(135deg, #e74c3c, #c0392b);
   color: white;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   opacity: 0;
   visibility: hidden;
   transition: all 0.3s ease;
   box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
   z-index: 999;
 }

 .back-to-top.visible {
   opacity: 1;
   visibility: visible;
 }

 .back-to-top:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
 }

 @media (min-width: 769px) {
   .mobile-menu-btn {
     display: none;
   }
 }

 @media (max-width: 768px) {
   .header {
     padding: 10px 0;
   }

   .banner {
     padding: 120px 0 80px;
     margin-top: 60px;
   }

   .section {
     padding: 60px 0;
   }

   .section-title {
     font-size: 2rem;
     margin-bottom: 40px;
   }

   .nav-menu {
     position: fixed;
     top: 70px;
     left: 0;
     right: 0;
     background-color: white;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     padding: 20px;
     transform: translateY(-150%);
     transition: all 0.3s ease;
     z-index: 999;
     max-height: 80vh;
     overflow-y: auto;
   }

   .nav-menu.active {
     transform: translateY(0);
   }

   .nav-link {
     display: block;
     margin-bottom: 15px;
     padding: 10px 15px;
   }

   .btn-primary,
   .btn-outline {
     display: block;
     width: 100%;
     text-align: center;
     margin-bottom: 15px;
     padding: 14px 20px;
   }

   .card {
     padding: 25px;
   }

   .feature-icon {
     width: 60px;
     height: 60px;
     font-size: 24px;
   }

   /* 隐藏移动端菜单按钮 */
   .mobile-menu-btn {
     display: none !important;
   }

   /* 移动端隐藏footer */
   .footer {
     display: none;
   }
 }

 @media (max-width: 480px) {
   .banner {
     padding: 100px 0 60px;
   }

   .section {
     padding: 40px 0;
   }

   .section-title {
     font-size: 1.8rem;
   }

   .card {
     padding: 20px;
   }
 }

 /* 表格样式 */
 .sponsorship-table,
 .spon_table {
   width: 100%;
   border-collapse: collapse;
   margin: 20px 0;
   background-color: white;
   border-radius: 8px;
   overflow: hidden;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 .sponsorship-table th,
 .sponsorship-table td,
 .spon_table th,
 .spon_table td {
   padding: 15px;
   text-align: center;
   border: solid 1px #ddd;
 }

 .sponsorship-table th,
 .spon_table th {
   background-color: #f8f9fa;
   font-weight: 600;
   color: #495057;
 }

 .sponsorship-table tr:last-child td,
 .spon_table tr:last-child td {}

 .sponsorship-table tr:hover,
 .spon_table tr:hover {
   background-color: #f8f9fa;
 }

 /* 表格标题样式 */
 .table-title {
   font-size: 24px;
   font-weight: bold;
   text-align: center;
   color: #333;
 }

 /* 联系信息卡片 */
 .contact-card {
   background: linear-gradient(135deg, #fff, #f8f9fa);
   border-radius: 15px;
   padding: 40px;
   text-align: center;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   border: 1px solid rgba(0, 0, 0, 0.05);
 }

 .contact-icon {
   width: 80px;
   height: 80px;
   background: linear-gradient(135deg, #e74c3c, #c0392b);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 25px;
   font-size: 32px;
   color: white;
   box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
 }

 .contact-info {
   font-size: 18px;
   line-height: 1.8;
   color: #495057;
 }

 .contact-info .highlight {
   font-size: 20px;
   font-weight: 700;
   color: #e74c3c;
 }