@charset "UTF-8";
html,
body {
  overflow-x: hidden;
  font-weight: 400;
  font-family: '微软雅黑', 'PingFang SC', 'Helvetica Neue', Helvetica, 'Hiragino Sans GB', Arial, sans-serif, 'Microsoft YaHei';
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
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;
  list-style: none;
}

body {
  line-height: 1.2;
}

:focus {
  outline: 1;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

ins {
  background-color: #ff9;
  color: #111;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #111;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted #111;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

img[src=''],
img:not([src]) {
  opacity: 0;
}

::-webkit-scrollbar-track {
  background-color: #f9f9f9;
}

::-webkit-scrollbar {
  width: 5px;
  height: 10px;
  background-color: #ccc;
}

::-webkit-scrollbar-thumb {
  background-color: #ccc;
}

@media only screen and (max-width: 989px) {
  body {
    padding-top: 60px;
  }
}

.container {
  max-width: 1600px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 5%;
  margin: 0 auto;
}
@media only screen and (max-width: 989px) {
  .container {
    padding: 0 20px;
  }
}

.section {
  padding: 50px 0;
}

.inner-side-page {
  display: flex;
  overflow: hidden;
  padding-bottom: 50px;
}
@media only screen and (max-width: 749px) {
  .inner-side-page {
    padding-bottom: 20px;
  }
}
.inner-side-page .inner-nav {
  flex: none;
}
@media only screen and (max-width: 989px) {
  .inner-side-page {
    flex-direction: column-reverse;
  }
  .inner-side-page .inner-nav.media-hide {
    display: none;
  }
  .inner-side-page .inner-nav .side-bar {
    width: 100%;
  }
}
.inner-side-page .inner-content-wrapper {
  flex: 1;
  box-sizing: border-box;
  padding-left: 38px;
  overflow: hidden;
}

@media only screen and (max-width: 989px) {
  .inner-side-page .inner-content-wrapper {
    padding-left: 0;
  }
  
}

.back-top-menu {
  position: fixed;
  top: auto;
  right: 30px;
  bottom: 30px;
  left: auto;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 3px solid #2a6bbc;
  border-radius: 50%;
  background-color: #003d87;
  color: #ffffff;
  transition: 0.3s cubic-bezier(0.53, -0.31, 0.56, 2.18);
  transform: translate3d(50px, 0, 0);
  opacity: 0;
  cursor: pointer;
}
.back-top-menu .iconfont {
  font-size: 20px;
  color: #eec88e;
}
.back-top-menu.show {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.back-top-menu:hover {
  background-color: #2a6bbc;
  border: 3px solid #003d87;
}

div.layer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99990;
  display: flex;
  justify-content: center;
  align-items: center;
}
div.layer div.layer__blank {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
div.layer div.layer__content {
  width: 360px;
  position: relative;
  z-index: 2;
}
div.layer div.layer__content div.layer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2a6bbc;
  border-radius: 4px 4px 0 0;
}
div.layer div.layer__content div.layer-top p.text {
  font-size: 16px;
  color: #ffffff;
  padding: 10px 20px;
  letter-spacing: 2px;
}
div.layer div.layer__content div.layer-top span.iconfont.icon-shanchu {
  width: 40px;
  height: 40px;
}
div.layer div.layer__content div.layer-bottom {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 0 0 4px 4px;
}
div.layer div.layer__content div.layer-bottom p.text {
  line-height: 1.8;
  font-size: 14px;
  color: #666666;
}
div.layer div.layer__content div.layer-bottom .confirm {
  display: flex;
  justify-content: end;
  padding-top: 20px;
}
div.layer div.layer__content div.layer-bottom .confirm .confirm-button {
  width: 70px;
  height: 36px;
  border-radius: 3px;
  background-color: #e6e6e6;
  text-align: center;
  line-height: 36px;
  font-size: 14px;
  color: #111111;
  transition: .3s;
  cursor: pointer;
}
div.layer div.layer__content div.layer-bottom .confirm .confirm-button:hover {
  background-color: #003d87;
  color: #ffffff;
}

div.custom-selector {
  width: 256px;
  height: 41px;
  box-sizing: border-box;
  background: #1a5093;
  border: 1px solid #2a6bbc;
  border-radius: 20px;
  position: relative;
  color: #003d87;
}
@media only screen and (max-width: 749px) {
  div.custom-selector {
    width: 320px;
  }
}
div.custom-selector::after {
  position: absolute;
  top: 18px;
  right: 12px;
  bottom: auto;
  left: auto;
  z-index: 0;
  content: '';
  display: block;
  width: 0;
  height: 0;
  width: 0;
  height: 0;
  border-top: 8px solid rgba(255, 255, 255, 0.2);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}
div.custom-selector .placeholder {
  width: 100%;
  height: 40px;
  text-indent: 20px;
  line-height: 40px;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.6;
  cursor: pointer;
  position: relative;
  z-index: 3;
}
div.custom-selector .options {
  width: max-content;
  position: absolute;
  top: auto;
  bottom: 50px;
  left: 0;
  z-index: 999;
  display: none;
  padding: 10px 0;
  border-radius: 4px;
  background-color: #ffffff;
  border: 1px solid #003d87;
}
@media only screen and (max-width: 749px) {
  div.custom-selector .options {
    width: 100%;
  }
}
div.custom-selector .options a {
  display: block;
  padding: 0 10px;
  font-size: 14px;
  color: #333333;
  line-height: 2;
  transition: 0.1s ease-in-out;
}
@media only screen and (max-width: 749px) {
  div.custom-selector .options a {
    font-size: 14px;
  }
}
div.custom-selector .options a:hover {
  background-color: #003d87;
  color: #ffffff;
}

div.side-bar {
  flex: none;
  width: 300px;
  background-color: #003d87;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 990px) and (max-width: 1299px) {
  div.side-bar {
    width: 240px;
  }
}
div.side-bar::after {
  position: absolute;
  top: -10px;
  right: 5px;
  bottom: auto;
  left: auto;
  z-index: 0;
  content: "";
  display: block;
  width: 90px;
  height: 90px;
  background: url(../images/nav_logo.png);
}
div.side-bar img {
  display: block;
  width: 100%;
}
div.side-bar h2.side-bar-title {
  display: flex;
  align-items: center;
  height: 66px;
  padding: 0 40px;
  font-size: 24px;
  line-height: 1;
  color: #eec88e;
  position: relative;
}
@media only screen and (min-width: 990px) and (max-width: 1299px) {
  div.side-bar h2.side-bar-title {
    font-size: 20px;
  }
}
div.side-bar h2.side-bar-title::before {
  position: absolute;
  top: 23px;
  right: auto;
  bottom: auto;
  left: 20px;
  z-index: 0;
  display: block;
  content: "";
  width: 4px;
  height: 24px;
  background-image: linear-gradient(#eec88e 50%, #ffffff 50%);
}
div.side-bar ul.second-nav {
  padding: 34px 18px 10px 18px;
  border-top: 4px solid #eec88e;
  background-color: #225088;
}
div.side-bar ul.second-nav li.second-nav-item + .second-nav-item {
  margin-top: 10px;
}
div.side-bar ul.second-nav li.second-nav-item.active .second-nav-item-text {
  background-color: #eec88e;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 30px 0 0;
}
div.side-bar ul.second-nav li.second-nav-item.active .second-nav-item-text::before {
  background-image: url(../images/nav_icon_blue.png);
}
div.side-bar ul.second-nav li.second-nav-item.active .second-nav-item-text::after {
  opacity: 1;
}
div.side-bar ul.second-nav li.second-nav-item .second-nav-item-text {
  display: block;
  height: 54px;
  background-color: rgba(255, 255, 255, 0.1);
  line-height: 54px;
  font-size: 18px;
  color: #ffffff;
  text-indent: 48px;
  position: relative;
  cursor: pointer;
}
@media only screen and (min-width: 990px) and (max-width: 1299px) {
  div.side-bar ul.second-nav li.second-nav-item .second-nav-item-text {
    font-size: 16px;
  }
}
div.side-bar ul.second-nav li.second-nav-item .second-nav-item-text::before {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 17px;
  z-index: 0;
  transform: translate3d(0, -50%, 0);
  content: "";
  display: block;
  width: 17px;
  height: 12px;
  background-image: url(../images/nav_icon_yellow.png);
}
div.side-bar ul.second-nav li.second-nav-item .second-nav-item-text::after {
  position: absolute;
  top: 50%;
  right: 20px;
  bottom: auto;
  left: auto;
  z-index: 0;
  transform: translate3d(0, -50%, 0);
  font-family: "iconfont";
  content: "\e624";
  font-size: 16px;
  color: #003d87;
  opacity: 0;
}
@media only screen and (min-width: 990px) and (max-width: 1299px) {
  div.side-bar ul.second-nav li.second-nav-item .second-nav-item-text::after {
    font-size: 14px;
  }
}
div.side-bar ul.second-nav li.second-nav-item nav.third-nav {
  background-color: #ffffff;
  padding: 10px 0 10px 47px;
  margin-top: 1px;
  display: none;
}
div.side-bar ul.second-nav li.second-nav-item nav.third-nav a.third-nav-text {
  padding: 6px 20px 6px 0;
  display: block;
  font-size: 16px;
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and (min-width: 990px) and (max-width: 1299px) {
  div.side-bar ul.second-nav li.second-nav-item nav.third-nav a.third-nav-text {
    font-size: 14px;
  }
}
div.side-bar ul.second-nav li.second-nav-item nav.third-nav a.third-nav-text:hover, div.side-bar ul.second-nav li.second-nav-item nav.third-nav a.third-nav-text.active {
  color: #003d87;
}
div.side-bar ul.second-nav li.second-nav-item nav.third-nav a.third-nav-text:hover::before, div.side-bar ul.second-nav li.second-nav-item nav.third-nav a.third-nav-text.active::before {
  color: #003d87;
}
div.side-bar ul.second-nav li.second-nav-item nav.third-nav a.third-nav-text::before {
  font-family: "iconfont";
  content: "\e63d";
  font-size: 14px;
  color: #666666;
  margin-right: 8px;
}

div.breadcrumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #003d87;
}
@media only screen and (max-width: 749px) {
  div.breadcrumb {
    padding: 10px 0;
  }
}
div.breadcrumb h2.title {
  font-size: 24px;
  color: #003d87;
}
@media only screen and (max-width: 749px) {
  div.breadcrumb h2.title {
    display: none;
  }
}
div.breadcrumb div.breadcrumb-navs {
  display: flex;
  align-items: center;
}
div.breadcrumb div.breadcrumb-navs p.pos {
  font-size: 16px;
  /* color: #888888; */
  margin-right: 10px;
}
div.breadcrumb div.breadcrumb-navs nav {
  display: flex;
  align-items: center;
}
div.breadcrumb div.breadcrumb-navs nav a {
  font-size: 16px;
  color: #000000;
  transition: .3s;
}
div.breadcrumb div.breadcrumb-navs nav a::before {
  font-family: "iconfont";
  content: "\e63d";
  margin-right: 8px;
  margin-left: 5px;
}
@media only screen and (max-width: 749px) {
  div.breadcrumb div.breadcrumb-navs nav a::before {
    margin-right: 5px;
    font-size: 14px;
  }
}
div.breadcrumb div.breadcrumb-navs nav a:first-child::before {
  display: none;
}
div.breadcrumb div.breadcrumb-navs nav a:hover {
  color: #003d87;
}
div.breadcrumb div.breadcrumb-navs nav a:hover::before {
  color: #888888;
}

div.pb_sys_common.pb_sys_normal.pb_sys_style1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_first_d.p_fun_d {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: .3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_first_d.p_fun_d:hover {
  color: #003d87;
}
@media only screen and (max-width: 749px) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_first_d.p_fun_d {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_prev_d.p_fun_d {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: .3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_prev_d.p_fun_d:hover {
  color: #003d87;
}
@media only screen and (max-width: 749px) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_prev_d.p_fun_d {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no_d {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  color: #111111;
  transition: .3s;
  background-color: #003d87;
  color: #ffffff;
}
@media only screen and (max-width: 749px) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no_d {
    display: none;
  }
}
@media only screen and (max-width: 749px) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no {
    display: none;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no a {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: .3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no a:hover {
  color: #003d87;
}
@media only screen and (max-width: 749px) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no a {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_dot {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: .3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_dot:hover {
  color: #003d87;
}
@media only screen and (max-width: 749px) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_dot {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 749px) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_dot {
    display: none;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_fun a {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: .3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_fun a:hover {
  color: #003d87;
}
@media only screen and (max-width: 749px) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_fun a {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_last.p_fun a {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: .3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_last.p_fun a:hover {
  color: #003d87;
}
@media only screen and (max-width: 749px) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_last.p_fun a {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_t {
  font-size: 12px;
  color: #666666;
  line-height: 26px;
  padding: 0 10px;
}
@media only screen and (max-width: 749px) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_t {
    display: none;
  }
}
@media only screen and (max-width: 749px) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_goto {
    display: none;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_goto input#u6_goto.p_goto_input {
  width: 40px;
  height: 30px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #dcdfe6;
  text-align: center;
  font-size: 12px;
  color: #666666;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_goto a {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  color: #111111;
  transition: .3s;
  background-color: #003d87;
  color: #ffffff;
}

.inner-static-banner {
}
@media only screen and (max-width: 749px) {
  .inner-static-banner {
    margin: 0 0 20px 0;
  }
}
@media only screen and (max-width: 749px) {
  .inner-static-banner .container {
    padding: 0;
  }
}
.inner-static-banner .container img {
  display: block;
  width: 100%;
}

header section.top-bar {
  background-color: #003d87;
}
header section.top-bar div.top-wrapper.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 125px;
}
@media only screen and (min-width: 990px) and (max-width: 1299px) {
  header section.top-bar div.top-wrapper.container {
    height: 90px;
  }
}
@media only screen and (max-width: 989px) {
  header section.top-bar div.top-wrapper.container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 999;
    height: 60px;
    padding: 0 10px;
    background-color: #003d87;
  }
}
header section.top-bar div.top-wrapper.container .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media only screen and (min-width: 990px) and (max-width: 1299px) {
  header section.top-bar div.top-wrapper.container .logo img:nth-child(1) {
    width: 45px;
  }
  header section.top-bar div.top-wrapper.container .logo img:nth-child(2) {
    width: 332px;
  }
}
@media only screen and (max-width: 989px) {
  header section.top-bar div.top-wrapper.container .logo img:nth-child(1) {
    width: 40px;
  }
  header section.top-bar div.top-wrapper.container .logo img:nth-child(2) {
    height: 24px;
    /* display: none; */
  }
}

@media only screen and (max-width: 749px) {
  header section.top-bar div.top-wrapper.container .logo img:nth-child(1) {
    width: 36px;
    margin-right: 3px;
  }
  header section.top-bar div.top-wrapper.container .logo img:nth-child(2) {
    height: 24px;
    /* display: none; */
  }
}
header section.top-bar div.top-wrapper.container .logo img {
  margin-right: 10px;
}
.mobile-search-icon {
 display: none; 
}

.mobile-search-icon .iconfont  {
  font-size: 24px;
  color: #ffffff;
}
@media only screen and (max-width: 749px) {
  .mobile-search-icon {
    display: block;
  }
  header section.top-bar div.top-wrapper.container div.top-right-wrapper {
    position: fixed;
    left: 0;
    right: 0;
    padding: 10px;
    top: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
  }
}

header section.top-bar div.top-wrapper.container div.top-right-wrapper div.sm-buttons {
  display: flex;
  align-items: center;
  justify-content: end;
  padding-bottom: 20px;
}
@media only screen and (min-width: 990px) and (max-width: 1299px) {
  header section.top-bar div.top-wrapper.container div.top-right-wrapper div.sm-buttons {
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 989px) {
  header section.top-bar div.top-wrapper.container div.top-right-wrapper div.sm-buttons {
    display: none;
  }
}
header section.top-bar div.top-wrapper.container div.top-right-wrapper div.sm-buttons .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  padding: 0 20px;
}
header section.top-bar div.top-wrapper.container div.top-right-wrapper div.sm-buttons .icon:hover span.iconfont {
  opacity: 1;
}
header section.top-bar div.top-wrapper.container div.top-right-wrapper div.sm-buttons .icon:hover .text {
  color: #ffffff;
  opacity: 1;
}
header section.top-bar div.top-wrapper.container div.top-right-wrapper div.sm-buttons .icon:hover span.wx-image {
  display: block;
}
header section.top-bar div.top-wrapper.container div.top-right-wrapper div.sm-buttons .icon span.iconfont {
  color: #ffffff;
  font-size: 18px;
  margin-right: 5px;
  opacity: 0.5;
}
header section.top-bar div.top-wrapper.container div.top-right-wrapper div.sm-buttons .icon span.text {
  font-size: 18px;
  color: #ffffff;
  opacity: 0.5;
}
@media only screen and (min-width: 990px) and (max-width: 1299px) {
  header section.top-bar div.top-wrapper.container div.top-right-wrapper div.sm-buttons .icon span.text {
    font-size: 14px;
  }
}
header section.top-bar div.top-wrapper.container div.top-right-wrapper div.sm-buttons .icon span.wx-image {
  display: none;
  position: absolute;
  top: 40px;
  right: auto;
  bottom: auto;
  left: 0;
  z-index: 999;
  padding: 10px;
  background-color: #ffffff;
  transition: 0.3s ease-in-out;
}
header section.top-bar div.top-wrapper.container div.top-right-wrapper div.sm-buttons .icon span.wx-image img {
  display: block;
  width: 140px;
  height: 140px;
}
header section.top-bar div.top-wrapper.container div.top-right-wrapper div.sm-buttons span.divider {
  height: 16px;
  width: 1px;
  border-right: 1px solid #809ec3;
}
header section.top-bar div.top-wrapper.container div.top-right-wrapper div.search-input-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-search-icon-close {
  display: none;
}
@media only screen and (max-width: 749px) {
  .mobile-search-icon-close {
    display: block;
  }
}
.mobile-search-icon-close .iconfont {
  font-size: 24px;
  color: #ffffff;
  padding: 0 10px;
}
header section.top-bar div.top-wrapper.container div.top-right-wrapper div.search-input-wrapper div.search-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 320px;
  height: 41px;
  background: #1a5093;
  border: 1px solid #2a6bbc;
  border-radius: 20px;
}
@media only screen and (min-width: 990px) and (max-width: 1299px) {
  header section.top-bar div.top-wrapper.container div.top-right-wrapper div.search-input-wrapper div.search-input {
    width: 260px;
    height: 30px;
  }
}
@media only screen and (max-width: 989px) {
  header section.top-bar div.top-wrapper.container div.top-right-wrapper div.search-input-wrapper div.search-input {
    width: 220px;
    height: 38px;
  }
}
@media only screen and (max-width: 749px) {
  header section.top-bar div.top-wrapper.container div.top-right-wrapper div.search-input-wrapper div.search-input {
    width: 280px;
    height: 38px;
  }
}
header section.top-bar div.top-wrapper.container div.top-right-wrapper div.search-input-wrapper div.search-input input {
  width: 250px;
  height: 40px;
  outline: none;
  border: none;
  text-indent: 20px;
  background-color: transparent;
  font-size: 16px;
  color: #ffffff;
}
@media only screen and (min-width: 990px) and (max-width: 1299px) {
  header section.top-bar div.top-wrapper.container div.top-right-wrapper div.search-input-wrapper div.search-input input {
    width: 200px;
    height: 30px;
  }
}
@media only screen and (max-width: 989px) {
  header section.top-bar div.top-wrapper.container div.top-right-wrapper div.search-input-wrapper div.search-input input {
    width: 170px;
    height: 38px;
  }
}
header section.top-bar div.top-wrapper.container div.top-right-wrapper div.search-input-wrapper div.search-input input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #ffffff;
  opacity: 0.5;
}
header section.top-bar div.top-wrapper.container div.top-right-wrapper div.search-input-wrapper div.search-input button {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
@media only screen and (min-width: 990px) and (max-width: 1299px) {
  header section.top-bar div.top-wrapper.container div.top-right-wrapper div.search-input-wrapper div.search-input button {
    width: 40px;
    height: 30px;
  }
}
header section.top-bar div.top-wrapper.container div.top-right-wrapper div.search-input-wrapper div.search-input button:active span.iconfont.icon-sousuoxiao {
  opacity: 1;
  color: #eec88e;
}
header section.top-bar div.top-wrapper.container div.top-right-wrapper div.search-input-wrapper div.search-input button:hover span.iconfont.icon-sousuoxiao {
  opacity: 1;
}
header section.top-bar div.top-wrapper.container div.top-right-wrapper div.search-input-wrapper div.search-input button span.iconfont.icon-sousuoxiao {
  color: #ffffff;
  font-size: 24px;
  opacity: 0.5;
  transition: 0.3s ease-in-out;
}
@media only screen and (min-width: 990px) and (max-width: 1299px) {
  header section.top-bar div.top-wrapper.container div.top-right-wrapper div.search-input-wrapper div.search-input button span.iconfont.icon-sousuoxiao {
    font-size: 20px;
  }
}
header section.top-bar div.top-wrapper.container .media-nav-menu {
  display: none;
}
@media only screen and (max-width: 989px) {
  header section.top-bar div.top-wrapper.container .media-nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
  }
  header section.top-bar div.top-wrapper.container .media-nav-menu .iconfont {
    font-size: 30px;
    color: #ffffff;
  }
}
@media only screen and (max-width: 749px) {
  header section.top-bar div.top-wrapper.container .media-nav-menu {
    width: 30px;
    height: 40px;
  }
  header section.top-bar div.top-wrapper.container .media-nav-menu .iconfont {
    font-size: 26px;
    color: #ffffff;
  }
}
header .mobile-wx-image {
  display: none;
}
@media only screen and (max-width: 989px) {
  header .mobile-wx-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 88889;
    background-color: rgba(0, 0, 0, 0.6);
    transform: translate3d(0, -100%, 0);
  }
  header .mobile-wx-image.active {
    transform: translate3d(0, 0, 0);
  }
  header .mobile-wx-image img {
    width: 160px;
    height: 160px;
  }
}

section.main-nav {
  background-color: #eec88e;
  display: block;
  position: relative;
}
@media only screen and (max-width: 989px) {
  section.main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 8888;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    background-color: #003d87;
    transition: .3s;
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
  }
  section.main-nav.active {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
section.main-nav .moblie-nav-top {
  display: none;
  flex: none;
}
@media only screen and (max-width: 989px) {
  section.main-nav .moblie-nav-top {
    display: block;
    height: 50px;
    box-shadow: 0 0 4px #1a5093;
    z-index: 9;
  }
  section.main-nav .moblie-nav-top div.sm-buttons {
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
  }
  section.main-nav .moblie-nav-top div.sm-buttons .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    position: relative;
    padding: 0 20px;
  }
  section.main-nav .moblie-nav-top div.sm-buttons .icon span.iconfont {
    color: #ffffff;
    font-size: 16px;
    margin-right: 5px;
    opacity: 0.8;
  }
  section.main-nav .moblie-nav-top div.sm-buttons .icon span.text {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.8;
  }
  section.main-nav .moblie-nav-top div.sm-buttons span.divider {
    height: 16px;
    width: 1px;
    border-right: 1px solid #ffffff;
  }
  section.main-nav .moblie-nav-top .close {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 0;
    width: 50px;
    height: 50px;
    font-size: 30px;
    font-weight: 900;
    color: #ffffff;
  }
}
@media only screen and (max-width: 989px) {
  section.main-nav .nav-wrapper {
    flex: 1;
    box-sizing: border-box;
    background-color: #003d87;
    padding: 40px 0;
    overflow-y: auto;
  }
}

section.main-nav .nav-wrapper ul.nav-one.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 989px) {
  section.main-nav .nav-wrapper ul.nav-one.container {
    display: block;
  }
}
section.main-nav .nav-wrapper ul.nav-one.container .nav-open-icon {
  display: none;
}
@media only screen and (max-width: 989px) {
  section.main-nav .nav-wrapper ul.nav-one.container .nav-open-icon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 0;
    display: block;
    width: 50px;
    height: 40px;
    box-sizing: border-box;
    border: 4px solid #003d87;
    border-radius: 10px;
    background-color: #1a5093;
    line-height: 32px;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    text-indent: 0;
  }
}
section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item {
  position: relative;
}
section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item a.nav-one-text {
  display: block;
  padding: 0 20px;
  height: 40px;
  white-space: nowrap;
  font-size: 16px;
  line-height: 40px;
  color: #111111;
  position: relative;
}
section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item a.nav-one-text.active {
  background-color: #f3f3f3;
}
section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item a.nav-one-text:hover {
  background-color: #f3f3f3;
}
@media only screen and (max-width: 1299px) {
  section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item a.nav-one-text {
    font-size: 14px;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 989px) {
  section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item a.nav-one-text {
    font-size: 16px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media only screen and (max-width: 989px) {
  section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item a.nav-one-text.arrow::after {
    display: none;
  }
}
section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item a.nav-one-text.arrow::after {
  font-family: "iconfont";
  content: "\eb6d";
  position: relative;
  top: 0px;
  left: 2px;
  font-size: 10px;
  opacity: 0;
}
section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item:hover a.nav-one-text.arrow::after{
  opacity: 1;
}
section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item .nav-two {
  padding: 10px 0;
  border-radius: 4px;
  position: absolute;
  left: 0;
  z-index: 9999;
  background-color: #f3f3f3;
  top: calc(100%);
  display: none;
  border-top: 1px solid #ffffff;
}
@media only screen and (max-width: 989px) {
  section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item .nav-two {
    padding: 0 0;
    border-top: none;
    background-color: #003d87;
    position: relative;
    top: auto;
    left: auto;
    text-indent: 40px;
  }
}
@media only screen and (max-width: 989px) {
  section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item .nav-two .nav-two-item {
    position: relative;
  }
}
section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item .nav-two .nav-two-item a.nav-two-text {
  display: block;
  padding: 0 20px;
  height: 40px;
  white-space: nowrap;
  font-size: 16px;
  line-height: 40px;
  color: #111111;
  position: relative;
}
section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item .nav-two .nav-two-item a.nav-two-text.active {
  background-color: #eec88e;
}
section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item .nav-two .nav-two-item a.nav-two-text:hover {
  background-color: #eec88e;
}
@media only screen and (max-width: 1299px) {
  section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item .nav-two .nav-two-item a.nav-two-text {
    font-size: 14px;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 989px) {
  section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item .nav-two .nav-two-item a.nav-two-text {
    font-size: 16px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media only screen and (max-width: 989px) {
  section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item .nav-two .nav-two-item a.nav-two-text.arrow::after {
    opacity: 1;
    display: none;
  }
}
section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item .nav-two .nav-two-item a.nav-two-text.arrow::after {
  font-family: "iconfont";
  content: "\e63d";
  position: relative;
  top: 1px;
}
section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item .nav-two .nav-two-item .nav-three {
  padding: 10px 0;
  border-radius: 4px;
  display: block;
  position: absolute;
  top: 0;
  left: calc(100%);
  border-left: 1px solid #ffffff;
  background-color: #f3f3f3;
  display: none;
}
@media only screen and (max-width: 989px) {
  section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item .nav-two .nav-two-item .nav-three {
    padding: 0 0;
    border-left: none;
    background-color: #003d87;
    position: relative;
    top: auto;
    left: auto;
    text-indent: 80px;
  }
}
section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item .nav-two .nav-two-item .nav-three a.nav-three-text {
  display: block;
  padding: 0 20px;
  height: 40px;
  white-space: nowrap;
  font-size: 16px;
  line-height: 40px;
  color: #111111;
  position: relative;
}
section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item .nav-two .nav-two-item .nav-three a.nav-three-text.active {
  background-color: #eec88e;
}
section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item .nav-two .nav-two-item .nav-three a.nav-three-text:hover {
  background-color: #eec88e;
}
@media only screen and (max-width: 1299px) {
  section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item .nav-two .nav-two-item .nav-three a.nav-three-text {
    font-size: 14px;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 989px) {
  section.main-nav .nav-wrapper ul.nav-one.container li.nav-one-item .nav-two .nav-two-item .nav-three a.nav-three-text {
    font-size: 16px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

footer.footer {
  background-image: url(../images/footer_bg.png);
  background-position: center center;
  background-size: cover;
}
footer.footer div.footer-top.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 989px) {
  footer.footer div.footer-top.container {
    display: block;
  }
}
footer.footer div.footer-top.container a.fotter-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 2;
  padding-right: 10px;
}
@media only screen and (min-width: 990px) and (max-width: 1299px) {
  footer.footer div.footer-top.container a.fotter-logo img:nth-child(1) {
    width: 45px;
  }
  footer.footer div.footer-top.container a.fotter-logo img:nth-child(2) {
    width: 173px;
  }
}
@media only screen and (max-width: 989px) {
  footer.footer div.footer-top.container a.fotter-logo img:nth-child(1) {
    width: 45px;
  }
  footer.footer div.footer-top.container a.fotter-logo img:nth-child(2) {
    width: 173px;
  }
}
footer.footer div.footer-top.container a.fotter-logo img {
  margin-right: 10px;
}
footer.footer div.footer-top.container ul.footer-selector {
  flex: 2;
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 989px) {
  footer.footer div.footer-top.container ul.footer-selector {
    padding-top: 20px;
    padding-left: 0;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
footer.footer div.footer-top.container ul.footer-selector li.item:nth-child(1) {
  padding-bottom: 20px;
}
footer.footer div.footer-top.container div.footer-info {
  display: flex;
  flex-wrap: wrap;
  flex: 2;
}
@media only screen and (max-width: 989px) {
  footer.footer div.footer-top.container div.footer-info {
    padding-top: 30px;
    display: block;
  }
}
footer.footer div.footer-top.container div.footer-info p.text {
  font-size: 14px;
  color: #ffffff;
  padding-bottom: 10px;
  margin-right: 15px;
}
@media only screen and (max-width: 989px) {
  footer.footer div.footer-top.container div.footer-info p.text {
    text-align: center;
  }
}
footer.footer div.footer-top.container div.qr-code {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 989px) {
  footer.footer div.footer-top.container div.qr-code {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
  }
}
footer.footer div.footer-top.container div.qr-code p.text {
  font-size: 14px;
  color: #ffffff;
  order: 2;
  padding-top: 5px;
}
@media only screen and (max-width: 989px) {
  footer.footer div.footer-top.container div.qr-code p.text {
    padding-bottom: 10px;
  }
}
footer.footer div.footer-top.container div.qr-code img {
  display: block;
  width: 70px;
  height: 70px;
}
@media only screen and (max-width: 989px) {
  footer.footer div.footer-top.container div.qr-code img {
    width: 120px;
    height: 120px;
  }
}
footer.footer div.footer-bottom {
  padding: 14px;
  background-color: rgba(0, 0, 0, 0.2);
}
footer.footer div.footer-bottom p.copyright {
  text-align: center;
  font-size: 14px;
  color: #ffffff;
}
@media only screen and (max-width: 989px) {
  footer.footer div.footer-bottom p.copyright {
    font-size: 12px;
  }
}

div.plate-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
div.plate-top div.plate-title {
  flex-grow: 1;
  position: relative;
  padding: 15px 0;
  font-size: 26px;
  color: #111111;
  background-repeat: no-repeat;
  background-position: left top;
}
@media only screen and (max-width: 989px) {
  div.plate-top div.plate-title {
    padding: 5px 0;
    background-size: auto 20px;
    font-size: 20px;
  }
}
div.plate-top div.plate-title.bg0 {
  background-image: url(../images/title_bg0.png);
}
div.plate-top div.plate-title.bg1 {
  background-image: url(../images/title_bg1.png);
}
div.plate-top div.plate-title.bg2 {
  background-image: url(../images/title_bg2.png);
}
div.plate-top div.plate-title.bg3 {
  background-image: url(../images/title_bg3.png);
}
div.plate-top div.plate-title.bg4 {
  background-image: url(../images/title_bg4.png);
}
div.plate-top div.plate-title span.iconfont {
  font-size: 26px;
  color: #003d87;
}
@media only screen and (max-width: 989px) {
  div.plate-top div.plate-title span.iconfont {
    font-size: 20px;
  }
}
div.plate-top div.plate-title strong {
  font-weight: 900;
  color: #003d87;
}
div.plate-top a.more-link {
  padding: 5px 10px;
  border-radius: 2px;
  font-size: 16px;
  color: #003d87;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 989px) {
  div.plate-top a.more-link {
    font-size: 14px;
  }
}
div.plate-top a.more-link:hover {
  background-color: #003d87;
  color: #ffffff;
}

section.banner {
  height: calc(100vh - 410px);
}
@media only screen and (max-width: 1299px) {
  section.banner {
    height: calc(100vh - 350px);
  }
}
section.banner div#banner.swiper {
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 989px) {
  @media only screen and (max-width: 1299px) {
    section.banner {
      height: auto;
    }
  }
  section.banner div#banner.swiper {
    height: auto;
  }
}
section.banner div#banner.swiper div.swiper-wrapper div.swiper-slide {
  height: 100%;
  background-color: #666666;
}
section.banner div#banner.swiper div.swiper-wrapper div.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.banner div#banner.swiper div.swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 0 10px;
  background-color: #ffffff;
  opacity: 0.8;
}
@media only screen and (max-width: 989px) {
  section.banner div#banner.swiper div.swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
  }
}
section.banner div#banner.swiper div.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #eec88e;
}

section.fast-nav {
  padding-top: 27px;
}
section.fast-nav div.container ul.nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 27px;
  background-color: #f0efed;
  flex-wrap: wrap;
}
@media only screen and (max-width: 989px) {
  section.fast-nav div.container ul.nav-list {
    padding: 30px 10px 10px 10px;
  }
}
section.fast-nav div.container ul.nav-list li.item {
  width: 150px;
}
@media only screen and (max-width: 989px) {
  section.fast-nav div.container ul.nav-list li.item {
    width: 33.33%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
}
section.fast-nav div.container ul.nav-list li.item div.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
section.fast-nav div.container ul.nav-list li.item div.card:hover div.icon {
  background-color: #003d87;
}
section.fast-nav div.container ul.nav-list li.item div.card:hover div.icon span.iconfont {
  animation: .5s 0s run ease-in-out forwards normal;
}
section.fast-nav div.container ul.nav-list li.item div.card:hover div.icon.national-emblem {
  background-color: #ed2c25;
}
section.fast-nav div.container ul.nav-list li.item div.card:hover div.icon.national-emblem span.iconfont {
  animation: .5s 0s runRed ease-in-out forwards normal;
}
section.fast-nav div.container ul.nav-list li.item div.card:hover p.text {
  color: #003d87;
  font-weight: 900;
}
section.fast-nav div.container ul.nav-list li.item div.card div.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #ffffff;
  transition: 0.3s ease-in-out;
  overflow: hidden;
}
section.fast-nav div.container ul.nav-list li.item div.card div.icon.national-emblem span.iconfont {
  animation: .5s 0s runRedBack ease-in-out forwards normal;
}
@media only screen and (min-width: 990px) and (max-width: 1299px) {
  section.fast-nav div.container ul.nav-list li.item div.card div.icon {
    width: 80px;
    height: 80px;
  }
}
@media only screen and (max-width: 989px) {
  section.fast-nav div.container ul.nav-list li.item div.card div.icon {
    width: 60px;
    height: 60px;
  }
}
section.fast-nav div.container ul.nav-list li.item div.card div.icon span.iconfont {
  font-size: 50px;
  animation: .5s 0s runBack ease-in-out forwards normal;
}
@media only screen and (min-width: 990px) and (max-width: 1299px) {
  section.fast-nav div.container ul.nav-list li.item div.card div.icon span.iconfont {
    font-size: 40px;
  }
}
@media only screen and (max-width: 989px) {
  section.fast-nav div.container ul.nav-list li.item div.card div.icon span.iconfont {
    font-size: 30px;
  }
}
@keyframes run {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    color: #eec88e;
  }
  49% {
    transform: translate3d(100px, 0, 0);
    opacity: 0;
  }
  51% {
    transform: translate3d(-100px, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    color: #ffffff;
  }
}
@keyframes runBack {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    color: #ffffff;
  }
  49% {
    transform: translate3d(-100px, 0, 0);
    opacity: 0;
  }
  51% {
    transform: translate3d(100px, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    color: #eec88e;
  }
}
@keyframes runRed {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    color: #ed2c25;
  }
  49% {
    transform: translate3d(100px, 0, 0);
    opacity: 0;
  }
  51% {
    transform: translate3d(-100px, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    color: #fdcf30;
  }
}
@keyframes runRedBack {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    color: #fdcf30;
  }
  49% {
    transform: translate3d(-100px, 0, 0);
    opacity: 0;
  }
  51% {
    transform: translate3d(100px, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    color: #ed2c25;
  }
}
section.fast-nav div.container ul.nav-list li.item div.card p.text {
  width: 100%;
  padding-top: 15px;
  text-align: center;
  font-size: 18px;
  color: #333333;
}
@media only screen and (min-width: 990px) and (max-width: 1299px) {
  section.fast-nav div.container ul.nav-list li.item div.card p.text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 989px) {
  section.fast-nav div.container ul.nav-list li.item div.card p.text {
    font-size: 12px;
  }
}
section.fast-nav div.container ul.nav-list li.item div.card a.link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

section.school-news div.container div.news-container {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 749px) {
  section.school-news div.container div.news-container {
    display: block;
  }
}
section.school-news div.container div.news-container div.news-left {
  flex: 1;
  overflow: hidden;
  padding-right: 20px;
}
@media only screen and (max-width: 749px) {
  section.school-news div.container div.news-container div.news-left {
    padding-bottom: 20px;
    padding-right: 0;
  }
}
section.school-news div.container div.news-container div.news-left div#news.swiper div.swiper-wrapper div.swiper-slide div.image-news-card {
  width: 100%;
  height: 380px;
}
@media only screen and (max-width: 749px) {
  section.school-news div.container div.news-container div.news-left div#news.swiper div.swiper-wrapper div.swiper-slide div.image-news-card {
    height: 280px;
  }
}
section.school-news div.container div.news-container div.news-left div#news.swiper div.swiper-wrapper div.swiper-slide div.image-news-card div.cover {
  width: 100%;
  height: 100%;
}
section.school-news div.container div.news-container div.news-left div#news.swiper div.swiper-wrapper div.swiper-slide div.image-news-card div.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.school-news div.container div.news-container div.news-left div#news.swiper div.swiper-wrapper div.swiper-slide div.image-news-card div.info {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: #003d87;
}
section.school-news div.container div.news-container div.news-left div#news.swiper div.swiper-wrapper div.swiper-slide div.image-news-card div.info p.title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 30px;
  padding-right: 150px;
  line-height: 64px;
  font-size: 18px;
  color: #eec88e;
}
@media only screen and (max-width: 749px) {
  section.school-news div.container div.news-container div.news-left div#news.swiper div.swiper-wrapper div.swiper-slide div.image-news-card div.info p.title {
    padding: 0 20px;
    padding-right: 100px;
    line-height: 40px;
    font-size: 16px;
  }
}
section.school-news div.container div.news-container div.news-left div#news.swiper div.swiper-wrapper div.swiper-slide div.image-news-card div.date {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 18px;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  background-color: #003d87;
  color: #ffffff;
  font-family: '思源宋体';
}
section.school-news div.container div.news-container div.news-left div#news.swiper div.swiper-wrapper div.swiper-slide div.image-news-card div.date p.days {
  font-size: 36px;
}
section.school-news div.container div.news-container div.news-left div#news.swiper div.swiper-wrapper div.swiper-slide div.image-news-card div.date p.year {
  font-size: 12px;
}
section.school-news div.container div.news-container div.news-left div#news.swiper div.swiper-wrapper div.swiper-slide div.image-news-card a.link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
section.school-news div.container div.news-container div.news-left div#news.swiper div.swiper-pagination {
  width: auto;
  left: auto;
  right: 10px;
  bottom: 22px;
}
@media only screen and (max-width: 749px) {
  section.school-news div.container div.news-container div.news-left div#news.swiper div.swiper-pagination {
    right: 10px;
    bottom: 12px;
  }
}
section.school-news div.container div.news-container div.news-left div#news.swiper div.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #ffffff;
  opacity: 0.8;
}
@media only screen and (max-width: 749px) {
  section.school-news div.container div.news-container div.news-left div#news.swiper div.swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 2px;
  }
}
section.school-news div.container div.news-container div.news-left div#news.swiper div.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #eec88e;
  opacity: 1;
}
section.school-news div.container div.news-container div.news-right {
  flex: 1;
  overflow: hidden;
  padding-left: 20px;
}
@media only screen and (max-width: 749px) {
  section.school-news div.container div.news-container div.news-right {
    padding-left: 0;
  }
}
section.school-news div.container div.news-container div.news-right ul.news-list li.item {
  margin-bottom: 20px;
}
@media only screen and (max-width: 749px) {
  section.school-news div.container div.news-container div.news-right ul.news-list li.item {
    margin-bottom: 15px;
  }
}
section.school-news div.container div.news-container div.news-right ul.news-list li.item div.text-news-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease-in-out;
  position: relative;
  cursor: pointer;
}
section.school-news div.container div.news-container div.news-right ul.news-list li.item div.text-news-card::before {
  position: absolute;
  top: 4px;
  right: auto;
  bottom: auto;
  left: 0;
  z-index: 0;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid #003d87;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  opacity: 0;
  transform: translate3d(-20px, 0, 0);
  transition: 0.3s ease-in-out;
}
section.school-news div.container div.news-container div.news-right ul.news-list li.item div.text-news-card:hover {
  padding-left: 20px;
}
section.school-news div.container div.news-container div.news-right ul.news-list li.item div.text-news-card:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
section.school-news div.container div.news-container div.news-right ul.news-list li.item div.text-news-card:hover a.text {
  color: #003d87;
}
section.school-news div.container div.news-container div.news-right ul.news-list li.item div.text-news-card:hover span.date {
  color: #003d87;
}
section.school-news div.container div.news-container div.news-right ul.news-list li.item div.text-news-card a.text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  color: #333333;
  transition: 0.3s ease-in-out;
}
section.school-news div.container div.news-container div.news-right ul.news-list li.item div.text-news-card a.text.top::before {
  content: '【置顶】';
  color: #ed2c25;
}
section.school-news div.container div.news-container div.news-right ul.news-list li.item div.text-news-card span.date {
  flex: none;
  font-size: 14px;
  color: #666666;
  transition: 0.3s ease-in-out;
  font-family: '思源宋体';
  padding-left: 20px;
}

