﻿a{
    text-decoration: none;
    color: #FFFFFF;
}
.content {
    margin: 90px 0;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 54px;
}

.tabs>div {
    margin-left: 10px;
    width: 139px;
    height: 41px;
    line-height: 41px;
    text-align: center;
    background: #ebe9e9;
    color: #999999;
    cursor: pointer;
}

.container .tabs_box {
    display: none;
}

.container .acc {
    display: block;
}

.box_flex {
  display: flex;
  /* justify-content: space-between; */
  /* align-items: center; */
  flex-wrap: wrap;
  column-gap: 25px;
}

.img {
    position: relative;
    width: 32%;
    margin-top:25px ;
}

.img_box {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    opacity: 0.85;
    background: #0C7F3E;
    text-align: center;
    line-height: 50px;
}

.img_box:hover {
    transition: linear, 1s;
    height: 130px;
    line-height: 80px;
}

.img_box:hover .seeMore {
    display: block;
}

.img_text {
    font-size: 18px;
    font-family: FZLTHK;
    font-weight: normal;
    color: #FFFFFF;
}

.seeMore {
    width: 101px;
    height: 32px;
    border: 1px solid #FFFFFF;
    margin: 0 auto;
    font-size: 14px;
    font-family: FZLTHK;
    font-weight: normal;
    color: #FFFFFF;
    border-radius: 14px;
    line-height: 32px;
    cursor: pointer;
    display: none;
}
/*小于 480px  手机*/
@media screen and (max-width: 480px) {
    .img_box{
        
    }
    .box_flex{
        display: block;
    }
    .img{
        width: 100%;
    }
}