/**/
* {
  margin: 0;
  padding: 0;
}

address,
b,
big,
blockquote,
body,
center,
cite,
code,
dd,
del,
div,
dl,
dt,
em,
fieldset,
font,
form,
h3,
h4,
h5,
h6,
html,
i,
iframe,
img,
input,
ins,
label,
legend,
li,
ol,
p,
pre,
small,
span,
strong,
td,
th,
u,
ul,
var {
  margin: 0;
  padding: 0
}

aside,
b,
button,
dd,
div,
dl,
dt,
footer,
form,
h3,
h4,
h5,
h6,
header,
input,
li,
nav,
ol,
p,
section,
table,
td,
textarea,
tr,
ul {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box
}

body {
  font-size: 14px;
  font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  color: #333;
  padding: 0px;
  margin: 0px;
  word-wrap: break-word;
  hyphens: auto;
}

button:foucs {
  border: none !important;
  outline: none !important;
}

button::-moz-focus-inner {
  border-color: transparent;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

i {
  font-style: normal;
}

a {
  color: #333;
}

a:hover {
  text-decoration: none;
  color: #fff;

}

img {
  border: none !important;
  vertical-align: middle
}

input {
  outline: none;
}

input[type="button"],
input[type="submit"],
input[type="reset"],
button,
select {
  -webkit-appearance: none;
  outline: none;
}

textarea {
  -webkit-appearance: none;
  outline: none
}

.clear {
  clear: both;
  height: 0px;
  overflow: hidden;
}

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

.clearfix {
  /*兼容 IE*/
  zoom: 1;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

/*t图片样式*/
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto
}

img {
  border: 0px;
  vertical-align: middle;
}

.img-responsive {
  display: block;
  height: auto;
  max-width: 100%
}

.avatar {
  display: block;
  overflow: hidden;
  width: 100%;
}

.dot {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.dot2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/*--------------------------------------------------------------
# 头部Header
--------------------------------------------------------------*/
.top_con {
  background: #0D5BC1;
  color: #fff;
  padding: 10px 0;
}

.top_con .container {
  display: flex;
  justify-content: space-between;
}

.top_con .top_lx span {
  padding-right: 20px;
}

.top_con .topShare {
  display: flex;
}

.top_con .topShare ul {
  display: flex;
  margin-left: 10px;
}

.top_con .topShare ul li a {
  color: #fff;
  padding: 0 10px;
}

.top_con .topShare ul li a:hover {
  color: rgba(255, 255, 255, .8);
}

#header {
  transition: all 0.5s;
  z-index: 994;
  transition: all 0.5s;
  height: 100px;
  top: 0;
  left: 0;
  position: relative;
  width: 100%;

}

#header.header-transparent { position: relative;}

#header.header-scrolled {
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 994;
  box-shadow: 0 0 10px #dedede;
}

.top-box {
  display: flex;
  justify-content: space-between;
  align-items: center;


}

.top-box .logo {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100px;
  position: relative;
  z-index: 2;

}

.top-box .logo img {
  padding: 0;
  margin: 0;
  max-height: 90px;
}

.top-box .logo .logo-tu2 {
  display: none;
}

#header.header-scrolled .top-box .logo .logo-tu1 {
  display: none;
}

#header.header-scrolled .top-box .logo .logo-tu2 {
  display: block;
}

