﻿/* 通用样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

/* 完全取消所有超链接的下划线（包括悬停状态） */
a,
a:hover,
a:active,
a:focus,
a:visited {
    text-decoration: none !important;
}

/* 确保标签内的链接也没有下划线 */
.tag a,
.tag a:hover,
.tag a:active,
.tag a:focus,
.tag a:visited {
    text-decoration: none !important;
}

/* 确保文章内容中的链接也没有下划线 */
.article-content a,
.article-content a:hover,
.article-content a:active,
.article-content a:focus,
.article-content a:visited {
    text-decoration: none !important;
}

/* 新增：移除文章内容中链接的蓝色，使用默认颜色 */
.article-content a,
.article-content a:link,
.article-content a:visited,
.article-content a:hover,
.article-content a:active,
.article-content a:focus {
    color: inherit !important;
}

/* 确保所有链接状态都没有下划线 */
a:link,
a:-webkit-any-link {
    text-decoration: none !important;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
    padding-bottom: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 卡片通用样式 */
.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

/* 顶部图片卡片样式 */
.top-card {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.article-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px); /* 高斯模糊效果 */
    transform: scale(1.05); /* 稍微放大以抵消模糊带来的边缘问题 */
}

.article-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center; /* 垂直居中对齐 */
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5); /* 减少透明度，使图片更亮 */
    padding: 40px;
    text-align: center;
}

.title-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px; /* 限制最大宽度 */
    padding: 20px;
}

/* 优化小尺寸图片样式 - 确保在手机上完整显示 */
.small-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* 确保图片不会超出容器 */
}

.article-title {
    color: white;
    font-size: 1.8rem; /* 字体改小：从2.2rem改为1.8rem */
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    margin-bottom: 20px; /* 为价格区域留出空间 */
}

/* 合并后的信息模块样式 */
.combined-info {
    background-color: rgba(55, 55, 55, 0.80); /* 改为深色半透明背景 */
    border-radius: 10px;
    padding: 15px 20px 25px; /* 修改：增加底部内边距为按钮留出空间 */
    width: 100%;
    max-width: 600px; /* 合并后模块的最大宽度 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(5px); /* 添加毛玻璃效果 */
    border: 1px solid rgba(255, 255, 255, 0.1); /* 添加边框增强层次感 */
}

/* 内部布局容器 */
.info-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* 两个部分之间的间距 */
    width: 100%;
}

/* 分隔线样式 */
.separator {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
    height: auto;
}

/* 左右部分共用样式 */
.info-section {
    flex: 1;
}

/* 价格信息部分样式 */
.price-section .price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0; /* 内边距减小：从12px 0改为8px 0 */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* 调整边框颜色和透明度 */
}

.price-section .price-item:last-child {
    border-bottom: none;
}

/* 资源信息部分样式 */
.resource-section .resource-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0; /* 内边距减小：从12px 0改为8px 0 */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* 调整边框颜色和透明度 */
}

.resource-section .resource-item:last-child {
    border-bottom: none;
}

/* 修改文字样式 - 更细更小 */
.user-type, .resource-label {
    font-weight: 400; /* 从600改为400，使文字更细 */
    color: #f0f0f0; /* 改为浅色文字 */
    font-size: 0.85rem; /* 字体改小：从0.9rem改为0.85rem */
    letter-spacing: 0.3px; /* 轻微字距调整 */
}

.price, .resource-value {
    font-weight: 500; /* 从700改为500，使文字更细 */
    font-size: 0.9rem; /* 字体改小：从1rem改为0.9rem */
}

.price {
    color: #ff6b6b; /* 调整价格颜色使其更醒目 */
}

.price-item.recommended .price {
    color: #51cf66; /* 调整推荐价格颜色 */
}

.resource-value {
    color: #3498db; /* 使用蓝色突出显示 */
}

/* 新增：按钮容器样式，用于居中按钮 */
.download-btn-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px; /* 与上方内容保持距离 */
}

