/* ── 联系我们页面 ── */
.contact-page {
    padding: 50px 16px;
    max-width: 960px;
    margin: 0 auto;
}
.contact-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* ── 左侧表单 ── */
.contact-left {
    flex: 1;
}
.contact-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}
.contact-desc {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 24px;
}
.contact-form {
    max-width: 480px;
}
.form-row {
    margin-bottom: 12px;
}
.form-input {
    width: 100%;
    padding: 11px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #333;
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
}
.form-input:focus {
    border-color: #d4a017;
    box-shadow: 0 0 0 2px rgba(212,160,23,0.1);
}
.form-input::placeholder {
    color: #bbb;
}
.form-textarea {
    min-height: 120px;
    resize: vertical;
}
.form-btn {
    padding: 11px 28px;
    background: #d4a017;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.form-btn:hover {
    background: #e0b020;
}

/* ── 右侧信息栏 ── */
.contact-right {
    flex: 0 0 320px;
}
.info-card {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 28px 24px;
    border: 1px solid #eee;
}
.info-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #d4a017;
    display: inline-block;
}
.info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(212,160,23,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a017;
    font-size: 1rem;
    flex-shrink: 0;
}
.info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 4px;
}
.info-label {
    font-size: 0.7rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.info-value {
    font-size: 0.85rem;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

/* ── 分割线 + 微信区 ── */
.info-divider {
    height: 1px;
    background: #eee;
    margin: 20px 0 16px;
}
.info-wechat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.wechat-qr {
    width: auto;
    height: auto;
    border-radius: 6px;
    background: none;
    display: block;
    flex-shrink: 0;
}
.wechat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.wechat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}
.wechat-desc {
    font-size: 0.75rem;
    color: #999;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-right {
        flex: 1;
        width: 100%;
    }
}
