header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background-color: #ffffff;
  line-height: 110px;
  height: 110px;
}
header > div {
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo {
  width: 40%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo .logo_img {
  margin-right: 20px;
}
header > div .logo .logo_img a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav {
  width: 56%;
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul {
  width: 90%;
  width: calc(100% - 240px);
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul li {
  line-height: inherit;
  width: 15%;
  z-index: 999;
  transition: all 1s;
}
header > div nav ul li:hover {
  background-color: #f7f7f7;
}
header > div nav ul li:hover .sub2 {
  height: 300px;
  opacity: 1;
}
header > div nav ul li a {
  display: block;
  font-size: 16px;
  color: #333;
  line-height: inherit;
  font-weight: 400;
  text-align: center;
}
header > div nav ul li .sub2 {
  position: absolute;
  left: 0;
  top: 100px;
  width: 100%;
  height: 0;
  overflow: hidden;
  background-color: #f7f7f7;
  transition: all 0.5s ease;
}
header > div nav ul li .sub2 .sub2_sub1 {
  border-top: 1px solid #ced5da;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul li .sub2 .sub2_sub1 .left {
  width: 70%;
  height: 100%;
  box-sizing: border-box;
  padding-left: 110px;
  padding-right: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul li .sub2 .sub2_sub1 .left .items {
  width: calc(100% - 340px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul li .sub2 .sub2_sub1 .left .items > div {
  width: 32%;
  height: 80px;
  line-height: 80px;
}
header > div nav ul li .sub2 .sub2_sub1 .left .items > div a {
  display: block;
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: bold;
  text-align: left;
}
header > div nav ul li .sub2 .sub2_sub1 .left .items > div a::before {
  display: block;
  content: "";
  width: 30px;
  height: 1px;
  background-color: #f07517;
  margin-bottom: 14px;
  margin-top: 20px;
}
header > div nav ul li .sub2 .sub2_sub1 .left .items.ip > div {
  width: 32%;
}
header > div nav ul li .sub2 .sub2_sub1 .left .img {
  width: 340px;
}
header > div nav ul li .sub2 .sub2_sub1 .left .img img {
  width: 100%;
}
header > div nav ul li .sub2 .sub2_sub1 .right {
  width: 30%;
  height: 100%;
  background: url(/images/nav_bg2.jpg) no-repeat;
  background-size: cover;
  box-sizing: border-box;
  padding: 0 110px 0 60px;
}
header > div nav ul li .sub2 .sub2_sub1 .right h3 {
  margin-top: 50px;
  margin-bottom: 16px;
  font-size: 34px;
  color: #333;
  line-height: 1;
  text-align: left;
  font-family: "Impact";
}
header > div nav ul li .sub2 .sub2_sub1 .right p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  font-weight: normal;
  text-align: left;
}
header > div nav .tool {
  width: 170px;
  border-left: 1px solid #dfdfdf;
  padding-left: 20px;
}
header > div nav .tool > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav .tool > div i {
  color: #999;
  width: 30px;
  height: 24px;
  border-radius: 30px;
  line-height: 24px;
  text-align: center;
  font-size: 30px;
}
header > div nav .tool > div h3 {
  margin-left: 10px;
  font-size: 18px;
  color: #093f8c;
  line-height: 14px;
  font-weight: 700;
  text-align: center;
}
header > div nav .tool > p {
  font-size: 18px;
  color: #fff;
  line-height: 30px;
  font-weight: 700;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  header {
    height: 90px;
    line-height: 90px;
  }
  header > div .logo {
    width: 30%;
  }
  header > div .logo img {
    width: 100%;
  }
  header > div nav {
    width: 62%;
  }
  header > div nav .tool > div i {
    font-size: 22px;
  }
  header > div nav .tool {
    padding-left: 6px;
    width: 160px;
  }
  header > div nav .tool > div h3 {
    margin-left: 6px;
    font-size: 16px;
  }
  header > div nav ul {
    width: calc(100% - 190px);
  }
  header > div nav ul li a {
    font-size: 15px;
  }
}
footer .top {
  background-image: url(/images/footer_bg.jpg);
  background-position: left top;
  background-size: cover;
  padding-bottom: 64px;
}
footer .top .w80 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .left {
  width: 60%;
}
footer .top .w80 .left .f_list {
  margin-top: 64px;
  margin-bottom: 40px;
}
footer .top .w80 .left .f_list ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .left .f_list ul li.line {
  color: #fff;
  opacity: 0.4;
}
footer .top .w80 .left .f_list ul li a {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  opacity: 0.6;
}
footer .top .w80 .left .f_contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .left .f_contact .f_c_sub1 {
  width: 60%;
}
footer .top .w80 .left .f_contact .f_c_sub1 h4 {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 8px;
  opacity: 0.6;
}
footer .top .w80 .left .f_contact .f_c_sub1 h2 {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  margin-bottom: 26px;
  opacity: 0.6;
}
footer .top .w80 .left .f_contact .f_c_sub1 p {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 14px;
  opacity: 0.6;
}
footer .top .w80 .left .f_contact .f_c_sub2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .left .f_contact .f_c_sub2 .erweima {
  margin-left: 24px;
}
footer .top .w80 .left .f_contact .f_c_sub2 .erweima img {
  margin-bottom: 8px;
}
footer .top .w80 .left .f_contact .f_c_sub2 .erweima p {
  font-size: 14px;
  color: #b4b4b4;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
footer .top .w80 .right {
  width: 26%;
}
footer .top .w80 .right .img img {
  width: initial;
}
footer .top .w80 .right .text {
  margin-top: 16px;
}
footer .top .w80 .right .text h3 {
  margin-top: 20px;
  font-size: 26px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
footer .top .w80 .right .text h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #666666;
  margin-top: 18px;
  margin-bottom: 30px;
}
footer .top .w80 .right .text p {
  font-size: 16px;
  color: #a7a7a7;
  line-height: 1.6;
  font-weight: 100;
  text-align: left;
}
footer .bottom {
  width: 100%;
  height: 50px;
  background-color: #093f8c;
}
footer .bottom .w80 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .bottom .w80 .left a {
  font-size: 14px;
  color: #fff;
  line-height: 50px;
  font-weight: 400;
  text-align: left;
  margin-right: 20px;
}
footer .bottom .w80 .right a {
  font-size: 14px;
  color: #fff;
  line-height: 50px;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  footer .top .w80 .left .f_contact .f_c_sub1 {
    width: 60%;
  }
  footer .top .w80 .left .f_list ul li a {
    font-size: 14px;
  }
  footer .top .w80 .left .f_contact .f_c_sub1 h2 {
    font-size: 26px;
  }
  footer .top .w80 .left .f_contact .f_c_sub1 h4 {
    font-size: 14px;
  }
  footer .top .w80 .left .f_contact .f_c_sub1 p {
    font-size: 14px;
  }
  footer .top .w80 .left .f_contact .f_c_sub2 .erweima img {
    width: 78px;
  }
  footer .top .w80 .right .text h3 {
    font-size: 22px;
    margin-top: 8px;
  }
  footer .top .w80 .right .text p {
    font-size: 14px;
  }
  footer .top {
    padding-bottom: 50px;
  }
  footer .top .w80 .right .img img {
    width: 100%;
  }
  footer .top .w80 .left .f_contact .f_c_sub2 .erweima {
    text-align: center;
  }
  footer .top .w80 .left .f_contact .f_c_sub2 .erweima p {
    font-size: 12px;
  }
  footer .bottom .w80 .right a {
    font-size: 13px;
  }
  footer .bottom .w80 .left a {
    font-size: 13px;
  }
}
.n_title {
  position: relative;
  padding-top: 60px;
  margin-bottom: 48px;
}
.n_title h3 {
  font-size: 38px;
  color: #093f8c;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.n_title p {
  margin: 0 auto;
  width: 80%;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}
.n_title::before {
  display: block;
  content: "workshop";
  font-size: 90px;
  color: #666666;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  font-family: "宋体";
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}
.n_title2 {
  position: relative;
  padding-top: 60px;
  margin-bottom: 48px;
}
.n_title2 h3 {
  font-size: 38px;
  color: #093f8c;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.n_title2 p {
  margin: 0 auto;
  width: 100%;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
  padding: 20px 30px;
  box-sizing: border-box;
}
.n_title2::before {
  display: block;
  content: "products";
  font-size: 90px;
  color: #666666;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  font-family: "宋体";
  text-transform: uppercase;
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  letter-spacing: 2px;
}
.n_title3 {
  position: relative;
  padding-top: 60px;
  margin-bottom: 48px;
}
.n_title3 h3 {
  font-size: 38px;
  color: #093f8c;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.n_title3 p {
  margin: 0 auto;
  width: 100%;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
  padding: 20px 30px;
  box-sizing: border-box;
}
.n_title3::before {
  display: block;
  content: "detailed";
  font-size: 90px;
  color: #666666;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  font-family: "宋体";
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}
.n_title4 {
  position: relative;
  padding-top: 60px;
  margin-bottom: 48px;
}
.n_title4 h3 {
  font-size: 38px;
  color: #093f8c;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.n_title4 p {
  margin: 0 auto;
  width: 100%;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
  padding: 20px 30px;
  box-sizing: border-box;
}
.n_title4::before {
  display: block;
  content: "news";
  font-size: 90px;
  color: #666666;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  font-family: "宋体";
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}
.n_title5 {
  position: relative;
  padding-top: 60px;
  margin-bottom: 48px;
}
.n_title5 h3 {
  font-size: 38px;
  color: #093f8c;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.n_title5 p {
  margin: 0 auto;
  width: 100%;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
  padding: 20px 30px;
  box-sizing: border-box;
}
.n_title5::before {
  display: block;
  content: "contact";
  font-size: 90px;
  color: #666666;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  font-family: "宋体";
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}
.title {
  position: relative;
}
.title.w h3 {
  opacity: 0.3;
}
.title.w h2 {
  color: #fff;
}
.title.w h2 span {
  color: #fff;
}
.title.w h2::after {
  background-color: #fff;
}
.title h3 {
  font-size: 72px;
  color: #eeeeee;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  font-family: "宋体";
  letter-spacing: 4px;
  text-transform: uppercase;
}
.title h2 {
  margin-top: -30px;
  font-size: 36px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  letter-spacing: 6px;
}
.title h2 span {
  color: #093f8c;
}
.title h2::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background-color: #093f8c;
  margin-top: 16px;
}
.more {
  background-color: #093f8c;
  width: 210px;
  height: 46px;
  border-radius: 0 23px 23px 0;
  box-sizing: border-box;
  padding: 0 40px;
  transition: all 0.5s ease;
}
.more:hover {
  padding: 0 30px;
}
.more.w {
  background-color: #fff;
}
.more.w a span {
  color: #093f8c;
}
.more.w a i {
  width: 42px;
  height: 14px;
  background-image: url(/images/jiantou_02.png);
  background-position: center top;
  background-repeat: no-repeat;
}
.more a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.more a span {
  font-size: 16px;
  color: #fff;
  line-height: 46px;
  font-weight: 700;
  text-align: left;
}
.more a i {
  width: 42px;
  height: 14px;
  background-image: url(/images/jiantou_01.png);
  background-position: center top;
  background-repeat: no-repeat;
}
.index .part01 {
  padding-top: 140px;
  padding-bottom: 120px;
  background-image: url(/images/index_pt01_bg.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
}
.index .part01 .w80 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .w80 .left {
  width: 48%;
}
.index .part01 .w80 .left .pt01_txt1 {
  margin-top: 30px;
}
.index .part01 .w80 .left .pt01_txt1 h3 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 40px;
}
.index .part01 .w80 .left .pt01_txt1 p {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.index .part01 .w80 .left .pt01_txt2 {
  width: 80%;
  margin-top: 40px;
  margin-bottom: 50px;
}
.index .part01 .w80 .left .pt01_txt2 ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .w80 .left .pt01_txt2 ul li .pt01_txt2_item .top {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}
.index .part01 .w80 .left .pt01_txt2 ul li .pt01_txt2_item .top h4 {
  font-size: 36px;
  color: #093f8c;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .part01 .w80 .left .pt01_txt2 ul li .pt01_txt2_item .top span {
  margin-left: 8px;
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .part01 .w80 .left .pt01_txt2 ul li .pt01_txt2_item .bottom {
  margin-top: 8px;
}
.index .part01 .w80 .left .pt01_txt2 ul li .pt01_txt2_item .bottom p {
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.index .part01 .w80 .right {
  width: 46%;
  overflow: hidden;
  cursor: pointer;
}
.index .part01 .w80 .right:hover .img img {
  transform: scale(1.1);
}
.index .part01 .w80 .right .img img {
  width: 100%;
  transition: all 0.5s ease;
}
.index .part02 {
  background-image: url(/images/index_pt02_bg.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 96px;
}
.index .part02 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 .w80 .top .right {
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 .w80 .top .right .text {
  width: 60%;
  width: calc(100% - 240px);
}
.index .part02 .w80 .top .right .text p {
  font-size: 15px;
  color: #fff;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.index .part02 .w80 .bottom {
  margin-top: 50px;
}
.index .part02 .w80 .bottom ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 .w80 .bottom ul li {
  width: 32.6%;
  margin-bottom: 30px;
  overflow: hidden;
}
.index .part02 .w80 .bottom ul li:hover a .img img {
  transform: scale(1.1);
}
.index .part02 .w80 .bottom ul li a .img img {
  transition: all 0.5s ease;
  width: 100%;
}
.index .part02 .w80 .bottom ul li a .text {
  background-color: #000;
  height: 68px;
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 .w80 .bottom ul li a .text h3 {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .part03 {
  margin-top: 100px;
  margin-bottom: 100px;
}
.index .part03 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid #dfdfdf;
}
.index .part03 .w80 .bottom {
  margin-top: 60px;
}
.index .part03 .w80 .bottom .bottom_sub1 {
  padding: 20px 0;
  border-bottom: 1px solid #dfdfdf;
  height: 300px;
  box-sizing: border-box;
  transition: all 0.5s ease;
}
.index .part03 .w80 .bottom .bottom_sub1:hover {
  padding: 20px 30px;
  background-color: #f7f7f7;
}
.index .part03 .w80 .bottom .bottom_sub1 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .w80 .bottom .bottom_sub1 a .b_s_left {
  width: 64%;
}
.index .part03 .w80 .bottom .bottom_sub1 a .b_s_left span {
  font-size: 18px;
  color: #999;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .part03 .w80 .bottom .bottom_sub1 a .b_s_left h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .part03 .w80 .bottom .bottom_sub1 a .b_s_left p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  font-weight: 100;
  text-align: left;
  margin-bottom: 40px;
}
.index .part03 .w80 .bottom .bottom_sub1 a .b_s_left img {
  width: initial;
}
.index .part03 .w80 .bottom .bottom_sub1 a .b_s_right {
  width: 26%;
}
.index .part03 .w80 .bottom .bottom_sub1 a .b_s_right .img {
  width: 100%;
}
.index .part03 .w80 .bottom .bottom_sub1 a .b_s_right .img img {
  width: 100%;
}
.index .part03 .w80 .bottom .bottom_sub2 ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .w80 .bottom .bottom_sub2 ul li {
  width: 50%;
  height: 100px;
  border-bottom: 1px solid #dfdfdf;
}
.index .part03 .w80 .bottom .bottom_sub2 ul li:hover {
  background-color: #f7f7f7;
}
.index .part03 .w80 .bottom .bottom_sub2 ul li:nth-of-type(2n) a span {
  border-right: none;
  padding-right: 0;
}
.index .part03 .w80 .bottom .bottom_sub2 ul li:nth-of-type(2n) a h3 {
  padding-left: 30px;
}
.index .part03 .w80 .bottom .bottom_sub2 ul li a {
  display: block;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .w80 .bottom .bottom_sub2 ul li a h3 {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .part03 .w80 .bottom .bottom_sub2 ul li a span {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  box-sizing: border-box;
  border-right: 1px solid #dfdfdf;
  padding-right: 30px;
}
.index .part04 {
  background-image: url(/images/index_pt03_bg.jpg);
}
.index .part04 .w80 {
  height: 440px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 .w80 div h3 {
  font-size: 36px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 10px;
}
.index .part04 .w80 div h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #0066f8;
  margin-top: 20px;
  margin-bottom: 30px;
}
.index .part04 .w80 div p {
  width: 80%;
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .index .part01 {
    padding: 100px 0 90px 0;
  }
  .title h3 {
    font-size: 54px;
  }
  .title h2 {
    font-size: 32px;
    letter-spacing: 2px;
    margin-top: -24px;
  }
  .index .part01 .w80 .left .pt01_txt1 h3 {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .index .part01 .w80 .left .pt01_txt1 {
    margin-top: 20px;
  }
  .index .part01 .w80 .left .pt01_txt1 p {
    font-size: 14px;
    line-height: 1.4;
  }
  .index .part01 .w80 .left .pt01_txt2 {
    margin-top: 24px;
    margin-bottom: 30px;
  }
  .index .part01 .w80 .left .pt01_txt2 ul li .pt01_txt2_item .top h4 {
    font-size: 30px;
  }
  .index .part01 .w80 .left .pt01_txt2 ul li .pt01_txt2_item .top span {
    margin-left: 4px;
    font-size: 14px;
  }
  .more {
    width: 180px;
    height: 40px;
  }
  .more a span {
    font-size: 13px;
    line-height: 40px;
    font-weight: normal;
  }
  .index .part02 .w80 .top .right {
    width: 62%;
  }
  .index .part02 .w80 .top .right .text p {
    font-size: 14px;
    line-height: 1.5;
  }
  .index .part02 .w80 .bottom ul li {
    margin-bottom: 20px;
  }
  .index .part02 .w80 .bottom {
    margin-top: 32px;
  }
  .index .part02 .w80 .bottom ul li a .text {
    height: 52px;
  }
  .index .part02 .w80 .bottom ul li a .text h3 {
    font-size: 16px;
  }
  .index .part02 .w80 .bottom ul li a .text img {
    width: 34px;
  }
  .index .part03 {
    margin: 60px auto;
  }
  .index .part03 .w80 .bottom .bottom_sub1 a .b_s_left h3 {
    margin-top: 20px;
    margin-bottom: 14px;
    font-size: 16px;
  }
  .index .part03 .w80 .bottom .bottom_sub1 a .b_s_left p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .index .part03 .w80 .bottom .bottom_sub1 {
    height: 230px;
  }
  .index .part03 .w80 .bottom {
    margin-top: 20px;
  }
  .index .part03 .w80 .bottom .bottom_sub2 ul li a h3 {
    font-size: 16px;
  }
  .index .part03 .w80 .bottom .bottom_sub2 ul li {
    height: 80px;
  }
  .index .part03 .w80 .bottom .bottom_sub2 ul li a {
    height: 80px;
  }
  .index .part03 .w80 .bottom .bottom_sub2 ul li a span {
    font-size: 15px;
  }
  .index .part04 .w80 div h3 {
    font-size: 32px;
  }
  .index .part04 .w80 div p {
    font-size: 15px;
  }
  .index .part04 .w80 {
    height: 360px;
  }
}
.about {
  width: 100%;
}
.about .main {
  width: 100%;
}
.about .main .part03 {
  background-color: #f4f5f9;
  position: relative;
  min-height: 800px;
  overflow: hidden;
}
.about .main .part03 > div {
  position: relative;
  z-index: 2;
  top: 155px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .part03 > div .part01_text {
  width: 50%;
}
.about .main .part03 > div .part01_text .about_text_t {
  margin-bottom: 40px;
}
.about .main .part03 > div .part01_text .about_text_t::after {
  margin-top: 20px;
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #093f8c;
}
.about .main .part03 > div .part01_text .about_text_t h3 {
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
.about .main .part03 > div .part01_text .about_text_t h2 {
  font-size: 32px;
  color: #000;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 14px;
}
.about .main .part03 > div .part01_text .about_text_t h2 span {
  color: #093f8c;
}
.about .main .part03 > div .part01_text p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  text-indent: 2rem;
  margin-bottom: 20px;
}
.about .main .part03 > div .part01_text p span {
  font-size: 20px;
  font-weight: bold;
  color: #093f8c;
}
.about .main .part03 > div .part01_img {
  width: 46%;
  cursor: pointer;
}
.about .main .part03 > div .part01_img:hover .img img {
  transform: scale(1.1);
}
.about .main .part03 > div .part01_img .img {
  width: 100%;
  overflow: hidden;
}
.about .main .part03 > div .part01_img .img img {
  width: 100%;
  transition: all 0.5s;
}
.about .main .part03::after {
  display: block;
  content: "";
  position: absolute;
  top: 76px;
  left: 0;
  width: 70%;
  height: 640px;
  background-image: url(/images/bg2.jpg);
  background-repeat: no-repeat;
  background-position: left bottom;
  z-index: 0;
}
@media screen and (max-width: 1440px) {
  .about .main .part03 > div .part01_text .about_text_t h2 {
    font-size: 24px;
  }
  .about .main .part03 > div .part01_text .about_text_t h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .about .main .part03 > div .part01_text p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  .about .main .part03 > div .part01_text .about_text_t {
    margin-bottom: 20px;
  }
  .about .main .part03::after {
    height: 480px;
  }
  .about .main .part03 > div {
    top: 126px;
  }
  .about .main .part03 {
    min-height: 640px;
  }
}
.product .main {
  padding-top: 100px;
  overflow: hidden;
}
.product .main .n_list ul {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.product .main .n_list ul li {
  width: 24%;
  margin-right: 1%;
  margin-bottom: 26px;
  transition: all 0.5s ease;
}
.product .main .n_list ul li a .img {
  width: 100%;
  border: 1px solid #efefef;
  box-sizing: border-box;
}
.product .main .n_list ul li a .img img {
  width: 100%;
}
.product .main .n_list ul li a .txt {
  background-color: #093f8c;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  transition: all 0.5s ease;
}
.product .main .n_list ul li a .txt .left {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: #fff;
}
.product .main .n_list ul li a .txt .left p {
  font-size: 16px;
  line-height: 1;
  color: #fff;
}
.product .main .n_list ul li a .txt .right {
  display: flex;
  align-items: center;
}
.product .main .n_list ul li a .txt .right p {
  font-size: 14px;
  line-height: 1;
  color: #fff;
}
.product .main .n_list ul li a .txt .right p i {
  font-size: 24px;
  margin-left: 10px;
}
.product .main .n_list ul li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1440px) {
  .product .main {
    padding-top: 60px;
  }
  .n_title2 p {
    font-size: 15px;
  }
  .n_title2 {
    margin-bottom: 18px;
  }
  .product .main .n_list ul li a .txt {
    padding: 8px;
  }
  .product .main .n_list ul li a .txt .left {
    font-size: 15px;
  }
  .product .main .n_list ul li a .txt .right p i {
    font-size: 20px;
  }
}
.proDetailed .main {
  overflow: hidden;
  padding-bottom: 100px;
  padding-top: 100px;
  background-color: #f7f7f7;
}
.proDetailed .main > div .title {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.proDetailed .main > div .title h3 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: bold;
  text-align: left;
}
.proDetailed .main > div .title p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  font-weight: normal;
  text-align: left;
}
.proDetailed .main > div .title p span {
  font-weight: bold;
  display: block;
}
.proDetailed .main > div .pro_box {
  padding: 50px;
  box-sizing: border-box;
  background-color: #fff;
}
.proDetailed .main > div .pro_box::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
.proDetailed .main > div .pro_box::before {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
.proDetailed .main > div .pro_box .m_proDetailed_left {
  float: left;
  width: 50%;
}
.proDetailed .main > div .pro_box .m_proDetailed_left .m_proDetailedimg img {
  width: 100%;
}
.proDetailed .main > div .pro_box .m_proDetailed_right {
  float: right;
  width: 45%;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedTitle {
  overflow: hidden;
  border-bottom: 1px solid #dcdcdc;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedTitle h3 {
  display: block;
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 20px;
  line-height: 28px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedTitle p {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  margin-bottom: 20px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent {
  margin-bottom: 20px;
  padding-top: 30px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li {
  list-style: none;
  margin-bottom: 20px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li:nth-of-type(3) {
  margin-bottom: 60px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li p {
  display: inline-block;
  font-size: 16px;
  color: #333;
  text-transform: uppercase;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li p span {
  display: inline-block;
  font-size: 16px;
  padding-left: 5px;
  color: #999;
  text-transform: uppercase;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li > div {
  background-color: #093f8c;
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  padding: 20px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li > div i {
  font-size: 24px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan {
  margin-top: 40px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .fenxiang .fenxiang_title {
  margin-top: 0;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .fenxiang .fenxiang_title h3 {
  font-size: 15px;
  font-weight: bold;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .fenxiang .fenxiang_txt {
  margin-top: 12px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .fenxiang .fenxiang_txt a {
  display: inline-block;
  margin-right: 20px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .pre {
  margin-top: 20px;
  padding: 10px;
  width: 100%;
  background-color: #f6f6f6;
  box-sizing: border-box;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .pre a {
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .next {
  margin-top: 12px;
  padding: 10px;
  width: 100%;
  background-color: #f6f6f6;
  box-sizing: border-box;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .next a {
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
.proDetailed .main > div .pro_box .pro_content {
  margin-top: 60px;
}
.proDetailed .main > div .pro_box .pro_content .proDetails_title {
  border-bottom: 1px solid #dfdfdf;
}
.proDetailed .main > div .pro_box .pro_content .proDetails_title h3 {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  background-color: #093f8c;
  padding: 15px 40px;
}
.proDetailed .main > div .pro_box .pro_content .pro_details {
  margin-top: 20px;
}
.proDetailed .main > div .pro_box .pro_content .pro_details h3 {
  font-size: 20px;
  color: #666666;
  line-height: 1.8;
  font-weight: 700;
  text-align: left;
  margin-bottom: 16px;
  padding-left: 50px;
  background-image: url(/images/proTitleIcon.jpg);
  background-position: left center;
  background-repeat: no-repeat;
}
.proDetailed .main > div .pro_box .pro_content .pro_details p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 10px;
}
.proDetailed .main > div .other {
  overflow: hidden;
}
.proDetailed .main > div .other .title {
  margin-bottom: 30px;
}
.proDetailed .main > div .other ul li .img img {
  width: 100%;
}
.proDetailed .main > div .other ul li .txt {
  width: 100%;
  padding: 14px;
  box-sizing: border-box;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.proDetailed .main > div .other ul li .txt p {
  font-size: 15px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
.proDetailed .main > div .other ul li .txt i {
  font-size: 15px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .proDetailed .main {
    padding-top: 60px;
  }
  .n_title3::before {
    font-size: 72px;
    top: 20px;
  }
  .n_title3 h3 {
    font-size: 32px;
    margin-bottom: -4px;
  }
  .n_title3 p {
    font-size: 14px;
  }
  .n_title3 {
    margin-bottom: 24px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedTitle h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li {
    margin-bottom: 10px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li p {
    font-size: 14px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent {
    padding-top: 20px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li p span {
    font-size: 14px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li > div {
    padding: 0 14px;
    font-size: 15px;
    line-height: 40px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li > div:nth-of-type(2) {
    display: none;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li > div i {
    font-size: 18px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li:nth-of-type(3) {
    margin-bottom: 24px;
  }
  .proDetailed .main > div .pro_box .pro_content {
    margin-top: 30px;
  }
  .proDetailed .main > div .pro_box .pro_content .proDetails_title h3 {
    padding: 12px 34px;
    font-size: 14px;
  }
  .proDetailed .main > div .title h3 {
    letter-spacing: 0;
  }
  .proDetailed .main > div .other ul li .txt p {
    font-size: 13px;
  }
  .proDetailed .main > div .title {
    margin-top: 60px;
    padding-bottom: 14px;
  }
}
.news .main {
  overflow: hidden;
  margin-top: 100px;
}
.news .main .news_list ul li {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
  padding: 30px;
  box-sizing: border-box;
  border-bottom: 1px solid #e3e3e3;
  transition: all 0.5s ease;
  background-color: #fbfbfb;
}
.news .main .news_list ul li.active {
  background-color: #194989;
  box-shadow: 1px 1px 16px #b9b9b9;
}
.news .main .news_list ul li.active a .news_sub2 .news_sub2_sub1 h3 {
  color: #fff;
}
.news .main .news_list ul li.active a .news_sub2 .news_sub2_sub1 p {
  color: #fff;
}
.news .main .news_list ul li.active a .news_sub2_sub2 .vNum {
  color: #fff;
}
.news .main .news_list ul li.active a .news_sub2_sub2 .date {
  color: #fff;
}
.news .main .news_list ul li a .news_sub1 {
  width: 300px;
  height: 200px;
  overflow: hidden;
  float: left;
}
.news .main .news_list ul li a .news_sub1 img {
  width: 100%;
}
.news .main .news_list ul li a .news_sub2 {
  float: right;
  width: calc(100% - 360px);
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
}
.news .main .news_list ul li a .news_sub2 .news_sub2_sub1 h3 {
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: bold;
  text-align: left;
  margin-bottom: 20px;
}
.news .main .news_list ul li a .news_sub2 .news_sub2_sub1 h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 21px;
  background-color: #194989;
}
.news .main .news_list ul li a .news_sub2 .news_sub2_sub1 p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  font-weight: normal;
  text-align: left;
  margin-bottom: 10px;
}
.news .main .news_list ul li a .news_sub2 .news_sub2_sub2 {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.news .main .news_list ul li a .news_sub2 .news_sub2_sub2 .vNum {
  font-size: 14px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.news .main .news_list ul li a .news_sub2 .news_sub2_sub2 .vNum i {
  font-size: 24px;
  padding-right: 6px;
}
.news .main .news_list ul li a .news_sub2 .news_sub2_sub2 .date {
  font-size: 14px;
}
@media screen and (max-width: 1440px) {
  .news .main {
    margin-top: 60px;
  }
  .n_title4 h3 {
    font-size: 32px;
  }
  .n_title4::before {
    font-size: 72px;
  }
  .n_title4::before {
    top: 20px;
  }
  .n_title4 {
    margin-bottom: 36px;
  }
  .news .main .news_list ul li a .news_sub2 .news_sub2_sub1 h3 {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .news .main .news_list ul li a .news_sub2 .news_sub2_sub1 p {
    font-size: 14px;
  }
  .news .main .news_list ul li a .news_sub1 {
    height: 160px;
  }
  .news .main .news_list ul li a .news_sub2 {
    width: calc(100% - 330px);
  }
  .news .main .news_list ul li {
    margin-bottom: 10px;
  }
}
.news_detailed .main .ct .detailed .sub1 h3 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: bold;
  text-align: center;
}
.news_detailed .main .ct .detailed .sub2 .share {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 40px;
}
.news_detailed .main .ct .detailed .sub2 .share p {
  font-size: 14px;
  margin: 0 10px;
}
.news_detailed .main .ct .detailed .sub2 .news_content p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: normal;
  text-align: left;
}
.news_detailed .main .ct .detailed .sub2 .np {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 75px;
}
.news_detailed .main .ct .detailed .sub2 .np div {
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6f6f6;
}
.news_detailed .main .ct .detailed .sub2 .np div i {
  font-size: 24px;
}
.news_detailed .main .ct .detailed .sub2 .np div a {
  font-size: 16px;
  color: #000;
  line-height: 60px;
  font-weight: normal;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .news_detailed .main .ct .detailed .sub1 h3 {
    font-size: 20px;
  }
  .news_detailed .main .ct .detailed .sub2 .news_content p {
    font-size: 15px;
  }
  .mt-100 {
    margin-top: 80px;
  }
}
@media screen and (max-width: 992px) {
  .w80 {
    width: 90%;
  }
  header {
    display: none;
  }
  .n_nav_list > div .list {
    display: none;
  }
  .n_nav_list > div {
    line-height: 56px;
  }
  .n_title2::before {
    font-size: 42px;
  }
  .n_title2 h3 {
    font-size: 22px;
  }
  .n_title2 {
    padding-top: 28px;
  }
  .n_title2 p {
    padding: 20px 0;
  }
  .product .main .n_list ul li {
    width: 100%;
  }
  .n_title3 {
    padding-top: 30px;
    margin-bottom: 10px;
  }
  .n_title3::before {
    font-size: 42px;
  }
  .n_title3 h3 {
    font-size: 22px;
  }
  .proDetailed .main > div .pro_box {
    padding: 16px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_left {
    width: 100%;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right {
    width: 100%;
    margin-top: 16px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedTitle h3 {
    font-size: 18px;
  }
  .n_title::before {
    font-size: 42px;
  }
  .n_title h3 {
    font-size: 22px;
  }
  .n_title {
    padding-top: 28px;
  }
  .tanchu .t_content {
    width: 90%;
  }
  .n_title4 {
    padding-top: 28px;
  }
  .n_title4::before {
    font-size: 42px;
  }
  .n_title4 h3 {
    font-size: 22px;
  }
  .news .main .news_list ul li a .news_sub1 {
    width: 100%;
  }
  .news .main .news_list ul li a .news_sub2 {
    width: 100%;
    margin-top: 20px;
  }
  .news .main .news_list ul li a .news_sub2 .news_sub2_sub1 h3::after {
    background-color: #cf241e;
  }
  .news .main .news_list ul li {
    padding: 14px;
  }
  .contact .main .n_list .bottom ul li {
    width: 100%;
    margin-bottom: 10px;
  }
}
.contact .main {
  background-color: #f7f7f7;
  padding-top: 100px;
}
.contact .main .n_list {
  margin-top: 60px;
  padding-bottom: 100px;
}
.contact .main .n_list .top {
  margin-bottom: 30px;
}
.contact .main .n_list .bottom {
  margin-bottom: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.contact .main .n_list .bottom ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .n_list .bottom ul li {
  background-color: #fff;
  width: 25%;
  padding: 40px;
  box-sizing: border-box;
  border-right: 1px solid #ededed;
}
.contact .main .n_list .bottom ul li:nth-of-type(4) {
  border: none;
}
.contact .main .n_list .bottom ul li:nth-of-type(4) .c_icon i {
  font-size: 42px;
  line-height: 30px;
}
.contact .main .n_list .bottom ul li .c_icon i {
  font-size: 36px;
  line-height: 1;
  color: #093f8c;
}
.contact .main .n_list .bottom ul li .c_text {
  margin-top: 24px;
}
.contact .main .n_list .bottom ul li .c_text h3 {
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 10px;
}
.contact .main .n_list .bottom ul li .c_text p {
  font-size: 15px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 10px;
}
@media screen and (max-width: 1440px) {
  .n_title2 h3 {
    font-size: 32px;
  }
  .n_title2::before {
    font-size: 72px;
    top: 18px;
  }
  .n_title2 h3 {
    margin-bottom: -4px;
  }
  .n_title5 h3 {
    font-size: 32px;
    margin-bottom: -4px;
  }
  .n_title5::before {
    font-size: 72px;
    top: 20px;
  }
  .contact .main {
    padding-top: 60px;
  }
  .contact .main .n_list .bottom ul li {
    padding: 24px 18px;
  }
  .contact .main .n_list .bottom ul li .c_text {
    margin-top: 16px;
  }
  .contact .main .n_list .bottom ul li .c_text h3 {
    font-size: 18px;
  }
  .contact .main .n_list {
    padding-bottom: 50px;
  }
  header > div nav ul li .sub2 {
    top: 90px;
  }
  header > div nav ul li .sub2 .sub2_sub1 .left .img {
    width: 240px;
  }
  header > div nav ul li .sub2 .sub2_sub1 {
    height: 240px;
  }
  header > div nav ul li:hover .sub2 {
    height: 240px;
  }
  header > div nav ul li .sub2 .sub2_sub1 .right h3 {
    font-size: 22px;
  }
  header > div nav ul li .sub2 .sub2_sub1 .right h3 {
    margin-top: 30px;
  }
  header > div nav ul li .sub2 .sub2_sub1 .right {
    padding: 0 110px 0 34px;
  }
  header > div nav ul li .sub2 .sub2_sub1 .right p {
    font-size: 13px;
  }
  header > div nav ul li .sub2 .sub2_sub1 .left {
    padding-right: 30px;
  }
  header > div nav ul li .sub2 .sub2_sub1 .left .items {
    width: calc(100% - 240px);
  }
  header > div nav ul li .sub2 .sub2_sub1 .left .items > div a {
    font-size: 15px;
  }
  header > div nav ul li .sub2 .sub2_sub1 .left .items > div {
    height: 60px;
    line-height: 60px;
  }
}
@media screen and (max-width: 992px) {
  .title h3 {
    font-size: 38px;
  }
  .index .part01 .w80 .left .pt01_txt2 {
    width: 100%;
  }
  .index .part02 .w80 .top .right {
    display: none;
  }
  .index .part02 .w80 .bottom ul li {
    width: 48%;
  }
  .index .part03 .w80 .top .right {
    display: none;
  }
  .index .part03 .w80 .bottom .bottom_sub2 ul li {
    width: 100%;
    border-right: none;
  }
  .index .part03 .w80 .bottom .bottom_sub1 a .b_s_left p {
    display: none;
  }
  .index .part03 .w80 .bottom .bottom_sub2 ul li:nth-of-type(2n) a h3 {
    padding-left: 0;
  }
  .index .part03 .w80 .bottom .bottom_sub2 ul li a span {
    padding-right: 0;
    border-right: none;
  }
  .index .part03 .w80 .bottom .bottom_sub2 ul li {
    height: 50px;
  }
  .index .part03 .w80 .bottom .bottom_sub2 ul li a {
    height: 50px;
  }
  .index .part03 .w80 .bottom .bottom_sub1 a .b_s_left img {
    display: none;
  }
  .index .part03 .w80 .bottom .bottom_sub1 a .b_s_left h3 {
    margin-top: 4px;
    margin-bottom: 0px;
    line-height: 1.2;
  }
  .index .part03 .w80 .bottom .bottom_sub1 a .b_s_left span {
    font-size: 14px;
  }
  .index .part03 .w80 .bottom .bottom_sub1 {
    height: 130px;
  }
  .index .part04 .w80 div h3 {
    font-size: 24px;
  }
  .index .part04 .w80 div h3::after {
    margin-top: 10px;
    margin-bottom: 14px;
  }
  .index .part04 .w80 div p {
    width: 100%;
  }
  footer .bottom .w80 .right {
    display: none;
  }
  footer .bottom .w80 .left a:nth-of-type(2) {
    display: none;
  }
  footer .top .w80 .right {
    display: none;
  }
  footer .top .w80 .left {
    width: 100%;
    padding-top: 40px;
  }
  footer .top .w80 .left .f_contact .f_c_sub1 {
    width: 100%;
  }
  footer .top .w80 .left .f_list {
    display: none;
  }
  footer .top .w80 .left .f_contact .f_c_sub1 h2 {
    font-size: 24px;
  }
  .n_title2 h3 {
    font-size: 20px;
  }
  .n_title2::before {
    font-size: 48px;
    top: 2px;
  }
  .n_nav_list > div .backhome {
    float: left;
  }
  .n_title3::before {
    top: 8px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li > div:nth-of-type(2) {
    display: block;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li > div:nth-of-type(1) {
    display: none;
  }
  .news .main .mt-100 {
    margin-top: 0;
  }
  .n_title4::before {
    top: 0px;
  }
  .news .main .news_list ul li a .news_sub2 .news_sub2_sub1 h3 {
    font-size: 16px;
  }
  .news .main .news_list ul li a .news_sub1 {
    height: 190px;
  }
  .n_banner .text > div .txt h1 {
    font-size: 20px;
  }
  .news_detailed .main .ct .detailed .sub1 h3 {
    font-size: 18px;
  }
  .contact .main .n_list .bottom ul li {
    width: 100%;
  }
  .n_title5::before {
    font-size: 48px;
  }
  .n_title5 h3 {
    font-size: 24px;
  }
  .n_title5 {
    padding-top: 50px;
  }
  .about .main .part03 > div .part01_text {
    width: 100%;
  }
  .about .main .part03 {
    min-height: 960px;
  }
  .about .main .part03::after {
    width: 100%;
  }
  .about .main .part03::after {
    height: 830px;
  }
  .about .main .part03 > div .part01_img {
    width: 100%;
  }
}
