main .banner .swiper-container{
  height: 480px;
}
main .banner .swiper-slide{
  position: relative;
  height: 480px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
main .banner .swiper-container .swiper-pagination{
  top: unset;
  bottom: 20px;
  right: unset;
  left: 50%;
  transform: translate3d(-50%,0,0);
  display: flex;
  align-items: center;
}
main .banner .swiper-container .swiper-pagination .swiper-pagination-bullet{
  width: 15px;
  height: 15px;
  border: 1px solid #000;
  background-color: #fff;
  opacity: 0.5;
  margin-right: 10px;
}
main .banner .swiper-container .swiper-pagination .swiper-pagination-bullet:last-child{
  margin-right: 0;
}
main .banner .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
  border: 1px solid #fff;
  background-color: #000;
  opacity: 0.8;
}
main .about-box1{
  padding: 60px 0;
}
main .line-bottom-title{
  text-align: center;
  font-size: 28px;
  color: #333333;
  position: relative;
  line-height: 50px;
  padding-bottom: 10px;
}
main .line-bottom-title::after{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  width: 35px;
  height: 3px;
  background: #3685fc;
}
main .about-box1 .container{
  text-indent: 2em;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  padding: 50px 0;
}
main .about-box2{
  display: flex;
  padding: 20px 0 40px;
}
main .about-box2 .item{
  flex: 1;
  margin-right: 10px;
  font-size: 14px;
  position: relative;
}
main .about-box2 .item:last-child{
  margin-right: 0;
}
main .about-box2 .item .f-box{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 50px;
  width: 100%;
  box-sizing: border-box;
}
main .about-box2 .item .f-box img{
  display: block;
  margin: 0 auto ;
  width: 60px;
}
main .about-box2 .item .f-box .tit{
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  line-height: 1.3;
  margin: 15px auto 25px;
}
main .about-box2 .item .f-box .txt{
  font-size: 14px;
  color: #FFFFFF;
  line-height: 1.8;
  text-align: center;
}
main .gaikuang{
  display: flex;
  margin: 50px auto 100px;
  position: relative;
}
main .gaikuang .gk-item{
  width: 50%;
  box-sizing: border-box;
  font-size: 18px;
  color: #333;
  padding: 30px 80px;
}
main .gaikuang .gk-item:last-child{
  border-right: none;
}
main .gaikuang .gk-item .row{
  display: flex;
  line-height: 24px;
  margin-bottom: 20px;
}
main .gaikuang .gk-item .row .label{
  width: 90px;
  margin-right: 10px;
}
main .gaikuang .gk-item .row .txt-box{
  flex: 1;
}
main .gaikuang .gk-item .row.mt50{
  margin-top: 50px;
}
main .gaikuang .line{
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
}
main .gaikuang .line span{
  flex: 1;
  display: block;
  width: 5px;
  background: #ccc;
  margin-bottom: 10px;
}
main .gaikuang .line span:nth-child(odd){
  background: #36668E;
}
main .gaikuang .line span:nth-child(even){
  background: #E98F6D;
}
main .gaikuang .line span:last-child{
  margin-bottom: 0;
}
main .ywfw-list{
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
}
main .ywfw-list .ywfw-item{
  width: 23%;
  font-size: 18px;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  box-sizing: border-box;
}
.ywfw-item:nth-child(odd){
  background: #36668E;
}
.ywfw-item:nth-child(even){
  background: #E98F6D;
}
main .ywfw-list .ywfw-item h4{
  line-height: 50px;
  font-size: 20px;
  border-bottom: 2px solid #fff;
}
main .ywfw-list .ywfw-item .content{
  padding: 20px 0;
  text-align: left;
  min-height: 150px;
}

/* 联系我们 */
main .contact-box1{
  padding: 60px 0;
}
main .contact-box1 .contact-list{
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0;
}
main .contact-box1 .contact-list .contact-item{
  box-shadow: 0 0 8px #ddd;
  margin: 2% 1%;
  width: 48%;
  box-sizing: border-box;
  padding: 15px;
  transition: all 0.3s;
  font-size: 14px;
  color: #333;
  display: flex;
}
main .contact-box1 .contact-list .contact-item:hover{
  background: #fbfbfb;
}
main .contact-box1 .contact-list .contact-item .left {
  flex: 1;
}
main .contact-box1 .contact-list .contact-item .left h3{
  margin: 15px auto;
  position: relative;
  padding-left: 15px;
  line-height: 25px;
  font-size: 24px;
}
main .contact-box1 .contact-list .contact-item .left h3:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 25px;
  background-color: #3685fc;
  top: 0;
  left: 0;
}
main .contact-box1 .contact-list .contact-item .left p{
  line-height: 25px;
  margin-bottom: 10px;
}
main .contact-box1 .contact-list .contact-item .left .btn{
  display: inline-block;
  padding: 0 15px;
  background-color: #121212;
  line-height: 30px;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}
main .contact-box1 .contact-list .contact-item .img-box{
  margin-left: 15px;
  width: 170px;
}
main .contact-box1 .contact-list .contact-item .img-box img{
  display: block;
  width: 100%;
}