/*导航菜单 */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu {
  flex: 5;
  height: 100px;
}
.nav-menu ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  
}
.nav-menu ul li {
  text-align: center;
  position: relative;
}
.nav-menu a {
  display: block;
  color: #000;
  padding: 0 25px;
 line-height: 100px;
  transition: 0.3s;
  font-size: 16px;
  transition: all .3s;
  position: relative;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
  color: #fff !important;
  background: #0D5BC1;

}
.nav-menu .drop-down ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: absolute;
  left: -20%;
  top: 100px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  width: 140%;
  background: #4C98F7;

  transition: ease all 0.3s;
}
.nav-menu .drop-down ul li {
  width: 100%;
}
.nav-menu .drop-down:hover>ul {
  opacity: 1;
  top: 100px;
  visibility: visible;
}
.nav-menu .drop-down li {
  width: 100%;
  position: relative;
}
.nav-menu .drop-down ul a {
  padding: 5px 0;
  font-size: 16px;
  color: #fff;
  line-height: 28px;
  height: auto;
  overflow: hidden;
}
.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
  color: #fff;

}
.nav-menu .drop-down .drop-down ul {
  top: 0;
  left:100%;
}
.nav-menu .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}
.nav-menu .drop-down .drop-down>a {

}
.nav-menu a i {
  padding-left: 5px;
}
.nav-menu .arrow {
  position: absolute;
  width: 11px;
  height: 11px;
  top: -5.5px;
  left: 45%;
  background-color: #fff;
  transform: rotate(45deg);
  cursor: pointer;
  transition: .3s;
  z-index: -1;
}

.nav-menu .mob-language {
  display: none;
}

.mobile-nav .mob-language {
  display: block;

  width: 100%;
}

.mobile-nav .mob-language a {
  display: inline-block;
  line-height: 40px;
  margin: 0 10px;
  padding: 0 10px;
  border: 1px solid #fff;
}



#header.header-scrolled .nav-menu a:hover,
#header.header-scrolled .nav-menu .active>a,
#header.header-scrolled .nav-menu li:hover>a {
  color: #0D5BC1;

}

#header.header-scrolled .nav-menu .drop-down ul a:hover,
#header.header-scrolled .nav-menu .drop-down ul .active>a,
#header.header-scrolled .nav-menu .drop-down ul li:hover>a {
  color: #fff;
}

#header.header-scrolled .nav_sub .nav_r .l a {
  color: #000;
}

#header.header-scrolled .nav_sub .nav_r .l a:hover {
  color: #0D5BC1;
}

.headerBotRig {

  height: 100px;

  align-items: center;
  justify-content: center;
}

#header.header-scrolled .nav_sub .nav_r .r a {
  color: #fff;
}

/* 手机菜单样式 */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 999;
  overflow-y: auto;
  left: -80%;
  width: 80%;
  padding-top: 18px;
  background: #0D5BC1;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  color: #fff;
  font-size: 16px;
  margin: 0 20px;
  height: 56px;
  text-transform: uppercase;
  line-height: 56px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: #fff;
  text-decoration: none;
}

.mobile-nav ul li a.expanded {
  color: rgba(255, 255, 255, .7);
}

.mobile-nav ul li a button {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: none;
  outline: none;
  color: #0D5BC1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav ul li a button.expanded {
  transform: rotate(0deg);
  background-color: #fff;
  color: #0D5BC1;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down .arrow {
  display: none;
}

.mobile-nav .drop-down li a {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 53px;
  top: 45px;
  z-index: 9999;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  background: #0D5BC1;
}

