/* ==================== Info Page 页面样式 ==================== */

.info-page-container {
    min-height: 600px;
    background: rgba(249, 249, 249, 1);
    padding: 40px 20px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* ==================== 面包屑导航 ==================== */
.breadcrumb {
    margin-bottom: 32px;
    font-size: 14px;
}

.breadcrumb-item {
    color: rgba(119, 119, 119, 1);
    cursor: pointer;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: rgba(1, 84, 152, 1);
}

.breadcrumb-item.active {
    color: rgba(51, 51, 51, 1);
    cursor: default;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: rgba(119, 119, 119, 1);
}

/* ==================== 页面标题 ==================== */
.page-header {
    margin-bottom: 40px;
}

.page-title {
    font-size: 32px;
    font-weight: 600;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 16px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: rgba(1, 84, 152, 1);
    border-radius: 2px;
}

/* ==================== 页面内容 ==================== */
.page-content {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.content-card {
    padding: 60px 80px;
    text-align: center;
}

/* ==================== 信息图标 ==================== */
.info-icon {
    margin: 0 auto 32px;
    width: 80px;
    height: 80px;
    color: rgba(1, 84, 152, 1);
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

/* ==================== 信息文本 ==================== */
.info-text {
    font-size: 20px;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 16px;
    font-weight: 500;
}

.info-description {
    font-size: 16px;
    color: rgba(119, 119, 119, 1);
    line-height: 1.8;
    margin-bottom: 48px;
}

/* ==================== 联系方式卡片 ==================== */
.contact-box {
    background: rgba(249, 249, 249, 1);
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 40px;
    text-align: left;
}

.contact-title {
    font-size: 18px;
    font-weight: 600;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 24px;
    text-align: center;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 15px;
}

.contact-label {
    color: rgba(119, 119, 119, 1);
    min-width: 100px;
}

.contact-value {
    color: rgba(51, 51, 51, 1);
    font-weight: 500;
}

/* ==================== 返回按钮 ==================== */
.back-button {
    background: rgba(1, 84, 152, 1);
    color: white;
    border: none;
    padding: 12px 48px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.back-button:hover {
    background: rgba(1, 64, 132, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 84, 152, 0.3);
}

.back-button:active {
    transform: translateY(0);
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 768px) {
    .info-page-container {
        padding: 20px 10px;
    }

    .content-wrapper {
        padding: 0;
    }

    .page-title {
        font-size: 24px;
    }

    .content-card {
        padding: 40px 20px;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 24px;
    }

    .info-text {
        font-size: 18px;
    }

    .info-description {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .contact-box {
        padding: 24px 16px;
        margin-bottom: 32px;
    }

    .contact-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .contact-item {
        font-size: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .contact-label {
        min-width: auto;
    }

    .back-button {
        padding: 10px 36px;
        font-size: 14px;
    }
}

