/* reset */

body,
html {
  height: 100%;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}

abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  background: 0 0;
  vertical-align: baseline;
  font-size: 100%;
}

body {
  background: #f6f6f6;
  overflow-x: hidden;
  color: #333;
  font-size: 14px;
  font-family: "思源黑体";
  position: relative;
}

h1 {
  font-size: 24px;
  font-weight: normal;
}

h2 {
  font-size: 22px;
  font-weight: normal;
}

h3 {
  font-size: 20px;
  font-weight: normal;
}

h4 {
  font-size: 18px;
  font-weight: normal;
}

h5 {
  font-size: 16px;
  font-weight: normal;
}

h6 {
  font-size: 15px;
  font-weight: normal;
}

a,
a:active,
a:hover,
a:visited {
  outline: 0;
  text-decoration: none;
}

a {
  color: #333;
}

a:hover {
  color: #1296db;
}

li {
  list-style: none;
}

.clearfix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.hide {
  display: none;
}

input,
textarea {
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  outline: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

input:focus,
textarea:focus {
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

  -webkit-user-modify: read-write-plaintext-only;
}

button {
  outline: none;
}

textarea {
  resize: none;
}

input::-webkit-input-placeholder {
  color: #666;
}

input::-moz-placeholder {
  color: #666;
}

input:-ms-input-placeholder {
  color: #666;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

hr {
  display: block;
  width: 100%;
  height: 5px;
}

.clamp-one {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.clamp-two {
  line-height: 1.6;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  white-space: normal;
}

/* hover animation  */

a,
.submenu-box,
.contact .page-form .cancel-btn,
.contact .page-form .submit-btn,
.consult .consult-btn,
.major-list li .item,
.service-list li .overlay {
  text-decoration: none;

  -moz-transition: all 0.3s ease-in;

  -webkit-transition: all 0.3s ease-in;

  transition: all 0.3s ease-in;
}

/* hover img  */

.hover-img {
  display: block;
  overflow: hidden;
}

.hover-img img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.hover-img:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
}

/* grid  */

.row {
  margin-left: -7px;
  margin-right: -7px;
  display: flex;
  flex-wrap: wrap;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  position: relative;
  min-height: 1px;
  padding-left: 7px;
  padding-right: 7px;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

/* flex */

.flex {
  flex: 1;
}

.flexLeft {
  display: flex;
}

.flexLeftTop {
  display: flex;
  align-items: flex-start;
}

.flexLeftBottom {
  display: flex;
  align-items: flex-end;
}

.flexLeftCenter {
  display: flex;
  align-items: center;
}

.flexRightCenter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flexCenter {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flexBetween {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flexColumnBetween {
  display: flex;
  justify-content: space-between;
}

.flexWrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.flexWrapTop {
  display: flex;
  flex-wrap: wrap;
}

.flexColumnCenter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.textcen {
  text-align: center;
}

/* font-size */

.fz-16 {
  font-size: 16px;
}

.fz-18 {
  font-size: 18px;
}

.fz-20 {
  font-size: 20px;
}

.fz-28 {
  font-size: 28px;
}

.fz-30 {
  font-size: 30px;
}

.fz-46 {
  font-size: 46px;
}

/* space */

.ml-20 {
  margin-left: 20px;
}

.mb-50 {
  margin-bottom: 50px;
}

/* color */

.navy-blue {
  color: #204c7a;
}

.blue {
  color: #1296db;
}

.white {
  color: #fff;
}

.gray-6 {
  color: #666;
}

/* btn */

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 192px;
  margin: 50px auto 0;
  border: 0;
  cursor: pointer;
  text-align: center;
  padding: 0 10px;
  line-height: 66px;
  background: #fff;
  font-size: 22px;
  color: #204c7a;
}

.btn:hover {
  background: #204c7a;
  color: #fff;
}

.btn .arrow {
  width: 30px;
  height: 30px;
  margin-left: 7px;
  background: url("../images/gengduo@2x.png") no-repeat 0 0 / 30px auto;
}

.btn:hover .arrow {
  background-position: 0 -30px;
}

/* container */

.container {
  width: 1200px;
  padding: 0;
  position: relative;
  margin: 0 auto;
}

/* header */

.header {
  height: 160px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #f6f6f6;
  box-shadow: 0px 0px 6px 1px rgba(106, 106, 106, 0.11);
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.header.fixed {
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.header .header-top .container {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .header-top .container .phone {
  color: #204c7a;
  display: flex;
  align-items: center;
}

.header .header-top .container .icon-phone {
  width: 30px;
  height: 30px;
  margin-left: 15px;
  background: url("../images/icon_dianhua@2x.png") no-repeat 0 0 / 30px auto;
}

.icon-nav {
  display: none;
}

.nav {
  background: #204c7a;
}

.nav ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav li {
  flex: 1;
}

.nav li > a {
  line-height: 30px;
  display: block;
  text-align: center;
  padding: 15px 10px;
  font-size: 16px;
  color: #fff;
}

.nav li.active > a,
.nav li.open > a,
.nav li > a:hover {
  font-weight: bold;
  background: #002a55;
}

.js_accordion_item {
  position: relative;
}

.submenu-box {
  text-align: center;
  min-width: 100%;
  width: auto;
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.submenu {
  background-color: #204c7a;
  color: #fff;
  width: 100%;
  margin: 0;
}

.nav li:hover .submenu-box {
  opacity: 1;
  visibility: visible;
}

.submenu dd {
  display: block;
  position: relative;
  text-align: left;
}

.submenu dd a {
  display: block;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 40px;
  padding: 0 15px;
  text-transform: capitalize;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.submenu dd.active a,
.submenu dd:hover a {
  opacity: 1;
  color: #fff;
  background: #002a55;
}

.mobile-level-button {
  display: none;
  width: 46px;
  height: 40px;
  position: relative;
}

.mobile-level-button::after {
  content: "";
  border: solid #fff;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-top: -6px;
  margin-right: -6px;
  border-width: 0 2px 2px 0;
  padding: 4px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.open > a span {
  color: #fff;
}

.open .mobile-level-button::after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  margin-top: -2px;
}

.nav li.active > a .mobile-level-button {
  border-color: #fff;
}

.mobile {
  display: none;
}

/* home */

.main {
  margin-top: 160px;
}

.page-section {
  padding: 78px 0;
}

.headline {
  text-align: center;
}

.headline h2 {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 12px;
}

.headline .subtitle {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #999;
}

.headline .subtitle.fz-36 {
  font-size: 36px;
}

.service-list ul {
  display: flex;
  flex-wrap: wrap;
}

.service-list li {
  width: 25%;
}

.service-list li .item {
  display: block;
  position: relative;
  overflow: hidden;
}

.service-list li .item figure {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-list li .overlay {
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 50%;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(32, 76, 122, 0.8);
}

.service-list li .caption {
  width: 100%;
  position: absolute;
  left: 0;
  top: 38%;
  z-index: 3;
  text-align: center;
  color: #fff;
}

.service-list li .caption h3 {
  line-height: 1.2;
  margin-bottom: 20px;
  font-size: 36px;
}

.service-list li .caption p {
  line-height: 1.2;
  text-transform: uppercase;
}

.service-list li .item:hover .overlay {
  opacity: 1;
  bottom: 0;
}

.service-list li .item figure img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.service-list li .item:hover figure img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
}

.section-education {
  background: url("../images/cms_images/mingxiao.png") no-repeat 0 0 / cover;
}

.education-list .row {
  display: flex;
  flex-wrap: wrap;
}

.education-list li {
  width: 25%;
}

.education-list li .item {
  display: block;
  position: relative;
  overflow: hidden;
}

.education-list li .item figure {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.education-list li .overlay {
  position: absolute;
  left: 0;
  top: 86%;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.education-list li .caption {
  position: absolute;
  left: 0;
  top: 86%;
  width: 100%;
  height: 100%;
  z-index: 3;
  padding: 0 20px;
  color: #fff;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.education-list li .caption h3 {
  line-height: 54px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 5px;
  font-size: 26px;
  text-align: center;
}

.education-list li .caption p {
  line-height: 1.8;
  text-indent: 32px;
}

.education-list li .item:hover .overlay {
  top: 0;
}

.education-list li .item:hover .caption {
  top: 0;
}

.education-list li .item:hover .caption h3 {
  padding-top: 35px;
}

.education-list li .item figure img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.education-list li .item:hover figure img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
}

.major-list .row {
  display: flex;
  flex-wrap: wrap;
}

.major-list li {
  width: 20%;
  position: relative;
}

.major-list li .item {
  opacity: 0;
  position: relative;
  z-index: 2;
}

.major-list li .item a {
  display: block;
  line-height: 52px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  background: #204c7a;
}

.major-list li .item a:hover {
  background: #002a55;
}

.major-list li .item .bot {
  border-top: #1a6aa1 solid 1px;
}

.major-list li .item .bot .more {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.major-list li .item .bot .more .arrow {
  width: 30px;
  height: 30px;
  margin-left: 7px;
  background: url("../images/gengduo@2x.png") no-repeat 0 -30px / 30px auto;
}

.major-list li:hover .item {
  opacity: 1;
}

.major-list li .caption {
  width: 100%;
  padding: 0 10px;
  line-height: 1;
  color: #666;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.major-list li .caption i {
  display: block;
  width: 54px;
  height: 54px;
  margin: 0 auto 20px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 54px auto;
}

.major-list li .icon-economy {
  background-image: url("../images/jingji@2x.png");
}

.major-list li .icon-project {
  background-image: url("../images/gongcheng@2x.png");
}

.major-list li .icon-computer {
  background-image: url("../images/jisuanji@2x.png");
}

.major-list li .icon-design {
  background-image: url("../images/sheji@2x.png");
}

.section-promote {
  background: url("../images/cms_images/xuelidi.png") no-repeat 0 0 / cover;
}

.promote {
  padding-top: 42px;
}

.promote .promote-group {
  display: flex;
  justify-content: center;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: -42px;
}

.promote .promote-group .flipper {
  width: 224px;
  margin: 0 10px;
  overflow: hidden;
  position: relative;
  height: 260px;
  transition: 0.6s;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

.promote .promote-group .flipper:hover {
  transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

.promote .promote-group .flipper .caption {
  opacity: 1;
  width: 100%;
  padding: 0 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.promote .promote-group .flipper .caption i {
  display: block;
  width: 70px;
  height: 70px;
  margin: 0 auto 10px;
}

.promote .promote-group .flipper .caption p {
  line-height: 1;
}

.promote .promote-group .flipper .back {
  opacity: 0;
  font-size: 28px;
  color: #fff;
  width: 100%;
  padding: 0 10px;
  position: absolute;
  left: 0;
  margin-top: -20px;
  top: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

.promote .promote-group .flipper:hover .caption {
  opacity: 0;
}

.promote .promote-group .flipper:hover .back {
  opacity: 1;
}

.promote .promote-group .hexagon {
  position: relative;
  width: 130px;
  height: 224px;
  margin: 18px 0 0 47px;
  background-color: white;
  transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.promote .promote-group .hexagon:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  right: 130px;
  border-width: 112px 65px;
  border-style: solid;
  border-color: transparent white transparent transparent;
}

.promote .promote-group .hexagon:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  left: 130px;
  border-width: 112px 65px;
  border-style: solid;
  border-color: transparent transparent transparent white;
  top: 0;
}

.promote .promote-group .flipper:hover .hexagon {
  background-color: rgba(0, 0, 0, 0.5);
}

.promote .promote-group .flipper:hover .hexagon:before {
  border-color: transparent rgba(0, 0, 0, 0.5) transparent transparent;
}

.promote .promote-group .flipper:hover .hexagon:after {
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.5);
}

.promote .swiper-slide .caption {
  text-align: center;
  background: #fff;
  padding: 15px 0;
}

.promote .swiper-slide .caption i {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
}

.promote .swiper-slide .caption p {
  line-height: 1;
}
.banner-img {
  height: 450px;
  width: 100%;
  overflow: hidden;
}

.apply-list .item {
  display: block;
  position: relative;
}

.apply-list .item figure {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.apply-list .item figure img {
  position: relative;
  z-index: 1;
}

.apply-list .item .overlay {
  position: absolute;
  left: 0;
  top: 80%;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.apply-list .item h3 {
  color: #fff;
  width: 100%;
  position: absolute;
  left: 0;
  top: 83%;
  text-align: center;
  z-index: 3;
  font-size: 26px;
}

.apply-list .item .overlay,
.apply-list .item h3 {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.apply-list .item:hover .overlay {
  top: 0;
}

.apply-list .item:hover h3 {
  top: 0;
  top: 50%;
  margin-top: -18px;
}

.apply-list .item p {
  line-height: 1.6;
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

.apply-list .item figure img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.apply-list .item:hover figure img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
}

.consult {
  margin: 45px auto 0;
  width: 494px;
}

.consult a {
  color: #204c7a;
  display: flex;
  font-size: 20px;
  border: #204c7a solid 1px;
}

.consult .consult-text {
  flex: 1;
  text-align: center;
  height: 56px;
  line-height: 54px;
  text-align: center;
  color: #204c7a;
}

.consult .consult-btn {
  background: #204c7a;
  width: 192px;
  line-height: 54px;
  text-align: center;
  color: #fff;
}

.consult a:hover .consult-btn {
  background: #002a55;
}

.section-news {
  background: #fff;
}

.news-list .row {
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: -40px;
}

.news-list .col-xs-6 {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 40px;
}

.news-list .box {
  height: 100%;
  background: #f9f9f9;
  padding: 20px 24px;
}

.news-list .box dt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  border-bottom: #eee solid 1px;
}

.news-list .box dt h3 {
  border-bottom: #1296db solid 4px;
  line-height: 1;
  padding: 10px 0 16px;
  font-size: 24px;
}

.news-list .box dt .more {
  font-size: 16px;
  color: #999;
}

.news-list .box dt .more:hover {
  color: #204c7a;
}

.news-list .box dd a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 20px;
  padding: 15px 0;
  font-size: 18px;
  color: #666;
}

.news-list .box dd a:hover {
  color: #204c7a;
}

.section-contact {
  background: url("../images/cms_images/dibutu.png") no-repeat 0 0 / cover;
  color: #fff;
}

.contact {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

.contact .contact-text {
  width: 47.5%;
}

.contact .contact-text p {
  line-height: 1.6;
  text-indent: 32px;
}

.contact .contact-form {
  width: 50%;
}

.contact .page-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact .page-form .form-group {
  width: 48%;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  background: #fff;
}

.contact .page-form .form-group.remark-group {
  width: 100%;
}

.contact .page-form .form-group label {
  color: #666;
  padding: 0 10px;
}

.contact .page-form .form-group .form-control {
  flex: 1;
  overflow: hidden;
  font-size: 14px;
  height: 42px;
  line-height: 22px;
  padding: 10px;
  border: 0;
  width: 100%;
}

.contact .page-form .btn-group {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
}

.contact .page-form .cancel-btn {
  cursor: pointer;
  color: #fff;
  width: 202px;
  height: 42px;
  line-height: 42px;
  background: #a5a5a5;
  border: 0;
  text-align: center;
  font-size: 18px;
}

.contact .page-form .submit-btn {
  cursor: pointer;
  color: #fff;
  width: 202px;
  height: 42px;
  line-height: 42px;
  background: #204c7a;
  border: 0;
  text-align: center;
  font-size: 18px;
}

.contact .page-form .cancel-btn:hover {
  background: #fff;
  color: #204c7a;
}

.contact .page-form .submit-btn:hover {
  background: #fff;
  color: #204c7a;
}

/*------------- footer ---------------*/

.footer {
  background: #204c7a;
  color: #fff;
  padding: 40px 0;
}

.footer a {
  color: #fff;
}

.footer a:hover {
  color: #1296db;
}

.footer .footer-nav {
  margin-bottom: 40px;
}

.footer .footer-nav ul {
  display: flex;
  flex-wrap: wrap;
}

.footer .footer-nav li {
  flex: 1;
  font-size: 18px;
}

.footer .footer-bot {
  display: flex;
}

.footer .footer-bot .footer-bot-left {
  flex: 1;
  line-height: 1.2;
  overflow: hidden;
}

.footer .footer-bot .footer-bot-left p {
  margin-bottom: 20px;
}

.footer .footer-bot .footer-bot-right {
  display: flex;
}

.footer .footer-bot .footer-bot-right .card {
  width: 80px;
  text-align: center;
}

.footer .footer-bot .footer-bot-right .card img {
  margin-bottom: 10px;
}

.footer .footer-bot .footer-bot-right .card p {
  font-size: 12px;
  color: #fff;
}

/* section-news-list */

.section-breadcrumb-wrap {
  background-color: #f0f0f0;
  padding: 8px 29px;
}

/* .section-breadcrumb{width: 100%;} */

.section-breadcrumb img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.section-breadcrumb .breadcrumb-location {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #666666;
  line-height: 30px;
}

.section-breadcrumb .breadcrumb-location a {
  color: #666;
  margin: 0 5px;
}

.section-breadcrumb .breadcrumb-location a:hover {
  text-decoration: underline;
}

.section-breadcrumb .breadcrumb-location .active_link {
  color: #0294d7;
}

.section-news-list .news-list-content {
  margin: 50px 0 80px;
  background: #ffffff;
}

.list-content-title-wrap {
  padding: 38px 0 0 26px;
}

.list-content-title {
  position: relative;
}

.list-content-title .content-title-text {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 16px;
  font-size: 24px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
  line-height: 30px;
}

.list-content-title .content-title-text::after {
  width: 89px;
  height: 6px;
  background: #204c7a;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
}

.section-news-list .news-list-content .news-list-item {
  padding: 33px 33px 33px 26px;
  border-bottom: 1px solid #eeeeee;
}

.section-news-list .news-list-content .news-list-item:last-child {
  border-bottom: none;
}

.section-news-list .news-list-content .news-list-item .news-item-date {
  font-size: 22px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #999999;
  line-height: 30px;
}

.section-news-list .news-list-content .news-list-item .news-item-info {
  margin-left: 22px;
}

.section-news-list
  .news-list-content
  .news-list-item
  .news-item-info
  .news-item-info-text {
  font-family: Microsoft YaHei;
  font-weight: 400;
  line-height: 30px;
}

.section-news-list
  .news-list-content
  .news-list-item
  .news-item-info
  .news-item-info-text
  .info-text-title {
  font-size: 18px;
  color: #666666;
}

.section-news-list
  .news-list-content
  .news-list-item
  .news-item-info
  .news-item-info-text
  .maxWidth {
  max-width: 900px;
}

.section-news-list
  .news-list-content
  .news-list-item
  .news-item-info
  .news-item-info-text
  .info-text-content {
  font-size: 16px;
  color: #999999;
  margin-top: 19px;
}

.section-news-list
  .news-list-content
  .news-list-item
  .news-item-info
  .news-item-info-text
  .info-text-content
  .news-item-info-more
  a {
  color: #204c7a;
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  line-height: 21px;
}

.section-news-list
  .news-list-content
  .news-list-item
  .news-item-info
  .news-item-info-text
  .info-text-content
  .news-item-info-more
  a:hover {
  text-decoration: underline;
}

.section-news-list .section-news-detail {
  margin: 50px 0 80px;
  background: #ffffff;
  padding: 49px 0 31px;
}

.section-news-list .section-news-detail .news-detail-title {
  padding: 0 20px;
  font-size: 26px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
}

.section-news-list .section-news-detail .news-detail-info {
  padding: 0 20px 15px;
  margin-top: 20px;
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #999999;
  line-height: 30px;
}

.section-news-list .section-news-detail .news-detail-info span {
  margin-right: 29px;
}

.section-news-list .section-news-detail .news-detail-info span:last-child {
  margin-right: 0;
}

.section-news-list .section-news-detail .news-detail-content {
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  border-top: 1px solid #f0f0f0;
  color: #333333;
  line-height: 40px;
  padding: 28px 31px 0 27px;
}

/* section-contact-info */

.section-contact-info .contact-info-content {
  margin: 49px 0 80px;
}

.section-contact-info .contact-info-content .content-form {
  background-color: #fff;
  padding: 30px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  margin-top: 30px;
}

.section-contact-info .contact-info-content .content-form .form-title {
  font-size: 24px;
  color: #204c7a;
}

.section-contact-info .contact-info-content .content-form .form-tips {
  font-size: 18px;
  color: #666666;
  margin: 34px 0 19px;
}

.section-contact-info
  .contact-info-content
  .content-form
  .form-group
  .form-tel {
  width: 480px;
  height: 120px;
  background: #fcfcfc;
  border: 1px solid #dadada;
}

.section-contact-info .contact-info-content .content-form .btn-wrap {
  width: 480px;
}

.section-contact-info .contact-info-content .content-form .form-btn {
  background: #002a55;
  font-size: 22px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  padding: 20px 50px;
  color: #ffffff;
  margin: 30px 0 0 0px;
  display: inline-block;
}

/* section-college-info */

.section-college-info .college-info {
  margin: 50px 0 79px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
  line-height: 30px;
}

.section-college-info .college-info .college-info-title {
  font-size: 26px;
}

.section-college-info .college-info .college-info-text {
  font-size: 16px;
  text-indent: 2em;
  margin: 23px 0 32px;
}

.section-college-info .college-info .college-info-img {
  height: auto;
  width: 100%;
}

/* section-education-info */

.section-education-info .education-info-content {
  margin: 51px 0 80px;
}

.section-education-info .education-info-content .education-table-content {
  margin-top: 30px;
  font-family: Microsoft YaHei;
  font-size: 22px;
  font-weight: 400;
}

.section-education-info
  .education-info-content
  .education-table-content
  .table-content-header
  .table-header-item {
  padding: 24px 0;
  color: #ffffff;
  border-right: 1px solid #f6f6f6;
  border-bottom: 1px solid #f6f6f6;
}

.section-education-info
  .education-info-content
  .education-table-content
  .table-content-header
  .table-header-item:first-child {
  width: 257px;
}

.section-education-info
  .education-info-content
  .education-table-content
  .table-content-header
  .table-header-item:nth-child(n) {
  background-color: #204c7a;
}

.section-education-info
  .education-info-content
  .education-table-content
  .table-content-header
  .table-header-item:nth-child(2n) {
  background-color: #487cb2;
}

.section-education-info
  .education-info-content
  .education-table-content
  .tbwd257 {
  width: 257px;
}

.section-education-info
  .education-info-content
  .education-table-content
  .tbwd147 {
  width: 147px;
}

.section-education-info
  .education-info-content
  .education-table-content
  .tbwd187 {
  width: 187px;
}

.section-education-info
  .education-info-content
  .education-table-content
  .tbwd160 {
  width: 160px;
}

.section-education-info
  .education-info-content
  .education-table-content
  .table-content-body {
  background-color: #fff;
  border-bottom: 1px solid #f6f6f6;
}

.section-education-info
  .education-info-content
  .education-table-content
  .table-content-body:last-child {
  border-bottom: none;
}

.section-education-info
  .education-info-content
  .education-table-content
  .table-content-body
  .table-body-item {
  padding: 24px 0;
  color: #333333;
  background-color: #fff;
  border-right: 1px solid #f6f6f6;
}

/* section-profession-info */

.section-profession-info .profession-info-content {
  margin: 49px 0 80px;
}

.section-profession-info .profession-info-content .profession-list-content {
  margin-top: 30px;
}

.section-profession-info
  .profession-info-content
  .profession-list-content
  .profession-list-item {
  margin-bottom: 30px;
  background-color: #fff;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
}

.section-profession-info
  .profession-info-content
  .profession-list-content
  .profession-list-item
  .profession-item-title {
  position: relative;
  border-bottom: 1px solid #f6f6f6;
  padding: 24px 38px 23px;
  font-size: 22px;
  line-height: 22px;
}

.section-profession-info
  .profession-info-content
  .profession-list-content
  .profession-list-item
  .profession-item-title::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 70px;
  background: #204c7a;
  left: 0;
  top: 0;
}

.section-profession-info
  .profession-info-content
  .profession-list-content
  .profession-list-item
  .profession-item-content {
  padding: 0px 68px;
}

.section-profession-info
  .profession-info-content
  .profession-list-content
  .profession-list-item
  .profession-item-content
  .profession-item-info {
  margin-right: 80px;
  font-size: 18px;
  padding: 36px 0;
}

.section-profession-info
  .profession-info-content
  .profession-list-content
  .profession-list-item
  .profession-item-content
  .profession-item-info:last-child {
  margin-right: 0px;
}

/* section-collegeSchool-info */

.section-collegeSchool-info .collegeSchool-info-content {
  margin: 51px 0 67px;
}

.section-collegeSchool-info .collegeSchool-info-content .education-list {
  margin-top: 40px;
}

.section-collegeSchool-info
  .collegeSchool-info-content
  .education-list
  .row
  li {
  margin-bottom: 13px;
}

/*------------- mobile nav ---------------*/

.icon-nav {
  display: none;
  width: 24px;
  height: 24px;
}

.hamburger {
  display: flex;
  padding-top: 0;
  width: 24px;
  height: 24px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hamburger .icon-bar {
  display: block;
  margin: 3px auto;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #333;
}

.hamburger-popup {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease-out 0.2s;
  flex-direction: column;
}

.hamburger-popup.show-popup {
  display: block;
  width: 240px;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease-out 0.2s;
  flex-direction: column;
}

.navbar-show-shadow {
  display: none;
}

.navbar-show .navbar-show-shadow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.mobile-nav-close {
  display: block;
  float: right;
  margin-right: 12px;
  width: 24px;
  height: 24px;
  background: url("../images/icon-close@2x.png") no-repeat 50% 50% / 24px auto;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.navbar-show .mobile-nav-close {
  opacity: 1;
}

.mobile-nav {
  display: none;
  padding-top: 12px;
}

@media (max-width: 1199px) {
  /* container */

  .container {
    width: 100%;
    padding: 0 15px;
  }

  .fz-30 {
    font-size: 26px;
  }

  .fz-28 {
    font-size: 24px;
  }

  .nav .container {
    padding: 0;
  }

  .promote {
    padding-top: 31px;
  }

  .promote .promote-group {
    margin-top: -31px;
  }

  .promote .promote-group .flipper {
    width: 174px;
    height: 200px;
  }

  .promote .promote-group .flipper .caption i {
    width: 50px;
    height: 50px;
  }

  .promote .promote-group .flipper .back {
    margin-top: -14px;
    font-size: 24px;
  }

  .promote .promote-group .hexagon {
    position: relative;
    width: 100px;
    height: 174px;
    margin: 13px 0 0 37px;
  }

  .promote .promote-group .hexagon:before {
    right: 100px;
    border-width: 87px 50px;
  }

  .promote .promote-group .hexagon:after {
    left: 100px;
    border-width: 87px 50px;
  }

  .section-news-list
    .news-list-content
    .news-list-item
    .news-item-info
    .news-item-info-text
    .maxWidth {
    max-width: 800px;
  }

  .section-education-info .education-info-content .education-table-content {
    overflow-x: scroll;
  }

  .section-education-info
    .education-info-content
    .education-table-content
    .table-content-header {
    width: 1191px;
  }

  .section-education-info
    .education-info-content
    .education-table-content
    .table-content-body {
    width: 1191px;
  }
}

@media (max-width: 1023px) {
  .logo {
    width: 240px;
  }

  .header {
    height: 60px;
  }

  .header.fixed {
    animation-name: none;
  }

  .header .header-top .container {
    padding-top: 19px;
    padding-bottom: 19px;
  }

  .header .header-top .container .phone {
    display: none;
  }

  .icon-nav {
    display: block;
    position: fixed;
    right: 15px;
    top: 15px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    z-index: 2000;
    display: block;
    overflow: auto;
    padding: 0 0 40px;
    width: 80%;
    height: 100%;
    border: 0;
    background: rgba(32, 76, 122, 0.9);
    -webkit-transition: right 0.5s ease;
    transition: right 0.5s ease;
    -ms-transition: right 0.5s ease;
  }

  .navbar-show .nav {
    right: 0;
  }

  .mobile-nav {
    display: block;
    overflow: hidden;
  }

  .mobile-level-button {
    display: block;
  }

  .nav ul {
    display: block;
    padding-top: 12px;
  }

  .nav li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .nav li > a {
    padding: 10px 20px;
    text-align: left;
    line-height: 20px;
    color: #fff;
    font-size: 14px;
    flex: 1;
  }

  .nav li:hover a,
  .nav li.active a {
    color: #fff;
    font-weight: bold;
    border-bottom: 0;
    background: transparent;
  }

  .submenu-box {
    display: none;
    position: static;
    -webkit-transform: none;
    transform: none;
  }

  .submenu {
    background-color: transparent;
  }

  .submenu dd a {
    text-align: left;
    padding-left: 32px;
  }

  .main {
    margin-top: 60px;
  }

  .fz-30 {
    font-size: 20px;
  }

  .fz-28 {
    font-size: 18px;
  }

  .headline h2 {
    font-size: 26px;
  }

  .service-list li .caption h3 {
    font-size: 26px;
  }

  .headline .subtitle {
    font-size: 36px;
  }

  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  .section-news-list
    .news-list-content
    .news-list-item
    .news-item-info
    .news-item-info-text
    .maxWidth {
    max-width: 600px;
  }
}

@media (max-width: 850px) {
  .section-news-list
    .news-list-content
    .news-list-item
    .news-item-info
    .news-item-info-text
    .maxWidth {
    max-width: 450px;
  }
}

@media (max-width: 767px) {
  .fz-30 {
    font-size: 18px;
  }

  .fz-20 {
    font-size: 16px;
  }

  .fz-18 {
    font-size: 14px;
  }

  .fz-16 {
    font-size: 13px;
  }

  .mb-50 {
    margin-bottom: 25px;
  }

  .page-section {
    padding: 30px 0;
  }

  .headline h2 {
    margin-bottom: 8px;
    font-size: 20px;
  }

  .headline .subtitle {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .service-list ul {
    margin-left: -5px;
    margin-right: -5px;
  }

  .service-list li {
    width: 50%;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
  }

  .service-list li .caption h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .education-list .row {
    margin-left: -5px;
    margin-right: -5px;
  }

  .education-list li {
    width: 50%;
    margin-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .education-list li .overlay {
    display: none;
  }

  .education-list li .caption {
    position: static;
    padding: 15px 0 0;
  }

  .education-list li .caption h3 {
    line-height: 20px;
    overflow: visible;
    font-size: 20px;
  }

  .education-list li .item:hover figure img {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
  }

  .education-list li .item:hover .caption h3 {
    padding-top: 0;
  }

  .education-list li .caption p {
    text-indent: 28px;
  }

  .btn {
    margin: 0 auto;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    width: 140px;
  }

  .btn .arrow {
    width: 20px;
    height: 20px;
    background-size: 20px auto;
  }

  .btn:hover .arrow {
    background-position: 0 -20px;
  }

  .major-list .col-xs-2 {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .major-list li .item {
    opacity: 1;
    width: 50%;
  }

  .major-list li .caption {
    width: 50%;
    position: static;
    -webkit-transform: none;
    transform: none;
  }

  .major-list li .item a {
    font-size: 14px;
    line-height: 36px;
  }

  .major-list li .item .bot .more {
    font-size: 15px;
  }

  .major-list li .item .bot .more .arrow {
    width: 20px;
    height: 20px;
    background-size: 20px auto;
    background-position: 0 -20px;
  }

  .promote {
    padding-top: 0;
    margin-bottom: 20px;
  }

  .headline .subtitle.fz-36 {
    font-size: 26px;
  }

  .apply-list .col-xs-4 {
    width: 100%;
  }

  .apply-list .item {
    margin-bottom: 15px;
  }

  .apply-list .item figure {
    margin-bottom: 5px;
  }

  .apply-list .item figure img {
    margin: 0 auto 10px;
  }

  .apply-list .item .overlay {
    display: none;
  }

  .apply-list .item h3 {
    position: static;
    color: #333;
    font-size: 22px;
  }

  .apply-list .item:hover figure img {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
  }

  .apply-list .item:hover h3 {
    margin-top: 0;
  }

  .consult {
    width: 100%;
    margin: 0;
  }

  .consult a {
    display: block;
    border: 0;
  }

  .consult .consult-text {
    border: #204c7a solid 1px;
    margin-bottom: 10px;
  }

  .consult .consult-btn {
    width: 100%;
  }

  .news-list .row {
    margin-bottom: -15px;
  }

  .news-list .col-xs-6 {
    width: 100%;
    margin-bottom: 15px;
  }

  .news-list .box {
    padding: 15px;
  }

  .news-list .box dt h3 {
    font-size: 18px;
  }

  .news-list .box dd a {
    font-size: 14px;
    padding: 7px 0;
  }

  .contact {
    display: block;
    padding-top: 0;
  }

  .contact .contact-text {
    width: 100%;
    margin-bottom: 15px;
  }

  .contact .contact-form {
    width: 100%;
  }

  .contact .page-form .form-group {
    margin-bottom: 15px;
  }

  .contact .page-form .cancel-btn,
  .contact .page-form .submit-btn {
    width: 48%;
    font-size: 14px;
  }

  .footer {
    padding: 30px 0;
  }

  .footer .footer-bot {
    display: block;
  }

  .footer .footer-nav {
    margin-bottom: 10px;
  }

  .footer .footer-nav li {
    padding: 0 5px;
    flex: none;
    font-size: 14px;
    margin-bottom: 5px;
  }

  .footer .footer-bot .footer-bot-left {
    line-height: 1.4;
  }

  .footer .footer-bot .footer-bot-left p {
    margin-bottom: 10px;
  }

  .footer .footer-bot .footer-bot-right {
    justify-content: center;
    padding-top: 10px;
  }

  .section-breadcrumb-wrap {
    justify-content: center;
  }

  .section-breadcrumb {
    justify-content: center;
  }

  .section-breadcrumb .breadcrumb-location {
    flex-wrap: wrap;
    flex: 1;
  }

  .section-news-list .news-list-content .news-list-item {
    flex-direction: column;
    align-items: baseline;
    padding: 20px;
    width: 100%;
  }

  .section-news-list .news-list-content .news-list-item .news-item-info {
    margin-left: 0;
    width: 100%;
  }

  .section-news-list
    .news-list-content
    .news-list-item
    .news-item-info
    .news-item-info-text {
    width: 100%;
  }

  .section-news-list
    .news-list-content
    .news-list-item
    .news-item-info
    .news-item-info-text
    .maxWidth {
    max-width: 100%;
  }

  .section-news-list
    .news-list-content
    .news-list-item
    .news-item-info
    .news-item-info-text
    .info-text-title {
    margin: 10px 0;
  }

  .section-news-list
    .news-list-content
    .news-list-item
    .news-item-info
    .news-item-info-text
    .info-text-content {
    flex-direction: column;
    align-items: initial;
    margin-top: 0;
  }

  .section-news-list
    .news-list-content
    .news-list-item
    .news-item-info
    .news-item-info-text
    .info-text-content
    .news-item-info-more {
    margin-top: 10px;
    text-align: right;
  }

  .section-collegeSchool-info .education-list li .caption {
    color: #333;
  }

  .section-profession-info
    .profession-info-content
    .profession-list-content
    .profession-list-item
    .profession-item-content {
    padding: 0 30px 0 38px;
  }

  .section-profession-info
    .profession-info-content
    .profession-list-content
    .profession-list-item
    .profession-item-content
    .profession-item-info {
    margin-right: 40px;
    padding: 20px 0;
  }
}

@media (max-width: 550px) {
  .section-contact-info
    .contact-info-content
    .content-form
    .form-group
    .form-tel {
    width: 100%;
  }

  .section-contact-info .contact-info-content .content-form .btn-wrap {
    width: 100%;
  }
}

@media (max-width: 414px) {
  .section-profession-info
    .profession-info-content
    .profession-list-content
    .profession-list-item
    .profession-item-content
    .profession-item-info {
    margin-right: 20px;
  }

  .section-education-info .education-info-content .education-table-content {
    font-size: 18px;
  }

  .section-education-info
    .education-info-content
    .education-table-content
    .tbwd257 {
    width: 157px;
  }

  .section-education-info
    .education-info-content
    .education-table-content
    .tbwd147 {
    width: 107px;
  }

  .section-education-info
    .education-info-content
    .education-table-content
    .tbwd187 {
    width: 147px;
  }

  .section-education-info
    .education-info-content
    .education-table-content
    .tbwd160 {
    width: 120px;
  }

  .section-education-info
    .education-info-content
    .education-table-content
    .table-content-body {
    width: 800px;
  }

  .section-education-info
    .education-info-content
    .education-table-content
    .table-content-body
    .table-body-item {
    padding: 16px 0;
  }

  .section-education-info
    .education-info-content
    .education-table-content
    .table-content-header {
    width: 800px;
  }

  .section-education-info
    .education-info-content
    .education-table-content
    .table-content-header
    .table-header-item {
    padding: 16px 0;
  }

  .section-education-info
    .education-info-content
    .education-table-content
    .table-content-header
    .table-header-item:first-child {
    width: 157px;
  }
}

@media (max-width: 375px) {
  .section-breadcrumb-wrap {
    padding: 10px 15px;
  }
}