section.message-notice {
  background-image: url(../images/message_bg.png);
  background-position: center center;
  background-size: cover;
}
section.message-notice div.container div#messageNotice.swiper {
  overflow: hidden;
  position: relative;
}
section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper {
  padding: 25px 0 70px 0;
}
@media only screen and (max-width: 989px) {
  section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper {
    padding: 25px 0 40px 0;
  }
}
section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card {
  padding: 23px;
  display: flex;
  background-color: #ffffff;
  border-top: 3px solid #cc9848;
  position: relative;
  transition: 0.3s ease-in-out;
  position: relative;
  top: 0;
}
section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card:hover {
  background-color: #003d87;
  box-shadow: 0px 8px 14px 4px rgba(0, 61, 135, 0.14);
  top: -11px;
}
section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card:hover div.date {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card:hover div.date p.days {
  color: #eec88e;
}
section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card:hover div.date p.year {
  color: #eec88e;
}
section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card:hover div.info p.title {
  color: #eec88e;
}
section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card:hover div.icon {
  position: absolute;
  top: auto;
  right: 20px;
  bottom: 15px;
  left: auto;
  z-index: 0;
  transform: rotate(45deg);
  background-color: #eec88e;
}
section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card:hover div.icon span.iconfont.icon-youjiantou {
  color: #003d87;
}
section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card div.date {
  flex: none;
  height: 79px;
  padding-right: 14px;
  border-right: 1px solid rgba(102, 102, 102, 0.16);
  font-family: '思源宋体';
}
section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card div.date p.days {
  font-size: 24px;
  color: #666666;
  transition: 0.3s ease-in-out;
}
section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card div.date p.year {
  font-size: 14px;
  color: #666666;
  text-align: right;
  transition: 0.3s ease-in-out;
}
section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card div.info {
  padding-left: 17px;
}
@media only screen and (min-width: 749px) {
  section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card div.info p.title {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    transition: 0.3s ease-in-out;
  }
}

section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card div.icon {
  position: absolute;
  top: auto;
  right: 20px;
  bottom: 10px;
  left: auto;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}
section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card div.icon span.iconfont.icon-youjiantou {
  font-weight: 900;
  font-size: 16px;
  color: #111111;
  transition: 0.3s ease-in-out;
}
section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card a.link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}


