   /* 主容器 */
   .digital-services {
       /* max-width: 1200px; */
       margin: 0 auto;
       padding: 80px 20px;
       font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
       line-height: 1.6;
       color: #333;
       /* background-color: #f8f9fa; */
   }


   .content-header {
       text-align: center;
       margin-bottom: 60px;
   }

   .section-title {
       font-size: 3.5rem;
       font-weight: 700;
       color: #8B1538;
       margin-bottom: 30px;
       letter-spacing: -0.02em;
   }


   .section-description {
       font-size: 16px;
       line-height: 1.7;
       color: #555;
       max-width: 900px;
       margin: 0 auto;
   }


   .services-container {
       display: grid;
       grid-template-columns: repeat(4, 1fr);
       gap: 30px;
       margin-top: 50px;
   }


   .service-box {
       background: #faf8f9;
       border-radius: 60px;

       padding-top: 40px;
       padding-bottom: 40px;
       padding-left: 0px;
       padding-right: 0px;
       box-shadow: 5px 6px 7px 0px rgba(117.3, 117.3, 117.3, .36);
       transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
       position: relative;
       overflow: hidden;
   }

   .service-box::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       height: 3px;
       background: linear-gradient(90deg, #8B1538, #B91C3C);
       transform: scaleX(0);
       transition: transform 0.3s ease;
   }

   .service-box:hover::before {
       transform: scaleX(1);
   }

   .service-box:hover {
       transform: translateY(-8px);
       box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
   }


   .icon-wrapper {
       display: flex;
       justify-content: center;
       margin-bottom: 25px;
   }


   .service-icon {
       width: 100px;
       height: 80px;
       transition: transform 0.3s ease;
   }

   .service-box:hover .service-icon {
       transform: scale(1.1);
   }


   .service-heading {
       font-size: 20px;
       font-weight: 700;
       color: #8B1538;
       text-align: center;
       margin-bottom: 30px;
       line-height: 30px;
       min-height: 60px;
       display: flex;
       align-items: center;
       justify-content: center;
   }


   .service-menu {
       list-style: none;
   }


   .menu-item {
       display: flex;
       align-items: center;
       text-align: center;
       justify-content: center;
       margin-bottom: 12px;
       transition: all 0.2s ease;
   }

   .menu-item:hover {
       transform: translateX(5px);
   }

   .menu-item:hover .item-label {
       background-color: #8B1538;
       color: #FFFFFF;
       border-radius: 25px 25px 25px 25px;
       padding: 0 14px;
       cursor: pointer;
   }


   .bullet {
       color: #8B1538;
       font-weight: bold;
       margin-right: 5px;
       /* flex-shrink: 0; */
       font-size: 2.2rem;
       line-height: 1;
   }

   .menu-item:hover .bullet {
       color: #FFFFFF;
   }

   .item-label {
       color: #666;
       font-size: 16px;
       line-height: 1.4;
       transition: color 0.2s ease;
   }


   @media (max-width: 1200px) {
       .digital-services {
           padding: 60px 20px;
       }

       .services-container {
           gap: 25px;
       }
   }


   @media (max-width: 1024px) {
       .services-container {
           grid-template-columns: repeat(2, 1fr);
           gap: 30px;
       }

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

       .section-description {
           font-size: 1rem;
       }
   }


   @media (max-width: 768px) {
       .digital-services {
           padding: 40px 15px;
       }

       .content-header {
           margin-bottom: 40px;
       }

       .section-title {
           font-size: 1.9rem;
           margin-bottom: 20px;
       }

       .services-container {
           grid-template-columns: 1fr;
           gap: 25px;
           margin-top: 30px;
       }

       .service-box {
           padding: 30px 25px;
       }

       .service-heading {
           font-size: 1.15rem;
           min-height: auto;
           margin-bottom: 25px;
       }
   }


   @media (max-width: 480px) {
       .digital-services {
           padding: 30px 15px;
       }

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

       .section-description {
           font-size: 0.95rem;
           line-height: 1.6;
       }

       .service-box {
           padding: 25px 20px;
       }

       .service-icon {
           width: 50px;
           height: 50px;
       }

       .service-heading {
           font-size: 1.1rem;
           margin-bottom: 20px;
       }

       .menu-item {
           margin-bottom: 10px;
       }

       .item-label {
           font-size: 0.9rem;
       }
   }


   @keyframes slideUp {
       from {
           opacity: 0;
           transform: translateY(30px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   .service-box {
       animation: slideUp 0.6s ease forwards;
   }


   .service-box:nth-child(1) {
       animation-delay: 0.1s;
   }

   .service-box:nth-child(2) {
       animation-delay: 0.2s;
   }

   .service-box:nth-child(3) {
       animation-delay: 0.3s;
   }

   .service-box:nth-child(4) {
       animation-delay: 0.4s;
   }


   .section-title {
       animation: slideUp 0.8s ease forwards;
   }

   .section-description {
       animation: slideUp 0.8s ease 0.2s both;
   }


   @media (prefers-color-scheme: dark) {
       body {
           background-color: #1a1a1a;
           color: #e0e0e0;
       }

       .service-box {
           background: #2d2d2d;
           box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
       }

       .section-description {
           color: #b0b0b0;
       }

       .item-label {
           color: #b0b0b0;
       }
   }


   @media print {
       .digital-services {
           padding: 20px 0;
       }

       .services-container {
           grid-template-columns: repeat(2, 1fr);
           gap: 20px;
       }

       .service-box {
           box-shadow: none;
           border: 1px solid #ddd;
           break-inside: avoid;
           animation: none;
       }

       .service-icon {
           animation: none;
       }
   }