@charset "utf-8";

@font-face {
  font-family: "georgia";
  src: url("../fonts/georgia.woff2") format("woff2"),
    url("../fonts/georgia.woff") format("woff"),
    url("../fonts/georgia.ttf") format("truetype"),
    url("../fonts/georgia.eot") format("embedded-opentype"),
    url("../fonts/georgia.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'BEBAS';
  src: url('../fonts/bebas.eot');
  src: url('../fonts/bebas.eot') format('embedded-opentype'),
    url('../fonts/bebas.woff2') format('woff2'),
    url('../fonts/bebas.woff') format('woff'),
    url('../fonts/bebas.ttf') format('truetype'),
    url('../fonts/bebas.svg#bebas') format('svg');
}

@font-face {
  font-family: "BAHNSCHRIFT";
  src: url("../fonts/bahnschrift.woff2") format("woff2"),
    url("../fonts/bahnschrift.woff") format("woff"),
    url("../fonts/bahnschrift.ttf") format("truetype"),
    url("../fonts/bahnschrift.eot") format("embedded-opentype"),
    url("../fonts/bahnschrift.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat-Regular";
  src: url("../fonts/montserrat-regular.woff2") format("woff2"),
    url("../fonts/montserrat-regular.woff") format("woff"),
    url("../fonts/montserrat-regular.ttf") format("truetype"),
    url("../fonts/montserrat-regular.eot") format("embedded-opentype"),
    url("../fonts/montserrat-regular.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: #226fd9;
    /*border-radius: 4px;*/
  }

  ::-webkit-scrollbar-thumb:window-inactive {
    background: #226fd9;
  }

  ::-webkit-scrollbar-thumb:vertical:hover {
    background: #226fd9;
  }

  html {
    font-size: 30px !important;
  }

  body {
    -ms-overflow-style: scrollbar;
  }
}

@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;
}

.view {
  width: 83.33%;
  margin: 0 auto;
}

.view1 {
  width: 96.33%;
  margin: 0 auto;
}

/*header部分*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.2rem;
  background-color: #fff;
  z-index: 90;
  box-shadow: 0 0 .5rem rgba(0, 0, 0, .1);
}

.header-top {
  border-bottom: 1px solid #eee;
  padding: 0 2%;
}

.header-top .left {
  float: left;
  font-size: 0;
  line-height: 1.2rem;
}

.header-top .left a {
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: middle;
  font-size: .35rem;
  color: #666;
  transition: all .3s;
}

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 .logo {
  float: left;

  margin-top: .45rem;
}

header .logo img {
  width: 100%;
}

header .header-right {
  float: right;
  font-size: 0;
}

.pc-nav {
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: middle;
}

.pc-nav li {
  display: inline-block;
  *display: inline;
  zoom: 1;
  margin-left: 1.4rem;
  position: relative;
}

.pc-nav li .tit {
  display: block;
  font-size: .45rem;
  line-height: 2rem;
  color: #222;
  transition: all .3s;
}

.pc-nav li .navson {
  position: absolute;
  left: 0;
  top: 2.35rem;
  width: 6rem;
  border: 1px solid #e5e5e5;
  border-top: 3px solid #004db6;
  background: #fff;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  transition: all .3s;
}

.pc-nav li .navson a {
  display: block;
  height: 1.25rem;
  line-height: 1.25rem;
  font-size: .4rem;
  color: #666;
  border-bottom: 1px solid #e5e5e5;
  padding: 0 .6rem;
  transition: all .3s;
}

.pc-nav li .navson a:last-child {
  border-bottom: none;
}

.m-nav {
  display: none;
}

.search-wrap {
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: middle;
  margin-left: 2.9rem;
  position: relative;
}

.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);
}

.clearfixed {
  height: 2rem;
}

.index-page .clearfixed {
  display: none;
}

/* header end */

/*footer部分*/
footer {
  /* background-color: #313131; */
}

.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: 2.75rem;
}

.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;
}

.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-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: .6rem;
}

.footer-bottom .right .a1 {
  font-style: italic;
  font-weight: bold;
}

/* footer end */

/*banner部分*/
.banner {
  overflow: hidden;
  position: relative;
  margin-top: 3.2rem;
}

.banner img {
  width: 100%;
  height: 500px !important;
}

.banner .m-img {
  display: none;
}

.banner .btns {
  font-size: 0;
  position: absolute;
  left: 0;
  bottom: 12%;
  width: 100%;
  z-index: 3;
  text-align: center;
}

.banner .prev,
.banner .next {
  position: absolute;
  top: 38%;
  width: 1.3rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 35%;
  transform: translateY(calc(-50% + 1.175rem));
  z-index: 3;
}

