/* 联系我们页面样式 */

.contact-wrapper {
    background-color: #fff;
    padding: 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 介绍文字 */
.contact-intro {
    text-align: left;
    margin-bottom: 30px;
}

.contact-intro p {
    font-size: 18px;
    line-height: 32px;
    color: #333;
    margin: 0;
    text-align: left;
}

/* 政策副标题 */
.policy-subtitle {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

/* 政策条款列表 */
.policy-list {
    margin-bottom: 40px;
}

.policy-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    line-height: 1.8;
}

.policy-number {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-right: 10px;
    flex-shrink: 0;
    line-height: 1.8;
}

.policy-text {
    font-size: 16px;
    color: #333;
    margin: 0;
    line-height: 1.8;
    flex: 1;
}

/* 退换货政策页面布局 */
.return-policy-content {
    width: 100%;
    margin-bottom: 60px;
    padding: 0;
}

/* 如果内容区域在退换货政策页面中，改为垂直布局 */
.return-policy-content .contact-content {
    display: block;
    margin-bottom: 0;
    gap: 0;
}

.return-policy-image {
    width: 100%;
    margin-top: 0;
    margin-bottom: 60px;
}

.return-policy-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 内容区域 */
.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 60px;
}

/* 退换货政策页面：不使用flex布局 */
.return-policy-content .contact-content {
    display: block;
    margin-bottom: 0;
    gap: 0;
}

/* 左侧联系信息 */
.contact-left {
    flex: 1;
    max-width: 500px;
}

.contact-info-list {
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.contact-info-item .contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
    object-fit: contain;
}

.contact-info-item .info-label,.contact-info-item .info-label a {
    min-width: 90px;
    color: #999;
}

.contact-info-item .info-value {
    color: #333;
    flex: 1;
}

.contact-info-item .info-value a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-item .info-value a:hover {
    color: #d4a574;
}

/* 二维码区域 */
.contact-qrcodes {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
}

.qrcode-item {
    text-align: center;
}

.qrcode-item img {
    width: 120px;
    height: 120px;
    display: block;
    margin-bottom: 6px;
    border: 1px solid #e5e5e5;
}

.qrcode-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* 右侧图片 */
.contact-right {
    flex: 1;
    max-width: 500px;
}

.contact-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 地图部分 */
.contact-map-section {
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: 0;
    margin-bottom: 60px;
}

.contact-map {
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10;
}

.map-info-box {
    background-color: #fff;
    padding: 20px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 300px;
}

.map-info-box h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.map-info-box p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 响应式设计 */
@media screen and (max-width: 1200px) {
    .contact-content {
        gap: 40px;
    }
}

@media screen and (max-width: 992px) {
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-left {
        max-width: 100%;
    }
    
    .contact-right {
        max-width: 100%;
        order: -1;
    }
    
    .contact-qrcodes {
        justify-content: center;
    }
    
    .map-info-box {
        min-width: 250px;
        padding: 15px 20px;
    }
    
    .map-info-box h2 {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .contact-intro {
        margin-bottom: 30px;
    }
    
    .contact-intro p {
        font-size: 14px;
        line-height: 24px;
    }
    
    .policy-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .policy-item {
        margin-bottom: 20px;
    }
    
    .policy-number {
        font-size: 14px;
    }
    
    .policy-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .return-policy-content {
        margin-bottom: 40px;
    }
    
    .contact-content {
        margin-bottom: 50px;
    }
    
    .contact-info-item {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .contact-info-item .contact-icon {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }
    
    .contact-info-item .info-label {
        min-width: 80px;
    }
    
    .contact-qrcodes {
        gap: 50px;
        flex-wrap: wrap;
    }
    
    .qrcode-item img {
        width: 100px;
        height: 100px;
    }
    
    .qrcode-item p {
        font-size: 12px;
    }
    
    .contact-map-section {
        height: 400px;
    }
    
    .map-info-box {
        min-width: 200px;
        padding: 12px 16px;
    }
    
    .map-info-box h2 {
        font-size: 18px;
    }
    
    .map-info-box p {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .contact-container {
        padding: 0 15px;
    }
    
    .contact-qrcodes {
        gap: 15px;
    }
    
    .qrcode-item img {
        width: 80px;
        height: 80px;
    }
    
    .contact-map-section {
        height: 350px;
    }
    
    .map-info-box {
        min-width: 180px;
        padding: 10px 12px;
    }
}

