.banner {
    width: 100%;
    height: 70vh;
    position: relative;
}
.banner ul{
    width: 460px;
    height: 80px;
    background: rgba(245, 245, 245, 0.8);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}
.banner ul li{
    width: 230px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner ul li a{
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #333333;
}
.banner ul li svg{
    width: 19px;
    height: 19px;
    margin-right: 8px;
    fill: #666666;
}
.banner ul li:hover{
    background: #ED1B2F;
}
.banner ul li:hover a{
    color: #fff;
}
.banner ul li:hover svg{
    fill: #fff;
}
.banner ul li:hover svg path{
    fill: #fff;
}
.section{
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #fff;
}
.section .warp{
    width: 1400px;
    margin: 79px auto;
}
.section .warp .title{
    text-align: center;
}
.section .warp .title span{
    font-size: 30px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #000000;
}
.section .warp .title .line{
    width: 24px;
    height: 2px;
    background: #ED1B2F;
    margin: 14px auto 0;
}
.section .warp .content{
    margin-top: 75px;
}
.section .warp .content .item{
    width: 100%;
    height: 358px;
    display: flex;
    align-items: center;
    transition: 0.6s;
    border-bottom: 1px solid #E6E6E6;
}
.section .warp .content .item:hover{
    background: #F5F5F5;
    border-bottom: 1px solid transparent;
}
.section .warp .content .item div:first-child{
    display: flex;
    align-items: center;
}
.section .warp .content .item div .images{
    width: 400px;
    height: 250px;
    overflow: hidden;
    margin-right: 48px;
}
.section .warp .content .item div .images img{
    width: 100%;
    height: 100%;
    transition: 2.5s;
}
.section .warp .content .item:hover .images img{
    transform: scale(1.05);
}
.section .warp .content .item .text{
    flex: 1;
    margin-right: 165px;
    margin-top: -30px;
}
.section .warp .content .item .text p{
    font-size: 14px;
    font-family: ITC Avant Garde Gothic Std;
    font-weight: normal;
    color: #666666;
    margin-bottom: 21px;
}
.section .warp .content .item .text h1{
    font-size: 22px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #333333;
    width: auto;
    transition: 0.6s;
}
.section .warp .content .item:hover .text h1{
    color: #ED1B2F;
}
.section .warp .content .item .more{
    display: flex;
    align-items: center;
}
.section .warp .content .item .more .line{
    width: 1px;
    height: 44px;
    background: #CCCCCC;
    margin-right: 19px;
}
.section .warp .content .item .more p{
    font-size: 14px;
    font-family: ITC Avant Garde Gothic Std;
    font-weight: normal;
    color: #666666;
    white-space: nowrap;
}
.section .warp .content .even{
    width: 190px;
    height: 60px;
    background: #ED1B2F;
    border-radius: 30px;
    margin: 62px auto 0;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
}
.section .warp .content .even:hover{
    background: #333333;
}
.section .warp .content .even p{
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    margin-right: 32px;
}
.section .warp .content .even svg{
    transform: rotate(-90deg);
}
.section .warp .content .even svg path{
    fill: #fff;
}