@charset "UTF-8";
/*单行省略号*/
/*多行省略号*/
/**清除浮动**/
/**fit img**/
/*主色调*/
/*文本颜色*/
/*字体*/
* {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
}

span,
em,
i {
  font-style: normal;
  display: inline-block;
}

input,
button,
textarea,
select {
  outline: none;
  border: 0;
}

select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

img {
  border: none;
}

body {
  font-family: PingFang SC, Microsoft YaHei, Arial, Helvetica, sans-serif;
  background-color: #fff;
  font-size: 16px;
  color: #333;
  line-height: 1.2;
}

textarea, input {
  font-family: PingFang SC, Microsoft YaHei, Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

/*滚动条*/
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-button:vertical {
  display: none;
}

::-webkit-scrollbar-corner,
::-webkit-scrollbar-track {
  background-color: #e2e2e2;
}

::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:vertical:hover {
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.35);
}

::-webkit-scrollbar-thumb:vertical:active {
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.38);
}

body {
  min-width: 1140px;
}

/*版心*/
.wp {
  min-width: 1110px;
  width: 1110px;
  margin: 0 auto;
}

.app-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  right: 0;
  border-bottom: 1px solid #E0E0E0;
  height: 99px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.app-header.fix {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.app-header .header-main:after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  width: 0;
  height: 0;
}

.app-header .logo {
  height: 73px;
  width: auto;
  margin-top: 30px;
}

.app-header .logo img {
  display: block;
/*  height: 100%;*/
}

.app-header .eyebrow {
  text-align: right;
  margin-top: 18px;
}

.app-header .eyebrow a {
  display: inline-block;
  font-size: 14px;
  padding: 0 10px;
  border-right: 1px solid #E0E0E0;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  line-height: 20px;
}

.app-header .eyebrow a:first-child {
  border-left: 1px solid #E0E0E0;
}

.app-header .eyebrow a:hover {
  color: #063F88;
}

.app-header .eyebrow .icon-sousuo {
  font-size: 18px;
}

.app-header .menu {
  padding-top: 26px;
  text-align: right;
  box-sizing: border-box;
}

.app-header .menu a {
  font-size: 18px;
  display: inline-block;
  margin-left: 65px;
  position: relative;
  line-height: 20px;
  font-weight: 500;
  padding-bottom: 14px;
}
.app-header .menu a::active{
  color: #016db6
}
.app-header .menu a::after {
  content: "";
  width: 100%;
  height: 0px;
  background-color: #016db6;
  position: absolute;
  left: 0;
  bottom: 0px;
  z-index: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  color:#016db6;

}

.app-header .menu a:first-child {
  margin: 0;
}

.app-header .menu a.on::after, .app-header .menu a.cur::after, .app-header .menu a:hover::after {
  height: 3px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}

.app-header .menu-details {
  position: absolute;
  left: 0;
  right: 0;
  top: 99px;
  z-index: 1000;
  background-color: #fff;
  border-bottom: 1px solid #E0E0E0;
  box-shadow: 0px 1px 0px 0px #e8e8e8 inset;
  display: none;
}

.app-header .menu-detail-item {
  padding: 18px 0;
  display: none;
}

.app-header .menu-detail-item .tit {
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
}

.app-header .nav-list {
  margin: 0 -28px;
}

.app-header .nav-list li {
  display: inline-block;
  padding: 12px 18px;
}

.app-header .nav-list li a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0 10px;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  position: relative;
  line-height: 30px;
}

.app-header .nav-list li a::after, .app-header .nav-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 0px;
  background-color: #016db6;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  pointer-events: none;
}

.app-header .nav-list li a::after {
  right: 0;
  -webkit-transform: translateX(-8px);
          transform: translateX(-8px);
}

.app-header .nav-list li a::before {
  left: 0;
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}

.app-header .nav-list li a:hover {
  color: #016db6;
}

.app-header .nav-list li a:hover::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  width: 1px;
}

