@charset "utf-8";
/* CSS Document */

/********reset********/

html, body, div, p, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, from, input, img, select, button, textarea, iframe, frameset, table, th, tr, td, fieldset {
  margin: 0;
  padding: 0;
}
/********body********/

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
body {
  font-size: 14px;
  font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
  color: #fff;
}
body.fixed {
  position: fixed;
  width: 100%;
}
div {
  vertical-align: top;
}
i, em, cite {
  font-style: normal;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}
a {
  text-decoration: none;
  color: #fff;
}
/* a:hover {
    color: #ff21b6;
} */
ul, li {
  list-style: none;
  display: block;
}
img {
  border: 0 none;
  max-width: 100%
}
img {
  vertical-align: middle;
}
figure {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
}
h1 {
  font-size: 24px
}
h2 {
  font-size: 24px
}
input {
  -webkit-appearance: none;
}
.clear {
  clear: both;
}
/********base********/

.flex {
  margin: 0 auto;
  width: 1400px;
}

.head-box {
  line-height: 90px;
  height: 90px;
  background-color: rgba(0,0,0,.8);
  width: 100%;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
}
.head-box .logo {
  display: inline-block;
  /* vertical-align: middle; */
  width: 200px;
}
.head-box .menu {
  display: inline-block;
  float: right;
}
.menu .nav>li {
  display: inline-block;
  padding: 0 25px;
}
.menu .nav>li:hover .nav-child{
  display: block;
}
.menu .nav>li>a {
  display: inline-block;
  font-size: 15px;
  position: relative;
  transition: color .6s;
  vertical-align: top;
}
.menu .nav>li a:hover {
  color:#ff21b6
}
.menu li.select>a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #ff21b6;
  bottom: 20px;
  left: 0;
}
.nav>li {
  position: relative;
}
.nav-child {
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  top: 90px;
}
.nav-child>li {
  text-align: center;
  background-color: rgba(0,0,0,.8);
  line-height: 70px;
}
.open .nav-child {
  /* display: block; */
}
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  /* opacity: 0.1; */
  background: rgba(0,0,0,.4);
  top: 80px;
  left: 0;
  z-index: 9997;
  display: none;
}
.miniNav {
  width: 45px;
  height: 80px;
  position: relative;
  overflow: hidden;
  display: none;
}
.miniNav #menu {
  height: 80px;
  width: 40px;
  position: absolute;
  /* right: 10px; */
  top: 50%;
  margin-top: -20px;
}
.miniNav #menu * {
  transition: all .3s;
  -webkit-transition: all .3s;
  box-sizing: border-box;
}
.miniNav #menu input[type=checkbox] {
  display: none;
}
.miniNav #menu.select .horizontal {
  opacity: 0;
}
.miniNav #menu.select .line-1 {
  margin-top: 15px;
  -webkit-transform: rotate(405deg);
  -moz-transform: rotate(405deg);
  -ms-transform: rotate(405deg);
  -o-transform: rotate(405deg);
  transform: rotate(405deg);
}
.miniNav #menu.select .line-2 {
  -webkit-transform: rotate(-405deg);
  -moz-transform: rotate(-405deg);
  -ms-transform: rotate(-405deg);
  -o-transform: rotate(-405deg);
  transform: rotate(-405deg);
  margin-top: -15px;
}
.miniNav #menu .line {
  position: absolute;
  height: 4px;
  width: 100%;
  background-color: #fff;
  /* border-radius: 2px; */
}
.miniNav #menu .horizontal {
  top: 15px;
}
.miniNav #menu .line-2 {
  top: 30px;
}
.banner {
  background-color: #121212;
  padding-top: 90px;
  overflow: hidden;
}
.b-title {
  text-align: center;
  padding-top:30px;
  background-color: #121212;
}
.b-title h1 {
  font-size:46px;
}
i.pink{
  color: #ff21b6!important;
}
.b-title h3 {
  font-size:26px;
  line-height: 3;
}
.b-title p {
  line-height: 2;
  padding-bottom: 60px;
}
.b-title .b-btn {
  height: 120px;
}
.b-title a {
  position: relative;
  /* border: 2px solid transparent; */
  padding: 5px 30px;
  border-radius: 30px;
  background-color: #fff;
  background-clip: padding-box;
  text-align: center;
  color: #000;
  z-index: 2;
  font-size: 18px;
  transition: all .3s;
}
.b-title a:hover {
  background-image: linear-gradient(to right, #ff21b6, #9c00cc);
  color: #fff;
  /* border-radius: 45%; */
  background-clip: border-box;
  border: none;
}
.b-title a:hover::after {
  /* display: none; */
}
.b-title a:after {
  position: absolute;
  top: -2px; bottom: -2px;
  left: -2px; right: -2px;
  background: linear-gradient(to right, #ff21b6, #9c00cc);
  content: '';
  z-index: -1;
  border-radius: 30px;
}
.b-title a:first-of-type {
  margin-right: 50px;
}
.sectionBox {
  padding: 80px 0 60px 0;
}
.sectionBox h2 {
  font-size: 46px;
  text-align: center;
}
.sectionBox>h4 {
  font-size: 22px;
  color: #000;
  line-height: 2;
  text-align: center;
}
.sectionBox1 {
  text-align: center;
  background-color: #fff;
}
.sectionBox1 h2 {
  /* background: linear-gradient(to right, #ff21b6, #9c00cc); */
  background: linear-gradient(to right, #2d6bd5, #fe1bb9);
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
  color: #fe1bb9\0;
  background: transparent\0;
}
.sectionBox1 ul {
  padding: 40px 80px;
}
.sectionBox1 ul li {
  width: 40%;
  display: inline-block;
  color: #000;
  margin-bottom: 40px;
  vertical-align: top;
}
.sectionBox1 ul li:nth-child(odd) {
  margin-right: 20%;
}
.sectionBox1 ul li h3 {
  font-size: 32px;
  line-height: 1.6;
  text-align: left;
  padding-left: 20%;
}
.sectionBox1 ul li h3 i {
  font-size: 32px;
  margin-right: 10px;
}
.sectionBox1 ul li p {
  display: inline-block;
  width: 75%;
  color: #8c8c8c;
  line-height: 1.6;
}
.sectionBox2 {
  background-color: #121212;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sectionBox2>h4 {
  color: #fff;
}
.sectionBox2 ul {
  display: inline-block;
  margin-top: 30px;
  /* width: 25%; */
  float: left;
  font-size: 0;
}
.sectionBox2 ul:nth-child(2) {
  float: right;
  margin-top: 100px;
}
.sectionBox2 ul:nth-child(2) li:last-child {
  margin-bottom: 0;
}
.sectionBox2 ul li {
  margin-bottom: 55px;
  vertical-align: middle;
  text-align: left;
  padding: 0 20px;
}
/* .sectionBox2 ul li:nth-child(2) {
    margin-top: 30px;
} */
.sectionBox2 ul li>div {
  display: inline-block;
  padding-top: 10px;
}
.sectionBox2 ul li h5 {
  font-size: 24px;
}
.sectionBox2 ul li p {
  font-size: 20px;
}
.sectionBox2 ul li>img {
  width: 80px;
  margin-right: 20px;
}
.sectionBox2>div>img {
  position: absolute;
  width: 560px;
  bottom: -2%;
  left: 50%;
  margin-left: -280px;
}
.sectionBox2>div>img.ad{
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}
.sb-flex {
  width: 1200px;
  margin-top: 160px;
}
.sectionBox3 {
  position: relative;
  padding: 0;
}
.sectionBox3>h2 {
  position: absolute;
  top: 80px;
  width: 100%;
}
.sectionBox3>h4 {
  position: absolute;
  color: #fff;
  top: 140px;
  width: 100%;
}
.sectionBox3>ul {
  position: absolute;
  bottom: 80px;
  width: 100%;
  text-align: center;
}
.sectionBox3>ul li {
  position: relative;
  display: inline-block;
  /* padding: 12px 30px; */
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid #fff;
  text-align: center;
  color: #fff;
  z-index: 2;
  font-size: 18px;
  transition: all .3s;
  margin-right: 40px;
  cursor: pointer;
  width: 96px;
  height: 48px;
  line-height: 48px;

}
.sectionBox3>ul li.select {
  background:url(../img/sb3-btn.png);
  background-size: contain;
  background-repeat:no-repeat;
  border: none;
}
.sectionBox3>ul li:last-child {
  margin-right: 0;
}
.sb3-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  z-index: -1;
  max-height: 960px;
}
.sb3-slide {
  position: absolute;
  top: 0;
  left: 0;
}
.sb3-slide img {
  opacity: 0;
  transition: all .7s;
}
.sb3-slide img.select {
  opacity: 1;
}


.sectionBox4 {
  position: relative;
  /* background-image: url(../img/sb4-bg.jpg); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 960px;
  width:100%;
  margin-top: -2px;
}
.sectionBox4>h2 {
  /* position: absolute; */
  /* top: 80px; */
  /* left: 50%; */
  /* transform: translateX(-50%);  */
}
.sectionBox4>p {
  /* position: absolute; */
  color: #fff;
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
  /* top: 160px; */
  /* left: 50%;
  transform: translateX(-50%);  */
}
.sectionBox4>ul {
  position: absolute;
  /* left: 50%;
  transform: translateX(-50%); */
  width: 100%;
  text-align: center;
  top: 220px;
}
.sectionBox4>ul li {
  display: inline-block;
  /* margin-right: 5%; */
}
.sectionBox4>ul li:last-child {
  margin: 0;
}
.sectionBox4>ul li>div {
  width: auto;
}
ul.sb-ul li>img {
  width: 115px;
}
.img-border {
  border-radius: 8px;
  border: 2px solid #fff;
}
ul.sb-ul li>div {
  display: inline-block;
  text-align: left;
  padding: 5px 0;
  margin-left: 10px;
  width: 160px;
  overflow: hidden;
}
div.sb-rule1-fr li>div {
  width: 150px;
}
ul.sb-ul li>div>h5 {
  font-size: 24px;
  line-height: 1.6;
}

.sectionBox5 {
  /* padding: 0; */
  position: relative;
  /* background-image: url(../img/sb5-bg3.jpg); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  height: 960px;
  width:100%;
  overflow: hidden;
}
.sectionBox5>img {
  position: absolute;
  bottom: -5%;
  right: 10%;
  z-index: 10;
  width: 1400px;
  max-width: 1400px;
}
.sb5-f {
  position: absolute;
  z-index: 11;
}
.sectionBox5>img.ad {
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}
.sb5-title {
  position: absolute;
  top:240px;
  left:240px;
  width: 40%;
}
.sb5-title h2 {
  line-height: 2;
  text-align: left;
}
.sb5-yh-title>p {
  line-height: 1.6;
  font-size: 17px;
}
.sb5-title p {
  line-height: 1.6;
  font-size: 22px;
}
.sb5-title ul {
  position: relative;
  margin-top: 200px!important;
}
.sb5-title li {
  display: inline-block;
  margin-right: 4%;
  margin-top: 30px;
  width: 48%;;
}
.sb5-title li:nth-child(2n) {
  margin-right: 0;
}
.sb5-title li>img {
  width: 115px;
}
.sb5-title li>div {
  display: inline-block;
  text-align: left;
  padding: 5px 0;
  margin-left: 10px;
}
.sb5-title li>div>h5 {
  font-size: 24px;
  line-height: 1.6;
}
.sectionBox6 {
  position: relative;
  /* background-image: url(../img/sb6-bg.jpg); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 960px;
  width:100%;
}
.sectionBox6 h4 {
  color: #fff;
}
.sectionBox6 ul {
  /* position: absolute; */
  /* bottom: 20%; */
  /* padding: 0 240px;    */
  /* width: 100%; */
  margin-top: 20%;
}
.sectionBox6 li {
  display: inline-block;
  width: 25%;
  margin-right: 50%;
  margin-top: 60px;
}
.sectionBox6 li:nth-child(2n) {
  margin-right: 0;
  text-align: right;
}
.sectionBox6>img {
  position: absolute;
  bottom: -18%;
  left: 50%;
  margin-left: -325px;
  z-index: 10;
  width: 650px;
}
.sectionBox6>img.ad {
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}
.sectionBox7 {
  position: relative;
  margin-top: -2px;
  background-image: url(../img/sb7-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 960px;
  width:100%;
}

.sb-f h2 {
  text-align: left;
}
.sb-f>p {
  line-height: 2;
  font-size: 15px;
  margin-top: 10px;
}
.sectionBox7 ul {

}
.sb7-fr {
  float: right;
  margin-top: 300px;
  width: 50%;
}
.sb-rule1-fr {
  margin-top: 240px;
  width: 50%;
}
.sectionBox7 li,.sectionBox8 li,.sb-rule1 li {
  display: inline-block;
  width: 48%;
  margin-top: 30px;
  margin-right: 4%;
}
.sectionBox7 li:nth-child(2n),.sectionBox8 li:nth-child(2n),.sb-rule1 li:nth-child(2n) {
  margin-right: 0;
}
.sectionBox8 {
  position: relative;
  /* margin-top: -2px; */
  /* background-image: url(../img/sb8-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;   */
  height: 960px;
  width:100%;
  background-color: #000;
  overflow: hidden;
  padding-top: 40px;
}
.sb8-bg {
  position: absolute;
  /* background-image: url(../img/sb8-bg.jpg); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 73% bottom;
  height: 960px;
  width:100%;
  bottom: -8%;
}
.sb8-fr {
  margin-top: 250px;
  width: 50%;
}
.sectionBox9 {
  color: #000;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #fff;
}
.sectionBox11,.sectionBox12{
background-color: #fff;
}
.sectionBox9>div>p {
  display: inline-block;
  width: 80%;
  margin-top: 50px;
  line-height: 1.8;
  font-size: 16px;
}
.sectionBox9 ul {
  margin-top: 50px;
  /* -moz-box-shadow: 0px 1px 25px #ccc;
  -webkit-box-shadow: 0px 1px 25px #ccc;
  box-shadow: 0px 1px 25px #ccc; */
  width: 85%;
  display: inline-block;
  /* -webkit-filter: blur(9px);
  filter: blur(9px); */
}
.sectionBox9 ul li{
  display: inline-block;
  width: 23.5%;
  margin-right: 2%;
  -moz-box-shadow: 0px 0px 40px #ccc;
  -webkit-box-shadow: 0px 0px 40px #ccc;
  box-shadow: 0px 0px 40px #ccc;
}
.sectionBox9 ul li>div{
  overflow: hidden;

}
.sectionBox9 ul li img {
  transition: all .7s;
  cursor: pointer;
}
.sectionBox9 ul img:hover {
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.sectionBox9 ul li:last-child {
  margin-right: 0;
}
.sectionBox9 ul li p {
  padding: 12px 0;
  font-size: 16px;
}
.sectionBox10 {
  width: 100%;
  height: auto;
  background-color: #000;
  position: relative;
  padding-bottom: 0;
}
.sb10-fr {
  position: absolute;
  left: 50%;
  z-index: 2;
}
.sb10-fr h2 {
  text-align: left;
}
.sb10-fr h4{
  color: #fff;
  text-align: left;
  font-size: 15px;
  line-height: 2;
}
.sectionBox10 .swiper-slide {
  background-color: #000;
}
.sectionBox10 .swiper-slide img {
  width: 540px;
}
.sectionBox10 .swiper-slide .teacher-js {
  display: inline-block;
  color: #fff;
  /* vertical-align: middle; */
  text-align: left;
  margin-left: 13%;
  /* background-color: #000; */
  width: 35%;
  margin-top: 15vw;
}
.sectionBox10 .swiper-container {
}
.swiper-slide .teacher-js {
  font-size: 18px;
}
.swiper-slide .teacher-js span {
  display: inline-block;
  font-size: 26px;
  border-bottom: 2px solid #fff;
  /* padding-right: 72px; */
  line-height: 2;
  margin-bottom: 5px;
  width: 80px;
}

.swiper-slide .teacher-js>div {
  margin-top: 30px;
}
.sectionBox10 .swiper-button-next {
  right: 5%;
  background-image: url('../img/sb10-arr.png');
  width: 29px;
  height: 89px;
  background-size: cover;
}
.sectionBox10 .swiper-pagination-bullets {
  left: 50%;
  bottom: 15%;
  width: auto;
}
.sectionBox10 .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background-color: #fff;
  opacity: 1;
  margin: 0 20px;
}
.sectionBox10 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fe1bb9;
}
.sectionBox11 h2 {
  color: #000;
}
.sectionBox11 .sb11-swiper {
  margin-top: 80px;
  text-align: center;
}
.sectionBox11 .swiper-button-next {
  right: 25%;
  margin-right: -25px;
}
.sectionBox11 .swiper-button-prev {
  left: 25%;
  margin-left: -25px;
}
.sectionBox11 .swiper-slide {
  -webkit-transform: translateX(-webkit-calc(-50% - 25px));
  -moz-transform: translateX(-moz-calc(-50% - 25px));
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-o-calc(-50% - 25px));
  transform: translateX(calc(-50% - 25px));
  /* margin-right: 50px; */
}
.sectionBox12 {
  padding-bottom: 100px;
}
.sectionBox12 h2{
  color: #000;
}
.sectionBox12 ul {
  margin-top: 60px;
}
.sectionBox12 li {
  display: inline-block;
  width: 19.2%;
  margin-right: 1%;
  margin-top: 10px;
}
.sectionBox12 li:nth-child(5n) {
  margin-right: 0
}
.sectionBox13 {
  position: relative;
  background-image: url(../img/sb13-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 580px;
  width:100%;
  padding: 120px 0;
}
.sectionBox13 h4 {
  color: #fff;
}
.sb13-flex {
  text-align: center;
}
.sb13-flex {
  margin-top: 50px;
  padding: 25px 0;
  background-color: #fff;
}
.sb13-flex>div {
  margin-bottom: 20px;
}
.sb13-flex h5 {
  font-size: 24px;
  display: inline-block;
  color: #000;
  margin-right: 20px;
}
.sb13-flex p {
  font-size: 16px;
  display: inline-block;
  color: #000;
}
.sb13-flex input {
  width: 18%;
  margin-right: 3%;
  border: none;
  background-color: #e6e6e6;
  color: #999999;
  font-size: 20px;
  line-height: 20px;
  padding: 10px 20px;
}
.sb13-flex input[type="submit"] {
  background-color: #0273d0;
  color: #fff;
  border:1px solid #0273d0;
  cursor: pointer;
  margin-right: 0;
}
.footer {
  /* height: 400px; */
  background-color: #000;
}
.ft-flex {
  width: 1200px;
  justify-content: space-between;
  padding: 40px 0;
  display: -webkit-flex;  /* 新版本语法: Chrome 21+ */
  display: -moz-box;      /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;   /* 混合版本语法: IE 10 */
  display: flex;

}
.ft-l {
  text-align: right;
}
.ft-flex h2 {
  font-size: 26px;
}
.ft-flex h4 {
  font-size: 21px;
}
.ft-flex .ft-l img {
  margin-bottom: 50px;
  width: 180px;
}
.ft-flex .ft-c img {
  width: 140px;
}
.ft-flex .ft-c p {
  font-size: 18px;
  text-align: center;
  line-height: 2;
}
.ft-flex .ft-r h3 {
  font-size: 26px;
}
.ft-flex .ft-r h3:last-of-type {
  margin-bottom: 20px;
}
.ft-flex .ft-r p {
  font-size: 14px;
  line-height: 1.6;
}
.ft-flex .ft-r i {
  margin-right: 10px;
}
.copyright {
  text-align: center;
  border-top: 1px solid #999;
  padding: 20px 0;
}
.works-sb1{
  color: #000;
  /* padding-bottom: 0!important; */
  padding-top: 40px;
}
.works-flex1 {
  padding: 0 100px;
  font-size: 0;
  margin-top: 40px;
}
.works-flex1 li {
  display: inline-block;
  width: 32%;
  margin-right: 2%;
  text-align: center;
}
.works-flex1 li>a {
  display: inline-block;
  transition: all .3s;
}
.works-flex1 li>a p{
  transition: all .3s;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
  -o-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.works-flex1 li>a.select {
  -webkit-transform: scale(1)!important;
  -moz-transform: scale(1)!important;
  -ms-transform: scale(1)!important;
  -o-transform: scale(1)!important;
  transform: scale(1)!important;
}
.works-flex1 li>a.select>p {
  color: #ff21b6!important;
}
.works-flex1 li>a:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.works-flex1 li>a:hover>p{
  color: #ff21b6!important;
}
.works-flex1 li:nth-child(3n) {
  margin-right: 0;
}
.works-flex1 li:nth-child(n+4) {
  margin-top: 4%;
}
.works-flex1 li a>p:first-child {
  color: #2a1981;
  font-size: 22px;
  font-weight: bold;
}
.works-flex1 li a>p:last-child {
  color: #732eba;
  font-size: 15px;
  line-height: 2;
  font-weight: bold;
}
.swiperBox li {
  transition: all .3s;
  display: none;
}
.wsb1-swiper1 {
  margin-top: 50px;
}
.wsb1-swiper1 .swiper-slide {

}
.wsb1-swiper1 .swiper-button-prev.swiper-button-white{
  background-image: url(../img/wsb-l.png);
}
.wsb1-swiper1 .swiper-button-next.swiper-button-white {
  background-image: url(../img/wsb-r.png);

}
.wsb1-swiper1 .swiper-button-next,.wsb1-swiper1 .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 58px;
  height: 96px;
  margin-top: -48px;
  background-size: 58px 96px;
}
.wsb1-swiper2 {
  margin-top: 10px;
}
.works-sb2 {
  color: #000;
  background-color: #f5f5f5;
  overflow: hidden;
}
.wsb2-swiper1 {
  margin-top: 60px;
  /* position: relative; */
}
.works-sb2>p {
  text-align: center;
  line-height: 1.6;
  font-size: 16px;
  margin-top: 10px;
}
.wsb2-content {
  display: -webkit-flex;  /* 新版本语法: Chrome 21+ */
  display: -moz-box;      /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;   /* 混合版本语法: IE 10 */
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35%;
  height: 50%;
  padding: 40px;
  background-color: #fff;
  color: #000;
}
.wsb2-content h3 {
  /* font-weight: bold; */
  font-size: 30px;
  /* line-height: 3; */
}
.wsb2-content div {
  font-size: 14px;
  /* margin-bottom: 40px; */
  word-wrap:break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  height: 72px;
  line-height: 18px;

}
.wsb2-content a {
  position: relative;
  display: block;
  padding: 5px 0;
  border-radius: 30px;
  background-clip: padding-box;
  text-align: center;
  color: #000;
  z-index: 2;
  font-size: 18px;
  background-image: linear-gradient(to right, #ff21b6, #9c00cc);
  background-image: -moz-linear-gradient(to right, #ff21b6, #9c00cc);
  background-image: -ms-linear-gradient(to right, #ff21b6, #9c00cc);
  background-image: -o-linear-gradient(to right, #ff21b6, #9c00cc);
  background-image: -webkit-linear-gradient(to right, #ff21b6, #9c00cc);
  color: #fff;
  background-clip: border-box;
  border: none;
  width: 160px;
}
/* .wsb2-content a:after{
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  background-image: linear-gradient(to right, #ff21b6, #9c00cc);
  background-image: -moz-linear-gradient(to right, #ff21b6, #9c00cc);
  background-image: -ms-linear-gradient(to right, #ff21b6, #9c00cc);
  background-image: -o-linear-gradient(to right, #ff21b6, #9c00cc);
  background-image: -webkit-linear-gradient(to right, #ff21b6, #9c00cc);
  content: '';
  z-index: -1;
  border-radius: 30px;
} */
.works-sb2 .swiper-button-prev {
  background-image: url(../img/wsb2-l.png);
  width: 22px;
  height: 54px;
  margin-top: -27px;
  -moz-background-size: 22px 54px;
  -webkit-background-size: 22px 54px;
  background-size: 22px 54px;
  left: -35px;
}
.works-sb2 .swiper-button-next {
  background-image: url(../img/wsb2-r.png);
  width: 22px;
  height: 54px;
  margin-top: -27px;
  -moz-background-size: 22px 54px;
  -webkit-background-size: 22px 54px;
  background-size: 22px 54px;
  right: -35px;
}
.works-sb2 .swiper-container {
  overflow: visible;
}
.sectionBox3-yh>h2 {
  position: absolute;
  top: 140px;
  width: 100%;
}
.sectionBox3-yh>h4 {
  position: absolute;
  color: #fff;
  width: 100%;
  top: 60px;
}
.sectionBox3>ul.pagination-yh {
  width: 85%;
  text-align: right;
}
.sb3-yh-fr {
  position: absolute;
  top: 20%;
  text-align: right;
  right: 50%;
  margin-right: -700px;
}
.sb3-yh-fr li>div{
  width: 160px;
}
.sb3-yh-fr li {
  margin-top: 5%;
}
.sb3-yh-fr li:nth-child(1) {
  margin-right: 24%;
  margin-top: 7%;
}
.sb3-yh-fr li:nth-child(2) {
  margin-right: 16%;
}
.sb3-yh-fr li:nth-child(3) {
  margin-right: 8%;
}
.sectionBox8-yh {
  background-color: #fff;
  color: #000;
  padding-top: 60px;
  overflow: hidden;
  position: relative;
  /* margin-top: -2px; */
  height: 960px;
  width: 100%;
}
.sectionBox8-yh .sb8-bg {
  background-position: 70% top;
}
.sectionBox3-1-list{
  font-size: 0;
  margin-top: 5%;
  width: 50%;
}
.sectionBox3-1-list li{
  display: inline-block;
  color: #121212;
  text-align: center;
  margin-left: 100px;
  margin-top: 5%;
}
.sectionBox3-1-list li:nth-child(1){
  margin-left: 150px;
}
.sectionBox3-1-list li:nth-child(3){
  margin-left: 0;
}
.sectionBox3-1-list li img{
  width: 200px;
  margin-bottom: 2%;
}
.sectionBox3-1-list li h5{
  font-size: 24px;
  line-height: 1.6;
}
.sectionBox3-1-list li p{
  font-size: 14px;
}
.sb8-yh-fr {
  margin-top: 100px;
  width: 50%;
}
.sectionBox4-yh>ul {
  top: auto;
  bottom: 150px;
}
.sectionBox6-yh {
  background-color: #000;
  background: -webkit-linear-gradient(#000, #282828); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(#000, #282828); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(#000, #282828); /* Firefox 3.6 - 15 */
  background: linear-gradient(#000, #282828); /* 标准的语法 */
  overflow: hidden;
}
.sb6-yh-bg {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  height: 960px;
  width: 100%;
  top: 0;
}
.sectionBox6-yh>img {
  position: absolute;
  bottom: -4%!important;
  left: 50%;
  margin-left: -400px;
  z-index: 10;
  width: 800px;
}
.sb5-yh-title {
  position: absolute;
  top: 10vw;
  right: 10vw;
  /* width: 55%; */
  text-align: right;
}
.sb5-yh-title h2 {
  text-align: right;
  line-height: 2;
}
.sb5-yh-title h2:first-of-type {
  line-height: 1;
}
.sb5-yh-title ul {
  margin-top: 300px;
  /* text-align: right */
}
.sb5-yh-title li {
  /* width: 30%; */
  display: inline-block;
  margin-left: 40px;
}
.sb5-copy {
  background-position: 80% right;
}
.sb5-copy .sb5-title {
  width: 50%;
}
.sb3-yh-fr ul li>img {
  width: 95px;
}
.sectionBox4-yh>ul li {
  margin-right: 0;
}
.sb5-copy ul>li>div {
  width: 175px;
}
.sectionBox6-yh li {
  margin-top: 40px;
}
.sectionBox4-yh>h4{
  color: #fff;
}
.sb7-fr>ul,.sb8-fr>ul,.sb-rule1-fr>ul {
  margin-top: 30px;
}
.sectionBox4-yh {
  position: relative;
  /* background-image: url(../img/sb4-bg.jpg); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 960px;
  width: 100%;
  margin-top: -2px;
}
.sectionBox9>div>h2 {
  display: inline-block;
}
.wsb2-swiper1 {
  padding: 0 35px;
}
.sb3-yh-fr li>div>p {
  font-size: 18px;
}

.left-gotop {
  position: fixed;
  bottom: 140px;
  right: -500px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all .4s;
  z-index: 10000;
}
.left-gotop.show {
  right: 40px;
}
.left-gotop>img {
  width: 100%;
}

.left-qq{
  /* position: relative; */
  bottom: 200px;
  padding-left: 100px;
  width: 150px;
}
.left-qq-content{
  display: none;
  position: absolute;
  top: 0;
  right: 60px;

  background-color: rgba(0,0,0,.8);
  color: #333;
  border-radius: 5px;
  padding: 15px;
}
.left-qq-content p+p{
margin-top: 5px;
}
.left-qq-content i{
  margin-right: 10px;
}
.left-qq-content a{
  /* color: #333; */
}
.left-qq-content a:hover{
  color: #ff21b6!important;
}
.left-qq:hover .left-qq-content{
  
  display: block;
}
.content {
  text-align: center;
}
.content>h2 {
  color: #ff21b6;
}
.content>p {
  color: #000;
  font-size: 16px;
  line-height: 2;
}
.contact-map {
  margin-top: 60px;
  margin-bottom: 30px;
}
.contact-map iframe {
  width: 100% !important;
  height: 500px !important;
}
.contact-information {
  padding: 30px 0;
  background-color: #f7f7f7;
}
.contact-information p {
  display: block;
  /* width: 60%; */
  text-align: left;
  padding-left: 35%;
  color: #000;
  font-size: 18px;
  line-height: 2;
}
.contact-information p>i {
  font-size: 20px;
  line-height: 2;
  margin-right: 20px;
  color: #ff21b6;
}
.contact-information p>a {
  color: #000;
}
.bottom-box {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45px;
  display: none;
  background-color: rgba(0,0,0,.8);
  line-height: 45px;
  text-align: center;
  z-index: 9999;
}
.bottom-box li {
  display: inline-block;
  padding: 0 25px;
}
.bottom-box li a {
  font-size: 26px;
  color: #fff;
}
#banner-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 100%;
  background: #ff21b6;
  opacity: 1;
  position: relative;
}
#banner-swiper .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 15px;
}
#banner-swiper .swiper-pagination-bullet-active {
  background: #ff21b6;
}
#banner-swiper .swiper-pagination-bullet-active::after{
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  top: -5px;
  left: -5px;
  border: 1px solid #ff21b6;
  background: transparent;
  border-radius: 50%;
}
.option-menu {
  padding: 30px 0;
}
.option-menu ul {
  font-size: 0;
}
.option-menu li {
  display: inline-block;
  width: 33.3%;
  color: #000;
  text-align: center;
  padding: 20px 0;
  cursor: pointer;
  position: relative;
}
.option-menu li:hover h3{
  color: #ff21b6;
}
.option-menu li h3 {
  font-size: 24px;
  transition: all .3s;
}
.option-menu li p {
  font-size: 16px;
  line-height: 2;
}
.option-menu li:nth-child(1)::after {
  content: '';
  position: absolute;
  background: linear-gradient(to right,#fff,#ccc,#fff);
  width: 260%;
  height: 2px;
  bottom: 0;
  left: 20%;
}
.option-menu li:nth-child(2)::after {
  content: '';
  position: absolute;
  background: linear-gradient(#fff,#ccc,#fff);
  width: 2px;
  height: 160%;
  top: 20%;
  left: 0;
}
.option-menu li:nth-child(3)::after {
  content: '';
  position: absolute;
  background: linear-gradient(#fff,#ccc,#fff);
  width: 2px;
  height: 160%;
  top: 20%;
  left: 0;
}
.option {
  padding: 60px 0 50px;
}
.option1-child.game {
  background-image: url(../img/option-game.jpg);
  background-position: 60%; 
  height: 650px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.option1-child.picture {
  background-image: url(../img/option-picture.jpg);
  background-position: 60%;
  height: 650px;
  width: 100%;
}
.option1-child.animation {
  background-image: url(../img/option-animation.jpg);
  background-position: 60%;
  height: 650px;
  width: 100%;
}
.option1-child .dec {
  padding-top: 160px;
  width: 50%;
}
.option1-child.picture .dec {
  float: right;
  color: #000;
}
.option1-child .dec h2 {
  font-size: 44px;
  line-height: 1;
}
.option1-child .dec h4 {
  font-size: 20px;
  line-height: 3;
}
.option1-child .dec p {
  font-size: 16px;
  line-height: 2;
  border-top: 2px solid #666;
  padding-top: 20px;
}
.option a.more {
  display: inline-block;
  /*background-image: linear-gradient(to right, #ff21b6, #9c00cc);*/
  width: 93px;
  height: 35px;
  line-height: 35px;
  font-size: 15px;
  color: #ff21b6;
  text-align: center;
  margin-top: 40px;
}
.option a.more:hover {
	text-decoration: underline;
}
.option1 {
  padding: 0;
}
.option2 {
  background-color: #131313;
}
.option>.flex>h2 {
  font-size: 44px;
  text-align: center;
}
.option>.flex>p {
  font-size: 15px;
  text-align: center;
  margin: 30px 0;
  line-height: 1.8;
}
.option>.flex>h4 {
  font-size: 18px;
  text-align: center;
  line-height: 1.8;
}
.option2-bottom {
  margin-top: 30px;
  background: url(../img/op2-bottom.jpg) no-repeat center;
  height: 200px;
  width: 100%;
  line-height: 200px;
}
.option2-bottom ul {
  font-size: 0;
}
.option2-bottom li{
  width: 25%;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  text-align: center;
}
.option2-bottom li::before {
  content: '';
  position: absolute;
  top: 45%;
  right: -30px;
  vertical-align: middle;
  width: 60px;
  height: 2px;
  background-color: #343434;
}
.option2-bottom li:nth-child(4)::before {
  display: none;
}
.option2-bottom li h3{
  vertical-align: middle;
  line-height: 2;
  font-size: 40px;
}
.option2-bottom li p {
  line-height: 14px;
  font-size: 14px;
  color: #666;
}
.option2-bottom li h3>i {
  position: absolute;
  font-size: 12px;
  line-height: 12px;
  margin-top: 15px;
}
.option3 {
  text-align: center;
  color: #000;
  padding-bottom: 0px;
}
.option3 .flex>h2{
  /* background: linear-gradient(to right, #ff21b6, #9c00cc); */
  background: linear-gradient(to right, #2d6bd5, #fe1bb9);
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
  color: #fe1bb9\0;
  background: transparent\0;
}
.option3 .flex {
  position: relative;
}
.option3 .swiper-pagination {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}
.option3 .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 0 20px;
}
.option3 .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fe1bb9;
}
.option4 {
  text-align: center;
  color: #000;
}
.option4 .op4-name {
  width: 100%;
  padding: 15px 0;
  text-align: center;
  background-color: #f2f2f2;
}
.op4-name h5 {
  font-size:20px;
}
.op4-name p {
  font-size: 14px;
  color: #999;
}
.option5 {
  color: #000;
  text-align: center;
}
.option5 .class-menu {
  padding: 60px 0;
}
.option5 .class-menu li {
  /* position: relative; */
  display: inline-block;
  /* border: 2px solid transparent; */
  background-image: url(../img/op5-bg.png);
  /* background-size: 182px 44px; */
  background-size: cover;
  width: 190px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  color: #000;
  z-index: 2;
  font-size: 20px;
  transition: all .3s;
  margin: 0 30px;
  cursor: pointer;
  border-radius: 6px;
}
.option5 .class-menu li.select {
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(to right, #ff21b6, #9c00cc);
}
.option5 .class-menu li:hover {
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(to right, #ff21b6, #9c00cc);
}
/* .option5 .class-menu li::after{
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  background: linear-gradient(to right, #ff21b6, #9c00cc);
  content: '';
  z-index: -1;
  border-radius: 8px;
} */
.class-works li {
  display: none;
}
.option5 .class-menu li.select {
  color: #fff;
  background: linear-gradient(to right, #ff21b6, #9c00cc);
}
.option5 .swiper-slide {
  -webkit-transform: translateX(-webkit-calc(-50% - 25px));
  -moz-transform: translateX(-moz-calc(-50% - 25px));
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-o-calc(-50% - 25px));
  transform: translateX(calc(-50% - 25px));
}
.option6 {
  background-color: #000;
  color: #fff;
  text-align: center;
}
.option6 ul {
  font-size: 0;
  text-align: left
}
.option6 li {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  padding: 30px 100px;
  border-top: 1px solid #fff;
}
.option6 li:last-child {
  border-bottom: 1px solid #fff;
}
.option6 li:nth-child(n+2) {
  border-bottom: 1px solid #fff;
}
.option6 li:nth-child(2n+1) {
  border-right: 1px solid #fff;
}
.option6 li:nth-child(4) {
  border-top: none;
}
.option6 li>a>h5 {
  font-size: 20px;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 32px;
  height: 32px;
}
.option6 li>a>p {
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 36px;
  line-height: 18px;
  margin: 15px 0;
  color: #ccc;
}
.option6 li>a>div {
  display: flex;
  justify-content: space-between;
}
.option6 li>a>div a{
  color: #ff21b6;
}
.about-sb1 {
  color: #000;
}
.about-sb1>h2,.about-sb2>h2,.about-sb3>h2 {
  color: #ff21b6;
}
.about-sb1 .flex {
  margin-top: 20px;
  line-height: 1.8;
  font-size: 0;
}
.about-sb1 .flex p {
  font-size: 15px;

}
.about-sb1 img:nth-of-type(-n+2){
  display: inline-block;
  width: 49.5%;
  margin-bottom: 1%;
}
.about-sb1 img:nth-of-type(1) {
  margin-right: 1%;
}
.about-sb2 {
  background-color: #121212;
  color: #fff;
}
.about-sb2>h4 {
  color: #fff;
}
.about-sb2 li {
  margin-top: 40px;
  font-size: 0;
}
.about-sb2 li>div {
  display: inline-block;
  width: 50%;
  font-size: 16px;
  margin-left: 10%;
  padding: 5% 0;
}
.about-sb2 li>div>h3 {
  font-size: 22px;
  position: relative;
}
.about-sb2 li>div>h3::before {
  content: '';
  background-image: url(../img/free.png);
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  left: -40px;
}
.about-sb2 li:nth-child(2)>div>h3::before {
  background-position: -30px 0;
}
.about-sb2 li:nth-child(3)>div>h3::before {
  background-position: -60px 0;
}
.about-sb2 li:nth-child(4)>div>h3::before {
  background-position: -90px 0;
}
.about-sb2 li:nth-child(5)>div>h3::before {
  background-position: -120px 0;
}
.about-sb2 li>div>div {
  margin-top: 5%;
  color: #9f9f9f;
}
.about-sb2 li>img {
  display: inline-block;
  width: 40%;
}
.about-sb2 li:nth-child(2n) {
  overflow: hidden;
}
.about-sb2 li:nth-child(2n) img {
  float: right;
}
.about-sb2 li:nth-child(2n)>div {
  margin-left: auto;
  margin-right: 10%;
  padding-left: 40px;
}
.about-sb3 {
  color: #000;
  text-align: center;
}
.about-sb3 .flex>p {
  margin: 30px 0;
  font-size: 16px;
  line-height: 1.6;
}
.about-sb3-swiper .swiper-slide>p {
  line-height: 2;
  font-size: 16px;
  text-align: center;
  position: absolute;
  width: 100%;
}
.about-sb3-swiper .swiper-slide {
  margin-bottom: 32px;
}
.about-sb3-swiper {
  margin-bottom: 40px;
}
.about-sb3-btn {
  position: relative;
  /* border: 2px solid transparent; */
  margin: 30px auto 0;
  display: inline;
  padding: 5px 15px;
  border-radius: 5px;
  background-color: #fff;
  background-clip: padding-box;
  text-align: center;
  color: #000;
  z-index: 2;
  font-size: 18px;
  transition: all .3s;
  line-height: 30px;
}
.about-sb3-btn::after{
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  background: linear-gradient(to right, #ff21b6, #9c00cc);
  content: '';
  z-index: -1;
  border-radius: 8px;
}
.about-sb3-btn span{
  display: inline-block;
  line-height: 30px;
  font-size: 20px;
  color: #333;
}
.about-sb3-btn span:nth-child(2) {
  position: absolute;
  width: 2px;
  height: 22px;
  left: 50%;
  top: 6px;
  background-color: #999;
}
.about-sb3-btn span.btn-prev {
  margin-right: 25px;

}
.about-sb3-btn span.btn-next {
  margin-left: 25px;
}
.about-sb3-btn span.btn-prev,.about-sb3-btn span.btn-next {
  font-size: 28px;
  font-family: simsun;
  font-weight: bold;
  cursor: pointer;
}
.about-sb4 {
  background-image: url(../img/ab3-bg.jpg);
  background-position: 45%;
  height: 700px;
  background-color: #1f1f1f;
}
.about-sb4>.flex>div {
  padding-left: 50%;
  margin-top: 5%;
}
.about-sb4>.flex>div h3 {
  font-size: 28px;
  line-height: 1.8;
}
.about-sb4>.flex>div h5 {
  font-size: 17px;
  color: #999;
  line-height: 2;
  margin: 20px 0 50px;
}
.about-sb4>.flex>div a {
  position: relative;
  /* border: 2px solid transparent; */
  padding: 5px 30px;
  border-radius: 30px;
  background-color: #fff;
  background-clip: padding-box;
  text-align: center;
  color: #000;
  z-index: 2;
  font-size: 16px;
  transition: all .3s;
}
.about-sb4>.flex>div a:after {
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  background: linear-gradient(to right, #ff21b6, #9c00cc);
  content: '';
  z-index: -1;
  border-radius: 30px;
}
.about-sb4>.flex>div a:hover {
  background-image: linear-gradient(to right, #ff21b6, #9c00cc);
  color: #fff;
  background-clip: border-box;
  border: none;
}
.news-list {
  color: #000;
}
.news-list>h2 {
  color: #ff21b6;
}
.news-list ul {
  margin-top: 40px;
}
.news-list li {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px dashed #666;
}
.news-list li>a{
  display: block;
}
.news-list li>a>div:nth-child(1) {
  
  width: auto;
  display: inline-block;
}
.news-list li>a>div:nth-child(2) {
  display: inline-block;
  padding: 25px 40px;
  width: 79%;
}
.news-list li>a>div:nth-child(2) h3 {
  font-size: 24px;
  color:#000;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  height: 34px;
  line-height: 34px;
}
.news-list li>a>div:nth-child(2) p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 50px;
  line-height: 25px;
  margin: 20px 0;
  font-size: 15px;
  color: #666;
}
.news-list li>a>div:nth-child(2) span {
  display: none
}
.news-list li>a>div:nth-child(3) {
  text-align: center;
}
.news-list li>a>div:nth-child(3) div {
  background-image: url(../img/newlist-date.png);
  width: 112px;
  height: 130px;
}
.news-list li>a>div:nth-child(3) div p {
  font-size: 60px;
  line-height: 1.7;
  color: #c0c0c0;
}
.news-list li>a>div:nth-child(3) div span {
  font-size: 16px;
  color: #cecece;
}

.news-list li>a>div a {
  color: #ff21b6;
  margin-top: 10px;
  display: inline-block;
}
.news-list li>a>div a:hover {
  text-decoration: underline;
}
.news-list li>a>div:nth-child(2) a {
  float: right;
  display: none;
  margin-top: 0;
}
.news-list li:hover a>div:nth-child(2) h3{
  color:#ff21b6;
}

.pages{
  text-align: center;
	margin-bottom: 2%;
}
.pages a, .pages strong {
	display: inline-block;
	line-height: 28px;
	padding: 0 10px;
	border: 1px solid #d9d9d9;
	background-color: #ffffff;
	text-decoration: none;
	color: #666;
	font-family: Simsun;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	margin-right: 3px;
}
.pages .current {
	display: inline-block;
	line-height: 28px;
	padding: 0 10px;
	border: 1px solid #d9d9d9;
	background-color: #ffffff;
	text-decoration: none;
	font-family: Simsun;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	margin-right: 3px;
	color: #fff;
	background-color: #ff21b6;
	border-color: #fff;
}
.pages a:hover {
	color: #fff;
	background-color: #ff21b6;
	border-color: #fff;
	text-decoration: none;
}
.pages strong {
	color: #fff;
	background-color: #ff21b6;
	border-color: #fff;
}
.pages span {
	padding: 0 10px;
	line-height: 23px;
}
.pages .all,.pages .pageindex {
  display: none;
}
.news-main {
  padding: 40px 0;
  color: #000;
}
.nc-left,.nc-right {
  background-color: #f7f7f7;
  display: inline-block;
}
.news-content {
  font-size: 0;
}
.nc-left {
  width: 70%;
  padding: 40px 60px;
  font-size: 16px;
  text-align: center
}
.nc-left h4 {
  font-size: 26px;
  line-height: 2;
}
.nc-left h5 {
  font-size: 16px;
  color: #999;
}
.nc-right {
  margin-left: 3%;
  width: 27%;
  padding: 50px 30px;
  font-size: 16px;
}
.nc-left-content {
  text-align: left;
  margin: 30px 0;
  padding-bottom: 30px;
  border-bottom: 1px dashed #999;
}
.nc-left-content p{
	background-color: transparent!important;
}
.nc-left-content img{
  max-width: 100%;
}
.PrevNext .prev::before{
  content:'上一篇：';
}
.PrevNext .next::before{
  content:'下一篇：';
}
.PrevNext {
  text-align: left;
  font-size: 14px;
}
.PrevNext a {
  color: #000;
}
.PrevNext a:hover {
  color: #ff21b6;
  text-decoration: underline;
}
.nc-right>h3 {
  text-align: center;
  border-bottom: 1px solid #ff21b6;
  position: relative;
  margin: 0 30% 40px;
  font-size: 22px;
  line-height: 2;
}
.nc-right>h3::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #ff21b6;
  position: absolute;
  bottom: -1px;
  left: 50%;
  margin-left: -30px;
}
.nc-right li {
  border-bottom: 1px dashed #999;
  padding: 20px 0;
  font-size: 0;
}
.nc-right li>div {
  display: inline-block;
}
.nc-right li>div:first-child {
  width: 110px;
}
.nc-right li>div:nth-child(2) {
  padding-left: 10px;
  width: calc(100% - 110px);
  font-size: 15px;
}
.nc-right li>div:nth-child(2) h5 {
  padding: 6px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 46px;
  line-height: 18px;
}
.nc-right li>div:nth-child(2) a {
  color: #000;
  float: right;
  font-size: 13px;
}
.nc-right li>div:nth-child(2) a:hover {
  color: #ff21b6;
  text-decoration: underline;
}
.option3 .hj-img {
  font-size: 0;
  margin-top: 20px;
}
.option3 .hj-img li {
  display: inline-block;
  margin-right: 1%;
  width: 32.66%;
}
.option3 .hj-img li:nth-child(3n) {
  margin-right: 0;
}
.option3 .hj-img li:nth-child(n+4) {
  margin-top: 1%;
}
.option3 .hj-img li a {
  display: inline-block;
  width: 100%;
}
.sbsb-ul {
  display: none;
}
.sectionBox-sb {
  padding:0!important;
  position: relative;
  display: none;
}
.sbsb-sb-title {
  display: none;
}

.sbsb-top {
display: none;
}
.ci1 {
  display: none;
}
.nobanner {
  padding-top: 130px;
}
.page-none {
  margin-top: 90px;
}
.page-none h1{
  height: 550px;
  font-size: 36px;
  color: #ff21b6;
  text-align: center;
  line-height: 550px;
}





























































@media only screen and (max-width: 1400px) {
  .flex {
    width: 1200px;
  }
  .sectionBox1 ul li {
    width: 45%;
  }
  .sectionBox1 ul li:nth-child(odd) {
    margin-right: 10%;
  }
  .sectionBox6 li {
    width: 30%;
    margin-right: 40%;
  }
  .sb5-title {
    top: 200px;
    left: 200px;
    width: 50%;
  }
  .sb3-yh-fr {
    margin-right: -600px;
  }
  .sb3-yh-fr li {
    margin-top: 3%;
  }
  .sb3-yh-fr ul li>img {
    width: 70px;
  }
  .sectionBox3-1-list li img {
    width: 160px;
  }
  .sb5-yh-title ul {
    margin-top: 360px;
  }
  .sb5-copy .sb5-title {
    width: 60%;
  }
  .sectionBox5>img {
    right: 5%;
    width: 1200px;
  }
  .news-list li>a>div:nth-child(2) {
    width: 75%;
  }
}
@media only screen and (max-width: 1200px) {
  .flex {
    width: 980px;
  }
  .head-box {
    height: 80px;
    line-height: 80px;
  }
  .head-box .logo {
    width: 190px;
  }
  .menu .nav>li {
    padding: 0 18px;
  }
  .banner {
    padding-top: 80px;
  }
  .nav-child {
    top: 80px;
  }
  .b-title h1 {
    font-size: 36px;
  }
  .b-title h3 {
    font-size: 22px;
  }
  .b-title p {
    padding-bottom: 40px;
  }
  .b-title a {
    font-size: 16px;
    padding: 5px 24px;
  }
  ul.sb-ul li>img {
    width: 100px;
  }
  .sectionBox1 ul {
    padding: 40px 0;
  }
  .sectionBox1 ul li h3 {
    font-size: 28px;
  }
  .sectionBox1 ul li h3 i {
    font-size: 28px;
  }
  .sectionBox h2 {
    font-size: 36px;
  }
  .sectionBox>h4 {
    font-size: 20px;
  }
  .sectionBox2 ul li h5 {
    font-size: 20px;
  }
  .sectionBox2 ul li p {
    font-size: 16px;
  }
  .sectionBox2 ul li>img {
    width: 64px;
  }
  .sb-flex {
    margin-top: 130px;
  }
  .sectionBox2>div>img {
    width: 480px;
    margin-left: -240px;
  }
  .sb5-title {
    top: 150px;
    left: 130px;
    width: 60%;
  }
  /* .sectionBox6 li {
      width: 26%;
      margin-right: 48%;
  } */
  .sectionBox6>img {
    margin-left: -300px;
    width: 600px;
    bottom: -24%;
  }
  .sb7-fr,.sb-rule1-fr{
    margin-top: 230px;
    width: 60%;
  }
  .sb8-fr {
    margin-top: 210px;
    width: 61%;
  }
  .sectionBox10 .swiper-slide img {
    width: 400px;
  }
  .sectionBox10 .swiper-slide .teacher-js {
    margin-left: 8%;
  }
  .swiper-slide .teacher-js>div {
    font-size: 16px;
  }
  .sb13-flex input {
    width: 25%;
  }
  .sectionBox4,.sectionBox5,.sectionBox6,.sectionBox7,.sb8-bg,.sectionBox8,.sectionBox8-yh {
    height:840px;
  }
  ul.sb-ul li>img {
    width: 100px;
  }
  ul.sb-ul li>div>h5 {
    font-size: 20px;
  }
  ul.sb-ul li>div>p {
    font-size: 12px;
  }
  .wsb2-content h3 {
    font-size: 24px;
  }
  .wsb2-content div {
    font-size: 12px;
    /* margin-bottom: 20px; */
  }
  .wsb2-content a {
    padding: 3px 0;
    border-radius: 20px;
    font-size: 16px;
    width: 100px
  }
  .wsb2-content {
    padding-bottom: 0;
  }
  .sb3-yh-fr {
    margin-right: -490px;
  }
  .sb3-yh-fr ul li>img {
    width: 7vw;
  }
  .sb3-yh-fr li {
    margin-top: 1%;
  }
  .sb3-yh-fr li:nth-child(1) {
    margin-top: 9%;
  }
  .sectionBox3-1-list li {
    margin-left: 70px;
  }
  .sectionBox3-1-list li img {
    width: 130px;
  }
  .sectionBox3-1-list li h5 {
    font-size: 20px;
  }
  .sb5-copy .sb5-title{
    width: 65%;
  }
  .sectionBox4-yh ul li {
    /* margin-right: 2%; */
  }
  .sectionBox4-yh ul>li>div {
    width: 125px;
  }
  .sb5-yh-title ul li>div {
    width: 140px;
  }
  .sectionBox6-yh>img {
    margin-left: -330px;
    width: 660px;
  }
  .sectionBox10 .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 1vw;
  }
  .sectionBox3-yh>h4 {
    top: 75px;
  }
  .sectionBox3-yh>h2 {
    top: 25px;
  }
  .sectionBox3-yh>ul {
    bottom: 50px;
  }
  .works-sb2>p {
    text-align: left;
    width: 80%;
    margin: 0 auto;
    word-wrap: break-word;
  }
  .option2-bottom {
    height: 160px;
    line-height: 160px;
  }
  .option>.flex>h2,.option1-child .dec h2 {
    font-size: 36px;
  }
  .option1-child .dec h4 {
    font-size: 16px;
  }
  .option>.flex>h4 {
    font-size: 16px;
  }
  .option>.flex>p {
    margin: 20px 0;
  }
  .about-sb4>.flex>div h3 {
    font-size: 26px;
  }
  .nc-left h4 {
    font-size: 22px;
  }
  .nc-left h5 {
    font-size: 14px;
    color: #999;
  }
  .nc-left-content {
    font-size: 15px;
  }
  .nc-right>h3 {
    text-align: center;
    border-bottom: 1px solid #ff21b6;
    position: relative;
    margin: 0 25% 20px;
    font-size: 18px;
    line-height: 2;
  }
  .nc-right li>div:first-child {
    width: 90px;
  }
  .nc-right li>div:nth-child(2) {
    width: calc(100% - 90px);
    font-size: 13px;
  }
  .nc-right li>div:nth-child(2) h5 {
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 36px;
    line-height: 18px;
  }
  .nc-right li>div:nth-child(2) a {
    font-size: 12px;
  }
  .option6 li {
    padding: 30px 60px;
  }
  .sectionBox5>img {
    right: -5%;
    /* width: 980px; */
  }
  .news-list li>a>div:nth-child(2) {
    width: 68%;
  }
  .nobanner {
    padding-top: 120px;
  }
  
}
@media only screen and (max-width: 980px) {
  .flex {
    width: 720px;
  }
  .banner .swiper-slide img {
    width: 140%;
    margin-left: -20%;
    max-width: 140%;
  }
  .head-box {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
  }
  .nav {
    /* display: none; */
    position: fixed;
    width: 200px;
    left: -200px;
    top: 80px;
    transition: all .6s ease-out;
    z-index: 9998;
    background: rgba(0,0,0,.7);
    height: 100%;
    overflow-x: hidden;
    padding-top: 20px;

  }
  .menu .nav>li {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 60px;
  }
  .miniNav {
    display:block!important;
  }
  
  .menu li.select a::after {
    bottom: 10px;
  }
  .nav-child {
    position: static;
  }
  .nav-child>li {
    line-height: 30px;
    font-size: 12px;
    background-color: transparent;
  }
  .nav-child>li a {
    color: #999;
  }
  .sectionBox1 ul li h3 {
    font-size:24px;
  }
  .sectionBox1 ul li:nth-child(odd) {
    margin-right: 0;
  }
  .sectionBox1 ul li h3 {
    padding-left: 0;
    text-align: center;
  }
  .sectionBox1 ul li p {
    width: 90%;
  }
  .sb-flex {
    margin-top: 80px;
  }
  .sectionBox2 ul li {
    margin-bottom: 34px;
  }
  .sectionBox2 ul li>img {
    width: 45px;
  }
  .sectionBox2 ul li h5 {
    font-size: 17px;
  }
  .sectionBox2 ul li p {
    font-size: 14px;
  }
  .sectionBox2>div>img {
    width: 344px;
    margin-left: -172px;
  }
  .sectionBox h2 {
    font-size: 30px;
  }
  .sectionBox>h4 {
    font-size: 18px;
  }
  .sectionBox3>h2 {
    top: 25px;
  }
  .sectionBox3>h4 {
    top: 60px;
  }
  .sectionBox3>ul {
    bottom:40px;
  }
  .sectionBox3>ul li {
    border-radius: 8px;
    font-size: 14px;
    width: 80px;
    height: 40px;
    line-height: 40px;
  }

  .sectionBox4>p {
    display: inline-block;
    width: 80%;
  }
  .sectionBox4, .sectionBox5, .sectionBox6, .sectionBox7, .sb8-bg, .sectionBox8,.sectionBox8-yh {
    height: 720px;
  }
  .sectionBox {
    padding: 40px 0 40px 0;
  }
  .sectionBox4 {
    text-align: center;
  }
  .sectionBox3,.sectionBox8 {
    padding: 0;
  }
  .sectionBox4>ul {
    top: 170px;
  }
  .sb7-fr {
    margin-top: 160px;
  }
  .sb5-title {
    left: 10%;
  }
  .sectionBox6>img {
    margin-left: -215px;
    width: 430px;
    bottom: -14%;
  }
  .sectionBox6 li {
    width: 35%;
    margin-right: 30%;
  }
  .sb7-fr,.sb-rule1-fr{
    width:70%;
  }
  ul.sb-ul li>img {
    width: 80px;
  }
  ul.sb-ul li>div>h5 {
    font-size: 16px;
  }
  .sectionBox9>div>p {
    font-size: 12px;
    margin-top: 15px;
  }
  .sectionBox9 ul li p {
    padding: 4px 0;
    font-size: 14px;
  }
  .sectionBox10 .swiper-slide img {
    width: 310px;
  }
  .swiper-slide .teacher-js span {
    font-size: 22px;
  }
  .sectionBox10 .swiper-slide .teacher-js>p {
    font-size: 14px;
  }
  .swiper-slide .teacher-js>div {
    font-size: 12px;
  }
  .sectionBox10 .swiper-pagination-bullets {
    bottom: 10%;
  }
  .sectionBox10 .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
  }
  .sectionBox10 .swiper-button-next {
    width: 20px;
    height: 49px;
    background-size: contain;
  }
  .sectionBox13 {
    height: 400px;
  }
  .sb13-flex h5 {
    display: block;
    font-size: 22px;
  }
  .sb13-flex input {
    width: 30%;
    font-size: 16px;
    line-height: 16px;
  }
  .ft-flex h2 {
    /* font-size: 28px; */
  }
  .ft-flex h4 {
    font-size: 22px;
  }
  .ft-flex .ft-r h3 {
    font-size: 22px;
  }
  .ft-flex .ft-l img {
    margin-bottom: 43px;
    width: 140px;
  }
  .ft-flex .ft-c img {
    width: 110px;
  }
  .ft-flex .ft-c p {
    font-size: 14px;
  }
  .ft-flex .ft-r h3:last-of-type {
    margin-bottom: 10px;
  }
  .ft-flex .ft-r p {
    font-size: 12px;
    line-height: 1.4;
  }
  .ft-flex {
    padding: 30px 0;
  }
  .copyright {
    padding: 10px 0;
    font-size: 13px;
  }
  ul.sb-ul li>div {
    width: 140px;
  }
  .works-flex1 {
    padding: 0;
  }
  .works-flex1 li a>p:first-child {
    font-size: 20px;
  }
  .wsb1-swiper1 .swiper-button-next, .wsb1-swiper1 .swiper-button-prev {
    width: 48px;
    height: 78px;
    margin-top: -39px;
    background-size: 48px 78px;
  }
  .wsb2-content {
    width: 45%;
    height: 60%;
    padding-top: 10px;
  }
  .works-sb2>p {
    font-size: 14px;
  }
  .sb3-yh-fr {
    margin-right: -360px;
  }
  .sb3-yh-fr li:nth-child(1) {
    margin-right: 20%;
  }
  .sb3-yh-fr li:nth-child(2) {
    margin-right: 12%;
  }
  .sb3-yh-fr li:nth-child(3) {
    margin-right: 4%;
  }
  .sb3-yh-fr ul li>img {
    width: 7vw;
  }
  
  .sectionBox3-yh>h4 {
    font-size: 16px;
  }
  .sectionBox3-1-list li img {
    width: 110px;
  }
  .sectionBox3-1-list li h5 {
    font-size: 18px;
  }
  .sectionBox3-1-list li:nth-child(1) {
    margin-left: 80px;
  }
  .sectionBox3-1-list li {
    margin-left: 45px;
  }
  .sectionBox4-yh ul li {
    margin-right: 0%;
    width: 50%;
  }
  .sectionBox4-yh>ul {
    font-size: 0;
    top: auto;
    bottom: 120px;
  }
  .sectionBox4-yh>ul li {
    width: 50%;
    margin-right: 0;
    margin-top: 20px;
  }
  .sectionBox4-yh ul li>div {
    width: 170px;
  }
  .sectionBox6-yh>img {
    margin-left: -250px;
    width: 500px;
  }
  .sb5-copy .sb5-title {
    width: 70%;
  }
  .sb5-yh-title ul {
    margin-top: 300px;
  }
  .sb5-yh-title li {
    margin-top: 30px;
  }
  .sectionBox6-yh {
    height: 740px!important;
  }
  .sectionBox6-yh ul {
    margin-top: 8%;
  }
  .contact-information p {
    padding-left: 20%;
  }
  .contact-map {
    margin-top: 40px;
  }
  .option-menu li h3 {
    font-size: 20px;
  }
  .option-menu li p {
    font-size: 14px;
  }
  .option1-child .dec p {
    font-size: 14px;
  }
  .option a.more {
    width: 85px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #ff21b6;
  }
  .option1-child.picture {
    background-position: 44%;
  }
  .option2-bottom {
    height: 120px;
    line-height: 120px;
  }
  .option2-bottom li h3 {
    line-height: 1.6;
    font-size: 32px;
  }
  .option2-bottom li h3>i {
    margin-top: 5px;
  }
  .option5 .class-menu li {
    width: 168px;
    height: 37px;
    line-height: 37px;
    font-size: 16px;
    margin: 0 15px;
  }
  .option6 li {
    padding: 3%;
  }
  .option>.flex>h2, .option1-child .dec h2 {
    font-size: 30px;
  }
  .option1-child .dec h4 {
    font-size: 14px;
  }
  .option>.flex>p {
    font-size: 14px;
  }
  .about-sb2 li>div {
    font-size: 14px;
    padding: 3% 0;
  }
  .about-sb4 {
    background-position: 35%;
  }
  .about-sb4>.flex>div {
    margin-top: 16%;
  }
  .about-sb4>.flex>div h3 {
    font-size: 20px;
  }
  .about-sb4>.flex>div h5 {
    font-size: 15px;
  }
  .about-sb4>.flex>div a {
    padding: 3px 20px;
    font-size: 15px;
  }
  .news-list li {
    display: block;
  }
  .news-list li>div {
    display: inline-block;
  }
  .news-list li>a>div:nth-child(1) {
    width: 30%;
  }
  .news-list li>a>div:nth-child(3) {
    display: none;
  }
  .news-list li>a>div:nth-child(2) a,.news-list li>a>div:nth-child(2) span {
    display: inline-block;
  }
  .news-list li>a>div:nth-child(2) h3 {
    font-size: 20px;
  }
  .news-list li>a>div:nth-child(2) p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 44px;
    line-height: 22px;
    margin: 10px 0;
    font-size: 15px;
    color: #666;
  }
  .news-list li>a>div:nth-child(2) {
    display: inline-block;
    padding: 10px 40px;
    padding-right: 0;
    /* width: 70%; */
  }
  .nc-left {
    width: 100%;
  }
  .nc-right {
    display: none;
  }
  .option6 li>a>h5 {
    font-size: 16px;
  }
  .option6 li>a>div {
    font-size: 13px;
  }
  .sectionBox2 ul li>div {
    padding-top: 0px;
  }
  .sectionBox5>img {
    right: -15%;
    width: 980px;
  }

}
@media only screen and (max-width: 720px) {
  .flex {
    width: 96%;
  }
  .head-box {
    height: 60px;
    line-height: 60px;
  }
  .head-box .logo {
    width: 170px;
  }
  .miniNav {
    width: 35px;
    height: 60px;
  }
  .miniNav #menu {
    height: 30px;
    width: 35px;
    margin-top: -15px;
  }
  .miniNav #menu .horizontal {
    top: 12px;
  }
  .miniNav #menu .line-2 {
    top: 24px;
  }
  .miniNav #menu.select .line-1 {
    -webkit-transform: rotate(405deg);
    -moz-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    -o-transform: rotate(405deg);
    transform: rotate(405deg);
    margin-top: 12px;
  }
  .miniNav #menu.select .line-2 {
    -webkit-transform: rotate(-405deg);
    -moz-transform: rotate(-405deg);
    -ms-transform: rotate(-405deg);
    -o-transform: rotate(-405deg);
    transform: rotate(-405deg);
    margin-top: -12px;
  }
  .banner {
    padding-top: 60px;
  }
  .nav {
    width: 170px;
    top: 60px;
  }
  .overlay {
    top: 60px;
  }
  .menu .nav>li {
    line-height: 50px;
  }
  .b-title h1 {
    font-size: 26px;
  }
  .b-title h3 {
    font-size: 18px;
  }
  .b-title p {
    font-size: 13px;
  }
  .b-title a {
    font-size: 14px;
    padding: 3px 17px;
  }
  .b-title .b-btn {
    height: 80px;
  }
  .sectionBox1 ul li {
    width: 49%;
  }
  .sectionBox h2 {
    font-size: 26px;
  }
  .sectionBox>h4 {
    font-size: 17px;
  }
  .sectionBox1 ul li h3 {
    font-size: 18px;
  }
  .sectionBox1 ul li h3 i {
    font-size: 22px;
  }
  .sectionBox1 ul li p {
    width: 95%;
  }
  .sb-flex {
    margin-top: 10vw;
  }
  .sectionBox2 ul:nth-child(2) {
    margin-top: 10vw;
  }
  .sectionBox2>div>img {
    width: 40vw;
    margin-left: -20vw;
  }
  .sectionBox2 ul li {
    margin-bottom: 3vw;
  }
  .sectionBox2 ul li>img {
    width: 6vw;
    margin-right: 10px;
    min-width: 42px;
  }
  .sectionBox2 ul li h5 {
    font-size: 3vw;
    /* display: none; */
  }
  .sectionBox2 ul li p {
    font-size: 13px;
  }
  .sectionBox3>ul {
    bottom: 30px;
  }
  .sectionBox3-yh>ul {
    bottom: 20px;
  }
  .sectionBox3>ul li {
    /* padding: 4px 13px; */
    border-radius: 6px;
    margin-right: 20px;
    width: 64px;
    height: 32px;
    line-height: 32px
  }
  ul.sb-ul li>img {
    width: 70px;
  }
  ul.sb-ul li>div>h5 {
    font-size: 14px;
  }
  ul.sb-ul li>div {
    margin-left: 0;
    width: auto;
  }
  .sectionBox4>ul {
    text-align: left;
    display: -webkit-flex;  /* 新版本语法: Chrome 21+ */
    display: -moz-box;      /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox;   /* 混合版本语法: IE 10 */
    display: flex;
    justify-content: space-around;
  }
  .sectionBox4>ul li {
    /* margin-right: 0; */
    /* width: 33.3%; */
  }
  .sb5-title {
    width: 72%;
  }
  .sb5-title p {
    font-size: 17px;
  }
  .sb7-fr,.sb-rule1-fr{
    width: 85%;
  }
  .sb-rule1-fr {
    margin-top: 140px;
  }
  .sectionBox4, .sectionBox5, .sectionBox6, .sectionBox7, .sb8-bg, .sectionBox8, .sectionBox8-yh,.sectionBox4-yh {
    height: 670px;
  }
  .sb8-fr {
    width: 65%;
    margin-top: 15vw;
  }
  .sectionBox6>img {
    margin-left: -200px;
    width: 400px;
    bottom: -20%;
  }
  .sectionBox6 ul {
    margin-top: 5vw;
  }
  .sectionBox6 li {
    width: 40%;
    margin-right: 20%;
    margin-top: 5vw;
  }
  .sectionBox6 li:nth-child(2n) {
    text-align: right;
  }
  .sb-f p {
    line-height: 1.8;
    font-size: 16px;
  }
  .sectionBox8 li {
    /* display: block; */
    width: 200px;
    /* margin-top: 40px; */
    margin-right: 0%;
  }
  .sectionBox9 ul li {
    width: 48%;
    margin-right: 4%;
  }
  .sectionBox9 ul li:nth-child(2n) {
    margin-right: 0;
  }
  .sectionBox9 ul li:nth-child(n+3) {
    margin-top: 4%;
  }


  .sb10-fr {
    /* right: 10%; */
  }
  .sectionBox10 .swiper-slide img {
    width: 40vw;
  }
  .sb10-swiper {
    margin-top: 30px;
  }
  .sectionBox10 .swiper-pagination-bullets {
    bottom: 0%;
  }
  .swiper-slide .teacher-js {
    width: 40%;
  }
  .swiper-slide .teacher-js>div {
    line-height: 16px;
    height: 96px;
    margin-top: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
  }
  .swiper-slide .teacher-js span {
    font-size: 18px;
  }
  .sectionBox10 .swiper-button-next {
    width: 15px;
    height: 40px;
  }
  .sectionBox11 .sb11-swiper {
    margin-top: 50px;
  }
  .sb13-flex p {
    font-size: 14px;
  }
  .sectionBox13 {
    height: 470px;
  }
  .ft-flex {
    display: none;
  }
  .sb13-flex h5 {
    margin-right: 0;
  }
  .sectionBox12 ul {
    margin-top: 30px;
  }
  .works-flex1 li a>p:first-child {
    font-size: 18px;
  }
  .works-flex1 li a>p:last-child {
    font-size: 12px;
  }
  .works-flex1 li {
    display: inline-block;
    width: 49%;
    margin-right: 2%;
    text-align: center;
    vertical-align: top;
  }
  .works-flex1 li:nth-child(3n) {
    margin-right: 2%;
  }
  .works-flex1 li:nth-child(2n) {
    margin-right: 0;
  }
  .works-flex1 li:nth-child(n+3) {
    margin-top: 4%;
  }
  .wsb2-content {
    width: 40%;
    height: 70%;
    padding: 10px 20px
  }
  .wsb2-content h3 {
    font-size: 19px;
    /* line-height: 2; */
  }
  .wsb2-content a {
    font-size: 14px;
    width: 90px;
  }
  .wsb2-content div {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    height: 48px;
    line-height: 16px;
  }
  .wsb1-swiper1 {
    margin-top: 60px;
  }
  .sb3-yh-fr {
    margin-right: -48%;
  }
  .sectionBox3-yh>h4 {
    display: none;
  }
  .sb3-yh-fr ul li>img {
    width: 8vw;
  }
  .sb3-yh-fr ul li>div {
    width: 110px;
    padding: 0;
  }
  .sb3-yh-fr li:nth-child(1) {
    margin-top: 2%;
  }
  
  .sb3-yh-fr li {
    margin-top: 2%;
  }
  .sb8-yh-fr {
    margin-top: 6vw;
  }
  .sectionBox3-1-list {
    margin-top: 9%;
  }
  .sectionBox3-1-list li:nth-child(1) {
    margin-left: 7vw;
  }
  .sectionBox3-1-list li img {
    width: 16vw;
  }
  .sectionBox3-1-list li {
    margin-left: 5vw;
  }
  .sectionBox3-1-list li h5 {
    font-size: 16px;
  }
  .sectionBox3-1-list li p {
    font-size: 12px;
  }
  .sectionBox4-yh>ul {
    display: block;
    text-align: center;
  }
  .sectionBox4-yh>ul li {
    width: 50%;
    margin-right: 0;
    margin-top: 20px;
  }
  .sectionBox4-yh ul li>div,.sectionBox6-yh ul li>div {
    width: 140px;
    margin-left: 10px;
  }
  .sectionBox6-yh li {
    width: 48%;
    margin-right: 4%;
    margin-top: 5vw;
  }
  .sb5-copy .sb5-title {
    width: 90%;
  }
  .sb5-yh-title {
    top: 12vw;
    right: 12vw;
  }
  .sb5-yh-title li {
    margin-left: 20px;
  }
  .sb5-yh-title ul li>div {
    width: 120px;
  }
  .sb5-yh-title ul {
    margin-top: 250px;
  }
  .sectionBox6-yh>img {
    margin-left: -250px;
    width: 550px;
  }
  .sectionBox10 .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 1vw;
  }
  .contact-information p {
    padding-left: 40px;
    font-size: 16px;
  }
  .bottom-box {
    display: block;
  }
  .left-gotop {
    display: none;
  }
  .copyright {
    padding-bottom: 50px;
  }
  .option-menu li h3 {
    font-size: 15px;
  }
  .option-menu li p {
    font-size: 12px;
  }
  .option1-child .dec {
    width: 60%;
  }
  .option1-child .dec h4 {
    font-size: 14px;
    line-height: 1.4;
    margin: 15px 0;
  }
  .option2-bottom {
    height: 80px;
    line-height: 80px;
  }
  .option2-bottom li h3 {
    font-size: 26px;
  }
  .option2-bottom li p {
    line-height: 12px;
    font-size: 12px;
    color: #666;
  }
  .option2-bottom li::before {
    right: -20px;
    width: 40px;
  }
  .option1-child.picture {
    background-position: 40%;
    /* background-position: 55% 18%;
    background-size: 880px 330px;
    background-repeat: no-repeat; */
  }
  .option1-child.picture,.option1-child.game,.option1-child.animation{
    height: 550px;
  }
  .option1-child .dec {
    padding-top: 90px;
  }
  .picture .more {
    float: right;
  }
  .option5 .class-menu li {
    /* padding: 6px 12px; */
    width: 144px;
    height: 32px;
    line-height: 32px;
    font-size: 15px;
    margin: 0 7px;
  }
  .option5 .class-menu {
    padding: 40px 0;
    overflow: hidden;
  }
  .option>.flex>h2, .option1-child .dec h2 {
    font-size: 26px;
  }
  .option>.flex>p {
    font-size: 13px;
  }
  .op4-name h5 {
    font-size: 16px;
  }
  .op4-name p {
    font-size: 12px;
    color: #999;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    height: 18px;
    line-height: 18px;
  }
  .option4 .op4-name {
    padding: 5px 0;
  }
  .about-sb2 li>img {
    float: none;
    display: inline-block;
    width: 100%;
  }
  .about-sb2 li>div {
    width: 100%;
    margin: 0!important;
    padding-left: 0!important;
  }
  .about-sb2 li>div h3 {
    margin-left: 40px;
  }
  .news-list li>a>div:nth-child(2) {
    display: inline-block;
    padding: 0px 12px;
    padding-right: 0;
    width: 66%;
  }
  .news-list li>a>div:nth-child(2) h3 {
    font-size: 18px;
  }
  .news-list li>a>div:nth-child(2) p {
    height: 36px;
    line-height: 18px;
    margin: 6px 0;
    font-size: 13px;
  }
  .nc-left h4 {
    font-size: 22px;
    margin: 10px 0;
    line-height: 1.2;
  }
  .nc-left {
    padding: 5% 7%;
  }
  .option6 li>a>h5 {
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    height: 20px;
    line-height: 20px;
    font-size: 15px;
  }
  .option6 li>a>p {
    margin: 15px 0;
    font-size: 12px;
  }
  .sectionBox5>img {
    right: -30%;
  }
  .nobanner {
    padding-top: 100px;
  }
  .ec--cs-wrapper{
    display: none!important;
  }
}
@media only screen and (max-width: 600px){
  .head-box .logo {
    width: 110px;
  }
  .option1-child .dec {
    width: 100%;
    padding-top: 60px;
    text-align: center;
  }
  .head-box {
    text-align: center;
  }
  .option1-child .dec p {
    font-size: 15px!important;
    padding: 0;
    border: none;
    margin-top: 370px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    height: 75px;
    line-height: 25px;
  }
  .option1-child.game {
    background-position: 78% 36%;
    background-repeat: no-repeat;
    background-size: 1100px;
    background-color: #101010;
  }
  .option1-child.picture .dec {
    float: left;
  }
  .option1-child.picture {
    background-position: 24% 40%;
    background-repeat: no-repeat;
    background-size: 1020px;
  }
  .option1-child.picture .dec>a {
    float: none;
  }
  .option1-child.animation {
    background-position: 80% 40%;
    background-repeat: no-repeat;
    background-size: 1000px;
    background-color: #17181f;
  }
  .option1-child.picture, .option1-child.game, .option1-child.animation {
    height: 620px;
  }
  .banner .swiper-slide img {
    width: 150%;
    margin-left: -25%;
    max-width: 150%;
  }
  .nobanner {
    padding-top: 55px;
  }
  
}
@media only screen and (max-width: 600px){

  .b-title h1 {
    font-size: 24px;
  }
  .b-title h3 {
    font-size: 18px;
  }
  .b-title p {
    display: inline-block;
    width: 80%;
    padding-bottom: 20px;
    text-align: left;
  }
  .b-title a {
    font-size: 13px;
    padding: 2px 15px;
  }
  .b-title .b-btn {
    height: 60px;
  }
  .sectionBox h2 {
    font-size: 25px;
  }
  .banner {
    padding-top: 45px;
    overflow: hidden;
  }
  .sectionBox1 ul li {
    width: 100%;
    margin-right: 0%;
  }
  .sectionBox1 ul li:last-of-type {
    margin-bottom: 0;
  }
  .sectionBox2>div>img {
    width: 98vw;
    margin-left: -49vw;
    bottom: -8%;
  }
  .sectionBox2 ul {
    float: none!important;
    margin-top: 0!important;
    width: 100%;
  }
  .sectionBox2 ul li {
    display: inline-block;
    width: 50%;
    padding:0;
    vertical-align: top;
    text-align: center;
  }
  .sectionBox2 ul:nth-child(2) {
    margin-bottom: 100vw;
  }
  .sectionBox2 ul li>div {
    text-align: left;
    width: 100px;
  }
  .sectionBox2 ul li>img {
    width: 8vw;
  }
  .sectionBox3>h4 {
    top: 50px;
  }
  .sectionBox4>p {
     font-size: 16px;
    line-height: 1.8;
  }
  .sectionBox4>ul {
    padding: 0 2%;
    text-align: left;
    top: 120px;
  }
  .sectionBox4>ul li {
    width: 50%;
  }
  .sectionBox4>ul li:nth-child(2n) {
    text-align: right;
  }
  .sectionBox4>ul li:nth-child(n+2) {
    margin-top: 20px;
  }
  .sb5-title {
    top: 15vw;
  }
  .sb5-title li {
    margin-right: 0;
    width: 100%;
  }
  .sectionBox6 li {
    width: 50%;
    margin-right: 0;
  }
  .sectionBox6>img {
    margin-left: -38vw;
    width: 76vw;
    bottom: -15%;
    min-width: 270px;
  }
  /* .sectionBox6-yh>img {
    margin-left: -45vw;
    width: 90vw;
  } */
  .sb7-fr,.sb-rule1-fr{
    width: 96%;
    text-align: left;
    margin-top: 8vw;
  }
  .sb-sb7-f {
    margin-top: 0!important;
  }
  .sb7-fr h2,.sb-rule1-fr h2 {
    display: inline-block;
    width: 90%;
  }
  .sectionBox7 li,.sb-rule1 li{
    width: 92%;
    text-align: left;
    margin-right: 0;
  }
  .sectionBox9>div>p {
    text-align: left;
  }
  ul.sb-ul li>div {
    width: 120px;
    margin-left: 2px;
  }
  .sectionBox9>div>p {
    width: 100%;
  }
  .sb13-flex input {
    width: 80%;
    margin-right: 0;
    font-size: 14px;
  }
  .sb13-flex input:nth-child(n+1) {
    margin-top: 10px;
  }
  .sectionBox10 .swiper-slide {
    text-align: center;
  }
  .sectionBox10 .swiper-slide img {
    min-width: 240px;
    width: 80vw;
  }
  .sectionBox10 .swiper-slide .teacher-js {
    margin-left: 0;
    width: 80%;
    margin-top: -100px;
  }
  .sb10-fr {
    left: 0;
    right: 0;
  }
  .sb10-fr h2,.sb10-fr h4 {
    text-align: center;
  }
  .sectionBox10 .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0px 10px;

  }
  .sectionBox10 .swiper-pagination-bullets {
    bottom: -25px;
    left: auto;
    width: 100%;
  }
  .sectionBox10 .swiper-container {
    overflow: visible;
  }
  .sb11-swiper .swiper-button-next,.sb11-swiper .swiper-button-prev {
    width: 17px;
    height: 25px;
    margin-top: -13px;
    -moz-background-size: 27px 44px;
    -webkit-background-size: 27px 44px;
    background-size: 17px 25px;
  }
  .sectionBox4>ul {
    top: 145px;
    text-align: left;
    display: block;
  }
  .sb13-flex p {
    font-size: 12px;
  }
  .sb13-flex h5 {
    font-size: 20px;
  }
  .sectionBox12 li {
    width: 32.66%;
    margin-right: 1%;
    margin-top: 10px;
  }
  .sectionBox12 li:nth-child(5n) {
    margin-right: 1%;
  }
  .sectionBox12 li:nth-child(3n) {
    margin-right: 0;
  }
  .sectionBox2 ul li:nth-child(2n) {
    text-align: right;
  }
  .wsb1-swiper1 .swiper-button-next, .wsb1-swiper1 .swiper-button-prev {
    width: 33px;
    height: 45px;
    margin-top: -23px;
    background-size: 33px 45px;
  }
  .works-flex1 li a>p:first-child {
    font-size: 16px;
  }
  .wsb2-content {
    width: auto;
    height: auto;
    padding: 15px;
    padding-bottom: 10px;
  }
  .wsb2-content h3 {
    font-size: 14px;
    margin-bottom: 10px;
    word-wrap: break-word;
    width: 100px;
  }
  .wsb2-content div {
    display: none;
  }
  .sb3-yh-fr {
    display: none;
  }
  .sectionBox3-1-list li {
    margin-left: 0!important;
    display: block;
    text-align: left;
  }
  .sectionBox3-1-list li>div {
    display: inline-block;
    padding: 5px;
  }
  .sectionBox3-1-list li img {
    min-width: 54px;
  }
  .sb5-yh-title ul {
    margin-top: 300px!important;
  }
  .sectionBox4-yh>ul {
    top: auto;
    bottom: 120px;
  }
  .sectionBox6-yh ul li {
    width: 100%;
    /* text-align: left!important; */
    padding-left: 6%;
  }
  .sectionBox6-yh ul li>div {
    width: 140px;
  }
  .sectionBox4-yh ul li {
    width: 100%;
    text-align: right;
  }
  .sb5-copy ul li>div {
    width: 140px;
  }
  .sectionBox4{
    height: 800px;
  }
  .sb8-fr {
    width: 70%;
  }
  .sb8-bg {
    background-position: 90% bottom;
    /* background-size: 1150px; */
  }
  .sectionBox8-yh .sb8-bg {
    background-position: 85% top;
  }
  .swiper-slide .teacher-js>div {
    height: 112px;
    margin-top: 20px;
    -webkit-line-clamp: 7;
  }
  .sb8-yh-fr {
    width: 60%;
  }
  .copyright span {
    display: block;
  }
  .sectionBox4-yh {
    height: 670px;
  }

  .sectionBox4-yh  ul li>div {
    width: 150px;
    margin-left: 2px;
  }
  .works-sb2>p {
    width: 85%;
  }
  .wsb2-swiper1 {
    margin-top: 30px;
  }
  .wsb2-content a {
    font-size: 12px;
    width: 65px;
    padding: 1px 0;
  }
  .sectionBox3>ul li {
    width: 50px;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
    border-radius: 4px;
  }
  .contact-information {
    padding: 4%;
  }
  .contact-information p {
    padding-left: 0;
    font-size: 14px;
  }
  .contact-information p>i {
    font-size: 16px;
    margin-right: 10px;
  }
  .head-box {
    height: 45px;
    line-height: 45px;
  }
  .miniNav {
    width: 30px;
    height: 45px;
  }
  .nav {
    top: 45px;
  }
  .miniNav #menu {
    height: 20px;
    width: 24px;
    margin-top: -10px;
  }
  .miniNav #menu .line {
    height: 2px;
  }
  .overlay {
    top: 45px;
  }
  .miniNav #menu.select .line-2 {
    margin-top: -8px;
  }
  .miniNav #menu.select .line-1 {
    margin-top: 8px;
  }
  .miniNav #menu .horizontal {
    top: 8px;
  }
  .miniNav #menu .line-2 {
    top: 16px;
  }
  .option5 .class-menu li:nth-child(n+2) {
    margin-top: 10px;
  }
  .option>.flex>h2, .option1-child .dec h2 {
    font-size: 20px;
  }
  .option>.flex>p {
    font-size: 15px;
    line-height: 1.6;
  }
  .option-menu li {
    width: 50%;
    padding: 20px 0;
  }
  .option-menu li:nth-child(1)::after {
    width: 160%;
  }
  .option-menu li:nth-child(2)::after {
    height: 260%;
  }
  .option-menu li:nth-child(3)::after {
    content: '';
    background: linear-gradient(to right,#fff,#ccc,#fff);
    width: 160%;
    height: 2px;
    top: auto;
    bottom: 0;
    left: 20%;
  }
  .option1-child .dec p {
    font-size: 13px;
    line-height: 1.8;
  }
  .option6 li:nth-child(2) {
    border-bottom: none
  }
  .option6 li:nth-child(4) {
  }
  .option6 li {
    width: 100%;
  }
  .option6 li:nth-child(2n+1) {
    border-right: none;
  }
  
  .option6 li>a>h5 {
    font-size: 15px;
  }
  .option a.more {
    width: 72px;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
    margin-top: 30px;
    display: none;
  }
  .about-sb2 li>div>h3 {
    font-size: 18px;
  }
  .about-sb4>.flex>div {
    padding-left: 35%;
  }
  .about-sb4 {
    background-position: 30%;
    height: 550px;
  }
  .news-list li>a>div:nth-child(1),.news-list li>a>div:nth-child(2) {
    width: 100%;
  }
  .news-list li>a>div:nth-child(2) {
    margin-top: 20px;
    padding: 0;
  }
  .news-list li>a>div:nth-child(2) h3 {
    font-size: 16px;
  }
  .pages a, .pages strong,.pages .current {
    line-height: 20px;
    padding: 0 5px;
    font-size: 12px;
  }
  .nc-left-content {
    font-size: 13px;
  }
  .nc-left h4 {
    font-size: 18px;
  }
  .about-sb4>.flex>div h3 {
    font-size: 18px;
  }
  .about-sb4>.flex>div h5 {
    font-size: 13px;
    line-height: 1.6;
  }
  
  .sb3-container .swiper-slide img {
    max-width: 120%;
    width: 120%;
    margin-left: -10%;
  }
  .sectionBox5>img {
    right: -15%;
    width: 764px;
  }
  .banner>img {
    max-width: 200%;
    width: 200%;
    margin-left: -50%;
  }
  .sb-ul-s3 {
    margin-top: 20px!important; 
    padding: 0!important;
    text-align: center!important;
  }
  .sb-ul-s3 li {
    width: 33%!important;
    text-align: center!important;
    margin: 0!important;
    padding: 0!important;
    margin-bottom: 15px!important;
  }
  .sb-ul-s3 li>div {
    text-align: center!important;
    width: auto!important;
    display: block!important;
  }
  .sb-ul-s4 {
    margin-top: 20px!important; 
    padding: 0!important;
    text-align: center!important;
  }
  .sb-ul-s4 li {
    width: 50%!important;
    text-align: center!important;
    margin: 0!important;
    padding: 0!important;
    margin-bottom: 15px!important;
  }
  .sb-ul-s4 li>div {
    text-align: center!important;
    width: auto!important;
    display: block!important;
  }
  .sb-ul-ss4{
    margin-top: 20px!important;
    padding: 0!important;
    text-align: center!important;
    /* padding-left: 49%!important; */
    padding: 10px 0!important;
    background-color: rgba(0,0,0,.6);
    bottom: 0!important;
    width: 100%!important;
    display: flex!important;
    justify-content: space-around;
    z-index: 11;
    position: absolute!important;
    left: 0;
  }
  .sb-ul-ss4 li {
    width: 80px!important;
    text-align: center!important;
    margin: 0!important;
    padding: 0!important;
  }
  .sb-ul-ss4 li>div {
    padding-bottom: 0!important;
    width: auto!important;
    margin-left: 0!important;
  }
  
  .sb5-copy .sb5-title {
    width: 90%;
    position: static!important;
  }
  .sb5-yh-title {
    position: static!important;
    /* margin-top: 100px; */
  }
  .sb5-copy .sb5-title>h2,.sb5-copy .sb5-title>p {
    padding-left: 10px;
  }
  .sb5-copy {
    background-position: 73%;
  }
  .sb-nof {
    position: static!important;
  }
  .sb-ul-s4 li>div>p {
    display: none;
  }
  .sb-ul-s3 li>div>p {
    display: none;
  }
  .sb-ul-ss4 li>div>p {
    display: none;
  }
  .sb-ul-ss4 li>div>h5 {
    color: #fff;
    font-size: 13px!important;
  }
  .sectionBox9 ul {
    width: 95%;
  }
  .sb5-yh-title {
    right: 0;
    width: 100%;
  }
  .sb5-yh-title h2,.sb5-yh-title>p {
    padding-right:20px;
  }
  .sectionBox5 {
    height: 690px!important;
  }
  .sectionBox8, .sectionBox6 {
    height: 650px!important;
  }
  .sectionBox4 {
    height: 520px!important;
  }
  .sb5-copy,.sectionBox5-yh, .sectionBox7,.sectionBox8-yh, .sectionBox4-yh {
      height: 600px!important;
  }
  .sectionBox8-yh {
  height: 640px!important;
  }
  .sb8-bg {
  	height: 550px!important;
  }
  .sectionBox6-yh {
    height: 470px!important;
  }
  .sectionBox6-yh>img {
    bottom: -5%!important;
  }

  .sbsb-ul {
    display: block;
    background-color: #111;
    padding: 3%;
  }
  .sbsb-ul li{
    background-color: #000;
    font-size: 0;
  }
  .sbsb-ul li>div {
    display: inline-block;
    width: 100%;
    color: #fff;
    font-size: 13px;
    text-align: center;
    margin: 4% 0;
  }
  .sbsb-ul li:nth-child(2n)>div {
  }
  .sbsb-ul li:nth-child(n+2) {
    margin-top: 3%;
  }
  .sbsb-ul li h4{
    font-size: 18px;
    padding-bottom: 5px;
    margin-bottom: 5px;
    display: inline-block;
    border-bottom: 1px solid #999;
  }
  .sbsb-ul li span{
    display: block;
  }
  .sbsb-ul li>img{
    display: inline-block;
    width: 100%;
  }
  .sbsb-none {
    display: none!important;
  }
  .sectionBox-sb {
    display: block;
  }
  .sectionBox-sb h2,.sectionBox-sb h4,.sectionBox-sb span{
    position: absolute;
    color: #fff;
    z-index: 5;
  }
  .sectionBox-sb h2,.sectionBox-sb h4 {
    width: 100%;
    text-align: center;
  }
  .sectionBox-sb h2 {
    top: 20px;
  }
  .sectionBox-sb h4 {
    top: 34px;
  }
  .sectionBox-sb li {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .sectionBox-sb li:last-child {
    margin-bottom: 0px;
  }
  .sectionBox-sb li:after {
    content: '';
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 100%;
    background: repeating-linear-gradient(to bottom, rgba(0,0,0,1) 0,rgba(0,0,0,0) 50%,rgba(0,0,0,0) 80%,rgba(0,0,0,1) 100%);
  }
  .sectionBox-sb li:last-child {
    padding: 0;
  }
  .sectionBox-sb li>div {
    height: 400px;
    background-position: bottom;
  }
  .sectionBox-sb span {
    text-align: center;
    left: 50%;
    margin-left: -40px;
    bottom: 45px;
    width: 80px;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
    background: url(../img/sb3-btn.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .sb-sb-title {
    /* padding-top: 30px!important; */
    background-color: #000!important;
  }
  .sb-sb-title>h2,.sb-sb-title>h4 {
    position: relative!important;
    /* top: auto!important; */
    line-height: 1.4;
  }
  .sb-sb-title>h2 {
    top: 35px!important;
  }
  .sectionBox-sb span.sb-sb-span {
    left: 0;
    top: 0;
    background: none;
    font-size: 23px;
    width: 100%;
    text-align: center;
    margin-left: 0;
    font-weight: 600;
    line-height: 31px;
    letter-spacing: 5px;
  }
  .sectionBox-sb .animator-ul li:first-child span.sb-sb-span:before {
    width: 140px;
    margin-left:-70px;
  }
  .sectionBox-sb span.sb-sb-span:before {
    content: '';
    width: 112px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    margin-left: -56px;
    height: 2px;
    background-color: #666;
  }
  .animator-ul li>div {
  	height: 400px;
  }
  .animator-ul li:nth-child(1)>div {
  	    background-size: 700px!important;
    background-position: 5%!important;
    background-repeat: no-repeat!important;
  }
  .animator-ul li:nth-child(2)>div {
  	    background-size: 650px!important;
    background-position: 0%!important;
    background-repeat: no-repeat!important;
  }
  .sb-sb-i {
    font-size: 13px;
    display: block;
    font-weight: 300;
    letter-spacing: normal;
  }
  .sbsb-sb-title{
    display: block;
    background-color: #000;
    text-align: center;
    padding: 40px 0 30px;
  }
  .sbsb-sb-title-600-none>h2,.sbsb-sb-title-600-none>h4,.sbsb-sb-title-600-none>p {
    display: none;
  }
  .sbsb-sb-title-600-none {
    height: 540px!important;

  }
  .sbsb-sb-title>h2{
    line-height: 1.8;
    font-size: 20px;
  }
  .sb-banner {
    height: 60vw;
    overflow: hidden;
    position: fixed;
    top: 134px;
    z-index: -1;
  }
  .banner-sb>img{
    max-width: 240%;
    width: 240%;
    margin-left: -70%;
    margin-top: -10vw;
  }
  .sbsb-top {
  	padding-top: 55px;
    display: block;
    background-color: #121212;
    text-align: center;
    line-height: 1.6;
    padding-bottom: 15px;
    position: fixed;
    width: 100%;
    z-index: -1;
    height: 134px;
  }
  .sbsb-none-top {
  	display: none!important;
  }
  .test {
  	height: 360px;
    width: 100%;
  }
  .sbsb-top.hide>h1,.sbsb-top.hide>h3 {
  	display: none;
  }
  .banner-sb.hide>img {
    filter: blur(5px);
  }
  .banner-sb {
  padding: 0!important;
}
  .blackbg {
  	background-color: #121212;
  }
  .filterbg {
  	background-color: rgba(0,0,0,.3)
  }
  .sectionBox4>p {
    width: 90%;
  }
  .option3 .hj-img li {
    width: 49%;
    margin-right: 1%;
  }
  .option3 .hj-img li:nth-child(3n) {
    margin-right: 1%;
  }
  .option3 .hj-img li:nth-child(2n) {
    margin-right: 0;
  }
  .option3 .hj-img li:nth-child(n+3) {
    margin-top: 1%;
  }
  .option5 .class-menu li {
    margin: 0 90px;
  }
  .option4 {
    padding-bottom: 20px;
  }
  .sectionBox10 .swiper-button-next {
    display: none;
  }
  .ci2 {
    display: none;
  }
  .ci1 {
    display: block;
    margin-bottom: 10px;
  }
  /* .sb-shadow::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    background: repeating-linear-gradient(to bottom, rgba(0,0,0,1) 0,rgba(0,0,0,.1) 10%,rgba(0,0,0,.1) 10%,rgba(0,0,0,.1) 90%,rgba(0,0,0,.1) 90%,rgba(0,0,0,1) 100%);
  } */
  .sb-shadow {
    overflow: hidden;
  }
  .sb-shadow::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    top: -80px;
    height: 80px;
    box-shadow: 0px 0px 30px 20px #000;
  }
  .sb-shadow::before {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -80px;
    height: 80px;
    z-index: 6;
    box-shadow: 0px 0px 30px 20px #000;
  }
  .head-box .menu {
    position: absolute;
    left: 20px;
  }
  .contact-map iframe {
    height: 330px!important;
  }
  .page-none {
    margin-top: 45px;
	}
  
}
@media only screen and (max-width: 480px){
  .sectionBox6-yh>img {
    margin-left: -45vw;
    width: 90vw;
	}
   .sectionBox6 {
    height: 540px!important;
  }
  .sectionBox2 ul li p {
    margin-top: 5px;
	}
  .page-none h1 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 420px){
  .sectionBox6 li,.sectionBox4>ul li {
    width: 100%;
    /* text-align: left!important; */
  }
  .sectionBox6 ul,.sectionBox4>ul {
    padding-left: 10%;
    /* text-align: left!important; */
  }
  .sectionBox4-yh ul li {
    width: 100%;
    /* text-align: right!important; */
  }
 
  .sectionBox6-yh {
    height: 450px!important;
}
  .sectionBox6>img {
    margin-left: -160px;
    width: 320px;
    min-width: 300px;
  }
  .sectionBox6-yh>img {
    margin-left: -200px;
    width: 400px;
    min-width: 400px;
  }
  .copyright span {
    display: none;
  }
  .option2-bottom {
    display: none;
  }
  .option1-child .dec p {
    /* margin-top: 405px; */
  }
  .option1-child .dec h4 {
    font-size: 12px;
    /*display: none;*/
  }
  .option2 {
    padding-bottom: 20px;
  }
  .sbsb-ul li>div {
    font-size: 12px;
  }
  .sbsb-ul li h4 {
    margin-bottom: 3px;
    padding-bottom: 3px;
    font-size: 16px;
  }
}