@media only screen and (max-width: 749px) {
  #messageNotice .swiper-wrapper {
    display: block;
    padding-bottom: 0!important;
  }

  #messageNotice .swiper-wrapper .swiper-slide {
    margin-bottom: 10px;
  }
  section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card {
    padding: 4px 0;
    border-top: none;
    height: auto;
    flex-direction: row-reverse;
    background-color: transparent;
    align-items: center;
  }
  section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card:hover {
    background-color: transparent;
    box-shadow: none;
    top: 0;
  }
  section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card:hover div.date {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }
  section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card:hover div.date p.days {
    color: #eec88e;
  }
  section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card:hover div.date p.year {
    color: #eec88e;
  }
  section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card:hover div.info p.title {
    color: #eec88e;
  }
  section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card:hover div.icon {
    display: none;
  }
  section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card:hover div.icon span.iconfont.icon-youjiantou {
    color: #003d87;
  }
  section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card div.date {
    flex: none;
    display: flex;
    height: auto;
    padding-right: 0;
    border-right: none;
    flex-direction: row-reverse;
  }
  section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card div.date p.days {
    font-size: 14px;
    color: #666666;
    transition: 0.3s ease-in-out;
  }
  section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card div.date p.year {
    font-size: 14px;
    color: #666666;
    text-align: right;
    transition: 0.3s ease-in-out;
  }
  section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card div.date p.year::after {
    content: "-";
  }
  section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card div.info {
    padding-left: 0;
    padding-right: 20px;
    overflow: hidden;
  }
  section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card div.info p.title {
    overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  }
  section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card div.icon {
    display: none;
  }
  section.message-notice div.container div#messageNotice.swiper div.swiper-wrapper div.swiper-slide div.message-card div.icon span.iconfont.icon-youjiantou {
   display: none;
  }
}



