#line-nav-container {
    width: 100%;
    overflow: hidden;
    /* 隐藏超出容器的内容，用于动画 */
    height: 60px;
    /* 初始高度为0，动画时展开 */
    transition: height 0.5s ease-out;
    /* 高度变化的过渡动画 */
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 99 !important;
    /* border-bottom: 1px solid #000; */
    opacity: 0.95;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 0px 0px;
    animation: 0.5s ease 0s 1 normal none running startHeader;
}

@keyframes startHeader {
    0% {
        transform: translateY(-105%);
    }

    82% {
        transform: translateY(-105%);
    }

    100% {
        transform: translateY(0);
    }
}

#line-nav-container.active {

    height: 60px;
    /* 展开后的高度，可根据实际需求调整 */
}

.line-nav {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.line-logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 20px;
    cursor: pointer;
    position: relative;
}

nav ul li.active {
    font-weight: bold;
}

/* nav ul li.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
} */

.region {
    font-size: 14px;
}












.footer {
    background-color: #ffffff;
    padding: 20px;
}

.footer-top {
    width: 1200px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 20px;
}
.app-links{
    display: flex;
    align-items: center;
}
.app-links .line-icon {
    width: auto;
    height: 40px;
    margin-right: 10px;
}

.app-links a {
    margin-right: 15px;
    text-decoration: none;
    color: #333;
}

.qr-code img {
    width: 80px;
    height: 80px;
}

.qr-code p {
    text-align: center;
    margin-top: 5px;
    color: #333;
}

.footer-bottom {
    width: 1200px;

    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.left-links span,
.left-links a {
    margin-right: 15px;
    text-decoration: none;
    color: #666;
}

.right-links a {
    margin-left: 10px;
}

.right-links img {
    width: 24px;
    height: 24px;
}