

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

.content-wrapper {
    width: 100%;
    max-width: 1600px;
    padding: 80px 160px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}


.subtitle {
    font-size: 20px;
    color: #999999;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1.1px;
}

/* 描述文本 */
.description {
    min-height: 84px;
}

.description p {
    font-size: 14px;
    color: #333333;
    line-height: 2;
    text-align: justify;
}

/* 轮播区域 */
.carousel-section {
    position: relative;
    width: 100%;
    height: 867px;
	float:left;
	margin-top:3.75rem;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: -20px;
    width: 100%;
    height: 700px;
    overflow: visible;
}

.carousel-track {
    display: flex;
    height: 100%;
   gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    flex-shrink: 0;
    width: 85%;
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    pointer-events: none;
}

/* 底部信息和控制 */
.carousel-info {
    position: absolute;
    top: 760px;
    left: 0;
    width: 100%;
    min-height: 107px;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 768px;
}

.info-title {
    font-size: 24px;
    color: #333333;
    font-weight: 500;
    text-transform: capitalize;
}

.info-description {
    font-size: 16px;
    color: #999999;
    line-height: 1.5;
}

.divider {
    position: absolute;
    top: 107px;
    left: 0;
    right: 0;
    height: 1px;
    background: #E0E0E0;
}

.controls {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 10px;
}

.control-btn {
    width: 48px;
    height: 48px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.control-btn-prev {
    background: #0051BB;
}

.control-btn-prev:hover {
    background: #003d8f;
}

.control-btn-next {
    background: #F2F2F2;
}

.control-btn-next:hover {
    background: #E0E0E0;
}
.control-btn.control-btn-next svg{
    transform: rotate(360deg) scaleY(-1);
}
.control-btn svg {
    transform: rotate(180deg) scaleY(-1);
}

.control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .content-wrapper {
        padding: 60px 80px;
        gap: 40px;
    }
    
    .title {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .description p {
        font-size: 13px;
    }
    
    .carousel-section {
        height: 667px;
    }
    
    .carousel-container {
        height: 500px;
    }
    
    .carousel-item {
        width: 90%;
    }
    
    .carousel-info {
        top: 560px;
    }
    
    .info-title {
        font-size: 20px;
    }
    
    .info-description {
        font-size: 14px;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 40px;
        gap: 30px;
    }
    
    .title {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .description p {
        font-size: 12px;
    }
    
    .carousel-section {
        height: 567px;
    }
    
    .carousel-container {
        height: 400px;
    }
    
    .carousel-item {
        width: 100%;
    }
    
    .carousel-info {
        top: 460px;
    }
    
    .info-content {
        max-width: calc(100% - 120px);
    }
    
    .info-title {
        font-size: 18px;
    }
    
    .info-description {
        font-size: 12px;
    }
}