/* 价格页专用样式，仅保留局部覆盖，继承主站风格 */

.main-content-background {
    position: relative;
    background: url('../images/background.jpg') no-repeat center center/cover;
    min-height: 100vh;
    padding-top: 80px;
}
.main-content-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.price-hero {
    background: transparent;
    color: #fff;
    text-align: center;
    margin-top: 0;
    padding: 40px 0 40px 0;
}
.price-hero .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-top: 24px;
}
.price-hero .author {
    margin-top: 12px;
    color: #b0b8c1;
    font-size: 1em;
}

.plans-section {
    background: rgba(255,255,255,0.05);
    color: #fff;
    padding: 48px 0 32px 0;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}
.plans-section h2 {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 16px;
    color: #fff;
}
.plans-toggle {
    margin-bottom: 24px;
    color: #64ffda;
    font-size: 1em;
}
.plans {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.plan-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: rgba(23, 42, 69, 0.7);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-start;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 0;
}
.plan-card .plan-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 8px;
    color: #64ffda;
}
.plan-card .plan-price {
    font-size: 2.4em;
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff;
}
.plan-card .plan-desc {
    color: #ccd6f6;
    font-size: 1em;
    margin-bottom: 18px;
}
.plan-card .plan-btn, .plan-card button, .plan-card .btn-primary {
    background-color: #64ffda;
    color: #0a192f;
    border: none;
    border-radius: 24px;
    padding: 12px 32px;
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 18px;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(100,255,218,0.08);
}
.plan-card .plan-btn:hover, .plan-card button:hover, .plan-card .btn-primary:hover {
    background: #52e0c4;
    color: #0a192f;
}
.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}
.plan-card ul li {
    margin-bottom: 8px;
    color: #ccd6f6;
    font-size: 1em;
}
.plan-card ul li.disabled {
    color: #b0b8c1;
    text-decoration: line-through;
}
.plans-note {
    color: #888;
    font-size: 0.95em;
    margin-bottom: 0;
}

.features-section {
    background: rgba(255,255,255,0.05);
    padding: 48px 0 48px 0;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.features-section h3 {
    text-align: center;
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 18px;
    color: #fff;
}
.features-section .features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-item {
    width: 320px;
    background: none;
    color: #fff;
    margin-bottom: 24px;
    font-family: 'Roboto', sans-serif;
}
.feature-item .icon {
    font-size: 2em;
    margin-bottom: 8px;
    color: #22c55e;
}
.feature-item .feature-title {
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 1.1em;
}
.feature-item .feature-desc {
    color: #ccd6f6;
    font-size: 1em;
}

@media (max-width: 1024px) {
    .plans {
        flex-direction: column;
        align-items: center;
    }
    .features-section .features-list {
        flex-direction: column;
        align-items: center;
    }
}

footer {
    text-align: center; /* 文本居中 */
    padding: 2px 0; /* 上下内边距 */
    margin-top: 40px; /* 与上方内容的间距 */
    border-top: 1px solid #eee; /* 顶部边框线，可选 */
    font-size: 1.1em; /* 字体大小 */
    color: #ffffff; /* 字体颜色 */
}