/* new */
.newmodle{
    margin: 100px 0;
}
.newmodle .main{
    display: flex;
    justify-content: space-between;
}
.newmodle .left{
    width: 27%;
}
.newmodle .right{
    width: 70%;
}
.newmodle .left>.title{
    background-color: #06187b;
    text-align: center;
    width: 100%;
}
.newmodle .left>.title>a{
    width: 100%;
    font-size: 24px;
    color: white;
    padding: 20px 0;
    display: block;
}
.newmodle .left>ul{
    width: 100%;
}
.newmodle .left>ul>li{
    width: 100%;
    border: 1px solid #eee;
    padding: 20px 10px;
    font-size: 16px;
    cursor: pointer;
}
.newmodle .left>ul>li>ul>li{
    cursor: pointer;
    color: #bbb;
    border-bottom:  1px solid #eee;
    padding: 10px;
}
.newmodle  .left>ul>li>ul>li:nth-last-child(1){
    border: 0;
}
.newmodle .right>ul>li{
    display: flex;
}
.newmodle .right>ul>li>.liright{
    display: flex;
    flex-direction: column;
}
.newmodle .right>ul>li>.liright>span:nth-child(1){
    color: #bbb;
    font-size: 14px;
    padding: 5px;
}
.newmodle .right>ul>li>.liright>span:nth-child(2){
    font-size: 20px;
    font-weight: bold;
    padding: 5px;
    color: #333;
}
.newmodle .right>ul>li>.liright>span:nth-child(2):hover{
    color: #06187b;
}
.newmodle .right>ul>li>.liright>span:nth-child(3){
    font-size: 14px;
    padding: 5px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.newmodle .right>ul>li>.lileft>img{
    border-radius: 15px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.newmodle .right>ul>li>.lileft{
    width: 30%;
}
.newmodle .right>ul>li>.liright>a{
    color: #06187b;
    text-align: right;
    margin-right: 15px;
    padding: 20px 0;
}
.newmodle .right>ul>li>.liright{
    margin-left: 10px;
    width: 100%;

}
.newmodle .right>ul>li{
    padding-bottom: 10px;
    margin: 50px 0;
    cursor: pointer;
}
.newmodle .right>ul>li:nth-child(1){
    margin-top: 0;
}
.newmodle .pagelist{
	text-align: center;
	font-size: 0;
	margin-bottom: 50px;
	margin-top: 30px
}

.newmodle .pagelist>a.item{
	width: 42px;
	height: 42px;
	line-height: 40px;
	border-radius: 2px;
	border: 1px solid #dedede;
	display: inline-block;
	vertical-align: middle;
	font-size: .14rem;
	color: #333;
	text-align: center;
	background: #fff;
	transition: all .3s ease;
	margin: 0 5px

}
.newmodle .pagelist>a.item2{
    width: 120px;
}
.newmodle .pagelist>a:hover{
    color: black;
}
.newmodle .pagelist>a.on{
	background: #06187b;
	color: #fff;
}
.newmodle .right>ul>li{
    position: relative;
}
.newmodle .right>ul>li>.line{
    width: 100%;
    height: 5px;
    background-color: #eee;
    position: absolute;
    bottom: -5%;
}
.newmodle .right>ul>li>.line2{
    width: 00%;
    height: 5px;
    background-color: #06187b;
    position: absolute;
    bottom: -5%;
}
.newmodle .right>ul>li:hover>.line2{
    width: 100%;
    transition: 0.5s;
}
#newlist>li>a:hover{
    color: #06187b;
}
#newlist>li>a.active{
    color: #06187b;
}
/* newlist */
.newlistmodle{
    margin: 60px;
}
.newlistmodle .newlistmain .txt>span:nth-child(1){
    color: #bbb;
    font-size: 14px;
    padding: 5px;
}
.newlistmodle .newlistmain .txt>span:nth-child(2){
    font-size: 20px;
    font-weight: bold;
    padding: 5px;
    overflow:hidden;   /* 溢出部分进行隐藏 */
    display: -webkit-box;  
    -webkit-box-orient: vertical;  /* 盒模型元素从顶部向底部垂直排列子元素 */
    -webkit-line-clamp: 2;  /* 显示两行 */
    text-overflow: ellipsis; 
}
.newlistmodle .newlistmain .txt>span:nth-child(3){
    font-size: 14px;
    padding: 5px;
    color: #bbb;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow:hidden;   /* 溢出部分进行隐藏 */
    display: -webkit-box;  
    -webkit-box-orient: vertical;  /* 盒模型元素从顶部向底部垂直排列子元素 */
    -webkit-line-clamp: 3;  /* 显示两行 */
    text-overflow: ellipsis; 
}
.newlistmodle .newlistmain .txt>a{
    color: #3f6ad7;
}
.newlistmodle .newlistmain .txt{
    display: flex;
    flex-direction: column;
    padding: 20px 10px;
    border: 1px solid #bbb;
}
.newlistmodle .newlistmain .imge{
    width: 100%;
    overflow: hidden;
    /* height: 300px; */
}
.newlistmodle .newlistmain .imge>img{
    overflow: hidden;
    transition: all 2s;
    width: 100%;
}
.newlistmodle .newlistmain .imge:hover>img{
    transform: scale(1.1);
    transition: 0.5s;
}
.newlistmodle .newlistmain{
    position: relative;
    box-shadow: 3xp 3px 4px 2px black;
}
/* .newlistmodle .newlistmain >.line{
    width: 100%;
    height: 5px;
    background-color: #bbb;
    position: absolute;
    bottom: 0;
} */
.newlistmodle .newlistmain>.line2{
    width: 00%;
    height: 5px;
    background-color: #06187b;
    position: absolute;
    bottom: 0;
}
.newlistmodle .newlistmain:hover>.line2{
    width: 100%;
    transition: 0.5s;
}

