/* 爱奇艺自动续费页面样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
}

body {
    background-color: #f9fafb;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 400px;
    margin: 40px auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.header {
    background: linear-gradient(135deg, #00BE06, #00a854);
    color: white;
    padding: 24px;
    text-align: center;
}

.header h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

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

.content {
    padding: 24px;
}

.price-section {
    text-align: center;
    margin-bottom: 24px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.price {
    font-size: 32px;
    font-weight: bold;
    color: #00BE06;
}

.price-unit {
    font-size: 16px;
    color: #666;
}

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

.benefits {
    margin: 20px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.benefit-icon {
    color: #00BE06;
    margin-right: 8px;
    font-weight: bold;
}

.agreement {
    margin: 24px 0;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
}

.agreement-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.agreement-content {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.agreement-content p {
    margin-bottom: 8px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin: 16px 0;
}

.checkbox {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    accent-color: #00BE06;
    cursor: pointer;
}

.checkbox-label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.checkbox-label a {
    color: #00BE06;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.pay-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #00BE06, #00a854);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pay-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.pay-button:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 190, 6, 0.3);
}

.footer {
    text-align: center;
    padding: 16px;
    font-size: 12px;
    color: #999;
    border-top: 1px solid #eee;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .container {
        margin: 20px 16px;
        border-radius: 8px;
    }
    
    .header {
        padding: 20px;
    }
    
    .header h1 {
        font-size: 20px;
    }
    
    .content {
        padding: 20px;
    }
    
    .price {
        font-size: 28px;
    }
}