﻿* {
            margin: 0; padding: 0; box-sizing: border-box;
            -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft YaHei", sans-serif;
            background-color: #0b0f17; color: #f1f5f9; line-height: 1.6; padding-bottom: 80px;
        }
		/* 从视觉和系统层面上，彻底禁止任何文字被鼠标高亮选中 */
		body {
		-webkit-user-select: none !important; /* Safari */
		-moz-user-select: none !important;    /* Firefox */
		-ms-user-select: none !important;     /* IE10+ */
		user-select: none !important;         /* 标准浏览器 */
}
        header {
            background: linear-gradient(180deg, #111827 0%, #0b0f17 100%);
            padding: 45px 20px; text-align: center; border-bottom: 1px solid #1f2937;
        }
        header h1 {
            color: #f59e0b; font-size: 28px; font-weight: 800; letter-spacing: 1px;
            text-shadow: 0 2px 10px rgba(245, 158, 11, 0.15);
        }
        header p { color: #9ca3af; margin-top: 10px; font-size: 14px; }
        .contact-container {
            background-color: #111827; padding: 16px; text-align: center; border-bottom: 1px solid #1f2937;
            display: flex; justify-content: center; gap: 15px; flex-wrap: wrap;
			display: none;
        }
        .btn {
            display: inline-flex; align-items: center; padding: 10px 22px; border-radius: 8px;
            text-decoration: none; font-weight: 600; font-size: 14px; transition: all 0.2s ease; cursor: pointer;
        }
        .btn-wechat { background-color: #10b981; color: #fff; }
        .btn-qq { background-color: #2563eb; color: #fff; }
        .btn-link { background-color: #6366f1; color: #fff; }
        .btn:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.4); filter: brightness(1.1); }
        .category-nav { max-width: 1200px; margin: 25px auto 10px auto; padding: 0 20px; display: flex; gap: 10px; overflow-x: auto; }
        .category-nav::-webkit-scrollbar { display: none; }
        .nav-tab {
            background: #1f2937; color: #9ca3af; padding: 8px 18px; border-radius: 20px;
            font-size: 14px; cursor: pointer; border: 1px solid #374151; white-space: nowrap; transition: all 0.2s;
        }
        .nav-tab.active, .nav-tab:hover { background: #f59e0b; color: #0b0f17; font-weight: bold; border-color: #f59e0b; }
        .main-container { max-width: 1200px; margin: 0 auto; padding: 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        @media (max-width: 1024px) { .main-container { grid-template-columns: repeat(3, 1fr); } }
        @media (max-width: 640px) { .main-container { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 10px; } }
        
        /* 货架卡片主容器 */
        .script-card { background: #111827; border-radius: 12px; padding: 14px; border: 1px solid #1f2937; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; }
        .script-card:hover { border-color: #f59e0b; transform: translateY(-4px); box-shadow: 0 10px 25px rgba(245, 158, 11, 0.08); }
        
        /* 1. 结构最上方：黄金 3:4 比例海报容器 */
        .poster-wrapper { width: 100%; /*图片自适应使用，这里要全显示就没用。aspect-ratio: 3 / 4*/; border-radius: 8px; overflow: hidden; background-color: #0b0f17; margin-bottom: 12px; border: 1px solid rgba(255, 255, 255, 0.03); }
        .poster-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .script-card:hover .poster-wrapper img { transform: scale(1.05); }
        
        /* 2. 结构第二层：剧名 */
        .script-card h3 { color: #f3f4f6; font-size: 16px; margin-bottom: 6px; word-break: break-all; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; font-weight: 600; }
        
        /* 3. 结构第三层：剧本简介描述 */
        .script-desc { font-size: 13px; color: #9ca3af; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; height: 42px; line-height: 1.6; }
        
        /* 4. 结构第四层：原有的标签和题材 */
        .card-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; }
        .badge { font-size: 10px; padding: 1px 5px; border-radius: 4px; font-weight: bold; }
        .badge-type { background: #374151; color: #f59e0b; border: 1px solid rgba(245,158,11,0.3); }
        .badge-episode { background: #78350f; color: #fde68a; }
        .card-meta-text { font-size: 12px; color: #9ca3af; background: #0b0f17; padding: 6px 8px; border-radius: 6px; margin-top: auto; }
        .card-meta-text span { color: #e5e7eb; }
        
        /* 弹窗及其他基础组件 */
        .preview-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(3, 7, 18, 0.9); z-index: 100; justify-content: center; align-items: center; padding: 20px; }
        .modal-body { background: #111827; width: 100%; max-width: 700px; max-height: 85vh; border-radius: 16px; border: 1px solid #374151; display: flex; flex-direction: column; overflow: hidden; animation: fadeIn 0.2s cubic-bezier(0.4, 0, 0.2, 1); }
        @keyframes fadeIn { from { transform: scale(0.97); opacity: 0; } to { transform: scale(1); opacity: 1; } }
        .modal-header { padding: 20px; border-bottom: 1px solid #1f2937; display: flex; justify-content: space-between; align-items: center; }
        .modal-header h2 { color: #f59e0b; font-size: 20px; }
        .btn-close { background: none; border: none; color: #9ca3af; font-size: 24px; cursor: pointer; }
        .modal-content-scroll { padding: 20px; overflow-y: auto; color: #d1d5db; font-size: 15px; }
        .text-preview-area { position: relative; background: #0b0f17; padding: 20px; border-radius: 10px; white-space: pre-wrap; border: 1px dashed #374151; overflow: hidden; margin-bottom: 15px; letter-spacing: 0.5px; }
        .text-preview-area::before { content: "小凤凰原创剧本 严禁盗用"; position: absolute; font-size: 28px; color: rgba(255,255,255,0.015); transform: rotate(-20deg); top: 40%; left: 5%; width: 100%; pointer-events: none; }
        .modal-warning { color: #f87171; font-size: 13px; font-weight: bold; text-align: center; padding-top: 5px; }
        .wx-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 200; justify-content: center; align-items: center; }
        .wx-content { background: #111827; padding: 24px; border-radius: 16px; text-align: center; max-width: 300px; border: 1px solid #374151; }
        .wx-content img { width: 200px; height: 200px; margin: 15px 0; border-radius: 8px; }
        footer { position: fixed; bottom: 0; width: 100%; background: #0b0f17; border-top: 1px solid #1f2937; text-align: center; padding: 16px; font-size: 13px; color: #4b5563; z-index: 10; }
		
		
		
		
	.column-title-gold {
		color: #ffb834;
		font-size: 16px;
		font-weight: bold;
		letter-spacing: 2px;
		margin-bottom: 12px;
		display: flex;
		align-items: center;
	}
	.column-title-gold::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 15px;
    background-color: #ffb834;
    margin-right: 8px;
    border-radius: 2px;
	}
	.price-tag-container {
    margin-bottom: 12px;
    display: flex
;
    align-items: center;
}
.price-label {
    color: #8a92a6;
    font-size: 13px;
    margin-right: 4px;
}
.price-value-box {
    background: linear-gradient(135deg, rgba(229, 124, 35, 0.15) 0%, rgba(255, 184, 52, 0.1) 100%);
    border: 1px solid rgba(229, 124, 35, 0.4);
    color: #ffb834;
    font-size: 13px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 4px;
    letter-spacing: 0.1px;
}
.price-unit {
    font-size: 11px;
    font-weight: normal;
    margin-left: 2px;
    color: rgba(255, 184, 52, 0.8);
}