
/* 页面容器 */
.page-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
}



/* 联系我们模块容器 */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}


/* 左侧公众号区域 - 修改置顶样式 */
.qrcode-module {
    flex: 1;
    min-width: 320px;
    background-color: #fff;
    padding: 50px 40px;
    border-radius: 10px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 移除justify-content: center，改为flex-start实现置顶 */
    justify-content: flex-start;
    border: 1px solid #f0f0f0;
}

/* 响应式适配 - 移动端可保持居中（如需） */
@media (max-width: 992px) {
    .qrcode-module {
        justify-content: center; /* 移动端恢复居中 */
    }
}

.qrcode-box {
    width: 260px;
    height: 260px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid #eaeaea;
    padding: 20px;
    border-radius: 8px;
}

.qrcode-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qrcode-desc {
    font-size: 20px;
    color: #222;
    text-align: center;
    font-weight: 600;
    margin-bottom: 8px;
}

.qrcode-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* 右侧信息模块容器 */
.info-modules {
    flex: 2;
    min-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 通用信息模块样式 */
.info-module {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.info-module:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.module-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 3px solid #f8f8f8;
    position: relative;
}

.module-header::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #c00;
}

.module-icon {
    width: 50px;
    height: 50px;
    background-color: #c00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.module-icon i {
    color: #fff;
    font-size: 24px;
}

.module-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
}

.module-content {
    font-size: 19px;
    color: #555;
    line-height: 1.8;
    padding-left: 70px;
}

.work-time {
    font-size: 16px;
    color: #888;
    margin-top: 10px;
    font-weight: 400;
}

/* 微信客服模块特殊样式 */
.wechat-module .module-content {
    padding-left: 0;
}

.wechat-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-around;
    padding: 10px 0;
}

.wechat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    width: 240px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.wechat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.wechat-qrcode {
    width: 140px;
    height: 140px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 10px;
}

.wechat-qrcode img {
    width: 120px;
    height: 120px;
}

.wechat-id {
    font-size: 17px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.wechat-work-time {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.copy-btn {
    padding: 10px 25px;
    background-color: #c00;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s;
    font-weight: 600;
    letter-spacing: 1px;
}

.copy-btn:hover {
    background-color: #a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192, 0, 0, 0.2);
}

/* 响应式适配 */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .info-modules {
        min-width: 100%;
    }
    
    .wechat-cards {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .module-content {
        padding-left: 0;
        font-size: 17px;
    }
    
    .wechat-card {
        width: 100%;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .info-module {
        padding: 30px 20px;
    }
}