/* CSS Document*/
* {
  padding: 0px;
  margin: 0px;
  outline: 0 none;
}

a {
  text-decoration: none;
  color: #666;
  transition: all 0.5s ease 0s;
}

a:focus {
  outline: none;
}

a:hover {
  color: #0b70e1;
  text-decoration: none;
}

ul {
  list-style-type: none;
  margin-bottom: 0px;
}

li {
  vertical-align: bottom;
  zoom: 1;
}

img {
  border: 0px;
}

select {
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
  color: #666;
  font-size: 12px;
}

textarea {
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
  color: #666;
  font-size: 12px;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
}

th,
td {
  padding: 0;
}

input {
  vertical-align: middle;
  outline: none;
  font-size: 12px;
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
}

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

.clearfix {
  zoom: 1;
}

.clearfix:after {
  clear: both;
}

.hidden {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: inherit;
  margin: 0px;
}

p {
  margin: 0px;
}

em,
i {
  font-style: normal;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

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

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

input::-moz-input-placeholder {
  color: #999;
}

input::-ms-input-placeholder {
  color: #999;
}

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

textarea::-moz-input-placeholder {
  color: #999;
}

textarea::-ms-input-placeholder {
  color: #999;
}

.center {
  text-align: center;
}

body {
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
  background: #fff;
  color: #666;
  font-size: 12px;
  min-width: 1200px;
}

.container {
  margin: 0px auto;
  width: 1200px;
}

.top {
  height: 64px;
  position: fixed;
  z-index: 999;
  top: 0px;
  width: 100%;
  transition: all 0.5s ease 0s;
  box-sizing: border-box;
}

.top.scope {
  background: #fff;
  border-bottom: 0px;
  box-shadow: 0px 0px 5px #ddd;
}

.top:hover {
  background: #fff;
}

.top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}

.top .logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.top .logo img {
  height: auto;
  width: 123px;
}

.top .logo img:nth-child(2) {
  display: none;
}

.top:hover .logo img:nth-child(1) {
  display: none;
}

.top:hover .logo img:nth-child(2) {
  display: block;
}

.top.scope .logo img:nth-child(1) {
  display: none;
}

.top.scope .logo img:nth-child(2) {
  display: block;
}

.nav {
  z-index: 10;
  display: flex;
  align-items: center;
  height: 64px;
  position: relative;
  padding: 0px 15px;
  box-sizing: border-box;
}

.nav .nLi {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav .nLi h3 {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0px 20px;
  white-space: nowrap;
}

.nav .nLi:nth-last-child(1) h3 {
  padding-right: 0px;
}

.nav .nLi h3 a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  font-size: 14px;
  position: relative;
  color: #fff;
  text-transform: capitalize;
}

.top.scope .nav .nLi h3 a,
.top:hover .nav .nLi h3 a {
  color: #333;
}

.nav .nLi h3 i {
  font-size: 16px;
  color: #fff;
}

.top:hover .nav .nLi h3 i {
  color: #333;
}

.top.scope .nav .nLi h3 i {
  color: #333;
}

.top .nav .nLi:hover h3 i {
  color: #0b70e1;
}

.nav .nLi h3 p {
  font-size: 14px;
  color: #fff;
}

.top:hover .nav .nLi h3 p {
  color: #333;
}

.top.scope .nav .nLi h3 p {
  color: #333;
}

.top .nav .nLi.on h3 a {
  color: #fff;
  border-bottom: 2px solid #fff;
}

.top.scope .nav .nLi.on h3 a {
  color: #3a7cd6;
  border-bottom: 2px solid #3a7cd6;
}

.top:hover .nav .nLi.on h3 a {
  color: #3a7cd6;
  border-bottom: 2px solid #3a7cd6;
  transition: none;
}

.top .nav .nLi:hover h3 a {
  color: #3a7cd6;
  border-bottom: 2px solid #3a7cd6;
  transition: none;
}

.top .nav .nLi ul.sub {
  width: 100%;
  position: absolute;
  top: 64px;
  left: 0px;
  background: #fff;
  display: none;
  box-shadow: 0px 0px 5px #eee;
}

.top .nav .nLi:hover ul.sub {
  display: block;
}

.top .nav .nLi ul.sub li a {
  display: block;
  text-align: center;
  padding: 10px 5px;
  color: #333;
  font-size: 13px;
  border-bottom: 1px solid #eee;
}

.top .nav .nLi ul.sub li img{
    width: 120px;
    height: auto;
    margin-left: -30px;
}

.phone_btn {
  float: right;
  display: none;
}

.menu_box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: rgba(0, 0, 0, 0.7);
  transform: translateX(-100%);
  transition: all 0.3s ease;
}

.menu_box.into {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.menu_cot {
  width: 70%;
  height: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: all 0.3s ease;
}

.menu_box.into .menu_cot {
  transform: translateX(0);
  transition: all 0.3s 0.2s ease;
}

.menu_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
}

.menu_close img {
  width: 40px;
}

.menu_close a {
  padding: 10px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
}

.in_banner {
  height: auto;
}

.in_banner .swiper-slide .bj {
  width: 100%;
  height: auto;
}

.in_banner .swiper-slide .bj img {
  width: 100%;
  height: auto;
}

