.aboutBanner{
    position: relative;
    height: 400px;
}
.aboutBanner img{
    display: block;
    width: 1920px;
    position: absolute;
    left: 50%;
    margin-left: -960px;
}
.about_wrapper{
    padding: 0 20px;
}
.aboutUs{
    text-align: center;
    margin: 0 auto;
}
.aboutUs h3{
    display: block;
    margin: 76px auto 50px;
    line-height: 1;
    font-size: 40px;
    text-align: center;
}
.aboutUs_detail > div{
    display: inline-block;
    width: 482px;
    vertical-align: top;
}
.aboutUs_detail > div.detail{
    width: 460px;
}
.aboutUs_detail > div.detail2{
    display: none;
    width: 100%;
    margin-top: 50px;
}
.detail h5{
    font-size: 18px;
    font-weight: 700;
    line-height: 1.9;
    text-indent: 2em;
    margin: 24px 0 14px;
}
.detail h6{
    font-size: 14px;
    line-height: 1.8;
    text-indent: 2em;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
}
.detail .more{
    display: block;
    text-align: right;
    color: #48c6af;
    background: url("../image/aboutUs/more.png") no-repeat;
    background-size: auto;
    background-position: top right;
    padding-right: 32px;
    margin-top: 10px
}
.ul_list{
    width: 1030px;
    margin: 0 auto;
}
.activeCom{
    background: rgba(249,249,249,1);
    padding-top: 1px;
    width: 100%;
    margin: 0px auto;
    padding-bottom: 100px;
}
.about_img{
    width: 482px;
    margin-right: 30px;
}

.teamShow img{
    transform: scale(1);
    transition: all 1s ease 0s;
    -webkit-transform: scale(1);
    -webkit-transform: all 1s ease 0s;
    cursor: pointer;
}
.teamShow img:hover{
    transform: scale(1.3);
    transition: all 1s ease 0s;
    -webkit-transform: scale(1.3);
    -webkit-transform: all 1s ease 0s;
}
.teamShow img.fangda_1:hover{
    transform: scale(3);
    -webkit-transform: scale(3);
    z-index: 22;
}
.teamShow img.fangda_3:hover{
    transform: scale(2.2);
    -webkit-transform: scale(2.2);
    z-index: 22;
}
.teamShow img.fangda_4:hover{
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    z-index: 22;
}
.teamShow{
    position: relative;
    text-align: center;
    height: 380px;
    margin: 0 auto;
    width: 1000px;
    margin-bottom: 50px;
}
.fangda_1{
    position: absolute;
    left: 80px;
    bottom: 14px;
    width: 120px;
}
.fangda_2{
    position: absolute;
    left: 200px;
    bottom: 44px;
    width: 300px;
}
.fangda_3{
    position: absolute;
    left: 500px;
    bottom: 2px;
    width: 160px;
}
.fangda_4{
    position: absolute;
    left: 666px;
    bottom: 94px;
    width: 240px;
}

.team_text{
    text-align: center;
    font-size: 14px;
    line-height: 2.0;
}
.team-text h6{
    width: 1000;
}

.ul_list li{
    position: relative;
    float: left;
    width: 334px;
    text-align: center;
    cursor: pointer;
    margin-top: 10px;
}
.ul_list li.long{
    width: 678px;
}
.ul_list li img{
    display: block;
    width: 100%;
}
.ul_list li .text{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px;
    line-height: 50px;
    background: rgba(0,0,0,0.3);
    color: #ffffff;
    font-size: 16px;
    padding: 0 30px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.ul_list li .alpha_text{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 30px;
    line-height: 1.6;
    font-size: 15px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: url("../image/aboutUs/k.png") no-repeat;
    background-position: center;
    background-color: rgba(0,0,0,0.5);
    display: none;
}
.ul_list li.long .alpha_text{
    background-image: url("../image/aboutUs/k2.png");
}
.ul_list li.small .alpha_text{
    background-image: url("../image/aboutUs/k3.png");
}
.ul_list li .alpha_text.show{
    display: flex;
    -webkit-animation-name: fadeIn; /*动画名称*/
    -webkit-animation-duration: 300ms; /*动画持续时间*/
    -webkit-animation-iteration-count: 1; /*动画次数*/
    -webkit-animation-delay: 0s; /*延迟时间*/
}
.ml{
    margin-left: 10px;
}
.mr{
    margin-right: 10px;
}
.mt{
    margin-top: 10px;
    width: 1000px;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0; /*初始状态 透明度为0*/
    }
    50% {
        opacity: 0; /*中间状态 透明度为0*/
    }
    100% {
        opacity: 1; /*结尾状态 透明度为1*/
    }
}