* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}


.puls-container {
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* 左侧导航栏样式 */
.puls-sidebar {
    width: 140px;
    background: linear-gradient(to bottom, #05509F, #0d2b57);
    color: #fff;
    padding: 15px 0;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.puls-logo {
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: Avenir, Helvetica Neue, Arial, Helvetica, sans-serif;
}

.logo-title {
    font-size: 20px;
    line-height: 1.2;
    display: flex;
    gap: 4px;
    margin-bottom: 2px;
}

.logo-part1 {
    color: #fff;
    background: linear-gradient(135deg, #164489, #207eef);
    padding: 0 5px;
    border-radius: 4px;
}

.logo-part2 {
    color: #fff;
    background: linear-gradient(135deg, #207eef, #164489);
    padding: 0 5px;
    border-radius: 4px;
}

.puls-nav-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.puls-nav-item i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.puls-nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.puls-nav-item.active {
    background-color: rgba(22, 68, 137, 0.6);
    color: #fff;
}

.puls-nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #fff;
}

/* 主内容区域样式 */
.puls-main-content {
    flex: 1;
    margin-left: 140px;
    padding: 10px;
}

.puls-header {
    position: fixed;
    top: 0;
    left: 140px;
    right: 0;
    height: 60px;
    background-color: rgba(255, 255, 255, 0);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: none;
    z-index: 99;
    transition: all 0.3s ease;
}

.puls-header.scrolled {
    background-color: #05509F;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

/* 搜索框相关样式 */
.puls-search-container {
    position: relative;
    max-width: 600px;
}

.puls-search-box {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 2px 4px;
    width: 400px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.puls-search-box.focused {
    background-color: #fff;
    border-color: #164489;
    box-shadow: 0 0 0 2px rgba(22, 68, 137, 0.1);
}

.puls-search-box i {
    color: #999;
    margin-right: 10px;
    font-size: 16px;
}

.puls-search-input {
    flex-grow: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    padding: 5px 0;
    color: #333;
}

.puls-search-input::placeholder {
    color: #999;
}

.puls-search-button {
    background-color: #164489;
    color: white;
    border: none;
    padding: 6px 6px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 10px;
    font-size: 13px;
}

.puls-search-button:hover {
    background-color: #0d2b57;
}

/* 搜索建议框样式 */
.puls-suggestions-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 8px;
    margin-top: 10px;
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    border: 1px solid #eee;
}

.puls-suggestions-box.active {
    display: block;
}

.puls-suggestion-header {
    display: flex;
    justify-content: space-between;
    padding: 0 20px 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    font-size: 13px;
    color: #999;
}

.puls-suggestion-header span {
    font-weight: 500;
}

.puls-suggestion-item {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.puls-suggestion-item:hover {
    background-color: #f5f5f5;
}

.puls-suggestion-item.active {
    background-color: rgba(22, 68, 137, 0.05);
}

.puls-suggestion-icon {
    width: 24px;
    margin-right: 12px;
    text-align: center;
    color: #999;
}

.puls-suggestion-content {
    flex-grow: 1;
}

.puls-suggestion-title {
    font-weight: 500;
    margin-bottom: 3px;
    color: #333;
}

.puls-suggestion-desc {
    font-size: 12px;
    color: #999;
}

.puls-suggestion-tag {
    background-color: #164489;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 10px;
    white-space: nowrap;
}

.puls-divider {
    height: 1px;
    background-color: #eee;
    margin: 8px 0;
}

.puls-user-actions {
    display: flex;
    align-items: center;
    position: relative;
}

.puls-login-btn,
.puls-vip-btn {
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.puls-login-btn {
    background-color: #164489;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.puls-login-btn:hover {
    background-color: #0d2b57;
    transform: scale(1.05);
}

.puls-login-btn i {
    font-size: 14px;
}

.puls-vip-btn {
    background-color: #164489;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    margin-left: 10px;
}

.puls-vip-btn:hover {
    background-color: #0d2b57;
    transform: scale(1.05);
}

/* 登录浮层样式 */
.puls-login-layer {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 25px;
    margin-top: 15px;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.puls-login-layer::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 30px;
    width: 16px;
    height: 16px;
    background-color: white;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.05);
}

.puls-user-actions:hover .puls-login-layer {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.puls-login-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.puls-login-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.puls-login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.puls-login-form input[type="text"],
.puls-login-form input[type="password"] {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.puls-login-form input[type="text"]:focus,
.puls-login-form input[type="password"]:focus {
    border-color: #164489;
    box-shadow: 0 0 0 2px rgba(22, 68, 137, 0.1);
}

.puls-login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.puls-login-options .remember {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
}

.puls-login-options .forgot {
    color: #164489;
    text-decoration: none;
}

.puls-login-options .forgot:hover {
    text-decoration: underline;
}

.puls-submit-btn {
    background-color: #164489;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 5px;
}

.puls-submit-btn:hover {
    background-color: #0d2b57;
}

.puls-register {
    margin-top: 15px;
    font-size: 13px;
    text-align: center;
    color: #666;
}

.puls-register a {
    color: #164489;
    text-decoration: none;
    font-weight: 500;
}

.puls-register a:hover {
    text-decoration: underline;
}


/* 内容分类样式 */
.puls-categories {
    display: flex;
    margin-bottom: 30px;
    background-color: white;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.puls-category {
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.puls-category:hover {
    background-color: #f5f5f5;
}

.puls-category.active {
    background-color: #164489;
    color: white;
}

/* 视频推荐区域样式 */
.puls-section-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #164489;
}

.puls-video-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.puls-video-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.puls-video-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.puls-video-link:hover .puls-video-card {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.puls-video-thumb {
    height: 180px;
    background-color: #eee;
    background-image: url('https://via.placeholder.com/300x180');
    background-size: cover;
    background-position: center;
    position: relative;
}

.puls-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: rgba(22, 68, 137, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
}

.puls-video-card:hover .puls-play-icon {
    opacity: 1;
}

.puls-video-info {
    padding: 12px;
}

.puls-video-title {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.3);
    padding: 8px 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.puls-video-stats {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 12px;
}

/* 右侧快捷入口样式 */
.puls-quick-access {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 90;
}

.puls-quick-btn {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
}

.puls-quick-btn:hover {
    background-color: #164489;
    color: white;
    transform: scale(1.1);
}

/* 左侧菜单页脚样式 */
.puls-sidebar .puls-footer {
    padding: 15px 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 140px;
    background: #0d2b57;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 10px;
    line-height: 1.4;
}

.puls-sidebar .puls-footer-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.puls-sidebar .copyright {
    color: rgba(255, 255, 255, 0.6);
}

.puls-sidebar .copyright a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 3px;
}

.puls-sidebar .copyright a:hover {
    text-decoration: underline;
}

.puls-sidebar .copyright img {
    vertical-align: middle;
    margin-right: 3px;
}

.puls-sidebar .version {
    display: block;
    margin-top: 5px;
    font-size: 9px;
}

/* 开发中提示层样式 */
.puls-dev-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.puls-dev-overlay.active {
    opacity: 1;
    visibility: visible;
}

.puls-dev-content {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.puls-dev-overlay.active .puls-dev-content {
    transform: scale(1);
}

.puls-dev-icon {
    font-size: 48px;
    color: #164489;
    margin-bottom: 20px;
}

.puls-dev-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.puls-dev-message {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.puls-dev-close {
    background-color: #164489;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.puls-dev-close:hover {
    background-color: #0d2b57;
    transform: scale(1.05);
}



/* Swiper 容器样式 */
.puls-swiper-container {
    height: 400px;
    /* background-color: red; */
    margin-left: 140px;
}

.swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* 轮播图内容布局 */
.carousel-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-content {
    display: flex;
    height: 100%;
    align-items: center;
}

/* 左侧信息面板 - 半透明黑色背景与企业蓝文字 */
.info-panel {
    flex: 0 0 32%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #164489;
}

.movie-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #207eef;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.movie-title-en {
    font-size: 1rem;
    color: #4a9eff;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ranking {
    display: inline-block;
    background: linear-gradient(45deg, #164489, #207eef);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tag {
    background: rgba(22, 68, 137, 0.2);
    border: 1px solid #164489;
    color: #207eef;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.description {
    color: #7bb3f0;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
    /* 添加多行截断效果 */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #164489, #207eef);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 126, 239, 0.4);
}

/* 右侧主视觉内容区域 */
.image-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
}

.poster {
    width: 250px;
    height: 350px;
    border-radius: 15px;
    margin-right: 70px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7),
        0 5px 15px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.poster:hover {
    transform: scale(1.05);
}

/* 轮播图内容布局 */
.carousel-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-content {
    display: flex;
    height: 100%;
    align-items: center;
}

/* 左侧信息面板 - 半透明黑色背景与金色文字 */
.info-panel {
    flex: 0 0 32%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 120px 35px 0px 120px;
    height: 100%;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #164489;
}

.movie-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #207eef;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.movie-title-en {
    font-size: 1rem;
    color: #4a9eff;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ranking {
    display: inline-block;
    background: linear-gradient(45deg, #164489, #207eef);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tag {
    background: rgba(22, 68, 137, 0.2);
    border: 1px solid #164489;
    color: #207eef;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.description {
    color: #7bb3f0;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #164489, #207eef);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 126, 239, 0.4);
}

/* 右侧主视觉内容区域 */
.image-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.poster-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.poster {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.poster-link:hover .poster {
    transform: scale(1.05);
}

.poster:hover {
    transform: scale(1.05);
}

.poster::before {
    content: "\f518";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: #fff;
    background: rgba(22, 68, 137, 0.8);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.poster:hover::before {
    opacity: 1;
}

.poster::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.poster:hover::after {
    opacity: 1;
}

/* 响应式设计 */
@media (min-width: 1600px) {
    .puls-video-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 25px;
    }

    .puls-video-thumb {
        height: 200px;
    }

    .puls-main-content {
        padding: 12px 16px;
    }

    .puls-search-box {
        width: 450px;
    }

    /* 轮播图响应式 - 超大屏 */
    .puls-swiper-container {
        height: 450px;
    }

    .info-panel {
        padding: 60px 40px 0px 140px;
    }

    .movie-title {
        font-size: 2.2rem;
    }

    .poster {
        width: 100%;
        height: 400px;
    }
}

@media (max-width: 1599px) {
    .puls-video-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 22px;
    }

    .puls-video-thumb {
        height: 190px;
    }


    .puls-search-box {
        width: 400px;
    }
}

@media (max-width: 1384px) {
    .puls-video-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .puls-video-thumb {
        height: 175px;
    }


    .puls-search-box {
        width: 350px;
    }
}

@media (max-width: 1180px) {
    .puls-video-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .puls-video-thumb {
        height: 160px;
    }

    .puls-search-box {
        width: 300px;
    }
}

@media (max-width: 992px) {
    .puls-sidebar {
        width: 70px;
    }

    .puls-sidebar .puls-logo {
        justify-content: center;
        padding: 0 0 20px;
    }

    .puls-sidebar .puls-logo i {
        margin-right: 0;
    }

    .puls-sidebar .puls-nav-item span,
    .puls-sidebar .puls-logo span {
        display: none;
    }

    .puls-sidebar .puls-nav-item {
        justify-content: center;
        padding: 12px 0;
    }

    .puls-sidebar .puls-nav-item i {
        margin-right: 0;
    }

    .puls-main-content {
        margin-left: 70px;
        padding: 10px;
    }

    .puls-header {
        left: 70px;
    }

    .puls-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .puls-video-thumb {
        height: 150px;
    }

    .puls-search-box {
        width: 250px;
    }

    .logo-img {
        margin-left: 14px;
    }

    .puls-sidebar .puls-footer {
        width: 70px;
        overflow: hidden;
    }

    /* 轮播图响应式 - 中等屏幕 */
    .puls-swiper-container {
        margin-left: 70px;
        height: 300px;
    }

    .slide-content {
        flex-direction: column;
        padding: 15px;
    }

    .info-panel {
        flex: none;
        padding: 20px;
        text-align: center;
        background: rgba(0, 0, 0, 0.8);
        order: 2;
    }

    .image-panel {
        flex: none;
        padding: 15px;
        order: 1;
    }

    .poster {
        width: 180px;
        height: 240px;
        margin: 0 auto;
    }

    .movie-title {
        font-size: 1.8rem;
    }

    .movie-title-en {
        font-size: 0.9rem;
    }

    .description {
        -webkit-line-clamp: 2;
        font-size: 0.9rem;
    }

    .tags {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .puls-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .puls-video-thumb {
        height: 140px;
    }

    /* 轮播图响应式 - 平板屏幕 */
    .puls-swiper-container {
        height: 280px;
    }

    .info-panel {
        padding: 15px;
    }

    .movie-title {
        font-size: 1.5rem;
    }

    .movie-title-en {
        font-size: 0.8rem;
    }

    .poster {
        width: 150px;
        height: 200px;
    }

    .poster::before {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .ranking {
        font-size: 0.8rem;
        padding: 4px 12px;
    }

    .tag {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

@media (max-width: 576px) {
    .puls-video-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .puls-video-thumb {
        height: 160px;
    }

    .puls-search-button {
        font-size: 12px;
    }

    .puls-quick-access {
        display: none;
    }

    /* 轮播图响应式 - 手机屏幕 */
    .puls-swiper-container {
        height: 250px;
        margin-left: 70px;
    }

    .slide-content {
        padding: 10px;
    }

    .info-panel {
        padding: 10px;
    }

    .image-panel {
        padding: 10px;
    }

    .movie-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .movie-title-en {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }

    .poster {
        width: 120px;
        height: 160px;
    }

    .poster::before {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .ranking {
        font-size: 0.7rem;
        padding: 3px 10px;
        margin-bottom: 15px;
    }

    .tags {
        gap: 8px;
        margin-bottom: 15px;
    }

    .tag {
        font-size: 0.6rem;
        padding: 3px 8px;
    }

    .description {
        font-size: 0.8rem;
        margin-bottom: 20px;
        -webkit-line-clamp: 2;
    }

    .cta-button {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

/* 超小屏幕优化 */
@media (max-width: 480px) {
    .puls-swiper-container {
        height: 220px;
        margin-left: 0;
    }

    .puls-main-content {
        margin-left: 0;
    }

    .puls-header {
        left: 0;
    }

    .puls-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .puls-sidebar.active {
        transform: translateX(0);
    }

    .slide-content {
        flex-direction: column;
        padding: 8px;
    }

    .info-panel {
        order: 2;
        padding: 8px;
        text-align: center;
    }

    .image-panel {
        order: 1;
        padding: 8px;
    }

    .movie-title {
        font-size: 1.1rem;
    }

    .poster {
        width: 100px;
        height: 140px;
    }

    .poster::before {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}