/* 页脚 */
.footer_custom_text a {
    margin: 0 5px;
}

#footer::before {
    content: none;
}

[data-theme="light"] #footer-wrap {
    color: #000;
    background-color: #fff !important;
    padding: 50px 5% 35px 5%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

[data-theme="dark"] #footer-wrap {
    color: #fff;
    background-color: #000;
    padding: 50px 5% 35px 5%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

#footer-wrap>div {
    width: 50%;
}

#footer-left {
    text-align: left
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-copyright {
    font-size: 1rem;
    font-weight: normal;
}

#footer-wrap .footer-button {
    display: flex;
    margin: 15px 0;
}

#footer-wrap .footer-button>a {
    font-size: 1.3rem;
    margin-right: 24px;
    transition: 0.2s;
    background: #A8D6D2;
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    color: white;
}

#footer-wrap .footer-button>a:hover {
    background: rgba(255, 255, 255, 0.5);
    transition: 0.2s;
    text-decoration-line: none;
}

#footer-wrap .footer-button>a i {
    margin: auto;
    margin-left: 9.5px;
    margin-bottom: 1px;
    line-height: 42px;
}

#footer-wrap .iconfont {
    font-size: 1.3rem;
}

#footer-right {
    text-align: right;
    height: max-content;
    margin-top: auto;
}

#footer-right p,
#footer-right a {
    color: #89cac4;
}

.footer-totop {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.footer-totop i {
    font-size: 2rem;
    animation: footerToTop 1.2s linear infinite;
}

.footer-info p {
    font-size: 14px;
    margin: 0;
}

.footer-info a {
    margin-left: 20px;
    transition: 0.2s;
    filter: none !important;
}

.footer-info a:hover {
    color: rgb(193, 193, 193) !important;
    transition: 0.2s;
}

.footer-info a:hover img {
    filter: none !important;
    transition: 0.2s;
}

.footer-service img {
    height: 20px;
    margin-left: 20px;
    margin-top: 10px;
    transition: 0.2s;
}

@keyframes footerToTop {
    0% {
        transform: translateY(0);
    }

    60% {
        transform: translateY(-25%);
    }

    100% {
        transform: translateY(0);
    }
}

@media screen and (max-width:768px) {
    #footer-wrap>div {
        width: 100%;
        text-align: center;
    }

    #footer-wrap .footer-button>a {
        margin: 0 auto;
    }
}