.app-header .nav-list li a:hover::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  width: 1px;
}

.app-header .rec-block {
  margin-top: 35px;
}

.app-header .rec-list {
  margin-top: 10px;
}

.app-header .rec-list li ~ li {
  margin-top: 5px;
}

.app-header .rec-list a {
  display: inline-block;
  color: #979797;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
  line-height: 26px;
}

.app-header .rec-list a:hover {
  color: #063F88;
}

.header-fix-box {
  height: 100px;
}

.head-search-box {
  border-left: 1px solid #E0E0E0;
  font-size: 14px;
  color: #999;
  padding: 0 8px;
  width: 180px;
  display: none;
  box-sizing: border-box;
}

.head-search-box.show {
  display: inline-block;
}

.head-search-close {
  cursor: pointer;
  font-size: 14px;
  display: none;
}

.head-search-close.show {
  display: inline-block;
}

.show-search.no-bor {
  border: none !important;
}

.app-footer .foot-block {
  border-top: 10px solid #063F88;
  background-color: #F2F2F2;
  padding: 40px 0 45px;
}

.app-footer .site-block {
  float: left;
  width: 14.285714%;
}

.app-footer .site-block .tit {
  font-size: 18px;
  color: #063F88;
}

.app-footer .site-block .site-catalog {
  margin-top: 20px;
}

.app-footer .site-block li ~ li {
  margin-top: 10px;
}

.app-footer .site-block a {
  font-size: 14px;
  color: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.app-footer .site-block a:hover {
  color: #063F88;
  box-shadow: 0 -1px 0 0 #063F88 inset;
}

.app-footer .copyright {
  background-color: #D8D8D8;
  padding: 15px;
}

.app-footer .web-info {
  font-size: 14px;
  color: #000;
  height: 22px;
  line-height: 22px;
}

.app-footer .web-info a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.app-footer .web-info a:hover {
  color: #063F88;
  box-shadow: 0 -1px 0 0 #063F88 inset;
}

.app-footer .other-link {
  height: 22px;
}

.app-footer .other-link:after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  width: 0;
  height: 0;
}

.app-footer .other-link li {
  float: left;
  cursor: pointer;
  margin-left: 20px;
}

.app-footer .other-link li:hover .icon-img {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.app-footer .other-link li .icon-img {
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  width: 22px;
  height: 22px;
}

@-webkit-keyframes showImg {
  0% {
    -webkit-transform: translate(0, 5px);
            transform: translate(0, 5px);
  }
  100% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
}

@keyframes showImg {
  0% {
    -webkit-transform: translate(0, 5px);
            transform: translate(0, 5px);
  }
  100% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
}

.app-footer .weixin-box:hover .weixin-img {
  display: block;
  -webkit-animation: showImg 0.3s ease forwards;
          animation: showImg 0.3s ease forwards;
}

.app-footer .weixin-img {
  width: 100px;
  position: absolute;
  bottom: 40px;
  left: 0;
  z-index: 10;
  background-color: #fff;
  margin-left: -40px;
  padding: 1px;
  box-sizing: border-box;
  display: none;
}

.app-footer .weixin-img img {
  display: block;
  width: 100%;
  height: auto;
  background-color: #eee;
}

.fl {
  float: left !important;
}

.fr {
  float: right !important;
}

.clear-both {
  clear: both;
}

.clear:after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  width: 0;
  height: 0;
}

/*定位*/
.pos-r {
  position: relative;
}

.img-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ov-hide {
  overflow: hidden;
}

.text-right {
  text-align: right !important;
}

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

.text-left {
  text-align: left !important;
}

.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.html-box {
  font-size: 16px;
  line-height: 34px !important;
  overflow: hidden;
}

.html-box * {
  font-size: 16px;
  line-height: 34px !important;
}

.html-box img {
  max-width: 100%;
}

.html-box span, .html-box em, .html-box i {
  display: initial;
  max-width: 100%;
}