.in_banner .swiper-slide .bj .pc_img {
  height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.in_banner .swiper-slide .nr {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0px;
}

.in_banner .swiper-slide .video {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
}

.in_banner .swiper-slide .video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.in_banner .swiper-slide .nr .container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
}

.in_banner .swiper-slide .nr .container h2 {
  color: #fff;
  font-size: 50px;
  font-weight: bold;
}

.in_banner .swiper-slide .nr .container p {
  font-size: 20px;
  color: #fff;
  padding: 2% 0px;
}

.in_banner .swiper-slide .nr .container span {
  display: flex;
}

.in_banner .swiper-slide .nr .container span a {
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  background-color: #0b70e1;
  box-shadow: inset 0px 0px 5px 0px rgba(255, 165, 150, 0.39);
  border-radius: 6px;
  padding: 10px 30px;
}

.in_banner .swiper-pagination {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  left: auto;
  bottom: 20px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.in_banner .swiper-pagination span {
  width: 40px;
  height: 6px;
  background: #fff;
  border-radius: 5px;
}

.in_banner .swiper-pagination span.swiper-pagination-bullet-active {
  opacity: 0.8;
}

.in_box {
  padding: 50px 0px;
  display: flex;
  align-items: center;
  background: #f8f8f8;
}

.in_box_l {
  width: 40%;
}

.in_box_l img {
  width: 100%;
  height: auto;
  border-radius: 0px 15px 15px 0px;
}

.in_box_r {
  width: 610px;
  padding-left: 70px;
}

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

.in_box_r ul li {
  width: 33.3%;
  text-align: left;
}

.in_box_r ul li h2 {
  font-size: 30px;
  color: #0b70e1;
}

.in_box_r ul li h2 span {
  font-size: 40px;
  font-weight: bold;
}

.in_box_r ul li p {
  font-size: 14px;
}

.in_box_r .nr {
  padding-top: 40px;
}

.in_box_r .nr h2 {
  font-size: 30px;
  color: #333;
  font-weight: bold;
}

.in_box_r .nr p {
  font-size: 14px;
  line-height: 1.6;
  display: block;
  padding: 20px 0px;
}

.in_box_r .nr h3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.in_box_r .nr h3 a {
  width: calc(50% - 20px);
  background-color: #fff;
  border-radius: 4px;
  border: solid 1px #d9d9d9;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 14px;
  color: #333;
}

.in_box_r .nr h3 a i {
  margin-right: 10px;
}

.in_box_r .nr h3 a i img {
  width: 25px;
  height: auto;
}

.in_box_r .nr h3 a:hover {
  box-shadow: 0px 0px 5px #ccc;
  transform: translatey(-10px);
}

.in_box_r .nr span {
  display: block;
  padding-top: 30px;
}

.in_box_r .nr span a {
  background: #0b70e1;
  width: 160px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  color: #fff;
  display: block;
  text-align: center;
  border-radius: 5px;
}

.in_box1 {
  padding: 50px 0px;
}

.in_bt {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.in_bt h2 {
  font-size: 40px;
  font-weight: bold;
  color: #333;
}

.in_bt b {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: #0b70e1;
}

.in_bt p {
  font-size: 14px;
  line-height: 1.6;
  padding-top: 10px;
}

.in_bt span {
  display: block;
  position: absolute;
  right: 0px;
  top: 20px;
}

.in_bt span a {
  display: inline-block;
  border: 1px solid #3060d5;
  color: #3060d5;
  border-radius: 5px;
  padding: 8px 30px;
}

.in_bt span a:hover {
  background: #3060d5;
  color: #fff;
}

.in_bt1 {
  text-align: left;
}

.in_bt2 h2,
.in_bt2 p {
  color: #fff;
}

.in_bt2 b {
  background: #fff;
}

.in_box1_nr {
  padding-bottom: 40px;
}

.in_box1_nr .swiper-slide .img img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.in_box1_nr .swiper-slide a h2 {
  font-size: 22px;
  padding: 15px 0px;
  color: #333;
}

.in_box1_nr .swiper-slide a p {
  font-size: 16px;
  color: #666;
}

.in_box1_nr .swiper-scrollbar{
    max-width: 1200px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.in_box1_nr .swiper-scrollbar-drag {
  background: #0b70e1;
}

.in_box1_nr .swiper-button-next,
.in_box1_nr .swiper-button-prev {
  width: 78px;
  height: 78px;
  background-color: #ffffff;
  box-shadow: 1px 2px 16px 0px rgba(215, 215, 215, 0.77);
  border-radius: 50%;
  left: 20%;
  top: 50%;
  transform: translate(0px, -50%);
}

.in_box1_nr .swiper-button-next:hover,
.in_box1_nr .swiper-button-prev:hover {
  background: #0b70e1;
  color: #fff;
}

.in_box1_nr .swiper-button-next {
  left: auto;
  right: 20%;
}

.in_box2 {
  background: #f8f8f8;
  padding: 50px 0px;
}

.in_box2_nr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.in_box2_nr_l {
  width: 380px;
  height: 430px;
  background: #316cd4;
  box-sizing: border-box;
  color: #fff;
  padding: 0px 35px;
}

.in_box2_nr_l h2 {
  font-size: 24px;
  font-weight: bold;
  padding: 25px 0px;
}

.in_box2_nr_l h2 i {
  margin-right: 10px;
}

.in_box2_nr_l h3 {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
}

.in_box2_nr_l h3 span {
  font-size: 30px;
  padding-right: 8px;
}

.in_box2_nr_l h3 b {
  font-size: 40px;
  padding-right: 8px;
}

.in_box2_nr_r {
  width: 639px;
  height: auto;
}

.in_box2_nr_r img {
  width: 100%;
  height: auto;
}

.in_box3 {
  background: url(../images/in_box3_bj.png) no-repeat;
  background-size: cover;
  padding: 50px 0px;
}

#certify {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}

#certify .swiper {
  padding-bottom: 60px;
}

#certify .swiper-slide {
  width: 582px;
  background: #fff;
  box-shadow: 0 0px 10px #333;
}

#certify .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}

#certify .swiper-button-prev,
#certify .swiper-button-next {
  left: -25px;
  width: 50px;
  height: 50px;
  color: #5c6d8c;
  transform: translate(0px -50%);
  border: 1px solid #5c6d8c;
}

