:root {
  --f40: 40px;
  --f30: 30px;
  --f16: 16px;
}
a {
  cursor: pointer;
  text-decoration: none !important;
}
p {
  margin-top: 0;
  margin-bottom: 0rem;
}
html {
  font-size: 16px;
}
html body {
  font-family: 'PingFang SC ', '微软雅黑', sans-serif;
}
.header_box {
  width: 100%;
  transition: all 0.5s;
  background: #ffffff;
  z-index: 800;
  position: relative;
  position: fixed;
}
.header_box.header_fixed {
  position: fixed;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.header_box .header_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0 10px;
  width: 96%;
  max-width: 1720px;
}
@media (max-width: 1200px) {
  .header_box .header_wrap {
    flex-wrap: wrap;
    width: 100%;
    padding: 10px 20px;
    height: 80px;
    border-bottom: 1px solid #cecece;
  }
}
@media (max-width: 576px) {
  .header_box .header_wrap {
    height: 60px;
    border-bottom: 1px solid #cecece;
  }
}
.header_box .header_wrap .nav_btn {
  display: none;
  width: 26px;
  height: 26px;
  position: relative;
  cursor: pointer;
  margin-top: 0;
}
@media (max-width: 1200px) {
  .header_box .header_wrap .nav_btn {
    display: block;
  }
}
.header_box .header_wrap .nav_btn b {
  display: block;
  float: right;
  width: 20px;
  height: 2px;
  background-color: #156daf;
  margin: 3px 0;
  transition: 0.3s;
}
.header_box .header_wrap .nav_btn b:first-child {
  width: 26px;
}
.header_box .header_wrap .nav_btn b:last-child {
  width: 16px;
}
.header_box .header_wrap .nav_btn_on b:first-child {
  width: 100%;
  transform: rotate(45deg) translateX(6px);
  transform-origin: center;
}
.header_box .header_wrap .nav_btn_on b:nth-child(2) {
  display: none;
}
.header_box .header_wrap .nav_btn_on b:last-child {
  width: 100%;
  transform: rotate(-45deg) translateX(6px);
  transform-origin: center;
}
.header_box .header_wrap .logo {
  width: 40%;
  margin-right: 40px;
}
@media (max-width: 1200px) {
  .header_box .header_wrap .logo {
    width: 40%;
    margin: 0;
  }
}
@media (max-width: 576px) {
  .header_box .header_wrap .logo {
    width: 70%;
  }
}
.header_box .header_wrap .logo img {
  width: 100%;
}
.header_box .header_wrap .nav_pc {
  width: calc(100% - 370px);
  max-width: 930px;
}
@media (max-width: 1200px) {
  .header_box .header_wrap .nav_pc {
    display: none;
  }
}
.header_box .header_wrap .nav_pc .nav_ul_l1 {
  width: 100%;
  justify-content: center;
  display: flex;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 {
  width: calc((100% - 0px) / 6);
  position: relative;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 a {
  display: block;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 a span {
  position: relative;
  display: block;
  color: #333;
  font-size: 18px;
  transition: all 0.5s ease;
  line-height: 100px;
  padding: 0 10px;
  text-align: center;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 a span::before {
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #156daf;
  height: 3px;
  width: 0;
  position: absolute;
  transition: all 0.5s;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 .nav_ul_l2 {
  width: 100%;
  background: #fff;
  position: absolute;
  top: auto;
  left: 0px;
  height: auto;
  box-shadow: 0px 1px 30px 0px rgba(77, 77, 77, 0.3);
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: -webkit-transform;
  transition: transform;
  border-radius: 0;
  display: flex;
  flex-direction: column;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 .nav_ul_l2 .nav_li_a_l2 {
  position: relative;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 .nav_ul_l2 .nav_li_a_l2 a {
  display: inline-block;
  color: #333;
  text-align: left;
  font-size: 16px;
  transition: all 0.5s;
  padding: 14px 16px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 .nav_ul_l2 .nav_li_a_l2 a .icon_class {
  position: absolute;
  right: 16px;
  width: 16px;
  height: 16px;
  opacity: 0;
  -webkit-transform: rotate(0deg) translate(-20px, 0px);
  -ms-transform: rotate(0deg) translate(-20px, 0px);
  transform: rotate(0deg) translate(-20px, 0px);
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 .nav_ul_l2 .nav_li_a_l2 a:hover {
  color: #fff;
  background: #156daf;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 .nav_ul_l2 .nav_li_a_l2 a:hover .icon_class {
  -webkit-transition: -webkit-transform 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 300ms;
  transition: transform 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 300ms;
  opacity: 1;
  -webkit-transform: rotate(0deg) translate(0px, 0px);
  -ms-transform: rotate(0deg) translate(0px, 0px);
  transform: rotate(0deg) translate(0px, 0px);
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 .nav_ul_l2 .nav_li_a_l2 .nav_ul_l3 {
  position: absolute;
  width: 164px;
  left: 100%;
  top: 0;
  background: #fff;
  opacity: 0;
  transition: all 0.5s;
  visibility: hidden;
  z-index: 1;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 .nav_ul_l2 .nav_li_a_l2 .nav_ul_l3 .nav_li_a_l3 {
  position: relative;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 .nav_ul_l2 .nav_li_a_l2 .nav_ul_l3 .nav_li_a_l3 a {
  display: inline-block;
  color: #333;
  text-align: center;
  font-size: 16px;
  transition: all 0.5s;
  padding: 14px 10px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 .nav_ul_l2 .nav_li_a_l2 .nav_ul_l3 .nav_li_a_l3 a:hover {
  color: #fff;
  background: #156daf;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 .nav_ul_l2 .nav_li_a_l2 .nav_ul_l3 .nav_li_a_l3 .nav_ul_l4 {
  position: absolute;
  width: 164px;
  left: 100%;
  top: 0;
  background: #fff;
  opacity: 0;
  transition: all 0.5s;
  visibility: hidden;
  z-index: 1;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 .nav_ul_l2 .nav_li_a_l2 .nav_ul_l3 .nav_li_a_l3 .nav_ul_l4 .nav_li_a_l4 {
  position: relative;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 .nav_ul_l2 .nav_li_a_l2 .nav_ul_l3 .nav_li_a_l3 .nav_ul_l4 .nav_li_a_l4 a {
  display: inline-block;
  color: #333;
  text-align: center;
  font-size: 16px;
  transition: all 0.5s;
  padding: 14px 10px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 .nav_ul_l2 .nav_li_a_l2 .nav_ul_l3 .nav_li_a_l3 .nav_ul_l4 .nav_li_a_l4 a:hover {
  color: #fff;
  background: #156daf;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 .nav_ul_l2 .nav_li_a_l2 .nav_ul_l3 .nav_li_a_l3 .nav_ul_l4 .nav_li_a_l4 .nav_ul_l5 {
  position: absolute;
  width: 164px;
  left: 100%;
  top: 0;
  background: #fff;
  opacity: 0;
  transition: all 0.5s;
  visibility: hidden;
  z-index: 1;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 .nav_ul_l2 .nav_li_a_l2 .nav_ul_l3 .nav_li_a_l3 .nav_ul_l4 .nav_li_a_l4 .nav_ul_l5 .nav_li_a_l5 {
  position: relative;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 .nav_ul_l2 .nav_li_a_l2 .nav_ul_l3 .nav_li_a_l3 .nav_ul_l4 .nav_li_a_l4 .nav_ul_l5 .nav_li_a_l5 a {
  display: inline-block;
  color: #333;
  text-align: center;
  font-size: 16px;
  transition: all 0.5s;
  padding: 14px 10px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 .nav_ul_l2 .nav_li_a_l2 .nav_ul_l3 .nav_li_a_l3 .nav_ul_l4 .nav_li_a_l4 .nav_ul_l5 .nav_li_a_l5 a:hover {
  color: #fff;
  background: #156daf;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 .nav_ul_l2 .nav_li_a_l2 .nav_ul_l3 .nav_li_a_l3 .nav_ul_l4 .nav_li_a_l4:hover .nav_ul_l5 {
  left: 100%;
  opacity: 1;
  visibility: visible;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 .nav_ul_l2 .nav_li_a_l2 .nav_ul_l3 .nav_li_a_l3:hover .nav_ul_l4 {
  left: 100%;
  opacity: 1;
  visibility: visible;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 .nav_ul_l2 .nav_li_a_l2:hover .nav_ul_l3 {
  left: 100%;
  opacity: 1;
  visibility: visible;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1 .active {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1:hover a span {
  color: #156daf;
}
.header_box .header_wrap .nav_pc .nav_ul_l1 .nav_li_l1:hover a span::before {
  width: 100%;
}
.header_box .header_wrap .r_parts {
  width: 370px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 1200px) {
  .header_box .header_wrap .r_parts {
    display: none;
  }
}
.header_box .header_wrap .r_parts .btn_shop a {
  display: inline-block;
  padding: 0 10px;
  line-height: 30px;
  min-width: 100px;
  background: #156daf;
  color: #fff;
  text-align: center;
  border-radius: 500px;
  margin-right: 20px;
  font-size: 16px;
}
.header_box .header_wrap .r_parts .btn_shop a i {
  font-size: 14px;
  margin-left: 5px;
  vertical-align: middle;
}
.header_box .header_wrap .r_parts .top_search form {
  display: flex;
  padding: 0 10px;
  background: #f2f2f2;
  border-radius: 500px;
  width: 140px;
}
.header_box .header_wrap .r_parts .top_search form input {
  width: 90px;
  border: none;
  background: none;
  line-height: 30px;
  outline: none;
}
.header_box .header_wrap .r_parts .top_search form button {
  width: calc(100% - 90px);
  color: #000;
  text-align: center;
  border: none;
  background: none;
  line-height: 30px;
}
.header_box .header_wrap .r_parts .top_search form button i {
  color: #999;
}
.header_box .nav_mo {
  display: block;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  height: 0%;
  width: 100%;
  overflow: hidden;
  z-index: 9999;
  transition: all 0.5s;
}
.header_box .nav_mo span {
  font-size: 20px;
  color: #333;
  position: absolute;
  top: 30px;
  right: 20px;
  z-index: 9991;
  cursor: pointer;
}
.header_box .nav_mo ul {
  padding: 10px 6%;
  position: relative;
  height: 100%;
  overflow-y: scroll;
}
.header_box .nav_mo ul .nav_mo_l1 {
  display: block;
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.5s;
  position: relative;
  border-bottom: 1px solid #cecece;
}
.header_box .nav_mo ul .nav_mo_l1 .nav_mo_l1_div {
  font-size: 16px;
  margin: 10px 0;
  text-align: left;
  padding-right: 30px;
  position: relative;
}
.header_box .nav_mo ul .nav_mo_l1 .nav_mo_l1_div a {
  display: block;
  text-align: left;
  color: #383838;
  padding: 10px 0;
  text-transform: uppercase;
}
.header_box .nav_mo ul .nav_mo_l1 .nav_mo_l1_div i {
  font-size: 20px;
  color: #383838;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
.header_box .nav_mo ul .nav_mo_l1 .nav_mo_l2 {
  overflow: hidden;
  max-height: 0;
  transition: all 0.5s;
}
.header_box .nav_mo ul .nav_mo_l1 .nav_mo_l2 a {
  font-size: 14px;
  color: #666;
  opacity: 0.7;
  display: block;
  text-align: left;
  padding: 10px 0;
  text-transform: uppercase;
}
.header_box .nav_mo ul .nav_mo_l1 .nav_mo_l2 a:last-child {
  padding-bottom: 20px;
}
.header_box .nav_mo ul .nav_mo_l1_no .nav_mo_l1_div i {
  transform: translateY(-50%) rotate(90deg);
}
.header_box .nav_mo ul .nav_mo_l1_no .nav_mo_l2 {
  max-height: 1000px;
}
.header_box .nav_mo_on {
  height: 100%;
  bottom: 0;
}
.top_blank {
  height: 100px;
}
@media (max-width: 1200px) {
  .top_blank {
    height: 80px;
  }
}
@media (max-width: 576px) {
  .top_blank {
    height: 60px;
  }
}
.banner_box {
  position: relative;
}
.banner_box .banner_top {
  height: 60px;
}
.banner_box .banner_btn_box > div {
  position: absolute;
  z-index: 20;
  transform: translateY(-50%);
  font-size: 2vw;
  width: 3vw;
  height: 3vw;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 3vw;
  transition: all 0.5s;
  top: 50%;
  opacity: 0.5;
  cursor: pointer;
}
.banner_box .banner_btn_box > div:hover {
  opacity: 0.8;
}
.banner_box .banner_btn_box .banner_btn_prev {
  left: 3vw;
}
.banner_box .banner_btn_box .banner_btn_next {
  right: 3vw;
}
.banner_box .banner_page_btn span {
  width: 65px;
  max-width: 30%;
  height: 6px;
  background: #dddddd;
  display: inline-block;
  margin: 0 5px;
  transition: all 0.5s;
  border-radius: 0;
  cursor: pointer;
}
.banner_box .banner_page_btn span.swiper-pagination-bullet-active {
  background-color: #156daf;
}
.index_search .page_search {
  background: #939391;
  max-width: 1200px;
  padding: 20px;
  margin: 5% auto;
}
.index_search .page_search .search_wrap {
  width: 96%;
  max-width: 950px;
  margin: 3% auto;
}
.index_search .page_search .search_wrap h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}
.index_search .page_search .search_wrap p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}
.index_search .page_search .search_wrap form {
  display: flex;
  margin-top: 10px;
}
.index_search .page_search .search_wrap form input {
  width: calc(100% - 120px);
  height: 50px;
  border: none;
  background: #fff;
  margin-right: 20px;
}
.index_search .page_search .search_wrap form button {
  background: #156daf;
  color: #fff;
  text-align: center;
  line-height: 50px;
  width: 100px;
  display: block;
  border: none;
}
.product_box {
  background: #f2f2f2;
  padding: 30px;
}
@media (max-width: 992px) {
  .product_box {
    padding: 20px;
  }
}
.product_box .product_ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product_box .product_ul .product_li {
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: calc((100% - 20px) / 2);
  padding: 50px 60px;
}
@media (max-width: 992px) {
  .product_box .product_ul .product_li {
    width: 100%;
    padding: 20px;
    flex-wrap: wrap;
  }
}
.product_box .product_ul .product_li .pr_l {
  width: 50%;
  max-width: 350px;
  padding-right: 20px;
}
@media (max-width: 992px) {
  .product_box .product_ul .product_li .pr_l {
    width: 100%;
    padding-right: 0px;
  }
}
.product_box .product_ul .product_li .pr_l h2 {
  font-size: 30px;
  margin: 20px 0;
  color: #333333;
}
.product_box .product_ul .product_li .pr_l article {
  font-size: 14px;
  line-height: 24px;
  height: 68px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #999999;
}
.product_box .product_ul .product_li .pr_l .pr_link {
  margin-top: 20px;
}
.product_box .product_ul .product_li .pr_l .pr_link span {
  background: #333333;
  display: inline-block;
  min-width: 100px;
  line-height: 35px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  transition: all 0.5s;
  border-radius: 30px;
}
.product_box .product_ul .product_li .pr_r {
  width: 50%;
  text-align: right;
  padding: 2vw 0 2vw 2vw;
}
@media (max-width: 992px) {
  .product_box .product_ul .product_li .pr_r {
    width: 100%;
  }
}
.product_box .product_ul .product_li .pr_r img {
  max-width: 100%;
  transition: all 0.5s;
}
.product_box .product_ul .product_li:hover .pr_r img {
  transform: translateY(-30px);
}
.product_box .product_ul .product_li:hover .pr_l .pr_link span {
  background-color: #156daf;
}
.about_box {
  padding: 60px 0;
}
.about_box .about_wrap {
  width: 94%;
  max-width: 1200px;
  padding: 0 10px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
.about_box .about_wrap .ab_l {
  width: 55%;
  padding-right: 3vw;
}
@media (max-width: 992px) {
  .about_box .about_wrap .ab_l {
    width: 100%;
  }
}
.about_box .about_wrap .ab_l .ab_title h4 {
  font-family: "Futura";
  color: #156daf;
  font-size: 24px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.about_box .about_wrap .ab_l .ab_title h3 {
  font-size: 40px;
  color: #333;
}
.about_box .about_wrap .ab_l .ab_sum {
  font-size: 14px;
  color: #999999;
  line-height: 24px;
  margin: 35px 0 50px;
}
.about_box .about_wrap .ab_l .ab_more a {
  display: inline-block;
  transition: all 0.5s;
  padding: 0 30px;
  min-width: 246px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  background: #156daf;
  line-height: 60px;
  border-radius: 500px;
}
.about_box .about_wrap .ab_l .ab_more a:hover {
  opacity: 0.8;
}
.about_box .about_wrap .ab_r {
  width: 45%;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 992px) {
  .about_box .about_wrap .ab_r {
    width: 100%;
    margin-top: 30px;
  }
}
.about_box .about_wrap .ab_r img {
  width: 100%;
  transition: all 0.5s;
}
.about_box .about_wrap .ab_r:hover img {
  transform: scale(1.1);
}
.prs_box {
  padding: 60px 0;
}
.prs_box .prs_wrap {
  width: 94%;
  max-width: 1200px;
  padding: 0 10px;
  margin: auto;
}
.prs_box .prs_wrap .prs_title {
  text-align: center;
}
.prs_box .prs_wrap .prs_title h4 {
  font-family: "Futura";
  color: #156daf;
  font-size: 24px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.prs_box .prs_wrap .prs_title h3 {
  font-size: 40px;
  color: #333;
}
.prs_box .prs_wrap .prs_list {
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  margin-top: 30px;
}
.prs_box .prs_wrap .prs_list .prs_ul .prs_li {
  display: block;
  transition: all 0.5s;
  width: calc((100% - 60px) / 4);
  margin-right: 20px;
  margin-bottom: 20px;
}
.prs_box .prs_wrap .prs_list .prs_ul .prs_li .prs_img {
  background: #fff;
  border: #ccc solid 1px;
  overflow: hidden;
}
.prs_box .prs_wrap .prs_list .prs_ul .prs_li .prs_img img {
  transition: all 0.5s;
  width: 100%;
}
.prs_box .prs_wrap .prs_list .prs_ul .prs_li .prs_img:hover img {
  transform: scale(1.1);
}
.prs_box .prs_wrap .prs_list .prs_ul .prs_li .prs_tit {
  padding: 20px 0;
  text-align: center;
  color: #333;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.prs_box .prs_wrap .prs_more {
  text-align: center;
  font-size: 16px;
  color: #333;
}
.prs_box .prs_wrap .prs_more a {
  display: inline-block;
  color: #333;
  transition: all 0.5s;
}
.prs_box .prs_wrap .prs_more a:hover {
  color: #156daf;
}
.hnews_box {
  border-top: #ddd solid 1px;
  padding: 60px 0;
}
.hnews_box .hnews_wrap {
  width: 94%;
  max-width: 1200px;
  padding: 0 10px;
  margin: auto;
}
.hnews_box .hnews_wrap .hnews_title_box {
  display: flex;
  flex-wrap: wrap;
}
.hnews_box .hnews_wrap .hnews_title_box .hnews_title {
  width: calc(100% - 160px);
}
.hnews_box .hnews_wrap .hnews_title_box .hnews_title h4 {
  font-family: "Futura";
  color: #156daf;
  font-size: 24px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.hnews_box .hnews_wrap .hnews_title_box .hnews_title h3 {
  font-size: 40px;
  color: #333;
}
.hnews_box .hnews_wrap .hnews_title_box .hnews_list_btn {
  text-align: right;
}
.hnews_box .hnews_wrap .hnews_title_box .hnews_list_btn > div {
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  font-size: 20px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
}
.hnews_box .hnews_wrap .hnews_title_box .hnews_list_btn .newslist_btn_l {
  background: #dddddd;
}
.hnews_box .hnews_wrap .hnews_title_box .hnews_list_btn .newslist_btn_r {
  margin-left: 20px;
  background: #156daf;
}
.hnews_box .hnews_wrap .hnews_list {
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  margin: 3% 0;
}
.hnews_box .hnews_wrap .hnews_list .hnews_ul .hnews_li {
  display: block;
  transition: all 0.5s;
  width: calc((100% - 60px) / 4);
  margin-right: 20px;
  margin-bottom: 20px;
}
.hnews_box .hnews_wrap .hnews_list .hnews_ul .hnews_li .hnews_img {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 55%;
}
.hnews_box .hnews_wrap .hnews_list .hnews_ul .hnews_li .hnews_img img {
  object-fit: cover;
  position: absolute;
  width: 100%;
  min-height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
.hnews_box .hnews_wrap .hnews_list .hnews_ul .hnews_li .hnews_info {
  margin-top: 20px;
}
.hnews_box .hnews_wrap .hnews_list .hnews_ul .hnews_li .hnews_info p span {
  font-size: 14px;
  color: #999999;
  display: inline-block;
  border: #ddd solid 1px;
  padding: 3px 5px;
}
.hnews_box .hnews_wrap .hnews_list .hnews_ul .hnews_li .hnews_info h3 {
  color: #333;
  font-size: 16px;
  font-weight: bold;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 38px;
}
.hnews_box .hnews_wrap .hnews_list .hnews_ul .hnews_li .hnews_info article {
  font-size: 14px;
  height: 28px;
  color: #666;
  height: 42px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}
.hnews_box .hnews_wrap .hnews_list .hnews_ul .hnews_li .hnews_info p i {
  font-size: 14px;
  color: #999999;
}
.hnews_box .hnews_wrap .hnews_more {
  text-align: center;
}
.hnews_box .hnews_wrap .hnews_more a {
  display: inline-block;
  transition: all 0.5s;
  padding: 0 30px;
  min-width: 246px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  background: #156daf;
  line-height: 60px;
  border-radius: 500px;
}
.hnews_box .hnews_wrap .hnews_more:hover {
  opacity: 0.8;
}
.footer_box {
  background: #272727;
}
.footer_box .footer_top {
  padding: 50px 0 30px;
}
@media (max-width: 1200px) {
  .footer_box .footer_top {
    display: none;
  }
}
.footer_box .footer_top .ft_top_wrap {
  width: 94%;
  max-width: 1740px;
  padding: 0 10px;
  margin: auto;
}
.footer_box .footer_top .ft_top_wrap .ft_top1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer_box .footer_top .ft_top_wrap .ft_top1 .ft_top1_l {
  display: flex;
  flex-wrap: wrap;
  width: 70%;
  max-width: 1276px;
  justify-content: space-between;
}
.footer_box .footer_top .ft_top_wrap .ft_top1 .ft_top1_l dl {
  width: auto;
  margin-bottom: 20px;
}
.footer_box .footer_top .ft_top_wrap .ft_top1 .ft_top1_l dl dt a {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
  color: #fff;
}
.footer_box .footer_top .ft_top_wrap .ft_top1 .ft_top1_l dl dd {
  display: flex;
  flex-wrap: wrap;
}
.footer_box .footer_top .ft_top_wrap .ft_top1 .ft_top1_l dl dd .bottom_nav2 {
  margin-right: 20px;
}
.footer_box .footer_top .ft_top_wrap .ft_top1 .ft_top1_l dl dd .bottom_nav2 a {
  color: #999999;
  display: block;
  font-size: 16px;
  margin-bottom: 15px;
}
.footer_box .footer_top .ft_top_wrap .ft_top1 .ft_top1_r {
  width: 25%;
  max-width: 290px;
}
.footer_box .footer_top .ft_top_wrap .ft_top1 .ft_top1_r form {
  width: 100%;
  display: flex;
  border: #666666 solid 1px;
  height: 50px;
  border-radius: 5px;
  overflow: hidden;
}
.footer_box .footer_top .ft_top_wrap .ft_top1 .ft_top1_r form input {
  width: calc(100% - 78px);
  line-height: 50px;
  padding: 0 15px;
  border: none;
  background: transparent;
  color: #666;
  font-size: 12px;
}
.footer_box .footer_top .ft_top_wrap .ft_top1 .ft_top1_r form button {
  width: 78px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  padding: 0 10px;
  line-height: 50px;
  background: #666666;
  border: none;
}
.footer_box .footer_top .ft_top_wrap .ft_top2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: -30px;
}
.footer_box .footer_top .ft_top_wrap .ft_top2 .ft_top2_l {
  width: 75%;
  max-width: 1276px;
}
.footer_box .footer_top .ft_top_wrap .ft_top2 .ft_top2_l p {
  color: #999;
  font-size: 16px;
}
.footer_box .footer_top .ft_top_wrap .ft_top2 .ft_top2_l p span {
  display: inline-block;
  margin-right: 1vw;
}
.footer_box .footer_top .ft_top_wrap .ft_top2 .ft_top2_r {
  width: 25%;
  max-width: 290px;
  text-align: right;
}
.footer_box .footer_top .ft_top_wrap .ft_top2 .ft_top2_r div {
  display: inline-block;
  width: calc((100% - 25px) / 2);
  text-align: center;
  color: #999;
}
.footer_box .footer_top .ft_top_wrap .ft_top2 .ft_top2_r div p {
  color: #999;
  font-size: 14px;
}
.footer_box .footer_top .ft_top_wrap .ft_top2 .ft_top2_r div p img {
  width: 100%;
  margin-bottom: 10px;
}
.footer_box .footer_bottom {
  border-top: #333333 solid 1px;
  padding: 20px 0;
}
.footer_box .footer_bottom .ft_bot_wrap {
  width: 94%;
  max-width: 1740px;
  padding: 0 10px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .footer_box .footer_bottom .ft_bot_wrap {
    flex-direction: column;
  }
}
.footer_box .footer_bottom .ft_bot_wrap .ft_bot_l p {
  color: #999;
  font-size: 14px;
}
.footer_box .footer_bottom .ft_bot_wrap .ft_bot_l p a {
  color: #999;
  font-size: 14px;
}
.footer_box .footer_bottom .ft_bot_wrap .ft_bot_l p a img {
  width: 360px;
}
.footer_box .footer_bottom .ft_bot_wrap .ft_bot_r p {
  color: #999;
  font-size: 14px;
}
.footer_box .footer_bottom .ft_bot_wrap .ft_bot_r p a {
  color: #999;
  font-size: 14px;
}
.float_box {
  position: fixed;
  bottom: 5%;
  right: 2%;
  z-index: 99;
}
@media (max-width: 576px) {
  .float_box {
    display: none;
  }
}
.float_box .float_li {
  display: block;
  position: relative;
  margin-top: 15px;
}
.float_box .float_li .float_icon {
  width: 50px;
  height: 50px;
  align-items: center;
  display: flex;
  justify-content: center;
  color: #fff;
  background: #156daf;
  border-radius: 500px;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.5s;
}
.float_box .float_li .float_icon:hover {
  opacity: 1;
}
.float_box .float_li .float_icon i {
  font-size: 24px;
}
.float_box .float_li .img_info {
  position: absolute;
  bottom: 0;
  right: 55px;
  width: auto;
  min-width: 150px;
  background: rgba(255, 255, 255, 0.95);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%);
  transition: all 0.6s ease;
  padding: 5px;
}
.float_box .float_li .img_info img {
  width: 100%;
}
.float_box .float_li .li_info {
  position: absolute;
  top: 0;
  right: 55px;
  width: auto;
  min-width: 200px;
  background: #156daf;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%);
  transition: all 0.6s ease;
  padding: 15px;
}
.float_box .float_li .li_info p a {
  color: #fff;
  line-height: 30px;
  font-weight: 500;
}
.float_box .float_li:hover .img_info {
  transition: all 0.6s ease;
  opacity: 1 !important;
  transform: translateX(0%) !important;
  visibility: visible !important;
}
.float_box .float_li:hover .li_info {
  transition: all 0.6s ease;
  opacity: 1 !important;
  transform: translateX(0%) !important;
  visibility: visible !important;
}
.ny_banner {
  width: 100%;
  position: relative;
  height: 400px;
  overflow: hidden;
}
.ny_banner .ny_banner_bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.ny_banner .ny_banner_tit {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  left: 0;
  right: 0;
  z-index: 20;
}
.ny_banner .ny_banner_tit h3 {
  font-size: 48px;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  text-transform: uppercase;
}
.ny_banner .ny_banner_tit p {
  font-size: 24px;
  color: #fff;
}
.new_position {
  font-size: 16px;
}
.new_position i {
  color: #156daf;
  font-size: 18px;
  padding-right: 6px;
}
.ny_mbx {
  background: #fff;
  box-shadow: 3.42px 9.397px 20px 0px rgba(77, 77, 77, 0.2);
}
@media (max-width: 768px) {
  .ny_mbx {
    display: none;
  }
}
.ny_mbx .ny_mbx_wrap {
  align-items: center;
  height: 84px;
  width: 94%;
  padding: 0 10px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ny_mbx .ny_mbx_wrap .ny_mbx_l .ny_dh_list a {
  display: inline-block;
  font-size: 16px;
  color: #333;
  padding: 30px 30px;
  position: relative;
}
.ny_mbx .ny_mbx_wrap .ny_mbx_l .ny_dh_list a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  height: 5px;
  background: #156daf;
  width: 0;
  transition: all 0.5s;
}
.ny_mbx .ny_mbx_wrap .ny_mbx_l .ny_dh_list a:hover::after {
  width: 100%;
}
.ny_wrap {
  width: 94%;
  max-width: 1400px;
  padding: 0 10px;
  margin: auto;
}
.ny_about {
  padding: 60px 0;
}
.ny_about .ny_about_tit {
  margin-bottom: 3%;
}
.ny_about .ny_about_tit h2 {
  font-weight: bold;
  font-size: 36px;
  color: #333333;
  margin-bottom: 10px;
  text-align: left;
}
.ny_about .ny_about_tit p {
  text-align: left;
  font-size: 16px;
  color: #666666;
  line-height: 30px;
}
.ny_about .ny_about_tit p span {
  display: inline-block;
  height: 4px;
  max-width: 50%;
}
.ny_about .ny_about_tit p span:nth-child(1) {
  width: 100px;
  background: #156daf;
}
.ny_about .ny_about_tit p span:nth-child(2) {
  width: 25px;
  background: #dddddd;
  margin-left: 5px;
}
.ny_about .ny_about_info p {
  font-size: 14px;
  line-height: 30px;
  color: #666;
}
.ny_about .ny_about_brief {
  width: 100%;
  margin-top: 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ny_about .ny_about_brief dl {
  width: 25%;
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .ny_about .ny_about_brief dl {
    width: 50%;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .ny_about .ny_about_brief dl {
    width: 100%;
    margin-bottom: 20px;
  }
}
.ny_about .ny_about_brief dl dt {
  width: 92px;
}
.ny_about .ny_about_brief dl dt .brief_icon {
  border-radius: 100%;
  width: 92px;
  height: 92px;
  background: #F2F2F2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ny_about .ny_about_brief dl dt .brief_icon i {
  color: #156daf;
  font-size: 24px;
}
.ny_about .ny_about_brief dl dd {
  width: calc(100% - 100px);
  padding-left: 20px;
}
.ny_about .ny_about_brief dl dd h4 {
  color: #156daf;
  font-size: 48px;
  margin: 0;
}
.ny_about .ny_about_brief dl dd h4 b {
  font-size: 18px;
}
.ny_about .ny_about_brief dl dd p {
  color: #666;
}
.ny_culture {
  background: url(../images/qywh_bg.jpg) no-repeat center;
  background-size: cover;
  padding: 60px 0;
}
.ny_culture .culture_info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ny_culture .culture_info .culture_info_l {
  width: 55%;
  padding-right: 3vw;
}
@media (max-width: 1200px) {
  .ny_culture .culture_info .culture_info_l {
    width: 100%;
  }
}
.ny_culture .culture_info .culture_info_l .culture_tit {
  margin-bottom: 3%;
}
.ny_culture .culture_info .culture_info_l .culture_tit h2 {
  font-weight: bold;
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
  text-align: left;
}
.ny_culture .culture_info .culture_info_l .culture_tit p {
  text-align: left;
  font-size: 16px;
  color: #666666;
  line-height: 30px;
}
.ny_culture .culture_info .culture_info_l .culture_tit p span {
  display: inline-block;
  height: 4px;
  max-width: 50%;
  background-color: #fff;
}
.ny_culture .culture_info .culture_info_l .culture_tit p span:nth-child(1) {
  width: 100px;
}
.ny_culture .culture_info .culture_info_l .culture_tit p span:nth-child(2) {
  width: 25px;
  margin-left: 5px;
}
.ny_culture .culture_info .culture_info_l .culture_data p {
  font-size: 14px;
  line-height: 30px;
  color: #fff;
}
.ny_culture .culture_info .culture_info_r {
  width: 40%;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 1200px) {
  .ny_culture .culture_info .culture_info_r {
    width: 100%;
  }
}
.ny_culture .culture_info .culture_info_r img {
  width: 100%;
}
.ny_history {
  background: url(../images/rh_lsbg.jpg) no-repeat center;
  background-size: cover;
  padding: 60px 0;
}
.ny_history .ny_history_tit {
  margin-bottom: 3%;
}
.ny_history .ny_history_tit h2 {
  font-weight: bold;
  font-size: 36px;
  color: #333333;
  margin-bottom: 10px;
  text-align: left;
}
.ny_history .ny_history_tit p {
  text-align: left;
  font-size: 16px;
  color: #666666;
  line-height: 30px;
}
.ny_history .ny_history_tit p span {
  display: inline-block;
  height: 4px;
  max-width: 50%;
}
.ny_history .ny_history_tit p span:nth-child(1) {
  width: 100px;
  background: #156daf;
}
.ny_history .ny_history_tit p span:nth-child(2) {
  width: 25px;
  background: #dddddd;
  margin-left: 5px;
}
.ny_history .ny_history_list {
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  margin: 3% 0;
}
.ny_history .ny_history_list .history_ul .history_li {
  display: block;
  transition: all 0.5s;
  width: calc((100% - 60px) / 4);
  margin-right: 20px;
  margin-bottom: 20px;
  background: #fff;
  padding: 48px 24px;
  border-radius: 8px;
}
.ny_history .ny_history_list .history_ul .history_li h3 {
  font-size: 24px;
  color: #156daf;
  transition: all 0.5s;
}
.ny_history .ny_history_list .history_ul .history_li h2 {
  font-size: 20px;
  color: #000;
  transition: all 0.5s;
}
.ny_history .ny_history_list .history_ul .history_li p {
  margin-top: 20px;
  font-size: 14px;
  color: #666;
  transition: all 0.5s;
  position: relative;
}
@media (max-width: 768px) {
  .ny_history .ny_history_list .history_ul .history_li p {
    display: none;
  }
}
.ny_honor {
  padding: 60px 0;
}
.ny_honor .ny_honor_tit_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.ny_honor .ny_honor_tit_box .ny_honor_tit {
  margin-bottom: 3%;
}
.ny_honor .ny_honor_tit_box .ny_honor_tit h2 {
  font-weight: bold;
  font-size: 36px;
  color: #333333;
  margin-bottom: 10px;
  text-align: left;
}
.ny_honor .ny_honor_tit_box .ny_honor_tit p {
  text-align: left;
  font-size: 16px;
  color: #666666;
  line-height: 30px;
}
.ny_honor .ny_honor_tit_box .ny_honor_tit p span {
  display: inline-block;
  height: 4px;
  max-width: 50%;
}
.ny_honor .ny_honor_tit_box .ny_honor_tit p span:nth-child(1) {
  width: 100px;
  background: #156daf;
}
.ny_honor .ny_honor_tit_box .ny_honor_tit p span:nth-child(2) {
  width: 25px;
  background: #dddddd;
  margin-left: 5px;
}
.ny_honor .ny_honor_tit_box .honor_list_btn {
  text-align: right;
}
.ny_honor .ny_honor_tit_box .honor_list_btn > div {
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  font-size: 20px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
}
.ny_honor .ny_honor_tit_box .honor_list_btn .honor_btn_l {
  background: #dddddd;
}
.ny_honor .ny_honor_tit_box .honor_list_btn .honor_btn_r {
  margin-left: 20px;
  background: #156daf;
}
.ny_honor .ny_honor_list {
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  margin: 0 0 3%;
}
.ny_honor .ny_honor_list .honor_ul .honor_li {
  display: block;
  transition: all 0.5s;
  width: calc((100% - 60px) / 4);
  margin-right: 20px;
  margin-bottom: 20px;
}
.ny_honor .ny_honor_list .honor_ul .honor_li img {
  width: 100%;
}
.ny_contact {
  padding: 60px 0;
}
.ny_contact .ny_wrap .ny_contact_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ny_contact .ny_wrap .ny_contact_box .ny_contact_l {
  width: 50%;
  padding-right: 20px;
}
@media (max-width: 1200px) {
  .ny_contact .ny_wrap .ny_contact_box .ny_contact_l {
    width: 100%;
    padding-right: 0px;
    padding-bottom: 30px;
  }
}
.ny_contact .ny_wrap .ny_contact_box .ny_contact_l h2 {
  font-size: 30px;
  color: #333333;
  margin-bottom: 10px;
  text-align: left;
  font-weight: bold;
}
.ny_contact .ny_wrap .ny_contact_box .ny_contact_l p {
  font-size: 16px;
  padding: 10px 0;
}
.ny_contact .ny_wrap .ny_contact_box .ny_contact_l p span {
  font-weight: bold;
}
.ny_contact .ny_wrap .ny_contact_box .ny_contact_r {
  width: 50%;
}
@media (max-width: 1200px) {
  .ny_contact .ny_wrap .ny_contact_box .ny_contact_r {
    width: 100%;
  }
}
.ny_message {
  padding: 60px 0;
  background-color: #f8f8f8;
}
.ny_message .ny_mess_tit {
  text-align: center;
}
.ny_message .ny_mess_tit h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 10px;
}
.ny_message .ny_mess_tit p {
  font-size: 18px;
  color: #666;
  line-height: 30px;
}
.ny_message .ny_mess_tit p span {
  width: 80px;
  background: #333;
  display: inline-block;
  height: 4px;
}
.ny_message .ny_mess_box .x_red {
  color: red;
}
.ny_message .ny_mess_box .line_one {
  margin-bottom: 20px;
}
.ny_message .ny_mess_box .line_two {
  display: flex;
  margin-bottom: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ny_message .ny_mess_box .uk_wrap {
  width: 48%;
}
@media (max-width: 576px) {
  .ny_message .ny_mess_box .uk_wrap {
    width: 100%;
  }
}
.ny_message .ny_mess_box .tip {
  font-size: 16px;
  color: #333;
  padding-bottom: 10px;
}
.ny_message .ny_mess_box textarea {
  width: 100%;
  height: 160px;
  border: 1px solid #d2d2d2;
  background: none;
  color: #000;
  padding: 12px;
  font-size: 14px;
}
.ny_message .ny_mess_box input {
  width: 100%;
  height: 42px;
  border: 1px solid #d2d2d2;
  background: none;
  color: #000;
  padding: 0 12px;
  font-size: 14px;
}
.ny_message .ny_mess_box input::input-placeholder {
  color: #ddd;
}
.ny_message .ny_mess_box .yzm {
  width: 48%;
}
@media (max-width: 576px) {
  .ny_message .ny_mess_box .yzm {
    width: 100%;
  }
}
.ny_message .ny_mess_box .yzm input {
  width: calc(100% - 120px);
}
.ny_message .ny_mess_box .yzm img {
  height: 42px;
}
.ny_message .ny_mess_box .submit {
  display: flex;
  justify-content: center;
}
.ny_message .ny_mess_box .submit button {
  background: #156daf;
  display: inline-block;
  width: 80%;
  max-width: 480px;
  text-align: center;
  line-height: 32px;
  color: #fff;
  border: none;
  border-radius: 0;
  margin-top: 20px;
  padding: 5px 20px;
}
.ny_news_list {
  padding: 60px 0;
}
.ny_news_list .ny_news_ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.ny_news_list .ny_news_ul .ny_news_li {
  padding: 20px;
  border: #ddd solid 1px;
  display: block;
  width: calc((100% - 60px) / 3);
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .ny_news_list .ny_news_ul .ny_news_li {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}
.ny_news_list .ny_news_ul .ny_news_li .news_img {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 67%;
}
.ny_news_list .ny_news_ul .ny_news_li .news_img img {
  position: absolute;
  width: 100%;
  min-height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
.ny_news_list .ny_news_ul .ny_news_li .news_info .news_tit {
  margin: 20px 0;
}
.ny_news_list .ny_news_ul .ny_news_li .news_info .news_tit h3 {
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #333;
  margin-bottom: 10px;
}
.ny_news_list .ny_news_ul .ny_news_li .news_info .news_tit .news_sum {
  display: flex;
  margin: 20px 0;
}
.ny_news_list .ny_news_ul .ny_news_li .news_info .news_tit .news_sum .date {
  width: 80px;
  border-right: 1px #ccc solid;
  padding-right: 10px;
}
.ny_news_list .ny_news_ul .ny_news_li .news_info .news_tit .news_sum .date span {
  font-size: 20px;
  color: #aaa;
  font-weight: bold;
  display: block;
  text-align: center;
}
.ny_news_list .ny_news_ul .ny_news_li .news_info .news_tit .news_sum .date i {
  font-size: 12px;
  color: #aaa;
  margin-top: 0;
  display: block;
  text-align: center;
}
.ny_news_list .ny_news_ul .ny_news_li .news_info .news_tit .news_sum .news_cnt {
  width: calc(100% - 80px);
  font-size: 14px;
  line-height: 24px;
  max-height: 50px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  padding-left: 15px;
  color: #999;
}
.ny_news_list .ny_news_ul .ny_news_li .news_info .news_link {
  background: #156daf;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 10px 20px;
}
.ny_mo_dh .mo_tit {
  color: #fff;
  background: #156daf;
  padding: 15px 20px;
  width: 100%;
  cursor: pointer;
  font-size: 14px;
  display: none;
}
@media (max-width: 768px) {
  .ny_mo_dh .mo_tit {
    display: block;
  }
}
.ny_mo_dh .mo_dh_list {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  background: #fff;
  width: 100%;
  z-index: 999;
  padding-left: 40px;
  transition: all 1s;
}
.ny_mo_dh .mo_dh_list.dh_open {
  right: 0%;
}
.ny_mo_dh .mo_dh_list .mo_dh_close {
  position: absolute;
  background: #156daf;
  color: #fff;
  left: 0;
  font-size: 20px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 100%;
  top: 0;
}
.ny_mo_dh .mo_dh_list .mo_dh_cnt a {
  display: block;
  padding: 15px 20px;
  border-bottom: #ccc solid 1px;
  color: #333;
}
.ny_case {
  padding: 60px 0;
}
.ny_case .ny_case_ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.ny_case .ny_case_ul .ny_case_li {
  display: block;
  width: calc((100% - 60px) / 2);
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .ny_case .ny_case_ul .ny_case_li {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}
.ny_case .ny_case_ul .ny_case_li .case_img {
  overflow: hidden;
}
.ny_case .ny_case_ul .ny_case_li .case_img img {
  width: 100%;
  transition: all 0.5s;
}
.ny_case .ny_case_ul .ny_case_li p {
  width: 100%;
  height: auto;
  padding: 15px;
  text-align: center;
  color: #333;
  font-size: 18px;
}
.ny_case .ny_case_ul .ny_case_li:hover .case_img img {
  transform: scale(1.1);
}
.ny_case .ny_case_ul .ny_case_li:hover p {
  color: #156daf;
}
.ny_prd_box {
  padding: 60px 0;
  min-height: 600px;
}
.ny_prd_box .cpdbox {
  display: flex;
  flex-direction: row;
  gap: 60px;
}
.ny_prd_box .cpdbox .ny_prd_ul {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  align-items: flex-start;
  align-content: flex-start;
}
.ny_prd_box .cpdbox .ny_prd_ul .ny_prd_li {
  width: calc(25% - 20px);
  margin: 10px 10px 40px;
  display: block;
  border: #156daf solid 1px;
  background: #eaf6ff;
}
@media (max-width: 768px) {
  .ny_prd_box .cpdbox .ny_prd_ul .ny_prd_li {
    width: 100%;
  }
}
.ny_prd_box .cpdbox .ny_prd_ul .ny_prd_li .prd_img {
  padding-bottom: 100%;
  background: #fff;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.ny_prd_box .cpdbox .ny_prd_ul .ny_prd_li .prd_img img {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
.ny_prd_box .cpdbox .ny_prd_ul .ny_prd_li .prd_tit {
  padding: 10px 20px;
  border-top: #156daf solid 1px;
}
.ny_prd_box .cpdbox .ny_prd_ul .ny_prd_li .prd_tit p {
  color: #333;
  font-size: 16px;
  line-height: 2;
}
.ny_prd_box .cpdbox .ny_prd_ul .ny_prd_li .prd_tit p:nth-child(1) span {
  display: inline-block;
  min-height: 64px;
}
.ny_prd_box .cpdbox .ny_prd_ul .ny_prd_li .prd_tit p i {
  display: inline-block;
  color: #fff;
  background: #156daf;
  font-size: 14px;
  margin-top: 10px;
  padding: 2px 10px;
  font-style: normal;
}
.ny_prd_box .cpdbox .ny_prd_ul .mbx_box {
  width: 100%;
  margin: auto;
}
.ny_joinlist {
  padding: 60px 0;
}
.ny_joinlist .ny_jol_ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.ny_joinlist .ny_jol_ul .ny_jol_li {
  display: flex;
  justify-content: space-between;
  border: #ddd solid 1px;
  padding: 16px 24px;
  border-radius: 4px;
  width: calc((100% - 50px) / 2);
}
@media (max-width: 768px) {
  .ny_joinlist .ny_jol_ul .ny_jol_li {
    width: 100%;
  }
}
.ny_joinlist .ny_jol_ul .ny_jol_li .jol_li_l h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}
.ny_joinlist .ny_jol_ul .ny_jol_li .jol_li_l h3 i {
  color: #156daf;
  padding-left: 8px;
}
.ny_joinlist .ny_jol_ul .ny_jol_li .jol_li_l p {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}
.ny_joinlist .ny_jol_ul .ny_jol_li .jol_li_l h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #f54336;
}
.ny_joinlist .ny_jol_ul .ny_jol_li .jol_li_r button {
  color: #fff;
  text-align: center;
  line-height: 30px;
  border-radius: 30px;
  width: 80px;
  display: block;
  border: none;
  background-color: #156daf;
  font-size: 14px;
}
.ny_join_d_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f2f2f2;
  padding: 16px 24px;
}
@media (max-width: 768px) {
  .ny_join_d_box {
    flex-direction: column;
  }
}
.ny_join_d_box .join_l p {
  font-size: 14px;
  color: #333;
}
.ny_join_d_box .join_r p {
  font-size: 14px;
  color: #999;
}
.ny_join_d_box .join_r p span {
  font-size: 16px;
  font-weight: bold;
  color: #f54336;
}
.cpfl_sec_fd_box {
  width: 220px;
  position: relative;
}
@media (max-width: 768px) {
  .cpfl_sec_fd_box {
    display: none;
  }
}
.cpfl_sec_fd_box .cpfl_bt {
  background: #156daf;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 40px 16px;
}
.cpfl_sec_fd_box .cpfl_bt strong {
  font-size: 24px;
}
.cpfl_sec_fd_box .cpfl_bt i {
  display: inline-block;
  width: 120px;
  height: 1px;
  background: #fff;
  margin: 8px 0;
}
.cpfl_sec_fd_box .cpfl_bt p {
  font-size: 14px;
}
.cpfl_sec_fd_box .cplbs .cpls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.cpfl_sec_fd_box .cplbs .cpls:hover {
  background: rgba(21, 109, 175, 0.1);
}
.cpfl_sec_fd_box .cplbs .cpls a {
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  line-height: 54px;
}
.cpfl_sec_fd_box .cplbs .cpls i {
  font-size: 24px;
  color: rgba(0, 0, 0, 0.3);
  padding: 16px;
}
.cpfl_sec_fd_box .cplbs .ejBox {
  display: none;
}
.cpfl_sec_fd_box .cplbs .ejBox .ejli {
  padding: 0 0 0 24px;
}
.cpfl_sec_fd_box .cplbs .sjBox {
  display: none;
}
.cpfl_sec_fd_box .cplbs .sjBox .sjli {
  padding: 0 0 0 32px;
}
.cpfl_sec_fd_box .cplbs .sijBox {
  display: none;
}
.cpfl_sec_fd_box .cplbs .sijBox .sijli {
  padding: 0 0 0 40px;
}
.cpfl_sec_fd_box .cplbs .rotate {
  transform: rotate(-90deg);
}
.ny_prdd_box {
  padding: 60px 0;
}
.ny_prdd_box .cpddbox {
  display: flex;
  flex-direction: row;
  gap: 60px;
}
