.container {
    color: #444;
    margin: 3rem auto;
    width: 1200px;
}

/*左边侧边栏*/
.container .tab-items-wrapper, .container .content-items-wrapper {
    display: inline-block;
    vertical-align: top;
}

.container .tab-items-wrapper {
    width: 10rem;
    margin-right: 5rem;
    overflow: visible;
    border: 1px solid #ddd;
}

.container .text {
    color: #fff;
    background: #8c1d88;
    height: 4rem;
    padding: .7rem 0 0 1.2rem;
}

.container .tab-items-wrapper .tab-item {
    display: inline-block;
    width: 150px;
    margin-left: 25px;
    font-size: 16px;
    color: #444;
    border-bottom: 1px solid transparent;
}

.container .tab-items-wrapper .tab-item > a {
    display: inline-block;
    width: 100%;
    height: 100%;
    color: inherit;
    padding-top: 20px;
    padding-bottom: 20px;
}

.container .tab-items-wrapper .tab-item > a:before {
    content: '\25C6';
    margin-right: 5px;
    font-family: "微软雅黑";
}

.container .tab-items-wrapper .tab-item.active, .container .tab-items-wrapper .tab-item:hover {
    color: #8c1d88;
    border-color: #8c1d88;
}

.container .tab-items-wrapper .tab-item:nth-child(2) {
    margin-top: .8rem!important;
}

.container .tab-items-wrapper .tab-item:last-child {
    margin-bottom: .8rem!important;
}

/*右侧内容区*/

.container .content-items-wrapper {
    text-align: center;
    width: 43rem;
    /*transform-style: preserve-3d; 保持子元素3d效果，IE不支持*/
    /*perspective: 1500px; 视距*/
}

.container .content-items-wrapper .content-item {
    margin: 0 .5rem;
    position: relative;
}

.container .content-items-wrapper .content-item.partner {
    margin-bottom: 2rem;
    display: inline-block;
}

.container .content-items-wrapper .content-item.splitter {
    margin-bottom: 2rem;
}

.container .content-items-wrapper .content-item.splitter.name {
    background: url('http://oriywhc9v.bkt.clouddn.com/img/professionals_split_v1.png') no-repeat center;
    width: 100%;
    text-align: center;
}

.container .content-items-wrapper .content-item.splitter.name > span {
    display: inline-block;
    background: #ffffff;
    font-size: 15px;
    line-height: 26px;
    padding: 0 20px;
    color: #898989;
}

.container .content-items-wrapper .content-item.employee {
    /*transform-style: preserve-3d; 保持子元素3d效果*/
    /*transform-origin: 50% 0; !*变换位置*!*/
    /*transition: all .8s; !*过度时间*!*/
    display: inline-block;
    margin-bottom: 1rem;
    margin-top: 1rem;
    margin-left: 2rem;
    margin-right: 2rem;
    cursor: pointer;
}

.container .content-items-wrapper .content-item.employee.front .back-side {
    /*transform: rotateY(0deg);*/
    display: none;
}

/*.container .content-items-wrapper .content-item.employee.back {*/
/*!*transform: rotateY(-180deg);*!*/
/*}*/

.container .content-items-wrapper .content-item .front-side {
    color: #666;
    cursor: pointer;
    /*transform: rotateY(0deg);
    backface-visibility: hidden; 背向屏幕时不可见*/
}

.container .content-items-wrapper .content-item .front-side .avatar-wrapper {
    border-radius: 50%;
    overflow: hidden;
    width: 10rem;
    height: 10rem;
    position: relative;
}

.container .content-items-wrapper .content-item .front-side .avatar-wrapper .icon-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(140, 29, 136, .5);
    display: inline-flex;
    /*transition: all .3s;*/
    opacity: 0;
    filter:alpha(opacity=0);  
    justify-content: center;
    align-items: center;
}

.container .content-items-wrapper .content-item .front-side .avatar-wrapper .icon-wrapper img {
    width: 30%;
}

.container .content-items-wrapper .content-item .front-side:hover .icon-wrapper {
    opacity: 1;
    filter:alpha(opacity=100);  
}

.container .content-items-wrapper .content-item .front-side .name {
    text-align: center;
    font-size: .8rem;
    line-height: 4rem;
}

/*
.container .content-items-wrapper .content-item .back-side {
    transform: translateY(-50%);
    min-height: 14rem;
    backface-visibility: hidden; 背向屏幕时不可见
    position: absolute;
    top: 50%;
    left: 0;
    background: #8c1d88;
    color: #fff;
    padding: .5rem;
}

.back-side .info-name {
    font-size: 1rem;
    text-align: center;
}

.back-side .info-desc {
    font-size: .7rem;
    text-align: left;
}
*/
/*合伙人展开页*/
.photo-container {
    height: 20rem;
    margin: 3rem auto;
    width: 1200px;
    border-radius: 10px;
    border: 5px solid gray;
    overflow: hidden;
    position: relative;
}

.photo-container .photo {
    width: 100%;
}

.photo-container .photo img {
    width: 100%;
}

.photo-container .info {
    position: absolute;
    font-size: .7em;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    opacity: 0;
    animation-duration: 2s;
    animation-fill-mode: both;
    display: table;

}

.photo-container .info span{
    display: table-cell;
    vertical-align: middle;
    padding: 10px;
}

.photo-container .part1 {
    width: 8.5rem;
    height: 8.5rem;
   
    text-align: center;
    background: #ba9fd6;
    background: rgba(174, 157, 246, .7);
    top: 2rem;
    left: 2rem;
    animation-name: fade-scroll-left;
}

.photo-container .part2 {
    width: 6.5rem;
    height: 6.5rem;
    background: #d27f4c;
    background: rgba(225, 148, 95, .7);
    bottom: 2rem;
    left: 13rem;
    animation-name: fade-scroll-left;
    animation-delay: .5s;
}

.photo-container .part3 {
    width: 4.5rem;
    height: 4.5rem;
    background: #968880;
    background: rgba(127, 127, 127, 0.7);
    top: 1rem;
    left: 13rem;
    animation-name: fade-scroll-left;
    animation-delay: 1s;
}

.photo-container .part-right {
    top: 0;
    right: 1rem;
    height: 100%;
    width: 20%;
    text-indent: 2em;
    color: #333;
    animation-name: fade-right;
    animation-delay: 1.5s;
    flex-wrap: wrap;
    flex-direction: column;
}

.photo-container .part-right p {
    width: 100%;
}

.new_page{ text-align: center;  padding-top: 50px;}
.new_page a,.new_page span{ display: inline-block; color: #666666; padding: 0 7px; height: 25px; line-height: 23px;  border-radius: 100%; font-size: 16px; cursor: pointer; }
.new_page span{ border: 1px solid #8c1d88; color: #8c1d88;  }
.new_page a:hover{ color: #8c1d88; }

@keyframes fade-scroll-left {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate(-50deg);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
}

@keyframes fade-right {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


