/* 联系我们页面样式 */

.contact-main {
    padding: 40px 0;
    background-color: #fff;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* 左侧联系信息样式 */
.contact-info-column {
    flex: 1;
    min-width: 300px;
}

.contact-info-column h2 {
    font-size: 18px;
    color: #30b576;
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: normal;
}

.contact-detail {
    margin-bottom: 20px;
}

.contact-detail h3 {
    font-size: 16px;
    margin-bottom: 5px;
    display: inline-block;
    color: #333;
    font-weight: 700;
}

.contact-detail p {
    line-height: 1.6;
    color: #333;
    margin-bottom: 8px;
    font-size: 16px;
    margin-left: 0;
}

/* 右侧表单样式 */
.contact-form-column {
    flex: 1;
    min-width: 300px;
}

.contact-form-wrapper {
    background-color: #fff;
}

.contact-form-wrapper h2 {
    font-size: 18px;
    color: #30b576;
    margin-bottom: 10px;
    font-weight: normal;
}

.contact-form-wrapper p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #30b576;
}

.contact-form-wrapper h3 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
    font-weight: normal;
}

.contact-form {
    width: 100%;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #30b576;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #b3e3bc;
    color: #333;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #30b576;
    color: #fff;
}

/* 响应式样式 */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-column,
    .contact-form-column {
        width: 100%;
    }
} 