/* CONTACT页面专用样式 */


/* 页面特定样式 */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 主内容区域 */

/* 主内容区域 */

.thumb-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: #e74c3c;
}

.breadcrumb-item i {
    font-size: 12px;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #999;
}

/* 联系页面内容 */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 40px;
}

/* 左侧联系信息 */
.contact-info-section h1 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-info-section .subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.5;
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.icon-circle i {
    font-size: 18px;
    color: #666;
}

.icon-image {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.contact-item i {
    font-size: 20px;
    color: #666;
    margin-top: 2px;
    min-width: 20px;
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.contact-text span {
    color: #666;
    line-height: 1.5;
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* 公司信息 */
.company-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 20px 0;
}

.company-logo .logo-text {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: lowercase;
    font-style: italic;
    margin-top: -10px;
    position: relative;
    top: -40px;
    left: 30px;
}

.company-name {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-top: -20px;
}

/* 二维码区域 */
.qr-codes {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.qr-code-header {
    text-align: center;
    margin-bottom: 10px;
}

.qr-code-header .company-title {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.qr-code-header .company-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-transform: lowercase;
}

.qr-image {
    width: 180px;
    height: 180px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.wechat-qr {
    background: transparent;
    width: 180px !important;
    height: 180px !important;
    border: none;
    box-shadow: none;
    margin-top: 0;
}

/* .wechat-qr::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.wechat-qr i {
    position: relative;
    z-index: 2;
    color: #8e44ad;
}

.whatsapp-qr {
    background: #fff;
    width: 160px !important;
    margin-top: 0;
}

.whatsapp-qr i {
    color: #25d366;
    font-size: 45px;
}

/* 确保二维码图片尺寸一致 */
.qr-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}

.wechat-qr img,
.whatsapp-qr img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}

.qr-code span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: capitalize;
}

/* 右侧联系表单 */
.contact-form-section h1 {
    font-size: 25px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-form-section .subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.6rem !important;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #f8f9fa;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
    background: #fff;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    margin-top: 20px;
    margin-bottom: 20px;

}

.submit-btn:hover {
    background: #333;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .contact-content {
        gap: 60px;
    }

    .contact-info-section h1,
    .contact-form-section h1 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info-section h1,
    .contact-form-section h1 {
        font-size: 24px;
    }

    .company-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .qr-codes {
        justify-content: center;
    }

    .main-content {
        padding: 00px 0 20px 0;
    }
}

@media (max-width: 480px) {

    .contact-info-section h1,
    .contact-form-section h1 {
        font-size: 20px;
    }

    .contact-item {
        gap: 10px;
    }

    .qr-image {
        width: 140px;
        height: 140px;
        font-size: 35px;
    }

    .wechat-qr {
        width: 140px !important;
        height: 140px !important;
        margin-top: 0;
    }

    .whatsapp-qr {
        width: 140px !important;
        height: 140px !important;
    }

    .wechat-qr i {
        font-size: 30px;
    }

    .whatsapp-qr i {
        font-size: 32px;
    }

    .qr-codes {
        gap: 20px;
    }
}