.empty-text {
  text-align: center;
  padding: 30px;
  color: #888;
  font-size: 14px;
}

.dan {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}

.full {
  display: block;
  width: 100%;
}

.go-top {
  position: fixed;
  bottom: 80px;
  right: 30px;
  z-index: 1000;
  color: #016db6;
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 50%;
  background-color: #063F88;
  cursor: pointer;
  display: none;
  box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.4);
  color: #fff;
}

.go-top i {
  display: inline-block;
  line-height: 48px;
  font-size: 16px;
}

.color {
  color: #063F88 !important;
}

.h-link {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.h-link:hover {
  box-shadow: 0 -1px 0 0 #063F88 inset;
}

.more {
  color: #016db6;
  font-size: 14px;
  line-height: 16px;
  padding: 0 10px;
  border-left: 1px solid #016db6;
  border-right: 1px solid #016db6;
}

.more:hover {
  text-decoration: underline;
}

.hide {
  display: none !important;
}

.img {
  background-color: #eee;
}

.crumbs {
  padding: 26px 0 40px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #063F88;
}

.crumbs span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
}

.crumbs span.xian {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #063F88;
}

.crumbs a {
  vertical-align: middle;
  display: inline-block;
}

.crumbs .link:hover {
  text-decoration: underline;
}

.crumbs a:last-child {
  color: #333;
}

.block-tit {
  color: #063F88;
  font-size: 24px;
  font-size: 18px;
}

.block-tit span {
  display: inline-block;
  padding: 0 10px;
  border-left: 2px solid #063F88;
  border-right: 2px solid #063F88;
}

.modal-box {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200000;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
}

