/*------------ team ------------*/
.team-list {
    margin: 0 -15px;
}
.team-list li {
    width: 20%;
    padding: 0 15px 60px;
    position: relative;
}
.team-list li:nth-child(5n+1) {
    clear: left;
}
.team-list li .box {
    margin: 0 auto;
    max-width: 260px;
    display: block;
    box-sizing: border-box;
    position: relative;
}
.team-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:80;
}
.team-list .pic {
    position: relative;
    box-sizing: border-box;
    transition: all .2s;
    margin: 0 auto 3px;
    max-width: 260px;
}
.team-list .pic:after {
    content: "";
    position: absolute;
    display: block;
    transition: all .3s ease;
    height: 3px;
    left: 0;
    top: 0;
    width: 0%;
    background: #810714;
}
.team-list li .box:hover .pic:after {
    width: 100%;
}
.team-list .pic {
    overflow: hidden;
    position: relative;
}
.team-list .box .pic img {
    transition: all ease 0.6s;
}
.team-list .box:hover .pic img {
    transform: scale(1.1);
}
.team-list .text {
    text-align: center;
    max-width: 260px;
    margin: 0 auto;
    box-sizing: border-box;
    background: #000000;
    padding: 8px 10px;
    position: relative;
    transition: all .2s;
}
.team-list li .box:hover .text{
    background: #810714;
}
.team-list .name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #FFF;
    font-weight: normal;
    letter-spacing: 2px;
}
/*------------ detail-main ------------*/
.team-detail {
    /* max-width: 1200px; */
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 0px 65px;

}
.team-date {
    position: static;
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px 0 0;
}
.team-title {
    margin: 0 0px 30px;
    border-bottom: 1px solid #e4e4e4;
    color: #000000;
    font-size: 18px;
    position: relative;
    text-align: center;
}
.team-title h1{
    display: block;
    margin: 0;
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 20px;
}
/*------------ rwd ------------*/
@media screen and (max-width: 1280px) {
    .team-list {
        max-width: 900px;
        margin: 0 auto;
    }
    .team-list li {
        width: calc((100% / 3) - 0.1px);
    }
    .team-list li:nth-child(5n+1) {
        clear: none;
    }
    .team-list li:nth-child(3n+1) {
        clear: left;
    }
}
@media screen and (max-width: 767px) {
    .team-list {
        max-width: 600px;
    }
    .team-list li {
        width: 50%;
    }
    .team-list li:nth-child(3n+1) {
        clear: none;
    }
    .team-list li:nth-child(2n+1) {
        clear: left;
    }
    .team-detail {
        padding: 0 0px 0px;
    }
    .team-date {
        position: absolute;
        top: 0;
        left: 50%;
        margin: 0 0 0 -36px;
    }
}
@media screen and (max-width: 600px) {
    .team-list li {
        width: 100%;
        padding: 0 0 60px;
    }
}
