/*关于我们*/
.content {
    width: 1200px;
    margin: 0px auto 90px;
}
.aboutUs {
    margin-bottom: 40px;
}
.aboutUs h3, .team h3 {
    text-align: center;
    font-size: 30px;
    color: rgb(164, 92, 15);
    margin-bottom: 40px;
    margin-top:40px;
}
.aboutUs p {
    font-size: 24px;
    line-height: 42px;
    text-align: justify;
    color: rgb(51, 51, 51);
    padding: 58px 76px;
    background: rgb(255, 246, 236);
}
/*团队介绍*/
.team {
    width: 100%;
    margin-bottom: 130px;
}
.team .photo {
    width: 100%;
}
/*.team .photo ul {
    width: 1200px;
}*/
.team .photo ul li {
    float: left;
    margin-right: 40px;
    margin-bottom: 40px;
}
.team .photo ul li a{
    display: block;
    font-size: 0;
}
.team .photo ul li img{
    width: 270px;
    height: 350px;
}
.team .photo ul li:nth-child(4n+4) {
    margin-right: 0px;
}
/*弹窗*/
.myPop{ 
    width:100%; 
    height:100%; 
    position:fixed; 
    z-index:99999;
    display:none; 
}
.popBg{ 
    width:100%; 
    height:100%; 
    background:#000; 
    opacity:0.9; 
    filter:alpha(opacity=90); 
    position:absolute; 
    left:0; 
    top:0; 
    z-index:1; 
}
.popCon{ 
    width:74vw; 
    height:80vh; 
    position:absolute; 
    left: 50%;
    top: 50%;
    margin-top: -40vh;
    margin-left: -37vw; 
    z-index:2;
}
.closeBtn{
    width: 36px;
    height: 36px;
    background: url(../images/nav/closebtn.png) no-repeat;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    z-index: 3;
}
/*.popup ul li{display: none;}*/
.popup ul li .liBox{
    width: 74vw;
    height:80vh;
    background: #f7e2c4;
    position:relative;
    display: flex;
}
.leftImg{
    height: 100%;
    width: 42%;
}
.leftImg img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.rightText{
    flex:1;
    padding: 60px 32px 0px 80px;
    color: #000;
}
.rightText h3{
    font-size: 24px;
    line-height: 1;
    margin-bottom: 15px;
    font-weight: 600;
}
.rightText h4{
    font-size: 18px;
    line-height: 1;
    margin-bottom: 30px;
}
.rightText p{
    font-size: 16px;
    line-height: 24px;
    text-align: justify;
    text-indent: 32px;
    margin-bottom: 20px;

}
.rightText .swiper-slide{
    font-size: 18px;
    height: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 48px;
    height: 46vh;
    overflow-y: auto;
}
@media (max-width: 1366px){
    .content{
        width: 1000px;
    }
    .team .photo ul li img{
        width: 220px;
        height: auto;
    }
    .aboutUs p{
        font-size: 20px;
        line-height: 36px;
    }
}
@media (min-width: 1920px) {
    .rightText h3{
        font-size: 36px;
        line-height: 1;
        margin-bottom: 20px;
        font-weight: 600;
    }
    .rightText h4{
        font-size: 24px;
        line-height: 1;
        margin-bottom: 40px;
    }
    .rightText p{
        font-size: 22px;
        line-height: 32px;
        text-align: justify;
        text-indent: 44px;
        margin-bottom: 30px;
    }
} 
/*弹窗结束*/

/*滚动条宽高*/
.swiper-slide::-webkit-scrollbar{
    width: 5px;
    height: 8px;
}
/*正常情况下滑块的样式*/
.swiper-slide::-webkit-scrollbar-thumb{
    background-color: rgba(206, 169, 117, 1);
    border-radius: 10px;
}

/*鼠标悬浮在该类指向的控件上时滑块的样式*/
.swiper-slide:hover::-webkit-scrollbar-thumb{
    background-color: rgba(206, 169, 117, 1);
    border-radius: 10px;
    box-shadow: inset 1px 1px 0 rgba(0, 0, 0, .1);
}

/*鼠标悬浮在滑块上时滑块的样式*/
.swiper-slide::-webkit-scrollbar-thumb:hover{
    background-color: rgba(0, 0, 0, .4);
    box-shadow: inset 1px 1px 0 rgba(0, 0, 0, .1);
}

/*正常时候的主干部分*/
.swiper-slide::-webkit-scrollbar-track{
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
    background-color: rgba(206, 169, 117, 0.4);
}

/*鼠标悬浮在滚动条上的主干部分*/
.swiper-slide::-webkit-scrollbar-track:hover{
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .4);
    background-color: rgba(0, 0, 0, .01);
}



.cultureBox{
    padding: 0 76px 48px;
    background: rgb(255, 246, 236);
}
.cultureCon{
    position: relative;
    height: 220px;
}
.cultureCon p{
    display: none;
    background: none;
    position: absolute;
    left: 0;
    top: 0;
    padding: 58px 76px 20px;
}
.cultureBtn{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.cultureTitle{
    width: 185px;
    height: 185px;
}
.cultureTitle .iconBox {
    width: 185px;
    height: 185px;
    background: #c08f5e;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 1s ease 0s;
    -webkit-transition: all 1s ease 0s;
}
.cultureTitle .iconBox .icon {
    display: block;
    line-height: 88px;
    font-size: 88px!important;
    margin-bottom: 10px;
    color: #fff;
}
.cultureTitle .iconBox p {
    font-size: 28px;
    height: 28px;
    line-height: 28px;
    background: none;
    padding: 0;
    color: #fff;
}
.cultureTitle:hover .iconBox{
    transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
}
/*.myHover{
 *     animation: myHover 1s ease 0s forwards;
 *         -webkit-animation: myHover 1s ease 0s forwards;
 *         }
 *         @keyframes myHover{
 *             0%{
 *                     transform: rotateY(0);
 *                             -webkit-transform: rotateY(0);
 *                                 }
 *                                     100%{
 *                                             transform: rotateY(360deg);
 *                                                     -webkit-transform: rotateY(360deg);
 *                                                         }
 *                                                         }*/

