/* CSS Document */

/* ---------- banner ---------- */
.banner {
  background-position: center bottom;
  background-size: cover;
}
.banner.article {
  height: 200px;
}
.banner.article80 {
  height: 80px;
}

.banner-tit {
  margin: auto;
  padding: 40px 20px 40px;
  max-width: 1320px;
  color: #fff;
}
.banner-tit h2 {
  font-family: "PFDinTextPro-Light";
  font-size: 52px;
  font-weight: normal;
}
.banner-tit h2 span {
  position: relative;
  display: inline-block;
}
.banner-tit h2 span:after {
  position: absolute;
  right: -40px;
  bottom: 26px;
  width: 28px;
  height: 4px;
  background: #ffae1a;
  content: "";
}
.banner-tit h1 {
  font-size: 28px;
  font-weight: normal;
}

.sub-nav {
  margin: auto;
  padding: 0 20px 80px;
  max-width: 1320px;
  overflow: hidden;
}
.sub-nav ul {
  width: calc(100% + 10px);
}
.sub-nav li {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  width: calc(100% / 5 - 10px);
}
.sub-nav li a {
  display: block;
  height: 50px;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  color: #666;
  line-height: 50px;
  text-align: center;
}
.sub-nav li a:hover {
  background: #ffae1a;
  color: #fff;
}
.sub-nav li a.current {
  background: #ffae1a;
  color: #fff;
}

/* sub02 */
.sub-nav02 {
  margin: auto;
  padding: 0 20px 40px;
  max-width: 1320px;
  overflow: hidden;
}
.sub-nav02 ul {
  width: calc(100% + 10px);
}
.sub-nav02 li {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  width: calc(100% / 9 - 10px);
}
.sub-nav02 li a {
  display: block;
  /* height: 50px; */
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  color: #666;
  line-height: 50px;
  text-align: center;
  padding: 15px 0 0;
}
.sub-nav02 li a:hover {
  background: #ffae1a;
  color: #fff;
}
.sub-nav02 li a.current {
  background: #ffae1a;
  color: #fff;
}
.sub-nav02 li img {
  width: 60%;
  border-radius: 100%;
  
}

/* responsive */
@media only screen and (max-width: 912px) {
  .banner {
    height: auto;
  }

  .banner-tit {
    padding: 60px 20px 48px;
    width: auto;
  }
  .banner-tit h2 {
    font-size: 36px;
  }
  .banner-tit h2 span:after {
    right: -28px;
    bottom: 14px;
    width: 20px;
    height: 2px;
  }
  .banner-tit h1 {
    font-size: 20px;
  }

  .sub-nav {
    padding: 0 16px 40px;
    width: auto;
  }
  .sub-nav ul {
    width: auto;
  }
  .sub-nav li {
    width: 50%;
    margin-right: 0;
    padding: 4px;
    box-sizing: border-box;
  }
  .sub-nav li a {
    height: 40px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 40px;
  }
  .sub-nav02 li {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
    width: calc(100% / 3 - 10px);
  }
}

/* ---------- about ---------- */
.about-intro {
  width: 100%;
  padding: 40px 0 20px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 200%;
}
.about-intro p {
  padding-bottom: 20px;
}
.about-intro img {
  padding: 20px 0;
  max-width: 100%;
}
.about-intro hr {
  height: 1px;
  border: none;
  border-top: 1px solid #efefef;
}

/* responsive */
@media only screen and (max-width: 768px) {
  .about-intro {
    padding: 60px 0 20px;
  }
  .about-intro img {
    width: 100%;
    height: 100%;
  }

  .f28 {
    font-size: 22px;
  }
}

/* ---------- course ---------- */
.course-tit {
  overflow: hidden;
}
.course-tit h2 {
  float: left;
  font-size: 28px;
  color: #333;
}
.course-tit h3 {
  float: left;
  padding: 16px 0 0 10px;
  font-family: "PFDinTextPro-Light";
  font-size: 18px;
  font-weight: normal;
  color: #999;
  text-transform: uppercase;
}
.course-tit a.more-btn {
  float: right;
  margin-top: 12px;
  padding-right: 28px;
  height: 24px;
  background: url("../images/more-arrow.png") no-repeat right center;
  font-size: 14px;
  color: #999;
  line-height: 24px;
}
.course-tit a:hover.more-btn {
  color: #ffae1a;
}