section.message-notice div.container div#messageNotice.swiper div.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 9px;
  background-color: #666666;
  opacity: 0.8;
}
section.message-notice div.container div#messageNotice.swiper div.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #003d87;
}

section.study-activity div.container div#studyActivity.swiper {
  overflow: hidden;
  position: relative;
}
section.study-activity div.container div#studyActivity.swiper div.swiper-wrapper {
  padding: 25px 0 70px 0;
}
@media only screen and (max-width: 989px) {
  section.study-activity div.container div#studyActivity.swiper div.swiper-wrapper {
    padding: 25px 0 40px 0;
  }
}
section.study-activity div.container div#studyActivity.swiper div.swiper-wrapper div.swiper-slide div.activity-card {
  padding: 25px;
  border: 1px solid #e6e6e6;
  background-color: #f0efed;
  transition: 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  top: 0;
}
section.study-activity div.container div#studyActivity.swiper div.swiper-wrapper div.swiper-slide div.activity-card::after {
  position: absolute;
  top: auto;
  right: -30px;
  bottom: -40px;
  left: auto;
  z-index: 0;
  content: '';
  display: block;
  width: 170px;
  height: 170px;
  background: url(../images/card_logo.png) no-repeat center center/contain;
  transition: 0.6s ease-in-out;
  opacity: 0;
  transform: translate3d(200px, 0, 0) rotate(180deg);
}
section.study-activity div.container div#studyActivity.swiper div.swiper-wrapper div.swiper-slide div.activity-card:hover {
  background-color: #ffffff;
  border: 1px solid #003d87;
  box-shadow: 0px 8px 14px 4px rgba(0, 61, 135, 0.14);
  top: -11px;
}
section.study-activity div.container div#studyActivity.swiper div.swiper-wrapper div.swiper-slide div.activity-card:hover::after {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0);
}
section.study-activity div.container div#studyActivity.swiper div.swiper-wrapper div.swiper-slide div.activity-card:hover h2.title {
  color: #003d87;
}
section.study-activity div.container div#studyActivity.swiper div.swiper-wrapper div.swiper-slide div.activity-card:hover ul.info {
  border-top: 1px dashed #003d87;
}
section.study-activity div.container div#studyActivity.swiper div.swiper-wrapper div.swiper-slide div.activity-card:hover ul.info li.item div.i-title {
  background-color: #003d87;
}
section.study-activity div.container div#studyActivity.swiper div.swiper-wrapper div.swiper-slide div.activity-card h2.title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  color: #333333;
  transition: 0.3s ease-in-out;
}
section.study-activity div.container div#studyActivity.swiper div.swiper-wrapper div.swiper-slide div.activity-card ul.info {
  border-top: 1px dashed #666666;
  margin-top: 20px;
  padding-top: 20px;
  transition: 0.3s ease-in-out;
}
section.study-activity div.container div#studyActivity.swiper div.swiper-wrapper div.swiper-slide div.activity-card ul.info li.item {
  display: flex;
  align-items: flex-start;
}
section.study-activity div.container div#studyActivity.swiper div.swiper-wrapper div.swiper-slide div.activity-card ul.info li.item + .item {
  padding-top: 10px;
}
section.study-activity div.container div#studyActivity.swiper div.swiper-wrapper div.swiper-slide div.activity-card ul.info li.item div.i-title {
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #cc9848;
  transition: 0.3s ease-in-out;
}
section.study-activity div.container div#studyActivity.swiper div.swiper-wrapper div.swiper-slide div.activity-card ul.info li.item div.i-title span.iconfont {
  color: #ffffff;
  font-size: 14px;
}

