 /* 打卡积分区域 - 修改按钮样式 */
 a{text-decoration: none;}
 .container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 15px;
}
.container-1{
    max-width: 500px;
    margin: 0 auto;
    padding: 0 15px;
}

 .checkin-container {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    border-radius: 20px;
    padding: 20px;
    margin: 20px auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.checkin-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkin-button {
    background: rgba(255, 255, 255, 0.9);
    color: #ff7675;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 15px 0;
}

.checkin-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.checkin-button:disabled {
    background: rgba(255, 255, 255, 0.6);
    color: #fff;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.checkin-description {
    font-size: 13px;
    margin-top: 10px;
    opacity: 0.9;
}

.points-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 14px;
}

.current-points {
    font-weight: 700;
}

/* 修改积分规则按钮样式 - 更显眼 */
.view-rules {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border: none;
    color: white;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(108, 92, 231, 0.3);
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-rules:hover {
    background: linear-gradient(135deg, #5b4cd8 0%, #8e7df7 100%);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
    transform: translateY(-2px);
}

/* 会员等级显示 - 已修改为白色背景，可关闭 */
.user-status {
    background: white;
    border-radius: 15px;
    padding: 12px 15px;
    margin: 15px auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #f0f0f0;
    min-height: 60px;
    position: relative;
    display: none; /* 默认隐藏，通过JavaScript控制显示 */
}

.user-level {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #555;
}

.level-text {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.user-type {
    font-size: 12px;
    color: #7f8c8d;
}

/* 升级按钮和活动标签 - 修改布局 */
.upgrade-action {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

/* 修改"有礼"圆形按钮 */
.gift-circle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7675 0%, #fd79a8 100%);
    color: white;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 118, 117, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-circle-btn:hover {
    background: linear-gradient(135deg, #e66767 0%, #e84393 100%);
    box-shadow: 0 3px 12px rgba(255, 118, 117, 0.4);
    transform: scale(1.1);
}

/* 修改升级按钮大小，和注册按钮一样大 */
.upgrade-button {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(108, 92, 231, 0.2);
}

.upgrade-button:hover {
    background: linear-gradient(135deg, #5b4cd8 0%, #8e7df7 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

/* 活动标签 - 已移除，改为圆形按钮 */

/* 增大关闭按钮 */
.close-upgrade-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-upgrade-btn:hover {
    background: #f5f5f5;
    color: #333;
}

/* 登录注册框样式 */
.auth-container {
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin: 20px auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.auth-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.auth-button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-button {
    background: #f0f2f5;
    color: #555;
}

.register-button {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    box-shadow: 0 4px 10px rgba(108, 92, 231, 0.3);
}

.auth-button:hover {
    transform: translateY(-2px);
}

/* 收藏工具展示区域 */
.favorites-container {
    background: white;
    border-radius: 20px;
    padding: 15px;
    margin: 20px auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    overflow-x: auto;
    gap: 15px;
    scrollbar-width: none;
    min-height: 120px;
}

.favorites-container::-webkit-scrollbar {
    display: none;
}

.favorite-item {
    flex: 0 0 auto;
    width: 80px;
    text-align: center;
}

.favorite-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.favorite-name {
    font-size: 12px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 轮播图样式 */
.carousel {
    position: relative;
    margin: 0 auto 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    height: 280px;
    touch-action: pan-y;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.carousel-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.carousel-control {
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    font-size: 18px;
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: white;
    transform: scale(1.2);
}

/* 定制小工具按钮 - 添加创作说明按钮 */
.custom-tool {
    background: white;
    border-radius: 20px;
    padding: 15px 20px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.custom-button {
    background: linear-gradient(135deg, #ff7675 0%, #fd79a8 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 118, 117, 0.3);
}

.custom-button:hover {
    background: linear-gradient(135deg, #e66767 0%, #e84393 100%);
    box-shadow: 0 6px 15px rgba(255, 118, 117, 0.4);
    transform: translateY(-2px);
}

.price-tag {
    font-size: 18px;
    font-weight: 700;
    color: #ff7675;
}

.custom-note {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 5px;
}

/* 创作激励按钮 - 改为圆形 */
.creator-info-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fdcb6e 0%, #fd79a8 100%);
    color: white;
    border: none;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(253, 203, 110, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.creator-info-circle:hover {
    background: linear-gradient(135deg, #e6b95e 0%, #e84393 100%);
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(253, 203, 110, 0.4);
}

/* 分类导航样式 */
.category-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.category-item {
    background: white;
    border-radius: 15px;
    padding: 15px 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.category-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-item.active {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    border-color: #6c5ce7;
}

/* 搜索框样式 */
.search-container {
    background: white;
    border-radius: 20px;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
}

.search-box {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 10px 15px;
    background: #f5f7fa;
    border-radius: 12px;
    margin-right: 10px;
}

.search-button {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(108, 92, 231, 0.3);
}

.search-button:hover {
    background: linear-gradient(135deg, #5b4cd8 0%, #8e7df7 100%);
    box-shadow: 0 6px 15px rgba(108, 92, 231, 0.4);
    transform: translateY(-2px);
}

/* 二级分类样式 */
.subcategory-nav {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px 0;
    scrollbar-width: none;
}

.subcategory-nav::-webkit-scrollbar {
    display: none;
}

.subcategory-item {
    background: white;
    border-radius: 12px;
    padding: 8px 15px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.subcategory-item.active {
    background: #6c5ce7;
    color: white;
}

/* 二级分类选择模态框样式 */
.subcategory-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subcategory-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.subcategory-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    max-height: 80vh;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.subcategory-modal-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subcategory-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.subcategory-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #7f8c8d;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.subcategory-modal-close:hover {
    background: #f0f0f0;
    color: #2c3e50;
}

.subcategory-modal-body {
    display: grid;
    padding: 20px;
    overflow-y: auto;
    max-height: calc(80vh - 80px);
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.subcategory-modal-item {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 10px 10px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
    text-align: center;
}

.subcategory-modal-item:hover {
    border-color: #6c5ce7;
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.2);
}

.subcategory-modal-item:active {
    transform: translateY(0);
}

/* 栏目样式 */
.section {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-margin-top: 100px;
}

.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #6c5ce7;
    font-size: 22px;
}

/* 栏目海报样式 */
.section-poster {
    width: 100%;
    height: 120px;
    border-radius: 15px;
    margin: 20px 0;
    background-size: cover;
    background-position: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 不同布局样式 */
.app-grid-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.app-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.app-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* 卡片样式 */
.app-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.app-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

.app-content {
    padding: 18px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.app-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-note {
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 15px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.app-button {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 0;
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(108, 92, 231, 0.3);
}

.app-button:hover {
    background: linear-gradient(135deg, #5b4cd8 0%, #8e7df7 100%);
    box-shadow: 0 6px 15px rgba(108, 92, 231, 0.4);
    transform: translateY(-2px);
}

.app-button:active {
    transform: translateY(0);
}

/* 商用区工具卡片样式 */
.premium-app-card .app-button {
    background: linear-gradient(135deg, #ff7675 0%, #fd79a8 100%);
    box-shadow: 0 4px 10px rgba(255, 118, 117, 0.3);
}

.premium-app-card .app-button:hover {
    background: linear-gradient(135deg, #e66767 0%, #e84393 100%);
    box-shadow: 0 6px 15px rgba(255, 118, 117, 0.4);
}

/* 最新上架小工具特殊样式 */
.new-tool-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.new-tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.new-tool-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.new-tool-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.new-tool-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.new-tool-note {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.5;
}

.new-tool-button {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(108, 92, 231, 0.3);
    margin-top: auto;
}

.new-tool-button:hover {
    background: linear-gradient(135deg, #5b4cd8 0%, #8e7df7 100%);
    box-shadow: 0 6px 15px rgba(108, 92, 231, 0.4);
    transform: translateY(-2px);
}

/* 收藏按钮样式 */
.favorite-star {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ccc;
    font-size: 16px;
    z-index: 10;
    pointer-events: auto;
}

.favorite-star:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.1);
}

.favorite-star.active {
    color: #ff0000;
    background: rgba(255, 255, 255, 0.95);
}

/* 单列布局的特殊样式 */
.app-grid-1 .app-card {
    flex-direction: row;
    align-items: center;
    padding: 15px;
}

.app-grid-1 .app-image {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    margin-right: 15px;
}

.app-grid-1 .app-content {
    padding: 0;
    flex: 1;
}

.app-grid-1 .app-button {
    padding: 8px 15px;
    width: auto;
    min-width: 90px;
}

/* 定制流程模态框 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    display: none;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #7f8c8d;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background-color: #f5f5f5;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.modal-step {
    margin-bottom: 20px;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.step-description {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.custom-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e5e9;
    border-radius: 10px;
    font-size: 14px;
    background: #f8f9fa;
    margin-bottom: 15px;
}

.custom-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e5e9;
    border-radius: 10px;
    font-size: 14px;
    background: #f8f9fa;
    margin-bottom: 15px;
    min-height: 120px;
    resize: vertical;
}

.contact-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
}

.contact-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-detail {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.qr-code {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background: #f0f2f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
    font-size: 14px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150"><rect width="150" height="150" fill="%23f0f2f5"/><text x="75" y="75" font-family="Arial" font-size="12" text-anchor="middle" fill="%237f8c8d">微信二维码占位图</text></svg>');
    background-repeat: no-repeat;
    background-position: center;
}

.modal-button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-button {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    box-shadow: 0 4px 10px rgba(108, 92, 231, 0.3);
}

.submit-button:hover {
    background: linear-gradient(135deg, #5b4cd8 0%, #8e7df7 100%);
    box-shadow: 0 6px 15px rgba(108, 92, 231, 0.4);
    transform: translateY(-2px);
}

/* 积分规则模态框 - 更新内容，简化版 */
.points-rules-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    display: none;
}

.points-rules-content {
    background: white;
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

.points-rules-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.rules-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 13px;
}

.rules-table th, .rules-table td {
    border: 1px solid #e1e5e9;
    padding: 10px;
    text-align: left;
}

.rules-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.rules-table .header-row th {
    background: #6c5ce7;
    color: white;
    text-align: center;
}

.rules-table .benefit {
    font-weight: 600;
    color: #2c3e50;
    text-align: left;
}

/* 会员升级模态框 - 更新后的版本，恢复礼包内容 */
.upgrade-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    display: none;
}

.upgrade-content {
    background: white;
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.upgrade-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.upgrade-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.upgrade-option {
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.upgrade-option.selected {
    border-color: #6c5ce7;
    background: #f8f9ff;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.option-name {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
}

.option-price {
    font-size: 18px;
    font-weight: 700;
    color: #6c5ce7;
}

.option-description {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.option-features {
    list-style: none;
    padding-left: 0;
}

.option-features li {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.option-features li i {
    color: #00b894;
}

.price-options {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.price-option {
    flex: 1;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.price-option.selected {
    background: #6c5ce7;
    color: white;
}

.price-option .duration {
    font-size: 14px;
    font-weight: 600;
}

.price-option .price {
    font-size: 16px;
    font-weight: 700;
    margin-top: 5px;
}

.upgrade-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    box-shadow: 0 4px 10px rgba(108, 92, 231, 0.3);
}

.upgrade-button:hover {
    background: linear-gradient(135deg, #5b4cd8 0%, #8e7df7 100%);
    box-shadow: 0 6px 15px rgba(108, 92, 231, 0.4);
    transform: translateY(-2px);
}

/* 积分兑换提示 */
.points-tip {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
    font-size: 14px;
    color: #7f8c8d;
}

.points-tip .highlight {
    color: #6c5ce7;
    font-weight: 600;
}

/* 创作者协议 */
.creator-agreement {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    max-height: 200px;
    overflow-y: auto;
}

.agreement-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.agreement-intro {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.agreement-section {
    margin-bottom: 15px;
}

.agreement-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.agreement-section-content {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.agreement-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 15px 0;
}

.agreement-checkbox input {
    margin-top: 3px;
}

.agreement-checkbox label {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}



/* 分类浏览模态框 */
.category-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    display: none;
}

.category-modal-content {
    background: white;
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.category-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.category-modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.category-modal-item {
    background: white;
    border-radius: 15px;
    padding: 15px 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.category-modal-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-modal-item.active {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    border-color: #6c5ce7;
}

/* 报错/投诉样式 */
.complaint-section {
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin: 20px auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.complaint-title {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.complaint-title i {
    transition: transform 0.3s ease;
}

.complaint-title.expanded i {
    transform: rotate(180deg);
}

.complaint-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    display: none;
}

.complaint-form.expanded {
    display: flex;
}

.complaint-select {
    padding: 12px 15px;
    border: 1px solid #e1e5e9;
    border-radius: 10px;
    font-size: 14px;
    background: #f8f9fa;
    margin-bottom: 15px;
}

.complaint-input {
    padding: 12px 15px;
    border: 1px solid #e1e5e9;
    border-radius: 10px;
    font-size: 14px;
    background: #f8f9fa;
}

.complaint-button {
    background: linear-gradient(135deg, #e17055 0%, #fd79a8 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(225, 112, 85, 0.3);
}

.complaint-button:hover {
    background: linear-gradient(135deg, #d35400 0%, #e84393 100%);
    box-shadow: 0 6px 15px rgba(225, 112, 85, 0.4);
    transform: translateY(-2px);
}

/* 会员管理模态框 */
.member-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    display: none;
}

.member-content {
    background: white;
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.member-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.member-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.member-info {
    flex: 1;
}

.member-name {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.member-level {
    font-size: 14px;
    color: #7f8c8d;
    display: flex;
    align-items: center;
    gap: 5px;
}

.member-level.vip {
    color: #fdcb6e;
    font-weight: 600;
}

.member-level.regular {
    color: #6c5ce7;
    font-weight: 600;
}

.member-level.guest {
    color: #7f8c8d;
}

.member-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.stat-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #6c5ce7;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: #7f8c8d;
}

.member-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.member-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.member-section-title i {
    color: #6c5ce7;
}

.member-feature-list {
    list-style: none;
    padding-left: 0;
}

.member-feature-list li {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.member-feature-list li i {
    color: #00b894;
}

.member-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.member-action-button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.member-action-button.primary {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    box-shadow: 0 4px 10px rgba(108, 92, 231, 0.3);
}

.member-action-button.primary:hover {
    background: linear-gradient(135deg, #5b4cd8 0%, #8e7df7 100%);
    box-shadow: 0 6px 15px rgba(108, 92, 231, 0.4);
    transform: translateY(-2px);
}

.member-action-button.secondary {
    background: #f0f2f5;
    color: #555;
}

.member-action-button.secondary:hover {
    background: #e4e7ea;
    transform: translateY(-2px);
}

/* 积分兑换区域 */
.points-exchange {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    color: white;
}

.exchange-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.exchange-rate {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.exchange-action {
    display: flex;
    gap: 10px;
}

.exchange-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.9);
}

.exchange-button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.9);
    color: #ff7675;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exchange-button:hover {
    background: white;
    transform: translateY(-2px);
}

/* 联盟会员推广区 */
.alliance-section {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    color: white;
}

.alliance-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alliance-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.alliance-stat {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.alliance-stat-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.alliance-stat-label {
    font-size: 13px;
    opacity: 0.9;
}

.withdrawal-form {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    color: #333;
}

.withdrawal-form-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #6c5ce7;
}

.withdrawal-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 10px;
    background: white;
}

.account-type {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.account-type-button {
    flex: 1;
    padding: 10px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    background: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.account-type-button.selected {
    border-color: #6c5ce7;
    background: #f8f9ff;
    color: #6c5ce7;
}

.withdrawal-button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(108, 92, 231, 0.3);
}

.withdrawal-button:hover {
    background: linear-gradient(135deg, #5b4cd8 0%, #8e7df7 100%);
    box-shadow: 0 6px 15px rgba(108, 92, 231, 0.4);
    transform: translateY(-2px);
}

.footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px 0;
    color: #7f8c8d;
    font-size: 13px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* 响应式设计 */
@media (max-width: 400px) {
    .app-grid-2, .app-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .app-grid-1 .app-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .app-grid-1 .app-image {
        margin: 0 0 15px 0;
    }
    
    .app-grid-1 .app-button {
        width: 100%;
    }
    
    .category-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-modal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .price-options {
        flex-direction: column;
    }
    
    .member-stats {
        grid-template-columns: 1fr;
    }
    
    .alliance-stats {
        grid-template-columns: 1fr;
    }
    
    .member-actions {
        flex-direction: column;
    }
    
    .rules-table {
        font-size: 12px;
    }
    
    .rules-table th, .rules-table td {
        padding: 8px 5px;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section {
    animation: fadeIn 0.6s ease forwards;
}

.section:nth-child(2) { animation-delay: 0.1s; }
.section:nth-child(3) { animation-delay: 0.2s; }
.section:nth-child(4) { animation-delay: 0.3s; }
.section:nth-child(5) { animation-delay: 0.4s; }
.section:nth-child(6) { animation-delay: 0.5s; }

/* 新增样式：定制门槛提示 */
.custom-threshold {
    background: #f8f9ff;
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    border-left: 4px solid #6c5ce7;
}

.custom-threshold-title {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-threshold-content {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.threshold-highlight {
    color: #6c5ce7;
    font-weight: 600;
}

.custom-ticket {
    display: inline-block;
    background: linear-gradient(135deg, #ff7675 0%, #fd79a8 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin: 0 3px;
}

.custom-resources {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.resource-item {
    text-align: center;
}

.resource-value {
    font-size: 24px;
    font-weight: 700;
    color: #6c5ce7;
}

.resource-label {
    font-size: 13px;
    color: #7f8c8d;
    margin-top: 5px;
}

/* 升级礼包提示 */
.gift-badge {
    display: inline-block;
    background: #ff7675;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
    margin-left: 5px;
}

/* 价格选项中的礼包提示 */
.price-option-gift {
    font-size: 10px;
    color: #ff7675;
    margin-top: 3px;
    font-weight: 600;
}

/* 积分有效期提示 */
.points-expiry {
    font-size: 12px;
    color: #e17055;
    margin-top: 5px;
}

.points-expiry i {
    margin-right: 5px;
}

/* 升级礼包详情 - 新增 */
.gift-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    display: none;
}

.gift-details-content {
    background: white;
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.gift-title {
    font-size: 16px;
    font-weight: 700;
    color: #6c5ce7;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gift-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gift-item {
    background: white;
    border-radius: 8px;
    padding: 10px;
    flex: 1;
    min-width: 120px;
    text-align: center;
    border: 1px solid #e1e5e9;
}

.gift-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.gift-item-value {
    font-size: 16px;
    font-weight: 700;
    color: #6c5ce7;
}

/* 创作奖励提示 */
.creator-reward {
    background: linear-gradient(135deg, #fdcb6e 0%, #fd79a8 100%);
    border-radius: 10px;
    padding: 15px;
    color: white;
    margin: 15px 0;
    text-align: center;
}

.creator-reward-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.creator-reward-desc {
    font-size: 14px;
    opacity: 0.9;
}

/* 创作激励说明模态框 */
.creator-info-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    display: none;
}

.creator-info-content {
    background: white;
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

/* 页面折叠区域样式 */
.collapsible-section {
    margin-bottom: 15px;
}

.collapsible-header {
    background: white;
    border-radius: 15px 15px 0 0;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.collapsible-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.collapsible-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.collapsible-header i {
    color: #6c5ce7;
    transition: transform 0.3s ease;
}

.collapsible-header.collapsed i {
    transform: rotate(0deg);
}

.collapsible-header.expanded i {
    transform: rotate(180deg);
}

.collapsible-content {
    background: white;
    border-radius: 0px 0px 15px 15px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.collapsible-content.expanded {
    padding: 20px;
    max-height: 1000px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* 折叠版栏目样式 */
.collapsible-app-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.collapsible-app-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.collapsible-app-grid-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

/* 创作激励计划样式 - 新增 */
.creator-plan-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.creator-plan-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.creator-plan-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #6c5ce7;
    margin: 20px 0 10px;
    padding-left: 10px;
    border-left: 4px solid #6c5ce7;
}

.creator-plan-content {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.6;
}

.creator-plan-list {
    padding-left: 20px;
    margin: 10px 0;
}

.creator-plan-list li {
    margin-bottom: 8px;
    color: #555;
}

.creator-plan-highlight {
    background: linear-gradient(135deg, #fdcb6e 0%, #fd79a8 100%);
    border-radius: 10px;
    padding: 15px;
    color: white;
    text-align: center;
    margin: 15px 0;
}

.creator-plan-highlight-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.creator-plan-note {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 10px;
    padding-left: 10px;
    border-left: 2px solid #fdcb6e;
}