@charset "utf-8";

@font-face {
  font-family: "DIN-BOLD";
  src: url("../fonts/din-bold.woff2") format("woff2"),
    url("../fonts/din-bold.woff") format("woff"),
    url("../fonts/din-bold.ttf") format("truetype"),
    url("../fonts/din-bold.eot") format("embedded-opentype"),
    url("../fonts/din-bold.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "DINPro-Medium";
  src: url("../fonts/dinpro-medium.woff2") format("woff2"),
    url("../fonts/dinpro-medium.woff") format("woff"),
    url("../fonts/dinpro-medium.ttf") format("truetype"),
    url("../fonts/dinpro-medium.eot") format("embedded-opentype"),
    url("../fonts/dinpro-medium.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "DINPro-Regular";
  src: url("../fonts/dinpro-regular.woff2") format("woff2"),
    url("../fonts/dinpro-regular.woff") format("woff"),
    url("../fonts/dinpro-regular.ttf") format("truetype"),
    url("../fonts/dinpro-regular.eot") format("embedded-opentype"),
    url("../fonts/dinpro-regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "GothamBold_3";
  src: url("../fonts/gothambold_3.woff2") format("woff2"),
    url("../fonts/gothambold_3.woff") format("woff"),
    url("../fonts/gothambold_3.ttf") format("truetype"),
    url("../fonts/gothambold_3.eot") format("embedded-opentype"),
    url("../fonts/gothambold_3.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

body {
  overflow: hidden;
}

@media (min-width: 768px) {
  html {
    font-size: 28px !important;
  }
}

@media (min-width: 1025px) {
  ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }

  ::-webkit-scrollbar-track {
    background: #fff;
  }

  ::-webkit-scrollbar-thumb {
    background: #226fd8;
    /*border-radius: 4px;*/
  }

  ::-webkit-scrollbar-thumb:window-inactive {
    background: #226fd8;
  }

  ::-webkit-scrollbar-thumb:vertical:hover {
    background: #226fd8;
  }

  body {
    -ms-overflow-style: scrollbar;
  }

  html {
    font-size: 30px !important;
  }
}

@media (min-width: 1440px) {
  html {
    font-size: 34px !important;
  }
}

@media (min-width: 1680px) {
  html {
    font-size: 40px !important;
  }
}

/* 重置表单样式 */
select::-ms-expand {
  display: none;
}

input,
select,
textarea {
  box-shadow: none;
  outline: none;
  border: none;
  border-radius: 0;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
}

textarea {
  resize: none;
}

select::-ms-expand {
  display: none;
}

/* 更改placeholder颜色 */
input::-webkit-input-placeholder {
  color: #888;
}

input:-moz-placeholder {
  color: #888;
}

input::-moz-placeholder {
  color: #888;
}

input:-ms-input-placeholder {
  color: #888;
}

textarea::-webkit-input-placeholder {
  color: #888;
}

textarea:-moz-placeholder {
  color: #888;
}

textarea::-moz-placeholder {
  color: #888;
}

textarea:-ms-input-placeholder {
  color: #888;
}

/*头部header*/

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 30;
  background-color: #fff;
  box-shadow: 0 0 .5rem rgba(0, 0, 0, .1);
}

.header-view {
  padding: 0 0.6% 0 2.6%;
}

/* .header-top {
  border-bottom: 1px solid #eee;
}

.header-top .left {
  float: left;
  font-size: 0;
  line-height: 1.2rem;
}

.header-top .left a,
.header-top .left span {
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: middle;
}

.header-top .left a {
  font-size: .35rem;
  color: #666;
  transition: all .3s;
}

.header-top .left span {
  font-size: .3rem;
  color: #ddd;
  margin: 0 .4rem;
} */

header .right {
  float: right;
  font-size: 0;
  line-height: 1.2rem;
}

header .right .item {
  font-size: .35rem;
  display: inline-block;
  *display: inline;
  zoom: 1;
  position: relative;
  vertical-align: middle;
  margin-left: 1rem;
}

header .right a {
  display: block;
  padding-left: .6rem;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: .4rem;
  transition: all .3s;
  color: #333;
}

header .right .lang {
  background-image: url('../img/lang.png');
}

header .right .search-btn {
  background-image: url('../img/search-btn.png');
}

header .right input[type=text] {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4rem;
  height: .6rem;
  padding: .2rem .5rem .2rem 1rem;
  background-color: #226fd8;
  border-radius: .5rem;
  background-repeat: no-repeat;
  background-position: .4rem center;
  background-image: url('../img/search-btn3.png');
  font-size: .4rem;
  line-height: .6rem;
  color: #fff;
  background-size: .4rem;
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all .3s;
}

header .right .item.on input[type=text] {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
}

.header-bottom {
  height: 2rem;
}

.header-bottom .logo {
  float: left;
  /* width: 4rem; */
  margin-top: .4rem;
}

.header-bottom .logo img {
  width: 100%;
}

.header-bottom .right {
  display: none;
}

.pc-nav {
  float: right;
  font-size: 0;
  margin-top: .5rem;
margin-right: 2rem;
}

.pc-nav li {
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: top;
  margin: 0 .25rem;
  position: relative;
}

.pc-nav li .tit {
  font-size: .4rem;
  line-height: .5rem;
  color: #222;
  display: block;
  padding: .25rem 0;
  border: 1px solid transparent;
  border-bottom: none;
  border-radius: 3px;
  transition: all .3s;
  position: relative;

}

.pc-nav li .tit#current {
    line-height: 1.7rem;
    color: #2970D9;
    border-bottom: 0.05rem solid #2970D9;
}

.pc-nav li.has {
  margin: 0;
}

.pc-nav li.has .tit {
  padding: .25rem 1.5rem .25rem .6rem;
}

.pc-nav li.has .mjsearch {
  font-size: 0.35rem;
  padding: 0rem 0rem .24rem 0rem;
  color: #999;
}

.pc-nav li.has .mjsearch .searchText {
  border-bottom: 1px solid #ddd;
  padding: 0.2rem 0 0.2rem 0.5rem;
  background: url('../img/mjSearch.png') no-repeat;
  background-position: left;
}

.pc-nav li.has .tit:before {
  content: "";
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('../img/nav-arrow.png');
  transition: all .3s;
}

.pc-nav li .navson {
  position: absolute;
  left: 0;
  top: 1rem;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e2e2e2;
  border-top: none;
  padding-bottom: .5rem;
  border-radius: 0 0 3px 3px;
  background-color: #fff;
  display: none;
}

.pc-nav li .navson a {
  font-size: .35rem;
  line-height: .5rem;
  margin-bottom: .25rem;
  font-size: .35rem;
  color: #2a2a2a;
  display: block;
  padding: 0 .6rem;
  transition: all .2s;
}

.pc-nav li .navson a:last-child {
  margin-bottom: 0;
}

.m-nav {
  display: none;
}

.search-wrap {
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: middle;
  position: absolute;
  right: 0.5rem;
  top: 0.7rem;
}

.search-wrap .search-btn {
  display: block;
  width: .6rem;
  height: .6rem;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('../img/search-btn.png');
  background-size: 100%;
}

.search-wrap .search-dialog {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 4rem;
  height: .6rem;
  padding: .2rem .5rem .2rem 1.2rem;
  background-color: #226fd8;
  border-radius: .5rem;
  background-repeat: no-repeat;
  background-position: .4rem center;
  background-image: url('../img/search-btn3.png');
  background-size: .6rem;
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all .3s;
}

.search-wrap input[type=text] {
  display: block;
  width: 100%;
  height: .6rem;
  font-size: .3rem;
  line-height: .6rem;
  color: #fff;
  background-size: .4rem;
  background-color: transparent;
}

.search-wrap.on .search-dialog {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
}

/* header end */

.clearfixed {
  height: 2rem;
}

/*banner start*/
.banner .pc-box {
  overflow: hidden;
  position: relative;
}



.banner .m-img {
  display: none;
}

.banner .btns {
  font-size: 20px;
  position: absolute;
  left: 0;
  bottom: 10%;
  width: 80%;
  z-index: 3;
  color: #fff;
  padding-left: 10%;
}

.banner .btns .swiper-pagination-bullet {
  display: inline-block;
  *display: inline;
  zoom: 1;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
}

.banner .btns .swiper-pagination-bullet-active {
  width: 50px;
  height: 50px;
  opacity: 1;
  background-color: #2184DB;
  border-radius: 25px;
}

.banner .prev,
.banner .next {
  position: absolute;
  top: 50%;
  width: .6rem;
  height: 1.05rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  transform: translateY(-50%);
  z-index: 3;
}

.banner .prev {
  background-image: url('../img/banner/ban-prev.png');
  left: 2.08%;
}

.banner .next {
  background-image: url('../img/banner/ban-next.png');
  right: 2.08%;
}

.banner .text-box {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.banner .text-box .num-box {
  font-size: 0;
  font-family: "DIN-BOLD";
}

.banner .text-box .num-box span {
  font-size: 1rem;
  line-height: 1.2rem;
  color: #fff;
  margin-right: .9rem;
}

.banner .text-box .tit {
  font-size: 2rem;
  line-height: 2.1rem;
  color: #fff;
  margin-top: .75rem;
}

.banner .text-box .desc {
  font-size: .75rem;
  line-height: 1.1rem;
  color: #fff;
  margin-top: 1rem;
}

.banner .text-box .ban-more {
  display: block;
  width: 4rem;
  height: 1.25rem;
  line-height: 1.25rem;
  border-radius: .625rem;
  background-color: #fff;
  text-align: center;
  color: #226fd9;
  font-size: .4rem;
  margin: 1rem 0 0;
  transition: all .3s;
}

/*banner end*/

/*banner关联start*/
.i-about-box {
  padding-bottom: 4rem;
  background-color: #EDEDEF;
  position: relative;
  padding-top: 1.4rem;
}

.view {
  width: 83.33%;
  margin: 0 auto;
}

.i-about {
  margin-top: -1.75rem;
  position: relative;
  z-index: 3;
}

.i-about .left {
  position: absolute;
  left: 0;
  top: 0;
  width: 27.125%;
  height: 100%;
  box-sizing: border-box;
}

.i-about .con-box {
  display: block;
  background-color: #fff;
  height: 100%;
  box-sizing: border-box;
  padding: 1.25rem 1.25rem .7rem;
  border-radius: 2px;
  overflow: hidden;
}

.i-about .left .con-box {
  /* background-image: url('../img/banner/i-about-bg.png');
background-repeat: no-repeat;
background-position: center;
background-size: cover; */
}

.i-about .right {
  float: right;
  width: 70.25%;
  position: relative;
}

.i-about .right .con-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 43%;
  height: 100%;
  box-sizing: border-box;
  z-index: 3;
}

.i-about .img-box {
  float: right;
  width: 58%;
  position: relative;
  display: block;
}

.i-about .img-box img {
  width: 100%;
}

.i-about .con-box .about-logo {
  height: 1.5rem;
}

.i-about .con-box .about-logo img {
  width: 7rem;
}

.i-about .con-box .con {
  font-size: .35rem;
  line-height: .7rem;
  color: #313131;
  margin-top: 0.3rem;
  height: 4rem;
  overflow: hidden;
}

.i-about .con-box .detail {
  font-size: 0;
  margin-top: .5rem;
}

.i-about .con-box .detail span {
  position: relative;
  display: inline-block;
  *display: inline;
  zoom: 1;
  font-size: .35rem;
  line-height: .45rem;
  color: #313131;
  padding-right: .5rem;
  padding-bottom: .4rem;
  background-repeat: no-repeat;
  background-position: right .12rem;
  background-size: 5px;
  background-image: url('../img/banner/detail.png');
  transition: all .3s;
}

.i-about .con-box .detail span:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #007ee2;
  transition: all .3s;
}

.i-about .img-box .time-list {
  position: absolute;
  left: 12.27%;
  top: 14%;
}

.i-about .img-box .time-list .item {
  margin-bottom: .7rem;
}

.i-about .img-box .time-list .year {
  font-size: 1.5rem;
  line-height: 1.6rem;
  color: #fff;
  font-family: "DIN-BOLD";
}

.i-about .img-box .time-list .txt {
  font-size: .35rem;
  line-height: .45rem;
  color: #fff;
  margin-top: .25rem;
}

.i-about .con-box {
  padding: .7rem;
}

.i-about .con-box .about-logo {
  height: 1rem;
}

.i-about .con-box .con {
  margin-top: 10%;
}

.i-about .con-box .detail {
  margin-top: 5%;
}

.i-about .img-box .time-list {
  left: 7%;
  top: 7%;
}

.index-tit1 .en1 {
  font-size: 1.4rem;
  line-height: 1.05rem;
  color: #EEE;
  text-transform: uppercase;
  font-family: "GothamBold_3";
}

.index-tit1 .cn1 {
  font-size: .7rem;
  line-height: 1rem;
  margin-top: -.6rem;
  font-weight: bold;
  color: #222;
}

.i-news {
  background-color: #fff;
  margin-top: 1.625rem;
  position: relative;
}

.i-news .left {
  float: left;
  width: 69%;
}

.i-news .left .item {
  box-sizing: border-box;
  border-bottom: 1px solid #f5f5f5;
  border-right: 1px solid #f5f5f5;
}

.i-news .left .item:nth-child(3n) {
  border-right: none;
}

.i-news .left .item .con-box {
  display: block;
  padding: .75rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('../img/i-news-bg.png');
  transition: all .3s;
}

.i-news .left .item .time-box {
  padding-bottom: .7rem;
  border-bottom: 1px solid #e2e2e2;
  transition: all .3s;
}

.i-news .left .item .time {
  float: left;
}

.i-news .left .item .time .day {
  font-size: 1rem;
  line-height: 1rem;
  color: #333;
  font-family: "DINPro-Medium";
  transition: all .3s;
}

.i-news .left .item .time .ym {
  font-family: "DINPro-Regular";
  font-size: .3rem;
  line-height: .4rem;
  color: #585858;
  transition: all .3s;
}

.i-news .left .item .more {
  float: right;
  font-size: .4rem;
  line-height: .5rem;
  color: #585858;
  font-family: "DINPro-Medium";
  padding-right: .4rem;
  background-repeat: no-repeat;
  background-position: right center;
  background-image: url('../img/i-news-arrow.png');
  margin-top: .5rem;
  transition: all .3s;
}

.i-news .left .item .tit {
  font-size: .45rem;
  line-height: .55rem;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: .6rem;
  transition: all .3s;
  font-weight: bold;
}

.i-news .left .item .con {
  font-size: .3rem;
  line-height: .5rem;
  color: #909090;
  margin-top: .4rem;
  height: 1.5rem;
  overflow: hidden;
  transition: all .3s;
}

.i-news .img-tab {
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 50%;
  width: 30.9375%;
  box-sizing: border-box;
  transform: translateY(-50%);
}

.i-news .img-tab .swiper-slide {
  padding: 0 1rem;
  box-sizing: border-box;
}

.i-news .img-tab .img {
  display: block;
  border-radius: 2px;
  overflow: hidden;
}

.i-news .img-tab img {
  width: 100%;
}

.i-faculty-box.j .faculty-more {
  display: block;
  float: none;
  margin: 0 auto;
  margin-top: 1.625rem;
  color: #444;
  /*border-color:#444;*/
  background: #fff;
  font-size: .4rem;
  text-transform: uppercase;
  font-weight: bold;
}

.i-faculty-box.j .faculty-more {
  width: 6rem;
  height: 1.5rem;
  border-radius: 3px;
  line-height: 1.5rem;
}

.i-faculty-box.j .faculty-more:hover {
  color: #fff;
  background: #226fd8;
  transition: all .3s;
  border-color: #226fd8;
}

/*banner关联end*/

/*师资力量开始*/
/*师资力量结束*/




/*footer start*/


.footer-top {
  padding: 1.5rem 0;
background: #343C48;
}

.f-nav {
  font-size: 0;
  /* float: left; */
}

.f-nav li {
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: top;
  margin-right: 1.75rem;
}

.f-nav li:last-child {
  margin-right: 0;
}

.f-nav li a {
  display: block;
}

.f-nav li .tit {
  font-size: .425rem;
  line-height: .5rem;
  color: #fff;
  font-weight: bold;
}

.f-nav li .navson {
  margin-top: .25rem;
}

.f-nav li .navson a {
  display: block;
  font-size: .35rem;
  color: #fff;
  opacity: .7;
  filter: alpha(opacity=70);
  line-height: .9rem;
}

@media (max-width: 1920px) {
  .f-nav li {
    margin-right: 2.5rem;
  }
}

@media (max-width: 1570px) {
  .f-nav li {
    margin-right: 2.1rem;
  }
}

@media (max-width: 1310px) {
  .f-nav li {
    margin-right: 1.7rem;
  }
}

.f-nav .school .navson {
  /* width: 5rem; */
  height: 7.25rem;
  overflow: hidden;
  /* box-sizing: border-box;
    padding: .75rem;
    background-color: #fff;
    border-radius: 3px;
    margin-top: .55rem; */
}

.f-nav .school .navson a {
  /*  color: #262626;
    line-height: .45rem;
    margin-bottom: .45rem;
    opacity: 1;
    filter: alpha(opacity=100);
    transition: all .3s; */
}

.f-nav .school .navson a:last-child {
  margin-bottom: 0;
}

.f-nav .school .navson .mCSB_scrollTools {
  width: 3px;
}

.f-nav .school .navson .mCSB_scrollTools .mCSB_draggerRail {
  width: 3px;
  background: #f2f2f2;
}

.f-nav .school .navson .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: #1180e6;
  border-radius: 0;
}