.newlistmodle .newlistmain .txt{
border: 0;
box-shadow: 2px 2px 2px 2px #eee;
padding: 30px 15px 50px 15px;
}

.newlistmodle .c{
    padding: 20px;
}
.newlistmodle .pagelist{
	text-align: center;
	font-size: 0;
	margin-bottom: 50px;
	margin-top: 30px
}

.newlistmodle .pagelist>a.item{
	width: 42px;
	height: 42px;
	line-height: 40px;
	border-radius: 2px;
	border: 1px solid #dedede;
	display: inline-block;
	vertical-align: middle;
	font-size: .14rem;
	color: #333;
	text-align: center;
	background: #fff;
	transition: all .3s ease;
	margin: 0 5px

}
.newlistmodle .pagelist>a.item2{
    width: 120px;
}
.newlistmodle .pagelist>a.on{
    background: #06187b;
	color: #fff;
	border-color: #06187b
}
.newlistmodle .c{
    cursor: pointer;
}
/* newinfo */
.newinfomodle{
    margin: 60px 0;
}
.newinfomodle .newinfomain{
    display: flex;
    justify-content: space-between;
}
.newinfomodle .left{
    width: 27%;
}
.newinfomodle .right{
    width: 70%;
}
.newinfomodle .left>.title{
    background-color: #06187b;
    text-align: center;
    width: 100%;
}
.newinfomodle .left>.title>a{
    width: 100%;
    font-size: 24px;
    color: white;
    padding: 20px 0;
    display: block;
}
.newinfomodle .left>ul{
    width: 100%;
}
.newinfomodle .left>ul>li{
    width: 100%;
    border: 1px solid #eee;
    padding: 20px 10px;
    font-size: 16px;
    cursor: pointer;
}
.newinfomodle .left>ul>li>ul>li{
    cursor: pointer;
    color: #bbb;
    border-bottom:  1px solid #eee;
    padding: 10px;
}
.newinfomodle .right .newtit{
    border-bottom: 1px dashed #bbb;
    padding: 10px 0;
}
.newinfomodle .newtime{
    margin: 10px 0;
}

