

.carousel-container {
      width: 100%;
    }

    .carousel-window {
      width: 100%;
      overflow: hidden;
      cursor: grab;
    }
    .carousel-window:active {
      cursor: grabbing;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
      will-change: transform;
      user-select: none;
      -webkit-user-select: none;
    }

    /* 图片基础样式 - 宽度通过媒体查询控制 */
    .carousel-slide {
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
    }

    /* 响应式布局：3.5/2.5/1.5规则 */
    /* 大屏幕：≥1024px 显示3.5张 (每张宽度 ≈ 28.57%) */
    @media screen and (min-width: 1024px) {
      .carousel-slide {
        width: calc(100% / 3);  /* 桌面端显示3张 */
      }
    }
    
    /* 中等屏幕：768px - 1023px 显示2.5张 (每张宽度 40%) */
    @media screen and (min-width: 768px) and (max-width: 1023px) {
      .carousel-slide {
        width: calc(100% / 2);  /* 显示2张 */
      }
    }
    
    /* 手机：<768px 显示1.5张 (每张宽度 ≈ 66.67%) */
    @media screen and (max-width: 767px) {
      .carousel-slide {
        width: calc(100% / 1);  /* 显示1张 */
      }
    }

    /* 控制栏 */
    .control-panel {
      display: flex;
      justify-content: space-between;
      align-items: center;
	  position:absolute;
	  left:0;
	  bottom:0;
	  z-index:1;
    }

    .nav-buttons {
      display: flex;
      gap: 0.5rem;
	  margin-right:8.33vw;
    }

    .nav-btn{
      background: var(---Gray-6, #F2F2F2);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.2);
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      font-size: 1.0rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #999;
      cursor: pointer;
      transition: all 0.15s;
      line-height: 1;
      user-select: none;
	  font-family:"宋体";
	  font-weight:bold;
    }
	.nav-btn:hover{
      background: var(--d-7232-c, #D7232C);
	  color:#FFF;
	 }
    @media (max-width: 420px) {
      .nav-btn {
        width: 2.0rem;
        height: 2.0rem;
        font-size:1rem;
      }
    }
    .nav-btn:active {
      background: var(--d-7232-c, #D7232C);
	  color:#FFF;
    }

    .index-indicator {
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      padding: 8px 18px;
      border-radius: 40px;
      color: white;
      font-size: 1.1rem;
      font-weight: 500;
      border: 1px solid rgba(255,215,0,0.5);
      letter-spacing: 0.5px;
    }

    .extra-hint {
      color: #b9c6d4;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(0,0,0,0.3);
      padding: 6px 14px;
      border-radius: 40px;
      backdrop-filter: blur(2px);
      border: 0.5px solid #3e4a5c;
    }

    /* 自动播放控制按钮 */
    .auto-play-btn {
      background: rgba(30, 40, 55, 0.9);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.2);
      width: 40px;
      height: 40px;
      border-radius: 20px;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      cursor: pointer;
      margin-left: 10px;
    }