.footer-top .right {
  float: right;
  text-align: right;
}

.footer-top .right .tit {
  font-size: .425rem;
  line-height: .5rem;
  color: #fff;
  margin-bottom: .4rem;
}

.footer-top .contact .con {
  font-size: .4rem;
  line-height: .75rem;
  color: #fff;
  opacity: .56;
  filter: alpha(opacity=56);

}

.footer-top .tel-box {
  margin-top: .5rem;
}

.footer-top .tel-box .con {
  font-size: .6rem;
  line-height: .7rem;
  color: #1180e6;
}

.footer-top .icon-box {
  font-size: 0;
  text-align: right;
  margin-top: .6rem;
}

.footer-top .icon-box .item {
  display: inline-block;
  *display: inline;
  zoom: 1;
  position: relative;
  margin-left: .5rem;
}

.footer-top .icon-box .icon {
  display: block;
  display: inline-block;
  *display: inline;
  zoom: 1;
  width: 1.1rem;
  height: 1.1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.footer-top .icon-box .item:nth-child(1) .icon {
  background-image: url('../img/douyin.png');
}

.footer-top .icon-box .item:nth-child(2) .icon {
  background-image: url('../img/wechat.png');
}

.footer-top .icon-box .img-box {
  position: absolute;
  right: 0;
  bottom: 1.4rem;
  padding-bottom: .45rem;
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all .3s;
}

.footer-top .icon-box .img {
  padding-top: 4px;
  position: relative;
  width: 4rem;
  padding: 4px;
  background-color: #fff;
}

.footer-top .icon-box .img:before {
  content: "";
  position: absolute;
  right: .4rem;
  bottom: -4px;
  width: 7px;
  height: 4px;
  background-image: url('../img/qrcode-sj.png');
}

.footer-top .icon-box .img img {
  width: 100%;
}

.footer-top .icon-box .item.cur {
  z-index: 40;
}

.footer-top .icon-box .item.cur .img-box {
  opacity: 1;
  filter: alpha(opacity=100);
  bottom: 1.1rem;
  visibility: visible;
}

.footer-bottom {
  padding: .6rem 0;
  background: #27313F;
}

.footer-bottom .copy {
  float: left;
  font-size: .3rem;
  line-height: .4rem;
  color: #7A90A6;
}

.footer-bottom .right {
  float: right;
  font-size: 0;
}

.footer-bottom .right a {
  display: inline-block;
  *display: inline;
  zoom: 1;
  font-size: .35rem;
  line-height: .4rem;
  color: #7A90A6;
  margin-left: .3rem;
}

.footer-bottom .right .a1 {
  font-style: italic;
  font-weight: bold;
}

/* footer end */

/*学生天地 师资力量 集团旗下学习公用*/
.index-tit .en {
  font-size: 1.2rem;
  line-height: 1.05rem;
  color: #a2a2a2;
  opacity: .1;
  filter: alpha(opacity=10);
  text-transform: uppercase;
  font-family: "GothamBold_3";
}

.index-tit .cn {
  font-size: .9rem;
  line-height: 1rem;
  margin-top: -.5rem;
  font-weight: bold;
}

/*学生天地 师资力量 集团旗下学习公用*/

/*集团旗下学校开始*/
.i-school-box {
  padding: 1.5rem 0 1.75rem;
}

.i-school-box .index-tit {
  text-align: center;
}

.i-school {
  margin-top: 2.25rem;
}

.i-school .row {
  margin: 0 -.55rem;
}

.i-school .item {
  box-sizing: border-box;
  padding: 0 .55rem;
  margin-bottom: 1.1rem;
}

.i-school .item img {
  width: 100%;
}

.i-school .con-box {
  display: block;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.i-school .con-box .title {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: .5rem;
  line-height: 1.25rem;
  color: #fff;
  background-color: rgba(0, 0, 0, .44);
  text-align: center;
  width: 100%;
}

.i-school .text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background-image: url('../img/i-school-bg.jpg');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
box-sizing: border-box; */
  background: #2285DC;
  padding: .75rem 1rem;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all .3s;
}

.i-school .text .tit {
  font-size: .6rem;
  line-height: .7rem;
  color: #fff;
}

.i-school .text .tips {
  font-size: 0;
  margin-top: .5rem;
}

.i-school .text .tips span {
  display: inline-block;
  *display: inline;
  zoom: 1;
  height: .55rem;
  padding: 0 .3rem;
  border-radius: .275rem;
  background-color: #fff;
  font-size: .3rem;
  color: #000;
  line-height: .55rem;
  margin-right: 5px;
}

.i-school .text .con {
  font-size: .35rem;
  line-height: .6rem;
  color: #fff;
  margin-top: .5rem;
  height: 1.8rem;
  overflow: hidden;
}

/*集团旗下学校结束*/

/*师资力量开始*/

.i-faculty-box {
  position: relative;
}

.faculty-view {
  width: 74%;
  margin: 0 auto;
  position: relative;
}

.i-faculty-box .bimg {
  overflow: hidden;
  position: relative;
}

.i-faculty-box .bimg .swiper-slide {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 12rem;
}

.i-faculty-box .bimg img {
  width: 100%;
  display: none;
}

.i-faculty-box .index-tit {
  position: absolute;
  left: 0;
  top: -21%;
  width: 100%;
  z-index: 3;
  text-align: center;
}

.i-faculty-box .index-tit .en {
  color: #a2a2a2;
}
.i-faculty-box .index-tit .cn {
  color: #333;
}

.i-faculty-box .text-box {
  position: absolute;
  left: 0;
  top: 42%;
  width: 100%;
}

.i-faculty-box .text {
  width: 44.4%;
  float: left;
}

.i-faculty-box .text .tit {
  font-size: .75rem;
  line-height: 1rem;
  color: #fff;
}

.i-faculty-box .text .line {
  width: 1.15rem;
  height: 2px;
  background-color: #fff;
  margin: .7rem 0;
}

.i-faculty-box .text .con {
  font-size: .35rem;
  line-height: .65rem;
  color: #fff;
  height: 2.6rem;
  overflow: hidden;
}

.i-faculty-box .faculty-more {
  float: right;
  width: 7.125rem;
  height: 1.875rem;
  border-radius: 3px;
  text-align: center;
  line-height: 1.875rem;
  border: 1px solid #fff;
  font-size: 0;
  background: transparent;
  transition: all .3s;
}

.i-faculty-box .faculty-more span {
  font-size: .45rem;
  line-height: 1.875rem;
  color: #fff;
  display: inline-block;
  *display: inline;
  zoom: 1;
  padding-right: .5rem;
  background-repeat: no-repeat;
  background-position: right center;
  background-image: url('../img/faculty-more.png');
  background-size: 6px;
}

.i-faculty-box .num-box {
  position: absolute;
  left: 0;
  top: 30%;
  width: 100%;
  z-index: 3;
  font-size: 0;
  text-align: right;
}

.i-faculty-box .num-box span {
  display: inline-block;
  *display: inline;
  zoom: 1;
  font-size: .8rem;
  color: #fff;
  font-family: "DIN-BOLD";
}

.i-faculty-box .num-box .cur {
  font-size: 2.95rem;
  line-height: 2.95rem;
}

.i-faculty-box .simg-box {
  position: absolute;
  left: 0;
  bottom: -12%;
  width: 100%;
  z-index: 3;
}

.i-faculty-box .simg {
  overflow: hidden;
}

.i-faculty-box .simg .swiper-slide {
  /* width: 15.5%; */
  width: 18.32%;
  /* background-color: #fff; */
  border-radius: 2px;
  overflow: hidden;
  margin-right: 2.1%;
  cursor: pointer;
}

.i-faculty-box .simg .swiper-slide:last-child {
  margin-right: 0;
}

.i-faculty-box .simg .img {
  float: left;
  height: 4rem;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.i-faculty-box .simg img {
  width: 100%;
}

.i-faculty-box .simg .swiper-slide .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .5;
  filter: alpha(opacity=50);
  transition: all .3s;
}

.i-faculty-box .simg .text {
  position: absolute;
  right: 0;
  top: 50%;
  width: 52.3381%;
  box-sizing: border-box;
  padding: 0 8%;
  transform: translateY(-50%);
  display: none;
}

.i-faculty-box .simg .text .cn {
  font-size: .75rem;
  line-height: .8rem;
  color: #444;
}

.i-faculty-box .simg .text .en {
  font-size: .6rem;
  line-height: .7rem;
  color: #363636;
  opacity: .2;
  filter: alpha(opacity=20);
  margin-top: .25rem;
}

/* .i-faculty-box .simg .swiper-slide-active{
    width: 29.58%;
}
.i-faculty-box .simg .swiper-slide-active .img{
   width: 47.619%;
}
.i-faculty-box .simg .swiper-slide-active .text{
    display: block;
} */
.i-faculty-box .simg .swiper-slide.cur .mask {
  opacity: 0;
  filter: alpha(opacity=0);
}

.i-faculty-box .simg-box .prev,
.i-faculty-box .simg-box .next {
  position: absolute;
  top: 50%;
  width: 1.575rem;
  height: 1.575rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  transform: translateY(-50%);
  transition: all .3s;
}

.i-faculty-box .simg-box .prev {
  background-image: url('../img/faculty-prev.png');
  left: -2rem;
}

.i-faculty-box .simg-box .next {
  background-image: url('../img/faculty-next.png');
  right: -2rem;
}

.i-faculty-box .simg-box .swiper-button-disabled {
  display: none;
}

/*师资力量结束*/

/*学生天地开始*/
.i-grade-box {
  /* padding: 1.75rem 0 4rem; */
  padding-top: 3.75rem;
}

.i-grade-box .index-tit {
  text-align: center;
}

.i-grade-box .more {
  float: right;
  font-size: .45rem;
  line-height: .55rem;
  color: #000;
  padding-right: 10px;
  background-repeat: no-repeat;
  background-position: right center;
  background-image: url('../img/grade-more.png');
  background-size: 6px;
  margin-top: .6rem;
  transition: all .3s;
}

.i-grade {
  margin-top: 1.75rem;
  overflow: hidden;
}

.i-grade .swiper-slide {
  width: 77.465%;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.i-grade img {
  width: 100%;
  transition: all .3s;
}

.i-grade .prev,
.i-grade .next {
  position: absolute;
  top: 50%;
  width: 1.575rem;
  height: 1.575rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  transform: translateY(-50%);
  z-index: 3;
  transition: all .3s;
}

.i-grade .prev {
  left: 9%;
  background-image: url('../img/grade-prev.png');
}

.i-grade .next {
  right: 9%;
  background-image: url('../img/grade-next.png');
}

.i-grade .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.i-grade .mask1 {
  background-color: #000;
  opacity: .32;
  filter: alpha(opacity=32);
}

.i-grade .mask2 {
  background-image: url('../img/grade-mask.png');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  opacity: 0;
  filter: alpha(opacity=0);
}

.i-grade .text {
  position: absolute;
  left: 0;
  bottom: .6rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0 1rem;
  opacity: 0;
  filter: alpha(opacity=0);
}


.i-grade .text .tit {
  font-size: .6rem;
  line-height: .7rem;
  color: #fff;
}

.i-grade .text .con {
  font-size: .35rem;
  line-height: .5rem;
  color: #fff;
  margin-top: 10px;
}

.i-grade .swiper-slide-active .mask1 {
  opacity: 0;
  filter: alpha(opacity=0);
}

.i-grade .swiper-slide-active .mask2 {
  opacity: 1;
  filter: alpha(opacity=100);
}

.i-grade .swiper-slide-active .text {
  opacity: 1;
  filter: alpha(opacity=100);
}

/*学生天地结束*/

@media (max-width: 1680px) {

  .sign-form .tel-item input[type=text] {
    width: 46%;
  }
}

@media (max-width: 1440px) {
  .sign-form .tel-item input[type=text] {
    width: 50%;
  }
}

@media (max-width: 1366px) {

  .pc-nav li.has .tit {
    padding-right: 0.9rem;
    padding-left: 0rem;
  }

  .pc-nav li.has:nth-child(3) .tit {
    padding-right: 1.2rem;
  }

  .pc-nav li .navson a {
    padding: 0 .4rem;
  }

  /* header end */
  .f-nav {
    float: none;
  }

  .footer-top .right,
  .footer-top .icon-box {
    float: none;
    text-align: left;
  }

  .footer-top .right {
    font-size: 0;
    margin-top: 1rem;
  }

  .footer-top .right>div {
    display: inline-block;
    vertical-align: top;
    margin-right: 1rem;
    margin-top: 0;
  }

  .foot-fix .item .tit {
    padding: 0 1rem;
  }

  /* footer end */

  .i-school .text {
    display: none;
  }

  .profile-box .left {
    width: 30%;
  }

  .idea-box .text-box .con2 {
    font-size: .7rem;
  }

  .principal-top .left {
    width: 50%;
  }

  .principal-bottom {
    margin-top: .5rem;
  }

  .achievement .left {
    width: 50%;
  }

  .achievement-tab .text-box {
    padding: 1rem .6rem;
  }

  .achievement-tab .text-box .tit {
    font-size: .6rem;
    line-height: .7rem;
  }

  .achievement-tab .text-box .con {
    margin-top: .4rem;
  }

  .sign-dialog {
    width: 80%;
    padding: 1.75rem 1.25rem 2.25rem;
  }

  .sign-form input[type=text],
  .sign-form .select-box {
    width: 60%;
  }

  .sign-form .tel-item input[type=text] {
    width: 45%;
  }

  .sign-form .address-item input[type=text] {
    width: 85%;
  }

  .sign-form .message-item .inp textarea {
    width: 90%;
  }

  .sign-form #content {
    width: 46%;
  }

  .train-tab .con {
    padding: 8% 6% 5%;
    font-size: 1rem;
  }

  .research-box .list .text-box {
    padding: .7rem;
  }

  .research-box .list .text-box .con {
    margin-top: .3rem;
    height: 6.3rem;
  }

  .contact-box .list .text {
    padding: .8rem;
  }

  .contact-box .list .tel-tit,
  .contact-box .list .tel {
    display: block;
  }

  .contact-box .list .tel {
    margin-left: 0;
  }
}

@media (max-width:767px) {
  .i-faculty-box.j .faculty-more {
    width: 2rem;
    height: .7rem;
    font-size: .24rem;
    line-height: .7rem;
    margin-top: .7rem;
  }

  .contextlistbox {
    padding: .6rem 0;
    font-size: .24rem;

  }
}