/***********************/
/* author ：fly_kun    */
/* date   : 2018-11-25 */
/* version: v1.0       */
/***********************/
@charset "utf-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acyonym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kdb,
q,
s,
samp,
small,
strong,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
tbody,
tfoot,
thead,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
* {
  margin: 0;
  padding: 0;
}
body {
  width: 100%;
  margin: 0px;
  padding: 0px;
  font-size: 14px;
  font-family: "PingFangSC", "microsoft yahei";
  background: #fff;
}
button,
input,
select,
textarea {
  font: 12px/1.5 "microsoft yahei", arial;
  outline: none;
}
a {
  color: #333;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-user-select: none;
  -moz-user-focus: none;
  -moz-user-select: none;
}
a:hover {
  color: #f00;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
p {
  line-height: 22px;
}
img {
  border: 0;
  vertical-align: bottom;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  margin: 0;
  padding: 0;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.w100 {
  width: 100%;
}
.w10 {
  width: 1000px;
  margin: 0 auto;
}
.w11 {
  width: 1100px;
  margin: 0 auto;
}
.w12 {
  width: 1200px;
  margin: 0 auto;
}
.w13 {
  width: 1300px;
  margin: 0 auto;
}
.w94 {
  width: 94%;
  margin: 0 auto;
  overflow: hidden;
}
.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.fla {
  flex: auto;
}
/* 水平 */
.flr {
  flex-direction: row;
}
/* 垂直 */
.flc {
  flex-direction: column;
}
/* 换行 */
.flw {
  flex-wrap: wrap;
}
/* 不换行 */
.flnw {
  flex-wrap: nowrap;
}
/* 水平换行 */
.flrw {
  flex-flow: row wrap;
}
/* 水平不换行 */
.flrnw {
  flex-flow: row nowrap;
}
/* 垂直换行 */
.flcw {
  flex-flow: colum wrap;
}
/* 垂直不换行 */
.flcnw {
  flex-flow: colum nowrap;
}
/* 主轴左对齐 */
.fljs {
  justify-content: flex-start;
}
/* 主轴右对齐 */
.flje {
  justify-content: flex-end;
}
/* 主轴居中 */
.fljc {
  justify-content: center;
}
/* 两端平均 */
.fljb {
  justify-content: space-between;
}
/* 交叉轴起点 */
.flas {
  align-items: flex-start;
}
/* 交叉轴终点 */
.flae {
  align-items: flex-end;
}
/* 交叉轴居中 */
.flac {
  align-items: center;
}
/* 交叉轴基线 */
.flab {
  align-items: baseline;
}

.sp_header {
  height: 50px;
  overflow: hidden;
  background: #fff;
  z-index: 10;
  width: 100%;
}
.fixednav {
  position: fixed;
  background-color: #f9f9f9;
}
.sp_logo {
  padding: 5px;
  float: left;
  height: 50px;
  box-sizing: border-box;
}
.sp_logo img {
  margin: auto;
  max-height: 40px;
}
.sp_nav {
  width: 50px;
  float: right;
  position: relative;
  cursor: pointer;
  height: 30px;
  margin-top: 15px;
}
.sp_nav span {
  display: block;
  background: #5087ec;
  width: 30px;
  height: 2px;
  position: absolute;
  left: 10px;
  transition: all ease 0.35s;
}
.sp_nav span:nth-of-type(1) {
  top: 0px;
}
.sp_nav span:nth-of-type(2) {
  top: 10px;
}
.sp_nav span:nth-of-type(3) {
  top: 20px;
}
.sp_nav_se span:nth-of-type(1) {
  top: 10px;
  transform: rotate(45deg);
}
.sp_nav_se span:nth-of-type(2) {
  width: 0;
}
.sp_nav_se span:nth-of-type(3) {
  top: 10px;
  transform: rotate(-45deg);
}
.sjj_nav {
  position: fixed;
  z-index: 9;
  background: #eee;
  width: 100%;
  height: calc(100% - 100px);
  font-size: 14px;
  line-height: 40px;
  top: -100%;
  left: 0;
  overflow: auto;
  overflow-x: hidden;
  transition: top ease 0.35s;
}
.nav_show {
  top: 50px;
}
.sjj_nav > ul > li:first-child {
  overflow: hidden;
  border-top: 0;
}
.sjj_nav > ul > li:first-child > a {
  float: left;
  width: calc(100% - 70px);
}
.sjj_nav ul li i {
  position: absolute;
  top: 5px;
  right: 0px;
  border-left: 1px #ddd solid;
  height: 30px;
  padding: 0px 7px 0 7px;
}
.sjj_nav ul li i svg {
  transform: rotate(-90deg);
  transition: all ease 0.35s;
}
.sjj_nav ul li .sjj_nav_i_se svg {
  transform: rotate(0deg);
}
.sjj_nav ul li {
  border-top: 1px #ddd solid;
  padding-left: 20px;
  position: relative;
  line-height: 40px;
  font-size: 14px;
}
.sjj_nav > ul > li:last-child {
  border-bottom: 1px #ddd solid;
}
.sjj_nav ul li ul {
  display: none;
}
.sjj_nav ul li a {
  color: #666;
  width: 80%;
  font-size: 1.17em;
}
.sjj_nav ul li ul li a {
  color: #999;
  display: block;
  text-align: left;
}
.sjj_nav ul li i svg {
  width: 20px;
  height: 20px;
  fill: #555;
}
.sjj_nav ul li .sjj_nav_i_se svg {
  fill: #c9141e;
}
.sjj_nav ul li ul li > ul {
  margin-left: 10px;
}
/*nav end*/

.banner,
.banner img {
  text-align: center;
  height: 170px;
  width: 100%;
  object-fit: cover;
}
/*banner end*/

.about {
  padding: 10px 0;
}
#about_title h2 {
  font-size: 25px;
  line-height: 30px;
  color: #767676;
}
#about_title p {
  font-size: 14px;
  line-height: 20px;
  color: #dcdcdc;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#about_title i {
  display: block;
  width: 35px;
  height: 4px;
  margin: 5px 0;
  background-color: #5087ec;
}
.about_text {
  margin: 10px 0 5px;
}
.about_text p {
  color: #333;
}
.about_more {
  width: 155px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
.about_more a {
  display: block;
  font-size: 16px;
  color: #fff;
  background-color: #5087ec;
}
.about_more a:hover {
  background-color: #f00;
}
/*about end*/

#title {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
#title b {
  font-size: 25px;
  color: #767676;
}
#title p a {
  display: block;
  padding: 3px 15px;
  font-size: 14px;
  color: #fff;
  border-radius: 40px;
  background-color: #5087ec;
}
#title p a:hover {
  background-color: #f00;
}
.team {
  padding: 0;
  background: -webkit-linear-gradient(#fff, #f9f9f9);
  background: -o-linear-gradient(#fff, #f9f9f9);
  background: -moz-linear-gradient(#fff, #f9f9f9);
  background: linear-gradient(#fff, #f9f9f9);
}
.team_con {
  padding: 15px 0 20px;
}
.team_bigimg {
  /* width: 40%; */
}
.team_bigimg img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  /* width: 100%; */
  border-radius: 50%;
}
.team_text {
  width: 57%;
}
.team_text dl dt {
  font-size: 15px;
}
.team_text dl dt b {
  padding-right: 15px;
  color: #555;
}
.team_text dl dt span {
  display: block;
  color: #767676;
}
.team_text dl dd {
  padding: 5px 0;
}
.team_text dl dd p {
  font-size: 16px;
  line-height: 30px;
}
.team_more {
  text-align: center;
}
.team_more a {
  display: inline-block;
  float: right;
  padding: 3px 12px;
  font-size: 14px;
  border-radius: 15px;
}
.team_more a:first-child {
  float: left;
  border: 1px solid #dbdbd9;
}
.team_more a:last-child {
  color: #fff;
  background-color: #5087ec;
}
.team_more a:last-child:hover {
  color: #ff0;
}
.team_list_img {
  text-align: center;
}
.swiper-slide.flex.flr.fljb {
  justify-content: space-around;
}
.team_list_img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #e7e7e7;
}
.swiper-button-next {
  margin-right: -11px;
}
.swiper-button-prev {
  margin-left: -11px;
}
/*team end*/

.department {
  padding: 20px 0 0;
  background: -webkit-linear-gradient(#fff, #f9f9f9);
  background: -o-linear-gradient(#fff, #f9f9f9);
  background: -moz-linear-gradient(#fff, #f9f9f9);
  background: linear-gradient(#fff, #f9f9f9);
}
.dep_list li {
  width: 40%;
  margin-bottom: 1em;
  padding: 12px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 8px 0 #f6f6f6;
  box-shadow: 0 0 8px 0 #f6f6f6;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.dep_list li:hover {
  cursor: pointer;
  -webkit-box-shadow: 0 0 25px 0 #ccc;
  box-shadow: 0 0 25px 0 #ccc;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.dep_list li em {
  width: 90px;
  height: 90px;
  margin: 5px 0 10px;
  background: url(../images/department.png) 0 0 no-repeat;
  -webkit-background-size: 100%;
  background-size: 100%;
}
.dep_list li:nth-child(2) em {
  background-position: 0 -90px;
}
.dep_list li:nth-child(3) em {
  background-position: 0 -180px;
}
.dep_list li:nth-child(4) em {
  background-position: 0 -270px;
}
.dep_list li:nth-child(5) em {
  background-position: 0 -360px;
}
.dep_list li:nth-child(6) em {
  background-position: 0 -450px;
}
.dep_list li h3 {
  font-size: 20px;
}
.dep_list li i {
  width: 50px;
  height: 2px;
  margin: 12px 0;
  background-color: #5087ec;
}
.dep_con {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.dep_con p {
  color: #333;
  line-height: 20px;
}
.dep_list li a {
  margin: 25px 0 5px;
  padding: 5px 15px;
  font-size: 14px;
  color: #fff;
  border-radius: 30px;
  background-color: #325698;
}
.tel_zk {
  width: 70%;
  margin: 0 auto 10px;
  border-radius: 30px;
  background-color: #f3f3f3;
}
.tel_zk p a {
  color: #f00;
}
.tel_zk p {
  font-size: 18px;
  font-weight: bold;
}
.tel_zk p span {
  display: block;
  line-height: 30px;
  box-sizing: border-box;
  text-align: center;
  width: 100%;
  padding: 0 10px;
  margin-right: 5px;
  font-size: 16px;
  color: #fff;
  border-radius: 30px;
  background-color: #f00;
}
/*department end*/

.train {
  padding: 20px 0 0;
}
.train_m ul {
  margin: 0 0;
}
.train_m ul li {
  position: relative;
  margin: 1em 0 0;
  width: 100%;
  height: 450px;
  color: #fff;
  background: url(../images/train_1.jpg) no-repeat center;
  -webkit-background-size: 100%;
  background-size: 100%;
}
.train_m ul li:last-child {
  background: url(../images/train_2.jpg) no-repeat center;
  -webkit-background-size: 100%;
  background-size: 100%;
}
.train_m ul li .train_list {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 50px);
  height: 410px;
  padding: 20px 25px;
  background-color: rgba(80, 135, 236, 0.7);
}
.train_list h2 {
  padding: 5px 0 10px;
  font-size: 22px;
  text-align: center;
}
.train_list a {
  display: block;
  width: 27%;
  margin: 0 auto;
  padding: 8px 20px;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  color: #5087ec;
  border-radius: 35px;
  background-color: #fff;
}
.train_list a:hover {
  color: #fff;
  background-color: #f00;
}
.train_con {
  height: 325px;
  overflow: hidden;
  margin-bottom: 2em;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 15;
}
.train_con p {
  line-height: 22px;
}
/*train end*/

.zdao {
  padding: 10px 0;
}
.zdao_one {
  margin: 10px 0;
}
.zdao_one img {
  width: 50%;
}
.zdao_one_text dl {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 1em;
}
.zdao_one_text dl dt {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5em;
  width: 33.5%;
  border-radius: 20px;
  background-color: #c7cdd7;
}
.zdao_one_text dl dt span {
  width: 28px;
  height: 28px;
  text-align: center;
  font: 16px/28px "Impact";
  color: #fff;
  background-color: #5087ec;
  border-radius: 50%;
}
.zdao_one_text dl dt p {
  width: 70%;
  font-size: 16px;
  /*color: #333;*/
}
.zdao_one_text dl dd {
  font-size: 15px;
  color: #333;
}
.zdao_ads {
  position: relative;
  height: 50px;
  line-height: 25px;
  color: #fff;
  text-align: center;
  background-color: #5087ec;
}
.zdao_ads:before,
.zdao_ads:after {
  content: "";
  position: absolute;
  top: 0;
}
.zdao_ads:before {
  left: 0;
  border-left: 35px solid #fff;
  border-bottom: 50px solid transparent;
}
.zdao_ads:after {
  right: 0;
  border-right: 35px solid #fff;
  border-top: 50px solid transparent;
}
.zdao_ads b {
  display: block;
  margin: 0 auto;
  width: 70%;
  font-weight: normal;
  font-size: 16px;
  text-align: center;
}
.zdao_two {
  margin-top: 20px;
}
.zdao_two_con {
  width: calc(100% - 35px);
  padding: 17.5px;
  border-radius: 15px;
  background-color: #f0f0f0;
}
.zdao_two_con p {
  font-size: 15px;
  line-height: 1.5em;
}
.zdao_two_r {
  width: 38.5%;
  height: 360px;
}
.zdao_two_r img {
  width: 100%;
  height: 100%;
}
/*zdao end*/

.theory {
  padding: 20px 0;
  background: url(../images/theory_bg.jpg) no-repeat center;
  background-attachment: fixed;
  -webkit-background-size: cover;
  background-size: cover;
}
.theory_m {
  color: #fff;
}
.theory_m h2 {
  margin-bottom: 0.8em;
  padding: 0 3%;
  font-size: 19px;
  font-weight: normal;
  line-height: 1.1em;
}
.theory_con p {
  font-size: 14px;
}
/*theory end*/

.news {
  padding: 10px 0;
}
.news_m ul {
  margin-top: 10px;
}
.news_m ul li {
  width: 100%;
  margin-bottom: 1em;
  background-color: #f3f3f3;
  -webkit-transition: box-shadow 0.3s linear;
  -o-transition: box-shadow 0.3s linear;
  transition: box-shadow 0.3s linear;
}
.news_m ul li:hover {
  -webkit-box-shadow: 0 0 25px 0 #ccc;
  box-shadow: 0 0 25px 0 #ccc;
  -webkit-transition: box-shadow 0.3s linear;
  -o-transition: box-shadow 0.3s linear;
  transition: box-shadow 0.3s linear;
}
.news_m ul li img {
  float: left;
  width: 35%;
  padding: 2px;
}
.news_m ul li dl {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  float: right;
  width: 60%;
  height: 72px;
  padding: 6px;
}
.news_m ul li dl dt p {
  display: block;
  float: left;
  width: 65%;
  font-size: 14px;
  line-height: 14px;
  color: #222;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.news_m ul li dl dt span {
  float: right;
  font-size: 12px;
  color: #acacac;
}
.news_m ul li dl dd {
  height: 50%;
  font-size: 13px;
  color: #acacac;
  overflow: hidden;
}
.news_m ul li dl i {
  font-size: 13px;
  font-style: normal;
  color: #5087ec;
}
/*news end*/

footer {
  padding: 20px 0;
  background-color: #474747;
}
.footer_m .ewm {
  color: #fff;
}
.footer_m .ewm img {
  width: 133px;
  height: 133px;
  margin-bottom: 10px;
}
.footer_m .ewm h2 {
  font-size: 20px;
  font-weight: normal;
}
.footer_m .ewm p {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.foot_msg {
  padding: 0 50px;
}
.foot_msg textarea,
.foot_msg input {
  padding: 3px 5px;
  outline: none;
  border: none;
  margin-bottom: 10px;
  text-indent: 3px;
  resize: none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #939393;
}
.foot_msg textarea,
.foot_msg .msg_input {
  width: 250px;
  border-radius: 15px;
  border: 1px solid #325698;
  box-sizing: border-box;
}
.msg_input_one {
  width: calc(60% - 22px);
}
.msg_input_two {
  width: calc(40% - 13px);
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
.foot_msg button {
  width: 100%;
  margin-top: 5px;
  font-size: 18px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 10px;
  background-color: #325698;
  cursor: pointer;
}
.foot_msg_tel {
  margin-top: 15px;
}
.foot_msg_tel b {
  font-size: 26px;
  font-weight: normal;
  color: #fff;
}
.foot_msg_tel b p {
  line-height: 30px;
}
.foot_msg_tel span {
  font-size: 16px;
  color: #939393;
}
/*footer end*/

.copyright {
  margin-bottom: 50px;
  padding: 15px 0;
  background-color: #2f2f2f;
  color: #fff;
}
/*copyright end*/

.bottom {
  position: fixed;
  bottom: 0;
  height: 50px;
  background-color: #5087ec;
  z-index: 100;
}
.bottom ul li {
  width: calc((100% / 4) - 1px);
  height: 50px;
  border-right: 1px solid #ccc;
  text-align: center;
}
.bottom ul li:last-child {
  border-right: none;
}
.bottom ul li img {
  display: block;
  margin: 5px auto 0;
  width: 22px;
}
.bottom ul li a {
  font-size: 14px;
  color: #fff;
}

.fenye {
  margin: 20px auto;
  text-align: center;
}
.fenye span {
  color: white;
  background: #f8413d;
  padding: 5px 12px;
  display: block;
  float: left;
  margin: 7px;
}
.fenye a {
  display: inline;
  width: 15px;
  margin: 5px;
  padding: 5px 10px;
  color: #222;
  background: #f5f5f5;
}
.fenye .on {
  color: #fff;
  background-color: #5087ec;
}
.se_no {
  text-align: center;
  font-size: 20px;
  padding: 20px;
  color: red;
}

.positions {
  float: right;
  display: inline-block;
}
.dep_list > li > a,
.train_list > a {
  display: none;
}
.foot_msg form {
  margin: 0 0 20px;
}
.foot_msg_tel a {
  color: #d4d4d4;
}
.wrapper {
  width: 75%;
  padding: 38px 5%;
  transition: all 0.5s;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.08);
}

.wrapper img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  vertical-align: middle;
}
.wrapper {
  word-break: break-all;
}
.imgText {
  margin: 1% 2%;
  position: absolute;
  bottom: 0;
  min-height: 30px;
  text-align: center;
  line-height: 24px;
  background-color: rgba(97, 96, 96, 0.1);
  color: #fff;
  font-size: 20px;
  max-width: 50%;
  word-wrap: break-word;
}
a[href^="tel"] {
  text-decoration: underline;
}
.gallery-thumbs.team_list {
  margin-bottom: 40px;
}
.view a {
  display: inline-block;
}
.w94 .view {
  margin: 0 10%;
}
