/* 会员页面特定样式 */

/* 会员页面英雄区 */
.membership-hero {
    background-color: #1e3a8a;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.membership-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
}

.membership-description {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* 会员计划部分样式 */
.membership-plans-section {
    padding: 80px 0;
    background-color: white;
}

.membership-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* 会员特权部分样式 */
.membership-benefits {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(30, 58, 138, 0.1);
    border-radius: 50%;
}

.benefit-img {
    width: 40px;
    height: 40px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.benefit-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* 会员评价部分样式 */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonial-slider {
    display: flex;
    width: 300%;
    transition: transform 0.5s ease;
    margin-top: 40px;
}

.testimonial-card {
    flex: 1;
    padding: 0 15px;
}

.testimonial-content {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 20px;
    height: 20px;
    background-color: #f8f9fa;
    transform: rotate(45deg);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-title {
    font-size: 14px;
    color: #666;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #1e3a8a;
}

/* FAQ部分样式 */
.faq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-icon {
    font-size: 20px;
    color: #1e3a8a;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* 加入表单部分样式 */
.join-cta {
    padding: 80px 0;
    background-color: white;
}

.join-form {
    max-width: 700px;
    margin: 40px auto 0;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1e3a8a;
    outline: none;
}

.radio-group {
    display: flex;
    flex-direction: column;
}

.radio-label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    margin-right: 10px;
}

.radio-text {
    font-size: 14px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
}

.checkbox-text {
    font-size: 14px;
}

.checkbox-text a {
    color: #1e3a8a;
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    margin-top: 10px;
}

/* 响应式样式 */
@media (max-width: 1024px) {
    .membership-plans {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .membership-title {
        font-size: 32px;
    }
    
    .membership-plans {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slider {
        flex-direction: column;
        width: 100%;
    }
    
    .testimonial-card {
        margin-bottom: 30px;
    }
    
    .join-form {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .membership-hero {
        padding: 60px 0;
    }
    
    .membership-description {
        font-size: 16px;
    }
    
    .radio-group {
        flex-direction: column;
    }
} 