#certify .swiper-button-prev:hover,
#certify .swiper-button-next:hover {
  background-color: #0b70e1;
  border: 1px solid #0b70e1;
  color: #fff;
}

#certify .swiper-button-next {
  left: auto;
  right: -25px;
}

#certify .swiper-button-prev:after,
#certify .swiper-button-next:after{
    font-size: 20px;
}


.in_box4 {
  padding: 50px 0px;
}

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

.in_box4_nr_l {
  width: 530px;
}

.in_box4_nr_l .img a {
  overflow: hidden;
  display: block;
}

.in_box4_nr_l .img a img {
  width: 530px;
  height: 375px;
  object-fit: cover;
  transition: all 0.3s ease 0s;
}

.in_box4_nr_l .img a:hover img {
  transform: scale(1.05);
  transition: all 0.3s ease 0s;
}

.in_box4_nr_l .nr {
  padding-top: 10px;
}

.in_box4_nr_l .nr h2 a {
  font-size: 16px;
  color: #333;
  font-weight: bold;
}

.in_box4_nr_l .nr h2 a:hover {
  color: #0b70e1;
}

.in_box4_nr_l .nr span {
  padding: 8px 0px;
  display: block;
}

.in_box4_nr_r {
  width: 610px;
}

.in_box4_nr_r ul li {
  display: flex;
  margin-bottom: 50px;
}

.in_box4_nr_r ul li:nth-last-child(1) {
  margin-bottom: 0px;
}

.in_box4_nr_r ul li .img a {
  overflow: hidden;
  display: block;
}

.in_box4_nr_r ul li .img a img {
  width: 170px;
  height: 125px;
  object-fit: cover;
  transition: all 0.3s ease 0s;
}

.in_box4_nr_r ul li .img a:hover img {
  transform: scale(1.05);
  transition: all 0.3s ease 0s;
}

.in_box4_nr_r ul li .nr {
  padding-left: 20px;
}

.in_box4_nr_r ul li .nr h2 a {
  font-size: 16px;
  color: #333;
  font-weight: bold;
}

.in_box4_nr_r ul li .nr h2 a:hover {
  color: #0b70e1;
}

.in_box4_nr_r ul li span {
  padding: 8px 0px;
  display: block;
}

.in_box5 {
  padding: 50px 0px;
  background: url(../images/in_box5_bj.png) no-repeat;
  background-size: cover;
}

.in_box5 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.in_box5 .left h2 {
  color: #fff;
  font-size: 34px;
  font-weight: bold;
}

.in_box5 .left p {
  font-size: 20px;
  color: #fff;
  padding-top: 15px;
}

.in_box5 .right a {
  display: inline-block;
  background: #0b70e1;
  color: #fff;
  border-radius: 5px;
  padding: 8px 30px;
  font-size: 14px;
}

.di {
  background: #111;
}

.di1 {
  padding: 40px 0px;
  display: flex;
  justify-content: space-between;
}

.di1_l {
  width: 107px;
}

.di1_l h2 {
  padding-bottom: 40px;
}

.di1_l h2 img {
  width: 107px;
  height: auto;
}

.di1_l h3 img {
  width: 107px;
  height: auto;
}

.di1_l h3 p {
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding-top: 5px;
}

.di1_z {
  width: calc(100% - 427px);
  box-sizing: border-box;
  padding: 0px 50px;
}

.di1_z ul {
  display: flex;
}

.di1_z ul li {
  flex: auto;
}

.di1_z ul li h2 a {
  color: #fff;
  font-size: 13px;
  padding-bottom: 20px;
  display: block;
}

.di1_z ul li p a {
  display: block;
  font-size: 12px;
  color: #7a7a7a;
  padding-bottom: 20px;
}

.di1_r {
  width: 320px;
}

.di1_r h2 {
  font-size: 13px;
  color: #fff;
  line-height: 1.6;
  padding-bottom: 15px;
}

.di1_r h2 b {
  display: block;
  color: #2a5ffb;
  font-size: 24px;
}

.di1_r h2 p {
  color: #7a7a7a;
}

.di2 {
  border-top: 1px solid #525252;
  text-align: center;
  padding: 10px 0px;
  color: #525252;
}

.di2 a {
  color: #525252;
}

.slide_right {
  width: 40px;
  position: fixed;
  right: 30px;
  top: 50%;
  z-index: 99;
}

