/* 继承通用样式 */
@import url('../common.css');

/* 入口卡片样式 */
.entrance-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.entrance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26,35,126,0.15);
}

.entrance-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.entrance-icon i {
    font-size: 2rem;
    color: white;
}

.entrance-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.entrance-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.entrance-card ul {
    margin-bottom: 1.5rem;
}

.entrance-card ul li {
    margin-bottom: 0.5rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.entrance-card ul li i {
    color: #4CAF50;
}

/* 操作指引步骤样式 */
.guide-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #1a237e, #0d47a1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-grow: 1;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.step-content p {
    color: #666;
    margin-bottom: 1rem;
}

.step-content ul li {
    margin-bottom: 0.5rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-content ul li i {
    color: #4CAF50;
}

/* 注意事项卡片样式 */
.tips-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26,35,126,0.15);
}

.tips-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tips-icon i {
    font-size: 1.8rem;
    color: white;
}

.tips-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.tips-card ul li {
    margin-bottom: 0.5rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tips-card ul li i {
    color: #4CAF50;
}

/* FAQ样式 */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.faq-item p {
    color: #666;
    margin: 0;
} 