.featured-content {
    width: 100%;
    margin-top: 160px;
    margin-bottom: 160px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-content-section {
    width: 967px;
    height: 333px;
    padding-left: 100px;
    background: #9E0D30;
    display: flex;
    flex-direction: row;
    position: relative;
    margin-bottom: 20px;
}

.main-image-container {
    width: 557px;
    height: 357px;
    border-radius: 16px 16px 16px 16px;
    position: absolute;
    top: -70px;
    left: -105px;
    z-index: 1;
}

.main-image-container img {
    width: 100%;
    height: 100%;
}

.info-panel {
    position: absolute;
    top: 0;
    right: 60px;
    width: 40%;
    height: 100%;
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.info-panel h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.dotted-line {
    height: 1px;
    background-image: repeating-linear-gradient(to right,
            #ccc 0 5px,
            transparent 5px 10px);
    margin: 20px 0;
    position: relative;
}

.dotted-line::before,
.dotted-line::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #ccc;
}

.dotted-line::before {
    left: 0;
}

.dotted-line::after {
    right: 0;
}

.info-panel p {
    text-indent: 2em;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.play-button {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.play-button-container:hover .video-poster {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(158, 13, 48, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-play-btn:hover {
    background: rgba(158, 13, 48, 1);
    transform: translate(-50%, -50%) scale(1.1);
}


.play-icon {
    width: 100%;
    height: 100%;
    border: none;
    cursor: pointer;
    background: url('../images/playicon.png') no-repeat center center;
    background-size: 100% 100%;
}



.image-scroll-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    margin-right: 105px;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.scroll-arrow:hover {
    transform: scale(1.1);
}

.scroll-left {
    background: url('../images/arrow-left.png') no-repeat center center;
    background-size: 100% 100%;
}

.scroll-right {
    background: url('../images/arrow-right.png') no-repeat center center;
    background-size: 100% 100%;
}

.scroll-images {
    width: 985px;
    height: 153px;
    background: #EBEBEB;
    border-radius: 8px 8px 8px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    flex: 1;
    padding: 5px 0;
    scroll-behavior: smooth;
}

.scroll-images::-webkit-scrollbar {
    height: 6px;
}

.scroll-images::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.scroll-images::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.scroll-images::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.scroll-image-item {
    flex-shrink: 0;
    width: 222px;
    height: 120px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.scroll-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.scroll-image:hover {
    transform: scale(1.05);
}

/* 视频弹窗 */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.video-modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* 弹窗中的视频播放器 */
.video-player-container {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

.video-player {
    width: 100%;
    height: 100%;
    display: block;
}

