* {
	margin: 0;
	padding: 0;
}



.body1_img{
    position: relative;
    width: 100%;
    height: 6rem;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.body1_img .item_bd{
    position: absolute;
    width: 100%;
    height: 100%;
}
.body1_img .item_bd .item_img{
    display: none;
}
.body1_img .item_bd .item_img.on{
    display: block;
}
.body1_img .item_bd .item_img.on img{
	animation: zoom 0.5s ease-in-out;
}
@keyframes zoom {
    from {transform: scale(1.1);}
    to {transform: scale(1);}
 }
.body1_img .btn_hd{
    display: flex;
}
.body1_img .body1_item{
    width: 50%;
    height: 1.8rem;
    padding: 0.36rem 0.6rem 0.38rem;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.body1_img .btn_hd .body1_item .body1_bg{
    position: absolute;
    width: 100%;
    height: 100%;
    background: #234529;
    opacity: 0.9;
    bottom: -110%;
    left: 0;
    transition:bottom .5s;
	-moz-transition:bottom .5s;
	-webkit-transition:bottom .5s;
	-o-transition:bottom .5s;
}
.body1_img .btn_hd .body1_item.act .body1_bg{
    bottom: 0;
}
.body1_img .btn_hd .body1_item .body1_bg::before{
    content: "";
    position: absolute;
    width: 0.2rem;
    height: 0.2rem;
    background: url(../img/ban_fl_top.png) center no-repeat;
    top: 0;
    left: 0;
}
.body1_img .btn_hd .body1_item .body1_bg::after{
    content: "";
    position: absolute;
    width: 0.2rem;
    height: 0.2rem;
    background: url(../img/ban_fr_bottom.png) center no-repeat;
    bottom: 0;
    right: 0;
}
.body1_img .body1_item::before{
    content: "";
    position: absolute;
    width: 101%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -moz-backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    -o-backdrop-filter: blur(8px);
    z-index: 0;
}
.body1_img .body1_item .body1_title{
    font-family: AlibabaPuHuiTi-Regular;
    font-weight: normal;
    font-size: 0.24rem;
    color: #FFFFFF;
    line-height: 0.33rem;
    margin-bottom: 0.16rem;
    position: relative;
    z-index: 2;
}
.body1_img .body1_item .body1_cont{
    font-family: AlibabaPuHuiTi-Regular;
    font-weight: normal;
    font-size: 0.18rem;
    color: #FFFFFF;
    line-height: 0.32rem;
    position: relative;
    z-index: 2;
}




.body2_cont{
    display: flex;
    margin-bottom: 1.4rem;
}
.body2_cont .body2_item{
    width: 4.8rem;
    height: 5rem;
    overflow: hidden;
    margin-right: 0.4rem;
    position: relative;
    cursor: pointer;
}
.body2_cont .body2_item:nth-child(3n){
    margin-right: 0;
}
.body2_cont .body2_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.body2_cont .body2_item::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient( 0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.26) 100%);
}
.body2_cont .body2_item .body2_top{
    width: 100%;
    text-align: center;
    font-family: AlibabaPuHuiTi-Bold;
    font-weight: normal;
    font-size: 0.24rem;
    color: #FFFFFF;
    line-height: 0.33rem;
    position: absolute;
    top: 3.87rem;
}
.body2_cont .body2_item .body2_top::before{
    content: "";
    position: absolute;
    width: 0.3rem;
    height: 0rem;
    border: 0.01rem solid #D19918;
    bottom: -0.2rem;
    left: 50%;
    transform: translateX(-50%);
}
.body2_cont .body2_item .body2_bottom{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    background: rgba(35,69,41,0.9);
    padding: 1.2rem 0.6rem 0.4rem;
    box-sizing: border-box;
    bottom: -110%;
    transition:all .5s;
	-moz-transition:all .5s;
	-webkit-transition:all .5s;
	-o-transition:all .5s;
}
.body2_cont .body2_item .body2_bottom .body2_title{
    width: 100%;
    text-align: center;
    font-family: AlibabaPuHuiTi-Bold;
    font-weight: normal;
    font-size: 0.24rem;
    color: #FFFFFF;
    line-height: 0.33rem;
    position: relative;
    margin-bottom: 0.7rem;
}
.body2_cont .body2_item .body2_bottom .body2_title::before{
    content: "";
    position: absolute;
    width: 0.3rem;
    height: 0rem;
    border: 0.01rem solid #D19918;
    bottom: -0.2rem;
    left: 50%;
    transform: translateX(-50%);
}
.body2_cont .body2_item .body2_bottom .body2_cont{
	font-family: AlibabaPuHuiTi-Regular;
    font-weight: normal;
    font-size: 0.18rem;
    color: #FFFFFF;
    line-height: 0.32rem;
}
.body2_cont .body2_item:hover::before{
    /*display: none;*/
}
.body2_cont .body2_item:hover .body2_top{
    display: none;
}
.body2_cont .body2_item:hover .body2_bottom{
    bottom: 0;
}