.banner .prev:hover {
  background-color: rgba(0,0,0,0.1);
  border-radius: 5px;
}

.banner .next:hover {
  background-color: rgba(0,0,0,0.1);
  border-radius: 5px;
}

.banner .prev {
  background-image: url('../img/ban-prev.png');
  left: 2.6%;
}

.banner .next {
  background-image: url('../img/ban-next.png');
  right: 2.6%;
}

.banner .text-box {
  position: absolute;
  left: 0;
  top: 29%;
  width: 100%;
}

.banner .text-box .tit {
  font-size: 1.8rem;
  line-height: 1.9rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  letter-spacing: .7rem;
  padding-left: .7rem;
}

.banner .btns {
  display: none;
}

.index-more {
  display: block;
  width: 4rem;
  height: 1.25rem;
  line-height: 1.25rem;
  border-radius: .125rem;
  background-color: #226fd9;
  text-align: center;
  color: #fff;
  font-size: .4rem;
  font-family: "georgia";
  margin: 1rem auto 0;
  transition: all .3s;
}

.banner .text-box .index-more {
  margin: 1.25rem auto 0;
  color: #080813;
  background-color: #fff;
}


.i-about-box {
  margin-top: 3px;
  overflow: hidden;
  position: relative;
}

.i-about-box .item {
  box-sizing: border-box;
  padding: 0 2px;
}

.i-about-box .item:last-child {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

.i-about-box .con-box {
  display: block;
  overflow: hidden;
}

.i-about-box .item:last-child .con-box {
  background: #EDEDEF;
  height: 100%;
}

.i-about-box .con-box img {
  width: 100%;
}

.i-about-box .con-box .text-box {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  box-sizing: border-box;
  padding: 0 16.7%;
}

.i-about-box .con-box .tit {
  font-size: .9rem;
  line-height: 1rem;
  color: #333;
}

.i-about-box .con-box .con {
  font-size: .375rem;
  line-height: .75rem;
  color: #555;
  margin-top: .5rem;
  height: 4.5rem;
  overflow: hidden;
}

.i-about-box .con-box .read {
  margin-top: 1.75rem;
}

.read {
  font-size: 0;
}

.read span {
  display: inline-block;
  *display: inline;
  zoom: 1;
  font-size: .35rem;
  line-height: .45rem;
  color: #333;
  padding-right: .4rem;
  font-family: "BAHNSCHRIFT";
  position: relative;
}

.read span:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('../img/index-arrow.png');
  width: 5px;
  height: 9px;
  transition: all .3s;

}

.i-about-box .item:nth-child(1) .con-box .tit,
.i-about-box .item:nth-child(1) .con-box .con,
.i-about-box .item:nth-child(1) .con-box .read span {
  color: #fff;
}

.i-about-box .item:nth-child(1) .con-box .read span:before {
  background-image: url('../img/index-arrow2.png');
}


.index-tit {
  text-align: center;
}

.index-tit .en {
  font-size: 2.25rem;
  line-height: 2.25rem;
  color: #222222;
  opacity: .07;
  filter: alpha(opacity=7);
  font-family: 'BEBAS';
}

.index-tit .cn {
  font-size: 1.05rem;
  line-height: 1.15rem;
  color: #222;
  margin-top: -1rem;
}

/*校园新闻部分*/
.i-news-box {
  padding: 7.25rem 0 2.25rem;
  background: #f5f5f5;
  margin-top: -4.75rem;
}

.i-news {
  margin-top: 2rem;
}

.i-news .row {
  margin: 0 -.5rem;
}

.i-news .img-box {
  width: 48.75%;
  float: left;
}

.i-news .con-box {
  position: relative;
  display: block;
}

.i-news .con-box .img {
  overflow: hidden;
}

.i-news img {
  width: 100%;
  transition: all .3s;
}

.i-news .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('../img/i-news-mask.png');
}

.i-news .text {
  position: absolute;
  left: 0;
  bottom: 1.1rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0 1.25rem;
  font-size: 0;
}

.i-news .text .time,
.i-news .text .divide,
.i-news .text .tit {
  display: inline-block;
  *display: inline;
  zoom: 1;
  font-size: .6rem;
  line-height: .7rem;
  vertical-align: middle;
  color: #fff;
}

.i-news .text .time {
  font-family: "BAHNSCHRIFT";
}

.i-news .text .divide {
  width: 1px;
  height: .5rem;
  background: #fff;
  opacity: .2;
  filter: alpha(opacity=20);
  margin: 0 .5rem;
}

