/* header begin */
.toggler {
  display: none!important;
}

.navbar {
  background: #fff;
}

@media (min-width: 1700px) {
  .navbar {
    padding: 0.5rem 260px!important;
  }
}

@media (max-width: 1200px) {
  .navbar .nav {
    display: none;
  }

  .toggler {
    display: block!important;
    margin-left: auto;
  }
}

@media (min-width: 1200px) {
  .mobile-header {
    opacity: 0;
  }
}

.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #F2F9FF;
  padding: 0.5rem 1rem;
  /* transition: all .8s; */
  transition: opacity .5s;
  display: none;
}

.mobile-header ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.mobile-header ul li {
  width: 33%;
  margin-bottom: 15px;
  padding: 0 10px;
  text-align: center;
}

.mobile-header ul .parent {
  text-decoration: none;
  color: #2C82D5;
  font-size: 16px;
}

.mobile-header ul dl {
  margin: 0;
  margin-top: 5px;
  text-align: center;
}

.mobile-header ul dd {
  text-align: center;
}

.mobile-header ul dl a {
  font-size: 14px;
  text-decoration: none;
  color: #333333;
}
.nav-item:hover .dropdown-menu {
  display: block;
}
.logo {
  height: 100px;
  /* padding-top: 30px; */
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.logo img {
  width: 150px;
  height: 40px;
}

.nav {
  display: flex;
  /*margin-left: 130px;*/
}

.nav li {
  position: relative;
  width: 110px;
  text-align: center;
}

.nav li a {
  text-decoration: none;
  color: #666;
}

.nav li .parent {
  margin: 0 15px;
  font-size: 20px;
  color: #666;
  cursor: pointer;
  position: relative;
}

.nav .active {
  margin: 0 15px;
  font-size: 20px;
  color: #2C83D6 !important;
  cursor: pointer;
}

.nav .active::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 30px;
  width: 8px;
  height: 6px;
  margin-left: -4px;
  background-image: url('../images/nav_active.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.nav li .parent:hover:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 30px;
  width: 8px;
  height: 6px;
  margin-left: -4px;
  background-image: url('../images/nav_active.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.nav li .parent:hover {
  color: #2C83D6;
}

.nav li:hover dl {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.nav li dl {
  z-index: 999;
  position: absolute;
  top: 50px;
  left: -10%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  width: 120%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all .6s ease 0s;
  transform: translate3d(0, 10px, 0);
  -moz-transform: translate3d(0, 10px, 0);
  -webkit-transform: translate3d(0, 10px, 0);
}

.nav li dl dd {
  padding: 5px 12px;
  text-align: center;
  margin: 5px;
}

.nav li dl a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.nav li dl dd:hover {
  background: #FFFFFF;
}

.nav li dl dd:hover a {
  color: #333333;
}

/* header end */

/* index begin */
.title {
  margin-bottom: 30px;
}

.title .tit-text {
  font-size: 36px;
  font-weight: 800;
  color: #333333;
  margin-bottom: 5px;
}

.title .tit-subhead{
  font-size: 24px;
}

.title .subhead {
  font-size: 20px;
  font-weight: 400;
  color: #999999;
  margin-bottom: 20px;
}

.title .block {
  width: 100px;
  height: 6px;
  background: #2C83D6;
  border-radius: 3px;
  /* margin-bottom: 100px; */
}

.consult {
  /*height: 916px;*/
  background-image: url('../images/consult_bg.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 100px 0 50px;
}

.consult .news .news-title {
  display: inline-block;
  height: 35px;
  font-size: 20px;
  font-weight: 400;
  color: #FFFFFF;
  background: linear-gradient(86deg, #a4c9ed 0%, #2C83D6 100%);
  box-shadow: 0px 3px 6px 1px #CCD9E9, inset 0px 3px 6px 1px #D9ECFF;
  border-radius: 4px 4px 4px 4px;
  padding: 13px 50px;
  margin-bottom: 30px;
}

.consult .consult-left {
  width: 70%;
}

.consult .left-content {
  padding: 20px;
  background-image: url('../images/consult-content-bg.png');
  background-repeat: no-repeat;
  background-size: 100% 100%
}

.consult .right-content {
  padding: 30px 20px 30px;
  background-image: url('../images/consult-content-bg-1.png');
  background-repeat: no-repeat;
  background-size: 100% 100%
}

.consult .left-title {
  width: 200px;
  display: inline-block;
  background-image: url('../images/consult-title-bg.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 14px 50px 0;
  margin: 0;
}

.consult .consult-right {
  width: 29%;
}

@media screen and (max-width: 768px){
  .consult .consult-left {
    width: 100%;
  }
  .consult .consult-right{
    margin-top: 20px;
  	width: 100%;
  }
}

.consult .consult-links {
  margin: 64px 0 50px;
}

.consult .consult-links li {
  height: 80px;
  opacity: 1;
  text-align: center;
  line-height: 80px;
  padding: 0 44px;
  margin-right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #666666;
  cursor: pointer;
}

.consult .consult-links li:hover {
  background: #2C83D6;
  border-radius: 0px 40px 0px 40px;
  color: #FFFFFF;
}

.consult .consult-links li.active {
  background: #2C83D6;
  border-radius: 0px 40px 0px 40px;
  color: #fff;
}

.consult .content {
  /*margin-top: 30px;*/
  height: 100%;
}

.consult .content .content-swiper {
  /* width: 100%; */
  /*height: 500px;*/
  box-shadow: 0px 0px 12px 1px #E9E9E9;
  /* margin-right: 30px; */
  /*padding-bottom: 20px;*/
  background-color: #fff;
  /* margin-top: 20px; */
}

.consult .content .content-swiper:hover {
  background: #B7D9FF;
}

.swiper-container .swiper-wrapper .swiper-slide .consult-img {
  text-decoration: none;
  color: #666;
}

.consult .content .content-swiper .banner {
  border: 0;
  vertical-align: top;
  width: 100%;
  height: 100%;
  transition: 1s;
}

.consult .content .content-swiper .swiper-container {
  /*padding-bottom: 50px;*/
}

.consult .content .swiperOptions2 .swiper-container {
  height: 100%;
}

.consult .content .content-swiper .consult-img .banner-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.consult .content .content-swiper .consult-img .title {
  width: calc(100% - 40px);
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  line-height: 36px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 15px 20px;
}

.consult .content .content-swiper .consult-img .subhead {
  width: 100%;
  margin: 20px 0;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 27px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.consult .consult-img .time {
  width: calc(100% - 40px);
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 0px;
  margin: 0 20px 20px;
}

.consult .consult-img .time img {
  width: 20px;
  height: 20px;
}

#certify {
  position: relative;
  /* width: 1200px;
  margin: 0 auto */
}

/* #certify .swiper-container {
  padding-bottom: 60px;
} */

#certify .swiper-slide {
  width: 550px;
  height: 340px;
  background: #fff;
  box-shadow: 0 8px 30px #ddd;
}

#certify .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

#certify .swiper-slide p {
  line-height: 98px;
  padding-top: 0;
  text-align: center;
  color: #636363;
  font-size: 1.1em;
  margin: 0;
}

#certify .swiper-pagination {
  width: 100%;
  bottom: 20px;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
  border: 3px solid #fff;
  background-color: #d5d5d5;
  width: 10px;
  height: 10px;
  opacity: 1;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet-active {
  border: 3px solid #00aadc;
  background-color: #fff;
}

#certify .swiper-button-prev {
  /* left: -30px; */
  width: 45px;
  height: 45px;
  background: url(../images/wm_button_icon.png) no-repeat;
  background-position: 0 0;
  background-size: 100%;
}

/* #certify .swiper-button-prev:hover {
  background-position: 0 -46px;
  background-size: 100%
} */

#certify .swiper-button-next {
  /* right: -30px; */
  width: 45px;
  height: 45px;
  background: url(../images/wm_button_icon.png) no-repeat;
  background-position: 0 -93px;
  background-size: 100%;
}

/* #certify .swiper-button-next:hover {
  background-position: 0 -139px;
  background-size: 100%
} */

.major-swiper {
  margin-top: 100px;
}

.major-swiper .swiper-container {
  height: 500px;
}

.major-swiper .swiper-container {
  padding-bottom: 70px;
  transition: 300ms;
}

.major-swiper .swiper-slide {
  transition: 300ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}

.major-swiper .swiper-slide a {
  display: inline-block;
  width: 70%;
  height: 100%;
}

.major-swiper .swiper-slide-next {
  z-index: 998 !important;
  -webkit-justify-content: end;
  justify-content: end;
}

.major-swiper .swiper-slide-prev {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.major-swiper .swiper-slide-active {
  width: 500px !important;
}

.major-swiper .swiper-slide-active a {
  width: 100%;
  z-index: 999 !important;
}

.major-img {
  /* position: relative; */
  background-size: 100% 100%;
  background-repeat: no-repeat;
  /* display: block; */
  width: 100%;
  height: 100%;
  /*display: flex;
  align-items: flex-end;*/
}

.major-img span {
  position: absolute;
  bottom: 20px;
  /*display: inline-block;
  margin-top: 50%;*/
  text-align: center;
  width: 100%;
  left: 0;
  font-size: 26px;
  /*font-weight: bold;*/
  color: #FFFFFF;
  /*align-self: flex-end;*/
}

.consult .content .content-swiper:hover>.swiper-container .swiper-wrapper .swiper-slide .consult-img .title {
  color: #2C82D5;
}

.consult .content .content-swiper:hover>.swiper-container .swiper-wrapper .swiper-slide .consult-img div .banner {
  transform: scale(1.2);
}

.content .content-list {
  width: 100%;
  /*margin-top: 70px;*/
}

.content .content-list li a {
  border-bottom: 1px solid #B7D5F3;
  border-top: 1px solid #B7D5F3;
  padding: 20px;
  text-decoration: none;
  color: #666;
}

.content .content-list li a:hover {
  background: #B7D9FF;
}

.content .content-list li a:hover>.title {
  color: #2C83D6;
}

.content .content-list li a .title {
  font-size: 22px;
  font-weight: bold;
  color: #333333;
  line-height: 30px;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content .content-list li a .content-text {
  font-size: 18px;
  font-weight: 400;
  color: #666666;
  line-height: 27px;
  margin-bottom: 10px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.content .content-list li a .content-time {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
}

.content .content-list .more {
  margin-top: 10px;
}

.major {
  /* height: 809px; */
  background-image: url('../images/major.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 100px 0;
}

@media screen and (max-width: 800px){
  .major {
    background-image: url('../images/major_bg_mobile.png');
    background-size: cover;
    padding: 30px 0;
  }
  
  .consult{
    background-image: url('../images/consult_bg_mobile.png');
    background-size: cover;
    padding: 30px 0;
  }
  
  .title .tit-text{
  	font-size: 22px;
  }
  .title .tit-subhead{
  	font-size: 18px;
  }
}

.major .major-list {
  margin-top: 50px;
}

.major .major-list .major-item {
  width: 100%;
  height: 100%;
  /* height: 444px; */
  position: relative;
  display: block;
}

.major .major-list .major-item img {
  border: 0;
  vertical-align: top;
  width: 100%;
  height: 100%;
}

.major .major-list .major-item .item-bg {
  position: absolute;
  top: 0;
  left: 0;
  /*background-color: #1C5298;*/
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.major .major-list .major-item .item-go {
  position: absolute;
  right: 0;
  bottom: -30px;
  width: 50px;
  height: 50px;
  background-image: url('../images/go.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: 1s;
}

.major .major-list .major-item:hover>.item-go {
  background-image: url('../images/go_active.png');
}

@media screen and (max-width: 800px){
  .major .major-list .major-item .item-go{
  	bottom: -11px;
    width: 24px;
    height: 24px;
  }
}

.major .major-list .major-item .content {
  color: #fff;
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
}

.major .major-list .major-item .content .num {
  /*font-size: 44px;*/
  font-size: 2vw;
  font-weight: 500;
}

.major .major-list .major-item .content .block {
  width: 20px;
  height: 4px;
  background: #FFFFFF;
  border-radius: 3px;
  opacity: 1;
}

.major .major-list .major-item .content .title {
  /* font-size: 26px; */
  font-size: 2vw;
  margin: 2vw 0 1vw;
  /* margin: 50px 0 15px; */
}

.major .major-list .major-item .content .text {
  /* font-size: 16px; */
  font-size: 0.9vw;
  font-weight: 400;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media screen and (max-width: 768px){
  .major .major-list .major-item .content .num{
  	font-size: 8vw;
  }
  .major .major-list .major-item .content .title{
  	font-size: 5vw;
  }
  .major .major-list .major-item .content .text{
  	font-size: 3vw;
  }
}

.party {
  /* padding: 50px 0; */
}

.party img {
  height: 100%;
  width: 100%;
}

.service {
  padding: 50px 0;
  background-image: url('../images/service_bg.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.service .content {
  margin-top: 30px;
}

.service .content .text {
  margin: 54px 50px 0 0;
  width: 375px;
}

.service .content .text .title {
  position: relative;
  line-height: 40px;
  font-size: 28px;
  font-weight: 800;
  color: #333333;
  margin-bottom: 59px;
}

.service .content .text .title .block {
  /* content: ''; */
  /* position: absolute; */
  z-index: 2;
  width: 100px;
  height: 10px;
  background: #2C83D6;
  margin-top: -13px;
  /* left: 0; */
  /* bottom: 25px; */
}

.service .content-text {
  font-size: 20px;
  font-weight: 400;
  color: #333333;
  line-height: 36px;
}

.service .service-carousel .el-carousel__item {
  transform-origin: bottom center;
}

.service .service-swiper .top-swiper {
  width: 775px;
  height: 450px;
  position: relative;
}

.service .service-swiper .top-swiper .title {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 106px;
  color: #fff;
  padding-top: 20px;
}

.service h3 .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #2C83D6;
  opacity: 1;
  border-radius: 50%;
  margin: 0 10px 0 20px;
}

.service h3 span {
  font-size: 22px;
}

.service .service-swiper .top-swiper .title .subhead {
  font-size: 16px;
  color: #FFFFFF;
  line-height: 30px;
  margin: 10px 0 0 42px;
}

.service .service-item {
  height: 6rem;
  text-align: center;
  font-size: 2vw;
  font-weight: 400;
  color: #666;
  line-height: 6rem;
  position: relative;
  cursor: pointer;
}

.service .content .active {
  color: #fff;
  background: #2C82D5;
}

.service .content .service-item:after {
  content: '';
  position: absolute;
  right: 0;
  top: 24px;
  width: 1px;
  height: 44px;
  background: #666666;
}

.service .content .service-item:last-child::after {
  content: '';
  width: 0;
}

.service .content .service-item:hover {
  color: #fff;
  background: #2C82D5;
}

/* index end */
/* consult begin */
#consult .banner {
  /*height: 400px;*/
  position: relative;
  color: #fff;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
}

/*#consult .banner::after {
  content: '';
  height: 100%;
  width: 100%;
  background-color: #1C5298;
  position: absolute;
  opacity: 0.6;
}*/

#consult .banner .title,#consult-detail .banner .title {
  font-size: 40px;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  margin: 0;
}

#consult .banner .title::after,#consult-detail .banner .title::after {
  position: absolute;
  content: '';
  width: 11px;
  height: 11px;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
}

#consult .banner .title::before,#consult-detail .banner .title::before {
  position: absolute;
  content: '';
  width: 11px;
  height: 11px;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
}

#consult .banner .subhead {
  font-size: 20px;
  letter-spacing: 1px;
}

#consult .consult-nav {
  background: #EAEEF2;
  color: #666666;
}

#consult .consult-nav a {
  display: block;
  height: 100%;
  text-decoration: none;
  color: #666;
}

#consult .consult-nav span {
  display: inline-block;
  padding: 32px 0 31px;
  font-size: 26px;
  font-weight: bold;
}

@media screen and (max-width: 768px){
  #consult .consult-nav span {
  	padding: 15px 0;
  	font-size: 14px;
  }
}