section.study-activity div.container div#studyActivity.swiper div.swiper-wrapper div.swiper-slide div.activity-card ul.info li.item p.i-content {
  padding-left: 10px;
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}
section.study-activity div.container div#studyActivity.swiper div.swiper-wrapper div.swiper-slide div.activity-card ul.info li:first-child p.i-content {
  /* height: 44px; */
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

section.study-activity div.container div#studyActivity.swiper div.swiper-wrapper div.swiper-slide div.activity-card ul.info li:nth-child(2) p.i-content,
section.study-activity div.container div#studyActivity.swiper div.swiper-wrapper div.swiper-slide div.activity-card ul.info li:nth-child(3) p.i-content {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

section.study-activity div.container div#studyActivity.swiper div.swiper-wrapper div.swiper-slide div.activity-card .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
section.study-activity div.container div#studyActivity.swiper div.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 9px;
  background-color: #666666;
  opacity: 0.8;
}
section.study-activity div.container div#studyActivity.swiper div.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #003d87;
}

section.research-condition {
  background-color: #f0efed;
}
section.research-condition div.container ul.condition-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -25px;
  margin-right: -25px;
}
section.research-condition div.container ul.condition-list li.item {
  box-sizing: border-box;
  width: 50%;
  padding: 0 25px;
}
@media only screen and (max-width: 989px) {
  section.research-condition div.container ul.condition-list li.item {
    width: 100%;
  }
}
section.research-condition div.container ul.condition-list li.item:nth-child(1) div.condition-card {
  border-bottom: 1px solid rgba(102, 102, 102, 0.2);
}
section.research-condition div.container ul.condition-list li.item:nth-child(2) div.condition-card {
  border-bottom: 1px solid rgba(102, 102, 102, 0.2);
}
.condition-card .medium-info {
  display: flex;
  justify-content: space-between;
}
.condition-card .medium-info .date {
  font-size: 12px;
  color: #666666;
}
section.research-condition div.container ul.condition-list li.item div.condition-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  position: relative;
}
@media only screen and (max-width: 989px) {
  section.research-condition div.container ul.condition-list li.item div.condition-card {
    border-bottom: 1px solid rgba(102, 102, 102, 0.2);
    padding: 20px 0;
  }
}
section.research-condition div.container ul.condition-list li.item div.condition-card:hover div.cover {
  border: 3px solid #003d87;
}
section.research-condition div.container ul.condition-list li.item div.condition-card:hover .date {
  color: #003d87;
}
section.research-condition div.container ul.condition-list li.item div.condition-card:hover div.cover img {
  transform: scale(1.1);
}
section.research-condition div.container ul.condition-list li.item div.condition-card:hover div.info p.title {
  color: #003d87;
}
section.research-condition div.container ul.condition-list li.item div.condition-card:hover div.info p.author {
  color: #003d87;
}
section.research-condition div.container ul.condition-list li.item div.condition-card:hover div.info p.summary {
  color: #003d87;
}
section.research-condition div.container ul.condition-list li.item div.condition-card div.cover {
  width: 168px;
  height: 168px;
  border: 3px solid #f0efed;
  box-sizing: border-box;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  transition: .1s;
}
@media only screen and (max-width: 989px) {
  section.research-condition div.container ul.condition-list li.item div.condition-card div.cover {
    width: 100px;
    height: 100px;
  }
}
section.research-condition div.container ul.condition-list li.item div.condition-card div.cover img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}
section.research-condition div.container ul.condition-list li.item div.condition-card div.info {
  box-sizing: border-box;
  padding-left: 35px;
  overflow: hidden;
}
@media only screen and (max-width: 989px) {
  section.research-condition div.container ul.condition-list li.item div.condition-card div.info {
    padding-left: 15px;
  }
}
section.research-condition div.container ul.condition-list li.item div.condition-card div.info p.title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-bottom: 15px;
  font-size: 16px;
  color: #111111;
  font-weight: 900;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 989px) {
  section.research-condition div.container ul.condition-list li.item div.condition-card div.info p.title {
    padding-bottom: 10px;
  }
}
section.research-condition div.container ul.condition-list li.item div.condition-card div.info p.author {
  padding-bottom: 15px;
  font-size: 14px;
  color: #666666;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 989px) {
  section.research-condition div.container ul.condition-list li.item div.condition-card div.info p.author {
    padding-bottom: 10px;
  }
}
section.research-condition div.container ul.condition-list li.item div.condition-card div.info p.summary {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  transition: 0.3s ease-in-out;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media only screen and (max-width: 989px) {
  section.research-condition div.container ul.condition-list li.item div.condition-card div.info p.summary {
    font-size: 12px;
  }
}
section.research-condition div.container ul.condition-list li.item div.condition-card a.link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  display: block;
}

