 .carousel-container {
      width: 760px;
      position: relative;
      height: 372px;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      margin-top: 10px;
    }
    
    .carousel-track {
      display: flex;
      height: 100%;
      transition: transform 0.5s ease-in-out;
    }
    
    .carousel-item {
      min-width: 100%;
      height: 100%;
      position: relative;
    }
    
    .carousel-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      cursor: pointer;
    }
    
    .carousel-indicators {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }
    
    .indicator {
      width: 30px;
      height: 2px;
      background-color: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .indicator.active {
      background-color: #fff;
      transform: scale(1.2);
    }
    
    .carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
    }
    
    .nav-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: rgba(0, 0, 0, 0.3);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 20px;
      transition: all 0.3s ease;
    }
    
    .nav-btn:hover {
      background-color: rgba(0, 0, 0, 0.6);
    }
    
    .loading {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(0, 0, 0, 0.1);
      color: #666;
      font-size: 18px;
    }
    
    .dot {
      display: inline-block;
      width: 5px;
      overflow: hidden;
      vertical-align: bottom;
      animation: dotPulse 1.5s infinite;
    }
    
    @keyframes dotPulse {
      0% { width: 5px; }
      50% { width: 15px; }
      100% { width: 5px; }
    }
    
    h1 {
      text-align: center;
      margin-bottom: 30px;
      color: #333;
    }
    
    .description {
      max-width: 800px;
      margin: 30px auto;
      padding: 20px;
      background: white;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .description h2 {
      color: #409EFF;
      margin-bottom: 15px;
    }
    
    .description p {
      line-height: 1.6;
      color: #555;
      margin-bottom: 15px;
    }