.nav_box {
    background-color: var(--colorW);
    padding: 6px 0;
}

.nav_box .n {
    width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav_box .n div {
    display: flex;
    align-items: center;
    border-left: 1px solid var(--border);
    width: 25%;
    padding: 14px 35px;
}

.nav_box .n div:last-child {
    border-right: 1px solid var(--border);
}

.nav_box .n div p {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

/* 数据统计图标 */
.nav_box .n div img {
    height: 45px;
    margin-right: 20px;
}

/* 统计图标动弹 */
.nav_box .n div:hover img {
    -webkit-animation: jelly 0.5s;
    animation: jelly 0.5s;
}

@keyframes jelly {
    25% {
        -webkit-transform: scale(0.9, 1.1);
        transform: scale(0.9, 1.1);
    }

    50% {
        -webkit-transform: scale(1.1, 0.9);
        transform: scale(1.1, 0.9);
    }

    75% {
        -webkit-transform: scale(0.95, 1.05);
        transform: scale(0.95, 1.05);
    }
}



/* 大屏下 */
@media screen and (min-width: 1024px) {}

#footerNav {
    background-color: var(--main-color);
    width: 100%;
    color: var(--colorW);
}

#footerNav .t {
    padding-top: 30px;
    padding-bottom: 20px;
    width: 1300px;
    margin: 0 auto;
}

#footerNav .t .info dl {
    width: 260px;
}


/* 底部每组标题 */
#footerNav .t .info dl dt {
    font-weight: 700;
    font-size: 16px !important;
    border-bottom: 1px solid var(--colorW);
    margin-bottom: 20px;
    padding-bottom: 6px;
    width: 100%;
}

/* contact */
#footerNav .t .info dl dd {
    font-size: 14px !important;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#footerNav .t .info dl dd a {
    color: var(--colorW);
}

#footerNav .t .info dl dd a:hover {
    cursor: pointer;
    text-decoration: underline;
}

/* .follow */
#footerNav .t .follow dl {
    width: 290px;
    /*margin-right: 87px;*/
margin-right: 57px;
}


#footerNav .t .follow dl:last-child {
    -webkit-box-flex: 1;
    flex: 1;
    margin-right: 0;
}


/* 每项第三方 */
.follow dl dd .btn {
    position: relative;
    width: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px -5px rgb(0 0 0 / 10%);
    background-color: var(--colorW);
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-right: 16px;
}

.follow dl dd .btn:last-child {
    margin-right: 0;
}

/* 第三方图标 */
.follow dl dd .btn .iconfont {
    font-size: 20px;
    -webkit-transform: scale(.8);
    transform: scale(.8)
}

.follow dl dd .btn .icon-facebook {
    color: #0077b5;
}

.follow dl dd .btn.btn_facebook:before {
    background-color: #0077b5
}


.follow dl dd .btn .icon-tuite {
    color: #2fb0ec;
}

.follow dl dd .btn.btn_tuite:before {
    background-color: #2fb0ec
}

.follow dl dd .btn .icon-linkedin {
    color: #0077b5;
}

.follow dl dd .btn.btn_linkedin:before {
    background-color: #0077b5
}

.follow dl dd .btn .icon-instagram1 {
    color: #e45496;
}

.follow dl dd .btn.btn_instagram:before {
    background-color: #e45496
}

.follow dl dd .btn .iconfont,
.follow dl dd .btn:before {
    -webkit-transition: all .4s cubic-bezier(.31, -.1, .43, 1.59);
    transition: all .4s cubic-bezier(.31, -.1, .43, 1.59)
}

.follow dl dd .btn:before {
    content: "";
    position: absolute;
    top: 90%;
    left: -110%;
    width: 120%;
    height: 120%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.follow dl dd .btn:hover:before {
    top: -10%;
    left: -10%
}

.follow dl dd .btn:hover .iconfont {
    position: relative;
    color: #fff;
    -webkit-transform: scale(1);
    transform: scale(1)
}


/* Payment */
#footerNav .t .follow dl dd .img_box {
    width: 56px;
    height: 30px;
    line-height: 30px;
    background-color: var(--colorW);
}

#footerNav .t .follow dl dd .img_box img {
    max-width: 100%;
    height: 12px;
}

/* Subscribe */
#footerNav .t .follow dl dd input {
    width: 150px;
    background: var(--main-color);
    height: 36px;
}

#footerNav .t .follow dl dd input::-webkit-input-placeholder {
    /* placeholder颜色 */
    color: var(--colorW);
}

#footerNav .t .follow dl dd input::input-placeholder {
    color: var(--colorW);
}

#footerNav .t .follow dl dd .info {
    position: absolute;
    right: 1px;
    padding: 9px 18px;
}


/* Certification */
#footerNav .t .follow dl .certification_img_box img {
    width: 24px;
    height: 24px;
}

#footerNav .t .follow dl .certification_img_box img+img {
    margin-left: 6px;
}



/* 小屏时 */
@media screen and (max-width: 1024px) {

    /* #footerNav  */
    .nav_box {
        display: none !important;
        width: 0 !important;
    }


    #footerNav .t {
        width: 100% !important;
        padding: 30px 10px;
    }



    #footerNav .t .info dl {
        width: 100% !important;
    }

    #footerNav .t .follow dl {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }

    /* .follow */
    #footerNav .t .follow dt {
        border-bottom: 1px solid var(--colorW);
        font-size: 18px;
        margin-bottom: 10px;
        padding-bottom: 6px;
    }

    #footerNav .t .follow .certification_box {
        display: none;
    }

}


/* 底部索引 */
.home_indexes {
    background-color: var(--colorW);
    border-radius: 6px;
    justify-content: space-between;
    padding: 14px 20px;
    align-items: center;
    display: flex;
}

.home_indexes .cot {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    justify-content: space-around;
    font-size: 14px !important;
}

@media screen and (max-width: 1024px) {
    .home_indexes {
        flex-wrap: wrap;
        justify-content: flex-start
    }

    .home_indexes span {
        align-items: center;
        display: flex;
        justify-content: center;
        width: 56px
    }
}


.home_indexes a {
    align-items: center;
    display: flex;
    border-radius: 50%;
    height: 28px;
    justify-content: center;
    transition: all .3s;
    width: 28px;
    color: #666;
}

.home_indexes a:hover {
    color: var(--colorW);
    background-color: var(--main-color);
    transform: scale(1.1)
}