section.theme-program div.container ul.theme-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 30px;
}
section.theme-program div.container ul.theme-list li.item {
  width: 25%;
}
@media only screen and (max-width: 989px) {
  section.theme-program div.container ul.theme-list li.item {
    width: 50%;
  }
}
section.theme-program div.container ul.theme-list li.item div.theme-card {
  width: 100%;
  height: 0;
  padding-bottom: 57%;
  position: relative;
  overflow: hidden;
}
section.theme-program div.container ul.theme-list li.item div.theme-card:hover div.cover img {
  transform: scale(1.1);
}
section.theme-program div.container ul.theme-list li.item div.theme-card:hover div.info {
  opacity: 1;
}
section.theme-program div.container ul.theme-list li.item div.theme-card:hover div.info p.title {
  transform: translate3d(0, 0, 0);
}
section.theme-program div.container ul.theme-list li.item div.theme-card div.cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
section.theme-program div.container ul.theme-list li.item div.theme-card div.cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}
section.theme-program div.container ul.theme-list li.item div.theme-card div.info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #003d8794;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
section.theme-program div.container ul.theme-list li.item div.theme-card div.info p.title {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  transition: 0.3s ease-in-out;
  transform: translate3d(0, -20px, 0);
}
@media only screen and (max-width: 989px) {
  section.theme-program div.container ul.theme-list li.item div.theme-card div.info {
    opacity: 1;
  }
  section.theme-program div.container ul.theme-list li.item div.theme-card div.info p.title {
    font-size: 14px;
    transform: translate3d(0, 0, 0);
  }
}
section.theme-program div.container ul.theme-list li.item div.theme-card a.link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}

