

/* 斜体 */
@font-face {
    font-family: "NotoSansCJK";
    font-weight: 500;
    src: url(../font/NotoSansCJK-Light-3.otf);
}
@font-face {
    font-family: "NotoSansCJK";
    font-weight: 300;
    src: url(../font/NotoSansCJK-Light-3.otf);
}
@font-face {
    font-family: "NotoSansCJK";
    src: url(../font/Montserrat-Medium-7.otf);
}
@font-face {
    font-family: "BebasNeue";
    src: url(../font/BebasNeue-1.otf);
}
/* ===============================index*/

.inner {
    width: 86%;
    margin: 0 auto;
}

.padd {
    padding: 80px 0 108px;
}





/* =====================================================================公共 */
/*css主要部分的样式*/
/*定义滚动条宽高及背景，宽高分别对应横竖滚动条的尺寸*/

::-webkit-scrollbar {
    width: 6px;
    /*对垂直流动条有效*/
    height: 6px;
    /*对水平流动条有效*/
}

/*定义滚动条的轨道颜色、内阴影及圆角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: fff;
    border-radius: 0px;
}


/*定义滑块颜色、内阴影及圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 2px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #555555;
}

/*定义两端按钮的样式*/
::-webkit-scrollbar-button {
    background-color: none;
    height: 0;
}

/*定义右下角汇合处的样式*/
::-webkit-scrollbar-corner {
    background: khaki;
}
.moHead_mlb .img3{
    display: block;
}

/*  */

.IndBanBtn a {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-size: 16px;
    transition: all .48s;
    border-radius: 50px;
}

.IndBanBtn a img {
    width: 25px;
    margin-left: 20px;
    -webkit-animation: sy2 2s infinite;
            animation: sy2 2s infinite;
}

.IndBanBtn a .img1 {
    display: block;
}

.IndBanBtn a .img2 {
    display: none;
}

.IndBanBtn a:hover {
    background: #fff;
    color: #004197;
    border: 1px solid #004197;
}

.IndBanBtn a:hover .img1 {
    display: none;
}

.IndBanBtn a:hover .img2 {
    display: block;
}

/* .indBanXian {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    ;
    position: absolute;
    bottom: 100px;
    right: 200px;
    width: 1px;
    height: 100%;
    z-index: 8;
} */
@-webkit-keyframes sy2 {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.2);
    }
    
    100% {
        transform: scale(0.9);
    }
}
@keyframes sy2 {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.2);
    }
    
    100% {
        transform: scale(0.9);
    }
}

.productBtn a {
    background: #004197;
    color: #fff;
}

.productBtn img {
    transform: rotate(-90deg);
}
.productBtn a:hover {
    background: #004197;
    color: #fff;
    border: 1px solid #004197;
    -webkit-animation: sy3 2s infinite;
            animation: sy3 2s infinite;
}
@-webkit-keyframes sy3 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
    
    100% {
        transform: scale(1);
    }
}
@keyframes sy3 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
    
    100% {
        transform: scale(1);
    }
}
.productBtn a:hover .img2 {
    display: none;
}

.productBtn a:hover .img1 {
    display: block;
}








