:root {
    --primary-color: #3498db;
    --primary-dark: #2980b9;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --success-color: #2ecc71;
    --warning-color: #f1c40f;
    --error-color: #e74c3c;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #f5f8fa;
    --card-bg: #ffffff;
    --border-radius: 16px;
    --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), 0 6px 6px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
    --card-hover-transform: translateY(-5px);
    --gradient-bg: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    padding-bottom: 60px;
    background-image: radial-gradient(circle at 10% 20%, rgba(216, 241, 230, 0.46) 0%, rgba(233, 247, 254, 0.46) 90%);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
header {
    text-align: center;
    padding: 30px 0;
    position: relative;
    background: var(--gradient-bg);
    margin: 0 -20px 30px;
    padding: 40px 20px;
    border-radius: 0 0 30px 30px;
    color: white;
    box-shadow: var(--box-shadow);
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.7);
}

.logo i {
    font-size: 40px;
}

h1 {
    color: white;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 5px;
}

/* 目录样式 */
.table-of-contents {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.table-of-contents::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-bg);
}

.toc-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(52, 152, 219, 0.2);
    position: relative;
    cursor: pointer;
}

.toc-header i {
    color: white;
    background: var(--primary-color);
    margin-right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(52, 152, 219, 0.3);
}

.toc-header span {
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-dark);
}

#toc-list {
    list-style-type: none;
    padding-left: 5px;
}

#toc-list li {
    margin-bottom: 2px;
    position: relative;
}

#toc-list a {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: all 0.25s ease;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
    margin-bottom: 5px;
    border-left: 3px solid transparent;
    background-color: rgba(52, 152, 219, 0.02);
}

#toc-list a::before {
    content: '›';
    display: inline-block;
    margin-right: 8px;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.2s ease;
}

#toc-list a:hover, 
#toc-list a:focus,
#toc-list a.active {
    color: var(--primary-color);
    background-color: rgba(52, 152, 219, 0.08);
    transform: translateX(3px);
    border-left: 3px solid var(--primary-color);
    box-shadow: 0 2px 5px rgba(52, 152, 219, 0.1);
}

#toc-list a:hover::before,
#toc-list a:focus::before,
#toc-list a.active::before {
    transform: translateX(2px);
}

#toc-list .sub-items {
    padding-left: 15px;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

#toc-list .sub-items.open {
    max-height: 1000px;
    margin-top: 5px;
    margin-bottom: 10px;
}

#toc-list .sub-items a {
    font-weight: 400;
    font-size: 0.95em;
    padding: 8px 15px;
    margin-bottom: 3px;
    border-left: 2px solid transparent;
    background-color: rgba(52, 152, 219, 0.01);
}

#toc-list .sub-items a::before {
    content: '•';
    font-size: 0.9em;
    opacity: 0.7;
}

.toggle-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(52, 152, 219, 0.05);
    border-radius: 50%;
}

.toggle-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

#toc-list a:hover .toggle-btn {
    color: var(--primary-color);
    background-color: rgba(52, 152, 219, 0.1);
}

/* 卡片样式 */
.card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 25px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: none;
}

.card.animate {
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: var(--card-hover-transform);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-bg);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(52, 152, 219, 0.2);
    padding-bottom: 15px;
}

