/* 播放器相关 */
.jp-jplayer { width: 100%; height: auto; }
.audio, .video { max-width: 100%; margin: 0 auto; }
.pagebox .content img { max-width: 100%; height: auto; }

/* 搜索浮层样式 */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
}
.search-box {
    background: rgb(255 255 255);
    border-radius: 8px;
    padding: 10px 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: fadeInUp 0.3s ease;
    box-sizing: border-box;
}
.search-box form{display:flex;}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.search-box h3 {
	margin: 0 0 15px 0;
	font-size: 16px;
	color: #333;
	border-bottom: 1px solid #ccc;
	padding-bottom: 5px;
	text-align: left;
	font-weight: normal;
}
.search-box input {
    width: 100%;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius:8px 0 0 8px;
    font-size: 14px;
    margin: 0;
    outline: none;
    transition: 0.2s;
}
.search-box input:focus {
    border-color: #428bca;
    box-shadow: 0 0 5px rgba(66, 139, 202, 0.5);
}
.search-box button {
    background: #282828;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
}
.search-box button:hover {
    background: #999;
}
.close-search {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: 0.2s;
    line-height: 20px;
}
.close-search:hover {
    color: #333;
}

/* 移动端顶部栏 */
.mobile-header {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
    padding: 12px 16px;
    box-sizing: border-box;
    z-index: 999;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.mobile-header .site-title {
    font-size: 18px;
    font-family: Microsoft Yahei;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
	text-shadow: 1px 1px 1px #000;
	letter-spacing: 2px;
}
.mobile-header .site-title a{color:#fff}
.mobile-header .header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}
.mobile-header .header-buttons img {
    width: 22px;
    height: 22px;
    cursor: pointer;
}
.mobile-header .header-buttons .menu-icon {
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

/* 侧滑菜单遮罩 */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}
/* 侧滑菜单容器 */
.side-menu {
    position: fixed;
    top: 0;
    right: -166px;
    width: 166px;
    height: 100%;
    background: #000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    overflow-y: auto;
    transition: right 0.3s ease;
    padding:0;
}
.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.side-menu ul li {
    border-bottom:1px solid #535353
}
.side-menu ul li a {
    display: block;
    padding: 15px 20px;
    color: #bbb;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s;
}
.side-menu ul li a:hover,
.side-menu ul li.active a {
    background: #f0f0f0;
    color: #428bca;
}
.side-menu .close-menu {
    text-align: right;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
	display:none
}
.playcontent .video .gui{}
.video-full #jquery_jplayer_video_1 video{max-height:100%}
@media (max-width: 768px) {
    .music_box .menu {
        display: none;
    }
    .mobile-header {
        display: flex;
    }
    .music_box {
        margin-top: 60px;
    }
}

.movieListBox {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin: 20px 0;
}
.movieListBox a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    background: rgb(0 0 0 / 50%);
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}
.movieListBox a:hover {
    background: #000;
    color: #ffffff;
}
.movieListBox a:active {
    transform: translateY(0);
}
.movieListBox a.active-movie {
    background:#000;
    color: #ffffff;
}
.movieContent{line-height:35px}