footer {
    padding: 5% 15%;
}


footer .leftBox .infoList {
    display: flex;
}

footer .leftBox .infoList li {
    display: inline-block;
    width: 50%;
    text-align: center;
    padding: 5% 0;
    font-size: 13px;
    border-left: 1px solid #cccccc;

}

footer .leftBox .infoList li:last-child {
    border-right: 1px solid #cccccc;

}

footer .leftBox .infoList li a.tell {
    font-size: 2rem;
    color: #333;
}

footer .leftBox .infoList li a.tell span {
    font-size: 10px;
}





footer .iconBox h5 b {
    display: block;
    transition: all 0.3s ease-in;
    font-weight: normal;
}

footer .iconBox h5 span {

    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: 100%;
    transition: all 0.3s ease-in;
    opacity: 0;

}

footer .iconBox h5:hover b {

    opacity: 0;
    /*display: none;*/
    transform: translateY(-10px);
    transition: all 0.3s ease-in;
}

footer .iconBox h5:hover span {
    opacity: 1;
    display: block;
    top: 50%;
    transition: all 0.3s 0.3s ease-in;

}

    


footer .rightBox {
    text-align: right;

}



footer .rightBox .bottom .iconBox {
    margin-top: 20%;
}

footer .rightBox .bottom .iconBox a {
    border: 1px solid #005853;
    border-radius: 50%;
    display: inline-block;
}

.iconBox a img {
    width: 100%;
    max-width: 30px;
    max-height: 30px;
}


footer .copyright {
    text-align: right;
    font-size: 10px;
    color: #333;
    letter-spacing: 2px;
    line-height: 4;
}


.btn_scrollTop {
    position: absolute;
    left: 0;
    height: 100%;
        width: 6%;
    top: 0;
    -webkit-writing-mode: vertical-lr;
    writing-mode: vertical-lr;
    text-align: center;
    padding: 0 20px;
    color: #015853;
    border-right: 1px solid #015853;
}



@media(max-width: 991px) {
    footer .leftBox .infoList {
        flex-direction: column;
    }

    footer .leftBox .infoList li {
        width: 100%;
        border-width: 1px 0;
            padding: 10% 0;
        border-top: 1px solid #cccccc;

    }

    footer .leftBox .infoList li:last-child {
        border-right: none;
        border-bottom: 1px solid #cccccc;
    }
    footer .rightBox{
        text-align: left;
        padding-top: 10%;  
    }
    footer .copyright{
        text-align: center;
        font-size: 9px;
        opacity: 0.8;
    }
    footer .rightBox .bottom .iconBox{
        text-align: center;
    }
}


@media(max-width: 480px) {
    footer {
        padding: 10% 15px;
    }

    .btn_scrollTop {
        bottom: 0;
        top: auto;
        left: 0;
        -webkit-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
        height: auto;
        border-right: none;
        background-color: #015853;
        color: #fff;
        padding: 5% 0;
        border-top: 1px solid #015853;
        width: 100%;
    }
}