.newinfomodle .newcon{
    border-bottom: 1px solid #bbb;
    padding: 20px 0;
}
.newinfomodle .newcon>p{
    padding: 5px 15px;
}
.newinfomodle .updown{
    padding: 10px 0;
}
.newinfomodle .updown>div{
    padding: 5px 0;
}
#newlist>li>a>i{
    display: none;
}
#newlist>li>a:hover{
    color: #06187b;
}
#newlist>li>a.active{
    color: #06187b;
}
.newinfomodle .right .updown>div>a:hover{
    color: #06187b;
}
/* product */
.productmodle{
    margin: 60px 0;
}
.productmodle .productmain{
    display: flex;
    justify-content: space-between;
}
.productmodle .left{
    width: 27%;
}
.productmodle .right{
    width: 70%;
}
.productmodle .left>.title{
    background-color: #06187b;
    text-align: center;
    width: 100%;
}
.productmodle .left>.title>a{
    width: 100%;
    font-size: 24px;
    color: white;
    padding: 20px 0;
    display: block;
}
.productmodle .left>ul{
    width: 100%;
}
.productmodle .left>ul>li{
    width: 100%;
    border: 1px solid #eee;
    padding: 20px 10px;
    font-size: 16px;
    cursor: pointer;
}
.productmodle .left>ul>li>ul>li{
    cursor: pointer;
    color: #bbb;
    border-bottom:  1px solid #eee;
    padding: 10px;
}
.productmodle .left>ul>li>ul>li:nth-last-child(1){
    border: 0;
}
.productmodle .right .c{
    padding: 0;
    text-align: center;
    margin: 10px;
    width: 30%;
}
.productmodle .right .row{
    width: 100%; 
    margin: 0;                                                                                                                 
}
.productmodle .right .down{
    cursor: pointer;
    width: 100%;
}
.productmodle .right .down .img{
    width: 100%;
    overflow: hidden;
    position: relative;
    border: 1px solid #eee;
}
.productmodle .right .down .img>img{
    transition: all 0.5s;
    width: 100%;

}
.productmodle .right .c .down .img .up{
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 0;
    background-color: #06187b;
    opacity: 0.3;
    display: none;
}
.productmodle .right .c .up>i{
    font-size: 50px;
    color: white;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.productmodle .right .down .img:hover>img{
    transform: scale(1.1);
    transition: 0.5s;
}
.productmodle .right .down .img:hover .up{
    display: block;
    transition: 1s;
}
.productmodle .right .down>span{
    padding: 5px;
}
.productmodle .pagelist{
	text-align: center;
	font-size: 16px;
	margin-bottom: 50px;
	margin-top: 30px
}

.productmodle .pagelist>a.item{
	width: 42px;
	height: 42px;
	line-height: 40px;
	border-radius: 2px;
	border: 1px solid #dedede;
	display: inline-block;
	vertical-align: middle;
	font-size: .14rem;
	color: #333;
	text-align: center;
	background: #fff;
	transition: all .3s ease;
	margin: 0 5px

}
.productmodle .pagelist>a.item2{
    width: 120px;
}
.productmodle .pagelist>a.on{
    background: #06187b;
	color: #fff;
	border-color: #06187b
}

#productlist>li>ul>li>a::before{
    content: '-  ';
    font-size: 20px;
    font-weight: 600;
}
#productlist>li>ul>li>a:hover{
    color: #06187b;
}
/* #productlist>li>ul>li>a.active{
    color: #06187b;
} */
#productlist>li>a:hover{
    color: #06187b;
}
/* #productlist>li>a.active{
    color: #06187b;
} */
/* productlist */
.productlistmodle{
    margin: 100px 0;
}
.productlistmodle .productlistmain{
    display: flex;
    justify-content: space-between;
}
.productlistmodle .left{
    width: 27%;
}
.productlistmodle .right{
    width: 70%;
}
.productlistmodle .left>.title{
    background-color: #06187b;
    text-align: center;
    width: 100%;
}
.productlistmodle .left>.title>a{
    width: 100%;
    font-size: 24px;
    color: white;
    padding: 20px 0;
    display: block;
}
.productlistmodle .left>ul{
    width: 100%;
}
.productlistmodle .left>ul>li{
    width: 100%;
    border: 1px solid #eee;
    padding: 20px 10px;
    font-size: 16px;
    cursor: pointer;
}
.productlistmodle .left>ul>li>ul>li{
    cursor: pointer;
    color: #bbb;
    border-bottom:  1px solid #eee;
    padding: 10px;
}
.productlistmodle .left>ul>li>ul>li:nth-last-child(1){
    border: 0;
}
.productlistmodle .pagelist{
	text-align: center;
	font-size: 0;
	margin-bottom: 50px;
	margin-top: 30px
}

