@charset "UTF-8";
/* 换行*/
@keyframes img_zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
body, * {
  font-family: 微软雅黑, Helvetica, sans-serif;
  font-size: 18px;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 700px) {
  body, * {
    font-size: 16px;
  }
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #333;
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background-color: #F5F5F5;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #c8c8c8;
}

@media screen and (max-width: 700px) {
  /*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
  ::-webkit-scrollbar {
    width: 1px;
    height: 1px;
    background-color: #F5F5F5;
  }

  /*定义滚动条轨道 内阴影+圆角*/
  ::-webkit-scrollbar-track {
    box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 1px;
    background-color: transparent;
  }

  /*定义滑块 内阴影+圆角*/
  ::-webkit-scrollbar-thumb {
    border-radius: 1px;
    box-shadow: none;
    -webkit-box-shadow: none;
    background-color: transparent;
  }
}
.NavItem {
  position: relative;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  z-index: 100;
}
@media screen and (max-width: 700px) {
  .header {
    position: relative;
    background-color: black;
    padding: 10px 0;
  }
}
.header .content {
  max-width: 1400px;
  width: 90%;
  margin: auto;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 700px) {
  .header .content {
    justify-content: flex-start;
  }
}
.header .content .logo {
  -webkit-flex: 1;
  /* Chrome */
  -ms-flex: 1;
  /* IE 10 */
  flex: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-flex: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1;
  /* OLD - Firefox 19- */
  text-align: left;
}
.header .content .logo img {
  max-width: 280px;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .header .content .logo img {
    max-width: 150px;
    min-width: 120px;
  }
}
.header .content .header_nav {
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .header .content .header_nav {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #1D3147;
    z-index: 1000;
    opacity: 0;
  }
}
.header .content .header_nav .mask_box {
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  margin: auto;
  padding: 10px 0 20px;
  width: 90%;
  display: none;
}
@media screen and (max-width: 700px) {
  .header .content .header_nav .mask_box {
    display: flex;
  }
}
.header .content .header_nav .mask_box .mask_logo {
  width: 150px;
}
.header .content .header_nav .mask_box .mask_close {
  width: 25px;
}
.header .content .sort {
  display: none;
}
@media screen and (max-width: 1200px) {
  .header .content .sort {
    width: 30px;
    height: 30px;
    display: block;
  }
}
.header .content .tab > a {
  color: white;
  padding: 43px 0 39px;
  margin: 0 35px;
  font-size: 16px;
  border-bottom: 3px solid transparent;
}
@media screen and (max-width: 700px) {
  .header .content .tab > a {
    padding: 0;
    margin: 0 8%;
  }
}
.header .content .tab:hover > a {
  border-bottom: 3px solid #12447C;
}
@media screen and (max-width: 700px) {
  .header .content .tab:hover > a {
    border-bottom: 0;
  }
}
@media screen and (max-width: 1200px) {
  .header .content .tab {
    font-size: 15px;
    padding: 15px 0;
    text-align: left;
    position: relative;
  }
  .header .content .tab:after {
    content: " ";
    height: 1px;
    width: 92%;
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 0;
    left: 8%;
  }
}
.header .content .tab ul {
  display: none;
  position: absolute;
  top: 67px;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 5px 0;
  box-shadow: 0 0 1px 1px rgba(6, 0, 1, 0.1);
}
.header .content .tab ul li {
  list-style: none;
  padding: 12px 0;
  font-size: 16px;
}
.header .content .tab:hover .pc {
  display: block;
}
.header .content .tab .tab_bottom {
  display: none;
}
@media screen and (max-width: 1200px) {
  .header .content .tab:hover .pc {
    display: none;
  }
  .header .content .tab .ipone {
    display: none;
    position: relative;
    top: 0;
    background-color: transparent;
  }
  .header .content .tab .ipone a {
    color: white;
    margin-left: 70px;
    font-size: 14px;
  }
  .header .content .tab .tab_bottom {
    float: right;
    margin: 0;
    padding: 3px 10px;
    display: block;
  }
  .header .content .tab .tab_bottom img {
    width: 18px;
    object-fit: contain;
  }
}
.header.HeaderWhite {
  position: relative;
  background-color: white;
  box-shadow: 0 0 1px 1px rgba(6, 0, 1, 0.1);
}
.header.HeaderWhite .content .tab a {
  color: #333;
  font-size: 16px;
}
@media screen and (max-width: 700px) {
  .header.HeaderWhite .content .tab a {
    color: #fff;
  }
}
.header .public, .header .tab_ul .tab_li_p4, .header .tab_ul .tab_li_p2 {
  color: #666666;
  font-size: 14px;
  margin-bottom: 50px;
}
.header .tab_li_lefticon, .header .tab_ul .tab_li_d img, .header .tab_ul .tab_li_a img, .header .tab_ul .tab_li_p3 img {
  width: 5px;
  height: 10px;
}
.header .tab_menu {
  display: none;
  position: absolute;
  top: 107px;
  left: 0;
  width: 80%;
  padding: 60px 10% 70px;
  background-color: #fff;
}
.header .tab_ul {
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.header .tab_ul .tab_li {
  flex: 0 0 32%;
  text-align: left;
}
.header .tab_ul .tab_li_p1 {
  font-size: 36px;
  color: #343434;
  margin-bottom: 40px;
}
.header .tab_ul .tab_li_a, .header .tab_ul .tab_li_p3 {
  color: #343434;
  font-size: 20px;
}
.header .tab_ul .tab_li_d {
  margin-bottom: 20px;
}
.header .tab_ul .tab_li_d a {
  color: #343434;
  font-size: 14px;
}
.header .tab_ul .tab_li_d:hover {
  margin-bottom: 20px;
}
.header .tab_ul .tab_li_d:hover .tab_data {
  display: block;
}
.header .tab_ul .tab_li_d:hover img {
  display: inline-block;
}
.header .tab_ul .tab_li_d img {
  display: none;
}
.header .tab_ul .tab_li_d .tab_data {
  display: none;
  padding-top: 20px;
}
.header .tab_ul .tab_li_d .tab_data a {
  margin-bottom: 20px;
  display: block;
}
.header .tab_ul .tab_li_img {
  width: 80%;
  max-width: 380px;
}
.header .tab_ul .tab_li_p3 {
  margin: 20px 0;
}
.header .tab_ul .tab_li_p4 {
  margin-bottom: 50px;
}

.mask {
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.hasbg {
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  padding: 10px 0;
}
.hasbg .content .logo img {
  max-width: 190px;
}

.show {
  opacity: 1 !important;
}

.bounceInDown {
  animation: bounceInDown 1s;
  -webkit-animation: bounceInDown 1s;
  /* Safari 和 Chrome */
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInLeft_ani {
  animation: fadeInLeft_ani 0.1s 0.5;
  -webkit-animation: fadeInLeft_ani 0.1s 0.5;
  /* Safari 和 Chrome */
}

@keyframes fadeInLeft_ani {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeOutLeft_ani {
  animation: fadeOutLeft_ani 0.1s 0.5;
  -webkit-animation: fadeOutLeft_ani 0.1s 0.5;
  /* Safari 和 Chrome */
}

@keyframes fadeOutLeft_ani {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.footer {
  background: url(../../images/footer_bg.png) no-repeat;
  background-size: cover;
}
.footer .content {
  max-width: 1400px;
  padding: 130px 0 160px;
  width: 90%;
  color: white;
  margin: auto;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (max-width: 1400px) {
  .footer .content {
    padding: 60px 0 100px;
  }
}
@media screen and (max-width: 700px) {
  .footer .content {
    padding: 10px;
  }
}
.footer .content .fli {
  -webkit-flex: 1;
  /* Chrome */
  -ms-flex: 1;
  /* IE 10 */
  flex: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-flex: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1;
  /* OLD - Firefox 19- */
}
@media screen and (max-width: 1200px) {
  .footer .content .fli {
    flex: 0 0 30%;
  }
}
@media screen and (max-width: 700px) {
  .footer .content .fli {
    flex: 0 0 100%;
  }
}
.footer .content .fli a {
  display: block;
  color: white;
}
.footer .content .fli .tit {
  font-size: 18px;
  margin-bottom: 30px;
}
.footer .content .fli .tit .bottom {
  float: right;
  width: 20px;
  object-fit: contain;
  display: none;
}
@media screen and (max-width: 700px) {
  .footer .content .fli .tit .bottom {
    display: block;
  }
}
@media screen and (max-width: 700px) {
  .footer .content .fli .tit {
    font-size: 16px;
    margin-bottom: 0;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media screen and (max-width: 700px) {
  .footer .content .fli .footMain {
    display: none;
    padding-top: 15px;
  }
}
.footer .content .fli p {
  opacity: 0.8;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
}
.footer .Ctext {
  color: white;
  font-size: 30px;
}
@media screen and (max-width: 700px) {
  .footer .Ctext {
    font-weight: 400;
    font-size: 18px;
    padding-top: 60px;
  }
}
.footer .Etext {
  color: white;
  font-size: 22px;
  padding: 25px 0 40px;
  opacity: 0.7;
  font-weight: 100;
}
@media screen and (max-width: 700px) {
  .footer .Etext {
    font-weight: 400;
    font-size: 13px;
    padding: 15px 0 120px;
  }
}

.text-center {
  text-align: center;
}

.colorWhite {
  color: white;
}

.top-nav a {
  display: block;
  width: 100%;
  height: 100%;
}
.top-nav a:after {
  content: " ";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  display: block;
  width: 100%;
  height: 4px;
  transform: translate(-50%);
}

.top-nav a:hover:after {
  height: 4px;
  animation: ad_width 0.5s linear forwards;
  background: #0C4381;
}

@keyframes ad_width {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.paging {
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 700px) {
  .paging .pc {
    display: none;
  }
}
.paging div {
  min-width: 35px;
  height: 35px;
  text-align: center;
  line-height: 32px;
  cursor: pointer;
  margin: 0 5px;
  color: #7E7E7E;
}
.paging div.active {
  color: #21405D;
}
@media screen and (max-width: 700px) {
  .paging div {
    min-width: 25px;
    height: 25px;
    line-height: 25px;
  }
}
.paging .num {
  margin: 0 35px;
  color: #7E7E7E;
}
.paging input {
  width: 35px;
  height: 35px;
  margin: 0 10px;
  border: 1px solid #888;
  text-align: center;
}
.paging .Border {
  border: 1px solid #888;
}

.nav {
  text-align: center;
  height: 60px;
  box-shadow: 0 0 1px 1px rgba(6, 0, 1, 0.1);
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 700px) {
  .nav {
    width: 100%;
    overflow-y: hidden;
    overflow-x: auto;
    justify-content: start;
  }
}
.nav div {
  padding: 17px 0;
  min-width: 80px;
  margin: 0 10px;
  border-bottom: 3px solid transparent;
}
.nav div a {
  font-size: 16px;
  white-space: nowrap;
}
@media screen and (max-width: 700px) {
  .nav div a {
    font-size: 14px;
  }
}
.nav div.active {
  border-bottom: 3px solid #11437B;
}
.nav div:hover {
  border-bottom: 3px solid #11437B;
}
.nav.top_nav div {
  border-top: 3px solid transparent;
  border-bottom: 0;
  padding: 14px 0 20px;
}
.nav.top_nav div.active {
  border-top: 3px solid #11437B;
  border-bottom: 0;
}
.nav.top_nav div:hover {
  border-top: 3px solid #11437B;
  border-bottom: 0;
}

.pos {
  padding: 18px 0;
  box-shadow: 0 0 1px 1px rgba(6, 0, 1, 0.1);
  color: #666666;
  font-size: 16px;
}
.pos .content {
  max-width: 1400px;
  width: 90%;
  margin: auto;
}
.pos a {
  color: #666666;
  font-size: 16px;
}

/*# sourceMappingURL=common.css.map */