.mobile-nav-toggle i {
  color: #fff;
  display: block;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(51, 51, 51, 0.9);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav .drop-down .nav_sub {
  display: none;
}

.mobile-nav .nav_sub .nav_r .l {
  padding-top: 0;
}

.mobile-nav .nav_sub .nav_r .l ul {
  flex-direction: column;
}

.mobile-nav .nav_sub .nav_r .l {
  width: 100%;
  background: #f1f1f1;
}

.mobile-nav .nav_r .l ul li {
  width: 100%;
}

.mobile-nav .nav_r .l a {
  color: #333;
  padding-left: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.mobile-nav .nav_r .l a::before {
  display: none;
}

.language {
  color: #272727;
  font-size: 16px;
  padding-left: 10px;
}

.language a {
  color: #272727;
  padding: 0 10px;
}

.language a:hover {
  color: #0D5BC1;
}

.seaBtn {
  width: 40px;
  height: 30px;
  display: inline-block;
  line-height: 30px;
  text-align: center;
  color: #fff;
  font-size: 17px;
  vertical-align: middle;
  cursor: pointer;

}

.top_tel {
  display: flex;
  align-items: center;
  margin: 15px 0;
  font-size: 18px;
  color: #fff;
}

.top_tel img {
  margin: 0 !important;
  font-size: 20px;
  height: 38px;
  filter: brightness(100);
}

/* 语言 */

.h_language {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 0 30px;
  line-height: 100px;
}

.h_language .icon {
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
}

.h_language .icon img {
  margin-right: 8px;
  height: 20px;
}

.h_language .icon i {
  padding-left: 5px;
}

.h_language .lan_down {
  position: absolute;
  width: 100%;
  left: 0;
  top: 78px;
  background: #fff;
  border: 1px solid #f1f1f1;
  box-shadow: 0 3px 5px #d6d6d7;
  padding: 10px;
  display: none;
}

.h_language .lan_down dl {
  line-height: 30px;
  text-align: center;
  color: #fff;
}

.h_language .lan_down dl a {
  display: block;

}

.h_language .lanimg {
  display: none;
}

.h_language .lan_down dl a:hover {
  color: #0D5BC1;
  font-weight: bold;
}

.h_language .lan_down::before {
  content: '';
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-bottom: 15px solid #fff;

}

/*首页banner图*/
#banner .swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

#banner .swiper-slide {
  background-position: center;
  background-size: cover;
  position: relative;
}

#banner .swiper-slide img {
  display: block;
  width: 100%;
}

#banner .swiper-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  z-index: 999;
  width: 50px;
  font-size: 30px;
  line-height: 50px;
  height: 50px;
  transition: all .5s ease;
  outline: none;
  border: 1px solid #fff;
  border-radius: 10px;
  display: flex;
  transform: rotate(45deg);
}

#banner .swiper-button i {
  margin: auto;
  color: #fff;
  transform: rotate(-45deg);
}

#banner .swiper-button:hover {
  background: #0D5BC1;
}

.btn-prev {
  left: 30px;
}

.btn-next {
  right: 30px;
}

#banner .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  background: none;
  display: inline-block;
  opacity: .9;
  margin: 0 8px;
  border-radius: 5px;
  transform: rotate(45deg);
  transition: opacity .5s, background-color .5s, width .5s;
  transition-delay: .5s, .5s, 0s;
}

#banner .swiper-pagination-bullet-active {
  opacity: 1;
  background: #0D5BC1;

  transition-delay: 0s;
}

#banner .swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 20px;
  left: 0;
  width: 100%;
}

#banner .swiper-slide .container {
  position: absolute;
  left: 0;
  right: 0;
  top: 40%;
  bottom: 0;
  margin: 0 auto;
}

.banner-slide-content {
  position: relative;
  z-index: 9;
}

.banner-slide-content span {
  color: #fff;
  display: block;
  margin-bottom: 35px;
  text-transform: uppercase;
}

