@charset "utf-8";
/* CSS Document */


/* 团队展示 */
.team{
    margin-top:5rem;
    margin-bottom: 2.5rem;
}
.teambox{
    margin: 0 -.625rem;
}
.team .iteam{
    padding: .625rem;
    width: 33.33%;
}
.team .iteam-t{
    background: #f5f5f5;
    overflow: hidden;
}
.team .iteam-t img{
    max-width: 100%;
    height: auto;
}
.team .iteam-b{
    padding: 1.875rem;
    background: #f5f5f5;
    position: relative;
}
.team .iteam-b h1{
    font-size: 1rem;
    font-weight: normal;
    color: #444;
}
.team .iteam-b span{
    font-size: .875rem;
    color: #999;
    margin: .875rem 0;
    display: block;
}
.team .iteam-b p{
    font-size: .875rem;
    color: #808080;
}
.team .iteam-b::before{
    content: "";
    position: absolute;
    top: 22%;
    left: -2%;
    opacity: 0;
    /* width: 1rem; */
    height: .1rem;
    background: #999;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.team .iteam:hover .iteam-b::before{
    width: 2.5rem;
    opacity: 1;
}
.team .iteam:hover .iteam-b h1{
    text-indent: 1.3rem;
}
.team .iteam:hover img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}