/* 订阅部分增强样式 */
.subscription-packages {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.package-card {
    flex: 1;
    min-width: 250px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.package-header {
    padding: 16px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e8eaed;
    text-align: center;
}

.package-type {
    font-size: 18px;
    font-weight: 600;
    color: #202124;
    margin: 0;
}

.package-label {
    display: inline-block;
    padding: 4px 8px;
    background-color: #e8f0fe;
    color: #1a73e8;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 8px;
}

.package-price {
    padding: 24px 16px;
    text-align: center;
    border-bottom: 1px solid #e8eaed;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #202124;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-amount .currency {
    font-size: 24px;
    margin-right: 4px;
}

.price-period {
    font-size: 14px;
    color: #5f6368;
    margin-top: 4px;
}

.package-features {
    padding: 16px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: #3c4043;
}

.feature-item i {
    color: #34a853;
    margin-right: 8px;
    font-size: 16px;
    flex-shrink: 0;
}

.package-footer {
    padding: 16px;
    text-align: center;
}

.popular-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ea4335;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.subscription-guide {
    background-color: #e8f0fe;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.subscription-guide h4 {
    color: #1a73e8;
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.subscription-guide h4 i {
    font-size: 20px;
}

.subscription-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.subscription-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-circle {
    width: 32px;
    height: 32px;
    background-color: #1a73e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h5 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #202124;
}

.step-content p {
    margin: 0;
    font-size: 14px;
    color: #5f6368;
}

.subscription-tips {
    background-color: #fef7e0;
    border-radius: 8px;
    padding: 16px;
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.subscription-tips i {
    color: #fbbc05;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.subscription-tips p {
    margin: 0;
    font-size: 14px;
    color: #3c4043;
}