ul.inner-news-list li.news-item div.inner-news-card {
  padding: 15px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #D3D4D7;
  transition: .3s;
}
@media only screen and (max-width: 749px) {
  ul.inner-news-list li.news-item div.inner-news-card {
    padding: 10px 0 10px 10px;
  }
}
ul.inner-news-list li.news-item div.inner-news-card:hover {
  background-color: rgba(181, 215, 245, 0.2);
}
/* ul.inner-news-list li.news-item div.inner-news-card:hover .title {
  color: #003d87;
  font-weight: 900;
} */
ul.inner-news-list li.news-item div.inner-news-card:hover::after {
  color: #003d87;
  font-weight: 900;
}
ul.inner-news-list li.news-item div.inner-news-card::after {
  font-family: "iconfont";
  content: "\e624";
  display: block;
}
@media only screen and (max-width: 749px) {
  ul.inner-news-list li.news-item div.inner-news-card::after {
    display: none;
  }
}
ul.inner-news-list li.news-item div.inner-news-card div.date {
  padding-right: 15px;
  color: #003d87;
  font-family: '思源宋体';
  text-align: right;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 749px) {
  ul.inner-news-list li.news-item div.inner-news-card div.date {
    padding-right: 10px;
  }
}
ul.inner-news-list li.news-item div.inner-news-card div.date .days {
  font-size: 24px;
}
@media only screen and (max-width: 749px) {
  ul.inner-news-list li.news-item div.inner-news-card div.date .days {
    font-size: 14px;
  }
}
ul.inner-news-list li.news-item div.inner-news-card div.date .year {
  font-size: 12px;
}
ul.inner-news-list li.news-item div.inner-news-card .theme {
  padding: 0 10px;
  color: #333333;
}
ul.inner-news-list li.news-item div.inner-news-card .theme::after {
  content: "】";
}
ul.inner-news-list li.news-item div.inner-news-card .theme::before {
  content: "【";
}
ul.inner-news-list li.news-item div.inner-news-card .theme:hover {
  text-decoration: underline;
}
ul.inner-news-list li.news-item div.inner-news-card .title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  overflow: hidden;
  padding-left: 5px;
  padding-right: 40px;
  transition: .3s;
  color: #333333;
}
ul.inner-news-list li.news-item div.inner-news-card .title:hover {
  color: #003d87;
  font-weight: 900;
}
@media only screen and (max-width: 749px) {
  ul.inner-news-list li.news-item div.inner-news-card {
    /* display: block; */
    padding-left: 0;
    padding-right: 0;
  }
  ul.inner-news-list li.news-item div.inner-news-card div.date {

  }
  ul.inner-news-list li.news-item div.inner-news-card .theme {
    font-size: 12px;
    padding: 0 5px;
  }
  ul.inner-news-list li.news-item div.inner-news-card .title {
    padding-left: 0px;
    padding-right: 0;
    font-size: 13px;
  }
}
ul.inner-news-list li.news-item div.inner-news-card a.link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

ul.teacher-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
  padding-top: 20px;
}
@media only screen and (min-width: 990px) and (max-width: 1299px) {
  ul.teacher-list {
    margin-left: -15px;
    margin-right: -15px;
    padding-top: 15px;
  }
}
ul.teacher-list li.news-item {
  width: 50%;
  box-sizing: border-box;
  padding: 20px;
}
@media only screen and (min-width: 990px) and (max-width: 1299px) {
  ul.teacher-list li.news-item {
    padding: 15px;
  }
}
@media only screen and (max-width: 749px) {
  ul.teacher-list li.news-item {
    width: 100%;
  }
}
ul.teacher-list li.news-item div.teacher-card {
  padding: 15px;
  display: flex;
  background-color: #f1f1f1;
  border-bottom: 2px solid #003d87;
  transition: .3s;
  position: relative;
}
ul.teacher-list li.news-item div.teacher-card:hover {
  background-color: #003d87;
  border-bottom: 2px solid #eec88e;
}
ul.teacher-list li.news-item div.teacher-card:hover div.info div.top {
  color: #ffffff;
}
ul.teacher-list li.news-item div.teacher-card:hover div.info p.desc {
  color: #ffffff;
}
ul.teacher-list li.news-item div.teacher-card div.cover {
  width: 127px;
  height: 170px;
  border: 2px solid #ffffff;
  flex: none;
}
@media only screen and (max-width: 1299px) {
  ul.teacher-list li.news-item div.teacher-card div.cover {
    width: 100px;
    height: 140px;
  }
}
ul.teacher-list li.news-item div.teacher-card div.cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
ul.teacher-list li.news-item div.teacher-card div.info {
  padding-left: 25px;
  flex: 1;
  overflow: hidden;
}
@media only screen and (max-width: 1299px) {
  ul.teacher-list li.news-item div.teacher-card div.info {
    padding-left: 20px;
  }
}
ul.teacher-list li.news-item div.teacher-card div.info div.top {
  display: flex;
  align-items: center;
  color: #003d87;
  padding-top: 10px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 1299px) {
  ul.teacher-list li.news-item div.teacher-card div.info div.top {
    padding-bottom: 20px;
  }
}
ul.teacher-list li.news-item div.teacher-card div.info div.top p.name {
  font-size: 24px;
  font-weight: 900;
  font-family: 'MicrosoftYaHei-Bold';
  flex: none;
}
@media only screen and (max-width: 1299px) {
  ul.teacher-list li.news-item div.teacher-card div.info div.top p.name {
    font-size: 20px;
  }
}
ul.teacher-list li.news-item div.teacher-card div.info div.top p.tag {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 10px;
  font-size: 16px;
}
@media only screen and (max-width: 1299px) {
  ul.teacher-list li.news-item div.teacher-card div.info div.top p.tag {
    font-size: 14px;
  }
}
ul.teacher-list li.news-item div.teacher-card div.info p.desc {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
}
@media only screen and (max-width: 1299px) {
  ul.teacher-list li.news-item div.teacher-card div.info p.desc {
    font-size: 14px;
  }
}
ul.teacher-list li.news-item div.teacher-card a.link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

