
/* 全局重置样式 - 去除所有元素的默认边距和内边距 */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  
/* 给所有元素加红色边框 */
        /* outline: 1px solid red !important;  */

            /* 其他样式... */

}
/* 全局重置与基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* 添加以下样式到contact.css文件中 */
/* 联系区域样式 */
.contact {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.contact-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;

}
.contact-box  h1{
    font-size: 40px;
    color: #212529;
    margin-bottom: 1rem
}

.subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.contact-box2 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1500px;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-box2 .left,
.contact-box2 .right {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .contact-box2 {
        flex-direction: column;
    }
}

.contact-box2 h3 {    
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #212529;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-box2 ul {
    list-style: none;
}

.contact-box2 li {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: #495057;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

/* 统一图标容器样式 */
.contact-box2 li>.icon-container,
.contact-box2 li>i[class^="fa-"] {
    /* 匹配所有Font Awesome图标 */
    display: inline-block;
    width: 20px;
    text-align: center;
    vertical-align: top;
    /* 确保顶部对齐 */
}

/* 地址文本容器样式 */
.address-text {
    display: inline-block;
    vertical-align: top;
    text-align: left;
}

.contact-box2 a {
    color: #0d6efd;    text-decoration: none;
    transition: color 0.2s;
}

.contact-box2 a:hover {
    color: #0a58ca;
    text-decoration: underline;
}

.qr-code {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
}

/* 图标样式 */
.fas, .fab {
    width: 20px;
    text-align: center;
    color: #6c757d;
}