.productlistmodle .pagelist>a.item{
	width: 42px;
	height: 42px;
	line-height: 40px;
	border-radius: 2px;
	border: 1px solid #dedede;
	display: inline-block;
	vertical-align: middle;
	font-size: .14rem;
	color: #333;
	text-align: center;
	background: #fff;
	transition: all .3s ease;
	margin: 0 5px

}
.productlistmodle .pagelist>a.item2{
    width: 120px;
}
.productlistmodle .pagelist>a.on{
    background: #06187b;
	color: #fff;
	border-color: #06187b
}
.productlistmodle .right>ul>li{
    display: flex;
    justify-content: space-between;
    padding: 10px;
    cursor: pointer;
    margin: 15px;
    overflow: hidden;
}
.productlistmodle .right>ul>li>.img{
    width: 35%;
    overflow:hidden;
    border-radius: 15PX;

}
.productlistmodle .right>ul>li>.img>img{
    width: 100%;
    transition: 0.3s;
    border-radius: 15PX;
}
.productlistmodle .right>ul>li>.txt{
    width: 63%;
}
.productlistmodle .right>ul>li>.txt>span:nth-child(1){
font-weight: bold;
font-size: 35px;
}
.productlistmodle .right>ul>li>.txt>.sline{
    width: 40%;
    height: 5px;
    background-color: #06187b;
}
.productlistmodle .right>ul>li>.txt>span:nth-child(3){
    display: block;
    padding: 20px 0; 
}
.productlistmodle .right>ul>li>.txt>button{
    padding: 10px 18px;
    border: 0;
    background-color: #06187b;
    color: white;
}
.productlistmodle .right>ul>li:hover{
    box-shadow: 3px 3px 2px 2px #ddd;
    transition: 0.6s;
}
.productlistmodle .right>ul>li:hover>.img>img{
    transform: scale(1.1);
    object-fit: cover;
    transition: 0.3s;
}
.productlistmodle .right>ul>li:hover>.txt>button{
    background-color: #050141;
    transition: 0.3s;
}

#productlist>li>ul>li>a::before{
    content: '-  ';
    font-size: 20px;
    font-weight: 600;
    /* padding: 0 5px; */
}
#productlist>li>ul>li>a:hover{
    color: #06187b;
}
#productlist>li>ul>li>a.active{
    color: #06187b;
}
#productlist>li>a:hover{
    color: #06187b;
}
#productlist>li>a.active{
    color: #06187b;
}

/* productinfo */
/* img{width: 100%;} */
.productinfomodle {
    margin: 60px 0;
}
.productinfomodle  .productinfomain{
    display: flex;
    justify-content: space-between;
}
.productinfomodle  .left{
    width: 27%;
}
.productinfomodle  .right{
    width: 70%;
}
.productinfomodle  .left>.title{
    background-color: #06187b;
    text-align: center;
    width: 100%;
}
.productinfomodle  .left>.title>a{
    width: 100%;
    font-size: 24px;
    color: white;
    padding: 20px 0;
    display: block;
}
.productinfomodle  .left>ul{
    width: 100%;
}
.productinfomodle  .left>ul>li{
    width: 100%;
    border: 1px solid #eee;
    padding: 20px 10px;
    font-size: 16px;
    cursor: pointer;
}
.productinfomodle  .left>ul>li>ul>li{
    cursor: pointer;
    color: #bbb;
    border-bottom:  1px solid #eee;
    padding: 10px;
}
.productinfomodle  .left>ul>li>ul>li:nth-last-child(1){
    border: 0;
}
.productinfomodle .right .left{
    width: 50%;
}
.productinfomodle .right .left .big{
    display: block;
    width: 88%;
    margin: 0 auto;
}
.productinfomodle .right .left .swiper-container{
    margin-top: 10px;
}
.productinfomodle .content{
    display: flex;
}
.productinfomodle .content .right{
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}
.productinfomodle .content .right>span:nth-child(1){
    font-size: 20px;
    color: #06187b;
    font-weight: 600;
}
.productinfomodle .content .right>a{
    width: 40%;
    padding: 10px;
    border: 0;
    color: white;
    background-color: #06187b;
    margin-top: 10px;
}
.productinfomodle .content .right>a:hover{
    background-color: white;
    border: 1px solid #06187b;
    color: #06187b;
    transition: 0.6s;
}