.section-header i {
    font-size: 26px;
    margin-right: 15px;
    color: white;
    background: var(--primary-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.section-header h2 {
    font-size: 22px;
    color: var(--primary-dark);
    font-weight: 600;
}

.section-content {
    padding: 0 5px;
}

.section-content h3 {
    margin: 25px 0 15px;
    font-size: 18px;
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.section-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.section-content h4 {
    margin: 20px 0 12px;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding-left: 12px;
}

.section-content h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

/* 列表样式 */
.checklist {
    list-style-type: none;
    margin-bottom: 20px;
}

.checklist li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    background-color: rgba(52, 152, 219, 0.03);
    padding: 10px 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.checklist li:hover {
    background-color: rgba(52, 152, 219, 0.08);
    transform: translateX(3px);
}

.checklist li i {
    margin-right: 12px;
    font-size: 20px;
    margin-top: 2px;
}

.checklist.positive li i {
    color: var(--success-color);
}

.checklist li i.ri-close-circle-line {
    color: var(--error-color);
}

.checklist li ul {
    margin-top: 10px;
    margin-left: 32px;
    list-style-type: disc;
}

.checklist li ul li {
    margin-bottom: 8px;
    display: list-item;
    background-color: transparent;
    padding: 5px 0;
}

.checklist li ul li:hover {
    transform: none;
    background-color: transparent;
}

/* 食物项样式 */
.food-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    background-color: rgba(52, 152, 219, 0.05);
    padding: 18px;
    border-radius: 12px;
    transition: var(--transition);
}

.food-item:hover {
    background-color: rgba(52, 152, 219, 0.08);
    transform: translateX(3px);
}

.food-item i {
    font-size: 24px;
    margin-right: 18px;
    color: var(--accent-color);
    background: rgba(243, 156, 18, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.food-item div {
    flex: 1;
}

.food-item h4 {
    color: var(--accent-color);
    margin-top: 0;
    font-size: 17px;
    padding-left: 0;
    margin-bottom: 8px;
}

.food-item p {
    margin: 0;
    padding-left: 5px;
}

.food-item p i {
    color: var(--accent-color);
    opacity: 0.8;
    margin-right: 8px;
}

.food-item h4::before {
    display: none;
}

.food-item ul {
    list-style-type: none;
    margin-left: 5px;
}

.food-item li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.food-item li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: var(--accent-color);
    font-weight: bold;
}

/* 食物项内部列表项样式 */
.food-item ul li i {
    color: var(--accent-color);
    font-size: 16px;
    margin-right: 8px;
    position: relative;
    top: 1px;
}

.food-item ul li i.ri-close-circle-line {
    color: var(--error-color);
}

.food-item ul li i.ri-check-double-line {
    color: var(--success-color);
}

/* 信息卡片 */
.info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.info-card {
    flex: 1 1 40%;
    min-width: 140px;
    background-color: rgba(52, 152, 219, 0.08);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    transition: var(--transition);
    border: 1px solid rgba(52, 152, 219, 0.15);
}

.info-card:hover {
    background-color: rgba(52, 152, 219, 0.12);
    transform: translateY(-3px);
}

.info-card i {
    font-size: 22px;
    margin-right: 12px;
    color: white;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card span {
    font-weight: 500;
    font-size: 15px;
}

/* 页脚 */
footer {
    text-align: center;
    padding: 40px 0 20px;
    color: var(--text-light);
    font-size: 14px;
    background: var(--gradient-bg);
    margin: 40px -20px 0;
    border-radius: 30px 30px 0 0;
    color: white;
}

footer p {
    margin-bottom: 12px;
    opacity: 0.9;
}

.qrcode-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 15px;
    border-radius: 30px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.qrcode-hint i {
    font-size: 24px;
    margin-right: 12px;
    color: white;
}

/* 回到顶部按钮 */
#back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--gradient-bg);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
    border: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top i {
    font-size: 24px;
}

#back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.6);
}

/* 响应式样式 */
@media (min-width: 768px) {
    h1 {
        font-size: 34px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-content h3 {
        font-size: 20px;
    }
    
    .info-cards {
        flex-wrap: nowrap;
    }
    
    .card {
        padding: 30px;
    }
}

.toc-toggle-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.toc-header.open .toc-toggle-icon {
    transform: translateY(-50%) rotate(180deg);
}

/* 嵌套列表样式增强 */
.checklist li ul li i {
    font-size: 16px;
    margin-right: 8px;
    color: var(--primary-color);
    opacity: 0.8;
}

.checklist li ul li:hover i {
    opacity: 1;
}

/* 特殊图标颜色 */
.checklist li ul li i.ri-sun-foggy-line {
    color: var(--warning-color);
}

.checklist li ul li i.ri-rainy-line {
    color: var(--primary-color);
}

.checklist li ul li i.ri-snowy-line {
    color: var(--text-light);
}

/* 突出显示重要内容 */
.highlight {
    background-color: rgba(255, 236, 179, 0.3);
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 500;
    color: #e67e22;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(230, 126, 34, 0.4);
}

/* 倒计时组件样式 */
.countdown-container {
    margin-top: 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.countdown-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: white;
    font-weight: 500;
}

.countdown-title i {
    margin-right: 8px;
    font-size: 20px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: 8px 12px;
    min-width: 60px;
}

.countdown-item span:first-child {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.countdown-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 3px;
}

@media (max-width: 480px) {
    .countdown-item {
        min-width: 50px;
        padding: 6px 8px;
    }
    
    .countdown-item span:first-child {
        font-size: 20px;
    }
    
    .countdown-label {
        font-size: 12px;
    }
}

/* 链接样式美化 */
.qrcode-link {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 0;
}

.qrcode-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: white;
    transition: width 0.3s ease;
}

.qrcode-link:hover {
    color: white;
}

.qrcode-link:hover::after {
    width: 100%;
}

.qrcode-link i.ri-external-link-line {
    font-size: 16px;
    margin-left: 8px;
    opacity: 0.8;
}

.qrcode-link:hover i.ri-external-link-line {
    transform: translate(4px, -4px);
}

/* 考试场地分布图样式 */
.exam-map-container {
    margin: 15px 0;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    min-height: 200px;
}

.exam-map-container:hover {
    transform: var(--card-hover-transform);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.exam-map {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    transition: var(--transition);
    min-height: 100px;
}

/* 加载中的样式 */
.exam-map.loading {
    background-color: #f0f0f0;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 0.8; }
    100% { opacity: 0.6; }
}

.map-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 14px;
    margin: 0;
    border-radius: 0 0 12px 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.exam-map-container:hover .map-caption {
    opacity: 1;
}

/* 图片查看器样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    transition: opacity 0.3s ease;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    animation: zoom 0.6s;
}

@keyframes zoom {
    from {transform: scale(0.1)}
    to {transform: scale(1)}
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 网站二维码样式 */
.site-qrcode-container {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
}

.site-qrcode-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    gap: 10px;
}

.site-qrcode-title i {
    font-size: 24px;
    color: white;
}

.site-qrcode-title span {
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.site-qrcode-box {
    background: white;
    border-radius: 12px;
    padding: 15px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: var(--transition);
    max-width: 180px;
    margin: 0 auto;
    min-height: 160px;
}

.site-qrcode-box:hover {
    transform: var(--card-hover-transform);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.site-qrcode {
    width: 100%;
    height: auto;
    border-radius: 8px;
    min-height: 100px;
}

.site-qrcode-box p {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--primary-dark);
}

/* 海报模态框样式 */
.poster-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
}

.poster-container {
    background-color: white;
    border-radius: 16px;
    padding: 16px;
    width: 90%;
    max-width: 330px;
    position: relative;
    animation: zoom 0.4s;
}

/* 简洁海报样式 */
.poster {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Noto Sans SC', sans-serif;
}

/* 海报头部 */
.poster-header {
    background: linear-gradient(135deg, #3498db 0%, #1d6fa5 100%);
    padding: 18px 15px;
    text-align: center;
    color: white;
    position: relative;
}

.poster-icon {
    font-size: 24px;
    background-color: white;
    color: #3498db;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.poster-header h1 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.4;
    color: white;
}

.poster-header p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* 海报内容区域 */
.poster-content {
    padding: 15px;
}

.info-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.info-label i {
    margin-right: 6px;
    color: #3498db;
    font-size: 17px;
}

.info-value {
    font-size: 14px;
    color: #666;
}

/* 二维码区域 */
.poster-qrcode {
    background-color: #f8f9fa;
    padding: 15px;
    display: flex;
    align-items: center;
}

.qrcode-image {
    width: 80px;
    height: 80px;
    margin-right: 12px;
    flex-shrink: 0;
}

.qrcode-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 4px;
    border: 1px solid #eee;
}

.qrcode-info p {
    margin: 0 0 6px;
    line-height: 1.3;
    display: flex;
    align-items: center;
}

.qrcode-info p i {
    margin-right: 5px;
    color: #3498db;
}

.qrcode-info p:first-child {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.qrcode-info p:last-child {
    color: #666;
    font-size: 13px;
    word-break: break-all;
}

/* 海报底部 */
.poster-footer {
    padding: 12px;
    text-align: center;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.poster-footer p {
    margin: 0;
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poster-footer p i {
    margin-right: 4px;
    color: #888;
}

/* 操作按钮 */
.poster-actions {
    display: flex;
    margin-top: 15px;
    gap: 10px;
}

.poster-button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #3498db;
    color: white;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    gap: 6px;
}

.poster-button i {
    font-size: 17px;
}

.poster-button:hover {
    background: #2980b9;
}

.poster-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #555;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.poster-close:hover {
    color: #000;
}

/* 按钮加载状态 */
.poster-button.loading {
    opacity: 0.8;
    cursor: wait;
    background: #3498db;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

/* 响应式调整 */
@media (max-width: 480px) {
    .poster-container {
        padding: 12px;
        width: 85%;
    }
    
    .poster-header {
        padding: 15px 12px;
    }
    
    .poster-header h1 {
        font-size: 17px;
    }
    
    .poster-content {
        padding: 12px;
    }
    
    .poster-qrcode {
        padding: 12px;
    }
    
    .qrcode-image {
        width: 70px;
        height: 70px;
    }
}

/* 添加海报提示样式 */
.poster-tips {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
}

.poster-tips li {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
    font-size: 13px;
    color: #666;
}

.poster-tips li i {
    color: #27ae60;
    margin-right: 5px;
    font-size: 14px;
} 