.attention{
    width: 100%;
    overflow: hidden;
}

.attention .wrap{
    width: 1200px;
    margin: 202px auto 59px;
}

.attention .wrap .title .text{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 0 20px 0;
}
.attention .wrap .title .text span{
    font-size: 32px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #333333;
}
.attention .wrap .title .text div{
    display: flex;
    align-items: center;
}
.attention .wrap .title .text div a{
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #333333;
    position: relative;
    top: 8px;
}
/**/
.attention .wrap .search{
    width: 100%;
    height: 60px;
    background: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px 0 28px;
}
.attention .wrap .search .keyword{
    display: flex;
    align-items: center;
}
.attention .wrap .search .keyword p{
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #333333;
}
html[lang="en"] .attention .wrap .search .keyword p{
    white-space: nowrap;
}
html[lang="en"] .attention .wrap .search .keyword a{
    max-width: 147px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.attention .wrap .search .keyword a{
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #333333;
}
.attention .wrap .search .keyword a:not(:last-child){
    margin: 0 16px 0 0;
}
.attention .wrap .search .keyword a.on{
    text-decoration: underline;
}
.attention .wrap .search .keyword a:hover{
    text-decoration: underline;
}
.attention .wrap .search form{
    display: flex;
    align-items: center;
}
.attention .wrap .search form input{
    width: 460px;
    height: 40px;
    background: #FFFFFF;
    padding: 0 0 0 17px;
    border: none;
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #666666;
}
.attention .wrap .search form input::placeholder{
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #666666;
}
.attention .wrap .search form button{
    width: 40px;
    height: 40px;
    background: #F7AB00;
    display: flex;
    align-items: center;
    justify-content: center;
}
.attention .wrap .search form button .iconfont{
    color: #333333;
    font-size: 18px;
    font-weight: bold;
}
.attention .wrap .content{
    margin: 23px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.attention .wrap .content a{
    width: 590px;
    height: 220px;
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    display: flex;
    margin: 0 0 17px 0;
}
.attention .wrap .content a .text{
    width: 38%;
    padding: 36px 23px 20px 23px;
    position: relative;
    overflow: hidden;
}
.attention .wrap .content a .text:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #666666;
}
.attention .wrap .content a .text:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #F7AB00;
    transition: 0.6s;
    transform: translateX(-100%);
    z-index: 1;
}
.attention .wrap .content a .text h1{
    font-size: 22px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #333333;
    margin: 0 0 5px 0;
    display: block;
}
.attention .wrap .content a .text p{
    font-family: Source Han Sans CN;
    font-size: 16px;
    color: #666666;
}
.attention .wrap .content a .images{
    width: 62%;
    height: 100%;
    overflow: hidden;
}
.attention .wrap .content a .images img{
    width: 100%;
    height: 100%;
    transition: 0.6s;
}
.attention .wrap .content a:hover .images img{
    transform: scale(1.1);
}
.attention .wrap .content a:hover .text:before{
    transform: translateX(0);
}

@media screen and (max-width: 768px) {
    .attention .wrap .title .text span{
        font-size: 20px;
    }
    .attention .wrap {
        width: 100%;
        padding: 0 20px;
        margin: 104px auto 9px;
    }
    .attention .wrap .title .text div a{
        top: 0;
        font-size: 13px;
    }
    .attention .wrap .search{
        flex-direction: column;
        align-items: unset;
        height: auto;
        padding: 15px 5%;
    }
    .attention .wrap .search .keyword a,.attention .wrap .search .keyword p{
        font-size: 12px;
        margin: 0 16px 10px 0!important;
    }
    .attention .wrap .search form input{
        width: 90%;
        padding: 0 0 0 6px;
    }
    .attention .wrap .search form input::placeholder{
        font-size: 12px;
    }
    .attention .wrap .content a .text{
        padding: 5%;
    }
    .attention .wrap .content a .text h1{
        font-size: 18px;
    }
    .attention .wrap .content a .text p{
        font-size: 11px;
    }
    .attention .wrap .search .keyword{
        flex-wrap: wrap;
    }

}