.slide_right li {
  width: 40px;
  height: 40px;
  margin-bottom: 3px;
  position: relative;
}


.slide_right li a {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #fff;
  transition: none;
  text-align: center;
  line-height: 22px;
  float: left;
  box-shadow: 0px 0px 5px #666;
}

.slide_right li:hover a {
  background: #0a3463;
  text-align: center;
}

.slide_right li a i {
  font-size: 20px;
  color: #666;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide_right li:hover a i{
  color: #fff;
}

.slide_right li .u_tel {
  width: 0px;
  height: 40px;
  float: left;
  background: #0a3463;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  color: #fff;
  overflow: hidden;
}

.slide_right li .s_tel{
  display: flex;
  position: absolute;
  right: 0px;
  top: 0px;
}

.slide_right li .s_tel:hover .u_tel{
  width: 210px;
}


.slide_right li .s_side {
  display: none;
}

.slide_right li .hade {
  display: block;
}

.about_banner{
  height: 520px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about_banner .container{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.about_banner h2{
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  padding-bottom: 10px;
}

.about_banner p{
  font-size: 20px;
  color: #fff;
}

.about_banner h3{
  position: absolute;
  right: 0px;
  bottom: 20px;
  color: #fff;
}

.about_banner h3 a{
  color: #fff;
}

.ny_nav{
  padding: 30px 0px;
}

.ny_nav .container{
  display: flex;
}

.ny_nav a{
  width: 190px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #f2eff2;
  border-radius: 5px;
  margin-right: 5px;
  color: #333;
  font-size: 14px;
}

.ny_nav a:hover,.ny_nav a.on{
  background: #0b70e1;
  color: #fff;
}

.about_box{
  padding: 50px 0px;
}

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

.about_box_nr_l{
  width: 560px;
}

.about_box_nr_l .nr p{
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.about_box_nr_l ul {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
}

.about_box_nr_l ul li {
  width: 33.3%;
  text-align: left;
}

.about_box_nr_l ul li h2 {
  font-size: 30px;
  color: #0b70e1;
}

.about_box_nr_l ul li h2 span {
  font-size: 40px;
  font-weight: bold;
}

.about_box_nr_l ul li p {
  font-size: 14px;
}

.about_box_nr_r{
  width: 560px;
}

.about_box_nr_r img{
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.about_box_nr1{
  padding-top: 50px;
  position: relative;
}

.about_box_nr1 .play-button{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0px;
    top: 0px;
    color: #fff;
    font-size: 60px;
    z-index: 10;
}

.about_box_nr1 video{
  width: 100%;
  height: auto;
}

.in_box3_nr1{
  padding-top: 50px;
}

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

.in_box3_nr1 ul li{
  display: flex;
  width: 200px;
  align-items: center;
  justify-content: space-between;
}

.in_box3_nr1 ul li i:nth-last-child(1){
  transform: scaleX(-1);
}

.in_box3_nr1 ul li h2{
  color: #fff;
  font-size: 30px;
  text-align: center;
  font-weight: bold;
}

.in_box3_nr1 ul li h2 p{
  font-size: 14px;
  font-weight: normal;
}

.about_box2{
  padding: 50px 0px;
}

.about_box2 ul{
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
}

.about_box2 ul li{
  margin: 0px 5px;
  height: 445px;
  transition: all 0.3s ease 0s;
  background-position:  center center;
  box-sizing: border-box;
  padding: 3%;
  display: flex;
  color: #fff;
  flex-direction: column;
  justify-content: flex-end;
  width: 25%;
}

.about_box2 ul li.on{
  width: 50%;
}

.about_box2 ul li i{
  font-size:30px;
}

.about_box2 ul li h2{
  font-size: 20px;
  padding: 10px 0px;
}

.about_box2 ul li p{
  font-size: 14px;
}

.about_box3{
  background: #f8f8f8;
  padding: 50px 0px;
}

.about_box3_nr{
  display: flex;
  justify-content: space-between;
  max-width: 1600px;
  padding: 0px 40px;
  margin: 0px auto;
}

.about_box3_nr_l{
  width: 50%;
  height: 530px;
  position: relative;
}

.about_box3_nr_l img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about_box3_nr_l .nr{
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0px;
  left: 0px;
  text-align: center;
  color: #fff;
  padding: 20px;
  box-sizing: border-box;
}

.about_box3_nr_l .nr h2{
  font-size: 14px;
  font-weight: bold;
}

.about_box3_nr_l .nr p{
font-size: 14px;
display: none;
}

.about_box3_nr_l:hover .nr{
  background: rgb(11, 112, 225 , 0.8);
}

.about_box3_nr_l:hover .nr h2{
  font-size: 20px;
  font-weight: bold;
}

.about_box3_nr_l:hover .nr p{
  display: block;
}

.about_box3_nr_r{
  width: 50%;
  box-sizing: border-box;
  padding-left: 2px;
}

.about_box3_nr_r ul{
  display: flex;
  flex-wrap: wrap;
  margin-top: -2px;
}

.about_box3_nr_r ul li{
  width: calc(50% - 4px);
  height: 263px;
  margin: 2px 2px;
  position: relative;
}

.about_box3_nr_r ul li img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about_box3_nr_r ul li .nr{
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0px;
  left: 0px;
  text-align: center;
  color: #fff;
  padding: 20px;
  box-sizing: border-box;
}

.about_box3_nr_r ul li .nr h2{
  font-size:14px;
}

.about_box3_nr_r ul li .nr p{
font-size: 14px;
display: none;
}

.about_box3_nr_r ul li:hover .nr{
  background: rgb(11, 112, 225 , 0.8);
}

.about_box3_nr_r ul li:hover .nr h2{
  font-size: 20px;
}

.about_box3_nr_r ul li:hover .nr p{
  display: block;
}

.about_box4{
  padding: 50px 0px;
}

.about_box4_nr{
  margin-top: 40px;
  width: 1200px;
  height: 465px;
  padding-bottom: 40px;
}

.about_box4_nr .swiper-slide {
      text-align: center;
      background: #fff;
      height: calc((100% - 30px) / 3) !important;
      box-sizing: border-box;
}

.about_box4_nr .swiper-slide a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid #eee;
}

.about_box4_nr .swiper-slide a img{
  max-width: 90%;
  max-height: 90%;
}


.about_box4_nr .swiper-button-prev,
.about_box4_nr .swiper-button-next {
  left: calc(50% + 22px);
  width: 36px;
  height: 36px;
  top: auto;
  bottom: 0px;
  color: #333;
  transform: translate(0px -50%);
  background: #fff;
  border:1px solid #ccc;
}

.about_box4_nr .swiper-button-prev:hover,
.about_box4_nr .swiper-button-next:hover {
  width: 36px;
  height: 36px;
  background: #0b70e1;
    border:1px solid #0b70e1;
  color: #fff;
}

.about_box4_nr .swiper-button-prev{
  left: calc(50% - 22px);
}

.about_box4_nr .swiper-button-prev::after,
.about_box4_nr .swiper-button-next::after{
  font-size: 20px;
}

.about_box5{
  background: #f7f7f7;
  padding: 50px 0px;
}

.about_box5 ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0px -15px;
}

.about_box5 ul li{
  width: calc(25% - 30px);
  margin: 0px 15px;
  margin-bottom: 30px;
}

.about_box5 ul li img{
  width: 100%;
  aspect-ratio: 272/399;
}

.about_box5 ul li h2{
  background: #fff;
  box-sizing: border-box;
  padding: 0px 10px;
  height: 58px;
  color: #333;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.news{
  background: #F8F8F8;
  padding: 50px 0px;
}

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

.news_list_l{
  width: 905px;
  background: #fff;
}


.news_nav{
  border-bottom: 1px solid #f2eff2;
  box-sizing: border-box;
  padding: 0px 15px;
  padding-top: 15px;
}

.news_nav a{
  line-height: 35px;
  font-size: 14px;
  margin: 0px 20px;
  display: inline-block;
  font-size: 16px;
  color: #333;
}

.news_nav a:hover{
  color: #0b70e1;
}

.news_nav a.on{
  border-bottom: 2px solid #0b70e1;

}

.news_list_l ul{
  padding: 30px;
}

.news_list_l ul li{
  display: flex;
  padding: 15px 0px;
}

.news_list_l ul li .img img{
  width: 235px;
  height: 175px;
  object-fit: cover;
}

.news_list_l ul li .nr{
  padding-left: 20px;
}

.news_list_l ul li .nr h2 a{
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.news_list_l ul li .nr h2 a:hover{
  color: #0b70e1;
}

.news_list_l ul li .nr h3{
  padding: 10px 0px;
  color: #333;
}

.news_list_l ul li .nr h3 i{
  margin-right: 5px;
}

.news_list_l ul li .nr p{
  font-size: 12px;
  line-height: 1.6;
}

.news_list_l ul li .nr span{
  padding-top: 20px;
  display: block;
}

.news_list_l ul li .nr span a{
  color: #0b70e1;
}

.fanye{
  text-align: center;
}

.news_list_r{
  width: 275px;
}

.news_zuire{
  background: #fff;
}

.news_zuire ul{
  padding: 20px;
}

.news_zuire ul li{
  padding-bottom: 16px;
}

.news_zuire ul li a{
  display: flex;
  align-items: center;
  line-height: 1.4;
}

.news_zuire ul li i{
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.news_zuire ul li:nth-child(1) i{
  background: #eb2941;
  color: #fff;
}


.news_zuire ul li:nth-child(2) i{
  background: #f7623f;
  color: #fff;
}


.news_zuire ul li:nth-child(3) i{
  background: #ff9750;
  color: #fff;
}

.news_zuire1{
  margin-top: 15px;
}

.news_zuire1 img{
  width: 100%;
  height: auto;
}

.news_detail{
  box-sizing: border-box;
  padding: 30px;
}

.news_detail .bt{
  padding-bottom: 10px;
}

.news_detail .bt h2{
  font-size: 20px;
}

.news_detail .bt h3{
  font-size: 12px;
  padding: 10px 0px;
}

.news_detail .bt h3 i{
  margin-right: 10px;
}

.news_detail .nr{
  font-size: 14px;
}

.news_detail .nr p{
  display: block;
  padding-bottom: 15px;
  line-height: 1.8;
}

.news_detail .nr img{
  max-width: 100%;
  width: auto;
}

.shangxia{
  background: #f8f8f8;
  padding-top: 10px;
}

.shangxia h2{
  display: flex;
  align-items: center;
  color: #999;
  font-size: 14px;
  padding: 5px 0px;
}

.shangxia h2 i{
  margin-right: 10px;
}

.product_list{
  padding: 50px 0px;
}

.pro_lb{
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
}

.pro_nav{
  width: 235px;
}

.pro_nav h2{
  width: 100%;
	height: 49px;
  line-height: 49px;
	background-color: #f7f7f6;
	border-radius: 4px;
	border: solid 1px #f2eff2;
  font-size: 14px;
  color: #333;
  font-weight: bold;
  padding-left: 15px;
  box-sizing: border-box;
}

.pro_nav a{
  display: block;
  width: 100%;
	height: 49px;
  line-height: 49px;
	background-color: #fff;
	border-radius: 4px;
	border: solid 1px #f2eff2;
  font-size: 14px;
  color: #333;
  font-weight: bold;
  padding-left: 15px;
  margin: 10px 0px;
  box-sizing: border-box;
}

.pro_nav a:hover,.pro_nav a.on{
  background: #0b70e1;
  color: #fff;
}

.pro_list{
  width:calc(100% - 255px);
}

.pro_list ul{
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0px -15px;
}

.pro_list ul li{
  width: calc(33.3% - 32px);
  margin: 0px 15px;
  margin-bottom: 35px;
  border: 1px solid #e1e1e1;
}

.pro_list ul li:hover{
box-shadow: 5px 7px 16px 0px 
		rgba(147, 148, 151, 0.23);
}

.pro_list ul li .img{
  width: 100%;
  height: auto;
}

.pro_list ul li .img img{
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.pro_list ul li .nr{
  border-top: 1px solid #e1e1e1;
  box-sizing: border-box;
  padding: 15px;
}

.pro_list ul li .nr h2{
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.pro_list ul li .nr p{
  text-align: center;
  line-height: 1.6;
  display: none;
  padding: 10px 0px;
}

.pro_list ul li:hover .nr p{
  display: block;
}

.pro_list ul li .nr span{
  display: block;
  text-align: center;
}

.pro_list ul li .nr span a{
  display: inline-block;
  width: 170px;
	height: 40px;
  line-height: 40px;
	border-radius: 4px;
  font-size: 14px;
  color: #0b70e1;
}

.pro_list ul li:hover .nr span a{
	background-color: #0b70e1;
  color: #fff;
}

.pro_box{
  padding: 50px 0px;
  
}

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

.pro_box_l{
  width: 545px;
}

.pro_bt h2{
  font-size: 34px;
}

.pro_box_l .nr{
  padding-top: 20px;
}

.pro_box_l .nr h2{
  font-size: 32px;
  font-weight: bold;
  color: #333;
}

.pro_box_l .nr p{
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  display: block;
  padding: 25px 0px;
}

.pro_box_l .nr h3{
  display: flex;
  flex-wrap: wrap;
}

.pro_box_l .nr h3 span{
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 2px 5px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.pro_box_l .nr h4{
  padding-top: 30px;
}

.pro_box_l .nr h4 a{
  width: 160px;
	height: 40px;
  line-height: 40px;
	border-radius: 4px;
	border: solid 1px #2e5cd2;
  color: #0b70e1;
  display: inline-block;
  font-size: 14px;
  text-align: center;
}

.pro_box_l .nr h4 a:hover{
  background: #0b70e1;
  color: #fff;
}

.pro_box_r{
  width: 575px;
  border: 1px solid #e1e1e1;
}


.mySwiper2 .swiper-slide{
  width: 100%;
  height: 385px;
}

.mySwiper2 .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mySwiper{
  padding: 20px 30px;
  position: relative;
}

.mySwiper .swiper-slide{
  width: 50px;
  height: 50px;
}

.mySwiper .swiper-slide img{
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  object-fit: cover;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.mySwiper .swiper-slide.swiper-slide-thumb-active img{
  border: 1px solid #0b70e1;
}

.mySwiper .swiper-button-next,.mySwiper .swiper-button-prev{
  color: #333;
  left: 0px;
}

.mySwiper .swiper-button-next{
  left: auto;
  right: 0px;
}

.mySwiper .swiper-button-next::after,.mySwiper .swiper-button-prev::after{
  font-size: 20px;
}

.pro_box1{
  background: #f8f8f8;
  padding: 50px 0px;
}

.pro_box1 ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0px -7px;
}

.pro_box1 ul li{
  width: calc(33.3% - 14px);
  margin: 0px 7px;
  margin-bottom: 20px;
}

.pro_box1 ul li .img{
  width: 100%;
  height:260px;
  object-fit: cover;
  border-radius: 5px;
  overflow: hidden;
}

.pro_box1 ul li .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease 0s;
}

.pro_box1 ul li:hover .img img{
    transform: scale(1.1);
    transition: all 0.3s ease 0s;
}

.pro_box1 ul li h2{
  text-align: center;
  padding: 10px 0px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
}

.pro_box2{
  padding: 50px 0px;
}

.pro_box2 .nr h2{
  font-size: 24px;
  font-weight: bold;
  color: #333;
  padding-bottom: 20px;
}

.pro_box2 .nr img{
  max-width: 100%;
  width: auto;
  height: auto;
}

.pro_box2 p{
  font-size: 16px;
  line-height: 1.6;
  display: block;
  padding-bottom: 20px;
}

.pro_box3{
  background: #f8f8f8;
  padding: 50px 0px;
}

.pro_box3 ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0px -7px;
}

.pro_box3 ul li{
  width: calc(33.3% - 14px);
  margin: 0px 7px;
  margin-bottom: 14px;
  position: relative;
}

.pro_box3 ul li img{
  width: 100%;
  height:210px;
  object-fit: cover;
  border-radius: 5px;
}

.pro_box3 ul li h2{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}

.pro_box4{
  padding: 50px 0px;
}

.pro_box4 ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0px -10px;
}

.pro_box4 ul li{
  width: calc(33.3% - 20px);
  margin: 0px 10px;
  margin-bottom: 15px;
  position: relative;
}

.pro_box4 ul li a{
  display: block;
  	border-radius: 4px;
    overflow: hidden;
    box-shadow: 5px 7px 35px 0px 
		rgba(158, 158, 158, 0.2);
}


.pro_box4 ul li a .img img{
  width: 100%;
  height: 290px;
  border-radius: 5px 5px 0px 0px;
}

.pro_box4 ul li a .nr{
  background: #fff;
  box-sizing: border-box;
  padding: 15px;
}

.pro_box4 ul li a .nr h2{
  font-size: 16px;
  color: #333;
  font-weight: bold;
}

.pro_box4 ul li a .nr p{
  padding-top: 10px;
  color: #666;
}

.pro_box5{
  padding: 50px 0px;
  background: #f8f8f8;
}

.pro_box5 .nr ul{
  display: flex;
  margin: 0px -10px;
}

.pro_box5 .nr ul li{
  width: calc(33.3% - 20px);
  margin: 0px 10px;
}

.pro_box5 .nr ul li .text{
  width: 100%;
  height: 50px;
  background: #e9e9e9;
  border-radius: 5px;
  border: 0px;
  margin-bottom: 10px;
  box-sizing: border-box;
  padding: 0px 10px;
  font-size: 16px;
}

.pro_box5 .nr ul li .text1{
  width: 100%;
  height: 110px;
  background: #e9e9e9;
  border-radius: 5px;
  border: 0px;
  margin-bottom: 10px;
  box-sizing: border-box;
  padding:10px;
  font-size: 16px;
}

.pro_box5 .nr .btn button{
  background: #0b70e1;
  width: 150px;
  height: 50px;
  color: #fff;
  border-radius: 5px;
  border: 0px;
  cursor: pointer;
  font-size: 16px;
}

.case_list{
  padding: 50px 0px;
}

.case_sx ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0px -10px;
}

.case_sx ul li{
  width: calc(33.3% - 20px);
  margin: 0px 10px;
  position: relative;
}

.case_sx ul li .text{
  width: 100%;
  height: 45px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 0px 10px;
  font-size: 14px;
}

.case_sx ul li button{
  position: absolute;
  right: 0px;
  width: 45px;
  height: 45px;
  top: 1px;
  border: 0px;
  background: none;
  font-size: 18px;
  color: #666;
  cursor: pointer;
}

.case_sx ul li .xiala{
  width: 100%;
  height: 45px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.case_l{
  padding-top: 50px;
}

.case_l ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0px -10px;
}

.case_l ul li{
  width: calc(33.3% - 20px);
  margin: 0px 10px;
  margin-bottom: 25px;
  position: relative;
}

.case_l ul li a{
  display: block;
  	border-radius: 4px;
    overflow: hidden;
    box-shadow: 5px 7px 35px 0px 
		rgba(158, 158, 158, 0.2);
}


.case_l ul li a .img img{
  width: 100%;
  height: 290px;
  border-radius: 5px 5px 0px 0px;
}

.case_l ul li a .nr{
  background: #fff;
  box-sizing: border-box;
  padding: 15px;
}

.case_l ul li a .nr h2{
  font-size: 16px;
  color: #333;
  font-weight: bold;
}

.case_l ul li a .nr p{
  padding-top: 10px;
  color: #666;
}

.case_detail{
  padding: 50px 0px;
}

.case_detail .bt{
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  padding-bottom: 20px;
}

.case_detail .nr{
  padding-bottom: 20px;
}

.case_detail .nr .xbt{
  display: flex;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.case_detail .nr .xbt b{
width: 5px;
	height: 25px;
	background-color: #0b70e1;
  margin-right: 10px;
}

.case_detail .nr p{
  font-size: 14px;
  line-height: 1.6;
  display: block;
  padding-bottom: 20px;
}

.case_detail .nr img{
  max-width: 100%;
  width: auto;
  height: auto;
}

.guide_box{
  background: #fff;
}

.guide_box .container{
  height: 100px;
  display: flex;
}

.guide_box .container a{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide_box .container a.on{
  border-bottom: 2px solid #0b70e1;
}

.guide_box .container a i{
  margin-right: 10px;
}

.guide_box .container a i img{
  width: 45px;
  height: auto;
}

.guide_box .container a h2{
  font-size: 18px;
  color: #333;
  font-weight: bold;
}

.guide_box .container a h2 p{
font-size: 12px;
font-weight: normal;
}

.guide_box1{
  background-image: linear-gradient(0deg, 
		#f7f7ff 0%, 
		#e4e8fa 74%, 
		#d1d9f5 100%);
    padding: 50px 0px;
}

.guide_box1 .container{
  display: flex;
  border-radius: 5px;
  overflow: hidden;
}

.guide_box1_l{
  background-image: linear-gradient(0deg, 
		#6fb5fa 0%, 
		#468cf8 100%);
    width: 512px;
    box-sizing: border-box;
    padding: 5%;
    color: #fff;
}

.guide_box1_l h2{
  font-size: 36px;
  font-weight: bold;
}

.guide_box1_l p{
  font-size: 16px;
  line-height: 1.6;
  padding: 30px 0px;
}

.guide_box1_l span a{
  width: 160px;
	height: 40px;
  line-height: 40px;
  text-align: center;
	border-radius: 4px;
	border: solid 1px #ffffff;
  font-size: 14px;
  display: inline-block;
  color: #fff;
}

.guide_box1_l span a:hover{
  background: #fff;
  color: #333;
}

.guide_box1_r{
  width: calc(100% - 512px);
  height: 400px;
}

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

.guide_box2{
  padding: 50px 0px;
}

.guide_box2 ul{
  display: flex;
  margin: 0px -8px;
}

.guide_box2 ul li{
  width: calc(33.3% - 16px);
  margin: 0px 8px;
  border: solid 1px #d8d9df;
  height: 220px;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 4%;
}

.guide_box2 ul li i img{
  width: 40px;
  height: auto;
}

.guide_box2 ul li h2{
  font-size: 18px;
  color: #333;
  font-weight: bold;
  padding: 10px 0px;
}

.guide_box2 ul li p{
  font-size: 14px;
  line-height: 1.6;
}

.guide_box3{
  padding: 50px 0px;
}

.guide_box3 .nr h2{
  text-align: center;
}

.guide_box3 .nr h2 img{
  max-width: 100%;
  width: auto;
  height: auto;
}

.guide_box3 .nr h2.pc{
  display: block;
}

.guide_box3 .nr h2.phone{
  display: none;
}


.hr{
  padding: 50px 0px;
}


.jobli {
	background: #fff;
	padding-bottom: 25px;
}

.jobli .title {
	display: flex;
	justify-content: space-between;
	border-radius: 8px 8px 0px 0px;
  border-bottom: 1px solid #ddd;
}

.jobli .title span {
	display: block;
	width: 16.667%;
  line-height: 55px;
	color: #666;
	font-size: 16px;
	font-weight: bold;
	text-align: center;

}

.jobli li {
	width: 100%;
	position: relative;
	box-sizing: border-box;
}

.jobli li .link {
	height: auto;
	cursor: pointer;
	background: #fff;
	display: flex;
	font-size: 30px;
}

.jobli li .link .nr {
	width: 100%;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #ddd;
}

.jobli li .link .nr span {
	font-size: 12px;
	display: block;
	text-align: center;
	width: 16.667%;
	line-height: 50px;
	white-space: nowrap;
}

.jobli li.open .link{
  background: #f5f5f5;
}

.jobli li.open .link .tbanchor {

	transform: rotate(180deg);

}

.jobli li .link span.tbanchor {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 10px;
	top: 10px;
	color: #ccc;
}


.jobli li .jobnr {
	background: #fff;
	padding: 20px 0px;
	font-size: 14px;
}

.jobli li .jobnr .yq {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 10px;
}

.jobli li .jobnr .yq li {
	width: 16.667%;
	padding: 0px;
	font-size: 14px;
  text-align: center;
}

.jobli li .jobnr .yq li b{
  color: #333;
}

.jobli li .jobnr .zc {
	display: flex;
  flex-direction: column;
	padding: 20px 30px;
}

.jobli li .jobnr .zc dd {
	width: 100%;
}

.jobli li .jobnr .zc dd h2 {
	font-size: 15px;
	color: #333;
  font-weight: bold;
	padding-bottom: 8px;
}

.jobli li .jobnr .zc dd p {
	font-size: 14px;
	line-height:1.6;
}

.jobli li .jobnr .js {
	font-size: 16px;
  font-weight: bold;
  color: #333;
  padding-left: 30px;
}

.jobli li .jobnr .js font{
  color: #0b70e1;
}

.contact_box{
  padding: 50px 0px;
}

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

.contact_box_nr .left{
  width: 460px;
}

.contact_box_nr .left h2{
  font-size: 20px;
  color: #333;
  padding-bottom: 10px;
}

.contact_box_nr .left p{
  font-size: 14px;
  padding: 3px 0px;
}

.contact_box_nr .left p i{
  color: #0b70e1;
  margin-right: 10px;
}

.contact_box_nr .left b{
  width: 100%;
  height: 1px;
  background: #ddd;
  display: block;
  margin: 15px 0px;
}

.contact_box_nr .left h3{
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

.contact_box_nr .left h3 span{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 88px;
}

.contact_box_nr .left h3 em{
  width: 260px;
	height: 88px;
	background-color: #0b70e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.contact_box_nr .left h3 em i{
  font-size: 30px;
  margin-right: 20px;
}

.contact_box_nr .left h3 em font{
  font-size: 18px;
}

.contact_box_nr .left h3 span img{
  width: 100%;
  height: auto;
  margin-bottom: 6px;
}

.contact_box_nr .right{
  width: 600px;
  height: 400px;
}
