.contact-page {
    padding: 30px 0; /* 从60px减少到30px */
}

.contact-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    gap: 30px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.info-card {
    flex: 1 0 300px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #333;
    text-align: left; /* 改为左对齐 */
}

.info-card {
    flex: 1 0 300px;
    background-color: transparent; /* 透明背景 */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); 
    padding: 25px;
    transition: none; /* 移除过渡效果 */
    text-align: left;
    border: 1px solid #eee;
}

/* 移除悬停效果 */
.info-card:hover {
    transform: none; /* 取消上移效果 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* 保持与普通状态相同的阴影 */
}

.contact-info h2 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #333;
    text-align: left; /* 改为左对齐 */
}

.info-section p {
    margin-bottom: 6px;
    color: #666;
    line-height: 1.6;
    padding-left: 36px;
    font-size: 16px;
    text-align: left; /* 确保段落左对齐 */
}

.contact-info h2 i,
.info-section h3 i {
    margin-right: 12px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    background: #fff1e6;
    color: #ff6634;
}

.info-section {
    margin-bottom: 25px;
}

.info-section h3 {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-section.address h3 {
    font-weight: 500;
}

.info-section p {
    margin-bottom: 6px;
    color: #666;
    line-height: 1.6;
    padding-left: 36px;
    font-size: 16px;
}

.contact-phone {
    display: flex;
    gap: 5px;
}

/* 删除了所有 .contact-form 相关样式 */

/* 响应式设计 */
@media (max-width: 1200px) {
    .contact-container {
        padding: 40px 20px;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .contact-info {
        width: 100%;
        flex: 0 0 100%;
    }
}


/* 验证码区域样式统一 */
.captcha-container label {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.captcha-container label i {
    margin-right: 12px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    background: #fff1e6;
    color: #ff6634;
}

.captcha-container input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    width: 120px;
}

.captcha-container input:focus {
    outline: none;
    border-color: #ff6634;
}

.captcha-code {
    margin: 0 10px;
    padding: 8px 15px;
    background-color: #fff1e6;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ff6634;
    user-select: none;
    min-width: 80px;
    text-align: center;
    border: 1px solid #ffe4d3;
}

.refresh-captcha {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    background: #fff1e6;
    color: #ff6634;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.refresh-captcha:hover {
    background-color: #ffe4d3;
}

.message-submit-btn {
    background-color: #ff6634;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.message-submit-btn:hover {
    background-color: #e65a2d;
}

/* 统一卡片样式 */
.info-card,
.message-board,
.captcha-code {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.info-card {
    padding: 25px;
    flex: 1 0 300px;
}

/* 统一卡片悬停效果 */
.info-card:hover,
.message-board:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: #eaeaea;
}

/* 统一验证码样式 */
.captcha-code {
    margin: 0 10px;
    padding: 8px 15px;
    background-color: #fff;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ff6634;
    user-select: none;
    min-width: 80px;
    text-align: center;
}

/* 统一输入框样式 */
.captcha-container input,
.message-form-group input,
.message-form-group textarea {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.captcha-container input:focus,
.message-form-group input:focus,
.message-form-group textarea:focus {
    border-color: #ff6634;
    box-shadow: 0 0 0 3px rgba(255, 102, 52, 0.1);
}