.footer_nav {
    color: #fff;
    flex: 1;
    margin-left: 10rem;
    margin-top: 2rem;
    gap: 2rem;
}

.footer_nav .nav-items {
    gap: 1rem;
}

.footer_nav a {
    color: #777;
}

/* Swipe Hint Styles - 滑动提示样式 */
.swipe-hint {
    display: none;
    text-align: center;
    color: #999;
    font-size: 12px;
    margin-top: 15px;
    animation: swipeHint 1.5s infinite ease-in-out;
}

@keyframes swipeHint {

    0%,
    100% {
        transform: translateX(-5px);
        opacity: 0.7;
    }

    50% {
        transform: translateX(5px);
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    .swipe-hint {
        display: block;
    }
}

#login1,
#service1 {
    margin-top: 18px;
    margin-left: 20px;
    line-height: 2rem;
}

#login1 a {
    display: inline-block;
    background-color: #c4140a;
    color: #fff;
    padding: 8px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    line-height: 2rem;
}

#service1 a {
    display: inline-block;
    background-color: transparent;
    color: #c4140a;
    border: 1px solid #c4140a;
    padding: 8px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    line-height: 2rem;
}

#service1 a:hover {
    background-color: #c4140a;
    color: #fff;
}

@media screen and (max-width: 1065px) {
    #service1 {
        margin-top: 0;
        margin-left: 0;
        position: fixed;
        top: 6px;
        right: 50px;
        left: auto;
        line-height: normal;
        z-index: 300;
    }

    #service1 a {
        padding: 5px 12px;
        font-size: 12px;
        line-height: 1.4;
        white-space: nowrap;
    }

    #login1 {
        margin-top: 0;
        margin-left: 0;
        position: fixed;
        top: 6px;
        right: 138px;
        left: auto;
        line-height: normal;
        z-index: 300;
    }

    #login1 a {
        padding: 5px 12px;
        font-size: 12px;
        line-height: 1.4;
        white-space: nowrap;
    }
}

@media screen and (max-width: 768px) {
    /* Footer Mobile Adaptation - 底部小屏适配 */
    .footer #mydiv {
        height: 150px !important;
        /* 减小顶部装饰区域高度 */
    }

    .footer_content {
        padding: 0 20px;
    }

    .footer_content_top {
        flex-direction: column;
        /* 上下排列 */
        align-items: center;
    }

    .content_top_share {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-logo img {
        width: 150px;
        /* 限制Logo宽度 */
    }

    .footer_nav {
        margin-left: 0;
        /* 去除大屏的左边距 */
        margin-top: 2rem;
        width: 100%;
        align-items: center;
    }

    .footer_nav .nav-items {
        flex-direction: column;
        /* 导航链接改为垂直排列 */
        align-items: center;
    }

    .footer_content_copyright {
        text-align: center;
        padding-bottom: 20px;
    }

    .footer .footer_content .footer_content_top .content_top_share {
        width: 100%;
    }
}

@media screen and (min-width: 1065px) {
    .pc_header .pc_header_content .header_content_logo img {
        width: 10rem;
    }

    .footer-logo img {
        width: 50%;
    }


}