/* PornShop风格样式 */

/* 分区块样式 */
.section-block {
    margin: 15px 10px;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.section-title {
    flex: 1;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.section-more {
    font-size: 14px;
    color: #999;
    text-decoration: none;
}

/* 2列网格布局 */
.video-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* 视频卡片 */
.video-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f8f8;
}

.video-card a {
    display: block;
    text-decoration: none;
}

.video-thumb {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 比例 */
    overflow: hidden;
    background: #000;
    border-radius: 8px;
}

.video-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 视频遮罩层 */
.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 12px;
}

.play-icon {
    font-size: 14px;
    margin-right: auto;
}

.video-views {
    margin-right: 8px;
}

.video-views::before {
    content: ▶ ;
}

.video-duration {
    background: rgba(0,0,0,0.6);
    padding: 2px 6px;
    border-radius: 3px;
}

/* 视频标签 */
.video-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    z-index: 2;
}

.vip-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.free-badge {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

/* 视频信息 */
.video-info {
    padding: 8px 4px;
}

.video-title {
    font-size: 13px;
    color: #333;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 36px;
}

/* 响应式调整 */
@media (max-width: 375px) {
    .video-grid-2col {
        gap: 8px;
    }
    
    .section-block {
        margin: 10px 8px;
        padding: 12px;
    }
    
    .video-title {
        font-size: 12px;
    }
}

/* tabbar 客服icon：与其他图标尺寸一致，灰色 */
footer.tabbar a img[src*="icon_kf"] {
    width: 32px !important;
    height: 32px !important;
    filter: grayscale(1) brightness(0.75);
    object-fit: contain;
}