div.teacher-details {
  padding-top: 50px;
}
div.teacher-details div.base-info {
  display: flex;
  background: url(../images/teacher_bg.png) no-repeat center center/cover;
  margin-bottom: 30px;
}
@media only screen and (max-width: 749px) {
  div.teacher-details div.base-info {
    display: block;
  }
}
div.teacher-details div.base-info div.cover {
  width: 263px;
  height: 351px;
  flex: none;
  position: relative;
  top: -25px;
  left: 25px;
}
@media only screen and (min-width: 990px) and (max-width: 1299px) {
  div.teacher-details div.base-info div.cover {
    width: 200px;
    height: 271px;
  }
}
@media only screen and (max-width: 749px) {
  div.teacher-details div.base-info div.cover {
    width: calc(100% - 50px);
    height: auto;
  }
}
div.teacher-details div.base-info div.cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 749px) {
  div.teacher-details div.base-info div.cover img {
    height: auto;
  }
}
div.teacher-details div.base-info div.info {
  padding: 30px 30px 0 50px;
  color: #ffffff;
}
@media only screen and (max-width: 749px) {
  div.teacher-details div.base-info div.info {
    padding: 0 20px 20px 20px;
  }
}
@media only screen and (min-width: 990px) and (max-width: 1299px) {
  div.teacher-details div.base-info div.info {
    padding: 20px 20px 0 50px;
  }
}
div.teacher-details div.base-info div.info div.top {
  display: flex;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
div.teacher-details div.base-info div.info div.top p.name {
  font-size: 30px;
  font-family: 'MicrosoftYaHei-Bold';
  padding-right: 10px;
  flex: none;
}
@media only screen and (max-width: 1299px) {
  div.teacher-details div.base-info div.info div.top p.name {
    font-size: 24px;
  }
}
div.teacher-details div.base-info div.info div.top p.tag {
  font-size: 20px;
  line-height: 1.6;
}
@media only screen and (max-width: 1299px) {
  div.teacher-details div.base-info div.info div.top p.tag {
    font-size: 16px;
  }
}
div.teacher-details div.base-info div.info div.labels {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 1299px) {
  div.teacher-details div.base-info div.info div.labels {
    padding-top: 20px;
  }
}
div.teacher-details div.base-info div.info div.labels p.text {
  width: 50%;
  font-size: 16px;
  box-sizing: border-box;
  padding-right: 20px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 1299px) {
  div.teacher-details div.base-info div.info div.labels p.text {
    font-size: 12px;
    padding-bottom: 10px;
  }
}
div.teacher-details div.base-info div.info div.labels p.text a {
  color: #ffffff;
}
div.teacher-details div.base-info div.info p.desc {
  padding-top: 20px;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
}
@media only screen and (max-width: 1299px) {
  div.teacher-details div.base-info div.info p.desc {
    font-size: 12px;
    padding-top: 20px;
  }
}
div.teacher-details ul.details-info li.details-item {
  margin-bottom: 27px;
}
@media only screen and (max-width: 1299px) {
  div.teacher-details ul.details-info li.details-item {
    margin-bottom: 20px;
  }
}
div.teacher-details ul.details-info li.details-item div.top {
  display: flex;
  height: 50px;
  background-color: #eec88e;
  position: relative;
}
@media only screen and (max-width: 1299px) {
  div.teacher-details ul.details-info li.details-item div.top {
    height: 40px;
  }
}
div.teacher-details ul.details-info li.details-item div.top p.title {
  display: flex;
  align-items: center;
  flex: none;
  padding: 0 20px;
  background-color: #003d87;
  color: #ffffff;
}
@media only screen and (max-width: 1299px) {
  div.teacher-details ul.details-info li.details-item div.top p.title {
    padding: 0 15px;
  }
}
div.teacher-details ul.details-info li.details-item div.top p.title span.iconfont {
  font-size: 24px;
  margin-right: 5px;
}
@media only screen and (max-width: 1299px) {
  div.teacher-details ul.details-info li.details-item div.top p.title span.iconfont {
    font-size: 18px;
  }
}
div.teacher-details ul.details-info li.details-item div.top p.title span.text {
  font-size: 20px;
}
@media only screen and (max-width: 1299px) {
  div.teacher-details ul.details-info li.details-item div.top p.title span.text {
    font-size: 16px;
  }
}
div.teacher-details ul.details-info li.details-item div.top img.title-bg {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 0;
  display: block;
  height: 32px;
}
@media only screen and (max-width: 1299px) {
  div.teacher-details ul.details-info li.details-item div.top img.title-bg {
    height: 24px;
  }
}
@media only screen and (max-width: 749px) {
  div.teacher-details ul.details-info li.details-item div.top img.title-bg {
    height: 16px;
  }
}
div.teacher-details ul.details-info li.details-item div.bottom {
  padding: 30px;
  background-color: #f3f3f3;
  border: 1px solid #e3e3e3;
}
@media only screen and (max-width: 1299px) {
  div.teacher-details ul.details-info li.details-item div.bottom {
    padding: 20px;
  }
}
div.teacher-details ul.details-info li.details-item div.bottom p.text {
  font-size: 16px;
  color: #111111;
}
@media only screen and (max-width: 1299px) {
  div.teacher-details ul.details-info li.details-item div.bottom p.text {
    font-size: 12px;
  }
}
div.teacher-details ul.details-info li.details-item div.bottom p.text + .text {
  padding-top: 20px;
}
@media only screen and (max-width: 1299px) {
  div.teacher-details ul.details-info li.details-item div.bottom p.text + .text {
    padding-top: 15px;
  }
}

.article-details {
  padding: 40px 0;
}
@media only screen and (max-width: 749px) {
  .article-details {
    padding: 20px 0;
  }
}
.article-details .article-title {
  font-size: 24px;
  font-family: "MicrosoftYaHei-Bold";
  color: #003d87;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media only screen and (max-width: 989px) {
  .article-details .article-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 749px) {
  .article-details .article-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.article-details .article-basic-info {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: rgba(207, 207, 207, 0.3);
  margin-bottom: 30px;
}
@media only screen and (max-width: 749px) {
  .article-details .article-basic-info {
    padding: 5px;
    margin-bottom: 20px;
  }
}
.article-details .article-basic-info .text {
  font-size: 14px;
  color: #666666;
  padding: 0 10px;
}
@media only screen and (max-width: 749px) {
  .article-details .article-basic-info .text {
    font-size: 12px;
  }
}
@media only screen and (max-width: 749px) {
  .article-details .article-basic-info .text.views {
    display: none;
  }
}
.article-details .context p {
  font-size: 16px;
  line-height: 1.6;
  /* color: #666666; */
  letter-spacing: 1px;
}
@media only screen and (min-width: 990px) and (max-width: 1299px) {
  .article-details .context p {
    font-size: 14px;
  }
}
.article-details .context img {
  display: inline-block;
  max-width: 100%;
  margin: 20px 0;
  height: auto !important;
}

.article-prev-next {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0 60px 0;
}
@media only screen and (max-width: 749px) {
  .article-prev-next {
    padding: 20px 0 40px 0;
  }
}
.article-prev-next .button {
  font-size: 14px;
  color: #666666;
  padding: 10px 30px;
  background-color: #e6e6e6;
  transition: .3s;
}
@media only screen and (max-width: 749px) {
  .article-prev-next .button {
    font-size: 12px;
    padding: 8px 25px;
  }
}
.article-prev-next .button:hover {
  background-color: #003d87;
  color: #ffffff;
}
.article-prev-next .button.prev::before {
  content: "<<";
}
.article-prev-next .button.next::after {
  content: ">>";
}

.pc-qr-code {
  display: block;
  width: 75px;
  height: 75px;
  border: 3px solid #ffffff;
  margin-left: 15px;
  margin-right: 15px;
}

.search-qr-wrapper {
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 990px) and (max-width: 1299px) {
  .pc-qr-code {
    width: 60px;
    height: 60px;
    margin-left: 30px;
  }
}

@media only screen and (max-width: 989px) {
  .pc-qr-code {
    display: none;
  }
  .email {
    display:none;
  }
}

#vsb_content ul,ol{
  padding-left:20px;
  }
  #vsb_content ol li{
  list-style:decimal;
  }
  #vsb_content ul li{
  list-style:disc;
  }

  .logo-link--1 {
    display: block;
    width: 63%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    /* background-color: yellow; */
    /* opacity: .3; */
  }

  .logo-link--2 {
    display: block;
    width: 37%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    /* background-color: red;
    opacity: .3; */
  }
  .email {
    color: #ffffff;
    font-size:13px;
  }
  .email2 {
    color: #ffffff;
    height: 100%;
    padding: 0 30px;
    display: flex;
    align-items: center;
    font-size: 13px;
  }