﻿/* penumbra.css — 模板杂项样式聚合 */

/* index/tuijian.html */
.myui-panel-index-recommend { background: #f5f5f5; }
.myui-panel-index-recommend .title { color: #333; }
.myui-panel-index-recommend .pic-tag-year { background-color: #7091fc; }

/* index/tongzhi.html */
.myui-notice-panel { margin-bottom: 20px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border-radius: 8px; box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3); overflow: hidden; }
.myui-notice-content { padding: 15px 20px; display: flex; align-items: center; color: #fff; }
.myui-notice-icon { font-size: 24px; margin-right: 15px; animation: notice-bell 2s ease-in-out infinite; }
@keyframes notice-bell { 0%, 100% { transform: rotate(0deg); } 10%, 30% { transform: rotate(-10deg); } 20%, 40% { transform: rotate(10deg); } }
.myui-notice-text { flex: 1; display: flex; align-items: center; }
.myui-notice-label { background: rgba(255, 255, 255, 0.2); padding: 4px 12px; border-radius: 15px; font-size: 12px; font-weight: bold; margin-right: 12px; white-space: nowrap; }
.myui-notice-message { font-size: 14px; line-height: 1.6; overflow: hidden; white-space: nowrap; position: relative; flex: 1; }
.myui-notice-message-inner { display: inline-block; }
@media (min-width: 768px) { .myui-notice-message-inner { animation: none; } }
@media (max-width: 767px) { .myui-notice-message-inner { animation: notice-scroll 15s linear infinite; } }
@keyframes notice-scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
.myui-notice-close { cursor: pointer; font-size: 20px; opacity: 0.7; transition: opacity 0.3s; padding: 0 10px; }
.myui-notice-close:hover { opacity: 1; }
@media (max-width: 768px) { .myui-notice-content { padding: 12px 15px; } .myui-notice-icon { font-size: 20px; margin-right: 10px; } .myui-notice-label { font-size: 11px; padding: 3px 8px; } .myui-notice-message { font-size: 13px; } }
.myui-notice-panel.notice-closed { display: none; }

/* index|art shaixuan loading */
#js-fe-shaixuan-nav[data-fe-type-nav-loading] a,
#js-fe-art-shaixuan-nav[data-fe-type-nav-loading] a { pointer-events: none; cursor: default; }

/* public jump/404/copyright msg pages */
body.fe-msg-page { background: #F9FAFD; color: #818181; }
.fe-copyright-skel-line { height: 14px; background: rgba(128,128,128,0.12); border-radius: 3px; margin-bottom: 10px; }

/* gbook/report.html */
.message-feedback {
	background: #fff;
	border-radius: 5px;
	padding: 20px;
	margin: 20px 0;
	box-shadow: 0 2px 15px rgba(0,0,0,0.1);
	display: flex;
	align-items: center;
	animation: fadeInDown 0.5s ease-out;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.success-icon {
	font-size: 50px;
	color: #4CAF50;
	margin-right: 20px;
	animation: scaleUp 0.3s ease-out 0.2s both;
}

@keyframes scaleUp {
	from {
		transform: scale(0);
	}
	to {
		transform: scale(1);
	}
}

.success-text {
	flex: 1;
}

.success-text h3 {
	color: #4CAF50;
	margin: 0 0 5px 0;
	font-size: 18px;
	font-weight: bold;
}

.success-text p {
	color: #666;
	margin: 0;
}

@media (max-width: 767px) {
	.message-feedback {
		padding: 15px;
		margin: 15px 0;
	}
	
	.success-icon {
		font-size: 40px;
		margin-right: 15px;
	}
	
	.success-text h3 {
		font-size: 16px;
	}
}
/* index/gonggao.html */
.layer {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        opacity: .7;
        background: #000;
        z-index: 1000;
        display: none;
    }
    
    #globalAd {
        max-width: 750px;
        min-width: 320px;
        background: #fff;
        border-radius: 5px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, .3);
        overflow: hidden;
        position: fixed;
        display: none;
        margin: 0 auto;
        z-index: 10001;
        border: 1px solid rgba(0,0,0,.1);
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    
    #globalAd #hero-img {
        width: 100%;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #globalAd .notice-icon {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 22px;
        color: rgba(255,255,255,0.9);
        animation: notice-bell-ring 2s infinite;
    }
    
    @keyframes notice-bell-ring {
        0%, 100% { transform: translateY(-50%) rotate(0); }
        20%, 60% { transform: translateY(-50%) rotate(-10deg); }
        40%, 80% { transform: translateY(-50%) rotate(10deg); }
    }
    
    #globalAd #hero-img .title {
        font-size: 20px;
        font-weight: 700;
        margin: 0;
        color: #fff;
        text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }
    
    #globalAd #content {
        padding: 10px;
    }
    
    #globalAd .notice-content {
        padding: 5px 15px 10px;
    }
    
    #globalAd .notice-content p {
        margin: 8px 0;
        font-size: 15px;
        line-height: 1.6;
    }
    #globalAd .gga-danger {
        color: #ff5f6d;
        font-weight: bold;
        margin: 8px 0;
        font-size: 15px;
    }
    #globalAd .gga-info {
        color: #2196F3;
        margin: 8px 0;
        font-size: 15px;
    }
    #globalAd .gga-text {
        color: #555;
        margin: 8px 0;
        font-size: 15px;
    }
    #globalAd .gga-link {
        padding: 7px 5px;
        border-bottom: 1px dashed rgba(0,0,0,.1);
        font-size: 15px;
    }
    #globalAd .gga-link:last-of-type {
        border-bottom: none;
    }
    #globalAd .gga-link i {
        color: #ff9800;
        margin-right: 6px;
    }
    #globalAd .gga-link a {
        color: #2196F3;
        text-decoration: none;
    }
    #globalAd .gga-link a:hover {
        color: #ff5f6d;
        text-decoration: underline;
    }
    
    #globalAd .notice-actions {
        padding: 5px 15px 15px;
        display: flex;
        justify-content: flex-end;
    }
    
    #globalAd .btn {
        padding: 8px 30px !important;
        border-radius: 5px !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        transition: all 0.3s;
        display: inline-block;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        cursor: pointer;
        user-select: none;
        background-image: none;
        border: 1px solid transparent;
    }
    
    #globalAd .btn i {
        margin-right: 5px;
    }
    
    #globalAd .btn-warm {
        background: #ff9800 !important;
        color: #fff !important;
        border-color: #f57c00 !important;
    }
    
    #globalAd .btn-warm:hover {
        background: #f57c00 !important;
    }