.banner-slide-content .title {
  font-size: 40px;
  line-height: 56px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.banner-slide-content p {
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  color: #fff;
  margin-top: 30px;
}

.banner_txt {
  position: absolute;
  top: 38%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
  color: #333;
  text-align: left;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.banner_txt .ban-logo img{ height:90px; width: auto!important;}
.banner_txt p {
  font-size: 30px;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: none;
}

.banner_txt b {
  display: block;
  font-size: 46px;
  color: #273966;
  text-align: center;
  margin: 20px 0;
  font-weight: normal;
  text-shadow: none;
}

.banner_txt span {
  color: #273966;
  font-size: 24px;
  display: block;
  text-shadow: none;
   text-align: center;
}
/* .banner_txt .container div { padding: 30px; border-radius: 0 100px 100px 0; width:80%; background: rgba(0,92,161,.5);} */
.pad_100 {
  padding: 80px 0;
}

.promore {
  display: flex;
  font-size: 16px;
  margin-top: 50px;
  align-items: center;


  bottom: 50px;

}

.promore span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #0D5BC1;
  border-radius: 100%;
  margin-right: 10px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s;
}

.promore span i {
  transform: rotate(-35deg);
  font-size: 18px;
  transition: all .3s;
}

.promore:hover span i {
  transform: rotate(0deg);
}

.promore span i img {
  height: 24px;
}

.promore:hover {
  color: #0D5BC1;
}

/*关于我们*/
.main_title {

  margin-bottom: 10px;
  text-align: left;

}

.main_title span {
  font-size: 24px;
  position: relative;
  background: #f1f1f1;
  color: #0D5BC1;
  border-radius: 50px;
  padding: 8px 20px;
 
}


.main_title .m_p1 {
  font-size: 36px;
  font-weight: 600;
margin-top: 10px;
  color: #0D5BC1;

  position: relative;

}

.main_title .m_p2 {
  font-size: 24px;
  margin-top: 20px;
  color: #333;

}



.about {

 background: url(../images/about-bg.jpg) no-repeat  center ;
background-size: cover;
}

.about_box {
  display: flex;
  justify-content: space-between;
}

.ab_txt {
  width: 60%;
}

.ab_tit {
  font-size: 28px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}


.ab_txt {
  width: 55%;

}

.ab_txt .info {
  font-size: 16px;
  line-height: 30px;
  text-align: justify;
  margin-top: 20px;
  color: #333;



}
.ab_fr{ width: 35%;}
.layui-layer-page .layui-layer-content video{ background: #000;}
.ab_box {
  position: relative;


  margin: auto;
  transition: all .3s;
      box-shadow: 0px 40px 30px -20px rgba(0, 0, 0, 0.4);

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

.ab_box:hover{
     transform:translateY(-.3rem);
         transition-duration: 0.5s;
}

.layui-layer-page .layui-layer-content video{ background: #000;}
.video_tu {

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}



.video_tu b {
  display: flex;
  align-items: center;
  justify-content: center;
    background: #0D5BC1;
  width: 98px;
  border-radius: 20px;
  height: 68px;
}
.layui-layer-content video {
  width: 100%; /* 使视频宽度充满容器 */
  height: auto; /* 保持视频的原始宽高比 */
background: #000;
}
.ab_bottom {
  margin-top: 40px;

  transition: opacity .3s .6s, visibility 0s .6s, margin-top 0s .6s;
}

.ab_bottom ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

  padding: 0;
}

.ab_bottom b {
  font-size: 32px;
  color: #333;


}




.ab_bottom li span {
  font-size: 50px;
  color: #1C509C;
  margin-right: 15px;
}

.ab_bottom li  {
  text-decoration: none;
  position: relative;

  display: block;
  transition: all .3s;

  
  display: flex;
  justify-content: center;
  cursor: pointer;
  align-items: center;

}

.ab_bottom li:last-child a {
  border-right: none;
}

.ab_bottom .ab_num {
  display: flex;
  align-items: center;

}

.ab_bottom li  i {
  font-size: 20px;
  color: #666;
  padding-left: 6px;

}

.ab_bottom li  p {
  color: #666;
  font-size: 16px;
  line-height: 24px;


}

/* 产品 */
.prbg {
  background: url(../images/prbg.jpg) no-repeat center top;
  background-size: cover;
}

.scsl-box {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 0;


}

.scsl-box li {
  position: relative;

  width: calc(25% - 20px);

}

.scsl-box li a {
  display: block;
  overflow: hidden;

  position: relative;
}



.scsl-box em {
  font-size: 20px;
  margin: 0;
  padding: 0;
  font-style: normal;
  display: block;
  text-align: center;
  color: #333;
}

.scsl-box li .img_cont {
  position: relative;
}

.scsl-box li .img_cont img {
  transition: all .5s;
  width: 100%;

}

.scsl-box li .cont_box {
  color: #333;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;


}

.scsl-box li .cont_box .promore {
  padding: 0 30px;
  color: #666;
  position: absolute;
  bottom: 50px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;

}
.scsl-box li .cont_box .promore .icon{ opacity: 0; margin-bottom: 30px;}
.scsl-box li .cont_box .promore div{ display: flex; align-items: center;}
.scsl-box li a:hover .cont_box .promore span i {
  transform: rotate(0deg);
}
.scsl-box li a:hover .cont_box{ color: #fff;}
.scsl-box li a:hover .cont_box .promore{ color: #fff;}
.scsl-box li .cont_tit {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.2);
}

.scsl-box li .cont_tit b {
  font-size: 26px;
  margin-top: 45px;
  display: block;
  padding: 0 30px;

  color: #fff;
  display: block;
  margin-bottom: 20px;
}

.scsl-box li .cont_tit p {
  padding: 0 30px;
  font-size: 18px;
  line-height: 32px;
  color: #fff;
  opacity: 0;

}

.scsl-box li .more {
  text-align: center;
  color: #fff;
  margin-top: 15px;
}
.scsl-box li .more .promore { color: #fff;}
.scsl-box li a:hover .img_cont img {
  transform: scale(1.2);
}
.scsl-box li a:hover .cont_box .promore .icon{ opacity: 1;}
.scsl-box li a:hover .cont_tit {
  background: rgba(0, 0, 0, 0.5);
}
.scsl-box li a:hover .cont_tit p{ opacity: 1;}
/* 全球布局 */
.world{ position: relative; background: #fff; background-size: cover;}
.maptu{ margin-top: 30px; position: relative; z-index: 1;}

.hpul_circle {
  width: 100%;
  height: 100%;
}

.hpul_circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 1px solid #1C509C;
  border-radius: 50%;
  animation-name: page-loader-ripples;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-delay: 1s;
}

.hpul_circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 1px solid #1C509C;
  border-radius: 50%;
  animation-name: page-loader-ripples;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

@keyframes page-loader-ripples {
  0% {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.0;
  }

  50% {
    opacity: 1.0;
  }

  100% {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 0.0;
  }
}

.hpul_circle::after {
  animation-delay: 1s;
}

.hpul_circle.hpul_circle2::before {
  animation-delay: 2s;
}

.hpul_circle.hpul_circle2::after {
  animation-delay: 3s;
}

.sale_map {
  position: relative;
}

.hnbm_points {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hnbm_points_ul_li {
  position: absolute;
  z-index: 20;
}
.hnbm_points_ul_li_01 {
    top: 19%;
    left: 25.4%;
}
.hnbm_points_ul_li_02{
  top: 33%;left: 23%;
}
.hnbm_points_ul_li_03 {
    top: 45%;
    left: 12%;
}
.hnbm_points_ul_li_04 {
    top: 38%;
    left: 37.4%;
}
.hnbm_points_ul_li_05{
  top: 38%;left: 27.4%;
}
.hnbm_points_ul_li_06 {
    top: 20%;
    left: 37.4%;
}
.hnbm_points_ul_li_07{
  top: 22.2%;left: 71.7%;
}
.hnbm_points_ul_li_08 {
    top: 60.8%;
    left: 90.6%;
}
.hnbm_points_ul_li_09{
  top: 27.2%;left: 77%;
}
.hpul_parga p {
  font-size: 14px;
  line-height: 1.5;
  color: #1C509C;
  white-space: nowrap;
  margin-top: 4px;
}

.hpul_point {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1C509C;
  position: relative;
  margin: auto;
}
.hnbm_points_ul_li_04 .hpul_point {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  margin: auto;
}
.hnbm_points_ul_li_04 .hpul_circle::before {

  border: 1px solid #fff;

}

.hnbm_points_ul_li_04 .hpul_circle::after {

  border: 1px solid #fff;
 
}
/* 新闻 */

.news-box { background: url(../images/newsbg.jpg) no-repeat; background-size: cover;}

.news {
  display: flex;
  justify-content: center;
  flex-direction: row;
  margin-top: 30px;
  align-content: stretch;
  justify-content: space-between;
}

.news-one {
  width: 38%;
  background: #fff;


}

.news_fl {
  display: flex;

  justify-content: space-between;
}

.news_fl a i {
  padding: 0 30px;
  font-size: 16px;
  color: #999;
  display: block;
  margin-top: 30px;
}

.news_fl a p {
  padding: 0 30px;
  margin-top: 30px;
  font-size: 20px;
  line-height: 1.8;
  color: #333;
}

.news_fl a {
  background: #fff;
  transition: all .3s;
  padding-bottom: 23px;

}

.news_fl a:hover {
  background: #0D5BC1;
  color: #fff !important;
}

.news_fl a:hover p {
  color: #fff;
}

.news-one span {
  display: block;
  overflow: hidden;
}

.news-one b {
  display: block;
  padding: 15px 0px;
  font-size: 18px;
  color: #333;
}

.news-one em {
  font-size: 14px;
  color: #999;
  display: block;
  margin-top: 8px;
  font-style: normal;

}

.news_fl ul a:hover b,
.news_fl ul a:hover p {
  color: #fff;
}

.news-box .tit a {
  float: right;
  color: #999;
  font-size: 15px;
}

.news-box .tit a:hover {
  color: #2AA2DE;
}

.news-box .tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 26px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f1f1f1;
}

.news-one a img {
  display: block;
  width: 100%;
  transition: .8s;
}

.news-one a:hover img {
  transform: scale(1.1);
}


.news-one p {
  font-size: 14px;
  color: #606060;
  line-height: 25px;
  padding: 8px 0px;
}

.news_fl {
  display: flex;
  align-items: stretch;

}



.news_fl ul {
  padding: 0;

}
.news-two { width: 60%;}
.news-two ul {
  display: flex;
  flex-wrap: wrap;

}

.news-two ul li {
  width: 50%;

}

.news-two a {
  display: flex;
  justify-content: center;
  flex-direction: column;

  padding: 52px 30px;
  background: #fff;
  transition: .3s;
  border-bottom: 1px solid #dedede;

}

.news-two ul li:nth-child(5),
.news-two ul li:nth-child(6) {
  margin-bottom: 0;
}

.news-two a:hover {
  box-shadow: 0 0 10px #dedede;
  background: #0D5BC1;
  background-size: 100%;
}

.news-two a:hover span {
  color: #fff;
}

.news-two a:hover .day,
.news-two a:hover .newscon,
.news-two a:hover .newscon b {
  color: #fff;
}


.day span {
  font-size: 16px;
  float: right;

}

.day p {
 color: #7f8c8d;
  font-size: 14px;
  display: block;
}


.newscon b {
  display: block;
  font-size: 20px;
  margin: 15px 0;
  font-weight: normal;

}

.newscon p {

  text-align: left;
  line-height: 24px;
  margin-top: 30px;
  color: #666;
  font-size: 14px;

}

.news-two a:hover .day p,
.news-two a:hover .newscon p {
  color: #fff;
}


/*底部footer*/
.footer-main {

  position: relative;
  background:url(../images/ftbg.jpg) no-repeat;
    background-size: cover;

  padding: 30px 0 20px; width: 100%; float: left;
}

.footer-list1 {
  width: 30%;
}

.footer-list1 .info {
  margin-top: 30px;
  text-align: justify;
}

.footer-list2 {
  width: 15%;
}

.footer-list2 img {
  width: 120px;
}

.footer-list3 {
  width: 35%;
}

.footer-list4 {
  width: 10%;
}

.footer-list3 .con_info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-list1 p i,
.footer-list2 p i {
  padding-right: 6px;
}

.footer-list1 span,
.footer-list2 span,
.footer-list3 span {
  color: #fff;
  font-size: 20px;

  margin-bottom: 20px;
  margin-top: 0;
  display: block;
  font-weight: bold;

}

.fot_tel {
  font-size: 28px;
  color: #fff;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.footer-list1 p,
.footer-list2 p,
.footer-list3 p {
  color: #fff;
  font-size: 15px;
  line-height: 32px;

}

.footer-list1 p a,
.footer-list2 p a {
  color: #fff;
  font-size: 16px;

}

.footer-list1 p a:hover,
.footer-list2 p a:hover {
  color: #e00d0d;
}

.footer-list1 img {
  width: 70%;
}

.address-content {
  display: inline-block;
  position: relative;
  text-align: left;
  width: 100%;
}

.address-content span {
  color: #fff;
  font-size: 20px;
  position: absolute;
  left: 0px;
  top: 5px;
  display: inline-block;
  width: 30px;
  height: 37px;
  line-height: 37px;
  text-align: center;
}

.address-content i {
  font-size: 15px;
  color: #fff;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 5px;
}

.address-content p {
  color: #fff;
  font-size: 16px;
}

.ft_logo img {
  max-height: 76px;
}

.footer-copyright {

  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-copyright p {
  color: #fff;
  font-size: 14px;
  text-align: center;
  margin-bottom: 0;

}

.footer-copyright p span {
  padding-left: 15px;
}

.footer-copyright p a {
  color: rgba(255, 255, 255, 0.7)
}

.footer-copyright p a:hover {
  color: #0D5BC1;
}

.footer-copyright .main_box {
  display: flex;
  justify-content: space-between;
}

.footer-copyright .container {
  padding: 10px 0;
}

.fot_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.fot_bot {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

/* 手机底部导航 */
.bottom_nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
  background: #0D5BC1;
  display: none;
}

.bottom_nav_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  height: 62px;
}

.bottom_nav a {
  flex: 1;
  color: #fff;
  border-right: 1px solid #A20505;
  border-left: 1px solid #CB1515;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom_nav a span {
  margin-left: 6px;
}

.bottom_nav a:last-child {
  border-right: none;
}

.bottom_nav a:first-child {
  border-left: none;
}

/*返回顶部*/
#suspension {
  position: fixed;
  z-index: 9999;
  right: 8px;
  bottom: 6%;
}

#suspension li {
  margin-bottom: 3px;
  width: 57px;
  height: 57px;
  right: 0;
  position: relative;
}

#suspension li a {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 9;
  right: 0;
  top: 0;
  width: 57px;
  height: 57px;
  overflow: hidden;
  background: #0D5BC1;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  white-space: nowrap;

}

#suspension li .txt_box {
  display: none;
  padding: 0 10px;
}

#suspension li .fa {
  display: inline-block;
  vertical-align: middle;
  width: 57px;
  height: 57px;
  text-align: center;
  line-height: 57px;
  color: #fff;
  font-size: 22px;
  background-color: #333;
}

#suspension li .txt {
  display: inline-block;
  line-height: 57px;
  font-size: 14px;
  color: #fff;
  vertical-align: middle;
  padding-left: 10px;

}

#suspension li .txt a {
  display: block;
  line-height: 57px;

  color: #fff;

  padding-left: 10px;

}

#suspension li.ewm .ewm-box {
  position: absolute;
  z-index: 1;
  padding: 15px;
  background: #0D5BC1;
  width: 140px;
  right: 120%;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all .7s;
  transition: all .7s;
}


#suspension li.ewm .ewm-box img {
  width: 100px;
}

#suspension li.ewm .ewm-box:after {
  content: '';
  position: absolute;
  right: -5px;
  bottom: 20px;
  width: 0;
  height: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  border-width: 5px;
  cursor: pointer;
  border-style: dashed dashed dashed solid;
  border-color: transparent transparent transparent #0D5BC1;
  border-right: none;
}

#suspension li.ewm:hover .icon {
  background-position: -57px -1100px;
}

#suspension li.ewm:hover .ewm-box {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#suspension li.backtop {
  cursor: pointer;
}

#suspension li:hover .txt_box {
  display: block;
  color: #fff;
}

#suspension li:hover a {
  width: 220px;
}

#suspension li:hover .fa {
  background-color: #333;
  color: #fff;
}