        .content {
            margin-left: 280px;
            padding: 25px;
            width: calc(100% - 240px);
            height: 100vh;
        }
        
        .content::-webkit-scrollbar {
            width: 0;
            background: transparent;
        }
        
        .video-player-page {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .video-header {
            margin-bottom: 30px;
        }
        

        .video-title {
            font-size: 28px;
            color: #8B5A2B;
            margin-bottom: 15px;
            font-weight: normal;
            line-height: 1.3;
        }
        
        .video-meta {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #a69b8a;
            margin-bottom: 20px;
        }
        
        .video-views {
            margin-right: 20px;
        }
        
        .video-date {
            margin-right: 20px;
        }
        
        .episode-duration.loading {
            color: #ccc;
            font-style: italic;
        }
        
        .video-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            background-color: #000;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .video-player {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .iframe-player {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .video-info {
            display: flex;
            margin-bottom: 40px;
            gap: 30px;
        }
        
        .video-author {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
        }
        
        .video-author img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .video-description {
            flex-grow: 1;
        }
        
        .author-name {
            font-size: 18px;
            color: #8B5A2B;
            margin-bottom: 10px;
        }
        
        .video-text {
            color: #5a4a3a;
            line-height: 1.8;
            position: relative;
            max-height: 3.6em;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .video-text.expanded {
            max-height: none;
        }
        
        
        .video-thumbnail img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s;
        }
        
        .video-card:hover .video-thumbnail img {
            transform: scale(1.05);
        }
        .read-more-btn {
            display: inline-block;
            color: #8B5A2B;
            cursor: pointer;
            margin-top: 10px;
            font-size: 14px;
        }
        
        .read-more-btn:hover {
            text-decoration: underline;
        }
        
        .episodes-section {
            margin-bottom: 40px;
            display: none; /* 默认隐藏选集区域 */
        }
        
        .episodes-title {
            font-size: 20px;
            color: #8B5A2B;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .episode-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .episode-item {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .episode-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .episode-item.current {
            border: 2px solid #8B5A2B;
        }
        
        .episode-thumbnail {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            overflow: hidden;
        }
        
        .episode-thumbnail img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s;
        }
        
        .episode-item:hover .episode-thumbnail img {
            transform: scale(1.05);
        }
        
        .episode-number {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
        }
        
        .episode-info {
            padding: 15px;
        }
        
        .episode-title {
            font-size: 16px;
            margin-bottom: 5px;
            color: #5a4a3a;
            font-weight: bold;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .episode-duration {
            font-size: 13px;
            color: #a69b8a;
        }
        
        .related-videos {
            margin-bottom: 40px;
        }
        
        .related-title {
            font-size: 22px;
            color: #8B5A2B;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .related-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .related-item {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }
        
        .related-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .related-thumbnail {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            overflow: hidden;
        }
        
        .related-thumbnail img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s;
        }
        
        .related-item:hover .related-thumbnail img {
            transform: scale(1.05);
        }
        
        .related-info {
            padding: 15px;
        }
        
        .related-item-title {
            font-size: 16px;
            margin-bottom: 8px;
            color: #5a4a3a;
            font-weight: bold;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .related-item-meta {
            font-size: 13px;
            color: #999;
        }
        
        
        /* 新增的备用地址切换按钮样式 */
        .source-switcher {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 10;
            background-color: rgba(0, 0, 0, 0.7);
            border-radius: 4px;
            padding: 5px;
            display: flex;
        }
        
        .source-btn {
            background-color: #5a4a3a;
            color: white;
            border: none;
            padding: 5px 10px;
            margin: 0 2px;
            border-radius: 3px;
            cursor: pointer;
            font-size: 12px;
            transition: all 0.3s;
        }
        
        .source-btn:hover {
            background-color: #5a4a3a;
        }
        
        .source-btn.active {
            background-color: #8B5A2B;
            font-weight: bold;
        }
        
        .error-message {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            background-color: rgba(0, 0, 0, 0.7);
            padding: 10px 20px;
            border-radius: 5px;
            display: none;
            z-index: 10;
        }
        
.watch-button {
    background-color: #8B5A2B;
    color: white;
    border: none;
    padding: 6px 10px;
    font-size: 14px;
    border-radius: 8px;
    margin-right: 10px;
    margin-left: auto;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}
        /* 自动播放下一集提示 */
        .next-episode-notice {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            display: none;
            z-index: 10;
            cursor: pointer;
        }
        
        .next-episode-notice.show {
            display: block;
            animation: fadeIn 0.3s;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
.scripture-intro {
    background-color: #fff;
    border-radius: 4px;
    margin-top:40px;
    padding: 15px;
    margin-bottom: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.scripture-intro h2 {
    color: #333;
    font-size: 18px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: normal;
}

.scripture-intro h2 i {
    color: #8B5A2B;
    margin-right: 8px;
}

.intro-content {
    color: #555;
    line-height: 2.8;
    white-space: pre-line;
}.intro-content img {
    width: 100%;
}