/* gbook/bz.html */
.play-tips {
    background: rgba(255, 152, 0, 0.1);
    border-left: 4px solid #ff9800;
    border-radius: 2px;
    padding: 15px;
    margin-bottom: 20px;
}

.tips-title {
    font-size: 16px;
    font-weight: bold;
    color: #ff9800;
    margin-bottom: 10px;
}

.tips-title .fa {
    margin-right: 5px;
}

.tips-content {
    color: #666;
}

.tips-item {
    padding: 6px 0;
    display: flex;
    align-items: center;
}

.tips-item .fa {
    color: #4CAF50;
    margin-right: 5px;
}

.tips-item span {
    color: #ff5f6d;
    font-weight: bold;
    margin-right: 5px;
}

@media (max-width: 767px) {
    .play-tips {
        padding: 10px;
    }
    
    .tips-title {
        font-size: 15px;
    }
    
    .tips-item {
        padding: 5px 0;
        font-size: 14px;
    }
}
/* vod/playlist.html */
@media (max-width: 768px) {
	.playlist-panel {
		margin-top: -10px !important;
	}
}


.player-buttons {
	padding: 15px;
}

.player-btn {
	width: 140px;
	height: 36px;
	margin: 0 10px 10px 0;
	float: left;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.player-buttons::after {
	content: "";
	display: table;
	clear: both;
}


@media (max-width: 480px) {
	.player-buttons {
		display: flex;
		flex-wrap: wrap;
		padding: 15px;
		gap: 8px;
	}
	
	.player-btn {
		width: calc(25% - 6px);
		height: 36px;
		margin: 0;
		padding: 8px;
		font-size: 12px;
		float: none;
		flex: 0 0 auto;
		text-align: center;
	}
}


@media (min-width: 481px) and (max-width: 767px) {
	.player-btn {
		width: 110px;
		margin: 0 8px 10px 0;
	}
}
/* vod/detail_data2.html */
.player-buttons {
	margin-bottom: 10px;
}
.player-buttons .btn {
	margin-right: 10px;
	margin-bottom: 5px;
	position: relative;
}
.player-buttons .badge {
	position: absolute;
	top: -5px;
	right: -5px;
	background: #ff6b35;
	color: white;
	border-radius: 10px;
	padding: 2px 6px;
	font-size: 10px;
	line-height: 1;
}
/* public/browser.html */
body,html{width:100%;height:100%}
        *{margin:0;padding:0}
        body{background-color:#fff}
        #browser img{
            width:50px;
        }
        #browser{
            margin: 0px 10px;
            text-align:center;
        }
        #contens{
            font-weight: bold;
            margin:-285px 0px 10px;
            text-align:center;
            font-size:20px;
            margin-bottom: 125px;
        }
        .top-bar-guidance{font-size:15px;color:#fff;height:60%;line-height:1.8;padding-left:20px;padding-top:20px;background:url(//gw.alicdn.com/tfs/TB1eSZaNFXXXXb.XXXXXXXXXXXX-750-234.png) center top/contain no-repeat}
        .top-bar-guidance .icon-safari{width:25px;height:25px;vertical-align:middle;margin:0 .2em}
        .app-download-tip{margin:0 auto;width:290px;text-align:center;font-size:15px;color:#2466f4;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAcAQMAAACak0ePAAAABlBMVEUAAAAdYfh+GakkAAAAAXRSTlMAQObYZgAAAA5JREFUCNdjwA8acEkAAAy4AIE4hQq/AAAAAElFTkSuQmCC) left center/auto 15px repeat-x}
        .app-download-tip .guidance-desc{background-color:#fff;padding:0 5px}
        .app-download-btn{display:block;width:214px;height:40px;line-height:40px;margin:18px auto 0 auto;text-align:center;font-size:18px;color:#2466f4;border-radius:20px;border:.5px #2466f4 solid;text-decoration:none}
/* index/fb.html */
.center-text { text-align: center; }
.red-text { color: red; }

