@charset 'utf-8';

body {
  margin: 0 auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
::after,
::before {
  box-sizing: border-box;
}

.wrap-container{
  min-height: 100vh;  /* 容器最小高度占满视口 */
  display: flex;
  flex-direction: column;  /* 垂直排列子元素 */
}
.container-box{
  flex: 1;  /* 内容区自动填充剩余空间 */
}
.ub {
  display: -webkit-flex !important;
  display: flex !important;
  position: relative;
}

.ub-rev {
  -webkit-flex-direction: reverse;
  flex-direction: reverse;
}

.ub-fh {
  width: 100%;
  box-sizing: border-box;
}

.ub-fv {
  height: 100%;
  box-sizing: border-box;
}

.ub-con {
  position: absolute;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.ub-ac {
  -webkit-justify-content: center;
  justify-content: center;
}

.ub-ae {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.ub-pc {
  -webkit-align-items: center;
  align-items: center;

}

.ub-pe {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.ub-ver {
  -webkit-flex-direction: column;
  flex-direction: column;
}

.ub-f1 {
  position: relative;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

.ub-f2 {
  position: relative;
  -webkit-flex-grow: 2;
  flex-grow: 2;
}

.ub-f3 {
  position: relative;
  -webkit-flex-grow: 3;
  flex-grow: 3;
}

.ub-f4 {
  position: relative;
  -webkit-flex-grow: 4;
  flex-grow: 4;
}

.ub-img {
  -webkit-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.ub-img1 {
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.ub-img1c {
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.ub-img2 {
  background-repeat: repeat-x;
  background-size: auto 100%
}

.ub-img3 {
  background-repeat: repeat-y;
  background-size: 100% auto
}

.ub-img4 {
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
}

.ub-img5 {
  -webkit-background-size: auto 100%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.ub-img6 {
  background-repeat: no-repeat;
  background-position: center;
}

.ub-img7 {
  -webkit-background-size: auto 100%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: left;
}

.ub-img8 {
  background-repeat: repeat-x;
  background-position: center center;
}

.ub-img9 {
  background-repeat: repeat;
}

.ub-img10 {
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-attachment: fixed
}


/*Header Style One*/
.header-style-one .header-wrapper .header-navigation-area {
  background: #ECF1F8;
  transition: all 0.4s ease-out 0s;
}

.header-style-one .header-wrapper .header-navigation-area .main-menu ul li {
  display: inline-block;
  margin-right: 45px;
  position: relative;
  -moz-transition: all 300ms ease-out 0s;
  -webkit-transition: all 300ms ease-out 0s;
  -ms-transition: all 300ms ease-out 0s;
  -o-transition: all 300ms ease-out 0s;
  transition: all 300ms ease-out 0s;
}

.header-style-one .header-wrapper .header-navigation-area .main-menu ul li:last-child {
  margin-right: 0;
}

.header-style-one .header-wrapper .header-navigation-area .main-menu ul li a {
  padding: 36px 0;
  display: block;
  color: #2f2b2b;
  font-weight: 600;
}

.header-style-one .header-wrapper .header-navigation-area .main-menu ul li.has-sub.right-view ul {
  right: -20px;
  left: auto;
}

.header-style-one .header-wrapper .header-navigation-area .main-menu ul li.has-sub>a::before {
  content: "\f067";
  position: absolute;
  right: -16px;
  top: 50%;
  -moz-transform: translate(0, -13px);
  -o-transform: translate(0, -13px);
  -ms-transform: translate(0, -13px);
  -webkit-transform: translate(0, -13px);
  transform: translate(0, -13px);
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
}

.header-style-one .header-wrapper .header-navigation-area .main-menu ul li:hover>a {
  color: #0c59db;
}

.header-style-one .header-wrapper .header-navigation-area .main-menu ul li:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  -moz-transform: scaleY(1);
  -o-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.header-style-one .header-wrapper .header-navigation-area .main-menu ul li ul.sub-menu {
  position: absolute;
  width: 220px;
  background: #f8f8f8;
  z-index: 2;
  -moz-transition: all 300ms ease-out 0s;
  -webkit-transition: all 300ms ease-out 0s;
  -ms-transition: all 300ms ease-out 0s;
  -o-transition: all 300ms ease-out 0s;
  transition: all 300ms ease-out 0s;
  opacity: 0;
  visibility: hidden;
  left: 0;
  transform-origin: top;
  top: 100%;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
}

.header-style-one .header-wrapper .header-navigation-area .main-menu ul li ul.sub-menu li {
  display: block;
  margin: 0;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.header-style-one .header-wrapper .header-navigation-area .main-menu ul li ul.sub-menu li:last-child {
  border-bottom: none;
}

.header-style-one .header-wrapper .header-navigation-area .main-menu ul li ul.sub-menu li a {
  padding: 8px 20px;
  font-size: 14px;
}

.header-style-one .header-wrapper .header-navigation-area .main-menu ul li ul.sub-menu li:hover>a {
  padding-left: 25px;
  background-color: #0c59db;
  color: #fff;
}

.header-style-one .header-wrapper .header-navigation-area .main-menu ul li ul.sub-menu li:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
}

.header-style-one .header-wrapper .header-navigation-area .main-menu ul li ul.sub-menu li ul.sub-menu {
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.header-style-one .header-wrapper .header-navigation-area .main-menu ul li ul.sub-menu li.has-sub-child>a::before {
  content: "\f105";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-15px);
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
}

.header-style-one .header-wrapper .header-navigation-area.inner-page .main-menu ul li a {
  padding: 35px 0;
}

.header-style-one .header-wrapper .header-navigation-area.transparent-header {
  background: transparent;
  position: fixed;
  z-index: 9999;
  width: 100%;
  padding: 20px 0;
  top: 0;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-style-one .header-wrapper .header-navigation-area.transparent-header.fixed {
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  padding: 10px 0;
  -webkit-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
  -khtml-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
}

.header-style-one .header-wrapper .header-navigation-area.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -khtml-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/*Header Style Two*/
.header-style-two{
  font-size: 16px;
}
.header-style-two .header-wrapper .header-middle {
  padding: 30px 0;
  margin: 0 auto;
  position: static;
}

.header-style-two .header-wrapper .header-middle .topbar-info-area i {
  margin-right: 15px;
  color: #0c59db;
  vertical-align: middle;
  height: 48px;
  width: 48px;
  line-height: 48px;
  text-align: center;
  background: #ECF1F8;
  border: 1px solid #eee;
}

.header-style-two .header-wrapper .header-middle .topbar-info-area i:before {
  font-size: 26px;
}

.header-style-two .header-wrapper .header-middle .topbar-info-area a {
  font-size: 15px;
}

.header-style-two .header-wrapper .header-navigation-area .main-menu ul li {
  display: inline-block;
  margin-right: 45px;
  position: relative;
  -moz-transition: all 300ms ease-out 0s;
  -webkit-transition: all 300ms ease-out 0s;
  -ms-transition: all 300ms ease-out 0s;
  -o-transition: all 300ms ease-out 0s;
  transition: all 300ms ease-out 0s;
}

.header-style-two .header-wrapper .header-navigation-area .main-menu ul li:last-child {
  margin-right: 0;
}

.header-style-two .header-wrapper .header-navigation-area .main-menu ul li a {
  padding: 45px 0;
  display: block;
  color: #2f2b2b;
  font-weight: 600;
}

.header-style-two .header-wrapper .header-navigation-area .main-menu ul li.has-sub.right-view ul {
  right: -20px;
  left: auto;
}

.header-style-two .header-wrapper .header-navigation-area .main-menu ul li.has-sub>a::before {
  content: "\f067";
  position: absolute;
  right: -18px;
  top: 50%;
  -moz-transform: translate(0, -13px);
  -o-transform: translate(0, -13px);
  -ms-transform: translate(0, -13px);
  -webkit-transform: translate(0, -13px);
  transform: translate(0, -13px);
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
}

.header-style-two .header-wrapper .header-navigation-area .main-menu ul li:hover>a {
  color: #0c59db;
}

.header-style-two .header-wrapper .header-navigation-area .main-menu ul li:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}

.header-style-two .header-wrapper .header-navigation-area .main-menu ul li ul.sub-menu {
  position: absolute;
  width: 220px;
  background: #ECF1F8;
  z-index: 2;
  -moz-transition: all 300ms ease-out 0s;
  -webkit-transition: all 300ms ease-out 0s;
  -ms-transition: all 300ms ease-out 0s;
  -o-transition: all 300ms ease-out 0s;
  transition: all 300ms ease-out 0s;
  opacity: 0;
  visibility: hidden;
  left: 0;
  transform-origin: top;
  top: 100%;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
}

.header-style-two .header-wrapper .header-navigation-area .main-menu ul li ul.sub-menu li {
  display: block;
  margin: 0;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.header-style-two .header-wrapper .header-navigation-area .main-menu ul li ul.sub-menu li:last-child {
  border-bottom: none;
}

.header-style-two .header-wrapper .header-navigation-area .main-menu ul li ul.sub-menu li a {
  padding: 8px 20px;
  font-size: 14px;
}

.header-style-two .header-wrapper .header-navigation-area .main-menu ul li ul.sub-menu li:hover>a {
  padding-left: 25px;
  background: #0c59db;
  color: #fff;
}

.header-style-two .header-wrapper .header-navigation-area .main-menu ul li ul.sub-menu li:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
}

.header-style-two .header-wrapper .header-navigation-area .main-menu ul li ul.sub-menu li ul.sub-menu {
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.header-style-two .header-wrapper .header-navigation-area .main-menu ul li ul.sub-menu li.has-sub-child>a::before {
  content: "\f067";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-12px);
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
}

.header-style-two .header-wrapper .header-navigation-area.inner-page .main-menu ul li a {
  padding: 35px 0;
}

.header-style-two .header-wrapper .header-navigation-area.transparent-header {
  background: transparent;
  position: fixed;
  z-index: 9999;
  width: 100%;
  padding: 20px 0;
  top: 0;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-style-two .header-wrapper .header-navigation-area.transparent-header.fixed {
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  padding: 10px 0;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -khtml-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.header-style-two .header-wrapper .header-navigation-area.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -khtml-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -moz-transition: all 600ms ease-out 0s;
  -webkit-transition: all 600ms ease-out 0s;
  -ms-transition: all 600ms ease-out 0s;
  -o-transition: all 600ms ease-out 0s;
  transition: all 600ms ease-out 0s;
  -moz-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

/*Header Searchbox Style Two*/
.header-searchbox-style-one {
  position: relative;
  float: right;
}

.header-searchbox-style-one .show-searchbox {
  float: right;
  margin-left: 32px;
  position: relative;
  margin-top: 3px;
}

.header-searchbox-style-one .show-searchbox a {
  position: relative;
  width: 35px;
  height: 35px;
  background: #0c59db;
  display: block;
  border-radius: 6px;
  text-align: center;
  line-height: 35px;
  margin: 27px 0 30px;
}

.header-searchbox-style-one .show-searchbox a i {
  font-size: 14px;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-searchbox-style-one .show-searchbox.active .fa-search::before {
  content: "\f00d";
}

.header-searchbox-style-one .toggle-searchbox {
  position: absolute;
  right: 0;
  top: 170%;
  width: 315px;
  opacity: 0;
  padding: 20px;
  visibility: hidden;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-searchbox-style-one .toggle-searchbox #searchform-all {
  position: relative;
}

.header-searchbox-style-one .toggle-searchbox #searchform-all #s {
  margin-bottom: 0;
  height: 50px;
  font-size: 14px;
  color: #0c59db;
  top: 6px;
  background-color: #fff;
  border-radius: 0;
}

.header-searchbox-style-one .toggle-searchbox #searchform-all #searchsubmit {
  padding: 3px;
  position: absolute;
  right: 12px;
  top: 9px;
  font-family: "" Font Awesome 5 Free "";
  color: #0c59db;
  background: transparent;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-searchbox-style-one .toggle-searchbox form input[type="text"] {
  border: 1px solid #ddd6d9;
}

.header-searchbox-style-one .toggle-searchbox.show {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  top: 103%;
  padding: 20px;
  background: #f4f4f4;
  border: 1px solid #0c59db;
}

/*Header Searchbox Style Two*/
.header-searchbox-style-two {
  position: relative;
  float: right;
  margin-top: 6px;
  margin-left: 30px;
}

.header-searchbox-style-two .show-searchbox {
  float: right;
  margin-left: 32px;
  position: relative;
  margin-top: 3px;
}

.header-searchbox-style-two .show-searchbox a {
  position: relative;
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  line-height: 55px;
  margin: 25px 0 30px;
}

.header-searchbox-style-two .show-searchbox a i {
  font-size: 20px;
  color: #0c59db;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-searchbox-style-two .show-searchbox.active .fa-search::before {
  content: "\f00d";
}

.header-searchbox-style-two .toggle-searchbox {
  position: absolute;
  right: 0;
  top: 170%;
  width: 315px;
  opacity: 0;
  padding: 20px;
  visibility: hidden;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-searchbox-style-two .toggle-searchbox #searchform-all {
  position: relative;
}

.header-searchbox-style-two .toggle-searchbox #searchform-all #s {
  margin-bottom: 0;
  height: 50px;
  font-size: 14px;
  color: #0c59db;
  top: 6px;
  background-color: #fff;
  border-radius: 0;
}

.header-searchbox-style-two .toggle-searchbox #searchform-all #searchsubmit {
  padding: 3px;
  position: absolute;
  right: 12px;
  top: 9px;
  font-family: "" Font Awesome 5 Free "";
  color: #0c59db;
  background: transparent;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-searchbox-style-two .toggle-searchbox form input[type="text"] {
  border: 1px solid #ddd6d9;
}

.header-searchbox-style-two .toggle-searchbox.show {
  visibility: visible;
  opacity: 1;
  z-index: 2;
  top: 114%;
  padding: 20px;
  background: #f4f4f4;
  border: 1px solid #0c59db;
}

.input-box {
  position: absolute;
  right: 12px;
  top: 12px;
}

.input-box i {
  color: #0c59db;
}

/*Header-top-area*/
.header-top-area {
  font-size: 14px;
  color: #fff;
  height: 100px;
  height: 380px;
}

.header-top-area a {
  color: #fff;
  font-size: 14px;
  display: block;
  font-weight: 400;
}

.header-top-area i {
  margin: 0px;
  font-size: 16px;
  font-weight: 400;
}

.header-top-area .header-top-left-part .address {
  padding-right: 20px;
  position: relative;
}

.header-top-area .header-top-left-part .address:after {
  background: #fff;
  content: "";
  position: absolute;
  height: 90%;
  width: 1px;
  right: 0;
  top: 2px;
}

.header-top-area .header-top-left-part .phone {
  padding-left: 20px;
}

.header-top-area .header-top-left-part i {
  color: #fff;
  margin-right: 5px;
  vertical-align: middle;
}

.header-top-area .header-top-left-part i:before {
  font-size: 16px;
}

.header-top-area .header-top-right-part .social-links {
  position: relative;
  display: inline-block;
}

.header-top-area .header-top-right-part .social-links::after {
  position: absolute;
  content: "";
  right: 0px;
  top: 7px;
  height: 60%;
  width: 1px;
  background: #fff;
}

.header-top-area .header-top-right-part .social-links li {
  display: inline-block;
  margin-right: 15px;
}

.header-top-area .header-top-right-part .social-links li a {
  color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

.header-top-area .header-top-right-part .social-links li a:hover {
  color: #17305e;
}

.header-top-area .header-top-right-part .social-links li:last-child {
  margin-right: 25px;
}

.header-top-area .header-top-right-part .language {
  display: inline-block;
  margin-left: 25px;
  position: relative;
}

.header-top-area .header-top-right-part .language .language-btn {
  position: relative;
  text-decoration: none;
  width: 85px;
  text-align: left;
  -webkit-transition: .5s;
  transition: .5s;
}

.header-top-area .header-top-right-part .language .language-btn i {
  margin-right: 4px;
}

.header-top-area .header-top-right-part .language .language-btn i::before {
  font-size: 14px;
}

.header-top-area .header-top-right-part .language .language-btn:hover {
  color: #17305e;
}

.header-top-area .header-top-right-part .language .language-btn::after {
  content: "\f107";
  position: absolute;
  right: -3px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  top: 0;
  font-size: 16px;
}

.header-top-area .header-top-right-part .language .language-dropdown {
  text-align: center;
  position: absolute;
  z-index: 10;
  top: 36px;
  right: -13px;
  width: 120px;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: .5s;
  transition: .5s;
}

.header-top-area .header-top-right-part .language .language-dropdown.open {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  background: #31314d;
}

.header-top-area .header-top-right-part .language .language-dropdown li {
  position: relative;
  background-color: #0a3041;
  z-index: -1;
}

.header-top-area .header-top-right-part .language .language-dropdown li a {
  display: block;
  position: relative;
  padding: 5px 10px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.header-top-area .header-top-right-part .language .language-dropdown li a:hover {
  background: #0c59db;
}

.header-top-area .header-top-right-part .language .language-dropdown li :last-child a {
  border-bottom: none;
}

.header-top-area .logo {
  height: 32%;
}

a:hover {
  color: #0c59db;
  text-decoration: none;
}

.whitelink a,
.footer-bottom-area a {
  color: #fff;
  font-size: 16px;
}

.whitelink a:hover,
.footer-bottom-area a:hover {
  color: rgb(221, 219, 219) !important;
}


.header-navigation-area .fas {
  font-size: 1.5em;
}

.header-navigation-area .menugroup {
  border-left: 1px solid #fff;
  font-weight: 600;
  letter-spacing: 6px;
}

.list li a:hover,
.news-sidebar-widget .widget-archives ul li a:hover {
  color: #336699;
}

.header-style-two .header-wrapper .header-navigation-area {
  background: #336699;
}

.whitelink a:hover,
.footer-bottom-area a:hover {
  color: rgb(221, 219, 219);
}

.right-bar .search-form button {
  background: #336699;
}

.right-bar .search-form input {
  border: 2px solid #336699;
}

.toutiao a {
  color: #336699;
}

.toutiao a:hover {
  color: #4185c8;
}

.directordiv:hover h5,
.directordiv:hover p,
.directordiv a:hover
{
  color: #336699;
}

.right-bar .search-form {
  box-shadow: 2px 2px 5px #000;
  border-radius: 25px;
}

.right-bar .search-form input {
  width: 282px;
  height: 46px;
  line-height: 46px;
  padding: 0 70px 0 20px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 25px;
  background: #f4f4f4;
  color: #2C2D3F;
}

.right-bar .search-form button {
  width: 50px;
  height: 50px;
  border: none;
  color: #fff;
  border-radius: 0 25px 25px 0;
  border-left: 1px solid transparent;
  margin-left: -50px;
  cursor: pointer;
}

.right-bar .search-form button:hover {
  background: #4185c8;
}

.footer-bottom-area {
  background: #336699;
}

.jOrgChart .node {
  background-color: #275293;
}

.bg-gradient-color {
  background: linear-gradient(45deg, #0E90D5, #3032A2) !important;
}

.single-news .news-content h2 a:hover,
.single-post a:hover {
  color: #336699;
}

.blog .single-news .news-body:before {
  background: #275293;
}

.pager span.current {
  background-color: #0776b5;
}

.pager a:hover,
.pager span:hover {
  border-color: #3897cd;
}

.meta-right .side-tags .tag a:hover {
  background: #336699;
}

.footer {
  background: #336699;
  color: #fff;
}

.footer .drop-groups {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #D7B88B;
  position: relative;
}

.footer .drop-down {
  width: 16.66%;
  height: 50px;
  text-align: center;
}

.footer .drop-down .tag {
  display: inline-block;
  height: 50px;
  box-sizing: border-box;
  padding-right: 20px;
  color: #000000;
  font-size: 16px;
  line-height: 50px;
  cursor: pointer;
  position: relative;
}

.footer .drop-down .tag:after {
  display: inline-block;
  content: ' ';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -2px;
  width: 9px;
  height: 5px;
  background: url(common-ic4.png) no-repeat right center;
}

.footer .drop-down:nth-child(1) .tag:after {
  display: none;
}

.footer .drop-down.cur .tag:after {
  transform: rotate(180deg);
}

.footer .drop-down .tag a {
  display: inline-block;
  color: #000000;
}

.footer .drop-down:first-child .tag {
  background: none;
  padding: 0;
}

.footer .drop-lists {
  position: absolute;
  width: 100%;
  bottom: 50px;
  left: 0;
  overflow: auto;
  display: none;
  text-align: left;
  background: #fff;
  border: 1px solid #D7B88B;
  padding: 10px 0;
  z-index: 999;
}

.footer .drop-lists li {
  float: left;
  height: 36px;
  line-height: 36px;
  width: 20%;
  color: #313131;
  text-align: center;
}

.footer .drop-lists a {
  display: inline-block;
  line-height: 36px;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 15px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.f-info {
  color: #000000;
  padding-bottom: 36px;
}

.f-info-center {
  margin-top: 40px;
  line-height: 24px;
}

.f-info-center p:first-child {
  margin-bottom: 10px;
}

.f-info-center p,
.f-info-center a {
  font-size: 14px;
  color: #000;
}

.f-info-center span {
  margin-right: 14px;
}

.f-info-center a {
  cursor: pointer;
}

.f-info-center p:first-child a {
  font-size: 15px;
  margin-right: 0;
}

.f-info-right {
  overflow: hidden;
  margin-top: 45px;
}

.f-info-right>a,
.f-info-right>span {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  margin-right: 16px;
}

.f-info-p a {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  margin-right: 16px;
}

.f-info-p span {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  margin-right: 16px;
}

.local {
  /*line-height: 42px;*/
  padding: 12px 6px 10px;
  position: relative;
}

.local a,
.local span {
  color: #333333;
  font-size: 16px;
  vertical-align: middle;
}

.local .cur {
  color: #C19B72;
}

.local img {
  margin-right: 10px;
}

.local .arrow {
  display: inline-block;
  margin: 0 2px;
}

#guidangCon {
  display: block;
  position: absolute;
  width: 148px;
  height: 148px;
  background: url(guidang.png) center no-repeat;
  background-size: 100% 100%;
  right: 10px;
  top: -14px;
  z-index: 999;
}

#guidangCon p {
  display: block;
  font-size: 16px;
  color: #DA5857;
  margin-top: 100px;
  font-weight: bold;
  text-align: center;
}

/* .pagination {
  text-align: center;
  font-size: 14px;
  padding-bottom: 20px;
}

.pagination a {
  width: 32px;
  line-height: 32px;
  display: inline-block;
  text-align: center;
  background: #FFEFD2;
  border-radius: 3px;
  margin: 0 6px;
  color: #ff830a;
}

.pagination a:hover {
  background: #FF830A;
  color: #fff;
  cursor: pointer;
}

.pagination .first-page,
.pagination .last-page {
  width: 78px;
}

.pagination .active {
  background: #FF830A;
  color: #fff;
} */

#guidang {
  display: none;
  position: absolute;
  width: 148px;
  height: 148px;
  background: url(guidang.png) no-repeat;
  background-size: 100% 100%;
  right: 10px;
  top: -14px;
  z-index: 999;
}

#guidang p {
  display: block;
  font-size: 16px;
  color: #DA5857;
  margin-top: 100px;
  font-weight: bold;
  text-align: center;
}

.list-more-btn {
  text-align: center;
  margin-top: .2rem;
  width: 100%;
}

.list-more-btn a {
  display: inline-block;
  color: #adadad;
  font-size: .3rem;
  height: .62rem;
  line-height: .62rem;
  width: 2.2rem;
  border-radius: .06rem;
  border: 1px solid #f2f2f2;
  background: #f9f9f9;
}

.aboutmenus {
  display: inline-block;
}

.aboutmenus li:not(:first-child) {
  border-left: 1px solid #fff;
}

.aboutmenus li {
  float: left;
  padding: 0 10px;
}

@media screen and (min-width: 769px) {
  .header-style-two {
    display: block;
  }

  .nav_mobile {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: calc(100vw / 7.5);
    font-size: -webkit-calc(13.33333333vw);
  }

  .header-style-two {
    display: none;
  }

  .body.page {
    padding-top: 61px;
  }

  .header {
    transform: none;
    opacity: 1;
  }

  .header.mobile .d2 {
    /* background: #115DB2; */
    background-color: #fff;
  }

  .header .d1 {
    display: none;
  }

  /* .header .nav_main {
    display: none;
  } */

  .header .d2 {
    height: 60px;
  }

  .header .d2 .block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding: 0;
    margin: 0 15px;
  }

  .header .logo {
    width: 3.2rem;
    position: static;
  }

  .header .logo img {
    width: auto;
    height: 35px;
    max-height: none;
  }

  .header .tools {
    position: static;
    color: #333;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }

  .header .tools .a {
    width: 24px;
    height: 24px;
    margin-left: 15px;
  }

  .header .mobile-search {
    width: 30px;
    height: 30px;
    margin: 0 15px 0 0;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
  }

  .header .menu {
    /* width: 30px; */
    height: 28px;
    position: relative;
    /* margin-right: 15px; */
    font-size: 22px;
  }
  .header .header-search{
    background-color: #f5f5f5;
    padding: 0 10px;
    border-radius: 0.4rem;
    margin: 0 10px;
    display: flex;
    align-items: center;
  }
  .header .header-search span{
    font-size: 14px;
    margin-right: 5px;
  }
  .header .header-search input{
    height: 45px;
    line-height: 0.8rem;
    font-size: 14px;
    width: 2.2rem;
  }
  .header.light .menu i {
    background: #333;
  }

  .header .tools .sc a::after {
    font-size: 16px;
  }

  .header .tools .lang {
    font-size: 14px;
    display: none;
  }

  .header2 {
    display: none;
  }

  .nav_child {
    display: none;
  }

  .nav_mobile {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out 0s;
    display: -ms-flexbox;
    display: -ms-flexbox;
    display: flex;
    -ms--ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }

  .nav_mobile.showdiv {
    opacity: 1;
    visibility: visible;
  }

  .nav_mobile .close {
    font-family: icon;
    font-size: 28px;
    position: absolute;
    right: 17px;
    top: 17px;
    line-height: 1;
    font-size: 30px;
  }

  .nav_mobile .logo {
    position: absolute;
    left: 15px;
    top: 0;
    width: 3.2rem;
    line-height: 60px;
  }

  .nav_mobile .logo img {
    width: 100%;
    height: auto;
  }

  .nav_mobile .nav_l {
    font-size: 16px;
    background: #115DB2;
    color: #fff;
    width: 100%;
    overflow: hidden;
  }

  .nav_mobile .nav_l .inner {
    padding: 5px 0;
  }

  .nav_mobile .nav_l i {
    display: none;
  }

  .nav_mobile .nav_l a {
    padding: 5px 10px;
    opacity: 0.8;
    display: inline-block;
    white-space: nowrap;
  }

  .nav_mobile .nav_l a:first-child {
    margin-left: 0;
  }

  .nav_mobile .nav_r {
    font-size: 16px;
    background: #115DB2;
    color: #fff;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
  }

  .nav_mobile .nav_r .inner {
    padding: 5px 0;
  }

  .nav_mobile .nav_r a {
    padding: 5px 10px;
    opacity: 0.8;
    display: inline-block;
    white-space: nowrap;
    font-weight: normal;
  }

  .nav_mobile .nav_r a.now {
    opacity: 1;
  }

  .nav_mobile .nav_r a:first-child {
    margin-left: 0;
  }

  .nav_mobile .nav_main {
    padding: 70px 0px 0;
    font-size: 16px;
    background: #fafafa;
    background-size: auto 130px;
    align-content: flex-start;
    -ms-flex-align: flex-start;
  }

  .nav_mobile .nav_main .logo {
    position: absolute;
    left: 20px;
    top: 0;
    line-height: 60px;
  }

  .nav_mobile .nav_main .logo a {
    display: block;
    height: 100%;
  }

  .nav_mobile .nav_main .logo img {
    max-height: 65%;
    width: auto;
    max-width: none;
  }

  .nav_mobile .nav_main a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 8px 15px;
    width: 50%;
    box-sizing: border-box;
    height: auto;
    display: inline-block;
    float: left;
    color: #333333;
  }

  .nav_mobile .nav_main a:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav_mobile .nav_main a:nth-child(-n+2) {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav_mobile .tools {
    display: -ms-flexbox;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: 50px;
    top: 16px;
  }

  .nav_mobile .tools .a {
    border: 1px solid #aaa;
    border-radius: 100%;
    margin-right: 10px;
    width: 26px;
    height: 26px;
    line-height: 26px;
    position: relative;
  }

  .nav_mobile .tools .a>a {
    display: -ms-flexbox;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -ms-flex-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .nav_mobile .tools .sc a:after {
    content: "\e672";
    font-size: 20px;
    font-family: icon;
  }

  .nav_mobile .tools .sc {
    display: none;
  }

  .nav_mobile .tools .lang {
    font-size: 14px;
    font-family: Arial;
    text-transform: uppercase;
  }
}