.consult-active {
  border-bottom: 4px solid #2C83D6;
  color: #2C83D6;
}

#consult .consult-nav a:hover {
  background: #2C83D6;
  /*border-radius: 0px 40px 0px 40px;*/
  border-radius: 10px;
}

#consult .consult-nav a:hover span {
  color: #fff;
}

#consult .consult-list {
  /* margin: 30px 0; */
  padding-top: 30px;
  padding-bottom: 30px;
}

#consult .consult-item {
  padding: 30px 50px;
  text-decoration: none;
  color: #666;
}

#consult .consult-item .banner {
  width: 180px;
  height: 100px;
  background-color: #2C83D6;
}

#consult .consult-item .banner .month {
  font-size: 26px;
  color: #FFFFFF;
}

#consult .consult-item .banner .year {
  width: 14px;
  height: 31px;
  font-size: 12px;
  color: #FFFFFF;
  overflow-wrap: break-word;
}

#consult .consult-item .consult-img {
  max-width: 300px;
}

#consult .consult-item .content {
  margin-left: 30px;
  padding: 0 18px;
}

#consult .consult-item .content .title {
  font-size: 22px;
  color: #333333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin: 0;
}

#consult .consult-item .content .time {
  font-size: 18px;
  color: #666666;
  margin: 20px 0 30px;
}

