* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
}

header {
    padding: 20px 5%;
    background-color: #fff;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: center;
}

.company-logo {
    height: 40px;
}

.app-intro {
    background-color: #000;
    color: #fff;
    padding: 60px 5%;
}

.app-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.app-info {
    flex: 1;
}

.app-logo {
    width: 60px;
    margin-bottom: 20px;
}

.app-info h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.app-info p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

.app-preview {
    flex: 1;
    text-align: center;
}

.phone-mockup {
    max-width: 300px;
    height: auto;
}

section {
    padding: 40px 5%;
}

section h2 {
    text-align: center;
    color: #333;
    font-size: 24px;
    margin-bottom: 30px;
}

section h2::before,
section h2::after {
    content: "";
    height: 1px;
    width: 50px;
    background-color: #4A90E2;
    display: block;
}

/* 修改热门微短剧标题的样式 */
.new-shows h2,.hot-shows h2 {
    color: #4A90E2;  /* 蓝色文字 */
    font-weight: normal;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.shows-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.shows-grid  h2::before,
.shows-grid  h2::after {
    content: "";
    height: 1px;
    width: 50px;
    background-color: #4A90E2;
    display: block;
}

.show-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


.hot-shows .shows-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.hot-shows .show-card img {
    width: 100%;
    height: 750px;
    object-fit: cover;
}

.show-card:hover {
    transform: translateY(-5px);
}

.show-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.show-card h3 {
    padding: 15px;
    text-align: center;
    font-size: 22px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f5f5f5;
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .app-content {
        flex-direction: column;
    }

    .app-info, .app-preview {
        width: 100%;
    }

    .show-card img {
        height: 200px;
    }
} 

@media (max-width: 768px) {
    .title {
        font-size: 20px;
    }
    .hot-shows .shows-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    .hot-shows .show-card img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }
    .show-card h3 {
        padding: 15px;
        text-align: center;
        font-size: 18px;
    }
    
} 

/* 添加视频弹窗样式 */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.modal-content {
    position: absolute;
    width: 90%;
    max-width: 960px;
    margin: 40px auto;
    background: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close-btn {
    position: absolute;
    right: -40px;
    top: -40px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
}

#videoPlayer {
    width: 100%;
    background: #000;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px auto;
    }
    
    .close-btn {
        right: 0;
        top: -40px;
    }
} 

/* 视频播放器容器样式 */
.video-js {
    width: 100%;
    height: 0;
    padding-top: 56.25%; /* 16:9 比例 */
}

/* 自定义 video.js 主题色 */
.video-js .vjs-big-play-button {
    background-color: rgba(74, 144, 226, 0.8);
    border-color: #4A90E2;
}

.video-js .vjs-play-progress,
.video-js .vjs-volume-level {
    background-color: #4A90E2;
}

.video-js .vjs-control-bar {
    background-color: rgba(0, 0, 0, 0.7);
}

.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
    visibility: hidden;
    opacity: 0;
    transition: visibility 1s, opacity 1s;
}