header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  background: #ffffff;
  transition: all 0.5s ease;
}
header > div {
  box-sizing: border-box;
  padding-left: 10%;
  padding-right: 10%;
  width: 100%;
  height: 110px;
  transition: all 0.5s ease;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo > a img {
  width: 560px;
  transition: all 0.5s ease;
}
header > div .logo .gp {
  margin-left: 42px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo .gp > div {
  margin-right: 6px;
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
header > div nav {
  height: 100%;
}
header > div nav .nav_list {
  height: 100%;
  float: left;
}
header > div nav .nav_list > ul {
  text-align: center;
}
header > div nav .nav_list > ul > li {
  display: inline-block;
  margin: 0 0px;
  font-size: 16px;
}
header > div nav .nav_list > ul > li:hover a {
  font-weight: 700;
}
header > div nav .nav_list > ul > li:hover a::before {
  width: 100%;
  left: 0;
}
header > div nav .nav_list > ul > li:hover .sub2 {
  padding-bottom: 60px;
}
header > div nav .nav_list > ul > li#pm:hover .sub3 {
  padding-bottom: 200px;
}
header > div nav .nav_list > ul > li > a {
  display: block;
  padding: 0 18px;
  height: 110px;
  line-height: 110px;
  text-align: center;
  position: relative;
  color: #333;
}
header > div nav .nav_list > ul > li > a::before {
  content: "";
  display: block;
  width: 0%;
  transition: ease 0.5s;
  height: 6px;
  background: #e45d14;
  position: absolute;
  left: 50%;
  bottom: 0px;
}
header > div nav .nav_list > ul > li .sub2 {
  position: absolute;
  left: 0;
  top: 110px;
  width: 100%;
  height: 0;
  overflow: hidden;
  background-color: #edeff8;
  transition: all 0.5s ease;
}
header > div nav .nav_list > ul > li .sub2 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav .nav_list > ul > li .sub2 ul li {
  margin: 0 36px;
}
header > div nav .nav_list > ul > li .sub2 ul li a {
  font-size: 16px;
  color: #333;
  line-height: 60px;
  font-weight: 400;
  text-align: center;
}
header > div nav .nav_list > ul > li .sub2 ul li a:hover {
  color: #e45d14;
}
header > div nav .nav_list > ul > li .sub3 {
  position: absolute;
  left: 0;
  top: 110px;
  width: 100%;
  height: 0;
  overflow: hidden;
  background-color: #edeff8;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav .nav_list > ul > li .sub3 .sub3_item1 {
  margin: 20px 100px;
}
header > div nav .nav_list > ul > li .sub3 .sub3_item1 h3 {
  font-size: 18px;
  color: #333;
  line-height: 40px;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #0059c1;
  margin-bottom: 16px;
}
header > div nav .nav_list > ul > li .sub3 .sub3_item1 ul li a {
  font-size: 16px;
  color: #333;
  line-height: 30px;
  font-weight: 400;
  text-align: center;
}
header > div nav .tools {
  float: left;
  height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav .tools .language {
  padding-left: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav .tools .language a {
  padding-left: 10px;
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
header > div nav .tools .search {
  padding-left: 50px;
}
header > div nav .tools .search i {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  header > div {
    height: 90px;
  }
  header > div .logo > a img {
    width: 380px;
  }
  header > div nav .nav_list > ul > li {
    margin: 0;
    font-size: 15px;
  }
  header > div nav .nav_list > ul > li > a {
    line-height: 90px;
    height: 90px;
  }
  header > div nav .nav_list > ul > li:hover .sub2 {
    top: 90px;
  }
  header > div nav .nav_list > ul > li:hover .sub2 {
    padding-bottom: 50px;
  }
  header > div nav .nav_list > ul > li .sub2 {
    top: 90px;
  }
  header > div nav .nav_list > ul > li .sub2 ul li a {
    line-height: 50px;
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  header {
    display: none;
  }
}
footer {
  width: 100%;
  height: auto;
}
footer .footer_box1 {
  width: 100%;
  height: 400px;
  background-image: url(../images/footer_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
}
footer .footer_box1 > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding-top: 60px;
}
footer .footer_box1 > div .left {
  width: 28%;
  background-image: url(../images/footer_line.png);
  background-position: top right;
  background-repeat: no-repeat;
}
footer .footer_box1 > div .left .footer_logo {
  margin-bottom: 34px;
}
footer .footer_box1 > div .left .footer_contact .add p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  font-weight: normal;
  text-align: left;
  margin-bottom: 10px;
}
footer .footer_box1 > div .left .footer_contact .add p i {
  margin-right: 8px;
}
footer .footer_box1 > div .left .footer_contact .add h4 {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
footer .footer_box1 > div .left .footer_contact .tel {
  margin-top: 20px;
}
footer .footer_box1 > div .left .footer_contact .tel p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  font-weight: normal;
  text-align: left;
  margin-bottom: 10px;
}
footer .footer_box1 > div .left .footer_contact .tel p i {
  margin-right: 8px;
}
footer .footer_box1 > div .left .footer_contact .tel h4 {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
footer .footer_box1 > div .left .footer_contact .mail {
  margin-top: 20px;
}
footer .footer_box1 > div .left .footer_contact .mail p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  font-weight: normal;
  text-align: left;
  margin-bottom: 10px;
}
footer .footer_box1 > div .left .footer_contact .mail p i {
  margin-right: 8px;
}
footer .footer_box1 > div .left .footer_contact .mail h4 {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
footer .footer_box1 > div .right {
  width: 42%;
}
footer .footer_box1 > div .right ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer .footer_box1 > div .right ul li h3 {
  margin-bottom: 30px;
}
footer .footer_box1 > div .right ul li h3 a {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
footer .footer_box1 > div .right ul li p {
  margin-bottom: 20px;
}
footer .footer_box1 > div .right ul li p a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
footer .footer_box1 > div .erweima {
  width: 12%;
}
footer .footer_box1 > div .erweima .img {
  width: 100%;
  margin-bottom: 10px;
}
footer .footer_box1 > div .erweima .img img {
  width: 100%;
}
footer .footer_box1 > div .erweima .text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 28px;
  font-weight: normal;
  text-align: center;
}
footer .footer_box1 > div .erweima .text span {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 52px;
  font-weight: normal;
  text-align: center;
  display: block;
}
footer .footer_box2 {
  width: 100%;
  height: 56px;
  background-color: #2f3d45;
}
footer .footer_box2 > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer_box2 > div .left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer_box2 > div .left p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 56px;
  font-weight: normal;
  text-align: left;
}
footer .footer_box2 > div .left a {
  margin-left: 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 56px;
  font-weight: normal;
  text-align: left;
}
footer .footer_box2 > div .right a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 56px;
  font-weight: normal;
  text-align: left;
}
.n_nav_list {
  width: 100%;
  height: auto;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.n_nav_list > div {
  line-height: 90px;
  position: relative;
  overflow: initial;
}
.n_nav_list > div::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  clear: both;
}
.n_nav_list > div::before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  clear: both;
}
.n_nav_list > div .list {
  line-height: inherit;
  float: left;
}
.n_nav_list > div .list ul {
  line-height: inherit;
  overflow: hidden;
}
.n_nav_list > div .list ul li {
  float: left;
  padding: 0 36px;
  line-height: inherit;
  height: 90px;
  box-sizing: border-box;
}
.n_nav_list > div .list ul li a {
  font-size: 18px;
  color: #333;
  line-height: inherit;
  font-weight: 400;
  text-align: left;
}
.n_nav_list > div .list ul li:hover {
  background-color: #e45d14;
}
.n_nav_list > div .list ul li:hover a {
  color: #fff;
}
.n_nav_list > div .backhome {
  line-height: inherit;
  float: right;
}
.n_nav_list > div .backhome a {
  font-size: 16px;
  color: #999;
  line-height: inherit;
  font-weight: 400;
  text-align: left;
}
.n_nav_list > div .backhome a i {
  margin-right: 10px;
}
@media screen and (max-width: 1440px) {
  .n_nav_list > div {
    line-height: 70px;
  }
  .n_nav_list > div .list ul li {
    height: 70px;
  }
  .n_nav_list > div .list ul li a {
    font-size: 15px;
  }
  .n_nav_list > div .backhome a {
    font-size: 13px;
  }
}
.pageList {
  margin-top: 40px;
  padding-bottom: 100px;
}
.pageList ul {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pageList ul li {
  display: inline-block;
  border: 1px solid #ccc;
  width: 40px;
  height: 40px;
  margin: 0 2px;
}
.pageList ul li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 14px;
  color: #333;
  line-height: 40px;
  font-weight: normal;
  text-align: center;
}
.n_banner {
  overflow: hidden;
  margin-top: 110px;
  width: 100%;
  height: 590px;
  background-size: cover;
  background-position: top center;
  position: relative;
}
.n_banner.about_banner {
  background-image: url(../images/about_banner.jpg);
}
.n_banner.news_banner {
  background-image: url(../images/news_banner.jpg);
}
.n_banner.pro_banner {
  background-image: url(../images/pro_banner.jpg);
}
.n_banner.shipin_banner {
  background-image: url(../images/shipin_banner.jpg);
}
.n_banner.shebei_banner {
  background-image: url(../images/shebei_banner.jpg);
}
.n_banner.contact_banner {
  background-image: url(../images/contact_banner.jpg);
}
.n_banner > div {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.n_banner > div .text h3 {
  font-size: 42px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 20px;
  text-shadow: 0 1px 0px #959595;
}
.n_banner > div .text p {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  text-shadow: 0 1px 0px #959595;
}
@media screen and (max-width: 1680px) {
  .n_banner {
    height: 550px;
  }
}
@media screen and (max-width: 1600px) {
  .n_banner {
    height: 500px;
  }
}
@media screen and (max-width: 1440px) {
  .n_banner {
    height: 400px;
    margin-top: 90px;
  }
  .n_banner > div .text h3 {
    font-size: 24px;
  }
  .n_banner > div .text p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1366px) {
  .n_banner {
    margin-top: 90px;
    height: 360px;
  }
  .n_banner > div .text h3 {
    font-size: 28px;
  }
  .n_banner > div .text p {
    font-size: 20px;
  }
}
@media screen and (max-width: 992px) {
  .n_banner {
    margin-top: 50px;
    height: 180px;
  }
  .n_banner > div .text h3 {
    font-size: 16px;
    margin-bottom: 14px;
  }
  .n_banner > div .text p {
    font-size: 13px;
  }
}
.tanchu {
  width: 100%;
  height: 0;
  padding-bottom: 0;
  transition: all 0.5s ease;
  background: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.tanchu.sb .t_content {
  width: 43%;
}
.tanchu .t_content {
  padding: 10px;
  background: rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
  width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tanchu .t_content .img {
  width: 100%;
}
.tanchu .t_content .img img {
  width: 100%;
}
.tanchu .close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #063190;
  padding: 16px;
  cursor: pointer;
}
.about {
  width: 100%;
}
.about .main {
  width: 100%;
}
.about .main .part01 {
  width: 100%;
  background-image: url(../images/about_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 760px;
}
.about .main .part01 > div .about_text {
  width: 38%;
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
}
.about .main .part01 > div .about_text .about_text_t {
  margin-bottom: 40px;
}
.about .main .part01 > div .about_text .about_text_t::after {
  margin-top: 20px;
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #e45d14;
}
.about .main .part01 > div .about_text .about_text_t h3 {
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
.about .main .part01 > div .about_text .about_text_t h2 {
  font-size: 36px;
  color: #000;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 14px;
}
.about .main .part01 > div .about_text .about_text_t h2 span {
  color: #e45d14;
}
.about .main .part01 > div .about_text .about_text_b p {
  font-size: 16px;
  color: #333;
  line-height: 2;
  font-weight: 400;
  text-align: left;
  margin-bottom: 26px;
  text-indent: 2em;
}
.about .main .part01 > div .video {
  width: 48%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about .main .part01 > div .video .video_t {
  width: 100%;
  position: relative;
}
.about .main .part01 > div .video .video_t .video_t_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  cursor: pointer;
}
.about .main .part01 > div .video .video_t .video_t_btn img {
  width: 80px;
  opacity: 0.8;
}
.about .main .part01 > div .video .video_t .video_t_btn p {
  margin-top: 10px;
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.about .main .part01 > div .video .video_t .video_t_img {
  height: 0;
  overflow: hidden;
  padding-bottom: 440px;
}
.about .main .part01 > div .video .video_t .video_t_img img {
  width: 100%;
}
.about .main .part01 > div .video .video_b {
  margin-top: 16px;
  width: 100%;
  background-image: url(../images/video_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.about .main .part01 > div .video .video_b p {
  font-size: 38px;
  color: rgba(0, 0, 0, 0.1);
  line-height: 1;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.about .main .part02 {
  width: 100%;
  height: 720px;
  background-image: url(../images/mubiao_bg.jpg);
  background-repeat: no-repeat;
  background-position: left top;
}
.about .main .part02 > div {
  height: inherit;
}
.about .main .part02 > div ul {
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .part02 > div ul li {
  width: 33.3%;
  height: inherit;
  background-color: rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
  position: relative;
}
.about .main .part02 > div ul li .b {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}
.about .main .part02 > div ul li .b .b0 {
  margin: 0 auto 40px;
  width: 0%;
  transition: all 0.5s;
}
.about .main .part02 > div ul li .b .b0 img {
  width: 100%;
}
.about .main .part02 > div ul li .b .b1 {
  margin-bottom: 40px;
}
.about .main .part02 > div ul li .b .b1 h5 {
  font-size: 42px;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}
.about .main .part02 > div ul li .b .b1::after {
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #fff;
  margin: 20px auto 0;
}
.about .main .part02 > div ul li .b .b2 h3 {
  font-size: 18px;
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}
.about .main .part02 > div ul li::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  height: 0;
  background: linear-gradient(to bottom, #276de7, #00cf81);
  transition: all 0.3s;
}
.about .main .part02 > div ul li:hover {
  cursor: pointer;
}
.about .main .part02 > div ul li:hover::before {
  height: inherit;
}
.about .main .part02 > div ul li:hover .b .b0 {
  width: 70%;
}
.about .main .part03 {
  background-color: #f4f5f9;
  position: relative;
  min-height: 790px;
  overflow: hidden;
}
.about .main .part03 > div {
  position: relative;
  z-index: 2;
  top: 135px;
  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 h3 {
  font-size: 36px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 40px;
}
.about .main .part03 > div .part01_text h3::after {
  margin-top: 20px;
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #e45d14;
}
.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: 40px;
}
.about .main .part03 > div .part01_text p span {
  font-size: 20px;
  font-weight: bold;
  color: #e45d14;
}
.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: 630px;
  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 .part01 > div .about_text .about_text_t h2 {
    font-size: 26px;
  }
  .about .main .part01 > div .about_text .about_text_t h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .about .main .part01 > div .about_text .about_text_t {
    margin-bottom: 24px;
  }
  .about .main .part01 > div .about_text .about_text_b p {
    font-size: 14px;
  }
  .about .main .part01 > div .video .video_t .video_t_img {
    padding-bottom: 360px;
  }
  .about .main .part01 > div .video .video_b p {
    font-size: 26px;
  }
  .about .main .part01 {
    height: 560px;
  }
  .about .main .part01 > div .video .video_t .video_t_btn img {
    width: 60px;
  }
  .about .main .part02 {
    height: 546px;
    background-size: cover;
  }
  .about .main .part02 > div ul li .b .b2 h3 {
    font-size: 15px;
  }
  .about .main .part03 > div .part01_text h3 {
    font-size: 26px;
    margin-bottom: 26px;
  }
  .about .main .part03 > div .part01_text h3::after {
    margin-top: 14px;
  }
  .about .main .part03 > div .part01_text p {
    margin-bottom: 14px;
    font-size: 13px;
  }
  .about .main .part03::after {
    height: 470px;
  }
  .about .main .part03 {
    min-height: 610px;
  }
}
.project .main {
  overflow: hidden;
}
.project .main .part01 {
  padding: 100px 0;
}
.project .main .part01 > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.project .main .part01 > div .left {
  width: 46%;
  border-radius: 60px 0 0 0;
  overflow: hidden;
}
.project .main .part01 > div .right {
  width: 50%;
}
.project .main .part01 > div .right h3 {
  font-size: 36px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 30px;
}
.project .main .part01 > div .right h3 span {
  color: #e45d14;
}
.project .main .part01 > div .right h3::after {
  margin-top: 20px;
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #e45d14;
}
.project .main .part01 > div .right p {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.project .main .part02 {
  width: 100%;
  height: 640px;
  background-image: linear-gradient(to right, #276de7, #00cf81);
}
.project .main .part02 > div {
  overflow: hidden;
}
.project .main .part02 > div .part02_top {
  margin-top: 80px;
}
.project .main .part02 > div .part02_top h3 {
  font-size: 36px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.project .main .part02 > div .part02_top h3::after {
  margin-top: 20px;
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #e45d14;
}
.project .main .part02 > div .part02_bottom {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.project .main .part02 > div .part02_bottom .left {
  width: 48%;
  border: 4px solid rgba(255, 255, 255, 0.3);
  padding: 40px;
  box-sizing: border-box;
  height: 360px;
}
.project .main .part02 > div .part02_bottom .left h3 {
  font-size: 62px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: Impact;
  margin-bottom: 14px;
}
.project .main .part02 > div .part02_bottom .left h4 {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.project .main .part02 > div .part02_bottom .left h5 {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.project .main .part02 > div .part02_bottom .left p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.project .main .part02 > div .part02_bottom .right {
  width: 48%;
  height: 360px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  padding: 40px;
  box-sizing: border-box;
}
.project .main .part02 > div .part02_bottom .right h3 {
  font-size: 62px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: Impact;
  margin-bottom: 14px;
}
.project .main .part02 > div .part02_bottom .right h4 {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.project .main .part02 > div .part02_bottom .right h5 {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.project .main .part02 > div .part02_bottom .right p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.project .main .part03 {
  margin: 120px 0;
}
.project .main .part03 > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.project .main .part03 > div .left {
  width: 48%;
}
.project .main .part03 > div .left img {
  width: 100%;
}
.project .main .part03 > div .right {
  width: 48%;
}
.project .main .part03 > div .right h3 {
  font-size: 36px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 50px;
}
.project .main .part03 > div .right h3 span {
  color: #e45d14;
}
.project .main .part03 > div .right h3::after {
  margin-top: 20px;
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #e45d14;
}
.project .main .part03 > div .right > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.project .main .part03 > div .right > div i {
  width: 20px;
  height: 20px;
  background-image: url(../images/icon1.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 10px;
}
.project .main .part03 > div .right > div p {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.project .main .part04 {
  background-color: #edeff8;
  padding: 60px;
}
.project .main .part04 > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.project .main .part04 > div .left {
  width: 48%;
}
.project .main .part04 > div .left h3 {
  font-size: 36px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 30px;
}
.project .main .part04 > div .left h3 span {
  color: #e45d14;
}
.project .main .part04 > div .left h3::after {
  margin-top: 20px;
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #e45d14;
}
.project .main .part04 > div .left > div {
  background-image: linear-gradient(to right, #276de7, #00cf81);
  padding: 40px;
  margin-bottom: 20px;
}
.project .main .part04 > div .left > div h4 {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 16px;
}
.project .main .part04 > div .left > div p {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.project .main .part04 > div .right {
  width: 48%;
}
.project .main .part04 > div .right .img {
  width: 100%;
}
.project .main .part04 > div .right .img img {
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .project .main .part01 > div .right h3 {
    font-size: 26px;
  }
  .project .main .part01 > div .right p {
    font-size: 16px;
  }
  .project .main .part02 > div .part02_top h3 {
    font-size: 26px;
  }
  .project .main .part02 > div .part02_bottom .left h3 {
    font-size: 50px;
  }
  .project .main .part02 > div .part02_bottom .left {
    padding: 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    height: 320px;
  }
  .project .main .part02 > div .part02_bottom .left h4 {
    font-size: 20px;
  }
  .project .main .part02 > div .part02_bottom .left h5 {
    font-size: 12px;
    margin: 6px 0 20px 0;
  }
  .project .main .part02 > div .part02_bottom .left p {
    font-size: 14px;
  }
  .project .main .part02 > div .part02_top h3 {
    font-size: 26px;
  }
  .project .main .part02 > div .part02_bottom .right h3 {
    font-size: 50px;
  }
  .project .main .part02 > div .part02_bottom .right {
    padding: 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    height: 320px;
  }
  .project .main .part02 > div .part02_bottom .right h4 {
    font-size: 20px;
  }
  .project .main .part02 > div .part02_bottom .right h5 {
    font-size: 12px;
    margin: 6px 0 20px 0;
  }
  .project .main .part02 > div .part02_bottom .right p {
    font-size: 14px;
  }
  .project .main .part01 {
    padding: 80px 0;
  }
  .project .main .part02 {
    height: 550px;
  }
  .project .main .part02 > div .part02_bottom {
    margin-top: 30px;
  }
  .project .main .part02 > div .part02_top {
    margin-top: 70px;
  }
  .project .main .part03 > div .left {
    width: 45%;
  }
  .project .main .part03 > div .right {
    width: 51%;
  }
  .project .main .part03 > div .right h3 {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .project .main .part03 > div .right > div p {
    font-size: 14px;
  }
  .project .main .part04 > div .left h3 {
    font-size: 26px;
  }
  .project .main .part04 > div .left > div h4 {
    font-size: 18px;
  }
  .project .main .part04 > div .left > div p {
    font-size: 14px;
  }
  .project .main .part04 > div .left > div {
    padding: 28px;
  }
}
.product .main {
  background-color: #edeff8;
  overflow: hidden;
}
.product .main .n_title {
  margin-top: 120px;
}
.product .main .n_title > h2 {
  font-size: 36px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.product .main .n_title > h2 span {
  color: #e45d14;
}
.product .main .n_title > h2::after {
  margin: 0 auto;
  margin-top: 20px;
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #e45d14;
}
.product .main .part01 {
  margin-bottom: 100px;
}
.product .main .part01 .part01_sub1 {
  margin-top: 80px;
}
.product .main .part01 .part01_sub1 > div {
  position: relative;
}
.product .main .part01 .part01_sub1 > div .left {
  width: 70%;
}
.product .main .part01 .part01_sub1 > div .left img {
  width: 100%;
}
.product .main .part01 .part01_sub1 > div .right {
  width: 42%;
  height: 80%;
  padding: 80px 40px;
  box-sizing: border-box;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
}
.product .main .part01 .part01_sub1 > div .right .right_top h3 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 10px;
}
.product .main .part01 .part01_sub1 > div .right .right_top h3 span {
  color: #e45d14;
}
.product .main .part01 .part01_sub1 > div .right .right_top h5::after {
  margin-top: 16px;
  margin-bottom: 20px;
  display: block;
  content: "";
  width: 40px;
  height: 2px;
  background-color: #e45d14;
}
.product .main .part01 .part01_sub1 > div .right .right_top p {
  font-size: 16px;
  color: #333;
  line-height: 2;
  font-weight: 400;
  text-align: left;
}
.product .main .part01 .part01_sub2 {
  margin-top: 60px;
}
.product .main .part01 .part01_sub2 > div {
  position: relative;
}
.product .main .part01 .part01_sub2 > div .left {
  width: 42%;
  height: 80%;
  padding: 80px 40px;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  z-index: 6;
}
.product .main .part01 .part01_sub2 > div .left .left_top h3 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 10px;
}
.product .main .part01 .part01_sub2 > div .left .left_top h3 span {
  color: #e45d14;
}
.product .main .part01 .part01_sub2 > div .left .left_top h5::after {
  margin-top: 16px;
  margin-bottom: 20px;
  display: block;
  content: "";
  width: 40px;
  height: 2px;
  background-color: #e45d14;
}
.product .main .part01 .part01_sub2 > div .left .left_top p {
  font-size: 16px;
  color: #333;
  line-height: 2;
  font-weight: 400;
  text-align: left;
}
.product .main .part01 .part01_sub2 > div .right {
  position: relative;
  left: 30%;
  width: 70%;
}
.product .main .part01 .part01_sub2 > div .right img {
  width: 100%;
}
.product .main .part02 {
  width: 100%;
  height: 740px;
  overflow: hidden;
  position: relative;
}
.product .main .part02 .part02_img {
  position: relative;
}
.product .main .part02 .part02_img ul li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
}
.product .main .part02 .part02_img ul li.active {
  opacity: 1;
}
.product .main .part02 .part02_img ul li .bg {
  width: 100%;
}
.product .main .part02 .part02_img ul li .bg img {
  width: 100%;
}
.product .main .part02 .part02_img ul li .text {
  width: 100%;
  position: absolute;
  left: 0;
  top: 140px;
}
.product .main .part02 .part02_img ul li .text .title {
  margin-bottom: 60px;
}
.product .main .part02 .part02_img ul li .text .title h2 {
  font-size: 36px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 14px;
}
.product .main .part02 .part02_img ul li .text .title p {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
  opacity: 0.5;
}
.product .main .part02 .part02_img ul li .text h4 {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
.product .main .part02 .part02_img ul li .text p {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
  width: 56%;
}
.product .main .part02 .part02_nav {
  width: 100%;
  height: 160px;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  left: 0;
}
.product .main .part02 .part02_nav ul {
  width: 100%;
  height: 160px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product .main .part02 .part02_nav ul li {
  width: 33%;
  height: 100%;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
  cursor: pointer;
}
.product .main .part02 .part02_nav ul li.active {
  background-image: linear-gradient(to right, #276de7, #00cf81);
}
.product .main .part02 .part02_nav ul li:nth-of-type(1) {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.product .main .part02 .part02_nav ul li .img {
  margin-top: 20px;
}
.product .main .part02 .part02_nav ul li .img img {
  display: inline;
  width: 80px;
}
.product .main .part02 .part02_nav ul li .text {
  margin-top: 10px;
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.product .main .part03 {
  margin-top: 50px;
  margin-bottom: 120px;
}
.product .main .part03 > div ul li .img img {
  width: 100%;
}
.product .main .part03 > div ul li .text {
  width: 100%;
  height: 60px;
  background-color: #fff;
}
.product .main .part03 > div ul li .text p {
  font-size: 18px;
  color: #333;
  line-height: 60px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .product .main .n_title {
    margin-top: 80px;
  }
  .product .main .n_title > h2 {
    font-size: 26px;
  }
  .product .main .part01 .part01_sub1 {
    margin-top: 40px;
  }
  .product .main .part01 .part01_sub1 > div .right {
    padding: 30px;
  }
  .product .main .part01 .part01_sub1 > div .right .right_top h3 {
    font-size: 20px;
    margin-bottom: 4px;
  }
  .product .main .part01 .part01_sub1 > div .right .right_top h5 {
    font-size: 12px;
  }
  .product .main .part01 .part01_sub1 > div .right .right_top p {
    font-size: 14px;
  }
  .product .main .part01 .part01_sub2 > div .left {
    padding: 30px;
  }
  .product .main .part01 .part01_sub2 > div .left .left_top h3 {
    font-size: 20px;
    margin-bottom: 4px;
  }
  .product .main .part01 .part01_sub2 > div .left .left_top p {
    font-size: 14px;
  }
  .product .main .part02 {
    height: 540px;
  }
  .product .main .part02 .part02_nav {
    height: 120px;
  }
  .product .main .part02 .part02_nav ul li .img img {
    width: 52px;
  }
  .product .main .part02 .part02_img ul li .text .title h2 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .product .main .part02 .part02_img ul li .text {
    top: 100px;
  }
  .product .main .part02 .part02_img ul li .text .title p {
    font-size: 14px;
  }
  .product .main .part02 .part02_img ul li .text h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .product .main .part02 .part02_img ul li .text p {
    font-size: 14px;
  }
  .product .main .part02 .part02_img ul li .text .title {
    margin-bottom: 40px;
  }
  .product .main .part03 {
    margin-top: 40px;
    margin-bottom: 80px;
  }
  .product .main .part03 > div ul li .text {
    height: 50px;
  }
  .product .main .part03 > div ul li .text p {
    font-size: 15px;
    line-height: 50px;
  }
}
.news .main {
  padding-bottom: 80px;
}
.news .main > div:first-of-type {
  background-color: #edeff8;
}
.news .main > div:first-of-type .newsBoxTitle {
  padding-top: 120px;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.news .main > div:first-of-type .newsBoxTitle h3 {
  font-size: 30px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.news .main > div:first-of-type .newsBoxTitle h3::after {
  margin-top: 20px;
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #ec7424;
}
.news .main > div:first-of-type .newsBoxTitle p {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.news .main > div:first-of-type .newsBoxTitle p img {
  padding-left: 16px;
}
.news .main > div:first-of-type .news_part01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 80px;
}
.news .main > div:first-of-type .news_part01 .left {
  width: 71%;
}
.news
  .main
  > div:first-of-type
  .news_part01
  .left
  .newsSwiper
  .swiper-wrapper
  .swiper-slide
  a
  .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.news
  .main
  > div:first-of-type
  .news_part01
  .left
  .newsSwiper
  .swiper-wrapper
  .swiper-slide
  a
  .text
  .date {
  margin-left: 60px;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #fff;
}
.news
  .main
  > div:first-of-type
  .news_part01
  .left
  .newsSwiper
  .swiper-wrapper
  .swiper-slide
  a
  .text
  .date
  p {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.news
  .main
  > div:first-of-type
  .news_part01
  .left
  .newsSwiper
  .swiper-wrapper
  .swiper-slide
  a
  .text
  .date
  p
  span {
  font-size: 30px;
  font-weight: bold;
}
.news
  .main
  > div:first-of-type
  .news_part01
  .left
  .newsSwiper
  .swiper-wrapper
  .swiper-slide
  a
  .text
  .name {
  font-size: 16px;
  color: #fff;
  line-height: 80px;
  font-weight: 700;
  text-align: left;
}
.news
  .main
  > div:first-of-type
  .news_part01
  .left
  .newsSwiper
  .swiper-wrapper
  .swiper-slide
  a
  .img
  img {
  display: block;
  width: 100%;
  height: 454px;
}
.news
  .main
  > div:first-of-type
  .news_part01
  .left
  .newsSwiper
  .swiper-pagination {
  text-align: right;
  right: 30px;
  width: 60%;
  left: auto;
}
.news
  .main
  > div:first-of-type
  .news_part01
  .left
  .newsSwiper
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 6px;
  height: 4px;
  border-radius: 0 !important;
  margin: 0 4px;
  opacity: 1;
  background-color: #fff;
}
.news
  .main
  > div:first-of-type
  .news_part01
  .left
  .newsSwiper
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background: #0059c1;
  width: 80px;
}
.news .main > div:first-of-type .news_part01 .right {
  width: 26%;
  background-color: #fff;
  box-sizing: border-box;
  padding: 30px;
}
.news .main > div:first-of-type .news_part01 .right ul li {
  cursor: pointer;
  height: 112px;
  margin-top: 20px;
  border-bottom: 1px solid #d6d6d6;
}
.news .main > div:first-of-type .news_part01 .right ul li:nth-child(3) {
  border-bottom: none;
}
.news .main > div:first-of-type .news_part01 .right ul li a .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.news .main > div:first-of-type .news_part01 .right ul li a .top .title h3 {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.news .main > div:first-of-type .news_part01 .right ul li a .center p {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.news .main > div:first-of-type .news_part01 .right ul li a .more {
  margin-top: 16px;
}
.news .main > div:first-of-type .news_part01 .right ul li a .more span {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.news
  .main
  > div:first-of-type
  .news_part01
  .right
  ul
  li.current
  a
  .top
  .title
  h3 {
  color: #e45d14;
}
.news
  .main
  > div:first-of-type
  .news_part01
  .right
  ul
  li.current
  a
  .top
  .date
  p {
  color: #e45d14;
}
.news .main > div:nth-of-type(2) {
  margin-top: 80px;
  overflow: hidden;
}
.news .main > div:nth-of-type(2) .newsBoxTitle {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.news .main > div:nth-of-type(2) .newsBoxTitle h3 {
  font-size: 30px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.news .main > div:nth-of-type(2) .newsBoxTitle h3::after {
  margin-top: 20px;
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #ec7424;
}
.news .main > div:nth-of-type(2) .newsBoxTitle p {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.news .main > div:nth-of-type(2) .newsBoxTitle p img {
  padding-left: 16px;
}
.news .main > div:nth-of-type(2) .news_part02 ul li {
  float: left;
  width: 32%;
  margin-right: 2%;
  background: #fff;
  transition: 0.5s ease;
  margin-bottom: 40px;
  border-bottom: 3px solid #cecdcf;
  box-shadow: 3px 4px 8px #edeff8;
}
.news .main > div:nth-of-type(2) .news_part02 ul li:nth-of-type(3n) {
  margin-right: 0;
}
.news
  .main
  > div:nth-of-type(2)
  .news_part02
  ul
  li
  a
  .n_newsImg
  .n_newsImg_box {
  position: relative;
  display: block;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.news
  .main
  > div:nth-of-type(2)
  .news_part02
  ul
  li
  a
  .n_newsImg
  .n_newsImg_box
  img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}
.news .main > div:nth-of-type(2) .news_part02 ul li a .n_newsText {
  background-color: #edeff8;
}
.news .main > div:nth-of-type(2) .news_part02 ul li a .n_newsText .n_textBox {
  padding: 30px;
}
.news
  .main
  > div:nth-of-type(2)
  .news_part02
  ul
  li
  a
  .n_newsText
  .n_textBox
  .n_textBox_center {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 180px;
}
.news
  .main
  > div:nth-of-type(2)
  .news_part02
  ul
  li
  a
  .n_newsText
  .n_textBox
  .n_textBox_center
  .tit {
  font-size: 20px;
  line-height: 40px;
  height: 40px;
  color: #000;
  overflow: hidden;
  margin: 0 0 10px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news
  .main
  > div:nth-of-type(2)
  .news_part02
  ul
  li
  a
  .n_newsText
  .n_textBox
  .n_textBox_center
  .desc {
  height: 80px;
  margin-bottom: 16px;
}
.news
  .main
  > div:nth-of-type(2)
  .news_part02
  ul
  li
  a
  .n_newsText
  .n_textBox
  .n_textBox_center
  .desc
  p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.news
  .main
  > div:nth-of-type(2)
  .news_part02
  ul
  li
  a
  .n_newsText
  .n_textBox
  .n_textBox_center
  .box2 {
  border-top: 1px solid #d5d5d5;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.news
  .main
  > div:nth-of-type(2)
  .news_part02
  ul
  li
  a
  .n_newsText
  .n_textBox
  .n_textBox_center
  .box2
  .date {
  font-size: 15px;
  line-height: 20px;
  color: #a1a0a1;
}
.news
  .main
  > div:nth-of-type(2)
  .news_part02
  ul
  li
  a
  .n_newsText
  .n_textBox
  .n_textBox_center
  .box2
  .icon {
  width: 23px;
  height: 23px;
  background: url(../images/learn_more.png) no-repeat center;
  transition: 0.3s ease;
  cursor: pointer;
}
.news2 .main {
  padding-bottom: 80px;
}
.news2 .main > div:first-of-type {
  margin-top: 80px;
  overflow: hidden;
}
.news2 .main > div:first-of-type .newsBoxTitle {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.news2 .main > div:first-of-type .newsBoxTitle h3 {
  font-size: 30px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.news2 .main > div:first-of-type .newsBoxTitle h3::after {
  margin-top: 20px;
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #ec7424;
}
.news2 .main > div:first-of-type .newsBoxTitle p {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.news2 .main > div:first-of-type .newsBoxTitle p img {
  padding-left: 16px;
}
.news2 .main > div:first-of-type .news_part02 ul li {
  float: left;
  width: 32%;
  margin-right: 2%;
  background: #fff;
  transition: 0.5s ease;
  margin-bottom: 40px;
  border-bottom: 3px solid #cecdcf;
  box-shadow: 3px 4px 8px #edeff8;
}
.news2 .main > div:first-of-type .news_part02 ul li:nth-of-type(3n) {
  margin-right: 0;
}
.news2
  .main
  > div:first-of-type
  .news_part02
  ul
  li
  a
  .n_newsImg
  .n_newsImg_box {
  position: relative;
  display: block;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.news2
  .main
  > div:first-of-type
  .news_part02
  ul
  li
  a
  .n_newsImg
  .n_newsImg_box
  img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}
.news2 .main > div:first-of-type .news_part02 ul li a .n_newsText {
  background-color: #edeff8;
}
.news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox {
  padding: 30px;
}
.news2
  .main
  > div:first-of-type
  .news_part02
  ul
  li
  a
  .n_newsText
  .n_textBox
  .n_textBox_center {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 180px;
}
.news2
  .main
  > div:first-of-type
  .news_part02
  ul
  li
  a
  .n_newsText
  .n_textBox
  .n_textBox_center
  .tit {
  font-size: 20px;
  line-height: 40px;
  height: 40px;
  color: #000;
  overflow: hidden;
  margin: 0 0 10px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news2
  .main
  > div:first-of-type
  .news_part02
  ul
  li
  a
  .n_newsText
  .n_textBox
  .n_textBox_center
  .desc {
  height: 80px;
  margin-bottom: 16px;
}
.news2
  .main
  > div:first-of-type
  .news_part02
  ul
  li
  a
  .n_newsText
  .n_textBox
  .n_textBox_center
  .desc
  p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.news2
  .main
  > div:first-of-type
  .news_part02
  ul
  li
  a
  .n_newsText
  .n_textBox
  .n_textBox_center
  .box2 {
  border-top: 1px solid #d5d5d5;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.news2
  .main
  > div:first-of-type
  .news_part02
  ul
  li
  a
  .n_newsText
  .n_textBox
  .n_textBox_center
  .box2
  .date {
  font-size: 15px;
  line-height: 20px;
  color: #a1a0a1;
}
.news2
  .main
  > div:first-of-type
  .news_part02
  ul
  li
  a
  .n_newsText
  .n_textBox
  .n_textBox_center
  .box2
  .icon {
  width: 23px;
  height: 23px;
  background: url(../images/learn_more.png) no-repeat center;
  transition: 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  .news .main > div:first-of-type .newsBoxTitle {
    padding-top: 80px;
    margin-bottom: 30px;
  }
  .news .main > div:first-of-type .newsBoxTitle h3 {
    font-size: 24px;
  }
  .news .main > div:first-of-type .newsBoxTitle p {
    font-size: 16px;
  }
  .news .main > div:first-of-type .news_part01 .right ul li a .top .title h3 {
    font-size: 15px;
  }
  .news .main > div:first-of-type .news_part01 .right {
    padding: 20px;
  }
  .news .main > div:first-of-type .news_part01 .right ul li a .center p {
    font-size: 14px;
    line-height: 1.5;
  }
  .news .main > div:first-of-type .news_part01 .right ul li a .more {
    display: none;
  }
  .news .main > div:first-of-type .news_part01 .right ul li {
    height: 94px;
  }
  .news
    .main
    > div:first-of-type
    .news_part01
    .left
    .newsSwiper
    .swiper-wrapper
    .swiper-slide
    a
    .img
    img {
    height: 382px;
  }
  .news .main > div:nth-of-type(2) .newsBoxTitle h3 {
    font-size: 24px;
  }
  .news .main > div:nth-of-type(2) .newsBoxTitle p {
    font-size: 16px;
  }
  .news
    .main
    > div:nth-of-type(2)
    .news_part02
    ul
    li
    a
    .n_newsImg
    .n_newsImg_box {
    height: 220px;
  }
  .news
    .main
    > div:nth-of-type(2)
    .news_part02
    ul
    li
    a
    .n_newsText
    .n_textBox
    .n_textBox_center
    .tit {
    font-size: 18px;
  }
  .news
    .main
    > div:nth-of-type(2)
    .news_part02
    ul
    li
    a
    .n_newsText
    .n_textBox
    .n_textBox_center
    .desc
    p {
    font-size: 14px;
    line-height: 1.5;
  }
  .news .main > div:nth-of-type(2) .news_part02 ul li a .n_newsText .n_textBox {
    padding: 20px;
  }
  .news
    .main
    > div:nth-of-type(2)
    .news_part02
    ul
    li
    a
    .n_newsText
    .n_textBox
    .n_textBox_center
    .desc {
    height: 60px;
    margin-bottom: 6px;
  }
  .news
    .main
    > div:nth-of-type(2)
    .news_part02
    ul
    li
    a
    .n_newsText
    .n_textBox
    .n_textBox_center {
    padding-bottom: 146px;
  }
}
@media screen and (max-width: 992px) {
  .news2 .main > div:first-of-type .newsBoxTitle h3 {
    font-size: 16px;
  }
  .news2 .main > div:first-of-type .newsBoxTitle p {
    display: none;
  }
  .news2 .main > div:first-of-type .news_part02 ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .news2
    .main
    > div:first-of-type
    .news_part02
    ul
    li
    a
    .n_newsImg
    .n_newsImg_box {
    height: 180px;
  }
  .news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox {
    padding: 16px;
  }
  .news2
    .main
    > div:first-of-type
    .news_part02
    ul
    li
    a
    .n_newsText
    .n_textBox
    .n_textBox_center {
    padding-bottom: 144px;
  }
  .news2
    .main
    > div:first-of-type
    .news_part02
    ul
    li
    a
    .n_newsText
    .n_textBox
    .n_textBox_center
    .tit {
    font-size: 15px;
    height: 30px;
    line-height: 30px;
  }
  .news2
    .main
    > div:first-of-type
    .news_part02
    ul
    li
    a
    .n_newsText
    .n_textBox
    .n_textBox_center
    .desc {
    height: 50px;
  }
  .news2
    .main
    > div:first-of-type
    .news_part02
    ul
    li
    a
    .n_newsText
    .n_textBox
    .n_textBox_center
    .desc
    p {
    font-size: 13px;
  }
}
@keyframes elementUpDown {
  0% {
    transform: translate(-50%, 10px);
  }
  25% {
    transform: translate(-50%, -10px);
  }
  50% {
    transform: translate(-50%, 10px);
  }
  75% {
    transform: translate(-50%, -10px);
  }
  100% {
    transform: translate(-50%, 10px);
  }
}
.icon {
  width: 8px;
  height: 8px;
  background: #e45d14;
  text-align: center;
  line-height: 80px;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9;
}
.animate-wave {
  width: 34px;
  height: 34px;
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@-webkit-keyframes opac {
  from {
    opacity: 1;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
  }
  to {
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
.animate-wave * {
  background: #e45d14;
  position: absolute;
  border-radius: 50%;
  animation: opac 6s infinite;
}
.animate-wave .w2 {
  animation-delay: 1s;
}
.animate-wave .w3 {
  animation-delay: 2s;
}
.animate-wave .w4 {
  animation-delay: 3s;
}
.animate-wave .w5 {
  animation-delay: 4s;
}
.animate-wave .w6 {
  animation-delay: 5s;
}
.n_title h4 {
  font-size: 36px;
  color: #e45d14;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 10px;
}
.n_title h3 {
  font-size: 36px;
  color: #000;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  display: inline-block;
}
.n_title h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #e45d14;
  margin: 20px auto 0;
}
.n_title h3.hide::after {
  display: none;
}
.n_title.center {
  margin-top: 80px;
}
.n_title.center h3 {
  text-align: center;
}
.n_title.center h4 {
  text-align: center;
}
.n_title.line::after {
  margin-top: 40px;
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: #e45d14;
}
.n_more {
  width: 240px;
  height: 50px;
  background-color: #0059c1;
  margin-top: 50px;
}
.n_more a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.pro_title {
  background-color: #0059c1;
  display: inline-block;
  line-height: 50px;
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 0 50px;
}
.pro_title h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 20px;
  color: #fff;
  line-height: inherit;
  font-weight: 400;
  text-align: center;
}
.pro_title h3::before {
  content: "";
  display: block;
  height: 20px;
  width: 2px;
  background-color: #fff;
  margin-right: 10px;
}
@keyframes xuanzhuan {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.cNav .control {
  background-color: #e45d14 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.cNav .control h4 {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.cNav .control i {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.title.w h3 {
  font-size: 36px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.title.w p {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.title.l h3 {
  font-size: 36px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.title.l p {
  font-size: 24px;
  color: #d4d4d4;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.title h3 {
  font-size: 36px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 14px;
}
.title p {
  font-size: 24px;
  color: #d4d4d4;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}
.index .part01 {
  padding-top: 110px;
  padding-bottom: 80px;
  border-bottom: 16px solid #edeff8;
  width: 100%;
  background-image: url(../images/index_about_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  overflow: hidden;
}
.index .part01 > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 > div .left {
  width: 42%;
}
.index .part01 > div .left .left_title .left_title_top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 > div .left .left_title .left_title_top img {
  width: initial;
}
.index .part01 > div .left .left_title .left_title_top h3 {
  margin-left: 20px;
  font-size: 80px;
  color: #e45d14;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: Impact;
  text-transform: uppercase;
}
.index .part01 > div .left .left_title .left_title_bottom {
  margin-top: 20px;
}
.index .part01 > div .left .left_title .left_title_bottom p {
  font-size: 30px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .part01 > div .left .left_content {
  margin-top: 44px;
}
.index .part01 > div .left .left_content p {
  font-size: 16px;
  color: #333;
  line-height: 2;
  font-weight: 400;
  text-align: left;
  text-indent: 2em;
}
.index .part01 > div .left .left_more {
  margin-top: 80px;
}
.index .part01 > div .left .left_more a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 > div .left .left_more a p {
  font-size: 16px;
  color: #333;
  line-height: 2;
  font-weight: 700;
  text-align: left;
  margin-right: 16px;
}
.index .part01 > div .right {
  width: 54%;
  max-width: 817px;
  overflow: hidden;
}
.index .part01 > div .right img {
  width: 100%;
}
.index .part02 {
  width: 100%;
  padding-bottom: 90px;
  background-image: url(../images/index_project_bg.jpg);
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
}
.index .part02 > div {
  overflow: hidden;
}
.index .part02 > div .title {
  margin-top: 90px;
  margin-bottom: 50px;
}
.index .part02 > div .part02_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 > div .part02_content .left {
  width: 46%;
}
.index .part02 > div .part02_content .left .img {
  width: 100%;
  border-radius: 60px 0 0 0;
  overflow: hidden;
}
.index .part02 > div .part02_content .left .img img {
  width: 100%;
}
.index .part02 > div .part02_content .right {
  width: 50%;
}
.index .part02 > div .part02_content .right .right_title {
  margin-bottom: 30px;
}
.index .part02 > div .part02_content .right .right_title h3 {
  font-size: 26px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .part02 > div .part02_content .right .right_content p {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.index .part02 > div .part02_content .right .right_more {
  margin-top: 50px;
}
.index .part02 > div .part02_content .right .right_more a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 > div .part02_content .right .right_more a p {
  font-size: 16px;
  color: #fff;
  line-height: 2;
  font-weight: 700;
  text-align: left;
  margin-right: 14px;
}
.index .part02 > div .part02_content .right .right_more a img {
  width: inherit;
}
.index .part02 > div .part02_content .right .right_youshi {
  width: 100%;
  margin-top: 40px;
}
.index .part02 > div .part02_content .right .right_youshi ul {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 > div .part02_content .right .right_youshi ul li {
  width: 23%;
}
.index
  .part02
  > div
  .part02_content
  .right
  .right_youshi
  ul
  li:hover
  a
  .right_icon {
  background-color: #e45d14;
}
.index
  .part02
  > div
  .part02_content
  .right
  .right_youshi
  ul
  li:hover
  a
  .right_icon
  img {
  transform: rotateY(180deg);
}
.index
  .part02
  > div
  .part02_content
  .right
  .right_youshi
  ul
  li:hover
  a
  .right_youshi_text
  p {
  font-weight: 700;
}
.index .part02 > div .part02_content .right .right_youshi ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
.index .part02 > div .part02_content .right .right_youshi ul li a .right_icon {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 40px;
  border-radius: 10px;
}
.index
  .part02
  > div
  .part02_content
  .right
  .right_youshi
  ul
  li
  a
  .right_icon
  img {
  margin: 0 auto;
  transition: all 0.5s;
}
.index
  .part02
  > div
  .part02_content
  .right
  .right_youshi
  ul
  li
  a
  .right_youshi_text {
  margin-top: 20px;
}
.index
  .part02
  > div
  .part02_content
  .right
  .right_youshi
  ul
  li
  a
  .right_youshi_text
  p {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.index .part03 {
  width: 100%;
  padding-bottom: 90px;
  background-image: url(../images/index_part03_bg.jpg);
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
}
.index .part03 > div {
  overflow: hidden;
}
.index .part03 > div .title {
  margin-top: 90px;
  margin-bottom: 40px;
}
.index .part03 > div .part03_centent ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 > div .part03_centent ul li {
  border-radius: 40px 0 0 0;
  width: 31.4%;
  overflow: hidden;
  position: relative;
}
.index .part03 > div .part03_centent ul li .img img {
  width: 100%;
}
.index .part03 > div .part03_centent ul li .text {
  padding-top: 18px;
  padding-bottom: 18px;
  background-color: #fff;
}
.index .part03 > div .part03_centent ul li .text h3 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  margin-bottom: 8px;
}
.index .part03 > div .part03_centent ul li .text p {
  font-size: 16px;
  color: #999;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.index .part04 {
  padding: 100px 0;
  position: relative;
}
.index .part04::after {
  content: "";
  display: block;
  width: 50%;
  height: 256px;
  background-image: url(../images/index_part04_bg1.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.index .part04::before {
  content: "";
  display: block;
  width: 50%;
  height: 256px;
  background-image: url(../images/index_part04_bg2.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.index .part04 > div {
  position: relative;
  z-index: 2;
}
.index .part04 > div .part04_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 > div .part04_top .more a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 > div .part04_top .more a p {
  font-size: 16px;
  color: #333;
  line-height: 2;
  font-weight: 700;
  text-align: left;
  margin-right: 16px;
}
.index .part04 > div .part04_bottom {
  margin-top: 30px;
}
.index .part04 > div .part04_bottom .part04_bottom_hot {
  padding: 40px;
  box-sizing: border-box;
  width: 100%;
  background: linear-gradient(to right, #276de7, #00cf81);
  border-radius: 16px 0 0 0;
  overflow: hidden;
}
.index .part04 > div .part04_bottom .part04_bottom_hot > div {
  position: relative;
}
.index .part04 > div .part04_bottom .part04_bottom_hot > div ul {
  width: 80% !important;
}
.index
  .part04
  > div
  .part04_bottom
  .part04_bottom_hot
  > div
  ul
  li
  a
  .hot_title_icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index
  .part04
  > div
  .part04_bottom
  .part04_bottom_hot
  > div
  ul
  li
  a
  .hot_title_icon
  img {
  margin-right: 10px;
}
.index
  .part04
  > div
  .part04_bottom
  .part04_bottom_hot
  > div
  ul
  li
  a
  .hot_title_content
  h3 {
  font-size: 20px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
.index
  .part04
  > div
  .part04_bottom
  .part04_bottom_hot
  > div
  ul
  li
  a
  .hot_title_content
  p {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 40px;
}
.index
  .part04
  > div
  .part04_bottom
  .part04_bottom_hot
  > div
  ul
  li
  a
  .hot_title_content
  span {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index
  .part04
  > div
  .part04_bottom
  .part04_bottom_hot
  > div
  ul
  li
  a
  .hot_title_content
  span::after {
  display: block;
  content: "";
  width: 30px;
  height: 2px;
  margin-top: 10px;
  background-color: #e45d14;
}
.index .part04 > div .part04_bottom .part04_bottom_hot > div .changeBtn {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 66;
  transform: translateY(-50%);
}
.index .part04 > div .part04_bottom .part04_bottom_hot > div .changeBtn .pre {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  background-color: #fff;
  margin-bottom: 6px;
  cursor: pointer;
}
.index .part04 > div .part04_bottom .part04_bottom_hot > div .changeBtn .pre i {
  line-height: initial;
  font-size: 18px;
}
.index .part04 > div .part04_bottom .part04_bottom_hot > div .changeBtn .next {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  background-color: #fff;
  cursor: pointer;
}
.index
  .part04
  > div
  .part04_bottom
  .part04_bottom_hot
  > div
  .changeBtn
  .next
  i {
  line-height: initial;
  font-size: 18px;
}
.index .part04 > div .part04_bottom .part04_bottom_list {
  margin-top: 24px;
}
.index .part04 > div .part04_bottom .part04_bottom_list ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 > div .part04_bottom .part04_bottom_list ul li {
  width: 31.4%;
  border-radius: 16px 0 0 0;
  overflow: hidden;
}
.index .part04 > div .part04_bottom .part04_bottom_list ul li a .img_box {
  position: relative;
}
.index .part04 > div .part04_bottom .part04_bottom_list ul li a .img_box .img {
  height: 0;
  padding-bottom: 270px;
  overflow: hidden;
}
.index
  .part04
  > div
  .part04_bottom
  .part04_bottom_list
  ul
  li
  a
  .img_box
  .img
  img {
  width: 100%;
  height: 270px;
}
.index .part04 > div .part04_bottom .part04_bottom_list ul li a .img_box .date {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54%;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.6);
}
.index
  .part04
  > div
  .part04_bottom
  .part04_bottom_list
  ul
  li
  a
  .img_box
  .date
  p {
  font-size: 15px;
  color: #333;
  line-height: 60px;
  font-weight: 400;
  text-align: center;
}
.index .part04 > div .part04_bottom .part04_bottom_list ul li a .text_box {
  padding-bottom: 40px;
  border-bottom: 1px solid #999;
}
.index .part04 > div .part04_bottom .part04_bottom_list ul li a .text_box h3 {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 14px;
  margin-top: 20px;
}
.index .part04 > div .part04_bottom .part04_bottom_list ul li a .text_box p {
  font-size: 15px;
  color: #999;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
}
.index .part05 {
  width: 100%;
  height: 120px;
  background-color: #fafafa;
}
.index .part05 > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  height: inherit;
}
.index .part05 > div .left {
  width: 134px;
}
.index .part05 > div .left h3 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 8px;
}
.index .part05 > div .left p {
  font-size: 18px;
  color: #d2d2d2;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .part05 > div .right {
  width: calc(100% - 134px);
}
.index .part05 > div .right ul li {
  width: 25%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .part05 > div .right ul li::after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background-color: #a1a1a1;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -15px;
}
.index .part05 > div .right ul li:last-of-type::after {
  display: none;
}
.index .part05 > div .right ul li p {
  margin-left: 10px;
  font-size: 20px;
  color: #999;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .part05 > div .right ul li img {
  width: initial;
}
@media screen and (max-width: 1440px) {
  .index .part01 > div .left .left_title .left_title_top h3 {
    font-size: 54px;
  }
  .index .part01 > div .left .left_title .left_title_top img {
    width: 70px;
  }
  .index .part01 > div .left .left_title .left_title_bottom p {
    font-size: 24px;
  }
  .index .part01 > div .left .left_title .left_title_bottom {
    margin-top: 16px;
  }
  .index .part01 > div .left .left_more {
    margin-top: 20px;
  }
  .index .part01 > div .left .left_content {
    margin-top: 24px;
  }
  .index .part02 > div .title {
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .title h3 {
    margin-bottom: 6px;
    font-size: 28px;
  }
  .title.w h3 {
    font-size: 28px;
  }
  .title.l h3 {
    font-size: 28px;
  }
  .title.w p {
    font-size: 20px;
  }
  .title.l p {
    font-size: 20px;
  }
  .title p {
    font-size: 20px;
  }
  .index .part02 > div .part02_content .right .right_title {
    margin-bottom: 14px;
  }
  .index .part02 > div .part02_content .right .right_title h3 {
    font-size: 20px;
  }
  .index .part02 > div .part02_content .right .right_content p {
    font-size: 14px;
  }
  .index .part02 > div .part02_content .right .right_more {
    margin-top: 30px;
  }
  .index .part02 > div .part02_content .right .right_more a p {
    font-size: 14px;
  }
  .index
    .part02
    > div
    .part02_content
    .right
    .right_youshi
    ul
    li
    a
    .right_icon {
    padding: 22px;
  }
  .index .part02 > div .part02_content .right .right_youshi ul {
    width: 70%;
  }
  .index
    .part02
    > div
    .part02_content
    .right
    .right_youshi
    ul
    li
    a
    .right_icon
    img {
    width: 32px;
  }
  .index .part02 > div .part02_content .right .right_youshi ul li {
    width: 22%;
  }
  .index
    .part02
    > div
    .part02_content
    .right
    .right_youshi
    ul
    li
    a
    .right_youshi_text
    p {
    font-size: 15px;
  }
  .index .part03 > div .title {
    margin-top: 74px;
    margin-bottom: 34px;
  }
  .index .part03 > div .part03_centent ul li .text h3 {
    font-size: 18px;
  }
  .index .part03 > div .part03_centent ul li .text p {
    font-size: 13px;
  }
  .index .part04 {
    padding: 80px 0;
  }
  .index .part01 > div .left .left_content p {
    font-size: 14px;
  }
  .index .part01 > div .left .left_more a p {
    font-size: 14px;
  }
  .index .part04 > div .part04_top .more a p {
    font-size: 14px;
  }
  .index .part01 {
    padding-top: 80px;
  }
  .index
    .part04
    > div
    .part04_bottom
    .part04_bottom_hot
    > div
    ul
    li
    a
    .hot_title_content
    p {
    font-size: 14px;
    width: 90%;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .index
    .part04
    > div
    .part04_bottom
    .part04_bottom_hot
    > div
    ul
    li
    a
    .hot_title_content
    h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .index
    .part04
    > div
    .part04_bottom
    .part04_bottom_hot
    > div
    ul
    li
    a
    .hot_title_icon {
    font-size: 14px;
  }
  .index
    .part04
    > div
    .part04_bottom
    .part04_bottom_hot
    > div
    ul
    li
    a
    .hot_title_icon
    img {
    width: 16px;
    margin-right: 6px;
  }
  .index
    .part04
    > div
    .part04_bottom
    .part04_bottom_hot
    > div
    ul
    li
    a
    .hot_title_content
    span {
    font-size: 14px;
  }
  .index .part04 > div .part04_bottom .part04_bottom_hot > div ul li {
    width: 80%;
  }
  .index .part04 > div .part04_bottom .part04_bottom_hot > div .changeBtn .pre {
    width: 46px;
    height: 46px;
  }
  .index
    .part04
    > div
    .part04_bottom
    .part04_bottom_hot
    > div
    .changeBtn
    .next {
    width: 46px;
    height: 46px;
  }
  .index .part04 > div .part04_bottom .part04_bottom_hot {
    padding: 30px;
  }
  .index
    .part04
    > div
    .part04_bottom
    .part04_bottom_list
    ul
    li
    a
    .img_box
    .img {
    padding-bottom: 220px;
  }
  .index
    .part04
    > div
    .part04_bottom
    .part04_bottom_list
    ul
    li
    a
    .img_box
    .date {
    width: 58%;
  }
  .index
    .part04
    > div
    .part04_bottom
    .part04_bottom_list
    ul
    li
    a
    .img_box
    .date {
    height: 40px;
  }
  .index
    .part04
    > div
    .part04_bottom
    .part04_bottom_list
    ul
    li
    a
    .img_box
    .date
    p {
    line-height: 40px;
    font-size: 12px;
  }
  .index .part04 > div .part04_bottom .part04_bottom_list ul li a .text_box h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .index .part04 > div .part04_bottom .part04_bottom_list ul li a .text_box p {
    font-size: 14px;
  }
  .index .part04 > div .part04_bottom .part04_bottom_list ul li a .text_box {
    padding-bottom: 24px;
  }
  .index .part05 > div .right ul li p {
    font-size: 14px;
  }
  .index .part05 > div .right ul li img {
    width: 40px;
  }
  .index .part05 > div .left h3 {
    padding-bottom: 0px;
  }
  .index .part05 > div .left p {
    text-transform: uppercase;
  }
  footer .footer_box1 > div .left .footer_contact .add p {
    font-size: 12px;
    margin-bottom: 6px;
  }
  footer .footer_box1 > div .left {
    width: 32%;
  }
  footer .footer_box1 > div .left .footer_contact .add p i {
    font-size: 14px;
    margin-right: 4px;
  }
  footer .footer_box1 > div .left .footer_contact .tel p i {
    font-size: 14px;
    margin-right: 4px;
  }
  footer .footer_box1 > div .left .footer_contact .add h4 {
    font-size: 14px;
  }
  footer .footer_box1 > div .left .footer_contact .mail p i {
    font-size: 12px;
    margin-right: 4px;
  }
  footer .footer_box1 > div .left .footer_contact .tel p {
    font-size: 12px;
    margin-bottom: 6px;
  }
  footer .footer_box1 > div .left .footer_contact .tel h4 {
    font-size: 14px;
  }
  footer .footer_box1 > div .left .footer_contact .mail p {
    font-size: 12px;
    margin-bottom: 6px;
  }
  footer .footer_box1 > div .left .footer_contact .mail h4 {
    font-size: 14px;
  }
  footer .footer_box1 > div .right ul li h3 a {
    font-size: 16px;
  }
  footer .footer_box1 > div .right ul li p a {
    font-size: 13px;
  }
  footer .footer_box1 > div .right ul li p {
    margin-bottom: 16px;
  }
  footer .footer_box1 > div .left .footer_logo {
    margin-bottom: 24px;
  }
  footer .footer_box1 > div .erweima {
    width: 10%;
  }
  footer .footer_box1 > div .erweima .text p {
    font-size: 16px;
  }
  footer .footer_box1 > div .erweima .text span {
    font-size: 12px;
    line-height: 24px;
  }
  footer .footer_box1 > div {
    padding-top: 40px;
  }
  footer .footer_box1 {
    height: 320px;
  }
}
.news_details .main {
  margin-bottom: 80px;
  margin-top: 120px;
}
.news_details .main > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.news_details .main > div .left {
  width: 68%;
}
.news_details .main > div .left .news_title {
  border-bottom: 1px dashed #d6d6d6;
  padding-bottom: 24px;
}
.news_details .main > div .left .news_title h3 {
  font-size: 30px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.news_details .main > div .left .news_attribute {
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.news_details .main > div .left .news_attribute .attrItem {
  margin: 0 20px;
}
.news_details .main > div .left .news_attribute .attrItem:first-child {
  margin-left: 0;
}
.news_details .main > div .left .news_attribute .attrItem p {
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.news_details .main > div .left .news_descrition {
  background-color: #edeff8;
  border: 1px solid #d6d6d6;
  width: 100%;
  box-sizing: border-box;
  padding: 24px;
  margin-bottom: 40px;
}
.news_details .main > div .left .news_descrition p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.news_details .main > div .left .news_Content p {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 16px;
}
.news_details .main > div .left .news_Content img {
  width: 100%;
}
.news_details .main > div .right {
  width: 28%;
}
.news_details .main > div .right .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid #d6d6d6;
}
.news_details .main > div .right .top .back {
  width: 48%;
}
.news_details .main > div .right .top .back a {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.news_details .main > div .right .top .share {
  width: 150px;
}
.news_details .main > div .right .top .share .tit {
  float: left;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.news_details .main > div .right .top .share .txt {
  float: left;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.news_details .main > div .right .bottom {
  background-color: #edeff8;
  padding: 10px;
  margin-top: 40px;
}
.news_details .main > div .right .bottom > div {
  background-color: #fff;
  padding: 20px;
}
.news_details .main > div .right .bottom > div ul li {
  margin-bottom: 30px;
  margin-top: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #d6d6d6;
}
.news_details .main > div .right .bottom > div ul li:last-child {
  border: none;
  margin-bottom: 0;
}
.news_details .main > div .right .bottom > div ul li h3 {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
.news_details .main > div .right .bottom > div ul li p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
.news_details .main > div .right .bottom > div ul li span {
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .news_details .main > div .left .news_title h3 {
    font-size: 22px;
  }
  .news_details .main {
    margin-top: 80px;
  }
  .news_details .main > div .left .news_Content p {
    font-size: 14px;
  }
  .news_details .main > div .right .bottom > div ul li h3 {
    font-size: 14px;
  }
}
.contact .main > div .title {
  margin-top: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main > div .title .n_title {
  width: 30%;
}
.contact .main > div .title .descriton {
  width: 64%;
}
.contact .main > div .title .descriton p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.contact .main > div .top {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main > div .top .top_left {
  width: 49%;
}
.contact .main > div .top .top_left .title {
  margin-top: 0;
  padding-bottom: 40px;
  border-bottom: 1px solid #d6d6d6;
}
.contact .main > div .top .top_left .title h3 {
  font-size: 36px;
  color: #0059c1;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contact .main > div .top .top_left .title p {
  font-size: 32px;
  color: #0059c1;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.contact .main > div .top .top_left .content {
  margin-top: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main > div .top .top_left .content .erweima {
  width: 40%;
  margin-right: 4%;
}
.contact .main > div .top .top_left .content .erweima img {
  border: 1px solid #d6d6d6;
  width: 100%;
}
.contact .main > div .top .top_left .content .info {
  width: 56%;
}
.contact .main > div .top .top_left .content .info h3 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 32px;
}
.contact .main > div .top .top_left .content .info p {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 24px;
}
.contact .main > div .top .top_left .content .info .hot_tel {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main > div .top .top_left .content .info .hot_tel span {
  font-size: 18px;
  color: #0059c1;
  line-height: 1.2;
  font-weight: 400;
  text-align: left;
  letter-spacing: 4px;
}
.contact .main > div .top .top_left .content .info .hot_tel p {
  margin-left: 20px;
  font-size: 30px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0;
}
.contact .main > div .top .top_right {
  width: 46%;
}
.contact .main > div .top .top_right h3 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.contact .main > div .top .top_right .message {
  margin-top: 20px;
}
.contact .main > div .top .top_right .message .ms1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main > div .top .top_right .message .ms1 .ms1_sub1 {
  width: 49%;
  height: 60px;
  background-color: #edeff8;
  box-sizing: border-box;
  padding: 10px 20px;
}
.contact .main > div .top .top_right .message .ms1 .ms1_sub1 input {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #edeff8;
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.contact .main > div .top .top_right .message .ms2 {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main > div .top .top_right .message .ms2 .ms2_sub1 {
  width: 49%;
  height: 60px;
  background-color: #edeff8;
  box-sizing: border-box;
  padding: 10px 20px;
}
.contact .main > div .top .top_right .message .ms2 .ms2_sub1 input {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #edeff8;
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.contact .main > div .top .top_right .message .ms3 {
  margin-top: 16px;
  background-color: #edeff8;
  height: 200px;
  box-sizing: border-box;
  padding: 20px;
}
.contact .main > div .top .top_right .message .ms3 textarea {
  width: 100%;
  height: 100%;
}
.contact .main > div .top .top_right .message .ms4 {
  margin-top: 20px;
  width: 100%;
}
.contact .main > div .top .top_right .message .ms4 button {
  width: 100%;
  height: 56px;
  background-color: #0059c1;
  font-size: 16px;
  color: #fff;
  line-height: 56px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .contact .main > div .top .top_left .title p {
    font-size: 22px;
  }
  .contact .main > div .top .top_left .title h3 {
    font-size: 28px;
    margin-bottom: 14px;
  }
  .contact .main > div .top .top_left .content .info h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .contact .main > div .top .top_left .content .info p {
    margin-bottom: 12px;
    font-size: 15px;
  }
  .contact .main > div .top .top_right h3 {
    font-size: 18px;
  }
  .contact .main > div .top .top_right .message .ms3 {
    height: 150px;
  }
}
@media screen and (max-width: 992px) {
  .contact .main > div .top .top_left {
    width: 100%;
  }
  .contact .main > div .top .top_right {
    width: 100%;
  }
  .contact .main > div .top .top_left .content .erweima {
    width: 60%;
    margin: 0 auto;
  }
  .contact .main > div .top .top_left .content .info {
    width: 100%;
    margin-top: 20px;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.h992-w {
  display: none;
}
.w80 {
  width: 80%;
  margin: 0 auto;
}
.hide {
  display: none;
}
.imgShow {
  width: 100%;
  height: 0;
  padding-bottom: 0;
  transition: all 0.5s ease;
  background: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.imgShow.on {
  padding-bottom: 100vh;
}
.imgShow .imgShow_box {
  width: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.imgShow .imgShow_box .img img {
  width: 100%;
}
.imgShow .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 66%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.imgShow .btn .left {
  opacity: 0.4;
}
.imgShow .btn .right {
  opacity: 0.4;
}
.imgShow .closed {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #063190;
  padding: 16px;
  cursor: pointer;
}
.goTop {
  position: fixed;
  bottom: 200px;
  right: 40px;
  transform: rotate(-90deg);
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.09);
}
@media screen and (max-width: 992px) {
  .w80 {
    width: 90%;
  }
  .index .part01 {
    padding-top: 60px;
  }
  .index .part01 > div .left {
    width: 100%;
  }
  .index .part01 > div .left .left_title .left_title_top img {
    width: 50px;
  }
  .index .part01 > div .left .left_title .left_title_top h3 {
    font-size: 40px;
    margin-left: 10px;
  }
  .index .part01 > div .left .left_title .left_title_bottom p {
    font-size: 20px;
  }
  .index .part01 > div .right {
    width: 100%;
    margin-top: 30px;
  }
  .index .part02 > div .part02_content .left {
    width: 100%;
  }
  .index .part02 > div .part02_content .left .img {
    border-radius: 40px 0 0 0;
  }
  .title.w h3 {
    font-size: 20px;
  }
  .title.w p {
    font-size: 16px;
  }
  .index .part02 > div .part02_content .right {
    width: 100%;
    margin-top: 30px;
  }
  .index .part02 > div .part02_content .right .right_title h3 {
    font-size: 20px;
  }
  .index .part02 > div .part02_content .right .right_youshi ul {
    width: 100%;
  }
  .index .part03 > div .part03_centent ul li {
    border-radius: 12px 0 0 0;
  }
  .title h3 {
    font-size: 20px;
  }
  .title p {
    font-size: 16px;
  }
  .index .part03 > div .title {
    margin-top: 62px;
  }
  .index .part03 > div .part03_centent ul li .text h3 {
    font-size: 14px;
  }
  .index .part03 > div .part03_centent ul li .text p {
    display: none;
  }
  .index .part03 {
    padding-bottom: 70px;
  }
  .index .part04 {
    padding: 70px 0;
  }
  .title.l h3 {
    font-size: 20px;
  }
  .title.l p {
    font-size: 14px;
  }
  .index .part04 > div .part04_bottom .part04_bottom_hot > div .changeBtn {
    display: none;
  }
  .index
    .part04
    > div
    .part04_bottom
    .part04_bottom_hot
    > div
    ul
    li
    a
    .hot_title_content
    p {
    width: 100%;
  }
  .index
    .part04
    > div
    .part04_bottom
    .part04_bottom_hot
    > div
    ul
    li
    a
    .hot_title_content
    h3 {
    font-size: 16px;
    font-weight: bold;
  }
  .index .part04 > div .part04_bottom .part04_bottom_list ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .index .part05 > div .left h3 {
    font-size: 20px;
  }
  .index .part05 > div .left p {
    font-size: 16px;
  }
  .index .part05 > div .left {
    width: 94px;
  }
  .index .part05 {
    height: 70px;
  }
  footer .footer_box1 > div .left {
    width: 100%;
  }
  footer .footer_box1 > div .right {
    display: none;
  }
  footer .footer_box1 > div .erweima {
    display: none;
  }
  footer .footer_box2 > div .left p {
    display: none;
  }
  footer .footer_box2 > div .left a {
    margin-left: 0;
    font-size: 14px;
  }
  footer .footer_box2 > div .right a {
    font-size: 14px;
  }
  .n_nav_list > div .list {
    display: none;
  }
  .about .main .part01 > div .about_text {
    width: 100%;
    position: static;
    transform: translateY(0);
    padding-top: 70px;
  }
  .n_nav_list > div .backhome {
    float: left;
  }
  .n_nav_list > div {
    line-height: 50px;
  }
  .about .main .part01 > div .video {
    width: 100%;
  }
  .about .main .part01 > div .video {
    position: static;
    transform: translateY(0);
  }
  .about .main .part01 > div .about_text .about_text_t h2 {
    font-size: 20px;
  }
  .n_banner > div .text p {
    font-size: 14px;
    line-height: 1.5;
  }
  .n_banner > div .text h3 {
    font-size: 18px;
  }
  .about .main .part01 > div .about_text .about_text_t h3 {
    font-size: 15px;
  }
  .about .main .part01 {
    height: auto;
    padding-bottom: 70px;
  }
  .about .main .part01 > div .video .video_t .video_t_img {
    padding-bottom: 180px;
  }
  .about .main .part01 > div .video .video_t .video_t_btn img {
    width: 46px;
  }
  .about .main .part01 > div .video .video_b p {
    font-size: 14px;
  }
  .about .main .part02 {
    display: none;
  }
  .about .main .part03 > div .part01_text {
    width: 100%;
  }
  .about .main .part03 > div .part01_img {
    width: 100%;
  }
  .about .main .part03::after {
    width: 100%;
  }
  .about .main .part03 > div {
    top: 0;
  }
  .about .main .part03 {
    background-color: #fff;
    margin-bottom: 60px;
  }
  .about .main .part03 > div .part01_text h3 {
    font-size: 20px;
    margin-top: 50px;
  }
  .project .main .part01 > div .left {
    width: 100%;
    border-radius: 20px 0 0 0;
  }
  .project .main .part01 > div .right {
    width: 100%;
    margin-top: 20px;
  }
  .project .main .part01 > div .left img {
    width: 100%;
  }
  .project .main .part01 {
    padding: 60px 0;
  }
  .project .main .part01 > div .right h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .project .main .part01 > div .right h3::after {
    margin-top: 14px;
  }
  .project .main .part01 > div .right p {
    font-size: 15px;
  }
  .project .main .part02 > div .part02_top h3 {
    font-size: 20px;
  }
  .project .main .part02 {
    height: auto;
    padding-bottom: 60px;
  }
  .project .main .part02 > div .part02_bottom .left {
    padding: 20px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .project .main .part02 > div .part02_bottom .right {
    padding: 20px;
    width: 100%;
    height: auto;
  }
  .project .main .part03 > div .left {
    display: none;
  }
  .project .main .part03 > div .right {
    width: 100%;
  }
  .project .main .part03 {
    margin: 60px 0;
  }
  .project .main .part03 > div .right > div p {
    width: calc(100% - 40px);
    line-height: 1.3;
  }
  .project .main .part03 > div .right h3 {
    font-size: 20px;
  }
  .project .main .part02 > div .part02_bottom .left h4 {
    font-size: 18px;
  }
  .project .main .part02 > div .part02_bottom .left h3 {
    font-size: 42px;
  }
  .project .main .part02 > div .part02_bottom .right h3 {
    font-size: 42px;
  }
  .project .main .part02 > div .part02_bottom .right h4 {
    font-size: 18px;
  }
  .project .main .part04 {
    padding: 60px 0;
  }
  .project .main .part04 > div .left h3 {
    font-size: 20px;
  }
  .project .main .part04 > div .left {
    width: 100%;
  }
  .project .main .part04 > div .right {
    width: 100%;
  }
  .product .main .part01 .part01_sub1 > div .left {
    width: 100%;
  }
  .product .main .n_title > h2 {
    font-size: 20px;
  }
  .product .main .n_title > h2::after {
    margin-top: 10px;
  }
  .product .main .part01 .part01_sub1 {
    margin-top: 30px;
  }
  .product .main .part01 .part01_sub1 > div .right {
    width: 100%;
    position: static;
    transform: translateY(0);
  }
  .product .main .part01 .part01_sub1 > div .right .right_top h3 {
    font-size: 18px;
  }
  .product .main .part01 .part01_sub2 > div .right {
    width: 100%;
    left: 0;
  }
  .product .main .part01 .part01_sub2 > div .left {
    width: 100%;
    position: static;
    transform: translateY(0);
  }
  .product .main .part02 {
    height: 336px;
  }
  .product .main .part02 .part02_img ul li .text {
    top: 40px;
  }
  .product .main .part02 .part02_img ul li .text .title h2 {
    font-size: 18px;
  }
  .product .main .part02 .part02_img ul li .text .title p {
    font-size: 13px;
  }
  .product .main .part02 .part02_img ul li .text p {
    width: 100%;
  }
  .product .main .part02 .part02_img ul li .text h4 {
    font-size: 16px;
  }
  .product .main .part02 .part02_img ul li .bg img {
    width: 220% !important;
  }
  .product .main .part02 .part02_nav ul li .img {
    margin-top: 10px;
  }
  .product .main .part02 .part02_nav ul li .img img {
    width: 36px;
  }
  .product .main .part02 .part02_nav ul li .text {
    font-size: 14px;
    margin-top: 0;
  }
  .product .main .part02 .part02_nav {
    height: 80px;
  }
  .product .main .part02 .part02_nav ul {
    height: 80px;
  }
  .news .main > div:first-of-type .news_part01 {
    display: none;
  }
  .news .main > div:first-of-type .newsBoxTitle {
    display: none;
  }
  .news .main > div:nth-of-type(2) .newsBoxTitle h3 {
    font-size: 20px;
  }
  .news .main > div:nth-of-type(2) .newsBoxTitle h3::after {
    margin-top: 10px;
  }
  .news .main > div:nth-of-type(2) .newsBoxTitle p {
    margin-top: 20px;
  }
  .news .main > div:nth-of-type(2) .news_part02 ul li {
    width: 100%;
  }
  .contact .main > div .title .n_title {
    width: 100%;
  }
  .contact .main > div .title .descriton {
    width: 100%;
  }
  .contact .main > div .title .descriton p {
    font-size: 14px;
  }
  .contact .main > div .title {
    margin-top: 70px;
  }
  .n_title h3::after {
    width: 40px;
    height: 3px;
    margin: 14px 0;
  }
  .contact .main > div .ditu .contact_info {
    position: static;
    width: 100%;
    box-shadow: none;
    padding: 0;
  }
  .news_details .main > div .right {
    display: none;
  }
  .news_details .main > div .left {
    width: 100%;
  }
  .news_details .main > div .left .news_attribute .attrItem {
    display: none;
  }
  .news_details .main > div .left .news_attribute .attrItem:nth-of-type(1) {
    display: block;
  }
  .news_details .main > div .left .news_title h3 {
    font-size: 20px;
  }
}