#consult .consult-item .content .subhead {
  font-size: 18px;
  color: #666666;
  line-height: 30px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

#consult .consult-item .check {
  width: 30px;
  height: 30px;
  background-image: url('../images/check.png');
}

#consult .consult-item:hover {
  background: #E0EDFB;
}

#consult .consult-item:hover .content .title {
  color: #2C83D6;
}

#consult .consult-item:hover .check {
  background-image: url('../images/check_active.png');
}

@media screen and (max-width: 768px) {
  #consult .consult-item {
    flex-wrap: wrap;
  }

  #consult .consult-item .consult-img {
    width: 100%;
    max-width: 100%;
  }

  #consult .consult-item .content {
    margin: 0;
    padding: 0;
    padding-right: 18px;
  }

  #consult .consult-item .content .subhead {
    -webkit-line-clamp: 1;
  }
  
  #consult .consult-item .content .title {
  	margin: 10px 0;
  }

  #consult .consult-item .content .time {
    margin: 0;
  }
}

/* consult end */
/* consult-detail begin */
#consult-detail .banner {
  /*height: 400px;*/
  color: #fff;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
}

/*#consult-detail .banner::after {
  content: '';
  height: 100%;
  width: 100%;
  background-color: #1C5298;
  position: absolute;
  opacity: 0.6;
}*/