/* 下载资源按钮样式 - 与底部导航栏完全一致 */
.download-resource-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    width: 100%;
    max-width: 240px;
}

.download-resource-btn:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(52, 152, 219, 0.4);
}

.download-resource-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
}

.download-resource-btn i {
    font-size: 1.2rem;
}

/* 响应式调整下载按钮 */
@media (max-width: 768px) {
    .download-resource-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .download-resource-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .download-resource-btn i {
        font-size: 1rem;
    }
}

/* 文章内容卡片样式 - 修改：减小顶部内边距 */
.content-card {
    padding: 20px 40px 20px; /* 修改：顶部内边距从30px改为20px */
    position: relative;
}

/* 选项卡样式 - 修改：字体改小，按钮高度改小，距离顶部距离改小 */
.tab-header {
    display: flex;
    margin-bottom: 15px; /* 修改：从20px改为15px，减小与内容的距离 */
    border-bottom: 1px solid #eaeaea;
}

.tab-button {
    padding: 8px 20px; /* 修改：从12px 24px改为8px 20px，减小按钮高度 */
    background: none;
    border: none;
    font-size: 0.95rem; /* 修改：从1.1rem改为0.95rem，字体改小 */
    font-weight: 600;
    color: #7f8c8d;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap; /* 防止文本换行 */
}

.tab-button i {
    margin-right: 6px; /* 修改：从8px改为6px，减小图标与文字的间距 */
    font-size: 0.95rem; /* 修改：从1.1rem改为0.95rem，图标改小 */
}

.tab-button.active {
    color: #3498db;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #3498db;
    border-radius: 3px 3px 0 0;
}

