
@font-face {
  font-family: 'gbold';
  src: url('/static/font/Gilroy-Bold.woff.ttf') format('truetype');
  /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}
/* a:hover{
    color: #fff;
} */
* {
  box-sizing: border-box;
}
body {
  padding-top: 100px;
  overflow-x: hidden;
}
body,
html {
  font-size: 12px;
}
img {
  max-width: 100%;
}
.f0 {
  font-size: 0;
}
.flex-dn {
  display: flex;
  flex-wrap: wrap;
}
.flex-dn::before,
.flex-dn::after {
  display: none;
}
.ptb-60 {
  padding-top: 3%;
  padding-bottom: 3%;
}
.ptb-80 {
  padding-top: 4.2%;
  padding-bottom: 4.2%;
}
.pt-0 {
  padding-top: 0;
}
.pb-0 {
  padding-bottom: 0;
}
.bg-f3f6f9 {
  background: #f3f6f9;
}
.c-blue {
  color: #111647;
}
.c-bluelight {
  color: #294eef;
}
.c-pink {
  color: #fc25a1;
}
.c-pinklight {
  color: #ec86ec;
}
.c-orange {
  color: #fd8c25;
}
.c-black {
  color: #000;
}
.c-red {
  color: #ff0000;
}
.public-wauto {
  width: 100%;
  overflow: auto;
}
@media (min-width: 1366px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1600px) {
  .header .container {
    width: 1400px;
  }
}
/* ================= public ================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #fff;
}
.header > .flex-dn {
  align-items: center;
  justify-content: space-between;
}
.header .a-logo {
  width: 20%;
}
.header .a-logo img {
  max-height: 56px;
}
.header .header-right {
  width: 68.21%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-list li {
  position: relative;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 25px;
}
.nav-list li .span-a1 a {
  position: relative;
  display: inline-block;
  line-height: 100px;
  font-size: 18px;
  color: #333;
}
.nav-list li .span-a1 bdo {
  display: none;
}
.nav-list li .span-a1.on a {
  color: #111647;
}
.nav-list li:first-child {
  margin-left: 0;
}
.nav-list li.on .span-a1 a {
  color: #111647;
}
.nav-list li.on .span-a1 a::before {
  display: block;
}
.nav-list li .div-down {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: -2px;
  padding-top: 20px;
  padding-bottom: 20px;
  background: #fff;
  border-top: 2px solid #111647;
}
.nav-list li .div-down a {
  display: block;
  white-space: nowrap;
  min-width: 168px;
  text-align: center;
  font-size: 16px;
  color: #111647;
  line-height: 26px;
  padding: 15px;
}
.nav-list li .div-down a.on {
  background-color: #e7e7ec;
}
.header-bream {
  width: 26px;
  height: 24px;
  position: relative;
  padding-top: 11px;
  cursor: pointer;
  margin-right: 20px;
  display: none;
}
.header-bream span {
  display: block;
  height: 2px;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  background-color: #111647;
  border-radius: 2px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.header-bream::before,
.header-bream:after {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #111647;
  border-radius: 2px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.header-bream::before {
  top: 2px;
}
.header-bream::after {
  bottom: 2px;
}
.header-bream.on span {
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
.header-bream.on::before {
  top: 11px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header-bream.on::after {
  bottom: 11px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header-search img {
  position: relative;
  top: 2px;
  cursor: pointer;
}
.header-search .mg {
  display: block;
}
.header-search .mgh {
  display: none;
}
.header.on .nav-list li {
  height: 80px;
}
.header.on .nav-list li .span-a1 a {
  line-height: 80px;
}
.public-search {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background-color: #fff;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.public-search .public-search-close {
  position: absolute;
  right: 25px;
  top: 25px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.public-search .public-search-close:hover {
  transform: rotate(90deg);
}
.public-search .div-01 {
  width: 720px;
}
.public-search .div-01 .put-01 {
  border: none;
  outline: none;
  width: 100%;
  height: 76px;
  padding-left: 50px;
  background-color: #f0f0f0;
  font-size: 18px;
  color: #333;
}
.public-search .div-01 .put-01::placeholder {
  color: #111647;
}
.public-search .div-01 .but-01 {
  border: none;
  outline: none;
  background: none;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 125px;
}
.public-search.on {
  height: 390px;
}
.footer {
  padding-top: 80px;
  padding-bottom: 38px;
  background-color: #011f3b;
}
.footer-top {
  margin-bottom: 36px;
  justify-content: space-between;
}
.footer-top .footer-left {
  width: 29.58%;
}
.footer-top .footer-left .flex-dn {
  align-items: center;
  justify-content: space-between;
}
.footer-top .f-logo {
  margin-bottom: 24px;
}
.footer-top .div-left {
  width: 131px;
}
.footer-top .div-left .div-share {
  display: flex;
  justify-content: space-between;
}
.footer-top .div-left .div-share a .mgh {
  opacity: 0;
}
.footer-top .div-left .div-share a .mgh {
  position: absolute;
  left: 0;
  top: 0;
}
.footer-top .div-left .div-share a:hover .mg {
  opacity: 0;
}
.footer-top .div-left .div-share a:hover .mgh {
  opacity: 1;
}
.footer-top .div-left .div-ewm {
  margin-top: 17px;
}
.footer-top .div-left .div-ewm .img {
  margin-bottom: 10px;
}
.footer-top .div-left .div-ewm .img img {
  width: 100%;
}
.footer-top .div-left .div-ewm .txt {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}
.footer-top .div-right {
  width: 145px;
  font-size: 14px;
  line-height: 30px;
  color: #ccc;
  font-weight: bold;
}
.footer-top .div-right img {
  margin-top: 12px;
}
.footer-top .footer-right {
  width: 67%;
  font-size: 14px;
  color: #ccc;
  line-height: 40px;
}
.footer-top .footer-right .flex-dn {
  justify-content: space-between;
}
.footer-top .footer-right .fcontact-01 {
  width: 42%;
}
.footer-top .footer-right .div-title {
  font-size: 18px;
  color: #fff;
  line-height: 28px;
}
.footer-top .footer-right .div-01 {
  line-height: 30px;
  padding-left: 45px;
}
.footer-top .footer-right .div-01 bdo {
  position: absolute;
  margin-left: -45px;
}
.footer-top .footer-right span {
  font-size: 16px;
  color: #fff;
}
.footer-bottom {
  font-size: 14px;
  color: #fff;
  line-height: 24px;
  padding-top: 38px;
  border-top: 1px solid #344c62;
}
.footer-bottom .flex-dn {
  justify-content: space-between;
}
.footer-bottom a {
  color: #fff;
}
/* 视频弹窗 */
.public-tc {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  background: rgba(0, 0, 0, 0.9);
  display: none;
}
.public-tc .video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-height: 100vh;
  text-align: center;
}
#video {
  width: 60vw;
  height: 80vh;
  margin-left: auto;
  margin-right: auto;
}
.public-tc-close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.pages {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 2%;
}
.pages a,
.pages strong {
  display: inline-block;
  font-size: 16px;
  color: #333;
  min-width: 45px;
  height: 45px;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 43px;
  margin-left: 5px;
  margin-right: 5px;
  font-weight: normal;
  border: 1px solid #c8c8c8;
}
.pages strong {
  background: #002fa7;
  color: #fff;
}
.pages a.ling {
  border: none;
}
.pages a.ling:first-child {
  background-image: url('404.png');
}
.pages a.ling:last-child {
  background-image: url('404.png');
}
.pages a.ling2 {
  min-width: 90px;
}
.pages a:hover,
.pages a.on {
  border-color: #111647;
  background-color: #111647;
  color: #fff;
}
.pages .text-01 {
  width: 45px;
  height: 45px;
  line-height: 43px;
  border: 1px solid #c8c8c8;
  font-size: 16px;
  text-align: center;
}
.bsBox .bsTop {
  width: 208px !important;
}
.bsBox .bsFrameDiv div {
  width: 208px !important;
  height: 208px !important;
}
.bsBox .bsFrameDiv img {
  width: 168px !important;
  height: 168px !important;
}
/* ================= index ================== */
.banner-a1 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.banner-a1 img.mg-pc {
  display: block;
}
.banner-a1 img.mg-phone {
  display: none;
}
.banner-a1 .div-word {
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
}
.banner-a1 .div-word .div-en {
  font-size: 100px;
  line-height: 1;
  font-family: Arail;
  color: #fff;
}
.banner-a1 .div-word .a-01 {
  width: 200px;
  height: 76px;
  background-color: #117da9;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  margin-top: 43px;
}
.banner-a1 .div-word .a-01 .span-icon {
  width: 29%;
  background-color: #0e6a8f;
  display: flex;
  align-items: center;
}
.banner-a1 .div-word .a-01 .span-icon img {
  width: auto;
}
.banner-a1 .div-word .a-01 .span-cn {
  width: 71%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}