#consult-detail .banner .title {
  font-size: 40px;
  z-index: 1;
}

#consult-detail .banner .subhead {
  font-size: 20px;
  letter-spacing: 1px;
}

#consult-detail .content {
  /*padding: 25px 0;*/
  font-size: 14px;
  margin-bottom: 100px;
  /*max-width: 1000px;
  margin: 0 auto;*/
}

#consult-detail .position {
  border-bottom: 1px solid #dddddd;
  padding: 15px 0;
}

#consult-detail .position .icon {
  font-size: 20px;
  color: #2C83D6;
  vertical-align: middle;
  margin-right: 5px;
}

#consult-detail .position a {
  margin-right: 5px;
  color: #666;
  text-decoration: none;
}

#consult-detail .position a:hover {
  color: #2C83D6;
}

#consult-detail .content .title {
  font-size: 30px;
}

#consult-detail .content .time span {
  font-size: 12px;
  padding: 0 10px;
  border-right: 1px solid #666;
}

#consult-detail .content .time span:last-child {
  border: none;
}

#consult-detail .content img {
  max-width: 100%;
  height: auto;
}

/* consult-detail end */
/* leader begin */
.leader {
  /*padding: 36px 0;*/
  padding-top: 36px;
  padding-bottom: 36px;
}

.leader .leader-item {
  margin-bottom: 21px;
  padding-left: 57px;
  height: 65px;
  width: 100%;
  background-image: linear-gradient(to right, #AFD8FF, #DBECFC, #EFF7FF);
}

.leader .leader-item:last-child {
  margin-bottom: 0;
}

.leader .leader-title {
  font-size: 26px;
  font-weight: bold;
  color: #2C82D5;
  line-height: 21px;
  /*margin-right: 47px;*/
  width: 100PX;
}

.leader .leader-type {
  font-size: 18px;
  font-weight: 400;
  color: #2C82D5;
  line-height: 21px;
}

/*.leader {
  padding: 0 360px;
}

.leader .leader-item {
  width: calc(33% - 30px);
  margin: 60px 30px 0 0;
  color: #2C82D5;
  font-size: 14px;
  line-height: 25px;
}

.leader .leader-item .title {
  color: #2C82D5;
  background: linear-gradient(91deg, #FBFCFE 0%, #DBECFC 60%, #AFD8FF 100%);
  line-height: 60px;
  padding-left: 30px;
  font-size: 20px;
  margin-bottom: 10px;
}

.leader .leader-item .content {
  margin: 50px 0 0 30px;
  font-size: 20px;
  font-weight: 500;
  color: #666666;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}*/

/* leader end */
/* contact-us begin */
.contact-us {
  /*margin: 60px auto 100px;
  max-width: 1000px;*/
}

.contact-us .title {
  font-size: 32px;
  font-weight: 500;
  color: #2C82D5;
}

.contact-us .subhead {
  font-size: 20px;
  color: #999999;
}

.contact-us .contact-item {
  margin: 50px 0;
  width: 25%;
}

.contact-us .item-img {
  display: block;
  width: 70px;
  height: 70px;
  /*padding: 15px;*/
  background: #2C82D5;
  border-radius: 50%;
  /*margin-bottom: 10px;*/
  margin: 0 auto 10px;
}

.contact-us .sub-title {
  font-size: 24px;
  font-weight: bold;
  color: #2C82D5;
  line-height: 40px;
  margin: 0 !important;
}

.contact-us .content {
  font-size: 22px;
  font-weight: 400;
  color: #666666;
  line-height: 40px;
}

.contact-us .map {
  height: 628px;
  border: 1px dashed #a3a7ac;
}

@media (max-width: 576px) {
  .contact-us .map {
    height: 350px;
    border: 1px dashed #a3a7ac;
  }
}

/* contact-us end */
/* info-list begin */
.info-nav {
  margin: 60px 0 30px!important;
}

.info-nav a {
  display: block;
  /* width: 200px; */
  height: 60px;
  background: #CAE1F9;
  border-radius: 10px 10px 10px 10px;
  text-align: center;
  line-height: 60px;
  font-size: 24px;
  color: #666666;
  /* margin-left: 50px; */
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .info-nav a {
  	height: 40px;
    line-height: 40px;
    font-size: 12px;
  }
}

.info-list .info-item:hover .el-collapse-item__header,
.info-list .info-item:hover .el-collapse-item__wrap {
  background-color: #E0EDFB;
}

.info-list .el-collapse,
.info-list .el-collapse-item__header,
.info-list .el-collapse-item .el-collapse-item__wrap {
  border: none;
}

.info-nav a:hover {
  color: #fff;
  background: #2C83D6;
}

.info-nav .info-active {
  color: #fff;
  background: #2C83D6;
}

.info-list {
  margin-top: 36px;
}

.info-list .info-title {
  font-size: 21px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 36px;
}

.info-list .info-item {
  display: block;
  padding: 14px 36px;
  text-decoration: none;
}

.info-list .info-item:hover {
  background: #E0EDFB;
}

.info-list .info-item:hover>.flex .check {
  background-image: url('../images/check_active.png');
}


.info-list .info-item .content {
  font-size: 17px;
  font-weight: bold;
  color: #333333;
}

.info-list .info-item .time {
  font-size: 16px;
  font-weight: 500;
  color: #666666;
  margin-right: 36px;
}

.info-list .info-item .check {
  width: 30px;
  height: 30px;
  background-image: url('../images/check.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.info-list .info-item .info-item-children {
  margin: 20px 0 0 25px;
}

.info-list .info-item .info-item-children img {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.info-list .info-item .info-item-children span {
  font-weight: 500;
  color: #333333;
}

@media screen and (max-width: 768px) {
  .info-list .info-item .time {
  	display: none;
  }
}

/* info-list end */
/* server-list begin */
/*.server-list .list-1 {
  margin-top: 60px;
}

.server-list .title {
  font-size: 40px;
  font-weight: bold;
  color: #2C83D6;
}

.server-list .subhead {
  font-size: 20px;
  font-weight: 400;
  color: #999999;
  margin-bottom: 50px;
}

.server-list .describe {
  font-size: 22px;
  font-weight: 400;
  color: #333333;
  line-height: 40px;
  margin-bottom: 50px;
}

.server-list .list-1 ul {
  margin: 0 550px;
  font-size: 26px;
  font-weight: bold;
  color: #666666;
}

.server-list .list-1 ul li {
  padding-bottom: 10px;
  cursor: pointer;
}

.server-list .list-1 ul>.active {
  color: #2C83D6;
  border-bottom: 4px solid #2C83D6;
}

.server-list .list-1 ul li:hover {
  color: #2C83D6;
}

.server-list .list-1 .content {
  height: 927px;
  background-image: url('../images/server-list-1-bg.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 50px 360px;
}

.server-list .list-2 {
  padding: 100px 360px;
}

.server-list .list-2 .server-banner {
  width: 100%;
  height: 740px;
}

.server-list .list-2 .content {
  padding: 30px 20px;
  background: #E8F3FF;
  font-size: 22px;
  font-weight: 400;
  color: #333333;
  line-height: 40px;
}

.server-list .list-2 ul li {
  text-align: center;
  width: 50%;
  line-height: 100px;
  height: 100px;
  color: #666666;
  background: #CAE1F9;
  font-size: 26px;
  font-weight: 500;
  cursor: pointer;
}

.server-list .list-2 ul>.active {
  background: #2C82D5;
  color: #fff;
}

.server-list .list-2 ul li:hover {
  background: #2C82D5;
  color: #fff;
}

.server-list .list-3 {
  padding: 50px 360px 100px;
  background: #E8F3FF;
}*/

.server-list {
  margin: 30px 0;
}

.server-list .server-item {
  text-decoration: none;
  padding: 14px 36px;
  color: #333333;
}

.server-list .server-item:hover {
  background: #E0EDFB;
}

.server-list .server-item:hover>.flex-1 .flex .item-title {
  color: #2C83D6;
}

.server-list .server-item:hover>.check {
  background-image: url('../images/check_active.png');
}

.server-list .server-item .item-img {
  height: 142px;
  width: 213px;
  margin-right: 36px;
  position: relative;
}

.server-list .server-item .item-img::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #1C5298;
  opacity: .6;
}

.server-list .server-item .item-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 36px;
}

.server-list .server-item .item-content {
  font-size: 16px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.server-list .server-item .item-center{
  width: 0;
}

.server-list .server-item .check {
  width: 30px;
  height: 30px;
  background-image: url('../images/check.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-left: 36px;
}

@media (max-width: 500px) {
  .server-list .server-item .item-img{
  	width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .server-list .server-item .check {
  	display: none;
  }
  .server-list .server-item{
  	display: block;
  }
  .server-list .server-item .item-center{
  	width: 100%;
  }
  .server-list .server-item .item-title{
    margin-bottom: 10px;
  }
}

/* server-list end */
/* major-list begin */
.major-list-1 {
  width: 100%;
  /* height: 586px; */
  background-image: url(../images/major_list_bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 36px 25px 57px;
}

.major-list-1 .title {
  font-size: 36px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .major-list-1 .title {
    font-size: 26px;
  }
}

.major-list-1 .title span {
  display: inline-block;
  /* padding-bottom: 10px;
  border-bottom: 4px solid #333333; */
}

.major-list-1 .village-title {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 28px;
  margin-bottom: 21px;
}

.major-list-1 .content1 {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 40px;
}

.major-list-1 .village-box {
  padding: 14px;
  background-image: url(../images/major-12-bg.png);
  height: 472px;
  transition: 1s;
}

.village-box .img{
  max-height:226px;
}

@media screen and (max-width: 768px) {
  .major-list-1 .village-box {
  	height: auto;
    margin-bottom: 15px;
  }
  .village-box .img{
    height: auto;
  }
  .major-list-1 .village-title {
    padding: 0 15px;
  }
}

.major-list-1 .village-box .box-title {
  font-size: 17px;
  font-weight: 500;
  color: #2C83D6;
  margin-bottom: 43px;
}

.major-list-1 .village-box .box-title .block {
  /* display: inline-block; */
  width: 11px;
  height: 11px;
  background: #2C83D6;
  /* margin-right: 7px; */
  margin: 7px 7px 0 0;
}

.major-list-1 .village-box img {
  transition: 1s;
}

.major-list-1 .village-box .box-content {
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 28px;
  transition: 1s;
  display: none;
}

.major-list-1 .village-box:hover {
  background-image: url(../images/major-12-bg-active.png);
}

.major-list-1 .village-box:hover .box-title {
  color: #fff;
}

.major-list-1 .village-box:hover .box-title>.block {
  color: #fff;
}

.major-list-1 .village-box:hover img {
  display: none;
}

.major-list-1 .village-box:hover .box-content {
  display: block;
}

.major-line{
  padding-left:14px;
  border-left: 1px solid #DEDEDE;
}

@media screen and (max-width: 768px) {
  .major-list-1 {
    padding: 36px 50px 57px;
  }
  .major-list-1 .major-1-right{
  	margin-top: 50px;
  }
  .major-line{
  	padding:0;
    border: none;
  }
}

.major-list-2 .flex-left {
  margin-bottom: 30px;
  font-size: 22px;
  line-height: 45px;
}

.major-list-2 .title {
  background: #B7D9FF;
  /* font-size: 22px; */
  /* line-height: 45px; */
  color: #2C83D6;
  margin-right: 30px;
  padding: 0 12px;
  height: 45px;
}

.major-list-2 .content {
  color: #333333;
  font-weight: 400;
  font-size: 16px;
}

.major-industry {
  margin-bottom: 21px;
}

.major-industry .major-w-60 {
  width: 60%;
}

.major-industry .major-cusp-right {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

.major-industry .major-cusp-left {
  position: absolute;
  left: -43px;
  top: 0;
  height: 100%;
}

.major-industry .content {
  background: #3E75C0;
  width: 40%;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 28px;
  padding: 0 36px;
}

@media screen and (max-width: 768px) {
  .major-flex {
    display: block;
  }

  .major-industry .major-w-60 {
    width: 100%;
    padding: 25px;
  }

  .major-industry .content {
    width: 100%;
    padding: 15px;
  }

  .major-industry .major-cusp-right {
    right: 25px;
    top: 25px;
    height: 82%;
  }

  .major-industry .major-cusp-left {
    left: 4px;
    top: 25px;
    height: 83%;
  }
}

.p-l-36{
  padding-left: 36px;
}

.major-list-3 .item-cut {
  height: 36px;
  font-size: 17px;
  font-weight: 500;
  line-height: 36px;
  background: #CAE1F9;
  color: #666666;
  cursor: pointer;
}

.major-list-3 .active {
  background: #2C83D6;
  color: #FFFFFF;
}

.major-pass {
  padding-top: 36px;
  padding-bottom: 36px;
}

.major-pass .title {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 28px;
  margin-bottom: 21px;
}

.major-pass .img-top {
  width: 49%;
  margin-bottom: 21px;
}

.major-pass .img-bottom {
  width: 24%;
  margin-top: 14px;
}

@media screen and (max-width: 768px) {
  .major-pass .img-top {
    width: 100%;
  }

  .major-pass .img-bottom {
    width: 49%;
  }
}

/* major-list end */
/* introduce begin */
.int-content {
  /*padding: 36px 0;*/
}

.int-content .int-title {
  font-size: 26px;
  font-weight: bold;
  color: #2C83D6;
  text-align: center;
  margin-top: 36px;
}

/* introduce end */
/* cultrue begin */
.culture-item {
  margin-bottom: 36px;
}

.culture-item .culture-title {
  font-size: 26px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 23px;
}

.culture-item .content-left {
  font-size: 26px;
  font-weight: bold;
  color: #2C82D5;
  line-height: 51px;
  padding-right: 70px;
  border-right: 2px solid #E1E1E1;
}

.culture-item .content-right {
  padding-left: 70px;
  font-size: 17px;
  font-weight: 400;
  color: #333333;
  line-height: 26px;
}

.culture-item .cultrue-content {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 28px;
}

.honor-list {
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.honor-list .honor-item {
  padding-bottom: 21px;
  cursor: pointer;
  width: 23%;
  margin: 0 10px;
}

.honor-list:after {
  content: "";
  flex: auto;
}

.honor-list .honor-item .honor-img {
  padding: 7px;
  background: #CAE1F9;
  display: block;
  width: 100%;
  margin-bottom: 14px;
}

.honor-list .honor-item .honor-title {
  font-size: 13px;
  font-weight: 500;
  color: #333333;
  line-height: 19px;
  /* margin: 0 10px; */
}

.dialog-img {
  width: 100%;
  height: 90%;
  margin-bottom: 14px;
}

.dialog-title {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  line-height: 26px;
}

/* cultrue end */
/* enterprise-list begin */
.enter-list {
  padding: 15px 0;
  overflow: auto;
}

.enter-list .aside {
  width: 220px;
  /* border: 1px solid #ccc; */
  padding: 10px;
  height: 800px;
  overflow: auto;
}

.enter-list .aside .enter-title {
  margin: 0;
  background: linear-gradient(86deg, #9ec5eb 0%, #2C83D6 100%);
  box-shadow: 0px 3px 6px 1px #CCD9E9, inset 0px 3px 6px 1px #D9ECFF;
  border-radius: 4px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  line-height: 60px;
}

.enter-list .aside ul {
  background-color: #CCE6FF;
  border-radius: 4px;
  padding: 0 10px;
}

.enter-list .aside li {
  list-style: none;
  color: #333;
  padding: 10px;
  border-bottom: 1px solid #7DB2E5;
}

.enter-list .aside li .parent {
  display: block;
  text-decoration: none;
  text-align: center;
  color: #333;
  padding: 10px;
  cursor: pointer;
}

.enter-list .aside li:last-child {
  border: none;
}

.enter-list .aside li .parent:hover {
  color: #fff;
  background: #2C82D5;
}

.enter-list .aside li dl {
  display: none;
  transition: all 1s;
  background: #9ECFFF;
  padding: 5px;
}

.enter-list .aside li dl dd {
  border-bottom: 1px solid #7DB2E5;
}

.enter-list .aside li dl dd:last-child {
  border-bottom: none;
}

.enter-list .aside li dl a {
  display: block;
  text-decoration: none;
  text-align: center;
  color: #333;
  padding: 5px;
}

.enter-list .aside li dl a:hover {
  color: #2C82D5;
}

.enter-list .rich {
  padding: 0 15px;
}

.enter-list .rich .title {
  font-size: 30px;
}

.enter-list .rich .time {
  color: #888;
  margin-bottom: 30px;
}

/* enterprise-list end */
/* footer begin */
.footer-nav {
  padding: 20px 0;
  border-bottom: 2px solid #3F8FDA;
  background: #2C82D5;
}

.footer-nav span {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  margin-right: 20px;
}

.footer-nav a {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  margin-right: 30px;
  text-decoration: none;
}

.footer {
  background: #2C82D5;
  padding: 30px 0;
}

.footer .info div {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer .info .center{
  margin-right: 20px;
}

.footer .info a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  /*margin-bottom: 20px;*/
}

.footer .qrCode {
  width: 100px;
  margin-left: 34px;
}

.footer .qrCode .text {
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
}

@media screen and (max-width: 800px){
  .footer-nav {
  	border: none;
  }
  .footer-nav span {
  	font-size: 16px;
  }
  .footer-nav a {
    display: flex;
    padding: 5px 0;
    margin: 0;
    margin-top: 10px;
    border-bottom: 1px solid #FFFFFF;
  }
  .footer .info div,.footer .info .center,.footer .center {
  	text-align: center;
    justify-content: center;
    margin-right: 0; 
  }
  .footer .info a {
  	display: block;
    margin: 0;
  }
  .footer .footer-item,.footer .footer-file{
  	display: block;
  }
  .footer .qrCode {
  	margin: 0;
  }
}

/* footer end */