

/*about*/
.about-jj{
    padding: 40px 0;
}
.about-jj img{
    width: 100%;
}
.about-jj>div>div>p{
    text-align: justify;
    text-indent: 2em;
    margin: 0 0 16px;
    color: #90908f;
    padding: 0 30px;
    font-size: 14px;
}
.about-jj>div>div>a{
    padding: 10px 15px;
    border: 1px solid;
    color: #fb0101;
    display: block;
    width: 110px;
    text-align: center;
    -webkit-transition: all .6s cubic-bezier(.165, .84, .44, 1) 0ms;
    transition: all .6s cubic-bezier(.165, .84, .44, 1) 0ms;
    margin-left: 30px;
    margin-top: 20px;

}
.about-jj>div>div>a:hover{
    background: #fb0101;
    color: #fff;
 }
.about-jj>div>div:first-of-type{
    text-align: center;
}

/*title*/
.title0{
    width: 100%;
    text-align: center;
}
.title0>h2{
    font-size: 24px;
    color: #6d6d6f;
    font-weight: normal;
    margin-top: 0;
}


.about-box {
    width: 100%;
    height: 287px;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 50px;
}

.about-box>ul {
    width: 500%;
    list-style: none;
    /*1.设置的名称*/
    animation-name: move;
    /*2.设置动画的耗时*/
    animation-duration: 20s;
    /*3.市场无限循环*/
    animation-iteration-count: infinite;
    /*4.设置时间函数*/
    animation-timing-function: linear;

}

.about-box>ul>li {
    width: 300px;
    float: left;
    margin: 0 10px;
    position: relative;
}
.about-box>ul>li>a{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(230, 33, 41, 0.5);
    opacity: 0;
    transition: .3s;
    transform: translateY(-200px);

}
.about-box>ul>li:hover>a{
    opacity: 1;
    transform: translateY(0);
}
.about-box>ul>li>a>p{
    display: inline-block;
    color: #fff;
    width: 100%;
    text-align: center;
    font-size: 14px;
    height: 100%;
    margin: 0 0;
    padding-top: 35%;
    transform: translateY(200px);
    opacity: 0;
    transition: .6s;
}
.about-box>ul>li:hover>a>p{
    transform: translateY(0);
    opacity: 1;

}
.about-box>ul>li>img {
    width: 100%;

}

/*鼠标上移，停止动画*/

.about-box:hover>ul {
    cursor: pointer;
    animation-play-state: paused;
}

/*创建动画*/

@keyframes move {
    from {
        transform: translatex(0);
    }
    to {
        transform: translatex(-882px);
    }
}
@media all and (max-width: 768px){
    .about-box{
        display: none;
    }
    .about-jj{
        padding: 0!important;
    }
    .title0>h2{
        padding: 20px 0;
        margin: 0!important;
        font-size: 22px;
    }
    .about-jj>div>div>p{
        font-size: 12px;
        padding: 0 10px;
    }
    .about-jj>div>div>a{
        padding: 5px 10px!important;
        margin: 10px 10px;
    }
}



/*news*/
.news{
    padding: 50px 0;
    background: #f5f5f5;
}
.title3{
    width: 100%;
    text-align: center;
}
.title3>p{
    font-size: 14px;
    position: relative;
    width: 100px;
    margin: 0 auto;
    margin-bottom: -8px;
}
.title3>p>b{
    font-size: 68px;
    position: absolute;
    left: -53px;
    top: -21px;
}
.title3>i{
    width: 50px;
    height: 2px;
    background: #fb0101;
    display: inline-block;
    margin-top: -10px;
}
.title3>span{
    font-size: 17px;
}
.news-img{
    position: relative;
    margin: 30px 10px;
    overflow: hidden;
}
.news-img div{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
transition: .5s;
}

.news-img div>h4{
    text-align: center;
    color: #fff;
    background: #000;
    line-height: 30px;
    margin-bottom: 0;
    font-size: 14px;
    height: 30px;
    overflow: hidden;
    width: 100%;
}
.news-img img{
    width: 100%;
}
.news>div>p{
    width: 100%;
    text-align: center;
}
.news>div>p>a{
    padding: 10px 50px;
    color: #fff;
    background: #e60012;
}
.news>div>p>a:hover{
    background: none;
    border: solid 1px #e60012;
    color: #e60012;
}