.productinfomodle .news{
    margin-top: 50px;
    border: 0;
}
.productinfomodle .news .bt{
    display: flex;
    padding: 0;
}
.productinfomodle .news .bt>button{
    border: 1px solid #06187b;
    color: #06187b;
    background-color: white;
    font-size: 16px;
    padding: 10px;
    margin-right: 20px;
}
.productinfomodle .news .bt>button.active{
    border: 0;
    color: white;
    background-color: #06187b;
}  
.productinfomodle .news .txt{
    padding: 20px 0;
}
.productinfomodle .news .txt>h3{
    padding: 10px 0;
}
.productinfomodle .tit{
    background-color: #06187b;
    font-size: 18px;
    color: white;
    width: 100%;
    padding: 8px;
}
.productinfomodle .inp .inpmain>ul>li{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}
.productinfomodle .inp .inpmain>ul>li>div{
    width: 48%; 
}
.productinfomodle .inp .inpmain>ul>li>div>input{
    width: 100%;
    padding: 10px 5px;
    border-radius: 6px;
    border: 0;
    background-color: #f6f7fa;
    margin-top: 3px;
}
.productinfomodle .inp .inpmain .textarea{
    width: 100%;
}
.productinfomodle .inp .inpmain .textarea>textarea{
    width: 100%;
    background-color: #f6f7fa;
    border: 0;
    border-radius: 6px;
}
.productinfomodle .inp .inpmain>button{
    padding: 15px 25px;
    background-color: #06187b;
    color: white;
    border-radius: 8px;
    border: 0;
    margin-top: 10px;
}
.productinfomodle .show{
    margin-top: 50px;
    text-align: center;
}
.productinfomodle .show .tit{
    margin: 30px 0;
}

.productinfomodle .down .img{
    position: relative;
    overflow: hidden;
    transition: 0.6s;
}
.productinfomodle .down .up{
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    background-color: #06187b;
    opacity: 0.6;
    display: none;
}
.productinfomodle .down .up>i{
    font-size: 40px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-radius: 15px;
}
.productinfomodle .down:hover .up{
    display: block;
    transition: 0.6s;
}
.productinfomodle .down:hover .img>img{
    transform: scale(1.1);
    transition: 0.6s;
}
.productinfomodle .down:hover>span>a{
    color: #06187b;
}
.swiper-pagination{
    position: relative;
    bottom: 0;
    font-size: 30px;    
}
.swiper-pagination-bullet{
    width: 13px;
    height: 13px;
    background-color: #06187b;
}
.productinfomodle .show .ss{
    display: none;
}
.productinfomodle .content .swiper-container img{
    width: 80px;
    height: 40px;
}

.content .swiper-container{
    width: 80%;
    margin: auto;
}
.productinfomodle .s{
    width: 100%;
    overflow: hidden;
}
.b{
    margin-top: 20px;
}
.b .swiper-slide{
    /* width: 80px !important; */
    height: 50px;
}
.b img{
    width: 80px;
    height: 100%;
}
.b>.swiper-wrapper>.swiper-slide.active>a>img{
    border: 2px solid black;
}

.productinfomain .content .left{
    position: relative;
}
.productinfomain .content .left .cprev{
    position: absolute;
    top: 94%;
    /*height: 25px;*/
    background-image: url(../images/swiper_button_004.png);
    background-position: 10px;
}
.productinfomain .content .left .cnext{
    position: absolute;
    top: 94%;
    width: 25px;
    /*height: 25px;*/
    background-image: url(../images/swiper_button_004.png);
    background-position: -10px;
}
.div-not-click {
    pointer-events: none;
    opacity: 0.5;
    /* transform: scale(); */
}
.bg>img{
    position: relative; 
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.productinfomain .content{
    position: relative;
}
.thumbnail{
    width: 400px;
    height: 300px;
    position: relative;
}
.original{
    position: absolute;
    top: 0;
    left: 100%;
    width: 600px;
    height: 300px;
    overflow: hidden;
    opacity: 0.8;
    display: none;
}
.original>img{
    width: 1200px;
    height: 600px;
    position: absolute;
    object-fit: cover;
}
.magnifier{
    width: 50px;
    height: 50px;
    background: rgba(34, 33, 33, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}
/* #productlist>li>a.active{
    color: #06187b;
} */
#productlist>li>a:hover{
    color: #06187b;

}
.show .s .img>img{border-radius: 15px;width: 100%;}

.productinfomain .left>ul>li>ul>li:hover>a{
    color: #06187b;
}
#productlist>li>ul>li>a::before{
    content: '-  ';
    font-size: 20px;
    font-weight: 600;
}

/* search */
.searchmodle{
    margin: 100px 0;
}
.searchmodle .searchmain{
    display:flex;
}
.searchmodle .searchmain .left{
    width: 70%;
    /* border: 1px solid black; */
}
.searchmodle .searchmain .right{
    width: 29%;
    /* border: 1px solid black; */
}
.searchmodle .left .cards{
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    width: 80%;
    padding: 10px;
    background-color: #f6f9fc;
    border-radius: 10px;
    margin: 10px;
}
.searchmodle .left .up{
    color:#86939f ;
}
.searchmodle .left .line{
    border-bottom: 1px solid #86939f;
    display: none;
}
.searchmodle .left .up>p:nth-child(4){
    padding: 10px;
    color: #06187b;
}
.searchmodle .left .up>p:nth-child(2){
    padding: 15px;
}
.searchmodle .left .up>h6{
    font-size: 24px;
    padding: 18px 15px 10px 15px;
}
.searchmodle .left .cards>.up>h6:hover{
    color: #06187b;
}