.tab-button:hover {
    color: #3498db;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 常见问题样式 - 修改：减小字体，固定宽度 */
.faq-container {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.faq-question {
    padding: 16px 20px;
    background-color: #f9f9f9;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 0.95rem; /* 修改：减小字体大小 */
}

.faq-question:hover {
    background-color: #f0f7ff;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #3498db;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background-color: #e6f7ff; /* 新增：为所有展开的内容增加淡蓝色底色 */
    transition: all 0.3s ease;
    font-size: 0.9rem; /* 修改：减小字体大小 */
    width: 100%; /* 修改：固定宽度为100%，防止变化 */
}

.faq-answer.active {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: 10px;
    line-height: 1.6;
    width: 100%; /* 修改：固定段落宽度为100%，防止文字宽度变化 */
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* 文章内容样式 - 彻底修复文本换行问题 */
.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    /* 强制文本换行，解决所有换行问题 */
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    white-space: normal !important;
    overflow: visible !important;
    width: 100%;
    max-width: 100%;
    display: block;
}

/* 确保所有子元素继承换行属性 */
.article-content * {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    white-space: normal !important;
    overflow: visible !important;
    max-width: 100% !important;
}

/* 特别处理长URL和代码 */
.article-content a {
    word-break: break-all !important;
}

.article-content pre,
.article-content code {
    white-space: pre-wrap !important;
    word-break: break-all !important;
    overflow-x: auto !important;
    display: block;
    width: 100%;
    max-width: 100%;
}

/* 表格特殊处理 */
.article-content table {
    width: 100% !important;
    max-width: 100% !important;
    table-layout: fixed !important;
    word-break: break-all !important;
}

.article-content td,
.article-content th {
    word-break: break-all !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
}

/* 图片处理 */
.article-content img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
}

/* 修复所有内联元素的换行问题 */
.article-content span,
.article-content div,
.article-content p,
.article-content li {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    white-space: normal !important;
    max-width: 100% !important;
}

.article-content h2 {
    color: #2c3e50;
    margin: 30px 0 15px;
    font-size: 1.8rem;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
}

.article-content h3 {
    color: #34495e;
    margin: 25px 0 12px;
    font-size: 1.5rem;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
}

.article-content p {
    margin-bottom: 20px;
    text-align: justify;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
}

.article-content blockquote {
    border-left: 4px solid #3498db;
    background-color: #f9f9f9;
    padding: 15px 20px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.article-content ul, .article-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.article-content li {
    margin-bottom: 8px;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
}

/* 文章底部标签区域样式 */
.article-tags-section {
    margin-top: 15px;
    padding-top: 10px;
    /*border-top: 1px solid #eaeaea;*/
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* 修改标签样式 - 字体更小，边框更小 */
.tag {
    background-color: #f0f8ff;
    color: #3498db;
    padding: 6px 14px;
    border-radius: 18px;
    font-size: 0.8rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid #e1f0ff;
}

.tag:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.2);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 10px; /* 减小容器内边距 */
    }
    
    .card {
        border-radius: 0; /* 去掉圆角以适应全屏显示 */
        box-shadow: none; /* 去掉阴影 */
        margin-bottom: 20px;
    }
    
    .top-card {
        height: 350px;
    }
    
    .article-title-overlay {
        padding: 20px; /* 减少内边距 */
    }
    
    .title-content {
        padding: 10px; /* 减少内边距 */
        max-width: 100%; /* 移动端使用全宽 */
    }
    
    .article-title {
        font-size: 1.5rem; /* 移动端字体调整 */
        margin-bottom: 15px;
    }
    
    /* 优化移动端圆形图片显示 */
    .small-image {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
        max-width: 90%; /* 确保图片在手机上不会超出容器 */
    }
    
    .combined-info {
        max-width: 100%; /* 移动端使用全宽 */
        padding: 12px 15px 20px; /* 调整内边距，底部留出按钮空间 */
    }
    
    .info-inner {
        gap: 15px; /* 减小间距 */
    }
    
    .separator {
        margin: 0 8px; /* 减小分隔线间距 */
    }
    
    /* 移动端按钮容器调整 */
    .download-btn-container {
        margin-top: 15px; /* 减小上边距 */
    }
    
    .content-card {
        padding: 15px; /* 修改：从20px改为15px，移动端内边距进一步减小 */
    }
    
    /* 修改：保持选项卡横向排列，调整内边距和字体大小 */
    .tab-button {
        padding: 7px 12px; /* 修改：移动端按钮内边距减小 */
        font-size: 0.9rem; /* 修改：移动端字体减小 */
    }
    
    .tab-button i {
        font-size: 0.9rem; /* 修改：移动端图标减小 */
        margin-right: 5px; /* 修改：移动端图标与文字间距减小 */
    }
    
    .tab-header {
        margin-bottom: 12px; /* 修改：移动端间距减小 */
    }
    
    /* 修改：常见问题在移动端的字体大小 */
    .faq-question {
        padding: 14px 18px;
        font-size: 0.9rem; /* 移动端字体进一步减小 */
    }
    
    .faq-answer.active {
        padding: 18px;
        font-size: 0.85rem; /* 移动端字体进一步减小 */
    }
    
    .article-meta, .article-content {
        padding: 0;
    }
    
    /* 移动端标签样式 */
    .article-tags-section {
        margin-top: 10px;
        padding-top: 10px;
    }
    
    .tag {
        padding: 5px 12px;
        font-size: 0.75rem;
        border-radius: 16px;
    }
    
    /* 移动端特别处理 */
    .article-content {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .article-content pre,
    .article-content code {
        font-size: 0.9rem;
        padding: 10px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 5px; /* 进一步减小容器内边距 */
    }
    
    .top-card {
        height: 320px; /* 降低高度 */
    }
    
    .article-title-overlay {
        padding: 15px; /* 进一步减少内边距 */
    }
    
    .title-content {
        padding: 5px; /* 进一步减少内边距 */
    }
    
    .article-title {
        font-size: 1.2rem; /* 移动端字体进一步调整 */
        margin-bottom: 10px;
    }
    
    /* 确保圆形图片在手机上完整显示 */
    .small-image {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
        border-width: 3px;
        max-width: 85%; /* 确保圆形图片在手机上完全可见 */
    }
    
    .combined-info {
        padding: 10px 12px 18px; /* 移动端内边距最小化，底部留出按钮空间 */
        background-color: rgba(55, 55, 55, 0.85); /* 移动端提高不透明度 */
    }
    
    .info-inner {
        gap: 10px; /* 进一步减小间距 */
    }
    
    .separator {
        margin: 0 6px; /* 进一步减小分隔线间距 */
    }
    
    /* 移动端按钮容器调整 */
    .download-btn-container {
        margin-top: 12px; /* 进一步减小上边距 */
    }
    
    /* 移动端文字进一步调整 - 更细更小 */
    .user-type, .resource-label {
        font-size: 0.75rem; /* 移动端字体进一步减小 */
        font-weight: 300; /* 移动端使用更细的字重 */
    }
    
    .price, .resource-value {
        font-size: 0.8rem; /* 移动端字体进一步减小 */
        font-weight: 400; /* 移动端使用更细的字重 */
    }
    
    .content-card {
        padding: 12px; /* 修改：从15px改为12px，进一步减小内边距 */
    }
    
    /* 修改：调整为等宽横向排列，进一步减小尺寸 */
    .tab-button {
        flex: 1; /* 使两个按钮等宽 */
        text-align: center;
        justify-content: center;
        padding: 6px 4px; /* 修改：进一步减小按钮内边距 */
        font-size: 0.85rem; /* 修改：进一步减小字体 */
    }
    
    .tab-button i {
        font-size: 0.85rem; /* 修改：进一步减小图标 */
        margin-right: 4px; /* 修改：进一步减小图标与文字间距 */
    }
    
    .tab-header {
        margin-bottom: 10px; /* 修改：进一步减小间距 */
    }
    
    /* 修改：常见问题在小屏幕上的字体大小 */
    .faq-question {
        padding: 12px 16px;
        font-size: 0.85rem; /* 进一步减小字体大小 */
    }
    
    .faq-answer.active {
        padding: 16px;
        font-size: 0.8rem; /* 进一步减小字体大小 */
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .meta-item {
        margin-bottom: 10px;
    }
    
    /* 移动端标签样式 */
    .article-tags-section {
        margin-top: 10px;
        padding-top: 10px;
    }
    
    .tag {
        padding: 4px 10px;
        font-size: 0.7rem;
        border-radius: 14px;
    }
}

/* 针对超小屏幕的额外优化 */
@media (max-width: 360px) {
    .top-card {
        height: 300px; /* 进一步降低高度 */
    }
    
    .small-image {
        width: 70px;
        height: 70px;
    }
    
    .article-title {
        font-size: 1.1rem;
    }
    
    .combined-info {
        padding: 8px 10px 15px; /* 最小内边距，底部留出按钮空间 */
    }
    
    .info-inner {
        gap: 8px; /* 最小间距 */
        flex-direction: column; /* 超小屏幕改为垂直布局 */
    }
    
    .separator {
        display: none; /* 超小屏幕隐藏分隔线 */
    }
    
    /* 超小屏幕按钮容器调整 */
    .download-btn-container {
        margin-top: 10px; /* 最小上边距 */
    }
    
    .user-type, .resource-label {
        font-size: 0.7rem;
    }
    
    .price, .resource-value {
        font-size: 0.75rem;
    }
    
    .content-card {
        padding: 10px; /* 修改：超小屏幕内边距最小化 */
    }
    
    .tab-button {
        padding: 5px 3px; /* 修改：超小屏幕按钮内边距最小化 */
        font-size: 0.8rem; /* 修改：超小屏幕字体最小化 */
    }
    
    .tab-button i {
        font-size: 0.8rem; /* 修改：超小屏幕图标最小化 */
        margin-right: 3px; /* 修改：超小屏幕间距最小化 */
    }
    
    .tab-header {
        margin-bottom: 8px; /* 修改：超小屏幕间距最小化 */
    }
    
    /* 修改：超小屏幕常见问题字体大小 */
    .faq-question {
        padding: 10px 14px;
        font-size: 0.8rem; /* 超小屏幕字体最小化 */
    }
    
    .faq-answer.active {
        padding: 14px;
        font-size: 0.75rem; /* 超小屏幕字体最小化 */
    }
    
    /* 超小屏幕标签样式 */
    .tags-container {
        gap: 8px;
    }
    
    .tag {
        padding: 3px 8px;
        font-size: 0.65rem;
        border-radius: 12px;
    }
}

/* VIP弹窗和遮罩层样式 */
.vip-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    /* 移除pointer-events: none; 允许点击遮罩层 */
}

.vip-popup {
    background-color: white;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideUp 0.4s ease;
    /* 确保弹窗可以接收点击事件 */
    position: relative;
    z-index: 10000;
}

.vip-popup-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vip-popup-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.vip-popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.vip-popup-close:hover {
    transform: scale(1.2);
}

.vip-popup-content {
    padding: 30px 25px;
}

.vip-message {
    text-align: center;
    margin-bottom: 30px;
}

.vip-message i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 15px;
    display: block;
}