.i-news .list-wrap {
  position: absolute;
  right: 0;
  top: 0;
  width: 48.75%;
  height: 100%;
}

.i-news .list:nth-child(1) {
  margin-bottom: 1rem;
}

.i-news .list:nth-child(2) .img-box {
  float: right;
}

.i-news .list:nth-child(2) .list-wrap {
  right: auto;
  left: 0;
}

.i-news .list-wrap .item {
  position: absolute;
  top: 0;
  width: 47.436%;
  height: 100%;
  background: #fff;
}

.i-news .list-wrap .item:nth-child(1) {
  left: 0;
}

.i-news .list-wrap .item:nth-child(2) {
  right: 0;
}

.i-news .list-wrap .text-box {
  padding: 6.5%;
}

.i-news .list-wrap .text-box .time {
  font-size: .35rem;
  line-height: .45rem;
  color: #333;
}

.i-news .list-wrap .text-box .tit {
  font-size: .45rem;
  line-height: .75rem;
  height: 2.25rem;
  overflow: hidden;
  color: #222;
  margin-top: .35rem;
}

.i-news .list-wrap .text-box .read {
  margin-top: .5rem;
}

/*教学教研*/
.i-course-box {
  padding: 1.5rem 0 2.5rem 0;
  background: #eaf1fb;
}

.i-course-box .tab-btns {
  margin-top: .75rem;
  font-size: 0;
  text-align: center;
}

.i-course-box .tab-btns a {
  display: inline-block;
  *display: inline;
  zoom: 1;
  font-size: .6rem;
  line-height: .7rem;
  padding-bottom: .25rem;
  position: relative;
  color: #555555;
  margin: 0 .5rem;
  transition: all .3s;
}

.i-course-box .tab-btns a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #226fd9;
  transition: all .3s;
}

.i-course-box .tab-btns a.cur {
  color: #226fd9;
}

.i-course-box .tab-btns a.cur:before {
  width: 100%;
}

.i-course-box .list {
  margin-top: 2rem;
}

.i-course-box .list .row {
  margin: 0 -.5rem;
}

.i-course-box .list .item {
  box-sizing: border-box;
  padding: 0 .5rem;
}

.i-course-box .list .con-box {
  display: block;
}

.i-course-box .list .img {
  overflow: hidden;
}

.i-course-box .list img {
  width: 100%;
  transition: all .3s;
}

.i-course-box .list .txt {
  font-size: .5rem;
  color: #222222;
  line-height: .6rem;
  text-align: center;
  margin-top: .4rem;
  transition: all .3s;
}

/*一中英才榜*/
.i-teacher-box {
  padding: 2.25rem 0 2.625rem;
}

.i-teacher {
  margin-top: 1.75rem;
}

.i-teacher-tab {
  overflow: hidden;
}

.i-teacher-tab .swiper-slide {
  width: 23.125%;
  margin-right: 2.5%;
}

.i-teacher-tab .swiper-slide:last-child {
  margin-right: 0;
}

.i-teacher-tab .swiper-slide img {
  width: 100%;
}

.i-teacher-tab .swiper-slide .con-box {
  display: block;
}

.i-teacher-tab .swiper-slide .txt {
  font-size: .5rem;
  line-height: .6rem;
  margin-top: .5rem;
  color: #222222;
  text-align: center;
}

.i-teacher .prev,
.i-teacher .next {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - .55rem));
  background-repeat: no-repeat;
  background-position: center;
  width: .475rem;
  height: .8rem;
  background-size: 100%;
  transition: all .3s;
}

.i-teacher .prev {
  left: -1rem;
  background-image: url('../img/i-teacher-prev.png');
}

.i-teacher .next {
  right: -1rem;
  background-image: url('../img/i-teacher-next.png');
}

@media (max-width: 1680px) {
  .i-news .list-wrap .text-box .read {
    /* margin-top: 15%; */
  }
}

@media (max-width: 1366px) {
  .pc-nav li {
    margin-left: 1rem;
  }

  .f-nav li {
    margin-right: 1.5rem;
  }

  .i-about-box .con-box .text-box {
    padding: 0 10%;
  }

  .i-school-box .con {
    width: 100%;
  }

  .i-school-box .img {
    width: 100%;
  }

  .i-news .list-wrap .text-box .tit {
    height: 1.5rem;
    overflow: hidden;
  }

  .i-news .list-wrap .text-box .read {
    /* margin-top: 10%; */
  }

  .about-top .left .en {
    font-size: 1rem;
    line-height: 1.2rem;
  }

  .person-box .text-box .con {
    height: 6.3rem;
  }
}

.mjRow {
  display: none;
}

.mjcur {
  display: block;
}