.profile_content {
  margin: 50px auto 100px;
  font-size: 15px;
}
.profile_content img, .profile_content video {
  max-width: 100%;
  height: auto !important;
}

@media screen and (max-width: 768px){
  main .banner .swiper-container .swiper-pagination {
    top: auto;
    bottom: 0;
    transform: translate3d(-50%, 0, 0) scale(.6);
  }
  main .banner .swiper-container{
    height: 2rem;
  }
  main .banner .swiper-slide{
    height: 2rem;
  }
  main .about-box1{
    padding: 0.4rem 0.3rem;
  }
  main .line-bottom-title{
    text-align: center;
    font-size: 0.4rem;
    color: #333333;
    position: relative;
    line-height: 0.8rem;
    padding-bottom: 0.1rem;
  }
  main .about-box1 .container{
    text-indent: 2em;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    padding: 0.6rem 0;
  }
  main .about-box2{
    display: block;
    padding: 0.4rem 0.3rem;
    box-sizing: border-box;
  }
  main .about-box2 .item{
    flex: unset;
    width: 100%;
    margin-right: 0;
    font-size: 14px;
    position: relative;
    margin-bottom: 0.4rem;
  }
  main .about-box2 .item .bg{
    display: block;
    width: 100%;
  }
  main .about-box2 .item:last-child{
    margin-right: 0;
  }
  main .about-box2 .item .f-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 50px;
    width: 100%;
    box-sizing: border-box;
  }
  main .about-box2 .item .f-box img{
    display: block;
    margin: 0 auto ;
    width: 60px;
  }
  main .about-box2 .item .f-box .tit{
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    line-height: 1.3;
    margin: 15px auto 25px;
  }
  main .about-box2 .item .f-box .txt{
    font-size: 14px;
    color: #FFFFFF;
    line-height: 1.8;
    text-align: center;
  }
  
  /* 联系我们 */
  main .contact-box1{
    padding: 0.4rem 0.3rem;
  }
  main .contact-box1 .contact-list{
    display: flex;
    flex-wrap: wrap;
    padding: 0.6rem 0;
  }
  main .contact-box1 .contact-list .contact-item{
    box-shadow: 0 0 8px #ddd;
    margin: 1%;
    width: 98%;
    box-sizing: border-box;
    padding: 0.2rem;
    background: #fff;
  }
  main .contact-box1 .contact-list .contact-item:hover{
    background: #fff;
  }
  main .contact-box1 .contact-list .contact-item .left {
    flex: 1;
  }
  main .contact-box1 .contact-list .contact-item .left h3{
    margin: 5px auto;
    font-size: 20px;
    font-weight: bold;
    white-space: nowrap;
  }
  main .contact-box1 .contact-list .contact-item .left h3:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 25px;
    background-color: #3685fc;
    top: 0;
    left: 0;
  }
  main .contact-box1 .contact-list .contact-item .left p{
    line-height: 20px;
    margin-bottom: 5px;
  }
  main .contact-box1 .contact-list .contact-item .left .btn{
    display: inline-block;
    padding: 0 10px;
    background-color: #121212;
    line-height: 26px;
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
  }
  main .contact-box1 .contact-list .contact-item .img-box{
    margin-left: 15px;
    width: 30%;
  }
  main .contact-box1 .contact-list .contact-item .img-box img{
    display: block;
    width: 100%;
  }
  main .contact-box2{
    padding-bottom: 40px;
  }
  main .contact-box2 #map{
    width: 100%;
    height: 300px;
  }

  
  main .gaikuang{
    display: block;
    padding: 0.6rem 0;
    margin-bottom: 0.6rem;
  }
  main .gaikuang .gk-item{
    width: 100%;
    box-sizing: border-box;
    border-right: none;
    font-size: 16px;
    color: #333;
    padding: 0;
  }
  main .gaikuang .gk-item:last-child{
    border-right: none;
  }
  main .gaikuang .gk-item .row{
    display: flex;
    line-height: 20px;
    margin-bottom: 10px;
  }
  main .gaikuang .gk-item .row .label{
    width: 80px;
    margin-right: 10px;
  }
  main .gaikuang .gk-item .row .txt-box{
    flex: 1;
  }
  main .gaikuang .gk-item .row.mt50{
    margin-top: 0;
  }
  main .ywfw-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: unset;
    padding: 0.6rem 0;
  }
  main .ywfw-list .ywfw-item{
    width: 48%;
    margin-right: 4%;
    font-size: 0.28rem;
    color: #fff;
    text-align: center;
    padding: 0.1rem 0.3rem;
    box-sizing: border-box;
    margin-bottom: 0.4rem;
  }
  main .ywfw-list .ywfw-item:nth-child(2n){
    margin-right: 0;
  }
  .ywfw-item:nth-child(odd){
    background: #36668E;
  }
  .ywfw-item:nth-child(even){
    background: #E98F6D;
  }
  main .ywfw-list .ywfw-item h4{
    line-height: 0.8rem;
    font-size: 0.32rem;
    border-bottom: 1px solid #fff;
  }
  main .ywfw-list .ywfw-item .content{
    padding: 20px 0;
    text-align: left;
    min-height: 2rem;
  }
  
  main .gaikuang .line {
      display: none !important;
  }
}