.index-search {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 960px;
  max-width: 100%;
  padding: 30px 50px;
  z-index: 10;
  background-color: #fff;
  box-shadow: 0 0 16px rgba(17, 22, 71, 0.11);
  justify-content: space-between;
  /*清除ie的默认选择框样式清除，隐藏下拉箭头*/
}
.index-search .put-01 {
  background: none;
  outline: none;
  width: 58.139%;
  padding: 16px 20px;
  font-size: 16px;
  line-height: 26px;
  border: 1px solid #ccc;
}
.index-search .put-01::placeholder {
  font-size: 16px;
  color: #999;
}
.index-search .select-01 {
  outline: none;
  border: none;
  width: 17.125%;
  height: 60px;
  font-size: 16px;
  color: #333;
  padding: 0 20px;
  background-color: #f0f0f0;
}
.index-search select {
  /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
  border: solid 1px #000;
  /*很关键：将默认的select选择框样式清除*/
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  /*在选择框的最右侧中间显示小箭头图片*/
  background: url("/static/image/icon-arrow.png") no-repeat scroll right 20px center transparent;
  /*为下拉小箭头留出一点位置，避免被文字覆盖*/
  padding-right: 14px;
}
.index-search select::-ms-expand {
  display: none;
}
.index-search .but-01 {
  border: none;
  outline: none;
  background-color: #111647;
  width: 20.625%;
  height: 60px;
  font-size: 18px;
  color: #fff;
}
.index-main {
  padding-top: 3.5%;
}
.index-kuai {
  background: #fff;
}
.index-kuai:nth-child(even) {
  background-color: #f6f7f9;
}
.index-title {
  justify-content: space-between;
  align-items: center;
}
.index-title .span-title {
  font-size: 36px;
  color: #333;
  line-height: 1;
}
.index-title .a-more {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #000;
  width: 120px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #060b36;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.index-course-cont {
  margin-top: 5%;
}
.index-course-a1 {
  width: 33.33%;
}
.index-course-a1 .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
}
.index-course-a1 .img img {
  width: 100%;
}
.index-course-a1 .div-mc1,
.index-course-a1 .div-mc2 {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.index-course-a1 .div-mc1 {
  flex-direction: column;
  background: rgba(255, 255, 255, 0.8);
  padding: 0 10%;
  line-height: 36px;
}
.index-course-a1 .div-mc1 .title {
  font-size: 20px;
  color: #111647;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
}
.index-course-a1 .div-mc1 .des {
  font-size: 16px;
  line-height: 26px;
  color: #333;
  margin-top: 9px;
  height: 104px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.index-course-a1 .div-mc2 {
  align-items: center;
  background: rgba(17, 22, 71, 0.5);
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
.index-course-a1 .div-mc2 .span-zi {
  font-size: 16px;
  color: #fff;
  width: 120px;
  text-align: center;
  line-height: 42px;
  border: 1px solid #fff;
}
.index-bcu-a1,
.index-bcu-a2 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.index-bcu-a1 > img,
.index-bcu-a2 > img {
  width: 100%;
}
.index-bcu-a1 {
  position: relative;
  width: 48.66%;
}
.index-bcu-a1 .div-word {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px 3.125%;
}
.index-bcu-a1 .div-word .div-zi1 {
  font-size: 48px;
  font-family: Arail;
  color: #fff;
  line-height: 1;
}
.index-bcu-a1 .div-word .div-zi2 {
  font-size: 24px;
  color: #fff;
  line-height: 34px;
  margin-top: 7%;
}
.index-bcu-a1 .div-word .div-zi3 {
  margin-top: 10%;
}
.index-bcu-a1 .div-word .div-zi3 span {
  width: 184px;
  text-align: center;
  line-height: 70px;
  color: #fff;
  font-size: 20px;
  font-family: Arail;
  border-radius: 5px;
  background-color: #fc25a1;
}
.index-bcu .div-right {
  width: 51.34%;
}
.index-bcu-a2 {
  width: 100%;
}
.index-bcu-a2 img {
  width: 100%;
}
.index-active-cont {
  margin-top: 5%;
}
.index-active-arrow {
  position: absolute;
  bottom: 40px;
  right: 49.16%;
  width: 8.33%;
  z-index: 2;
  justify-content: space-between;
}
.index-active-arrow .span-arrow {
  width: 20px;
  height: 33px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.index-active-arrow .prev {
  background-image: url('/static/image/arrow-left.png');
}
.index-active-arrow .next {
  background-image: url('/static/image/arrow-right.png');
}
.index-active-01 .img {
  width: 96.25%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.index-active-01 .img img {
  width: 100%;
}
.index-active-01 .div-word {
  position: relative;
  z-index: 2;
  width: 62.5%;
  padding: 40px 5%;
  margin-left: auto;
  margin-top: -206px;
  background: url('/static/image/bg-01.jpg') left bottom no-repeat #111647;
  background-size: cover;
  color: #fff;
}
.index-active-01 .div-word .title {
  text-align: right;
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-active-01 .div-word .des {
  font-size: 16px;
  color: #ccc;
  line-height: 36px;
  height: 108px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 20px;
}
.index-active-01 .div-word .date {
  text-align: right;
  margin-top: 24px;
  font-size: 20px;
}
.index-active-01 .div-word .more {
  text-align: right;
  margin-top: 30px;
}
.index-active-01 .div-word .more a {
  font-size: 16px;
  color: #fff;
  line-height: 42px;
  border: 1px solid #fff;
  min-width: 120px;
  padding: 0 15px;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.index-news-cont {
  margin-top: 3%;
}
.index-news-01 {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
}
.index-news-01::before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.8);
}
.index-news-01 .img {
  width: 59.34%;
}
.index-news-01 .img .div-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.index-news-01 .img img {
  width: 100%;
}
.index-news-01 .cont {
  width: 40.66%;
  padding: 0 3.8%;
}
.index-news-01 .cont .title {
  font-size: 24px;
  color: #000;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-news-01 .cont .des {
  font-size: 16px;
  line-height: 32px;
  color: #666;
  margin-top: 9%;
  height: 128px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.index-news-01 .cont .more {
  margin-top: 15%;
}
.index-news-01 .cont .more span {
  display: inline-block;
  width: 165px;
  line-height: 60px;
  text-align: center;
  background-color: #111647;
  font-size: 18px;
  color: #fff;
}
.index-news-owl .center .index-news-01::before {
  display: none;
}
.index-news-owl .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-80%);
}
.index-news-owl .owl-nav button.owl-prev,
.index-news-owl .owl-nav button.owl-next {
  width: 60px;
  height: 60px;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.index-news-owl .owl-nav button.owl-prev {
  left: 21.8%;
  background-image: url('/static/image/arrow-left2.png');
}
.index-news-owl .owl-nav button.owl-next {
  right: 21.8%;
  background-image: url('/static/image/arrow-right2.png');
}
.index-news-owl .owl-dots {
  text-align: center;
  font-size: 0;
  margin-top: 2%;
}
.index-news-owl .owl-dots .owl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #9c9c9c;
  margin: 0 5px;
}
.index-news-owl .owl-dots .owl-dot.active {
  background-color: #060b36;
  border-color: #060b36;
}
.index-news-more {
  margin-top: 2.4%;
}
.index-news-more a {
  width: auto;
  padding: 0 22px;
  line-height: 50px;
  font-size: 16px;
  color: #000;
  border: 1px solid #060b36;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.index-link-list {
  padding-top: 15px;
  justify-content: space-between;
}
.index-link-list li {
  width: 31.66%;
  border-bottom: 1px solid #ccc;
  margin-top: 16px;
}
.index-link-list li a {
  position: relative;
  display: block;
  font-size: 24px;
  color: #111647;
  line-height: 70px;
  background: url('/static/image/icon-02.png') right center no-repeat;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.index-link-list li a::before {
  content: " ";
  position: absolute;
  left: 0;
  bottom: -1px;
  right: 100%;
  height: 1px;
  background-color: #111647;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
/* ================= F2校园生活-国际学生服务 ================== */
.banner-inside {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.banner-inside::before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.banner-inside img {
  width: 100%;
}
.banner-inside .mg-pc {
  display: block;
}
.banner-inside .mg-phone {
  display: none;
}
.banner-inside .div-word {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  font-size: 60px;
  color: #fff;
  text-align: center;
  letter-spacing: 4px;
}
.public-bream {
  background-color: #f6f7f9;
}
.public-bream .flex-dn {
  height: 80px;
  justify-content: space-between;
  align-items: center;
}
.public-nav a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #333;
  margin-left: 55px;
  line-height: 80px;
}
.public-nav a::before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #111647;
  display: none;
}
.public-nav a:first-child {
  margin-left: 0;
}
.public-nav a.on {
  color: #111647;
}
.public-nav a.on::before {
  display: block;
}
.public-address {
  padding-left: 40px;
  background: url('/static/image/icon-home.png') left top no-repeat;
}
.public-address a,
.public-address span {
  font-size: 16px;
  color: #666;
}
.public-address span {
  margin: 0 7px;
}
.public-address a.on {
  color: #111647;
}
.schcool-service {
  font-size: 18px;
  line-height: 36px;
  color: #666;
  padding-top: 6%;
  padding-bottom: 6%;
}
.schcool-service .title {
  font-size: 32px;
  line-height: 42px;
  font-weight: bold;
  color: #333;
  margin-bottom: 36px;
}
.schcool-service .div-img {
  width: 28.57%;
}
.schcool-service .div-img img {
  width: 100%;
}
.schcool-service .div-cont {
  width: 67%;
}
/* ================= F3校园生活-优秀毕业生 ================== */
.school-students-a1 {
  width: 31.66%;
  margin-left: 2.51%;
  margin-bottom: 3.3%;
}
.school-students-a1 .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.school-students-a1 .img img {
  width: 100%;
}
.school-students-a1 .title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  height: 100px;
  padding: 0 3%;
  border: 1px solid #011f3b;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.school-students-a1 .title .name {
  width: 100%;
  font-size: 20px;
  color: #000;
  line-height: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.school-students-a1 .title .des {
  width: 100%;
  font-size: 16px;
  color: #666;
  height: 26px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 26px;
  margin-top: 3px;
}
/* ================= G1新闻中心-列表页 ================== */
.public-title {
  font-size: 32px;
  line-height: 1;
  color: #000;
  margin-bottom: 3.4%;
}
.public-title a .icon {
  position: absolute;
  margin-left: 10px;
}
.public-title a:hover {
  color: #111647;
}
.public-art-title {
  line-height: 1.4;
}
.news-a1 {
  background-color: #f6f7f9;
  margin-bottom: 2%;
  align-items: center;
}
.news-a1 .img {
  width: 36%;
}
.news-a1 .img .div-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.news-a1 .img img {
  width: 100%;
}
.news-a1 .cont {
  width: 64%;
  padding: 0 4%;
}
.news-a1 .cont .title {
  font-size: 24px;
  line-height: 34px;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-a1 .cont .des {
  font-size: 16px;
  color: #666;
  line-height: 32px;
  height: 96px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 1.2%;
}
.news-a1 .cont .more {
  margin-top: 5.5%;
}
.news-a1 .cont .more span {
  width: 165px;
  line-height: 60px;
  font-size: 18px;
  color: #fff;
  text-align: center;
  border: 1px solid #011f3b;
  background-color: #111647;
}
/* ================= J1精品课程-列表页 ================== */
.news-a1.ling .cont .info {
  font-size: 18px;
  color: #011f3b;
  line-height: 28px;
  margin-top: 1.9%;
}
.news-a1.ling .cont .des {
  height: 64px;
  -webkit-line-clamp: 2;
}
.news-a1.ling .cont .more {
  margin-top: 4%;
}
.news-a1.ling .cont .more span {
  width: 120px;
  line-height: 42px;
  color: #111647;
  background: none;
}
/* ================= G3新闻中心-详情页 ================== */
.news-art {
  font-size: 16px;
  color: #666;
  line-height: 32px;
}
.news-art-01 {
  align-items: center;
  justify-content: space-between;
  margin-top: 3%;
}
.news-art-01 .img {
  width: 47.75%;
  box-shadow: 0 0 16px rgba(17, 22, 71, 0.11);
}
.news-art-01 .img img {
  width: 100%;
}
.news-art-01 .cont {
  width: 45.41%;
}
.news-art-01:first-child {
  margin-top: 4.3%;
}
/* ================= F4校园生活-学生活动列表页 ================== */
.school-active-a1 {
  align-items: center;
  margin-bottom: 3.1%;
}
.school-active-a1 .img {
  width: 62.5%;
}
.school-active-a1 .img .div-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.school-active-a1 .img img {
  width: 100%;
}
.school-active-a1 .cont {
  position: relative;
  width: 41.66%;
  margin-left: -4.16%;
  z-index: 1;
  background-color: #f6f7f9;
  padding: 3.5% 4.5%;
}
.school-active-a1 .cont .div-ing {
  width: 80px;
  line-height: 32px;
  color: #fff;
  font-size: 14px;
  background-color: #111647;
  text-align: center;
}
.school-active-a1 .cont .title {
  font-size: 24px;
  color: #000;
  line-height: 1;
  margin-top: 5%;
}
.school-active-a1 .cont .des {
  font-size: 16px;
  line-height: 30px;
  color: #666;
  height: 60px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 3.9%;
}
.school-active-a1 .cont .info {
  font-size: 14px;
  line-height: 24px;
  color: #111647;
  margin-top: 3.9%;
}
.school-active-a1 .cont .info .div-01 {
  padding-left: 24px;
  background-repeat: no-repeat;
  background-position: left 4px;
  margin-top: 4px;
}
.school-active-a1 .cont .info .div-01:first-child {
  margin-top: 0;
}
.school-active-a1 .cont .more {
  margin-top: 9%;
}
.school-active-a1 .cont .more span {
  display: inline-block;
  font-size: 16px;
  color: #111647;
  padding-right: 20px;
  background: url('/static/image/icon-03.png') right center no-repeat;
}
/* ================= E1 SQA-AD升学-入学要求 ================== */
.hschool-rxyq-01 {
  padding-top: 3.3%;
  padding-bottom: 3.3%;
  border-bottom: 1px solid #ccc;
}
.hschool-rxyq-01:first-child {
  padding-top: 0;
}
.hschool-rxyq-01:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.hschool-rxyq-01 .public-title {
  margin-bottom: 2%;
}
.hschool-rxyq-01 .des {
  font-size: 18px;
  line-height: 30px;
  color: #333;
}
.hschool-list {
  margin-top: 2.4%;
}
.hschool-list .info-des {
  font-size: 16px;
  color: #666;
  line-height: 26px;
}
.hschool-table {
  font-size: 16px;
  line-height: 26px;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.hschool-table tr th,
.hschool-table tr td {
  width: 33.33%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.hschool-table tr th {
  color: #000;
  background-color: #e0e0e0;
}
.hschool-table .span-cont {
  padding: 20px 13.25%;
}
.hschool-table .span-01 {
  color: #666;
  margin-right: 18px;
}
.hschool-link {
  margin-top: 3.5%;
}
.hschool-link a {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  padding: 0 45px;
  line-height: 58px;
  border: 1px solid #111647;
  background-color: #111647;
  margin-left: 3.2%;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.hschool-link a:first-child {
  margin-left: 0;
}
/* ================= E2 SQA-AD升学-课程对接 ================== */
.hschool-course-01 .row {
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 20px;
}
.hschool-course-01 .row > div {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 20px;
}
.hschool-course-01 .div-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hschool-course-01 .div-img img {
  width: 100%;
}
/* ================= B4关于BCU-国内合作 ================== */
.about-hzbx {
  margin-top: -20px;
  justify-content: space-between;
}
.about-hzbx-01 {
  width: 49.16%;
  padding: 17px 3.33% 40px;
  box-shadow: 0 0 16px rgba(17, 22, 71, 0.11);
  font-size: 16px;
  line-height: 30px;
  margin-top: 20px;
}
.about-hzbx-01 .div-logo {
  display: flex;
  align-items: center;
}
.about-hzbx-01 .div-logo .img {
  width: 10.2%;
}
.about-hzbx-01 .div-logo .img img {
  max-height: 52px;
}
.about-hzbx-01 .div-logo .name {
  width: 87.8%;
  margin-left: 2%;
  font-size: 24px;
  color: #000;
}
.about-hzbx-01 .title {
  font-size: 20px;
  color: #000;
  margin-top: 3.2%;
}
.about-hzbx-01 .tit {
  color: #333;
  margin-top: 3%;
}
.about-hzbx-01 .des {
  color: #666;
  margin-top: 1%;
  text-align: justify;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.about-hzbx-01 .xkz {
  color: #666;
  margin-top: 2.1%;
}
.about-hzbx-01 .xkz .span-01 {
  color: #333;
}
.about-hzbx-01 .more {
  margin-top: 6.5%;
}
.about-hzbx-01 .more a {
  width: 120px;
  text-align: center;
  line-height: 42px;
  color: #fff;
  font-size: 16px;
  border: 1px solid #111647;
  background-color: #111647;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
/* ================= F5校园生活-学生活动详情页 ================== */
.school-active-art .title {
  padding-bottom: 3%;
  border-bottom: 1px solid #ccc;
}
.school-active-art .title .tit {
  font-size: 36px;
  color: #000;
  line-height: 46px;
}
.school-active-art .title .info {
  font-size: 16px;
  color: #666;
  line-height: 26px;
  margin-top: 10px;
}
.school-active-art .des {
  font-size: 16px;
  line-height: 30px;
  color: #666;
  padding-top: 3%;
}
.school-active-art .des .span-01 {
  font-size: 20px;
}
.school-active-art .des .span-02 {
  font-size: 20px;
  padding-top: 2.5%;
}
.school-active-art .a-yuyue {
  width: 212px;
  line-height: 58px;
  font-size: 18px;
  color: #fff;
  border: 1px solid #111647;
  background-color: #111647;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  margin-top: 2.8%;
}
.school-contact {
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  line-height: 36px;
  color: #666;
  padding-top: 6.7%;
}
.school-contact .cont {
  width: 39%;
}
.school-contact .cont .title {
  font-size: 24px;
  color: #000;
  line-height: 1;
}
.school-contact .cont .des {
  margin-top: 8%;
}
.school-contact .img {
  width: 55.83%;
}
.school-contact .img img {
  width: 100%;
}
/* ================= D1课程安排-入学要求 ================== */
.course-01 {
  justify-content: space-between;
  margin-top: 7.5%;
}
.course-01:first-child {
  margin-top: 0;
}
.course-01 .cont {
  width: 58.75%;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 40px;
  color: #666;
  border-left: 2px solid #111647;
  padding-left: 3.33%;
}
.course-01 .cont .public-title {
  padding-bottom: 0;
}
.course-01 .cont .des {
  margin-top: 1.1%;
}
.course-01 .cont .div-01:first-child .span-tit {
  width: 105px;
}
.course-01 .cont .div-01:first-child .span-01 {
  width: calc(100% - 105px);
}
.course-01 .cont .div-01:nth-child(2) .span-tit {
  width: 75px;
}
.course-01 .cont .div-01:nth-child(2) .span-01 {
  width: calc(100% - 75px);
}
.course-01 .cont .div-01:nth-child(3) .span-tit {
  width: 90px;
}
.course-01 .cont .div-01:nth-child(3) .span-01 {
  width: calc(100% - 90px);
}
.course-01 .img {
  width: 35%;
  display: flex;
  align-items: center;
}
.course-01 .img .div-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.course-01 .img img {
  width: 100%;
}
.course-02 {
  margin-top: 6.5%;
}
.course-02 .div-01 {
  font-size: 18px;
  line-height: 28px;
  color: #000;
}
.course-02 .a-more {
  width: 120px;
  line-height: 42px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  border: 1px solid #011f3b;
  background-color: #011f3b;
  margin-top: 3%;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.course-more {
  margin-top: 6.8%;
}
.course-more .div-img {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.course-more .div-img::before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.course-more .div-img img {
  width: 100%;
}
.course-more .cont {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-size: 24px;
  color: #fff;
  line-height: 36px;
}
.course-more .cont .a-more {
  width: 120px;
  line-height: 42px;
  border: 1px solid #fff;
  font-size: 16px;
  color: #fff;
  margin-top: 3%;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
/* ================= F7校园生活-行前准备 ================== */
.school-ready {
  font-size: 16px;
  line-height: 36px;
  color: #666;
}
.school-ready-01 .public-title {
  margin-bottom: 1.7%;
}
.school-ready-02 {
  margin-top: 6.7%;
}
.school-ready-02 .public-title {
  margin-bottom: 3.2%;
}
.school-ready-02 .div-01 {
  width: 58%;
  padding-left: 68px;
}
.school-ready-02 .div-01 .num {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 96px;
  line-height: 1;
  color: #011f3b;
  font-weight: bold;
}
.school-ready-02 .div-img {
  margin-top: 7.4%;
}
/* ================= E3 SQA-AD升学-申请指南 ================== */
.guide-main .public-title {
  margin-bottom: 0;
  padding-bottom: 3.5%;
  border-bottom: 1px solid #ccc;
}
.guide-01 {
  padding-top: 3.5%;
  padding-bottom: 7%;
  border-bottom: 1px solid #ccc;
}
.guide-01 .guide-a1 {
  margin-top: 3.5%;
}
.guide-title {
  font-size: 24px;
  line-height: 34px;
}
.guide-title .span-01 {
  font-family: Arial;
  font-weight: bold;
}
.guide-a1 {
  width: 178px;
  line-height: 60px;
  border: 1px solid #111647;
  background-color: #111647;
  font-size: 18px;
  color: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.guide-a1.ling {
  display: inline-block;
  width: auto;
  min-width: 178px;
  padding: 0 45px;
}
.guide-a1 .icon {
  font-size: 0;
  line-height: normal;
  position: relative;
  top: -6px;
}
.guide-a1 .icon .mg {
  display: inline-block;
}
.guide-a1 .icon .mgh {
  display: none;
}
.guide-a1 img {
  margin-right: 14px;
}
.guide-flex {
  padding-top: 2%;
}
.guide-f01 {
  position: relative;
  width: 18.75%;
  margin-left: 1.56%;
  box-shadow: 0 0 16px rgba(17, 22, 71, 0.11);
  background-color: #fff;
  overflow: hidden;
  margin-top: 10px;
  padding: 4% 3.125% 6%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.guide-f01:nth-child(5n+1) {
  margin-left: 0;
}
.guide-f01 .icon img {
  height: 76px;
}
.guide-f01 .txt {
  font-size: 18px;
  color: #666;
  line-height: 28px;
}
.guide-f01 .num {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 35%);
  font-size: 66px;
  line-height: 1;
  font-weight: bold;
  color: rgba(51, 51, 51, 0.2);
}
.guide-table-cont {
  margin-top: 3%;
}
.guide-table-cont .info-des {
  font-size: 16px;
  color: #666;
  line-height: 26px;
  margin-top: 1%;
}
.guide-flex2 {
  padding-top: 1.7%;
}
.guide-flex-02 {
  width: 32.5%;
  margin-left: 1.25%;
  box-shadow: 0 0 16px rgba(17, 22, 71, 0.11);
  background-color: #fff;
  overflow: hidden;
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
  line-height: 36px;
  color: #666;
  padding: 2% 3.125%;
}
.guide-flex-02 .title {
  font-size: 20px;
  color: #000;
  line-height: 30px;
  font-weight: bold;
}
.guide-flex-02 .span-price {
  font-family: Arial;
  font-size: 20px;
  font-weight: bold;
}
.guide-flex-02 .des {
  margin-top: 10px;
}
.guide-flex-02:nth-child(3n+1) {
  margin-left: 0;
}
.guide-word {
  font-size: 18px;
  line-height: 36px;
  color: #333;
  margin-top: 1.6%;
}
.guide-word b {
  font-size: 20px;
}
.guide-word2 {
  font-size: 16px;
  line-height: 36px;
  color: #666;
  margin-top: 1.6%;
}
.guide-word2 .tit {
  font-size: 20px;
  color: #333;
}
.guide-word2 a.c-blue:hover {
  color: #111647;
}
.guide-img {
  padding-top: 1.6%;
  justify-content: space-between;
}
.guide-img .div-img {
  width: 48.75%;
  margin-top: 10px;
}
.guide-img .div-img > div {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.guide-img .div-img > div img {
  width: 100%;
}
/* ================= F1校园生活-学校住宿 ================== */
.school-stay-01 {
  justify-content: space-between;
  align-items: center;
  margin-top: 6.8%;
}
.school-stay-01:first-child {
  margin-top: 0;
}
.school-stay-01 .img {
  width: 50%;
}
.school-stay-01 .cont {
  width: 45.83%;
  font-size: 16px;
  color: #666;
}
.school-stay-01 .cont .title {
  color: #000;
}
.school-stay-01 .cont1 {
  line-height: 36px;
}
.school-stay-01 .cont1 .title {
  font-size: 32px;
}
.school-stay-01 .cont1 .des {
  margin-top: 3%;
}
.school-stay-01 .cont2 {
  line-height: 30px;
}
.school-stay-01 .cont2 .title {
  font-size: 26px;
}
.school-stay-01 .cont2 .des {
  margin-top: 1.5%;
}
.school-stay-01 .cont2 .info {
  padding-top: 3%;
  margin-top: 4%;
  line-height: 36px;
  border-top: 1px solid #ccc;
}
.school-stay-01 .cont2 .a-more {
  font-size: 18px;
  color: #fff;
  width: 236px;
  line-height: 58px;
  margin-top: 8.5%;
  border: 1px solid #111647;
  background-color: #111647;
}
.school-stay-table {
  margin-top: 3%;
}
.school-table {
  min-width: 700px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.school-table th,
.school-table td {
  font-size: 16px;
  line-height: 24px;
  padding-left: 15px;
  padding-right: 15px;
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
}
.school-table th {
  width: 20%;
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #111647;
}
.school-table td {
  color: #666;
  padding-top: 25px;
  padding-bottom: 25px;
}
.school-stay-info {
  font-size: 18px;
  line-height: 36px;
  color: #666;
  margin-top: 6.2%;
}
.school-stay-info .public-title {
  margin-bottom: 2%;
}
.school-stay-info .div-01 {
  margin-top: 3%;
}
.school-stay-info .div-01:first-child {
  margin-top: 0;
}
/* ================= B2关于BCU-四大学部介绍列表页 ================== */
.about-xbintro-flex {
  justify-content: space-between;
}
.about-xbintro-01 {
  width: 48.75%;
  border: 1px solid #ccc;
  border-top: none;
  margin-top: 2.7%;
}
.about-xbintro-01 .img {
  margin: -1px;
}
.about-xbintro-01 .img .span-img {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.about-xbintro-01 .img .span-img::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: url('/static/image/a-mc2.png') center no-repeat;
  background-size: cover;
}
.about-xbintro-01 .img .span-img img {
  width: 100%;
}
.about-xbintro-01 .img .txt {
  position: absolute;
  left: 6.3%;
  right: 6.3%;
  bottom: 0;
  z-index: 5;
  font-size: 32px;
  line-height: 1;
  padding-bottom: 6.2%;
  color: #fff;
  background: url('/static/image/line-01.jpg') left bottom no-repeat;
}
.about-xbintro-01 .ul-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 17px 0;
}
.about-xbintro-01 .ul-list a {
  width: 50%;
  padding: 10px 5.57% 10px 4.83%;
  font-size: 20px;
  line-height: 36px;
  color: #666;
}
.about-xbintro-01:first-child {
  margin-top: 0;
}
/* ================= G2新闻中心-详情页 ================== */
.news-main-art {
  justify-content: space-between;
  align-items: flex-start;
}
.news-art2 {
  width: 71.25%;
  font-size: 16px;
  line-height: 32px;
  color: #666;
}
.news-art2 .public-title {
  line-height: 1.32;
  color: #000;
}
.news-art-list {
  width: 25.833%;
  padding: 2.4% 2.5%;
  background-color: #f6f7f9;
}
.news-art-list .title {
  font-size: 20px;
  color: #000;
  line-height: 1;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
.news-art-list .ul-list li {
  border-bottom: 1px solid #ccc;
}
.news-art-list .ul-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.news-art-list .ul-list li a .img {
  width: 38%;
}
.news-art-list .ul-list li a .img .div-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.news-art-list .ul-list li a .img .div-img img {
  width: 100%;
}
.news-art-list .ul-list li a .cont {
  width: 56%;
  font-size: 14px;
  line-height: 24px;
  color: #666;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
/* ================= H1下载中心 ================== */
.down-main {
  align-items: flex-start;
  justify-content: space-between;
}
.down-menu {
  width: 19.58%;
  border-left: 1px solid #111647;
}
.down-menu li a {
  display: block;
  font-size: 16px;
  color: #666;
  line-height: 54px;
  padding-left: 24px;
  padding-right: 60px;
  border-left: 1px solid #111647;
  border-right: 1px solid #ccc;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.down-menu li a.on {
  color: #111647;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background: url('/static/image/icon-arrow2.png') right 36px center no-repeat;
}
.down-list {
  width: 76.41%;
}
.down-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding: 0 30px;
  background: #f6f7f9;
}
.down-list li:first-child {
  margin-top: 0;
}
.down-list li .a1 {
  display: block;
  font-size: 16px;
  color: #000;
  line-height: 66px;
  width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.down-list li .a1 img {
  margin-right: 20px;
}
/* ================= C1语言班及内测-BCU语言班信息 ================== */
.test-info-art {
  font-size: 18px;
  line-height: 30px;
  color: #000;
}
.test-info-art .m-top {
  margin-top: 28px;
}
.test-info-art .title {
  font-size: 24px;
  margin-top: 4.5%;
}
.test-info-art .title:first-child {
  margin-top: 0;
}
.test-info-art .div-01 {
  font-size: 16px;
  line-height: 32px;
  color: #666;
  padding-left: 15px;
  padding-right: 15px;
}
.test-info-art .div-01 img {
  position: relative;
  top: -2px;
  margin-right: 12px;
}
.test-info-art ul {
  padding-left: 40px;
}
.test-info-art ul li {
  list-style: inherit;
}
.buc-table {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-size: 16px;
  line-height: 30px;
  color: #666;
  margin-top: 3%;
}
.buc-table tr:nth-child(odd) {
  background-color: #f2f2f2;
}
.buc-table tr th,
.buc-table tr td {
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
}
.buc-table tr th {
  color: #000;
  background-color: #e0e0e0;
}
.buc-table tr th img {
  margin-right: 13px;
}
.buc-table .span-01 {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 17px;
  padding-bottom: 17px;
}
.buc-table1 tr:nth-child(odd) {
  background: none;
}
.buc-table1 tr th {
  background-color: #ededed;
}
.buc-table2 th {
  width: 20%;
  text-align: center;
}
.buc-table2 tr:last-child td {
  text-align: center;
}
.buc-table2 tr:last-child td:first-child {
  text-align: left;
}
.buc-more {
  margin-top: 3.3%;
}
.buc-more a {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  border: 1px solid #111647;
  background-color: #111647;
  line-height: 58px;
  padding: 0 45px;
  margin: 0 20px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
/* ================= K1现在申请 ================== */
.online-apply .div-01 {
  font-size: 24px;
  line-height: 38px;
  color: #333;
}
.online-apply .public-title {
  margin-bottom: 2.5%;
}
.online-apply .div-02 {
  margin-top: 1%;
}
.online-apply-list li {
  position: relative;
  padding-left: 25px;
  font-size: 16px;
  line-height: 36px;
  color: #666;
}
.online-apply-list li .num {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
}
.online-apply-list li a {
  font-size: 20px;
  color: #111647;
}
.online-apply-list li .a-01 img {
  position: relative;
  top: -8px;
  margin-left: 16px;
}
.online-apply-01 {
  border-top: 1px solid #ccc;
  font-size: 16px;
  line-height: 36px;
  color: #000;
  margin-top: 3%;
  padding-top: 3%;
}
.online-apply-list2 li {
  padding-left: 18px;
  color: #666;
  background: url('/static/image/icon-08.png') left 15px no-repeat;
}
.online-apply-more {
  margin-top: 2.8%;
}
.online-apply-more a {
  display: inline-block;
  min-width: 165px;
  padding: 0 45px;
  font-size: 18px;
  color: #fff;
  line-height: 58px;
  text-align: center;
  border: 1px solid #111647;
  background-color: #111647;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.online-apply-form {
  background-color: #f6f7f9;
}
.online-apply-form .title {
  font-size: 24px;
  color: #333;
  line-height: 1;
}
.online-apply-form .online-apply-more {
  margin-top: 3.3%;
}
.online-apply-form-list {
  margin-left: -10px;
  margin-right: -10px;
  padding-top: 1.2%;
}
.online-apply-form-list li {
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 25px;
}
.online-apply-form-list .label-01 {
  width: 100%;
  border: 1px solid #ccc;
  padding-left: 96px;
  margin: 0;
}
.online-apply-form-list .label-01 .span-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 96px;
  background: url('/static/image/line-02.jpg') right center no-repeat;
}
.online-apply-form-list .label-01 .put-01 {
  border: none;
  background: none;
  outline: none;
  width: 100%;
  padding: 0 26px;
  line-height: 54px;
  font-size: 14px;
  color: #333;
  font-weight: normal;
}
.online-apply-form-list .label-01 .put-01::placeholder {
  color: #aaa;
}
/* ================= C2语言班及内测-BCU内测 ================== */
.buctest-kuai:nth-child(even) {
  background-color: #f6f7f9;
}
.buctest-kuai-video {
  justify-content: space-between;
  align-items: center;
}
.buctest-kuai-video .cont {
  width: 41.25%;
  font-size: 16px;
  line-height: 36px;
  color: #666;
}
.buctest-kuai-video .cont .title {
  font-size: 36px;
  color: #111;
}
.buctest-kuai-video .cont .des {
  margin-top: 5%;
}
.buctest-video {
  width: 52.91%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.buctest-video .span-play {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
}
.buctest-01 {
  margin-top: 2.8%;
}
.buctest-01:first-child {
  margin-top: 0;
}
.buctest-01 .title {
  font-size: 24px;
  color: #000;
  line-height: 34px;
}
.buctest-01 .title-txt {
  font-size: 16px;
  line-height: 26px;
  color: #666;
  margin-top: 1.5%;
}
.buctest-adv-flex {
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  margin-top: 3.2%;
}
.buctest-adv-01 {
  position: relative;
  max-width: 16.66%;
  text-align: center;
  padding-bottom: 24px;
}
.buctest-adv-01 .tit {
  font-size: 16px;
  line-height: 24px;
  color: #000;
}
.buctest-adv-01 .num {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: -4px;
  font-size: 48px;
  color: #e5e5e5;
  line-height: 1;
  padding-top: 34px;
  background: url('/static/image/icon-17.png') center top no-repeat;
  font-family: 'gbold';
}
.buctest-test {
  padding-top: 9.5%;
}
.buctest-test-flex {
  margin-top: 2.8%;
  border: 1px solid #ccc;
}
.buctest-test-01 {
  width: 33.33%;
  padding: 25px 2.9%;
  padding-left: 2.9%;
  padding-right: 2.9%;
  border-left: 1px solid #ccc;
}
.buctest-test-01:first-child {
  border-left: none;
}
.buctest-test-01 .tit {
  font-size: 20px;
  color: #111;
  line-height: 30px;
  margin-top: 7%;
}
.buctest-test-01 .des {
  font-size: 16px;
  line-height: 36px;
  color: #666;
  margin-top: 2.3%;
  text-transform: uppercase;
  word-break: break-all;
}
.buctest-steps {
  display: flex;
  justify-content: space-between;
}
.buctest-steps .cont {
  width: 62%;
}
.buctest-steps .title {
  font-size: 36px;
  color: #111;
}
.buctest-steps .ul-list li {
  position: relative;
  padding-left: 80px;
  margin-top: 4%;
}
.buctest-steps .ul-list li .num {
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 56px;
  color: #000;
  line-height: 1;
}
.buctest-steps .ul-list li .tit {
  font-size: 20px;
  line-height: 1;
  color: #111;
}
.buctest-steps .ul-list li .des {
  font-size: 16px;
  line-height: 30px;
  color: #666;
  margin-top: 1%;
}
.buctest-steps .img {
  width: 31%;
}
.buctest-steps .img img {
  width: 100%;
}
.buctest-more {
  margin-top: 6%;
  padding-left: 80px;
}
.buctest-more a {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  padding: 0 45px;
  line-height: 58px;
  border: 1px solid #111647;
  background-color: #111647;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
/* ================= B3关于BCU-四大学部介绍详情页 ================== */
.about-school-item:nth-child(even),
.course-item:nth-child(even) {
  background-color: #f6f7f9;
}
.about-school-flex {
  justify-content: space-between;
  align-items: center;
}
.about-school-flex .img {
  width: 51%;
}
.about-school-flex .cont {
  width: 47%;
}
.about-school-flex .cont .title {
  font-size: 36px;
  color: #111;
  line-height: 1;
}
.about-school-flex .cont .des {
  font-size: 16px;
  line-height: 30px;
  color: #666;
  margin-top: 3%;
}
.about-school-title a {
  font-size: 24px;
  color: #111647;
  line-height: 1;
}
.about-school-title a .icon {
  position: absolute;
  margin-left: 5px;
}
.about-school-img {
  padding-top: 0.8%;
}
.about-school-img > div {
  margin-top: 2.5%;
}
.about-school-img .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.about-school-img .img img {
  width: 100%;
}
.about-school-img + .about-school-list {
  margin-top: 3%;
}
.about-school-list .title {
  font-size: 24px;
  color: #111;
  line-height: 1;
}
.about-school-list .ul-list li {
  width: 25%;
  padding-right: 10px;
  margin-top: 25px;
}
.about-school-list .ul-list li a {
  display: inline-block;
  font-size: 16px;
  color: #666;
  line-height: 26px;
  background: url('/static/image/icon-19.png') left top 11px no-repeat;
  padding-left: 35px;
}
/* ================= D3课程安排-学士课程 ================== */
.course-xskc-01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5%;
}
.course-xskc-01:first-child {
  margin-top: 0;
}
.course-xskc-01 .img {
  width: 46.25%;
}
.course-xskc-01 .cont {
  width: 45.83%;
}
.course-xskc-01 .cont .public-title {
  margin-bottom: 4.5%;
}
.course-xskc-01 .cont .des {
  font-size: 16px;
  color: #666;
  line-height: 30px;
  text-align: justify;
}
.course-xskc-01 .cont .div-01 {
  margin-top: 2.2%;
}
.course-xskc-01 .cont .a-more {
  margin-top: 8%;
  padding: 0 45px;
  font-size: 18px;
  color: #fff;
  line-height: 58px;
  border: 1px solid #111647;
  background-color: #111647;
}
.course-huafen .public-title {
  margin-bottom: 2%;
}
.course-huafen .des {
  font-size: 18px;
  line-height: 48px;
  color: #666;
}
.course-blss .public-title {
  margin-bottom: 2.4%;
}
.course-blss .about-school-list {
  margin-top: 2%;
}
.course-blss .ul-list {
  margin-top: 1%;
}
.course-blss .ul-list li a {
  padding-left: 20px;
  background-image: url('/static/image/icon-20.png');
  background-position: left 9px;
}
/* ================= D3课程安排-学士课程 ================== */
.contact-main {
  border-top: 1px solid #ccc;
}
.contact-top,
.contact-bottom {
  justify-content: space-between;
}
.contact-01 {
  padding-left: 47px;
  margin-top: 5%;
}
.contact-01 .title {
  position: relative;
  font-size: 24px;
  color: #000;
  line-height: 1;
}
.contact-01 .title .span-icon {
  position: absolute;
  left: -47px;
  top: 50%;
  transform: translateY(-50%);
}
.contact-01 .des {
  font-size: 18px;
  line-height: 36px;
  color: #666;
  margin-top: 4.5%;
  word-break: break-all;
}
.contact-01 .div-01 {
  padding-left: 56px;
  font-size: 16px;
  line-height: 30px;
  margin-top: 4.5%;
}
.contact-01 .div-01 .div-title {
  float: left;
  margin-left: -56px;
  color: #011f3b;
}
/* ================= J1精品课程-详情页 ================== */
.public-anchor {
  position: absolute;
  margin-top: -120px;
}
.curse-design-01 .public-title {
  margin-bottom: 1.3%;
}
.curse-design {
  padding-bottom: 3%;
}
.curse-design-txt {
  font-size: 17px;
  line-height: 36px;
}
.curse-design-cont {
  margin-top: 2.5%;
  background: #f6f7f9;
}
.curse-design-txt-01 {
  margin-top: 60px;
}
.curse-design-txt-01:first-child {
  margin-top: 0;
}
.curse-design-txt-01 .title {
  font-size: 16px;
  color: #666;
  line-height: 1;
}
.curse-design-txt-01 .des {
  font-size: 20px;
  color: #000;
  line-height: 30px;
  margin-top: 5%;
}
.curse-design-left {
  width: 66.66%;
  background-color: #fff;
  border: 1px solid #ccc;
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
  padding-bottom: 30px;
}
.curse-design-left .curse-design-txt-01 {
  width: 50%;
  padding-left: 6.25%;
  padding-right: 6.25%;
}
.curse-design-left .curse-design-txt-01:nth-child(2) {
  margin-top: 0;
}
.curse-design-right {
  width: 33.34%;
  padding-top: 30px;
  padding-bottom: 30px;
}
.curse-design-right .curse-design-txt-01 {
  width: 100%;
  padding-left: 12.5%;
  padding-right: 12.5%;
}
.curse-design-anchor {
  margin-top: 2%;
}
.curse-design-anchor-flex {
  border: 1px solid #111647;
  box-shadow: 0 0 8px rgba(1, 31, 59, 0.19);
}
.curse-design-anchor-flex a {
  flex: 1;
  font-size: 16px;
  color: #333;
  padding: 0 4.4%;
  line-height: 66px;
  border-left: 1px solid #111647;
}
.curse-design-anchor-flex a:first-child {
  border-left: none;
}
.curse-overview {
  background-color: #f6f7f9;
}
.curse-overview .public-title {
  margin-bottom: 2%;
}
.curse-overview .curse-design-txt {
  line-height: 48px;
}
.curse-overview-img .row {
  display: flex;
  flex-wrap: wrap;
}
.curse-overview-img .row > div {
  margin-top: 2.5%;
}
.curse-overview-img .img {
  box-shadow: 0 0 8px rgba(1, 31, 59, 0.19);
}
.curse-overview-img .img .div-img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.curse-overview-img .img img {
  width: 100%;
}
.curse-overview-video {
  position: relative;
  margin-top: 2.6%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.curse-overview-video .span-play {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
}
.curse-overview-why {
  margin-top: 3%;
  width: 76.66%;
}
.curse-overview-why .title {
  font-size: 24px;
  color: #000;
  line-height: 1;
}
.curse-overview-why-list {
  margin-top: 2%;
}
.curse-overview-why-list li {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  padding-left: 20px;
  background: url('/static/image/icon-21.png') left 8px no-repeat;
  margin-top: 10px;
}
.curse-overview-why-list li:first-child {
  margin-top: 0;
}
.curse-overview-yaoqiu {
  margin-top: 5%;
  border-top: 1px solid #ccc;
  padding-bottom: 0;
}
.curse-overview-yaoqiu .div-info {
  font-size: 16px;
  line-height: 26px;
  color: #666;
  margin-top: 5px;
}
.curse-overview-yaoqiu .title {
  font-size: 24px;
  color: #000;
  margin-top: 4%;
}
.curse-overview-yaoqiu .img {
  margin-top: 3%;
}
.curse-overview-yaoqiu .div-des {
  font-size: 16px;
  color: #666;
  line-height: 30px;
  margin-top: 2%;
}
.curse-overview-table {
  width: 100%;
  min-width: 700px;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-size: 16px;
}
.curse-overview-table tr th,
.curse-overview-table tr td {
  width: 33.33%;
  line-height: 30px;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
}
.curse-overview-table tr th {
  color: #fff;
  background-color: #000;
  line-height: 30px;
  padding-top: 17px;
  padding-bottom: 17px;
}
.curse-overview-table tr:nth-child(2) {
  font-size: 18px;
  color: #000;
}
.curse-overview-table tr td {
  padding: 17px 0;
}
.curse-overview-table .span-01 {
  padding: 0 40px;
}
.curse-overview-intro-tab {
  margin-top: 3.5%;
}
.curse-overview-intro-tab > div {
  border: 1px solid #111647;
}
.curse-overview-intro-tab a {
  display: inline-block;
  min-width: 102px;
  font-size: 16px;
  color: #111647;
  line-height: 42px;
  padding: 0 15px;
  text-align: center;
  border-left: 1px solid #111647;
}
.curse-overview-intro-tab a:first-child {
  border-left: none;
}
.curse-overview-intro-tab a.on {
  color: #fff;
  background-color: #111647;
}
.curse-overview-intro-nr .div-nr-01 {
  font-size: 16px;
  color: #666;
  line-height: 30PX;
  border: 1px solid #b9b9be;
  display: none;
}
.curse-overview-intro-nr .div-nr-01:first-child {
  display: block;
}
.curse-overview-intro-nr .div-01 {
  padding: 16PX 2.1%;
  background-color: #dfe0e7;
  border-top: 1px solid #b9b9be;
}
.curse-overview-intro-nr .div-01:first-child {
  border-top: none;
}
.curse-overview-intro-nr ul li {
  border-top: 1px solid #b9b9be;
}
.curse-overview-intro-nr ul li:first-child {
  border-top: none;
}
.curse-overview-intro-nr ul li .div-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 87px 18px 2.1%;
  font-size: 18px;
  color: #000;
  cursor: pointer;
}
.curse-overview-intro-nr ul li .div-top .div-1 {
  width: 70%;
}
.curse-overview-intro-nr ul li .div-top .div-2 {
  width: 25%;
  text-align: right;
}
.curse-overview-intro-nr ul li .div-top .icon {
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
}
.curse-overview-intro-nr ul li .div-top .icon .mg {
  display: block;
}
.curse-overview-intro-nr ul li .div-top .icon .mgh {
  display: none;
}
.curse-overview-intro-nr ul li .div-top.on .icon .mg {
  display: none;
}
.curse-overview-intro-nr ul li .div-top.on .icon .mgh {
  display: block;
}
.curse-overview-intro-nr ul li .div-bottom {
  padding: 16px 2.1%;
  border-top: 1px solid #b9b9be;
  background-color: #eff0f3;
  display: none;
}
.curse-teacher-list {
  margin-top: 2.2%;
}
.curse-teacher-list li {
  margin-top: 4.8%;
}
.curse-teacher-list li:first-child {
  margin-top: 0;
}
.curse-teacher-list li .flex-dn {
  justify-content: space-between;
  align-items: center;
}
.curse-teacher-list li .img2 {
  width: 14%;
}
.curse-teacher-list li .img2 .div-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.curse-teacher-list li .img2 img {
  width: 100%;
}
.curse-teacher-list li .cont-des {
  width: 83.75%;
  font-size: 20px;
  color: #000;
  line-height: 44px;
}
.curse-teacher-list li .des {
  font-size: 16px;
  line-height: 32px;
  margin-top: 2%;
}
.curse-teacher-more {
  margin-top: 3.7%;
  font-size: 18px;
  color: #fff;
  padding: 0 45px;
  background-color: #111647;
  border: 1px solid #111647;
  line-height: 58px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
/* ================= B1关于BCU-大学介绍 ================== */
.about-intro-item:nth-child(even) {
  background-color: #f6f7f9;
}
.about-title {
  font-size: 36px;
  line-height: 1;
  color: #333;
}
.public-scroll {
  overflow: auto;
}
.public-scroll .mCSB_scrollTools .mCSB_draggerRail {
  width: 1px;
  background-color: #e6e6e6;
}
.public-scroll .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 2px;
  background-color: #111647;
}
.public-scroll .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.public-scroll .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #111647;
}
.about-history-owl {
  margin-top: 5%;
}
.about-history-owl .owl-nav button.owl-prev,
.about-history-owl .owl-nav button.owl-next {
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
  width: 20px;
  height: 33px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
}
.about-history-owl .owl-nav button.owl-prev {
  left: 0;
  background-image: url('/static/image/arrow-left.png');
}
.about-history-owl .owl-nav button.owl-next {
  right: 0;
  background-image: url('/static/image/arrow-right.png');
}
.about-history-owl .owl-dots {
  text-align: center;
  margin-top: 3.5%;
}
.about-history-owl .owl-dots .owl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #9c9c9c;
  margin: 0 5px;
}
.about-history-owl .owl-dots .owl-dot.active {
  background-color: #111647;
  border-color: #9c9c9c;
}
.about-history-flex {
  justify-content: space-between;
}
.about-history-flex .img {
  width: 47.91%;
}
.about-history-flex .img .div-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.about-history-flex .img img {
  width: 100%;
}
.about-history-flex .cont {
  position: relative;
  width: 48.83%;
  font-size: 16px;
  line-height: 30px;
}
.about-history-flex .cont-des {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding-right: 40px;
  text-align: justify;
}
.about-history-flex .cont-des .year {
  font-size: 24px;
  color: #333;
  margin-bottom: 4%;
}
.about-organ-txt {
  font-size: 16px;
  line-height: 26px;
  color: #333;
  margin-top: 4.5%;
}
.about-organ-table {
  width: 100%;
  min-width: 700px;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin-top: 2%;
}
.about-organ-table tr td {
  width: 33.33%;
  font-size: 16px;
  color: #666;
  line-height: 30px;
  padding: 12px 24px;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
}
.about-sheshi {
  margin-top: 4%;
  justify-content: space-between;
  align-items: center;
}
.about-sheshi .img {
  width: 50%;
}
.about-sheshi .img img {
  width: 100%;
}
.about-sheshi .cont {
  width: 46.25%;
}
.about-sheshi .cont .des {
  font-size: 16px;
  line-height: 30px;
  color: #666;
}
.about-sheshi .cont .link {
  margin-top: 3.5%;
}
.about-sheshi .cont .link a {
  display: inline-block;
  line-height: 40px;
  border-bottom: 1px solid #111647;
  margin-left: 93px;
  font-size: 18px;
  color: #111647;
}
.about-sheshi .cont .link a:first-child {
  margin-left: 0;
}
.about-sheshi .cont .link a img {
  position: relative;
  top: -2px;
  margin-right: 15px;
}
.about-sheshi .img {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.about-owl {
  position: relative;
  margin-left: -60px;
  margin-right: -60px;
}
.about-sheshi-owl,
.about-honor-owl {
  margin-top: 6%;
  padding-left: 60px;
  padding-right: 60px;
}
.about-sheshi-owl .owl-nav,
.about-honor-owl .owl-nav {
  margin: 0;
}
.about-sheshi-owl .owl-nav button.owl-prev,
.about-honor-owl .owl-nav button.owl-prev,
.about-sheshi-owl .owl-nav button.owl-next,
.about-honor-owl .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 33px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
}
.about-sheshi-owl .owl-nav button.owl-prev,
.about-honor-owl .owl-nav button.owl-prev {
  left: 0;
  background-image: url('/static/image/arrow-left.png');
}
.about-sheshi-owl .owl-nav button.owl-next,
.about-honor-owl .owl-nav button.owl-next {
  right: 0;
  background-image: url('/static/image/arrow-right.png');
}
.about-sheshi-01 .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.about-sheshi-01 .img img {
  width: 100%;
}
.about-sheshi-01 .cont {
  padding: 7% 6.5%;
  background-color: #f6f7f9;
}
.about-sheshi-01 .cont .title {
  font-size: 20px;
  color: #333;
}
.about-sheshi-01 .cont .des {
  font-size: 16px;
  line-height: 30px;
  color: #666;
  margin-top: 3%;
}
.about-sheshi-01 .cont .link {
  display: flex;
  justify-content: space-between;
  font-size: 0;
  margin-top: 7%;
}
.about-sheshi-01 .cont .link a {
  font-size: 18px;
  color: #111647;
  line-height: 1;
  padding-bottom: 9px;
  border-bottom: 1px solid #111647;
}
.about-sheshi-01 .cont .link a img {
  display: inline-block;
  width: auto;
  position: relative;
  top: -2px;
  margin-right: 12px;
}
.about-sheshi-01 .cont .link a:first-child img {
  margin-right: 0;
  margin-left: 12px;
}
.about-honor-owl {
  margin-top: 4.5%;
}
.about-honor-owl .year {
  font-size: 26px;
  color: #111647;
  line-height: 80px;
  background-color: #fff;
  text-align: center;
  cursor: pointer;
}
.about-honor-owl .year.on {
  color: #fff;
  background-color: #111647;
}
.about-honor-nr .div-nr-01 {
  display: none;
}
.about-honor-nr .div-nr-01:first-child {
  display: block;
}
.about-honor-list {
  margin-top: 3.5%;
  max-height: 555px;
}
.about-honor-list li {
  padding: 2.5% 0;
  border-bottom: 1px solid #ccc;
}
.about-honor-list li:first-child {
  padding-top: 0;
}
.about-honor-list li a .img {
  width: 16.66%;
}
.about-honor-list li a .img .div-img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.about-honor-list li a .img .div-img img {
  width: 100%;
}
.about-honor-list li a .cont {
  width: 76.33%;
  margin-left: 2.5%;
  line-height: 30px;
}
.about-honor-list li a .cont .title {
  font-size: 18px;
  color: #000;
}
.about-honor-list li a .cont .des {
  font-size: 16px;
  color: #666;
  margin-top: 1%;
}
/* ================= D2课程安排-BCUIC预科课程 ================== */
.course-expect-item:nth-child(even) {
  background-color: #f6f7f9;
}
.course-expect-into {
  justify-content: space-between;
}
.course-expect-into .img {
  width: 45.83%;
}
.course-expect-into .cont {
  width: 50.83%;
  font-size: 16px;
  line-height: 36px;
  color: #666;
}
.course-expect-into .cont .public-title {
  margin-bottom: 5.5%;
}
.course-expect-into .cont li {
  padding-left: 20px;
}
.course-expect-into .cont li .num {
  float: left;
  margin-left: -20px;
}
.course-expect-table {
  width: 100%;
  min-width: 700px;
  font-size: 16px;
  line-height: 30px;
  color: #666;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.course-expect-table tr th,
.course-expect-table tr td {
  padding: 18px 0;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
}
.course-expect-table tr th {
  font-size: 18px;
  color: #fff;
  background-color: #111647;
}
.course-expect-table .span-01 {
  padding: 0 50px;
}
.course-expect-owl {
  padding-left: 60px;
  padding-right: 60px;
}
.course-expect-owl .owl-nav {
  margin: 0;
}
.course-expect-owl .owl-nav button.owl-prev,
.course-expect-owl .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 33px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
}
.course-expect-owl .owl-nav button.owl-prev {
  left: 0;
  background-image: url('/static/image/arrow-left.png');
}
.course-expect-owl .owl-nav button.owl-next {
  right: 0;
  background-image: url('/static/image/arrow-right.png');
}
.course-expect-owl .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.course-expect-owl .img img {
  width: 100%;
}
.course-expect-yuyantable {
  margin-top: 3%;
}
.course-expect-zhusu-des {
  font-size: 16px;
  line-height: 30px;
  color: #666;
  margin-top: 2.2%;
}
.course-expect-zhusu-img {
  margin-top: 3%;
}
.course-expect-kc {
  margin-top: 4.2%;
}
.course-expect-zy {
  margin-left: -10px;
  margin-right: -10px;
}
.course-expect-01 {
  margin-left: 10px;
  margin-right: 10px;
}
.course-expect-01 .div-top {
  height: 70px;
  background: url('/static/image/bg-02.jpg') right bottom no-repeat #111647;
}
.course-expect-01 .div-bottom {
  padding: 3.5% 5.4% 3.4%;
  background-color: #fff;
  box-shadow: 0 0 16px rgba(17, 22, 71, 0.11);
}
.course-expect-01 .div-bottom .title {
  font-size: 24px;
  color: #333;
  line-height: 1;
}
.course-expect-01 .div-bottom ul {
  padding-top: 0.8%;
}
.course-expect-01 .div-bottom ul li {
  width: 25%;
  padding-right: 3%;
  margin-top: 1%;
}
.course-expect-01 .div-bottom ul li a {
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  color: #666;
  padding-left: 23px;
  background: url('/static/image/icon-21.png') left 10px no-repeat;
}
.masonry .item {
  margin: 0 0 20px 0;
  transition: all 220ms;
  float: left;
  width: 50%;
}
.masonry .item .course-expect-01 .div-bottom {
  padding-top: 7.9%;
  padding-bottom: 6.7%;
}
.masonry .item .course-expect-01 .div-bottom ul {
  padding-top: 2.8%;
}
.masonry .item .course-expect-01 .div-bottom ul li {
  width: 48%;
  margin-top: 1.5%;
}
.wall {
  display: block;
  position: relative;
}
.wall-column {
  display: block;
  position: relative;
  /*width: 33.333333%;*/
  width: 49.58%;
  float: left;
  padding: 0 12px;
  box-sizing: border-box;
}
.wall-more {
  width: 120px;
  line-height: 42px;
  border: 1px solid #111647;
  color: #111647;
  margin-top: 2%;
  font-size: 16px;
}
.wall-more:hover {
  color: #fff;
  background-color: #111647;
}
@media (max-width: 767px) {
  .wall-column {
    width: 100%;
    float: none;
  }
}
.index-title .a-more:hover,
.index-news-more a:hover {
  background-color: #111647;
  border-color: #111647;
  color: #fff;
}
.index-news-owl .owl-nav button:hover.owl-prev {
  background-image: url('/static/image/arrow-left2h.png');
}
.index-news-owl .owl-nav button:hover.owl-next {
  background-image: url('/static/image/arrow-right2h.png');
}
.index-active-arrow .prev:hover {
  background-image: url('/static/image/arrow-lefth.png');
}
.index-active-arrow .next:hover {
  background-image: url('/static/image/arrow-righth.png');
}
.index-active-01 .div-word .more a:hover {
  background-color: #fff;
  color: #111647;
}
.index-link-list li a:hover {
  background-image: url('/static/image/icon-02h.png');
}
.index-link-list li a:hover::before {
  right: 0;
}
.public-address a:hover,
.public-nav a:hover {
  color: #111647;
}
.school-students-a1:hover .img {
  transform: scale(1.05);
}
.school-students-a1:hover .title {
  background-color: #011f3b;
}
.school-students-a1:hover .title .name {
  color: #fff;
}
.school-students-a1:hover .title .des {
  color: #fff;
}
.news-a1:hover .img .div-img {
  transform: scale(1.05);
}
.news-a1:hover .cont .title {
  color: #011f3b;
}
.news-a1:hover .cont .more span {
  background: none;
  color: #011f3b;
}
.news-a1.ling:hover .cont .more span {
  color: #fff;
  background-color: #011f3b;
}
.hschool-link a:hover {
  background: none;
  color: #111647;
}
.about-hzbx-01 .more a:hover {
  background: none;
  color: #111647;
}
.school-active-art .a-yuyue:hover {
  background: none;
  color: #111647;
}
.course-02 .a-more:hover {
  background: none;
  color: #111647;
}
.course-more .cont .a-more:hover {
  background-color: #fff;
  color: #333;
}
.guide-f01:hover {
  transform: translateY(-5px);
}
.guide-a1:hover {
  color: #111647;
  background: none;
}
.guide-a1:hover .icon .mg {
  display: none;
}
.guide-a1:hover .icon .mgh {
  display: inline-block;
}
.about-xbintro-01 .ul-list a:hover {
  color: #fff;
  background: url('/static/image/icon-07.png') right 5% center no-repeat #111647;
}
.news-art-list .ul-list a:hover .cont {
  color: #111647;
}
.down-menu li a:hover {
  color: #111647;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background: url('/static/image/icon-arrow2.png') right 36px center no-repeat;
}
.buc-more a:hover {
  color: #111647;
  background: none;
}
.online-apply-more a:hover {
  color: #111647;
  background: none;
}
.buctest-more a:hover {
  color: #111647;
  background: none;
}
.curse-teacher-more:hover {
  color: #111647;
  background: none;
}
.about-history-owl .owl-nav button:hover.owl-prev,
.about-sheshi-owl .owl-nav button:hover.owl-prev,
.about-honor-owl .owl-nav button:hover.owl-prev,
.course-expect-owl .owl-nav button:hover.owl-prev {
  background-image: url('/static/image/arrow-lefth2.png');
}
.about-history-owl .owl-nav button:hover.owl-next,
.about-sheshi-owl .owl-nav button:hover.owl-next,
.about-honor-owl .owl-nav button:hover.owl-next,
.course-expect-owl .owl-nav button:hover.owl-next {
  background-image: url('/static/image/arrow-righth2.png');
}
.about-honor-list li a:hover .img .div-img {
  transform: scale(1.05);
}
.about-honor-list li a:hover .cont .title {
  color: #111647;
}

