/* 页脚主容器 */
footer {
    padding-top: 3em;
    font-size: 0.8em;
    text-shadow: none;
    text-align: center;
}

.webFooter {
    width: 100%;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.home-footer {
    width: 100%;
}

/* 页脚容器 - 深蓝色渐变背景 */
.footer-container {
    background: linear-gradient(to right, #000000, #1e3c72, #000000);
    color: #ffffff;
    position: relative;
}

/* 主内容区域 */
.footer-main {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    position: relative;
}

.footer-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}


/* 第一列：LOGO和公司信息 */
/*.footer-column-1 {*/
/*    flex: 0 0 300px;*/
/*    padding-left: 0;*/
/*}*/

.brand-logo {
    /*width: 280px;*/
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

.company-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.company-name-en {
    font-size: 24px;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.company-name-zh {
    font-size: 28px;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* 第二列：地址信息 */
/*.footer-column-2 {*/
/*    flex: 0 0 320px;*/
/*    border-left: 1px solid rgba(255, 255, 255, 0.1);*/
/*    border-right: 1px solid rgba(255, 255, 255, 0.1);*/
/*}*/

.address-group {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.address-item {
    display: flex;
    flex-direction: column;
}

.address-title {
    font-size: 20px;
    color: #ffffff;
    margin: 0;
    padding-bottom: 10px;
    position: relative;
    display: inline-block;
    text-align: left;
}

.address-title::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -8px;
    width: 4px;
    height: 22px;
    background: linear-gradient(90deg, #ca171d, #ff6633);
}

.address-content {
    display: flex;
    flex-direction: column;
}

.address-line {
    font-size: 15px;
    color: #fff;
    line-height: 1.5;
    margin: 0;
    display: flex;
    align-items: flex-start;
}

/* 第三列：二维码 */
.qrcode-group {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.qrcode-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.qrcode-title {
    font-size: 16px;
    color: #ffffff;
    margin: 0;
    text-align: center;
    width: 100%;
}

.qrcode-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.qrcode-content:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.qrcode-img {
    width: 100px;
    height: 100px;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.qrcode-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qrcode-desc {
    font-size: 14px;
    margin: 0;
    text-align: center;
}

/* 第四列：快速链接 */
.footer-column-4 {
    flex: 0 0 280px;
    padding-right: 0;
}

.links-section {
    display: flex;
    flex-direction: column;
    position: relative;
}

.links-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -8px;
    width: 4px;
    height: 22px;
    background: linear-gradient(90deg, #ca171d, #ff6633);
}

.links-title {
    font-size: 20px;
    color: #ffffff;
    margin: 0;
    padding-bottom: 10px;
    position: relative;
    display: inline-block;
    text-align: left;
}

.links-group {
    display: flex;
    /*gap: 40px;*/
    /*padding-left: 15px;*/
}

.links-column {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}

.link-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s
    ease;
    position: relative;
    line-height: 2.5;
    letter-spacing: 0.5px;
}

.link-item:hover {
    color: #ca171d;
    transform: translateX(5px);
    filter: brightness(1.2);
}

.link-item::before {
    display: none; /* 去掉原来的箭头图标 */
}

/* 底部备案信息 */
.footer-bottom {
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.record-info {
    font-size: 11px;
    padding: 10px;
}

.record-link {
    color: #a0b1d3;
    position: relative;
    padding-right: 40px;
}

.record-link::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
}

.copyright {
    color: #a0b1d3;
    letter-spacing: 0.5px;
}