.course-list {
  padding: 20px 0;
  overflow: hidden;
}
.course-list ul {
  width: calc(100% + 20px);
}
.course-list li {
  float: left;
  margin: 0px 20px 40px 0;
  width: calc(100% / 4 - 20px);
}
.course-list li a {
  display: block;
  border-radius: 24px;
  background: #f6f6f6;
  overflow: hidden;
}
.course-list li .pic {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.course-list li .pic img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.course-list li a:hover .pic img {
  transform: scale(1.08);
}
.course-list li .con {
  padding: 28px 36px;
}
.course-list li .con span {
  border: 1px solid #999999;
  background-color: #fff;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 4px;
  display: inline-block;
}
.course-list li .con h4 {
  padding-bottom: 16px;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.course-list li .con p {
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 14px;
  color: #999;
  height: 144px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}
.course-list li a:hover {
  background: #006;
  box-shadow: 0 4px 24px rgba(88,188,76,0.2);
}
.course-list li a:hover h4 {
  color: #fff;
}
.course-list li a:hover p {
  border-top: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

/* responsive */
@media only screen and (max-width: 912px) {
  .course-list {
    padding: 30px 0 40px;
  }
  .course-list ul {
    width: auto;
    width: calc(100% + 20px);
  }
  .course-list li {
    margin: 0 20px 0 0;
    /* width: 100%; */
    box-sizing: border-box;
    width: calc(100% / 2 - 20px);
    padding-bottom: 20px;
  }
  .course-list li:nth-of-type(odd) {
    /* padding-right: 8px; */
  }
  .course-list li:nth-of-type(even) {
    /* padding-left: 8px; */
  }
  .course-list li a {
    border-radius: 12px;
  }
  .course-list li .pic {
    width: auto;
    height: auto;
  }
  .course-list li .con {
    padding: 10px 5px 15px
  }
  .course-list li .con h4 {
    padding-bottom: 12px;
    font-size: 14px;
  }
  .course-list li .con p {
    padding-top: 12px;
    line-height: 20px;
    height: 118px;
  }
}

/*.m1200 {position: relative; width: 1200px; margin: 0 auto;}
.page4{background: #fff; /*padding-bottom: 50px;*/}
.page4 .content{height: 638px;/*background: url('../imagesNew2/page4_riyu.png') no-repeat;*/position: relative; margin-bottom: 20px;}
.page4 .li{position: absolute;display: flex;justify-content: center;align-items: center;}
.page4 .color1{font-size: 16px;color: #333333;}
.page4 .color2{font-size: 16px;color: #ffffff;font-weight: bold;}
.page4 .color3{font-size: 14px;color: #333333;line-height: 22px;}

.page4 .bk1{background: #f8f8f8;}
.page4 .bk2{background: #f6fff1;}
.page4 .bk3{background: #fffaed;}
.page4 .bk4{background: #fff4ed;}
.page4 .bk5{background: linear-gradient(90deg,#f6fff1,#fff4ed);}

.page4 .bk6{background: linear-gradient(90deg,#81d74f,#69c931);}
.page4 .bk7{background: linear-gradient(90deg,#69c62e,#49b306);}
.page4 .bk8{background: linear-gradient(90deg,#ffc638,#ffb704);}
.page4 .bk9{background: linear-gradient(90deg,#ffb400,#ff9000);}
.page4 .bk10{background: linear-gradient(90deg,#ff892a,#ff6b2a);}
.page4 .bk11{background: linear-gradient(90deg,#ff892a,#ff6b2a);}

.page4 .div1{width:150px;height:50px;left: 0px;top: 126px;}
.page4 .div2{width:150px;height:50px;left: 0px;top: 183px;}
.page4 .div3{width:150px;height:50px;left: 0px;top: 238px;}
.page4 .div4{width:150px;height:50px;left: 0px;top: 297px;}
.page4 .div5{width:150px;height:70px;left: 0px;top: 350px;}
.page4 .div6{width:150px;height:100px;left: 0px;top: 426px;}
.page4 .div7{width:150px;height:50px;left: 0px;top: 532px;}
.page4 .div8{width:150px;height:50px;left: 0px;top: 588px;}

.page4 .black1.active{background: rgba(81, 94, 126, 0.67);color: #fff;}
.page4 .black2.active{background: rgba(81, 94, 126, 0.67);color: #fff;}
.page4 .black3.active{background: rgba(81, 94, 126, 0.67);color: #fff;}
.page4 .black4.active{background: rgba(81, 94, 126, 0.67);color: #fff;}
.page4 .black5.active{background: rgba(81, 94, 126, 0.67);color: #fff;}
.page4 .black6.active{background: rgba(81, 94, 126, 0.67);color: #fff;}
.page4 .black7.active{background: rgba(81, 94, 126, 0.67);color: #fff;}
.page4 .black8.active{background: rgba(81, 94, 126, 0.67);color: #fff;}


.page4 .div9{width:200px;height:40px;left: 155px;top: 80px;border-radius: 18px 18px 0 0;}
.page4 .div10{width:200px;height:60px;left: 361px;top: 60px;border-radius: 18px 18px 0 0;}
.page4 .div11{width:200px;height:80px;left: 568px;top: 40px;border-radius: 18px 18px 0 0;}
.page4 .div12{width:200px;height:100px;left: 774px;top: 20px;border-radius: 18px 18px 0 0;}
.page4 .div13{width:220px;height:120px;left: 980px;top: 0px;border-radius: 18px 18px 0 0;}

.page4 .div14{width:406px;height:50px;left: 155px;top: 126px;}
.page4 .div15{width:406px;height:50px;left: 568px;top: 126px;}
.page4 .div16{width:220px;height:50px;left: 980px;top: 126px;}
 
.page4 .div17{width:200px;height:50px;left: 155px;top: 183px;}
.page4 .div18{width:200px;height:50px;left: 361px;top: 183px;}
.page4 .div19{width:200px;height:50px;left: 568px;top: 183px;}
.page4 .div20{width:200px;height:50px;left: 774px;top: 183px;}
.page4 .div21{width:220px;height:50px;left: 980px;top: 183px;}

.page4 .div22{width:200px;height:50px;left: 155px;top: 238px;}
.page4 .div23{width:200px;height:50px;left: 361px;top: 238px;}
.page4 .div24{width:200px;height:50px;left: 568px;top: 238px;}
.page4 .div25{width:200px;height:50px;left: 774px;top: 238px;}
.page4 .div26{width:220px;height:50px;left: 980px;top: 238px;}

.page4 .div27{width:200px;height:50px;left: 155px;top: 297px;}
.page4 .div28{width:200px;height:50px;left: 361px;top: 297px;}
.page4 .div29{width:200px;height:50px;left: 568px;top: 297px;}
.page4 .div30{width:200px;height:50px;left: 774px;top: 297px;}
.page4 .div31{width:220px;height:50px;left: 980px;top: 297px;}

.page4 .div32{width:200px;height:70px;left: 155px;top: 350px;text-align: center;}
.page4 .div33{width:200px;height:70px;left: 361px;top: 350px;text-align: center;}
.page4 .div34{width:200px;height:70px;left: 568px;top: 350px;text-align: center;}
.page4 .div35{width:200px;height:70px;left: 774px;top: 350px;text-align: center;}
.page4 .div36{width:220px;height:70px;left: 980px;top: 350px;text-align: center;}

.page4 .div37{width:200px;height:100px;left: 155px;top: 426px;text-align: center;}
.page4 .div38{width:200px;height:100px;left: 361px;top: 426px;text-align: center;}
.page4 .div39{width:200px;height:100px;left: 568px;top: 426px;text-align: center;}
.page4 .div40{width:200px;height:100px;left: 774px;top: 426px;text-align: center;}
.page4 .div41{width:220px;height:100px;left: 980px;top: 426px;text-align: center;}

.page4 .div42{width:200px;height:50px;left: 155px;top: 532px;}
.page4 .div43{width:200px;height:50px;left: 361px;top: 532px;}
.page4 .div44{width:200px;height:50px;left: 568px;top: 532px;}
.page4 .div45{width:200px;height:50px;left: 774px;top: 532px;}
.page4 .div46{width:220px;height:50px;left: 980px;top: 532px;}

.page4 .div47{width:1044px;height:50px;left: 155px;top: 588px;}
.page4 span.ml{margin-left: 26px;}

.page3 .icon4{background: url('https://liuxue.xdf.cn/special_language/xiaoyuzhong/images/page3_icon4.png') no-repeat;}
.page4 .black1.active,.page4 .black2.active,.page4 .black3.active,.page4 .black4.active,.page4 .black5.active,.page4 .black6.active,.page4 .black7.active,.page4 .black8.active,.page4 .black9.active{background: #ffc638;color: #fff;}

.home_tit{padding: 60px 0 0;color: #151c28;font-size: 28px;line-height: 1;text-align: center;}
.home_tit .mainTitle{display: inline-block;position: relative;font-weight: bold; font-size: 28px;}
.home_tit .mainTitle span{background-image: linear-gradient(350deg, #ff7555,#ff5027);background-clip: text;-webkit-background-clip: text;color: transparent;}
.home_tit .mainTitle::before{content: "";width:27px;height:35px;position: absolute;left:-45px;top:-8px;background: url('../images/tit_l.png') no-repeat;}
.home_tit .mainTitle::after{content: "";width:35px;height:24px;position: absolute;right:-50px;top:16px;background: url('../images/tit_r.png') no-repeat;}
.home_tit .subtitle{font-size: 16px;color: #666;padding-top: 16px;}

.sumBtn{width: 260px;height: 46px;margin: auto;overflow: hidden;position: relative;background: linear-gradient(170deg,#ff7555,#ff5027);/*box-shadow: 0 6px 6px rgba(255, 128, 16, 0.12);*/font-size: 16px;color: #fff;font-weight: bold;display: flex;justify-content: center;align-items: center;border-radius: 4px;}
.sumBtn.changeWidth{width: 260px;}



@media only screen and (max-width: 912px) {
    .page4 {background: url('../images/page_riyu.png') no-repeat;background-size: cover;padding-bottom: 0.8rem;}
    .page4 .content div{display: none;}
    .page4 .content {width: 7.3rem;height: 4.8rem;background: url('../images/page_riyu.png') no-repeat;background-size: cover;margin: 0 auto 0.4rem;}
    .page4 .clickMe{font-size: 0.22rem;color: #999999;line-height: 1;display: flex;justify-content: center;align-items: center;margin:0 0 0.24rem 0;}
    .page4 .clickMe img{width: 0.41rem;height: 0.02rem;}
    .page4 .clickMe span{margin: 0 0.11rem;}

    .home_tit{padding: 20px 0 0;}
    .home_tit .mainTitle{font-size: 22px;}

    
}



/* ---------- crumb ---------- */
.crumb {
	padding: 80px 0 40px;
}
.crumb .con {
  padding-left: 24px;
	height: 20px;
	background: url(../images/crumb_ico.png) no-repeat left center;
	font-size: 14px;
	color: #666;
	line-height: 20px;
}
.crumb .con a {
	color: #666;
}
.crumb .con a:hover {
  color: #006;
}

/* responsive */
@media only screen and (max-width: 912px) {
  .crumb {
    padding: 48px 0 28px;
  }
}

/* ---------- course detail ---------- */
.course-detail {
  border-radius: 24px;
  background: #fafafa;
  overflow: hidden;
}
.course-pic {
  float: left;
  width: 38%;
}
.course-pic img {
  width: 100%;
}
.course-desc {
  float: right;
  padding-right: 40px;
  width: 54%;
}
.course-desc .tit {
  padding: 40px 0;
}
.course-desc .tit h1 {
  font-size: 32px;
}
.course-desc .con {
  padding: 40px 0;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  font-size: 15px;
  line-height: 240%;
}
.course-desc .share {
  padding: 32px 0;
}

.course-intro {
  margin: 60px 0 100px;
  padding: 60px;
  border-radius: 24px;
  background: #fafafa;
}
.course-intro .tit {
  text-align: center;
}
.course-intro .tit h2 {
  position: relative;
  font-size: 16px;
}
.course-intro .tit h2:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(50% - 50px);
  height: 1px;
  background: #efefef;
  content: "";
}
.course-intro .tit h2:after {
  position: absolute;
  top: 50%;
  right: 0;
  width: calc(50% - 50px);
  height: 1px;
  background: #efefef;
  content: "";
}
.course-intro .con {
  padding: 40px 0;
  font-size: 15px;
  line-height: 240%;
}
.course-intro .con img {
  max-width: 100%;
}

@media only screen and (max-width: 912px) {
  .course-detail {
    border-radius: 12px;
  }
  .course-pic {
    float: none;
    width: auto;
  }
  .course-desc {
    float: none;
    padding: 0 20px;
    width: auto;
  }
  .course-desc .tit {
    padding: 28px 0 20px;
  }
  .course-desc .tit h1 {
    font-size: 20px;
  }
  .course-desc .con {
    padding: 20px 0;
    line-height: 200%;
  }
  .course-desc .share {
    padding: 24px 0 32px;
  }

  .course-intro {
    margin: 32px 0 60px;
    padding: 40px 20px;
    border-radius: 12px;
  }
  .course-intro .con {
    line-height: 200%;
  }
  .course-intro .con img {
    width: 100%;
  }
}

/* ---------- teacher ---------- */
.teacher-tit {
  overflow: hidden;
  padding: 80px 0 0;
}
.teacher-tit h2 {
  float: left;
  font-size: 28px;
  color: #333;
}
.teacher-tit h3 {
  float: left;
  padding: 16px 0 0 10px;
  font-family: "PFDinTextPro-Light";
  font-size: 18px;
  font-weight: normal;
  color: #999;
  text-transform: uppercase;
}
.teacher-tit a.more-btn {
  float: right;
  margin-top: 12px;
  padding-right: 28px;
  height: 24px;
  background: url("../images/more-arrow.png") no-repeat right center;
  font-size: 14px;
  color: #999;
  line-height: 24px;
}
.teacher-tit a:hover.more-btn {
  color: #ffae1a;
}

.teacher-list {
  /* padding: 50px 0; */
  padding-bottom: 30px;
  overflow: hidden;
}
.teacher-list li {
  float: left;
  padding: 15px 8px 0;
  width: 20%;
  box-sizing: border-box;
}
.teacher-list li a {
  display: block;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
}
.teacher-list li .pic {
  margin: auto;
  width: 100%;
  border-radius: 100%;
  overflow: hidden;
}
.teacher-list li .pic img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.teacher-list li .con {
  padding-top: 28px;
}
.teacher-list li .con h4 {
  font-size: 18px;
}
.teacher-list li .con p {
  padding-top: 10px;
  /*height: 48px;*/
  font-size: 14px;
  color: #999;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.teacher-list li a:hover {
  background: #fafafa;
}
.teacher-list li a:hover .pic img {
  transform: scale(1.08);
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .teacher-list li a {
    padding: 20px;
  }
}

@media only screen and (max-width: 912px) {
  .teacher-list {
    padding: 40px 0 30px;
  }
  .teacher-list li {
    float: left;
    width: 50%;
    padding: 0 0;
  }
  .teacher-list li .con {
    padding-top: 12px;
  }
  .teacher-list li a {
    padding: 10px;
    border-radius: 12px;
  }
  .teacher-list li .con h4 {
    font-size: 15px;
  }
  .teacher-list li .con p {
    padding-top: 8px;
    /* height: 40px; */
    line-height: 20px;
  }
}

/* ---------- works ---------- */
.works-list {
  padding: 100px 0;
  overflow: hidden;
}
.works-list ul {
  width: calc(100% + 60px);
  overflow: hidden;
}
.works-list li {
  float: left;
  margin: 0 60px 60px 0;
  width: calc(100% / 3 - 60px);
}
.works-list li a {
  display: block;
  border-radius: 24px;
  background: #f6f6f6;
  overflow: hidden;
}
.works-list li .pic {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.works-list li .pic img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.works-list li a:hover .pic img {
  transform: scale(1.08);
}
.works-list li .con {
  padding: 20px 24px 24px;
}
.works-list li .con h4 {
  padding-bottom: 16px;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.works-list li .con p {
  padding-top: 12px;
  height: 48px;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 14px;
  color: #999;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.works-list li a:hover {
  background: #006;
  box-shadow: 0 4px 24px rgba(88,188,76,0.2);
}
.works-list li a:hover h4 {
  color: #fff;
}
.works-list li a:hover p {
  border-top: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

/* responsive */
@media only screen and (max-width: 912px) {
  .works-list {
    padding: 60px 0;
  }
  .works-list ul {
   padding-bottom: 20px;
   width: calc(100% + 20px);
  }
  .works-list li {
    float: left;
    margin: 0 20px 20px 0;
    width: calc(100% / 2 - 20px);
  }
  .works-list li a {
    border-radius: 12px;
  }
  .works-list li .pic {
    width: auto;
    height: auto;
  }
  .works-list li .con {
    padding: 12px 16px;
  }
  .works-list li .con h4 {
    padding-bottom: 8px;
    font-size: 15px;
  }
  .works-list li .con p {
    padding-top: 8px;
    height: 40px;
    line-height: 20px;
  }
}

/* ---------- news ---------- */
.news-list {
  padding: 60px 0 100px;
  overflow: hidden;
}
.news-list ul {
  padding-bottom: 60px;
  width: calc(100% + 80px);
  overflow: hidden;
}
.news-list li {
  float: left;
  margin-right: 80px;
  padding: 40px 0;
  width: calc(100% / 1 - 80px);
  border-bottom: 1px solid #efefef;
  overflow: hidden;
}
.news-list li .date {
  float: left;
  padding: 20px 0 0 16px;
  width: 88px;
  height: 88px;
  border-radius: 6px;
  box-sizing: border-box;
  background: #f6f6f6;
}
.news-list li .date span {
  display: block;
  font-family: "PFDinTextPro-Light";
}
.news-list li .date span.day {
  font-size: 24px;
  color: #666;
}
.news-list li .date span.year {
  padding-top: 4px;
  font-size: 16px;
  color: #999;
}
.news-list li .con {
  float: right;
  width: calc(100% - 120px);
}
.news-list li .con h4 {
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-list li .con p {
  padding-top: 14px;
  font-size: 14px;
  color: #999;
  line-height: 28px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news-list li .btm {
  padding-top: 8px;
}
.news-list li .more-btn {
  padding-right: 32px;
  background: url("../img/news-more-arrow.png") no-repeat right center;
  font-size: 12px;
  color: #ccc;
  transition: all 0.3s ease-in-out;
}
.news-list li a:hover .more-btn {
  padding-right: 48px;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .news-list {
    padding: 40px 0 60px;
  }
  .news-list ul {
    padding-bottom: 40px;
    width: auto;
  }
  .news-list li {
    float: none;
    margin-right: 0;
    padding: 24px 0;
    width: auto;
  }
  .news-list li .date {
    padding: 14px 0 0 12px;
    width: 68px;
    height: 68px;
  }
  .news-list li .date span.day {
    font-size: 20px;
  }
  .news-list li .date span.year {
    padding-top: 2px;
    font-size: 14px;
  }
  .news-list li .con {
    width: calc(100% - 88px);
  }
  .news-list li .con h4 {
    font-size: 15px;
  }
  .news-list li .con p {
    padding-top: 8px;
    line-height: 24px;
  }
  .news-list li .btm {
    padding-top: 4px;
  }
}



/* ---------- page ---------- */
.page {
  clear: both;
  text-align: center;
}
.page a {
  display: inline-block;
  margin: 0 2px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  font-family: Arial;
  font-size: 15px;
  color: #666;
  line-height: 40px;
  text-align: center;
}
.page a:hover {
  background: #eaeaea;
}
.page a.crt {
  background: #006;
  color: #fff;
}
.page a.disable {
  background: #eaeaea;
  color: #666;
}

/* ---------- contact ---------- */
.contact-wrap {
  padding: 100px 0;
}
.contact-tit {
  padding-bottom: 80px;
}
.contact-tit h3 {
  font-size: 24px;
  font-weight: normal;
}
.contact-tit p {
  padding-top: 20px;
  font-size: 14px;
  color: #999;
}

.contact-list {
  overflow: hidden;
}
.contact-list ul {
  width: calc(100% + 30px);
}
.contact-list li {
  float: left;
  margin-right: 30px;
  padding: 60px 20px 40px;
  border: 1px solid #efefef;
  box-sizing: border-box;
  background: url("../images/contact-bg.png") no-repeat center bottom;
  width: calc(100% / 2 - 30px);
  text-align: center;
}
.contact-list li:first-child {
  background: url("../images/contact-bg.png") no-repeat left bottom;
}
.contact-list li:last-child {
  margin-right: 0;
  background: url("../images/contact-bg.png") no-repeat right bottom;
}
.contact-list li i {
  display: inline-block;
  width: 80px;
  height: 80px;
  border: 1px solid #006;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
}
.contact-list li i.ico-1 {
  background-image: url("../images/contact-ico-1.png");
}
.contact-list li i.ico-2 {
  background-image: url("../images/contact-ico-2.png");
}
.contact-list li i.ico-3 {
  background-image: url("../images/contact-ico-3.png");
}
.contact-list li h4 {
  padding-top: 24px;
  font-size: 15px;
}
.contact-list li p {
  padding-top: 12px;
  height: 40px;
  font-size: 15px;
}
.contact-con {
  padding: 48px 20px;
  border-bottom: 1px solid #efefef;
  font-size: 14px;
  line-height: 32px;
  text-align: center;
}

.contact-qrcode {
  padding-top: 60px;
  text-align: center;
}
.contact-qrcode img {
  border: 1px solid #efefef;
  border-radius: 4px;
}
.contact-qrcode p {
  padding-top: 15px;
  font-size: 13px;
  color: #999;
}
.contact-map {
  position: relative;
  width: 100%;
  height: 600px;
}
.contact-map #map {
  width: 100%;
  height: 100%;
}

/* responsive */
@media only screen and (max-width: 912px) {
  .contact-wrap {
    padding: 48px 0;
  }
  .contact-tit {
    padding-bottom: 48px;
  }
  .contact-tit h3 {
    font-size: 18px;
  }
  .contact-tit p {
    padding-top: 16px;
  }

  .contact-list ul {
    width: auto;
  }
  .contact-list li {
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
    padding: 32px 20px 12px;
    width: auto;
  }
  .contact-list li i {
    width: 64px;
    height: 64px;
    background-size: 28px;
  }
  .contact-list li h4 {
    padding-top: 8px;
    font-size: 14px;
  }
  .contact-list li p {
    padding-top: 4px;
    font-size: 14px;
  }
  
  .contact-con {
    padding: 32px 20px;
  }

  .contact-map {
    height: 400px;
  }
}

/* ---------- article ---------- */
.article-wrap {
  padding: 80px 0;
}

.article-main {
  float: left;
  width: 68%;
}

.article-tag a {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #ffae1a;
  border-radius: 2px;
  font-size: 14px;
  color: #ffae1a;
}

.article-tit {
  padding: 30px 0 39px;
}
.article-tit h1 {
  font-size: 32px;
}

.article-bar {
  padding: 12px 16px;
  border: 1px solid #f0f0f0;
  background: #fafafa;
  overflow: hidden;
}
.article-bar .info {
  float: left;
  font-family: Arial;
  color: #999;
  line-height: 24px;
}
.article-bar .date {
  padding-left: 24px;
  background: url("../images/date-ico.png") no-repeat left center;
}
.article-bar .visit {
  padding-left: 24px;
  background: url("../images/visit-ico.png") no-repeat left center;
}
.article-bar .share {
  float: right;
}

.article-con {
  padding-top: 60px;
  font-size: 16px;
  line-height: 240%;
}
.article-con p {
  padding-bottom: 24px;
}
.article-con img {
  padding: 20px 0;
  max-width: 100%;
}

.article-side {
  float: right;
  margin-top: 140px;
  padding: 30px 29px;
  width: 25%;
  box-sizing: border-box;
  border: 1px solid #efefef;
  border-top: 2px solid #006;
}
.article-side h3 {
  font-size: 18px;
  color: #006;
}
.article-side ul {
  padding-top: 30px;
}
.article-side li {
  padding-bottom: 30px;
}
.article-side li img {
  width: 100%;
}
.article-side li h4 {
  padding-top: 16px;
  font-size: 14px;
  font-weight: normal;
  line-height: 160%;
}
.article-side li p {
  padding-top: 12px;
  font-family: Arial;
  font-size: 13px;
  color: #999;
  line-height: 20px;
}
.article-side li .date {
  padding-left: 22px;
  background: url("../images/date-ico.png") no-repeat left center;
}
.article-side li .visit {
  padding-left: 22px;
  background: url("../images/visit-ico.png") no-repeat left center;
}

.article-btm {
  padding: 60px 20px;
  background: #f6f6f6;
}
.article-btm .con {
  margin: auto;
  padding: 50px 0;
  max-width: 1320px;
  background: #fff;
  overflow: hidden;
}
.article-btm .related {
  float: left;
  padding: 0 60px;
  width: 68%;
  box-sizing: border-box;
  overflow: hidden;
}
.article-btm .related h4 {
  font-size: 14px;
  font-weight: normal;
  color: #999;
}
.article-btm .related p {
  padding-top: 12px;
  font-size: 15px;
  line-height: 160%;
}
.article-btm a.prev {
  float: left;
  display: block;
  width: 46%;
}
.article-btm a.prev .arrow {
  padding-left: 30px;
  background: url("../images/prev-arrow.png") no-repeat left center;
}
.article-btm a.next {
  float: right;
  display: block;
  width: 46%;
}
.article-btm a.next .arrow {
  padding-right: 30px;
  background: url("../images/next-arrow.png") no-repeat right center;
}
.article-btm .back {
  float: right;
  padding-top: 25px;
  width: 25%;
  height: 50px;
  border-left: 1px solid #efefef;
  text-align: center;
}
.article-btm .back a {
  display: inline-block;
  padding-left: 24px;
  height: 25px;
  background: url("../images/list-ico.png") no-repeat left center;
  font-size: 14px;
  line-height: 25px;
}

/* responsive */
@media only screen and (max-width: 912px) {
  .article-wrap {
    padding: 48px 0;
  }

  .article-main {
    float: none;
    width: auto;
  }

  .article-tit {
    padding: 24px 0;
  }
  .article-tit h1 {
    font-size: 20px;
  }

  .article-bar .info {
    float: none;
  }
  .article-bar .share {
    display: none;
  }

  .article-con {
    padding-top: 40px;
  }
  .article-con p {
    padding-bottom: 20px;
  }
  .article-con img {
    padding: 20px 0;
    width: 100%;
    height: 100%;
  }

  .article-side {
    display: none;
  }

  .article-btm {
    padding: 48px 20px;
  }
  .article-btm .con {
    padding: 12px 24px;
    width: auto;
  }
  .article-btm .related {
    float: none;
    padding: 16px 0;
    width: auto;
  }
  .article-btm a.prev {
    float: none;
    padding: 12px;
    width: auto;
  }
  .article-btm a.next {
    float: none;
    padding: 12px;
    width: auto;
  }
  .article-btm .back {
    float: none;
    padding-top: 24px;
    width: auto;
    border-top: 1px solid #efefef;
    border-left: 0;
  }
}

/* ---------- search ---------- */
.search {
  padding: 80px 0 100px;
}
.search-form {
  text-align: center;
}
.search-form-text {
  padding: 0 30px;
  width: 60%;
  height: 50px;
  box-sizing: border-box;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.search-form-btn {
  position: relative;
  top: 0;
  right: 0;
  margin-left: -80px;
  width: 75px;
  height: 50px;
  border: 0;
  background: url("../images/search-ico.png") no-repeat center;
  cursor: pointer;
}

.search-result {
  padding-top: 50px;
}
.search-result .result-tit {
  padding: 16px 0;
  border-bottom: 1px solid #e6e6e6;
  overflow: hidden;
}
.search-result .result-tit h3 {
  float: left;
  font-size: 18px;
  line-height: 24px;
}
.search-result .result-tit .count {
  float: right;
  padding-top: 4px;
  font-size: 14px;
  color: #999;
  line-height: 20px;
}

.result-list {
  padding-top: 20px;
}
.result-list ul {
  padding-bottom: 50px;
}
.result-list li {
  padding: 30px 0;
  border-bottom: 1px solid #efefef;
  overflow: hidden;
}
.result-list li .pic {
  float: left;
  position: relative;
  width: 240px;
  box-shadow: 4px 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}
.result-list li .pic img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.result-list li .pic .date {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 8px;
  border-radius: 3px;
  background: rgba(255,255,255,0.8);
  font-family: "AvantGarde-Medium";
  font-size: 12px;
  color: #999;
}
.result-list li .con {
  float: right;
  width: calc(100% - 280px);
}
.result-list li .con h4 {
  padding-top: 4px;
  font-size: 18px;
  line-height: 160%;
}
.result-list li .con p {
  padding-top: 16px;
  font-size: 14px;
  color: #888;
  line-height: 200%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.result-list li .btm {
  padding-top: 20px;
}
.result-list li .more-btn {
  padding-right: 32px;
  background: url("../images/news-more.png") no-repeat right center;
  font-size: 12px;
  color: #ccc;
  transition: all 0.3s ease-in-out;
}
.result-list li a:hover .pic img {
  transform: scale(1.05);
}
.result-list li a:hover .more-btn {
  padding-right: 48px;
}

/* responsive */
@media only screen and (max-width: 912px) {
  .search {
    padding: 48px 0;
  }
  .search-form-text {
    width: 80%;
    height: 44px;
    border-radius: 44px;
  }
  .search-form-btn {
    margin-left: -60px;
    width: 55px;
    height: 44px;
  }

  .search-result {
    padding-top: 32px;
  }

  .result-list ul {
    padding-bottom: 40px;
  }
  .result-list li {
    padding: 20px 0;
    height: auto;
  }
  .result-list li a {
    display: -webkit-flex;
    display: flex;
  }
  .result-list li .pic {
    float: none;
    width: 144px;
  }
  .result-list li .con {
    float: none;
    -webkit-flex: 1;
    flex: 1;
    padding-left: 16px;
    width: auto;
  }
  .result-list li .con h4 {
    padding-top: 0;
    font-size: 14px;
  }
  .result-list li .con p {
    padding-top: 0;
  }
  .result-list li .btm {
    display: none;
  }
}


/* ---------- Application ---------- */
.application {
  padding: 40px 0;
  background-position: center top;
  background-size: cover;
}

.application-tit {
  position: relative;
text-align: center;
}
.application-tit h2 {
  font-family: "Arial";
  font-size: 14px;
  font-weight: normal;
  color: #b9c1cb;
  text-transform: uppercase;
}
.application-tit h3 {
  position: relative;
  padding: 4px 0 20px;
  font-size: 28px;
  /* color: #001f7a; */
text-align: center;
}
.application-tit h3:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 56px;
  height: 3px;
  background: #ed6c00;
  content: "";
}
.application-tit a.more-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 48px 8px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: url("../images/more-arrow.png") no-repeat right 20px center;
  font-size: 14px;
  color: #aaa;
}
.application-tit a:hover.more-btn {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}

.application-con {
  padding-top: 48px;
  overflow: hidden;
}
.application-con ul {
  width: calc(100% + 40px);
}
.application-con li {
  float: left;
  margin: 0 40px 0 0;
  padding: 30px 40px 40px;
  width: calc(100% / 3 - 40px);
  /* height: 360px; */
  box-sizing: border-box;
  background: rgba(33,36,43,0.4);
  transition: all 0.3s ease-in-out;
  border-radius: 24px;
}
.application-con li .ico img {
  width: 60px;
  float: right;
}
.application-con li h4 {
  /* padding-top: 36px; */
  font-size: 18px;
  font-weight: normal;
  color: #fff;
}
.application-con li p {
  padding-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  /* line-height: 180%; */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.application-con li .btm {
  padding-top: 16px;
}
.application-con li a.more-btn {
  padding: 0 32px 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  background: url("../images/product-more-arrow.png") no-repeat right 6px;
  color: #fff;
  opacity: 0.4;
}
.application-con li:hover {
  background: rgba(33,36,43,1);
  transform: translate(0,-10px);
}
.application-con li a:hover.more-btn {
  opacity: 0.8;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .application {
    padding: 25px 0 20px
  }

  .application-tit h2 {
    font-size: 12px;
  }
  .application-tit h3 {
    padding: 4px 0 16px;
    font-size: 22px;
  }
  .application-tit h3:after {
    width: 56px;
    height: 2px;
  }
  .application-tit a.more-btn {
    padding: 6px 36px 6px 12px;
    background: url("../images/more-arrow.png") no-repeat right 12px center;
  }

  .application-con {
    padding-top: 32px;
  }
  .application-con ul {
    width: calc(100% + 16px);
  }
  .application-con li {
    margin: 0 16px 16px 0;
    padding: 32px 24px;
    width: calc(100% / 1 - 16px);
    /* height: 308px; */
  }
  .application-con li h4 {
    /* padding-top: 20px; */
    font-size: 16px;
  }
  .application-con li p {
    padding-top: 12px;
    /* height: 88px;
    line-height: 140%; */
    -webkit-line-clamp: 4;
  }
  .application-con li .btm {
    padding-top: 12px;
  }
  .application-con li a.more-btn {
    padding: 0 28px 8px 0;
  }
}


/* ---------- class ---------- */
.class-list {
  padding: 30px 0 60px;
  overflow: hidden;
}
.class-list ul {
  padding-bottom: 40px;
  width: calc(100% + 80px);
  overflow: hidden;
}
.class-list li {
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 15px;
  width: calc(100% / 2 - 80px);
  /* border-bottom: 1px solid #efefef; */
  overflow: hidden;
  border: 1px solid #efefef;
}
.class-list li .date {
  float: left;
  padding: 20px 16px;
  width: 88px;
  /* height: 88px; */
  border-radius: 6px;
  box-sizing: border-box;
  background: #f6f6f6;
}
.class-list li .date span {
  display: block;
  font-family: "PFDinTextPro-Light";
}
.class-list li .date span.day {
  font-size: 24px;
  color: #666;
}
.class-list li .date span.year {
  padding-top: 4px;
  font-size: 16px;
  color: #999;
}
.class-list li .con {
  float: right;
  width: calc(100% - 120px);
}
.class-list li .con h4 {
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.class-list li .con p {
  padding-top: 14px;
  font-size: 14px;
  color: #999;
  line-height: 28px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.class-list li .btm {
  padding-top: 8px;
}
/* .class-list li .more-btn {
  padding-right: 32px;
  background: url("../images/news-more-arrow.png") no-repeat right center;
  font-size: 12px;
  color: #ccc;
  transition: all 0.3s ease-in-out;
} */
.class-list li .more-btn {
  float: right;
  display: inline-block;
  padding: 0px 35px 0 20px;
  height: 36px;
  border-radius: 6px;
  background: url(../images/flick-more-arrow02.png) no-repeat left 125px center #fe824c;
  font-family: Arial;
  font-size: 14px;
  color: #fff;
  line-height: 36px;
}
.class-list li a:hover .more-btn {
  padding-right: 48px;
}

.honor-con {
  padding-top: 20px;
  padding-bottom: 50px;
}

.rvc {
  position: relative;
  margin: auto;
  max-width: 1320px;
}
.rvc .rvc-wrapper {
  margin: auto;
  overflow: hidden;
}
.rvc .rvc-wrapper ul {
  position: relative;
  overflow: hidden;
}
.rvc .rvc-wrapper ul li {
  float: left;
}
.rvc .rvc-wrapper ul li a .img-wrapper {
  padding: 30px;
  border-radius: 8px;
  background: #f9f9f9;
}
.rvc .rvc-wrapper ul li a .img-wrapper img {
  padding: 10px 0 30px;
  width: 100%;
  box-sizing: border-box;
}
.rvc .rvc-wrapper ul li a .img-wrapper .con {
  padding-top: 20px;
  border-top: 1px solid #efefef;
}
.rvc .rvc-wrapper ul li a .img-wrapper h4 {
  background: url("../img/zoom-ico.png") no-repeat right center;
  font-size: 15px;
  font-weight: normal;
  text-align: center;
}
.rvc-prv, .rvc-next {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 8px;
  background: rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.rvc-prv {
  left: 0;
}
.rvc-next {
  right: 0;
}



/* responsive */
@media only screen and (max-width: 1024px) {
  .class-list {
    padding: 40px 0 60px;
  }
  .class-list ul {
    padding-bottom: 40px;
    width: auto;
  }
  .class-list li {
    float: none;
    margin-right: 0;
    padding: 24px 0;
    width: auto;
  }
  .class-list li .date {
    padding: 14px 12px;
    width: 75px;
    /* height: 68px; */
  }
  .class-list li .date span.day {
    font-size: 20px;
  }
  .class-list li .date span.year {
    padding-top: 2px;
    font-size: 14px;
  }
  .class-list li .con {
    width: calc(100% - 88px);
  }
  .class-list li .con h4 {
    font-size: 15px;
  }
  .class-list li .con p {
    padding-top: 8px;
    line-height: 24px;
  }
  .class-list li .btm {
    padding-top: 4px;
  }
}

/* 日本留学 */
.page5{background: url('../images/page5.jpg') no-repeat center top;}
.page5 .list{display: flex;justify-content: space-between;}
.page5 .li{width: 280px;height: 350px;position: relative;overflow: hidden;box-shadow: 0 0 33px rgba(230, 235, 247, 0.2);}
.page5 .bk1{background: url('../images/page5_bk1.png') no-repeat;}
.page5 .bk2{background: url('../images/page5_bk2.png') no-repeat;}
.page5 .bk3{background: url('../images/page5_bk3.png') no-repeat;}
.page5 .bk4{background: url('../images/page5_bk4.png') no-repeat;}
.page5 .img1{display: none;margin:0 0 17px 0px;}
.page5 .img2{display: block;margin:0 0 17px 0px;}
.page5 .inNum{width: 100%;height: 100px;position: absolute;left: 0;bottom: 0;padding: 0 21px;box-sizing: border-box;}
.page5 .tit{font-size: 18px;font-weight: bold;color: #fff;line-height: 1;}
.page5 .cont{display: none; font-size: 14px;line-height: 22px;color: #fff; padding: 10px 0px 18px;box-sizing: border-box;}
.page5 .btn{display: none; width: 100px;height: 32px;background: #fff;border-radius: 4px;justify-content: center;align-items: center;font-size: 14px;font-weight: bold;color: #363650;}
.page5 .li.active .inNum{height: 100%;background: url('../images/page5_ac.png') no-repeat;}
.page5 .li.active .cont{display: block;}
.page5 .li.active .btn{display: flex;}

/* .page5 .li .inNum{ animation: changeHeight2 0.5s;padding-top: 0px;} */
.page5 .li.active .inNum{ animation: changeHeight 0.5s;padding-top: 117px;}
.page5 .li.active .img1{display: block;}
.page5 .li.active .img2{display: none;}
@keyframes changeHeight {
    0%{height: 100px;padding-top: 0px;}
    100%{height: 100%;padding-top: 117px;}
}
@keyframes changeHeight2 {
    0%{height: 100%;padding-top: 117px;}
    100%{height: 100px;padding-top: 0px;}
}
 .page5 .box {
        width: 705px;
        height: 492px;
        background: url(../images/images/cont3box_03.png) no-repeat center top;
        margin: auto;
    }

    .page5 .connav {
        width: 100%;
        height: 120px;
        border-radius: 15px 15px 0 0 ;
        overflow: hidden;
        -webkit-border-radius: 15px 15px 0 0 ;
        -moz-border-radius: 15px 15px 0 0 ;
        -ms-border-radius: 15px 15px 0 0 ;
        -o-border-radius: 15px 15px 0 0 ;
    }

    .page5 .connav .left {
        width: 50%;
        height: 87px;
        background: #e68dc8;
        float: left;
        font-size: 29px;
        color: #fff;
        text-align: center;
        line-height: 87px;
    }

    .page5 .connav .left:nth-child(1) {
        border-right: 2px solid #fff;
        box-sizing: border-box;
    }

    .page5 .connav .active {
        background: #db63b3;
    }

    .page5 .modelbox {
        width: 671px;
        margin: auto;
    }

    .page5 .modelbox table {
        width: 100%;
    }

    .page5 .modelbox table td {
        border: 1px dashed #000;
        text-align: center;
        box-sizing: border-box;
    }

    .page5 .modelbox table tr:nth-child(1) {
        height: 111px;
    }

    .page5 .modelbox table tr:nth-child(2) {
        height: 192px;
    }

    .page5 .modelbox table tr:nth-child(1) td p:nth-child(1) {
        font-size: 29px;
        font-weight: bold;
        color: #db63b3;
    }

    .page5 .modelbox table tr:nth-child(1) td p:nth-child(2) {
        font-size: 22px;
        color: #db63b3;
    }

    .page5 .modelbox table tr:nth-child(2) td p:nth-child(1) {
        font-size: 23px;
        font-weight: bold;
        color: #222222;
    }

    .page5 .modelbox table tr:nth-child(2) td p:nth-child(2) {
        font-size: 22px;
        color: #666666;
    }

    .page5 .modelbox table tr:nth-child(2) td:nth-child(2) p:nth-child(3) {
        font-size: 22px;
        color: #666666;
    }

    .page5 .btn {
        box-shadow: 0px 0px 10px #ecdde0;
        font-weight: 900;
        position: relative;
        width: 320px;
        height: 80px;
        padding-left: 45px;
        border-radius: 45px ;
        box-sizing: border-box;
        background: #f39800;
        font-size: 23px;
        color: #fff;
        line-height: 80px;
        margin: 5px auto 0;
        -webkit-border-radius: 45px ;
        -moz-border-radius: 45px ;
        -ms-border-radius: 45px ;
        -o-border-radius: 45px ;
    }

    .page5 .btn img {
        position: absolute;
        right: 33px;
        top: 35px;
        animation: btn2 0.5s infinite ;
        -webkit-animation: btn2 0.5s infinite ;
    }

.jg_container {
    display: flex;
    width: 100%;
    max-width: 1320px;
    margin: 50px auto 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    flex-direction: none;
}
.top-section, .bottom-section {
    padding: 20px;
    background-color: #fff;
}
.top-section {
    border-bottom: 1px solid #e0e0e0;
    width: 60%;
}
.bottom-section {
    background-color: #f9f9f9;
    background-image: linear-gradient(to bottom right, #f9f9f9, #e6e6e6);
    width: 40%;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}
th, td {
    border: 1px solid #ddd;
    padding: 10px 3px;
    text-align: center;
    line-height: 24px;
}
th {
    background-color: #465da3;
    color: white;
}
.row1 {
    background-color: #e3f2fd;
}
.row2 {
    background-color: #fff8e1;
}
.row3 {
    background-color: #e3f2fd;
}
.row4 {
    background-color: #e3f2fd;
}
.merged-row {
    text-align: center;
    background-color: #e0e0e0;
    font-weight: bold;
}
.text-content {
    line-height: 1.8;
    font-size: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.text-content p {
    margin-bottom: 15px;
    font-size: 14px;
}
.text-content p:last-child {
    margin-bottom: 0;
}
.section-title {
    font-size: 18px;
    font-weight: bold;
    color: #465da3;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #465da3;
    text-align: center;
}
        
/* 响应式设计 - 桌面端 */
@media (max-width: 768px) {
.jg_container {
    flex-direction: column;
    margin: 30px auto 0;
}
.top-section {
    border-right: 1px solid #e0e0e0;
    border-bottom: none;
    width:auto;
}
.bottom-section {
    width:auto;
    
}
}



.page6{background: url('../images/page6.jpg') no-repeat center top;padding-bottom: 50px;padding-top:100px}
.page6 .content{width: 449px;height: 448px;background: url('../images/page6_bk.png') no-repeat;margin: -50px auto -19px;position: relative;}
.page6 .li{width: 270px;height: 100px;background:#ffffff;border-radius: 20px;box-shadow: 0px 0px 40px 16px rgba(234, 234, 234, 0.3);padding: 0 30px 0 29px;box-sizing: border-box;}
.page6 .li1{position: absolute;left:-221px;top:54px;}
.page6 .li2{position: absolute;left:-271px;top:174px;}
.page6 .li3{position: absolute;left:-221px;top:294px;}
.page6 .li4{position: absolute;right:-241px;top: 54px;}
.page6 .li5{position: absolute;right:-291px;top: 174px;}
.page6 .li6{position: absolute;right:-241px;top: 294px;}
.page6 .tit{font-size: 18px;font-weight: bold;color: #333333;line-height: 1;padding: 17px 0 6px 0;box-sizing: border-box;}
/* .page6 .tit.blue{color: #015dff;} */
.page6 .cont{font-size: 14px;color: #666666;line-height: 22px;}
.page6 .num{width: 26px;height: 26px;position: absolute;right: 30px;top: 0;}
.page6 .num1{background: url('../images/page6_01.png') no-repeat;}
.page6 .num2{background: url('../images/page6_02.png') no-repeat;}
.page6 .num3{background: url('../images/page6_03.png') no-repeat;}
.page6 .num4{background: url('../images/page6_04.png') no-repeat;}
.page6 .num5{background: url('../images/page6_05.png') no-repeat;}
.page6 .num6{background: url('../images/page6_06.png') no-repeat;}
.page6 .centerBox{width: 100%;height: 100%;display: flex;justify-content: center;align-items: center;font-size: 22px;line-height: 30px;font-weight: bold;color: #fff;text-align: center;}

.page6 .content{background: none;}
.page6 .greImg{width: 100%;height: 100%;border-radius: 50%;overflow: hidden;display: flex;justify-content: center;align-items: center;}
/* .page6 .greImg img{width: 100%;animation: scImg 2s infinite;} */
.page6 .page6Animate{
    -webkit-animation-name: scImg;
    animation-name: scImg;
}
.page6 .centerBox{position: absolute;left: 0px;top: 0px;}
@keyframes scImg {
    0%{width: 80%;}
    100%{width: 100%;}
}
.page6 .li{transition:transform 0.2s ;}
.page6 .li:hover{transform: translateY(-10px);}



@media (max-width:1000px) {

    .page1{display: none;}
    .m1200{width: 100%;}
    .btn_active::after{display: none;}

    .page6{/*background: url('../images/page6_bk.png') no-repeat;*/background-size: cover; padding-bottom: 1.8rem; padding-top: 0.8rem;}
    .page6 .greImg img{width: 100%;animation: normal;}
    .page6 .greImg{display: none;}
    .page6 .content{background:url('../images/page6_bk.png') no-repeat center center;background-size: cover;width: 3.53rem;height: 3.52rem;margin:0.22rem auto 0.65rem;}
    .page6 .centerBox{display:none ;}
    .page6 .li:hover{transform: translateY(0px);}
    .page6 .li{width: 2.7rem;height: 1.2rem;border-radius: 0.08rem;box-shadow: 0px 0px 0.4rem 0.06rem rgba(234, 234, 234, 0.3);padding: 0 0.2rem 0 0.24rem;box-sizing: border-box;}
    .page6 .tit{font-size: 0.24rem;color: #333333;padding: 0.19rem 0 0.09rem;}
    .page6 .cont{font-size: 0.2rem;line-height: 0.26rem;}
    .page6 .tit.blue{color: #333333;}
    .page6 .li1{left:-1.59rem;top:-0.25rem;}
    .page6 .li2{left:-1.88rem;top:1.16rem;width: 2.6rem;}
    .page6 .li3{left:-1.59rem;top:2.56rem;padding-right: 0.06rem;}
    .page6 .li4{right:-1.6rem;top:-0.25rem;}
    .page6 .li5{right:-1.9rem;top:1.16rem;width: 2.6rem;padding-right: 0.06rem;}
    .page6 .li6{right:-1.6rem;top:2.56rem;}
    .page6 .num{width: 0.26rem;height: 0.26rem;right: 0.26rem;}
    .page6 .num1{background: url('../images/page6_01.png') no-repeat;background-size: cover;}
    .page6 .num2{background: url('../images/page6_02.png') no-repeat;background-size: cover;}
    .page6 .num3{background: url('../images/page6_03.png') no-repeat;background-size: cover;}
    .page6 .num4{background: url('../images/page6_04.png') no-repeat;background-size: cover;}
    .page6 .num5{background: url('../images/page6_05.png') no-repeat;background-size: cover;}
    .page6 .num6{background: url('../images/page6_06.png') no-repeat;background-size: cover;}
 
}

/*.service {
  position: relative;
  margin-top: 40px;
margin-bottom: 100px
}
.service ul {
  width: calc(100% + 20px);
}
.service li {
  float: left;
  margin: 0 20px 60px 0;
  width: calc(100% / 4 - 20px);
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
.service li:nth-child(1) {
  background: linear-gradient(to bottom, #fce9e5 0%, #fcbfbe 40%);
}
.service li:nth-child(2) {
  background: linear-gradient(to bottom, #fce9e5 0%, #fcbfbe 40%);
}
.service li:nth-child(3) {
  background: linear-gradient(to bottom, #fce9e5 0%, #fcbfbe 40%);
}
.service li:nth-child(4) {
  background: linear-gradient(to bottom, #fce9e5 0%, #fcbfbe 40%);
}
.service li a {
  display: block;
  padding: 30px 40px;
  color: #fff;
}
.service li .ico {
  height: 49px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.service li .ico span {
  float: left;
  padding-top: 4px;
  font-family: "PFDinTextPro-Light";
  font-size: 18px;
}
.service li .ico i {
  float: right;
}
.service li .ico i img {
  width: 48px;
}
.service li .con {
  padding: 0 0 32px 0;
}
.service li .con h4 {
  font-size: 22px;
}
.service li .con p {
  padding-top: 16px;
  font-size: 14px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}
.service li .more-btn {
  display: inline-block;
  background: url("../img/more-arrow.png") no-repeat right center;
  line-height: 26px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.service li:hover {
  transform: translate(0,-10px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.service li:hover .more-btn {
  border-bottom: 1px solid rgba(255,255,255,0.6);
}*/


.service {
  position: relative;
  /*margin-top: 40px;*/
margin-bottom: 30px
}
.service ul {
  width: calc(100% + 20px);
}
.ui-tabs-pane li {
  float: left;
  margin: 0 25px 60px 0;
  width: calc(100% / 4 - 20px);
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
.ui-tabs-pane li:nth-child(1) {
  /* background: #318bff; 
  background: linear-gradient(to bottom, #4193ff 0%, #465da3 0%);*/
  background: linear-gradient(to bottom, #fce9e5 0%, #fcbfbe 40%);
}
.ui-tabs-pane li:nth-child(2) {
  background: linear-gradient(to bottom, #fce9e5 0%, #fcbfbe 40%);
}
.ui-tabs-pane li:nth-child(3) {
  background: linear-gradient(to bottom, #fce9e5 0%, #fcbfbe 40%);
}
.ui-tabs-pane li:nth-child(4) {
  background: linear-gradient(to bottom, #fce9e5 0%, #fcbfbe 40%);
  margin: 0 0 60px 0;
}
.ui-tabs-pane li a {
  display: block;
  padding: 30px 40px;
  /* height: 260px; */
  color: #fff;
}
.ui-tabs-pane li .ico {
  height: 49px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.ui-tabs-pane li .btm2 {
  border: 1px solid #efefef;
  background-color: #fff;
  padding: 20px;
  height: 110px
}
.ui-tabs-pane li .ico span {
  float: left;
  padding-top: 4px;
  font-family: "PFDinTextPro-Light";
  font-size: 18px;
}
.ui-tabs-pane li .ico i {
  float: right;
}
.ui-tabs-pane li .ico i img {
  width: 48px;
}
.ui-tabs-pane li .con {
  padding: 50px 0;
  /*line-height: 40px;*/
}
.ui-tabs-pane li .con h4 {
  font-size: 24px;
}
.ui-tabs-pane li .con p {
  padding-top: 16px;
  font-size: 14px;
  line-height: 24px;
  display: -webkit-box;
  /* -webkit-box-orient: vertical; */
  -webkit-line-clamp: 2;
  /* overflow: hidden; */
}
.ui-tabs-pane li .more-btn {
  display: inline-block;
  /*padding-right: 28px;*/
  background: url("../img/more-arrow.png") no-repeat right center;
  line-height: 26px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.ui-tabs-pane li:hover {
  transform: translate(0,-10px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.ui-tabs-pane li:hover .more-btn {
  border-bottom: 1px solid rgba(255,255,255,0.6);
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .service {
    margin-top: -80px;
  }
  .service ul {
    width: calc(100% + 12px);
  }
  .ui-tabs-pane li {
    margin: 0 12px 12px 0;
    width: calc(100% / 1 - 12px);
  }
  .ui-tabs-pane li a {
    display: block;
    padding: 65px 0;
    /*padding: 24px;
    height: 210px;*/
  }
  .ui-tabs-pane li .ico {
    height: 55px;
  }
  .ui-tabs-pane li .btm2 {
      border: 1px solid #efefef;
      background-color: #fff;
      padding: 20px;
      height: 110px;
  }
  .ui-tabs-pane li .ico i img {
    width: 36px;
  }
  .ui-tabs-pane li .con {
    padding: 20px 0;
  }
  .ui-tabs-pane li .con h4 {
    font-size: 24px;
  }
  .ui-tabs-pane li .con p {
    padding-top: 12px;
  }
}

.knowledge {
  padding: 0px 0 60px;
  background-position: center top;
  background-size: cover;
}

.knowledge-tit {
  overflow: hidden;
}
.knowledge-tit h2 {
  float: left;
  font-size: 28px;
  color: #fff;
}
.knowledge-tit h3 {
  float: left;
  padding: 16px 0 0 10px;
  font-family: "PFDinTextPro-Light";
  font-size: 20px;
  font-weight: normal;
  color: #fff;
}
.knowledge-tit a.more-btn {
  float: right;
  margin-top: 16px;
  padding-right: 28px;
  height: 24px;
  background: url("../img/more-arrow.png") no-repeat right center;
  font-size: 14px;
  color: #fff;
  line-height: 24px;
}

.office-con {
  padding-top: 48px;
  /*overflow: hidden;*/
}
.office-con ul {
  width: calc(100% + 24px);
}
.office-con li {
  float: left;
  /* margin: 0 16px 16px 0; */
  width: calc(100% / 8 - 24px);
}
.office-con li img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.office-con li {
  width: calc(100% / 8 - 32px);
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .knowledge {
    padding: 10px 0 48px;
  }

  .knowledge-tit h2 {
    font-size: 20px;
  }
  .knowledge-tit h3 {
    padding: 10px 0 0 10px;
    font-size: 16px;
  }
  .knowledge-tit a.more-btn {
    margin-top: 6px;
    padding-right: 24px;
  }

  .office-con {
    padding-top: 40px;
  }
  .office-con ul {
    /* width: calc(100% + 10px); */
  }
  .office-con li {
    margin: 0 10px 10px 0;
    width: calc(100% / 2 - 10px);
  }
  .office-con li:nth-of-type(n+2) {
    width: calc(100% / 2 - 10px);
  }
}


/* ---------- service ---------- */
.tese {
  padding: 0;
  /*background-image: url(../images/service-bg.jpg);*/
  background-position: left calc(0% - 480px) top;
  background-repeat: no-repeat;
  background-color: #f6f6f6;
}

.tese-tit {
  float: left;
  color: #fff;
}
.tese-tit {
  position: relative;
  padding-bottom: 20px;
}
.tese-tit h2 {
  position: relative;
  padding-left: 32px;
  font-size: 18px;
}
.tese-tit h2:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 4px;
  background: #fff;
  content: "";
  transform: translateY(-50%);
}
.tese-tit h3 {
  padding-top: 10px;
  font-family: "Montserrat-Regular";
  font-size: 40px;
  font-weight: normal;
}

.tese-con-l {
  float: left;
  background-image: url(/theme/zhaori/images/service-bg.jpg);
  background-position: left calc(0% - 480px) top;
  width: 32%;
  height: 340px;
  margin-top: 40px;
}
.tese-con {
  float: right;
  /*padding: 40px 0 0 40px;*/
  width: 65%;
  /*box-sizing: border-box;*/
  overflow: hidden;
  margin-top: 40px;
}
.tese-con ul {
  width: calc(100% + 20px);
}
.tese-con li {
  float: left;
  margin: 0 15px 15px 0;
  padding: 15px 0;
  width: calc(100% / 5 - 15px);
  box-sizing: border-box;
  background: #fff;
  text-align: center;
}
.tese-con li .ico i {
  display: inline-block;
  padding: 24px;
  border-radius: 100%;
  background: #f6f6f6;
}
.tese-con li .ico i img {
  width: 36px;
  filter: grayscale(1);
  transition: all 0.3s ease-in-out;
}
.tese-con li h4 {
  padding-top: 10px;
  font-size: 15px;
  font-weight: normal;
}
.tese-con li p {
  padding-top: 10px;
  min-height: 44px;
  font-size: 14px;
  color: #999;
  line-height: 22px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.tese-con li a:hover .ico i img {
  filter: none;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .tese {
    padding: 30px 0 30px;
    background-position: center top;
    background-size: cover;
    background-image: url();
  }

  .tese-tit {
    float: none;
  }
  .tese-tit {
    padding-bottom: 16px;
  }
  .tese-tit h2 {
    padding-left: 28px;
    font-size: 16px;
  }
  .tese-tit h2:before {
    height: 3px;
  }
  .tese-tit h3 {
    padding-top: 8px;
    font-size: 20px;
  }

  .tese-con-l{
    display: none;
  }
  .tese-con {
    float: none;
    padding: 35px 0 0 0;
    width: auto;
    margin-top: 0px;
  }
  .tese-con ul {
    width: calc(100% + 20px);
  }
  .tese-con li {
    margin: 0 6px 6px 0;
    padding: 10px 10px 10px;
    width: calc(100% / 4 - 10px);
  }
  .tese-con li .ico i {
    padding: 20px;
  }
  .tese-con li .ico i img {
    width: 20px;
  }
  .tese-con li h4 {
    padding-top: 6px;
    font-size: 14px;
  }
  .tese-con li p {
    padding-top: 8px;
  }
}
