/* 公共底部样式 - Common Footer Styles */
/* 所有页面共用的底部联系信息区域样式 */

/* 底部联系信息区域 */
.contact-info-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 0 10px 0;
    color: white;
    position: relative;
    border-top: 6px solid #4d208a;
}

.contact-content {
    max-width: 1200px;
    width: 100%;
    color: white;
    padding: 0 8%;
    margin: 0 auto;
}

/* 第一行：Logo */
.footer-logo {
    margin-bottom: 10px;
}

.footer-logo img {
    height: 35px;
    width: auto;
    display: block;
}

/* 第二行：左右布局 */
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 60px;
}

/* 左侧：联系信息和版权 */
.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    flex: 1;
}

.footer-contact-info {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.contact-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    padding-left: 15px;
}

.contact-group::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1.5px;
    background-color: white;
}

.contact-label {
    font-size: 14px;
    font-weight: 500;
    font-family: 'SweiSpringSugar', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    margin-bottom: 3px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: relative;
    padding-top: 8px;
}

.contact-details::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 1.5px;
    background-color: white;
}

.contact-details p {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
    font-family: 'SweiSpringSugar', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

/* 右侧：二维码 */
.footer-right {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 8px;
}

.footer-right::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.5px;
    background-color: white;
}

.qrcode-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.qrcode-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.qrcode-label {
    color: white;
    font-size: 12px;
    margin: 0;
    font-family: 'SweiSpringSugar', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    text-align: center;
    white-space: nowrap;
}

/* 版权信息 */
.copyright-info {
    text-align: left;
    font-size: 12px;
    opacity: 0.8;
}

.copyright-info p {
    margin: 0;
    font-family: 'SweiSpringSugar', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}