.vip-message p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.vip-popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.vip-btn {
    padding: 14px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 140px;
}

.vip-btn i {
    font-size: 1.2rem;
}

.vip-btn-paid {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

.vip-btn-paid:hover {
    background: linear-gradient(135deg, #27ae60, #219653);
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(39, 174, 96, 0.3);
}

.vip-btn-close {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.vip-btn-close:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(192, 57, 43, 0.3);
}

/* 会员开通加载提示样式 */
.vip-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001; /* 比VIP弹窗更高 */
    backdrop-filter: blur(10px);
    animation: fadeIn 0.4s ease;
}

.vip-loading-content {
    text-align: center;
    color: white;
    max-width: 400px;
    padding: 30px;
    animation: slideUp 0.5s ease;
}

.loading-spinner {
    margin-bottom: 25px;
}

.loading-spinner i {
    font-size: 3.5rem;
    color: #3498db;
}

.loading-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.loading-text {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.5;
    opacity: 0.9;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .vip-popup {
        width: 95%;
        max-width: 400px;
    }
    
    .vip-popup-header {
        padding: 18px 20px;
    }
    
    .vip-popup-header h3 {
        font-size: 1.2rem;
    }
    
    .vip-popup-content {
        padding: 25px 20px;
    }
    
    .vip-message i {
        font-size: 2.5rem;
    }
    
    .vip-message p {
        font-size: 1.1rem;
    }
    
    .vip-popup-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .vip-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    /* 移动端加载提示样式 */
    .vip-loading-content {
        max-width: 320px;
        padding: 25px;
    }
    
    .loading-spinner i {
        font-size: 3rem;
    }
    
    .loading-title {
        font-size: 1.5rem;
    }
    
    .loading-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .vip-popup {
        width: 95%;
        border-radius: 12px;
    }
    
    .vip-popup-header {
        padding: 15px 18px;
    }
    
    .vip-popup-header h3 {
        font-size: 1.1rem;
    }
    
    .vip-popup-content {
        padding: 20px 18px;
    }
    
    .vip-message i {
        font-size: 2.2rem;
    }
    
    .vip-message p {
        font-size: 1rem;
    }
    
    .vip-popup-buttons {
        gap: 10px;
    }
    
    .vip-btn {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
    
    /* 小屏幕加载提示样式 */
    .vip-loading-content {
        max-width: 280px;
        padding: 20px;
    }
    
    .loading-spinner i {
        font-size: 2.5rem;
    }
    
    .loading-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .loading-text {
        font-size: 0.95rem;
    }
}