@-webkit-keyframes showModal {
  0% {
    -webkit-transform: translate(-50%, -50px);
            transform: translate(-50%, -50px);
  }
  100% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@keyframes showModal {
  0% {
    -webkit-transform: translate(-50%, -50px);
            transform: translate(-50%, -50px);
  }
  100% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

.modal-box.show {
  display: block;
}

.modal-box.show .modal-main {
  -webkit-animation: showModal 0.35s ease  forwards;
          animation: showModal 0.35s ease  forwards;
}

.modal-box .modal-main {
  position: absolute;
  top: 8%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background: #fff;
  margin-bottom: 50px;
}

.modal-box .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: all 0.3;
  transition: all 0.3;
}

.modal-box .modal-close:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.modal-box .modal-close .iconfont {
  color: #D8D8D8;
  font-size: 20px;
  font-weight: 700;
}

.area-select {
  padding: 10px 65px;
  min-width: 900px;
}

.area-select .img {
  position: relative;
}

@-webkit-keyframes ripple {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
  }
  5% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes ripple {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
  }
  5% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes showname {
  0% {
    -webkit-transform: translate(-5px, 0);
            transform: translate(-5px, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes showname {
  0% {
    -webkit-transform: translate(-5px, 0);
            transform: translate(-5px, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.area-select .img .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #016db6;
  position: absolute;
  z-index: 10;
  cursor: pointer;
}

.area-select .img .dot:hover .name {
  display: block;
  -webkit-animation: showname 0.3s ease  forwards;
          animation: showname 0.3s ease  forwards;
}

.area-select .img .dot::after {
  content: '';
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  position: absolute;
  border: 2px solid #016db6;
  border-radius: 100%;
  -webkit-animation: ripple 4s ease-out 0ms infinite;
          animation: ripple 4s ease-out 0ms infinite;
  z-index: -1;
  height: 38px;
  width: 38px;
  top: -18px;
  left: -18px;
  pointer-events: none;
}

.area-select .img .dot::before {
  content: '';
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  position: absolute;
  border: 2px solid #016db6;
  border-radius: 100%;
  -webkit-animation: ripple 4s ease-out 500ms infinite;
          animation: ripple 4s ease-out 500ms infinite;
  z-index: -1;
  height: 20px;
  width: 20px;
  top: -9px;
  left: -9px;
}

.area-select .img .name {
  white-space: nowrap;
  font-size: 12px;
  color: #333;
  position: absolute;
  line-height: 14px;
  top: -4px;
  z-index: 10;
  display: none;
}

.area-select .img .name.l {
  left: 20px;
}

.area-select .img .name.r {
  right: 20px;
}

.area-select .tit {
  font-size: 20px;
  color: #063F88;
  text-align: center;
  font-size: 18px;
}

.area-select .tit a {
  display: inline-block;
  padding: 0 20px;
  border-left: 2px solid #063F88;
  border-right: 2px solid #063F88;
}

.area-select .tit a:hover {
  text-decoration: underline;
}

.area-select .country-list {
  padding-bottom: 30px;
}

.area-select .country-list:after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  width: 0;
  height: 0;
}

.area-select .country-list li {
  width: 20%;
  margin-top: 25px;
  float: left;
  text-align: center;
}

.area-select .country-list a {
  display: inline-block;
  color: #063F88;
  font-size: 14px;
  width: 85px;
  border-left: 1px solid #063F88;
  border-right: 1px solid #063F88;
  text-align: center;
}

.area-select .country-list a:hover {
  text-decoration: underline;
}


@media screen and (max-width:1600px ){
.wp {
  min-width: 1100px !important;
  width: 1100px !important;
  margin: 0 auto;
}
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  right: 0;
  border-bottom: 1px solid #E0E0E0;
  height: 79px !important;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.app-header .logo {
  height: 65px !important;
  width: auto;
  margin-top: 18px !important;
}
.app-header .eyebrow {
  text-align: right;
  margin-top: 8px !important;
}
.app-header .menu {
  padding-top: 10px;
  text-align: right;
  box-sizing: border-box;
}
.app-header .menu a {
  font-size: 18px !important;
  display: inline-block;
  margin-left: 65px;
  position: relative;
  line-height: 24px;
  font-weight: 500;
  padding-bottom: 14px;
}
.app-header .menu-details {
  position: absolute;
  left: 0;
  right: 0;
  top: 79px !important;
  z-index: 1000;
  background-color: #fff;
  border-bottom: 1px solid #E0E0E0;
  box-shadow: 0px 1px 0px 0px #e8e8e8 inset;
  display: none;
}

.app-header .menu-detail-item .tit {
  font-size: 18px !important;
  line-height: 25px;
  font-weight: 500;
}
.app-header .nav-list li {
  display: inline-block;
  padding: 12px 15px !important;
}

}

/*# sourceMappingURL=maps/style.css.map */
@media screen and (max-width:1366px ){
.wp {
  min-width: 900px !important;
  width: 900px !important;
  margin: 0 auto;
}
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  right: 0;
  border-bottom: 1px solid #E0E0E0;
  height: 79px !important;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.app-header .logo {
  height: 65px !important;
  width: auto;
  margin-top: 15px !important;
}
.app-header .eyebrow {
  text-align: right;
  margin-top: 8px !important;
}
.app-header .menu {
  padding-top: 10px;
  text-align: right;
  box-sizing: border-box;
}
.app-header .menu a {
  font-size: 16px !important;
  display: inline-block;
  margin-left: 65px;
  position: relative;
  line-height: 24px;
  font-weight: 500;
  padding-bottom: 14px;
}
.app-header .menu-details {
  position: absolute;
  left: 0;
  right: 0;
  top: 79px !important;
  z-index: 1000;
  background-color: #fff;
  border-bottom: 1px solid #E0E0E0;
  box-shadow: 0px 1px 0px 0px #e8e8e8 inset;
  display: none;
}

.app-header .menu-detail-item .tit {
  font-size: 16px !important;
  line-height: 25px;
  font-weight: 500;
}
.app-header .nav-list li {
  display: inline-block;
  padding: 12px 0px !important;
}


}
