.aboutus-page{}
.aboutus-page .aboutus-banner{
  width: 100%;
  min-width: 1400px;
}
.aboutus-page .aboutus-banner img{
  display: block;
  width: 100%;
}
.aboutus-page .aboutus-nav{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 60px;
}
.aboutus-page .aboutus-nav .nav-item{
  width: 190px;
  height: 49px;
  text-align: center;
  line-height: 49px;
  font-size: 16px;
  font-weight: bold;
  color: #373737;
  cursor: pointer;
  background: #E5E5E5;
  margin-right: 22px;
}
.aboutus-page .aboutus-nav .nav-item:last-child{
  margin-right: 0;
}
.aboutus-page .aboutus-nav .nav-item:hover{
  color: #ffffff;
  background: #06509A;
}
.aboutus-page .aboutus-nav .nav-item.active{
  color: #ffffff;
  background: #06509A;
}
.aboutus-page .aboutus-container{
  width: 1400px;
  margin: 0 auto;
}
.aboutus-page .aboutus-container .box{
  display: none;
}
.aboutus-page .aboutus-container .box.show{
  display: block;
}
.aboutus-page .aboutus-container .intro-box{
  display: flex;
  align-items: center;
  padding-bottom: 80px;
}
.aboutus-page .aboutus-container .intro-box .left{
  flex: 1;
  margin-right: 90px;
}
.aboutus-page .aboutus-container .intro-box .left h4{
  font-size: 30px;
  font-weight: bold;
  color: #2C2C2C;
  margin-bottom: 50px;
}
.aboutus-page .aboutus-container .intro-box .left .content{
  font-size: 16px;
  font-weight: 300;
  color: #474747;
  line-height: 32px;
}
.aboutus-page .aboutus-container .intro-box .left p{
  margin-bottom: 30px;
  position: relative;
  padding-left: 27px;
}
.aboutus-page .aboutus-container .intro-box .left .content p::before{
  position: absolute;
  top: 8px;
  left: 0;
  content: '';
  width: 6px;
  height: calc(100% - 16px);
  background: #F3F3F3;
}
.aboutus-page .aboutus-container .intro-box .left p:last-child{
  margin-bottom: 0;
}
.aboutus-page .aboutus-container .intro-box .right{
  width: 618px;
  height: 424px;
  overflow: hidden;
}
.aboutus-page .aboutus-container .intro-box .right img{
  display: block;
  height: 424px;
  width: auto;
  transform-origin: 50% 50%;
}
.aboutus-page .aboutus-container .culture-box{
  text-align: center;
  font-size: 16px;
  font-family: PingFang;
  font-weight: 300;
  color: #474747;
  line-height: 33px;
  width: 1002px;
  margin: 0 auto;
  padding: 0 0 60px;
}
.aboutus-page .aboutus-container .team-box{
  display: flex;
  flex-wrap: wrap;
}
.aboutus-page .aboutus-container .team-box .team-item{
  width: 22%;
  margin-bottom: 30px;
  margin-right: 4%;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.aboutus-page .aboutus-container .team-box .team-item:nth-child(4n){
  margin-right: 0;
}
.aboutus-page .aboutus-container .team-box .team-item .img-box {
  width: 100%;
  height: 285px;
  overflow: hidden;
}
.aboutus-page .aboutus-container .team-box .team-item .img-box img{
  display: block;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
}
.aboutus-page .aboutus-container .team-box .team-item .txt-box{
  background: #FBFBFB;
  padding: 10px 20px 20px;
}
.aboutus-page .aboutus-container .team-box .team-item .txt-box .title{
  display: flex;
  align-items: center;
  font-size: 18px;
  font-family: PingFang;
  font-weight: 500;
  color: #242424;
}
.aboutus-page .aboutus-container .team-box .team-item .txt-box .title span{
  font-size: 14px;
  font-family: PingFang;
  font-weight: 500;
  color: #A4A3A3;
  margin-left: 5px;
}
.aboutus-page .aboutus-container .team-box .team-item .txt-box .content{
  font-size: 14px;
  font-family: PingFang;
  font-weight: 500;
  color: #3D3D3D;
  line-height: 23px;
}
.aboutus-page .aboutus-container .team-box .team-item:hover{
  transform: translateY(-22px);
  border-bottom: 2px solid #06509A;
}
.aboutus-page .aboutus-container .team-box .team-item:hover .txt-box{
  background: #ffffff;
}
.aboutus-page .aboutus-container .team-box .team-item:hover .txt-box .title{
  color: #06509A;
}
.aboutus-page .aboutus-container .team-box .page-list{
  width: 100%;
}
.team-dialog{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .5);
  display: none;
}
.team-dialog .box{
  width: 500px;
  height: 500px;
  background: #ffffff;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  padding: 5px 0;
}
.team-dialog .box .close-dialog{
  position: absolute;
  top: 15px;
  right: 20px;
  display: block;
}
.team-dialog .box .close-dialog img{
  display: block;
  width: 20px;
}
.team-dialog .box .container{
  overflow-y: auto;
  height: 100%;
  padding: 10px 0;
  box-sizing: border-box;
}
.team-dialog .box .container::-webkit-scrollbar{
  width:5px;
  height:5px;
  /**/
}
.team-dialog .box .container::-webkit-scrollbar-track{
  background: rgb(239, 239, 239);
  border-radius:2px;
}
.team-dialog .box .container::-webkit-scrollbar-thumb{
  background: #bfbfbf;
  border-radius:5px;
}
.team-dialog .box .container::-webkit-scrollbar-thumb:hover{
  background: #bfbfbf;
}
.team-dialog .box .head-img img {
  display: block;
  width: 150px;
  margin: 0 auto;
}
.team-dialog .box .title {
  text-align: center;
  font-size: 18px;
  margin: 10px 0 5px;
}
.team-dialog .box .s-title {
  text-align: center;
  font-size: 16px;
  margin: 0 0 10px;
  color: #666;
}
.team-dialog .box .content{
  padding: 10px 20px;
  border-top: 1px solid #e6e6e6;
}
.team-dialog .box .content p{
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .aboutus-page .aboutus-banner{
    width: 100%;
    min-width: unset;
    min-width: unset;
    height: 3rem;
    width: 100%;
    overflow: hidden;
  }
  .aboutus-page .aboutus-banner img{
    display: block;
    width: 100%;
    display: block;
    width: auto;
    height: 3rem;
    transform-origin: 50% 50%;
  }
  .aboutus-page .aboutus-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0 0.6rem;
  }
  .aboutus-page .aboutus-nav .nav-item{
    width: 2rem;
    height: 0.7rem;
    text-align: center;
    line-height: 0.7rem;
    font-size: 0.3rem;
    font-weight: normal;
    box-sizing: border-box;
    margin-right: 0.3rem;
  }
  .aboutus-page .aboutus-nav .nav-item:hover{
    color: #ffffff;
    background: #06509A;
  }
  .aboutus-page .aboutus-nav .nav-item.active{
    color: #ffffff;
    background: #06509A;
  }
  .aboutus-page .aboutus-container{
    width: 100%;
    margin: 0 auto;
  }
  .aboutus-page .aboutus-container .box{
    display: none;
  }
  .aboutus-page .aboutus-container .box.show{
    display: block;
  }
  .aboutus-page .aboutus-container .intro-box{
    display: flex;
    align-items: unset;
    flex-direction: column-reverse;
    padding-bottom: 0;
    padding: 0 0.3rem;
    box-sizing: border-box;
  }
  .aboutus-page .aboutus-container .intro-box .left{
    flex: 1;
    margin-right: 0;
    padding-bottom: 0.5rem;
  }
  .aboutus-page .aboutus-container .intro-box .left h4{
    font-size: 0.32rem;
    font-weight: bold;
    color: #2C2C2C;
    margin-bottom: 0.4rem;
  }
  .aboutus-page .aboutus-container .intro-box .left .content{
    font-size: 0.28rem;
    font-weight: 300;
    color: #474747;
    line-height: 0.4rem;
  }
  .aboutus-page .aboutus-container .intro-box .left p{
    margin-bottom: 0.4rem;
    position: relative;
    padding-left: 0;
  }
  .aboutus-page .aboutus-container .intro-box .left .content p::before{
    content: none;
  }
  .aboutus-page .aboutus-container .intro-box .left p:last-child{
    margin-bottom: 0;
  }
  .aboutus-page .aboutus-container .intro-box .right{
    width: 100%;
    height: 3rem;
    overflow: hidden;
    margin-bottom: 0.3rem;
  }
  .aboutus-page .aboutus-container .intro-box .right img{
    display: block;
    height: auto;
    width: 100%;
    transform-origin: 50% 50%;
  }
  .aboutus-page .aboutus-container .culture-box{
    text-align: center;
    font-size: 0.28rem;
    font-family: PingFang;
    font-weight: 300;
    color: #474747;
    line-height: 0.44rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 0.3rem 0.5rem;
    box-sizing: border-box;
  }
  .aboutus-page .aboutus-container .team-box{
    display: flex;
    flex-wrap: wrap;
    padding: 0 0.3rem;
    box-sizing: border-box;
  }
  .aboutus-page .aboutus-container .team-box .team-item{
    width: 48%;
    margin-bottom: .4rem;
    margin-right: 4%;
    border-bottom: none;
  }
  .aboutus-page .aboutus-container .team-box .team-item:nth-child(4n){
    margin-right: 4%;
  }
  .aboutus-page .aboutus-container .team-box .team-item:nth-child(2n){
    margin-right: 0;
  }
  .aboutus-page .aboutus-container .team-box .team-item .img-box {
    width: 100%;
    height: 3rem;
    overflow: hidden;
  }
  .aboutus-page .aboutus-container .team-box .team-item .img-box img{
    display: block;
    width: 100%;
    height: auto;
    min-width: unset;
    min-height: unset;
  }
  .aboutus-page .aboutus-container .team-box .team-item .txt-box{
    background: #FBFBFB;
    padding: 0.2rem 0.3rem;
  }
  .aboutus-page .aboutus-container .team-box .team-item .txt-box .title{
    display: flex;
    align-items: center;
    font-size: 0.28rem;
    font-family: PingFang;
    font-weight: 500;
    color: #242424;
    white-space: nowrap;
  }
  .aboutus-page .aboutus-container .team-box .team-item .txt-box .title span{
    font-size: 0.24rem;
    font-family: PingFang;
    font-weight: 500;
    color: #A4A3A3;
    margin-left: 0;
    white-space: nowrap;
  }
  .aboutus-page .aboutus-container .team-box .team-item .txt-box .content{
    font-size: 0.28rem;
    font-family: PingFang;
    font-weight: 500;
    color: #3D3D3D;
    margin-top: 0.12rem;
    line-height: 0.4rem;
  }
  .aboutus-page .aboutus-container .team-box .team-item:hover{
    transform: translateY(-22px);
    border-bottom: 2px solid #06509A;
  }
  .aboutus-page .aboutus-container .team-box .team-item:hover .txt-box{
    background: #ffffff;
  }
  .aboutus-page .aboutus-container .team-box .team-item:hover .txt-box .title{
    color: #06509A;
  }
  .aboutus-page .aboutus-container .team-box .page-list{
    width: 100%;
  }

  .team-dialog .box{
    width: 7.1rem;
    height: 10rem;
    border-radius: 0.2rem;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 5px 0;
  }
  .team-dialog .box .close-dialog{
    position: absolute;
    top: 0.2rem;
    right: 0.2rem;
    display: block;
  }
  .team-dialog .box .close-dialog img{
    display: block;
    width: 0.3rem;
  }
  .team-dialog .box .container{
    overflow-y: auto;
    height: 100%;
    padding: 0.1rem 0;
    box-sizing: border-box;
  }
  .team-dialog .box .container::-webkit-scrollbar{
    width:5px;
    height:5px;
    /**/
  }
  .team-dialog .box .container::-webkit-scrollbar-track{
    background: rgb(239, 239, 239);
    border-radius:2px;
  }
  .team-dialog .box .container::-webkit-scrollbar-thumb{
    background: #bfbfbf;
    border-radius:5px;
  }
  .team-dialog .box .container::-webkit-scrollbar-thumb:hover{
    background: #bfbfbf;
  }
  .team-dialog .box .head-img img {
    display: block;
    width: 2rem;
    margin: 0 auto;
  }
  .team-dialog .box .title {
    text-align: center;
    font-size: 0.32rem;
    margin: 0.1rem 0 0.05rem;
  }
  .team-dialog .box .s-title {
    text-align: center;
    font-size: 0.28rem;
    margin: 0 0 0.1rem;
  }
  .team-dialog .box .content{
    padding: 0.1rem 0.2rem;
    border-top: 1px solid #e6e6e6;
  }
  .team-dialog .box .content p{
    font-size: 0.28rem;
    line-height: 0.4rem;
    margin-bottom: 0.1rem;
  }
}

.call-me{
}

.call-me p{
  font-size: 20px;
  line-height: 30px;
  position: relative;
  padding-left: 20px;
}

.call-me p::before{
  position: absolute;
  top: 8px;
  left: 0;
  content: '';
  width: 6px;
  height: calc(100% - 16px);
  background: #F3F3F3;
}

.call-me .about-call-me-img-wrap{
 position: relative;
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 justify-content: space-between;
 margin-top: 20px;
 margin-bottom: 20px;
}

.call-me .about-call-me-img-wrap .item{
  border: 1px solid #000;
  border-radius: 4px;
  width: 400px;
  display: flex;
  align-items: flex-start;
  padding: 30px 20px;
  box-sizing: border-box;
}

.call-me .about-call-me-img-wrap img {
  width: 100px;
  margin-right: 20px;
}

.call-me .about-call-me-img-wrap .title {
  width: 100px;
  font-size: 25px;
  margin-bottom: 15px;
}

.call-me .about-call-me-img-wrap .smallContnet{
  font-size: 14px;
  margin-bottom: 10px;
}