* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font: 14px/1.5em Noto Sans, Helvetica, sans-serif;
  background-color: #fff;
  min-width: 1200px;
}

a {
  text-decoration: none;
  color: #103c9a;
}

li {
  list-style: none;
}

img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
}

.fs-14{
  font-size: 14px;
}

.c-blue{
  color:#103c9a;
}

.pd-40{
  padding:40px;
}
.mt-10{
  margin-top:10px;
}
.mt-20{
  margin-top:20px;
}
.mt-30{
  margin-top:30px;
}
.mt-50{
  margin-top:50px;
}
.mb-30{
  margin-bottom: 30px;
}
.mt-60{
  margin-top:60px;
}
.mt-40{
  margin-top:40px;
}
.ml-2{
  margin-left: 2px;
}
.pd-20{
  padding:20px;
}

.container {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.flex {
  display: flex;
}

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

.align-start {
  align-items: self-start;
}

.space-between {
  justify-content: space-between;
}

.index-hd {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 12px;
}
.index-hd .tt {
  font-size: 22px;
  border-left: 4px solid #103c9a;
  padding-left: 12px;
}
.index-hd .more span {
  color: #969696;
}
.index-hd .more i,.more i {
  width: 6px;
  height: 12px;
  background: url(../img/icon_arrow_02.png) left top no-repeat;
  margin-left: 8px;
}
.index-hd .more:hover span {
  color: #103c9a;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #181f23;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation: fadeIn 1s linear;
}

.line-1{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.line-2{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.line-3{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.header {
  background: #fff;
}
.header .top {
  height: 130px;
  background: url(../img/head_bg.png) 541px center no-repeat;
}
.header .top .logo img {
  width: 445px;
  height: 47px;
}
.header .top .login-container {
  width: 100px;
  height: 34px;
  border: 1px solid #103c9a;
  border-radius: 34px;
}
.header .top .login-container a {
  flex: 1;
  text-align: center;
  transition: color 300ms;
}
.header .top .login-container a:hover {
  color: #bc9459;
}
.header .top .login-container .line {
  width: 1px;
  height: 16px;
  background-color: #103c9a;
}
.header .nav {
  width: 100%;
  height: 54px;
  background-color: #103c9a;
  position: relative;
  z-index: 999;
}

.header .nav .nav-item {
  color: #fff;
  line-height: 54px;
  text-align: center;
  position: relative;
  transition: all 300ms;
  cursor: pointer;
  width: 150px;
}
.header .nav .nav-item.active {
  background-color: #0d307b;
}
.header .nav .nav-item.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #bc9459;
}
.header .nav .nav-item:hover .sub-menu {
  left: 0;
  opacity: 1;
  visibility: visible;
}
.header .nav .nav-item .sub-menu {
  position: absolute;
  top: 54px;
  left: -20px;
  width: 180px;
  line-height: 50px;
  z-index: 2;
  transition: all 300ms;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 5px 5px;
}
.header .nav .nav-item .sub-menu .son-btn {
  text-align: left;
  padding-left: 40px;
  display: block;
  color: #333;
  position: relative;
}

.header .nav .nav-item .sub-menu .son-btn .icon{
  position: absolute;
  right: 10px;
  top:50%;
  transform: translateY(-50%);
}

.header .nav .nav-item .sub-menu .son-btn:hover,.header .nav .nav-item .sub-menu .son-btn.active {
  background: #f3f3f3;
}
.header .nav .nav-item .sub-menu .son-btn:hover .grand-son{
  left: 180px;
  visibility: visible;
  opacity: 1;
}

.grand-son{
  position: absolute;
  left: 160px;
  width: 180px;
  top:0;
  visibility: hidden;
  opacity: 0;
  transition: all 300ms;
  background: #fff;
  box-shadow: 5px 5px 10px rgba(0,0,0,.1);
  border-radius: 0 0 5px 5px;
}
.footer {
  width: 100%;
  background-color: #f1f2f3;
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  padding-top: 50px;
}
.footer .info {
  flex: 1;
}
.footer .info .container {
  display: flex;
}
.footer .info .container .logo {
  flex-shrink: 0;
}
.footer .info .container .logo img {
  width: 113px;
  height: 88px;
}
.footer .info .container .menu {
  display: flex;
  flex: 1;
  margin: 0 80px 0 80px;
}
.footer .info .container .menu li {
  flex: 1;
}
.footer .info .container .menu li dt {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  margin-bottom: 15px;
}
.footer .info .container .menu li dd {
  margin-bottom: 10px;
}
.footer .info .container .menu li dd:last-child {
  margin-bottom: 0;
}
.footer .info .container .menu li dd a {
  color: #6c7786;
}
.footer .info .container .menu li dd a:hover {
  color: #103c9a;
}
.footer .info .container .qr-code {
  flex-shrink: 0;
  text-align: center;
}
.footer .info .container .qr-code img {
  width: 115px;
  height: 115px;
}
.footer .info .container .qr-code p {
  font-size: 12px;
  color: #6c7786;
  margin-top: 10px;
}
.footer .info .contact {
  display: flex;
  justify-content: center;
  font-size: 12px;
  color: #6c7786;
  margin: 50px 0 20px 0;
}
.footer .info .contact .item {
  display: flex;
  align-items: center;
  margin: 0 15px;
}
.footer .info .contact .item .icon {
  margin-right: 5px;
}
.footer .copyright {
  width: 100%;
  background: #eaebeb;
  border-top: 1px solid #dfe1e2;
  text-align: center;
  color: #6c7786;
  padding: 15px 0;
  line-height: 24px;
}
.footer .copyright a {
  color: #6c7786;
  text-decoration: underline;
}

.clearfix:after{
  content:".";
  display: block;
  clear: both;
  visibility: visible;
  height: 0;
}

.page-banner{
  width:100%;
  overflow: hidden;
}

.page-banner img{
  width:100%;
  height: 400px;
  object-fit: cover;
}

.crumbs{
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding:0 20px;
  height: 40px;
  background: #fff;
  display: flex;
  align-items: center;
  color:#6c7786;
}
.crumbs .map{
  display: flex;
  align-items: center;
}
.crumbs .map .arrow{
  margin:0 5px;
}
.crumbs .map a{
  color:#6c7786;
}
.crumbs .map a:hover{
  color:#000;
}
.crumbs .map a:first-child{
  display: flex;
  align-items: center;
}

.page-container{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.page-container .menu{
  width: 260px;
  position: sticky;
  top:20px;
  background: #fff;
}

.page-container .menu .hd{
  width: 100%;
  height: 70px;
  background: url(../img/menu-hd-bg.png) 140px 20px no-repeat,linear-gradient(to top, #184bb9, #103d9b);
  display: flex;
  align-items: center;
  padding-left:20px;
}

.page-container .menu .hd .icon{
  width: 26px;
  height: 26px;
  background: url(../img/icon-menu.png) left top no-repeat;
}

.page-container .menu .hd .txt{
  font-size: 20px;
  color:#ffd290;
  margin-left:15px;
}

.page-container .menu .bd .menu-item .menu-item-wrap{
  position: relative;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 30px;
  cursor: pointer;
}
.page-container .menu .bd .menu-item .menu-item-wrap{
  color: #333;
}
.page-container .menu .bd .menu-item .menu-item-wrap:hover{
  color: #103c9a;
}

.page-container .menu .bd .menu-item.active{
  background: linear-gradient(to right, #edf0f7, rgba(255,255,255, 1));
}

.page-container .menu .bd .menu-item.not-sub.active{
  position: relative;
}
.page-container .menu .bd .menu-item.not-sub.active:after{
  content: "";
  position: absolute;
  left:0;
  top:0;
  bottom:0;
  width: 4px;
  background: #103c9a;
}
.page-container .menu .bd .menu-item .icon-menu-item{
  width:16px;
  height: 17px;
}

.page-container .menu .bd .menu-item .sub-menu{
  display: none;
}

.page-container .menu .bd .menu-item .sub-menu-item{
  width: 100%;
  line-height: 40px;
  position: relative;
}

.page-container .menu .bd .menu-item .sub-menu-item.active{
  background: #fff;
}
.page-container .menu .bd .menu-item .sub-menu-item.active:after{
  content: "";
  position: absolute;
  left:0;
  top:0;
  bottom:0;
  width: 4px;
  background: #103c9a;
}

.page-container .menu .bd .menu-item .sub-menu-item a{
  color: #666;
  display: block;
  padding-left: 80px;
}

.page-container .menu .bd .menu-item .sub-menu-item a:hover{
  color:#184bb9;
}

.page-container .menu .bd .menu-item .icon-menu-item.menu-item-01{
  background: url(../img/icon-menu-item-01.png) left top no-repeat;
}

.page-container .menu .bd .menu-item .txt{
  font-size: 16px;
  margin-left:20px;
}

.page-container .menu .bd .menu-item .icon-arrow{
  width: 12px;
  height: 12px;
  background: url(../img/icon-arrow.png) left top no-repeat;
  position: absolute;
  right: 15px;
  top: 50%;
  transition: all 300ms;
  transform: rotate(0deg) translateY(-50%);
  transform-origin: 50% 0;
}

.page-container .menu .bd .menu-item.open .icon-arrow{
  transform: rotate(180deg) translateY(-50%);
}

/*.page-container .menu .bd .menu-item.open .sub-menu{*/
/*  display: block;*/
/*}*/

.page-container .menu .bd{
  background: #fff;
}

.page-container .content{
  width: 920px;
  background: #fff;
}

.m-hd{
  position: relative;
  display: inline-block;
}
.m-hd .txt{
  font-size: 20px;
  font-weight: bold;
  padding-right: 40px;
}
.m-hd .line{
  width: 100%;
  max-width: 100px;
  height: 4px;
  background: #004199;
  position: relative;
  overflow: hidden;
  margin-top:8px;
}
.m-hd .line:after{
  content:"";
  position: absolute;
  left:0;
  top:-15px;
  width: 30px;
  height: 30px;
  background: #dcb671;
  transform-origin: center center;
  transform: rotate(30deg);
}

.news-list li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.news-list li:last-child{
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.news-list .img{
  width: 210px;
  height: 130px;
  flex-shrink: 0;
  overflow: hidden;
}

.news-list .img a:hover img{
  transform: scale(1.2);
}

.news-list .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 300ms;
}
.news-list .info{
  margin-left:20px;
}
.news-list .info .tt a{
  font-size: 16px;
  color: #666;
  line-height: 1;
  transition: all 300ms;
}
.news-list .info .tt a:hover{
  color: #103c9a;
}
.news-list .info .desc{
  display: flex;
  align-items: center;
  margin-top:10px;
}
.news-list .info .desc .item{
  display: flex;
  align-items: center;
  color: #6c7786;
  font-size: 12px;
  line-height: 1;
  margin-right: 20px;
}
.news-list .info .desc .item .icon{
  width: 20px;
  height: 20px;
}
.news-list .info .desc .item .icon.icon-01{
  background:url(../img/news/icon_time.png) left top no-repeat;
}
.news-list .info .desc .item .icon.icon-02{
  background:url(../img/news/icon_eay.png) left top no-repeat;
}
.news-list .info .cont{
  font-size: 14px;
  color: #6c7786;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top:45px;
  min-height: 42px;
}


.ui-pagination-container {
  height: 34px;
  line-height: 34px;
  text-align: center;
  margin:20px 0;
}

.ui-pagination-container .ui-pagination-page-item {
  font-size: 14px;
  padding: 4px 10px;
  background: #fff;
  border: 1px solid #103c9a;
  color: #888;
  margin: 0 3px;
  text-decoration: none;
}

.ui-pagination-container .ui-pagination-page-item:hover {
  border-color: #103c9a;
  color: #103c9a;
  text-decoration: none;
}

.ui-pagination-container .ui-pagination-page-item.active {
  background: #103c9a;
  border-color: #103c9a;
  color: #fff;
  cursor: default;
}

.newsr-show .tt{font-size:22px; font-weight: bold; line-height: 2;}
.newsr-show .opt{display: flex; align-content: center;}
.newsr-show .opt .item{display: flex; align-items: center; line-height: 1; font-size: 12px; color: #6c7786; margin-right: 20px;}
.newsr-show .opt .icon{width: 20px; height: 20px;}
.newsr-show .opt .icon.icon-01{background: url(../img/news/icon_time.png) left top no-repeat;}
.newsr-show .opt .icon.icon-02{background: url(../img/news/icon_eay.png) left top no-repeat;}
.newsr-show .description{background: #f7f7f9; padding:20px; border-radius: 5px; margin:20px 0; font-size: 14px; line-height: 2;}
.newsr-show .cont img{max-width: 100%;}
.underway-container .underway {
  display: flex;
  align-items: flex-end;
  height: 14px;
}
.underway-container .underway span {
  width: 2px;
  height: 5px;
  background-color: #ff471a;
  margin-right: 2px !important;
}


.underway-container .underway span:last-child {
  margin-right: 0;
}
.underway-container .underway span:nth-child(1) {
  animation: underway 1s infinite 0s linear both;
}
.underway-container .underway span:nth-child(2) {
  animation: underway 1s infinite 0.2s linear both;
}
.underway-container .underway span:nth-child(3) {
  animation: underway 1s infinite 0.4s linear both;
}
.underway-container .underway span:nth-child(4) {
  animation: underway 1s infinite 0.6s linear both;
}
.underway-container .txt {
  font-size: 12px;
  margin-left: 5px;
  color: #ff471a;
  line-height: 1;
}

.not-data{
  text-align: center;
  color: #999;
}

@keyframes underway {
  0% {
    height: 5px;
  }
  50% {
    height: 14px;
  }
  100% {
    height: 5px;
  }
}


.m-dialog{
  position: fixed;
  left:0;
  top:0;
  right:0;
  bottom:0;
  z-index: 1001;
}
.m-dialog .mask{
  position: fixed;
  left:0;
  top:0;
  right:0;
  bottom:0;
  z-index: 1;
  background: rgba(0, 0, 0, .8);
}
.m-dialog-content{
  width:500px;
  background: #fff;
  position: fixed;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border-radius: 5px;
}
.dialog-cont{
  padding:30px 0;
  font-size: 16px;
}

.m-dialog-content .dialog-title{
  font-size: 14px;
  color: #333;
  text-align: center;
  position: relative;
  line-height: 25px;
  font-weight: bold;
  padding-top:10px;
}

.m-dialog-content .close-dialog{
  position: absolute;
  right:10px;
  top:10px;
  line-height: 1;
}

.m-dialog-content.open{
  animation: dialogToScale 300ms ease-in-out both;
}
.m-dialog-content.close{
  animation: dialogToScale 300ms ease-in-out both reverse;
}

.m-dialog .dialog-btns{
  border-top:1px solid #eee;
  padding:10px;
}

.m-dialog .dialog-btns button{
  flex:1;
  line-height: 30px;
  border-radius: 30px;
  background: none;
  border:1px solid transparent;
  margin:0 5px;
  cursor: pointer;
}

.m-dialog .dialog-btns .cancel-btn{
  border-color: #ddd;
}

.m-dialog .dialog-btns .confirm-btn{
  border-color: #103c9a;
  color: #fff;
  background: #103c9a;
}

.m-toast{
  position: fixed;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, .7);
  color: #fff;
  z-index: 1002;
  line-height: 1.5em;
  padding:8px 15px;
  border-radius: 5px;
  font-size: 14px;
}

.m-toast.open{
  animation: dialogToScale 300ms ease-in-out both;
}
.m-toast.hide{
  animation: dialogToScale 300ms ease-in-out both reverse;
}

.mask.open{
  animation: mask 300ms linear both;
}
.mask.close{
  animation: mask 300ms linear both reverse;
}
.login-wrapper{
  opacity: 1;
  transition: all 300ms;
  z-index: 1001;
  position: relative;
}
.login-wrapper.hide{
  visibility: hidden;
  opacity: 0;
}

.login-wrapper-box{
  position: fixed;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
}

.login-wrapper-box .close{
  width: 20px;
  height: 20px;
  background: url(../img/icon_close.png) left top / cover no-repeat;
  position: absolute;
  right:20px;
  top:20px;
}

.login-wrapper__hd{
  font-size: 24px;
}

.login-wrapper__bd{
  margin-top:20px;
}

.login-wrapper__bd__item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border:1px solid #ddd;
  border-radius: 45px;
  margin-bottom: 20px;
  padding:0 10px;
}

.login-wrapper__bd__item .icon{
  width: 30px;
  height: 30px;
}

.login-wrapper__bd__item .icon.icon-mobile{
  background: url(../img/icon_mobile.png) left top / cover no-repeat;
}

.login-wrapper__bd__item .icon.icon-code{
  background: url(../img/icon_code.png) left top / cover no-repeat;
}

.login-wrapper__bd__item input{
  flex:1;
  border:none;
  outline: none;
  margin-left:10px;
  padding:10px 0;
  height: 45px;
}

.login-wrapper__bd__item .send-code{
  background: #1f6ecf;
  color: #fff;
  padding:8px 10px;
  outline: none;
  border:none;
  border-radius: 30px;
  cursor: pointer;
  min-width: 90px;
}
.login-wrapper__bd__item .send-code.disabled{
  background: #eee;
  color: #999;
  cursor: default;
}
.login-wrapper__bd__item .send-code:not([class*="disabled"]):hover{
  opacity: .8;
}

.login-wrapper__bd__submit button{
  display: block;
  width: 100%;
  background: #1f6ecf;
  color: #fff;
  border:none;
  outline: none;
  height: 45px;
  line-height: 45px;
  border-radius: 45px;
  cursor: pointer;
  font-size: 16px;
}
.login-wrapper__bd__submit button.disabled{
  background: #eee;
  color: #999;
  cursor: default;
}

.login-wrapper__bd__submit button:not([class*="disabled"]):hover{
  opacity: .8;
}

.login-wrapper__mask{
  position: fixed;
  top:0;
  right:0;
  bottom:0;
  left:0;
  background: rgba(0,0,0,.8);
  z-index: 1000;
}


@keyframes mask {
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}

@keyframes dialogToScale {
  from{
    opacity: 0;
    transform: translate(-50%, -50%) scale(.3);
  }
  to{
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.pagination-container{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}
.pagination{
  display: inline-flex;
  align-items: center;
}
.pagination a, .pagination span{
  padding: 6px 12px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination li.active span{
  background-color: #103c9a;
  color: #fff;
}
