#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;
    /* animatiadb38cbfon: 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 a{
    color: #000;
    text-decoration: none;
} */
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;
}




.page-status {
    margin-right: 10px;
    padding: 6px 12px;
    color: #333;
}

.page-index,
.page-pre,
.page-next,
.page-last,
.page-numbar {
    display: inline-block;
}

.page-index a,
.page-pre a,
.page-next a,
.page-last a,
.page-num {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 2px;
    text-decoration: none;
    color: #b6b6b6;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.page-numbar {
    /* border-left: 1px solid #07b53b; */
    margin: 0 5px;
    padding-left: 5px;
}

.page-index {
    /* border-right: 1px solid #07b53b; */
    padding-right: 5px;
}

.page-num.page-num-current {
    background-color: #07b53b;
    color: white;
    border-color: #07b53b;
}

.page-index a:hover,
.page-pre a:hover,
.page-next a:hover,
.page-last a:hover,
.page-num:not(.page-num-current):hover {
    border-color: #07b53b;
    color: #555555;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

.page-pre a:disabled,
.page-pre a[href="javascript:;"] {
    color: #ccc;
    cursor: not-allowed;
    border-color: #eee;
}

.page-pre a:disabled:hover,
.page-pre a[href="javascript:;"]:hover {
    box-shadow: none;
    border-color: #eee;
    color: #ccc;
}