.searchmodle .right .frame{
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.searchmodle .right .frame>input{
    width: 100%;
    padding: 10px;
    border:1px solid  transparent;
    background-color: #f6f9fc;

}
.searchmodle .right .frame>input:focus{
    border:1px solid  #06187b;
    transition: 0.6s;
    background-color: #fff;
}
.searchmodle .right .frame>button{
    position: absolute;
    right: 0;
    border: 0;
    background-color: #06187b;
    color: white;
}
.searchmodle .right .frame>button>i{
    padding: 15px;
}
.searchmodle .right .txt{
    height: 50px;
    margin-top: 10px;
    display: flex;
    font-size: 30px;
}
.searchmodle .right .txt>span{
    line-height: 50px;
    padding: 0 10px;

}
.searchmodle .right .txt>span:nth-child(3){
    color: #06187b;
    cursor: pointer;
}
.searchmodle .right .txt>span:nth-child(3):hover{
    color: black;
    transition: 0.8s;
}
.searchmodle .right .txt .t{
    width: 5px;
    height: 50px;
    background-image: linear-gradient(red,yellow);
}
.searchmodle .right .hello{
    color: #50626f;
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0;
}
.searchmodle .right .hello:hover{
    color: #06187b;
    transition: 0.6s;
}
.searchmodle .right .img{
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
    height: 400px;
    position: relative;
}
.searchmodle .right .img>img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: 0.8s;
}
.searchmodle .right .img:hover>img{
    transform: scale(1.2);
    transition: 0.8s;
    cursor: pointer;
}
.searchmodle .right .img>.zz{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color:#2e3a46;
    opacity: 0.5;
    top: 0;
    transition: 0.8s;
}
.searchmodle .right .img:hover>.zz{
    opacity: 0.8;
    transition: 0.8s;
}
.searchmodle .right .img .txt{
    display: flex;
    flex-direction: column;
    padding: 10px;
    position: absolute;
    top: 30%;
    text-align: left;
    left: 6%;
}
.searchmodle .right .img .txt>button{   
    padding: 10px 20px;
    background-color: #06187b;
    color: white;
    border: 0;
    font-size: 16px;
    margin-top: 20px;
    transition: 0.8s;

}
.searchmodle .right .img .txt>button:hover{
    background-color: #ffd101;
    color: #333;
    transition: 0.8s;
}

.searchmain .pagelist{
	text-align: center;
	font-size: 0;
	margin-bottom: 50px;
	margin-top: 30px
}

.searchmain .pagelist>a.item{
	width: 42px;
	height: 42px;
	line-height: 40px;
	border-radius: 2px;
	border: 1px solid #dedede;
	display: inline-block;
	vertical-align: middle;
	font-size: .14rem;
	color: #333;
	text-align: center;
	background: #fff;
	transition: all .3s ease;
	margin: 0 5px

}
.searchmain .pagelist>a.item2{
    width: 120px;
}
.searchmain .pagelist>a:hover{
    color: black;
}
.searchmain .pagelist>a.on{
	background: #06187b;
	color: #fff;
}
.searchmain .left .r .imgs{
    width: 20%;
    /* object-fit: cover; */
    border-radius: 10px;
}
.searchmain .left .r .imgs>img{
    border-radius: 5px;
    width: 100%;
}

/* 404 */
.modle404 .modlemain404{display: flex;}
.modlemain404 .left{width: 60%; display: flex; justify-content: end;}
.modlemain404 .left>img{width: 80%;object-fit: cover;}
.modlemain404 .right{width: 39%;}
.modlemain404 .right>h5{padding: 10px 0;}
.modlemain404 .right>h6{font-size: 30px; padding: 10px 0;}
.modlemain404 .right>p{
    padding: 10px 0;
}
.modlemain404 .right>button{
    padding: 11px 20px;
    border-radius: 55px;
    border: 2px solid #0d3de5;
    background-color: white;
    margin: 20px 0;
}
.modlemain404 .right>button:hover{
    background-color: #0d3de5;
    color: white;
    transition: 0.5s;
}
.index_about{
    padding-top: 60px;
}

.pb100{
    padding-top: 60px;
}