/*
模板名称：动漫卡通风格影视模板
模板简介：本模板采用动漫卡通风格设计，适合影视网站使用。具有宽屏自适应多终端的响应式布局，符合HTML5语义化标准和SEO规则。模板使用了现代CSS技术，包括Flexbox和Grid布局，实现了自由排版。风格特点：色彩鲜艳、圆角设计、卡通元素丰富、视觉效果活泼。兼容性：支持主流浏览器，包括Chrome、Firefox、Safari、Edge等。技术栈：HTML5、CSS3、JavaScript、jQuery。使用方法：将模板文件复制到苹果CMS模板目录，在后台选择使用该模板。
*/

/* CSS重置代码 */
*{padding:0px;margin:0px;box-sizing:border-box;}
h1,h2,h3,h4,h5{font-weight:normal;}
ul,ol,dl,li{list-style:none;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;*font-size:100%;}
input{outline:none;background:none;}
input::-ms-clear{display:none;}
input::-ms-reveal{display:none;}
input[type=text]::-ms-clear{display:none;}
textarea{resize:none;}
table{font-size:inherit;border-collapse:collapse;border-spacing:0;}
img,input,button{border:0px;}:focus{outline:0;}
a:link,a:visited{text-decoration:none;}

/* 全局样式 */
body {
    font-family: 'Arial', 'Microsoft YaHei', sans-serif;
    background-color: #f8f0ff;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 视频播放页样式 */
.player-section {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.player-container {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.copyright-notice {
    padding: 50px 20px;
    text-align: center;
    color: #fff;
}

.copyright-notice h3 {
    font-size: 18px;
    font-weight: bold;
}

/* 头部样式 */
.header {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    padding: 30px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
}

/* LOGO和导航主容器 */
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: inline-block;
    flex-shrink: 0;
}

.logo img {
    max-height: 60px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* 导航样式 */
.nav {
    position: relative;
    z-index: 9;
}

.nav .nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nav .nav-list li {
    position: relative;
}

.nav .nav-list a {
    display: block;
    padding: 10px 20px;
    background: rgba(255,255,255,0.9);
    color: #333;
    border-radius: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav .nav-list a:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.nav .nav-list a.active ,.nav .nav-list a:hover{
    background: #ff6b6b;
    color: #fff;
}

/* 二级导航 */
.nav li .sub-nav {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-radius: 10px;
    overflow: hidden;
    display: none;
}

.nav li:hover > .sub-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
    width: 100%;
    text-align: center;
}

.nav li .sub-nav li {
    width: auto;
}

.nav li .sub-nav a {
    width: 100%;
    font-weight: normal;
    padding: 10px;
    border-radius: 0;
    border-bottom: 1px solid #f0f0f0;
}
.mobile-buttons{
    display: none;
}

/* 搜索框样式 */
.search-box {
    position: relative;
    z-index: 1;
    margin: 40px 0px;
    display: flex;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.search-box select {
    padding: 10px;
    border: 2px solid #fff;
    border-radius: 20px 0 0 20px;
    background: rgba(255,255,255,0.9);
    font-weight: bold;
}

.search-box input[type="text"] {
    flex: 1;
    padding: 10px;
    border: 2px solid #fff;
    border-left: none;
    border-right: none;
    background: rgba(255,255,255,0.9);
}

.search-box input[type="submit"] {
    padding: 10px 20px;
    background: #ff6b6b;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 0 20px 20px 0;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box input[type="submit"]:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

/* 热门搜索词 */
.hot-search {
    position: relative;
    z-index: 1;
    margin-top: 10px;
    text-align: center;
    margin-bottom: 40px;
}

.hot-search a {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px;
    background: rgba(255,255,255,0.8);
    color: #333;
    border-radius: 15px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.hot-search a:hover {
    background: #fff;
    transform: scale(1.1);
}

/* 主内容区 */
main {
    padding: 30px 0;
}

/* Banner样式 */
.banner {
    position: relative;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.banner-container {
    position: relative;
    height: 400px;
}

.banner-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 0.5s ease;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.banner-item.active {
    opacity: 1;
}

.banner-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.banner-item h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: bold;
}

.banner-item .info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.banner-item .info span {
    background: rgba(255,255,255,0.2);
    padding: 3px 10px;
    border-radius: 10px;
}

.banner-item .desc {
    max-width: 80%;
    font-size: 14px;
    line-height: 1.4;
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.banner-arrow:hover {
    background: rgba(255,255,255,0.5);
}

.banner-arrow.prev {
    left: 20px;
}

.banner-arrow.next {
    right: 20px;
}

/* 栏目样式 */
.section {
    margin-bottom: 40px;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ff6b6b;
}

.section-title h2 {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b6b;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.section-title a {
    color: #4ecdc4;
    font-weight: bold;
    transition: all 0.3s ease;
}

.section-title a:hover {
    color: #ff6b6b;
    transform: translateX(5px);
}

/* 视频列表样式 */
.vod-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.vod-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.vod-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.vod-item .pic {
    position: relative;
    padding-top: 140%;
    overflow: hidden;
}

.vod-item .pic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.vod-item:hover .pic img {
    transform: scale(1.1);
}

.vod-item .info {
    padding: 15px;
}

.vod-item .title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vod-item .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 12px;
    color: #999;
}

.vod-item .meta span {
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 10px;
}

/* 文章列表样式 */
.art-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.art-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.art-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.art-item .pic {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.art-item .pic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.art-item:hover .pic img {
    transform: scale(1.1);
}

.art-item .info {
    padding: 15px;
}

.art-item .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.art-item .desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.art-item .meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

/* 友情链接 */
.friend-link {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.friend-link h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ff6b6b;
}

.friend-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.friend-link-item {
    padding: 8px 15px;
    background: #f5f5f5;
    color: #333;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.friend-link-item:hover {
    background: #ff6b6b;
    color: #fff;
    transform: translateY(-2px);
}

/* 尾部样式 */
.footer {
    background: linear-gradient(135deg, #4ecdc4, #ff6b6b);
    color: #fff;
    padding: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.3)"/></svg>') repeat;
    animation: float 20s linear infinite reverse;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #f0f0f0;
    text-decoration: underline;
}

/* 分页样式 */
.paging {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.paging span {
    padding: 8px 15px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.paging a {
    padding: 8px 15px;
    background: #fff;
    color: #333;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.paging a:hover {
    background: #ff6b6b;
    color: #fff;
    transform: translateY(-2px);
}

.paging a.active {
    background: #ff6b6b;
    color: #fff;
}

/* 视频内容页样式 */
.vod-detail {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.vod-detail-header {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.vod-detail-pic {
    flex: 0 0 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.vod-detail-pic img {
    width: 100%;
    height: auto;
}

.vod-detail-info {
    flex: 1;
    min-width: 300px;
}

.vod-detail-info h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ff6b6b;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.vod-detail-meta {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.vod-detail-meta span {
    display: block;
    font-size: 14px;
}

.vod-detail-meta span strong {
    color: #ff6b6b;
}

.vod-detail-desc {
    margin-bottom: 20px;
    line-height: 1.6;
}

.vod-detail-desc h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #4ecdc4;
}

/* 播放地址样式 */
.play-list {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.play-list h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ff6b6b;
}

.play-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.play-list li {
    flex: 0 0 calc(20% - 8px);
    min-width: 100px;
}

.play-list a {
    display: block;
    padding: 8px 15px;
    background: #fff;
    color: #333;
    border-radius: 20px;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.play-list a:hover {
    background: #ff6b6b;
    color: #fff;
    transform: translateY(-2px);
}

/* 播放器样式 */
.player-container {
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.player-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 评论区样式 */
.mac_comment {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comment_form {
    margin-bottom: 30px;
}

.comment_content {
    width: 100%;
    padding: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.comment_face_panel {
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
}

.comment_submit {
    padding: 10px 20px;
    background: #ff6b6b;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment_submit:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.cmt_item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.cmt_item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.face_wrap img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.item_con .top {
    margin-bottom: 10px;
    font-size: 14px;
}

.item_con .name {
    font-weight: bold;
    color: #ff6b6b;
    margin-right: 10px;
}

.item_con .con {
    margin-bottom: 10px;
    line-height: 1.6;
}

.gw-action {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

.gw-action a {
    color: #999;
    transition: all 0.3s ease;
}

.gw-action a:hover {
    color: #ff6b6b;
}

/* 文章内容页样式 */
.art-detail {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.art-detail h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ff6b6b;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.art-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #999;
}

.art-detail-content {
    line-height: 1.8;
    margin-bottom: 30px;
}

.art-detail-content p {
    margin-bottom: 15px;
}

.art-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 15px 0;
}

/* 搜索页面样式 */
.search-result {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.search-result h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.search-result .count {
    color: #999;
    margin-bottom: 30px;
}

/* 分类页面样式 */
.category-filter {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.filter-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.filter-group:first-child {
    padding-top: 0;
}

.filter-label {
    font-size: 14px;
    font-weight: bold;
    color: #ff6b6b;
    min-width: 50px;
    flex-shrink: 0;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.filter-options a {
    padding: 8px 15px;
    background: #f5f5f5;
    color: #333;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.filter-options a:hover {
    background: #ff6b6b;
    color: #fff;
}

.filter-options a.active {
    background: #ff6b6b;
    color: #fff;
}

/* 面包屑导航 */
.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: #999;
    background: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb a {
    color: #4ecdc4;
    transition: all 0.3s ease;
    padding: 5px 12px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 15px;
}

.breadcrumb a:hover {
    color: #fff;
    background: #4ecdc4;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(78, 205, 196, 0.3);
}

.breadcrumb span {
    color: #ccc;
    font-weight: bold;
}

.breadcrumb span:last-child {
    color: #ff6b6b;
    font-weight: bold;
}

/* 排行榜列表 */
.rank-list {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.rank-list li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.rank-list li:last-child {
    border-bottom: none;
}

.rank-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
}

.rank-list a {
    flex: 1;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-list a:hover {
    color: #ff6b6b;
}

.rank-hits {
    font-size: 12px;
    color: #999;
    margin-left: 10px;
}

/* 视频内容页样式 */
.video-info {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.info-content {
    display: flex;
    gap: 20px;
}

.video-info .pic {
    width: 200px;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-info .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-info .pic img:hover {
    transform: scale(1.05);
}

.video-info .info {
    flex: 1;
}

.video-info .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.video-info .sub-title {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.video-info .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
}

.video-info .meta span {
    color: #666;
}

.video-info .blurb {
    margin-bottom: 20px;
}

.video-info .blurb h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.video-info .blurb p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.video-info .actions {
    display: flex;
    gap: 15px;
}

.play-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.play-btn.disabled {
    background: #ccc;
    cursor: not-allowed;
}

.play-btn.disabled:hover {
    transform: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.collect-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.collect-btn:hover {
    background: #ff6b6b;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.play-source {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.play-tabs {
    margin-top: 20px;
}

.tab-content {
    margin-bottom: 20px;
}

.tab-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.episode-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.episode {
    display: inline-block;
    padding: 8px 15px;
    background: #f5f5f5;
    color: #333;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.episode:hover {
    background: #ff6b6b;
    color: #fff;
    transform: translateY(-2px);
}

/* 留言板样式 */
.mac_comment {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comment_form {
    margin-bottom: 30px;
}

.comment_content {
    width: 100%;
    height: 100px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    resize: none;
    font-size: 14px;
    margin-bottom: 10px;
}

.comment_face_panel {
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
}

.comment_face_box {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
}

.comment_face_box img {
    width: 30px;
    height: 30px;
    margin: 5px;
    cursor: pointer;
}

.remaining-w {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.cmt_text {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
}

.cmt_post {
    padding: 5px 15px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cmt_post:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.cmt_wrap {
    margin-bottom: 20px;
}

.cmt_item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cmt_item:last-child {
    border-bottom: none;
}

.face_wrap {
    margin-right: 15px;
}

.face {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.item_con {
    flex: 1;
}

.item_con .top {
    margin-bottom: 10px;
}

.item_con .name {
    font-weight: bold;
    color: #333;
    margin-right: 10px;
}

.item_con .con {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
}

.gw-action {
    font-size: 12px;
    color: #999;
}

.gw-action a {
    margin-right: 15px;
    color: #999;
    transition: color 0.3s ease;
}

.gw-action a:hover {
    color: #ff6b6b;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .header-main {
        flex-direction: column;
        align-items: stretch;
    }
    
    .logo {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .logo img {
        max-height: 50px;
    }
    
    /* 移动端按钮 - 始终显示 */
    .mobile-buttons {
        display: flex;
        gap: 10px;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .mobile-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(255,255,255,0.9);
        border-radius: 50%;
        font-size: 20px;
        color: #333;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .mobile-btn:hover,
    .mobile-btn.active {
        background: #fff;
        color: #ff6b6b;
        transform: scale(1.1);
    }
    
    /* 电脑端导航隐藏 */
    .nav {
        display: none;
        margin-bottom: 15px;
    }
    
    .nav.active {
        display: block;
    }
    
    /* 不使用 flex，纯浮动 + 行内块实现导航 */
    .sub-nav {
        display: block !important;
        flex-wrap: unset !important;
        justify-content: unset !important;
        gap: 0 !important;
        margin-top: 8px;
        padding-left: 0;
        list-style: none;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        background: none !important;
        box-shadow: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        min-width: auto !important;
        overflow: visible !important;
    }

    /* 主列表容器：清除浮动 */
    .nav-list {
        background:rgb(0 0 0 / 20%) !important;
        padding: 15px !important;
        border-radius: 15px !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
        display: block !important;
        overflow: hidden !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 所有菜单项左浮动，自动排列换行 */
    .nav .nav-list li{
        width: 100%;
    }
    .nav-item,
    .sub-nav li {
        float: left;
        list-style: none;
        margin-right: 10px;
        margin-bottom: 10px;
        position: relative;
    }

    /* 子菜单菜单项间距 */
    .sub-nav li {
        margin-right: 8px;
        margin-bottom: 8px;
    }

    .nav-item > a:hover,
    .nav-item > a.active {
        background: #ff6b6b;
        color: #fff;
    }

    /* 子菜单容器 */
    .sub-nav {
        display: block !important;
        padding: 0 !important;
        margin: 8px 0 0 !important;
        width: 100% !important;
        float: left;
    }

    /* 子菜单按钮样式 */
    .sub-nav a {
        display: inline-block;
        padding: 8px 12px;
        background: rgba(78,205,196,0.2);
        color: #333;
        border-radius: 15px;
        font-size: 13px;
        transition: all 0.3s ease;
        white-space: nowrap;
        text-decoration: none;
        border-radius: 20px !important;
    }

    .sub-nav a:hover,
    .sub-nav a.active {
        background: #4ecdc4;
        color: #fff;
    }
    
    /* 搜索框移动端控制 */
    
    /* 搜索框移动端控制 */
    .search-box {
        display: none;
        margin-bottom: 15px;
    }
    
    .search-box.active {
        display: flex;
    }
    
    .search-box {
        flex-direction: column;
        max-width: 100%;
        background: rgba(255,255,255,0.95);
        padding: 15px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .search-box select,
    .search-box input[type="text"],
    .search-box input[type="submit"] {
        border-radius: 20px;
        border: 2px solid #fff;
        margin-bottom: 10px;
    }
    
    .banner-container {
        height: 250px;
    }
    
    .banner-item {
        padding: 20px;
    }
    
    .banner-item h2 {
        font-size: 20px;
    }
    
    .banner-item .info {
        gap: 10px;
        font-size: 12px;
    }
    .banner-item .info span:last-child{
	display:none;
	}
    .banner-item .desc {
        max-width: 100%;
        font-size: 12px;
		display:none;
    }
    
    .vod-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .art-list {
        grid-template-columns: 1fr;
    }
    
    .vod-detail-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .vod-detail-pic {
        flex: 0 0 250px;
    }
    
    .play-list li {
        flex: 0 0 calc(25% - 7.5px);
    }
    
    .cmt_item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .info-content {
        flex-direction: column;
        align-items: center;
    }
    
    .video-info .pic {
        width: 100%;
        max-width: 200px;
        height: auto;
    }
    
    .video-info .title {
        font-size: 20px;
        text-align: center;
    }
    
    .video-info .actions {
        justify-content: center;
    }
    
    .episode-list {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .banner-container {
        height: 200px;
    }
    
    .vod-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .vod-item .pic {
        padding-top: 56.25%;
    }
    
    .vod-item .info {
        padding: 15px;
    }
    
    .vod-item .title {
        font-size: 16px;
    }
    
    .play-list li {
        flex: 0 0 calc(33.333% - 6.666px);
    }
    
    .footer p {
        font-size: 12px;
    }
    
    .footer-links {
        gap: 10px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
}