header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background-color: #ffffff;
  line-height: 100px;
  height: 100px;
}
header > div {
  line-height: inherit;
  overflow: initial !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo {
  width: 36%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo .logo_img {
  margin-right: 20px;
}
header > div .logo .logo_img a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo .logo_img a img {
  height: 52px;
}
header > div .logo .logo_text a h3 {
  font-size: 26px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 10px;
}
header > div .logo .logo_text a p {
  font-size: 14px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
header > div nav {
  width: 64%;
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul {
  width: 90%;
  width: calc(100% - 100px);
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul li {
  line-height: inherit;
  width: 14%;
  z-index: 999;
  transition: all 1s;
}
header > div nav ul li.ab {
  width: 18%;
}
header > div nav ul li:hover {
  background-color: #e6f2f8;
}
header > div nav ul li:hover .menu {
  height: auto;
  opacity: 1;
}
header > div nav ul li a {
  display: block;
  font-size: 16px;
  color: #333;
  line-height: inherit;
  font-weight: 400;
  text-align: center;
}
header > div nav ul li .menu {
  opacity: 0;
  overflow: hidden;
  height: 0;
  width: 100%;
  transition: all 1s;
  position: absolute;
  top: 100px;
  left: 0;
  background-color: #e6f2f8;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul li .menu .menu_item {
  margin: 0 10px;
  padding: 0 20px;
}
header > div nav ul li .menu .menu_item a {
  font-size: 14px;
  color: #333;
  line-height: 50px;
  font-weight: 400;
  text-align: center;
}
header > div nav ul li .menu .menu_item:hover {
  background-color: #004593;
}
header > div nav ul li .menu .menu_item:hover a {
  color: #fff;
}
header > div nav .tool {
  width: 80px;
  border-left: 1px solid #dfdfdf;
  padding-left: 10px;
}
header > div nav .tool > a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav .tool > a h3 {
  margin-left: 10px;
  margin-right: 10px;
  font-size: 14px;
  color: #333;
  line-height: 14px;
  font-weight: 400;
  text-align: center;
}
header > div nav .tool > a .img {
  width: 30px;
  height: 30px;
  border-radius: 20px;
  background-color: #b8b8b8;
  line-height: 40px;
}
header > div nav .tool > a .img img {
  width: 100%;
}
@media screen and (max-width: 1440px) {
  header {
    height: 92px;
    line-height: 92px;
  }
  header > div nav ul li a {
    font-size: 15px;
  }
  header > div nav .tool > a .img {
    width: 26px;
    height: 26px;
    line-height: 26px;
  }
  header > div .logo .logo_text a h3 {
    font-size: 20px;
  }
  header > div .logo .logo_img a img {
    height: 44px;
  }
  header > div nav ul li.ab {
    width: 18%;
  }
}
@media screen and (max-width: 992px) {
  header {
    display: none;
  }
}
.more {
  width: 200px;
  height: 54px;
  background-color: #004593;
  line-height: 54px;
  text-align: center;
  border-radius: 6px;
}
.more a span {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.more a i {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .more {
    width: 160px;
    height: 48px;
    line-height: 48px;
  }
  .more a span {
    font-size: 13px;
  }
  .more a i {
    font-size: 13px;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
footer .top {
  width: 100%;
  height: 380px;
  background-color: #000;
  box-sizing: border-box;
  padding-top: 60px;
}
footer .top .w80 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .left {
  width: 24%;
}
footer .top .w80 .left .title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
footer .top .w80 .left .title img {
  width: initial;
}
footer .top .w80 .left .title h3 {
  margin-left: 14px;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
footer .top .w80 .left .l_text p {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  opacity: 0.6;
  margin-bottom: 20px;
}
footer .top .w80 .left .l_icons {
  margin-top: 30px;
}
footer .top .w80 .left .l_icons ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .left .l_icons ul li {
  margin-right: 12px;
}
footer .top .w80 .center {
  box-sizing: border-box;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  width: 55%;
  padding: 0px 4% 30px;
  height: 270px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer .top .w80 .center dl:nth-of-type(1) {
  display: none;
}
footer .top .w80 .center dl:nth-of-type(3) {
  display: none;
}
footer .top .w80 .center dl dt {
  margin-bottom: 20px;
}
footer .top .w80 .center dl dt a {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
footer .top .w80 .center dl dd {
  opacity: 0.6;
}
footer .top .w80 .center dl dd a {
  font-size: 16px;
  color: #fff;
  line-height: 2.4;
  font-weight: 400;
  text-align: left;
}
footer .top .w80 .right {
  width: 21%;
  height: 270px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
}
footer .top .w80 .right .img {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 14px;
  border-radius: 8px;
  margin: 0 auto;
  width: 158px;
}
footer .top .w80 .right .img img {
  display: block;
}
footer .top .w80 .right .r_txt {
  margin-top: 10px;
  opacity: 0.6;
}
footer .top .w80 .right .r_txt h3 {
  font-size: 17px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  display: none;
}
footer .top .w80 .right .r_txt p {
  margin-top: 20px;
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
  font-weight: 400;
  text-align: center;
}
footer .bottom {
  background-color: #004593;
}
footer .bottom .w80 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .bottom .w80 .left a {
  font-size: 15px;
  color: #fff;
  line-height: 60px;
  font-weight: 400;
  text-align: left;
  opacity: 0.6;
}
footer .bottom .w80 .right a {
  font-size: 15px;
  color: #fff;
  line-height: 60px;
  font-weight: 400;
  text-align: left;
  opacity: 0.6;
}
@media screen and (max-width: 1440px) {
  footer .top .w80 .left .title h3 {
    font-size: 24px;
  }
  footer .top .w80 .left .l_text p {
    margin-bottom: 16px;
    font-size: 14px;
  }
  footer .top .w80 .center dl dt a {
    font-size: 16px;
  }
  footer .top .w80 .center dl dd a {
    font-size: 13px;
  }
  footer .top .w80 .right .img img {
    width: 100%;
  }
  footer .top .w80 .right .img {
    width: 112px;
  }
  footer .top .w80 .right .r_txt h3 {
    font-size: 15px;
  }
  footer .top .w80 .center {
    height: 230px;
  }
  footer .top .w80 .right {
    height: 230px;
  }
  footer .bottom .w80 .left a {
    line-height: 52px;
    font-size: 13px;
  }
  footer .bottom .w80 .right a {
    line-height: 52px;
    font-size: 13px;
  }
  footer .bottom .w80 .left {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  footer .top .w80 .center {
    display: none;
  }
  footer .top .w80 .left {
    width: 100%;
  }
  footer .top .w80 .right {
    display: none;
  }
}
.index .content .part01 {
  padding-top: 128px;
  background-image: url(/images/part01_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 140px;
  position: relative;
}
.index .content .part01 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .content .part01 .w80 .top .t_left p {
  font-size: 18px;
  color: #004593;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .content .part01 .w80 .top .t_left p::after {
  display: block;
  content: "";
  width: 60px;
  height: 2px;
  background-color: #004593;
  margin-left: 40px;
}
.index .content .part01 .w80 .top .t_left h4 {
  font-size: 28px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .content .part01 .w80 .top .t_right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .content .part01 .w80 .bottom {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .content .part01 .w80 .bottom .b_left {
  width: 44%;
}
.index .content .part01 .w80 .bottom .b_left .b_left_box h3 {
  font-size: 26px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 30px;
}
.index .content .part01 .w80 .bottom .b_left .b_left_box h3::after {
  margin-top: 10px;
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: #004593;
}
.index .content .part01 .w80 .bottom .b_left .b_left_box p {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 16px;
  text-indent: 2rem;
}
.index .content .part01 .w80 .bottom .b_left .b_left_box2 {
  margin-top: 100px;
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .content .part01 .w80 .bottom .b_left .b_left_box2 .item .t_top {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}
.index .content .part01 .w80 .bottom .b_left .b_left_box2 .item .t_top h2 {
  font-size: 46px;
  color: #004593;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .content .part01 .w80 .bottom .b_left .b_left_box2 .item .t_top span {
  font-size: 15px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 4px;
  margin-left: 4px;
}
.index .content .part01 .w80 .bottom .b_left .b_left_box2 .item .t_bottom {
  margin-top: 8px;
  font-size: 14px;
  color: #666;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .content .part01 .w80 .bottom .b_right {
  position: absolute;
  top: 250px;
  right: 0;
  width: 50%;
}
.index .content .part01 .w80 .bottom .b_right .b_right_box {
  padding-bottom: 40px;
}
.index .content .part01 .w80 .bottom .b_right .b_right_box ul li {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.index .content .part01 .w80 .bottom .b_right .b_right_box ul li .num {
  position: absolute;
  z-index: 2;
  left: 10%;
  top: 50px;
  font-size: 44px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.index .content .part01 .w80 .bottom .b_right .b_right_box ul li .box {
  width: 80%;
  position: absolute;
  z-index: 3;
  bottom: 8%;
  left: 10%;
}
.index .content .part01 .w80 .bottom .b_right .b_right_box ul li .box .text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .content .part01 .w80 .bottom .b_right .b_right_box ul li .box .text .icona {
  width: initial;
}
.index .content .part01 .w80 .bottom .b_right .b_right_box ul li .box .text h3 {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-left: 10px;
}
.index .content .part01 .w80 .bottom .b_right .b_right_box ul li .box .t_txt {
  margin-top: 12px;
}
.index .content .part01 .w80 .bottom .b_right .b_right_box ul li .box .t_txt p {
  font-size: 15px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.index .content .part01 .w80 .bottom .b_right .b_right_box ul li .img {
  position: relative;
}
.index .content .part01 .w80 .bottom .b_right .b_right_box ul li .img img {
  width: 100%;
}
.index .content .part01 .w80 .bottom .b_right .b_right_box ul li .img::after {
  display: block;
  content: "";
  width: 100%;
  height: 30%;
  bottom: 0;
  left: 0;
  position: absolute;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}
.index .content .part01 .w80 .bottom .b_right .b_right_box .swiper-pagination span {
  width: 40px;
  height: 2px;
  border-radius: 0;
}
.index .content .part02 {
  width: 100%;
}
.index .content .part02 .top {
  width: 100%;
  height: 172px;
  background-color: #004593;
  position: relative;
}
.index .content .part02 .top::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  background-position: bottom center;
  transition: ease 0.5s;
  bottom: 7px;
  position: absolute;
  left: 0;
}
.index .content .part02 .top .w80 ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 172px;
  line-height: 172px;
}
.index .content .part02 .top .w80 ul li {
  height: inherit;
  position: relative;
  cursor: pointer;
  width: 15%;
}
.index .content .part02 .top .w80 ul li p {
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: center;
}
.index .content .part02 .top .w80 ul li::after {
  content: "";
  display: block;
  width: 0%;
  height: 11px;
  background-image: url(/images/h_bg.png);
  background-position: bottom center;
  transition: ease 0.5s;
  bottom: 6px;
  position: absolute;
  left: 50%;
}
.index .content .part02 .top .w80 ul li.active p {
  font-size: 22px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.index .content .part02 .top .w80 ul li.active::after {
  width: 100%;
  left: 0;
}
.index .content .part02 .bottom {
  width: 100%;
  height: 680px;
  background-image: url(/images/part02_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.index .content .part02 .bottom .w80 {
  height: inherit;
}
.index .content .part02 .bottom .w80 .proList {
  height: inherit;
}
.index .content .part02 .bottom .w80 .proList ul {
  position: relative;
  height: inherit;
}
.index .content .part02 .bottom .w80 .proList ul li {
  position: absolute;
  left: 0;
  right: 0;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .content .part02 .bottom .w80 .proList ul li.active {
  z-index: 3;
}
.index .content .part02 .bottom .w80 .proList ul li.active .text h5 {
  transform: translateX(0px);
  opacity: 1;
  transition: all 3s ease;
}
.index .content .part02 .bottom .w80 .proList ul li.active .text h2 {
  transform: translateX(0px);
  opacity: 1;
  transition: all 3s ease 0.15s;
}
.index .content .part02 .bottom .w80 .proList ul li.active .text h3 {
  transform: translateX(0px);
  opacity: 1;
  transition: all 3s ease 0.3s;
}
.index .content .part02 .bottom .w80 .proList ul li.active .text .more {
  opacity: 1;
  transition: all 3s ease;
}
.index .content .part02 .bottom .w80 .proList ul li.active .img {
  transform: translateY(0px);
  opacity: 1;
  transition: all 3s ease;
}
.index .content .part02 .bottom .w80 .proList ul li .text {
  width: 46%;
}
.index .content .part02 .bottom .w80 .proList ul li .text h5 {
  font-size: 20px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 26px;
  transform: translateX(150px);
  opacity: 0;
}
.index .content .part02 .bottom .w80 .proList ul li .text h2 {
  font-size: 40px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 40px;
  transform: translateX(150px);
  opacity: 0;
}
.index .content .part02 .bottom .w80 .proList ul li .text h3 {
  font-size: 30px;
  color: #000;
  line-height: 1.3;
  font-weight: 100;
  text-align: left;
  margin-bottom: 130px;
  transform: translateX(150px);
  opacity: 0;
}
.index .content .part02 .bottom .w80 .proList ul li .text .more {
  opacity: 0;
}
.index .content .part02 .bottom .w80 .proList ul li .img {
  width: 50%;
  opacity: 0;
  transform: translateY(100px);
}
.index .content .part02 .bottom .w80 .proList ul li .img img {
  width: 100%;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub1 {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub1 .left .top h4 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 18px;
  color: #004593;
  line-height: 1;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub1 .left .top h4::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  background-color: #004593;
  margin-left: 20px;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub1 .left .bottom {
  margin-top: 10px;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub1 .left .bottom h3 {
  font-size: 36px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub1 .right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub1 .right .right_sub1 {
  width: 40%;
  width: calc(100% - 884px);
  display: none;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub1 .right .right_sub1 p {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub1 .right .right_sub2 {
  width: 574px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub1 .right .right_sub2 a {
  display: inline-block;
  width: 33%;
  background-color: #f1f1f1;
  position: relative;
  font-size: 16px;
  color: #333;
  line-height: 72px;
  font-weight: 400;
  text-align: left;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub1 .right .right_sub2 a::before {
  content: "";
  display: block;
  width: 3px;
  height: 16px;
  background-color: #004593;
  margin-right: 16px;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub1 .right .right_sub2 a:hover {
  background-color: #004593;
  color: #fff;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub1 .right .right_sub2 a:hover::before {
  background-color: #f1f1f1;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 {
  margin-top: 70px;
  margin-bottom: 110px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .left {
  width: 48%;
  height: auto;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a:hover .left_sub1 .left_sub1_sub2 img {
  transform: scale(1.1);
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a:hover .left_sub2 {
  background-color: #004593;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a:hover .left_sub2 h3 {
  color: #fff;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a:hover .left_sub2 p {
  color: #fff;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a:hover .left_sub2 span {
  color: #fff;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub1 {
  width: 100%;
  position: relative;
  height: 418px;
  cursor: pointer;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub1 .left_sub1_sub1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 47%;
  background: rgba(255, 255, 255, 0.6);
  padding: 24px 64px;
  box-sizing: border-box;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub1 .left_sub1_sub1 .tag p {
  font-size: 16px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub1 .left_sub1_sub1 .line {
  font-size: 18px;
  color: #004593;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub1 .left_sub1_sub1 .date {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub1 .left_sub1_sub1 .date i {
  margin-right: 10px;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub1 .left_sub1_sub2 {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  height: 0;
  overflow: hidden;
  padding-bottom: 418px;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub1 .left_sub1_sub2 img {
  transition: all 0.5s ease;
  width: 100%;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub2 {
  width: 100%;
  height: auto;
  margin-top: 14px;
  background-color: #f9fafc;
  padding: 30px 48px 20px;
  box-sizing: border-box;
  transition: all 0.5s ease;
  cursor: pointer;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub2 h3 {
  font-size: 20px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 16px;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub2 p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 32px;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub2 span {
  font-size: 16px;
  color: #000;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub2 span i {
  margin-left: 10px;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right {
  width: 49%;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 {
  width: 48.5%;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 a {
  display: block;
  width: 100%;
  height: auto;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 a:hover .top_sub1_sub1 .img img {
  transform: scale(1.1);
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 a:hover .top_sub1_sub2 {
  background-color: #004593;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 a:hover .top_sub1_sub2 h3 {
  color: #fff;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 a:hover .top_sub1_sub2 span {
  color: #fff;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 a .top_sub1_sub1 {
  position: relative;
  width: 100%;
  height: 270px;
  overflow: hidden;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 a .top_sub1_sub1 .txt {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 48%;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
  color: #000;
  line-height: 60px;
  font-weight: 400;
  text-align: center;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 a .top_sub1_sub1 .txt i {
  margin-right: 8px;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 a .top_sub1_sub1 .img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 0;
  padding-bottom: 280px;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 a .top_sub1_sub1 .img img {
  height: 270px;
  transition: all 0.5s ease;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 a .top_sub1_sub2 {
  width: 100%;
  height: auto;
  background-color: #f4f6f9;
  box-sizing: border-box;
  padding: 24px;
  margin-top: 10px;
  transition: all 0.5s ease;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 a .top_sub1_sub2 h3 {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  height: 54px;
  margin-bottom: 6px;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 a .top_sub1_sub2 span {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 a .top_sub1_sub2 span i {
  margin-left: 10px;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 {
  width: 48.5%;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 a {
  display: block;
  width: 100%;
  height: auto;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 a:hover .top_sub2_sub1 .img img {
  transform: scale(1.1);
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 a:hover .top_sub2_sub2 {
  background-color: #004593;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 a:hover .top_sub2_sub2 h3 {
  color: #fff;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 a:hover .top_sub2_sub2 span {
  color: #fff;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 a .top_sub2_sub1 {
  position: relative;
  width: 100%;
  height: 270px;
  overflow: hidden;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 a .top_sub2_sub1 .txt {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 48%;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
  color: #000;
  line-height: 60px;
  font-weight: 400;
  text-align: center;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 a .top_sub2_sub1 .txt i {
  margin-right: 8px;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 a .top_sub2_sub1 .img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 0;
  padding-bottom: 280px;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 a .top_sub2_sub1 .img img {
  height: 270px;
  transition: all 0.5s ease;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 a .top_sub2_sub2 {
  width: 100%;
  height: auto;
  background-color: #f4f6f9;
  box-sizing: border-box;
  padding: 24px;
  margin-top: 10px;
  transition: all 0.5s ease;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 a .top_sub2_sub2 h3 {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  height: 54px;
  margin-bottom: 6px;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 a .top_sub2_sub2 span {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 a .top_sub2_sub2 span i {
  margin-left: 10px;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .bottom {
  margin-top: 6px;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .bottom ul li {
  border-bottom: 1px solid #efefef;
  transition: all 0.5s ease;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .bottom ul li:hover {
  background-color: #004593;
  padding: 0 20px;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .bottom ul li:hover a h3 {
  color: #fff;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .bottom ul li:hover a p {
  color: #fff;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .bottom ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .bottom ul li a h3 {
  font-size: 18px;
  color: #333;
  line-height: 72px;
  font-weight: 400;
  text-align: left;
}
.index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .bottom ul li a p {
  font-size: 16px;
  color: #333;
  line-height: 72px;
  font-weight: 400;
  text-align: left;
}
.index .content .part04 {
  border-top: 6px solid #f0f0f0;
  border-bottom: 6px solid #f0f0f0;
  padding-top: 50px;
  padding-bottom: 50px;
}
.index .content .part04 .w80 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .content .part04 .w80 .left {
  width: 210px;
}
.index .content .part04 .w80 .left .top h4 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 18px;
  color: #004593;
  line-height: 1;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
  display: none;
}
.index .content .part04 .w80 .left .top h4::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  background-color: #004593;
  margin-left: 20px;
}
.index .content .part04 .w80 .left .bottom {
  margin-top: 10px;
}
.index .content .part04 .w80 .left .bottom h3 {
  font-size: 36px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .content .part04 .w80 .right {
  width: calc(100% - 250px);
}
.index .content .part05 {
  width: 100%;
  height: 500px;
  background-image: url(/images/part05_bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  background-size: cover;
}
.index .content .part05 .w80 {
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .content .part05 .w80 .part05_box .p_b_1 .top h4 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
  display: none;
}
.index .content .part05 .w80 .part05_box .p_b_1 .top h4::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  background-color: #fff;
  margin-left: 20px;
}
.index .content .part05 .w80 .part05_box .p_b_1 .bottom {
  margin-top: 10px;
}
.index .content .part05 .w80 .part05_box .p_b_1 .bottom h3 {
  font-size: 36px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .content .part05 .w80 .part05_box .p_b_2 {
  margin-top: 30px;
  width: 84%;
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 1680px) {
  .index .content .part01 .w80 .bottom .b_left .b_left_box2 {
    margin-top: 50px;
    margin-bottom: 44px;
  }
  .index .content .part01 .w80 .bottom .b_left .b_left_box p {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1440px) {
  .index .content .part01 .w80 .top .t_left h4 {
    font-size: 24px;
  }
  .index .content .part01 .w80 .top .t_right p {
    width: calc(100% - 180px);
    font-size: 15px;
    line-height: 1.8;
  }
  .index .content .part01 .w80 .bottom .b_left .b_left_box h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .index .content .part01 .w80 .bottom .b_left .b_left_box p {
    font-size: 14px;
  }
  .index .content .part01 .w80 .bottom .b_left .b_left_box2 .item .t_top h2 {
    font-size: 36px;
  }
  .index .content .part01 .w80 .bottom .b_left .b_left_box2 .item .t_top span {
    font-size: 13px;
  }
  .index .content .part01 .w80 .bottom .b_left .b_left_box2 .item .t_bottom {
    font-size: 13px;
  }
  .index .content .part01 .w80 .bottom .b_right .b_right_box ul li .box .text h3 {
    font-size: 20px;
  }
  .index .content .part01 .w80 .bottom .b_right .b_right_box ul li .box .t_txt p {
    font-size: 14px;
    line-height: 1.4;
  }
  .index .content .part01 .w80 .bottom .b_right .b_right_box ul li .box .text .icona img {
    width: 24px;
  }
  .index .content .part01 .w80 .bottom .b_right .b_right_box ul li .num {
    font-size: 38px;
  }
  .index .content .part01 .w80 .bottom .b_left .b_left_box2 {
    margin-top: 40px;
    margin-bottom: 34px;
  }
  .index .content .part02 .top {
    height: 152px;
  }
  .index .content .part02 .top .w80 ul {
    height: 152px;
    line-height: 152px;
  }
  .index .content .part02 .top .w80 ul li.active p {
    font-size: 20px;
  }
  .index .content .part02 .top .w80 ul li p {
    font-size: 16px;
    font-weight: normal;
  }
  .index .content .part02 .bottom {
    height: 580px;
  }
  .index .content .part02 .bottom .w80 .proList ul li .text h2 {
    font-size: 24px;
  }
  .index .content .part02 .bottom .w80 .proList ul li .text h5 {
    margin-bottom: 12px;
    font-size: 16px;
  }
  .index .content .part02 .bottom .w80 .proList ul li .text h3 {
    margin-bottom: 90px;
  }
  .index .content .part02 .bottom .w80 .proList ul li .text h3 {
    font-size: 20px;
  }
  .index .content .part02 .bottom .w80 .proList ul li .img {
    width: 44%;
    text-align: center;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub1 .left .bottom h3 {
    font-size: 30px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub1 .right .right_sub2 {
    width: 570px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub1 .right .right_sub2 a {
    line-height: 52px;
    font-size: 15px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub1 .right .right_sub2 a::before {
    width: 2px;
    margin-right: 10px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub1 .right .right_sub1 {
    width: calc(100% - 504px);
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub1 .right .right_sub1 p {
    font-size: 15px;
    line-height: 1.6;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 {
    margin-top: 54px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub1 {
    height: 330px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub1 .left_sub1_sub1 {
    padding: 16px 30px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub1 .left_sub1_sub2 {
    padding-bottom: 330px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub2 {
    padding: 20px 30px 20px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub2 h3 {
    font-size: 16px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub2 p {
    font-size: 14px;
    line-height: 1.5;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub2 span {
    font-size: 13px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub2 span i {
    font-size: 13px;
    margin-left: 4px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 a .top_sub1_sub1 {
    height: 190px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 a .top_sub1_sub1 .img {
    height: 190px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 a .top_sub1_sub1 .img img {
    height: 190px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 a .top_sub2_sub1 {
    height: 190px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 a .top_sub2_sub1 .img {
    height: 190px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 a .top_sub2_sub1 .img img {
    height: 190px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 a .top_sub2_sub1 .txt {
    width: 50%;
    line-height: 42px;
    font-size: 13px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 a .top_sub1_sub1 .txt {
    width: 50%;
    line-height: 42px;
    font-size: 13px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 a .top_sub1_sub2 h3 {
    font-size: 16px;
    line-height: 1.2;
    height: 46px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 a .top_sub1_sub2 {
    padding: 16px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 a .top_sub1_sub2 span {
    font-size: 13px;
    line-height: 1;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub1 a .top_sub1_sub2 span i {
    margin-left: 6px;
    font-size: 13px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 a .top_sub2_sub2 {
    padding: 16px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 a .top_sub2_sub2 h3 {
    font-size: 16px;
    line-height: 1.3;
    height: 46px;
    overflow: hidden;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 a .top_sub2_sub2 span {
    font-size: 13px;
    line-height: 1;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .top .top_sub2 a .top_sub2_sub2 span i {
    margin-left: 6px;
    font-size: 13px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .bottom ul li a h3 {
    font-size: 16px;
    line-height: 68px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .bottom ul li a p {
    font-size: 14px;
    line-height: 68px;
  }
  .index .content .part04 .w80 .left .bottom h3 {
    font-size: 30px;
  }
  .index .content .part04 .w80 .right ul li img {
    width: 100%;
  }
  .index .content .part05 {
    height: 430px;
  }
  .index .content .part05 .w80 .part05_box .p_b_1 .bottom h3 {
    font-size: 30px;
  }
  .index .content .part05 .w80 .part05_box .p_b_2 {
    font-size: 15px;
  }
}
@media screen and (max-width: 992px) {
  .index .content .part01 .w80 .top .t_left {
    width: 100%;
  }
  .index .content .part01 .w80 .top .t_right {
    width: 100%;
  }
  .index .content .part01 .w80 .top .t_left h4 {
    font-size: 20px;
  }
  .index .content .part01 .w80 .top .t_left p {
    font-size: 16px;
    letter-spacing: 0;
  }
  .index .content .part01 .w80 .top .t_right p {
    width: 100%;
    margin-top: 30px;
  }
  .index .content .part01 .w80 .bottom {
    width: 100%;
  }
  .index .content .part01 .w80 .bottom .b_left {
    width: 100%;
  }
  .index .content .part01 .w80 .bottom .b_right {
    width: 100%;
    position: static;
    margin-top: 50px;
  }
  .index .content .part01 .w80 .top .t_right .more {
    display: none;
    margin-bottom: 30px;
  }
  .index .content .part01 .w80 .bottom .b_left .b_left_box2 .item:nth-of-type(3) {
    margin-top: 20px;
  }
  .index .content .part01 {
    padding-bottom: 80px;
    padding-top: 80px;
  }
  .index .content .part02 .top .w80 ul {
    align-content: center;
    justify-content: center;
  }
  .index .content .part02 .top .w80 ul li {
    height: 32px;
    margin: 0 5px;
  }
  .index .content .part02 .top .w80 ul li p {
    font-size: 15px;
    line-height: 32px;
  }
  .index .content .part02 .top .w80 ul li.active p {
    line-height: 32px;
    font-size: 18px;
  }
  .index .content .part02 .top .w80 ul li.active::after {
    display: none;
  }
  .index .content .part02 .bottom .w80 .proList ul li .text {
    width: 100%;
  }
  .index .content .part02 .bottom .w80 .proList ul li .img {
    width: 100%;
  }
  .index .content .part02 .bottom .w80 .proList ul li .text h3 {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .index .content .part02 .bottom .w80 .proList ul li .text h2 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .index .content .part02 .bottom .w80 .proList ul li .text h5 {
    font-size: 16px;
  }
  .index .content .part02 .bottom .w80 .proList ul li.active .text .more {
    margin-top: 50px;
  }
  .index .content .part02 .bottom .w80 .proList ul li {
    align-content: center;
  }
  .index .content .part02 .bottom .w80 .proList ul li.active .img {
    margin-top: 50px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub1 .left {
    width: 100%;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub1 .right {
    width: 100%;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub1 .right .right_sub1 {
    width: 100%;
    margin-top: 14px;
    margin-bottom: 30px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub1 .right .right_sub2 {
    width: 100%;
    margin-top: 20px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub1 .left .bottom h3 {
    font-size: 24px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub1 {
    width: 100%;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .left {
    width: 100%;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub1 {
    height: 220px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub1 .left_sub1_sub1 {
    width: 78%;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub1 .left_sub1_sub2 {
    padding-bottom: 220px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .left a .left_sub2 {
    padding: 20px 14px 20px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .right {
    width: 100%;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub2 .right .bottom ul li a p {
    display: none;
  }
  .index .content .part04 .w80 .left .bottom h3 {
    font-size: 24px;
  }
  .index .content .part05 .w80 .part05_box .p_b_2 {
    width: 100%;
  }
  .index .content .part05 .w80 .part05_box .p_b_1 .bottom h3 {
    font-size: 24px;
  }
  .index .content .part01 .w80 .bottom .b_left .b_left_box2 .item {
    width: 48%;
  }
  .index .content .part01 .w80 .bottom .b_left .b_left_box2 .item p {
    text-align: center;
  }
  .index .content .part02 .top {
    height: 262px;
  }
  .index .content .part02 .top .w80 ul li {
    width: 44%;
    height: auto;
    margin: 12px 0;
  }
  .index .content .part02 .top .w80 ul li p {
    line-height: 1;
  }
  .index .content .part02 .top .w80 ul {
    height: 262px;
  }
  .index .content .part02 .top .w80 ul li.active p {
    line-height: 1;
    font-size: 16px;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub1 .right .right_sub2 a {
    width: 49%;
  }
  .index .content .part03 .part03_sub1 .part03_sub1_sub1 .right .right_sub2 a:nth-of-type(3) {
    display: none;
  }
}
.about .main .part01 {
  padding-top: 120px;
  position: relative;
  height: 580px;
  background-image: url(/images/ab_bg1.jpg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 22%;
}
.about .main .part01 .w80 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .part01 .w80 .left {
  width: 650px;
  height: auto;
}
.about .main .part01 .w80 .left::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 800px;
  background-color: #f8f8f8;
  z-index: -1;
}
.about .main .part01 .w80 .right {
  width: calc(100% - 720px);
}
.about .main .part01 .w80 .right .a_title {
  margin-bottom: 30px;
}
.about .main .part01 .w80 .right .a_title .top h4 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
  color: #004593;
  line-height: 1;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
}
.about .main .part01 .w80 .right .a_title .top h4::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  background-color: #004593;
  margin-left: 20px;
}
.about .main .part01 .w80 .right .a_title .bottom {
  margin-top: 10px;
}
.about .main .part01 .w80 .right .a_title .bottom h3 {
  font-size: 36px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.about .main .part01 .w80 .right .a_text p {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 16px;
  text-indent: 2em;
}
.about .main .part01 .w80 .right .a_text .more {
  margin-top: 100px;
}
.about .main .part02 {
  width: 100%;
  height: 600px;
  background-image: url(/images/n_aboutBg.jpg);
  background-position: center;
}
.about .main .part02 .w80 {
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .part02 .w80 .left {
  width: 36%;
  height: inherit;
  position: relative;
}
.about .main .part02 .w80 .left .item {
  position: absolute;
  top: 40%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.5s ease;
}
.about .main .part02 .w80 .left .item.on {
  opacity: 1;
}
.about .main .part02 .w80 .left .item .l_title {
  margin-bottom: 30px;
}
.about .main .part02 .w80 .left .item .l_title .top h4 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: bold;
  text-align: left;
  text-shadow: 1px 1px 1px #999;
  text-transform: uppercase;
}
.about .main .part02 .w80 .left .item .l_title .top h4::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  background-color: #fff;
  margin-left: 20px;
}
.about .main .part02 .w80 .left .item .l_title .bottom {
  margin-top: 10px;
}
.about .main .part02 .w80 .left .item .l_title .bottom h3 {
  font-size: 36px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  text-shadow: 1px 1px 1px #999;
}
.about .main .part02 .w80 .left .item .l_txt p {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  text-shadow: 1px 1px 1px #999;
}
.about .main .part02 .w80 .right {
  width: 56%;
  height: inherit;
}
.about .main .part02 .w80 .right ul {
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .part02 .w80 .right ul li {
  width: 25%;
  height: inherit;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: all 1s ease;
}
.about .main .part02 .w80 .right ul li.on {
  background-color: rgba(0, 69, 147, 0.9);
}
.about .main .part02 .w80 .right ul li.on .btn {
  top: 38%;
}
.about .main .part02 .w80 .right ul li.on .top {
  top: 14%;
}
.about .main .part02 .w80 .right ul li:nth-of-type(1) {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.about .main .part02 .w80 .right ul li .top {
  position: relative;
  top: 20%;
  left: 30px;
  transition: all 0.5s ease;
}
.about .main .part02 .w80 .right ul li .top .top_img img {
  width: inherit;
}
.about .main .part02 .w80 .right ul li .top .top_img::after {
  content: "";
  display: block;
  width: 4px;
  height: 44px;
  background-color: #fff;
  position: absolute;
  left: -30px;
  top: 0;
}
.about .main .part02 .w80 .right ul li .top .top_txt {
  margin-top: 40px;
}
.about .main .part02 .w80 .right ul li .top .top_txt p {
  font-size: 20px;
  color: #fff;
  line-height: 1.3;
  font-weight: 400;
  text-align: left;
}
.about .main .part02 .w80 .right ul li .btn {
  position: relative;
  top: 32%;
  left: 30px;
  width: 56px;
  height: 56px;
  transition: all 0.5s ease;
}
.about .main .part02 .w80 .right ul li .btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.about .main .part02 .w80 .right ul li .btn::after {
  position: absolute;
  background-image: url(/images/quan.png);
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  animation: rotate 4s linear infinite;
}
.about .main .part02 .w80 .right ul li .num {
  position: absolute;
  bottom: -20px;
  right: 0px;
}
.about .main .part02 .w80 .right ul li .num h3 {
  font-size: 130px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  opacity: 0.2;
  font-family: "Impact";
}
.about .main .part03 {
  width: 100%;
  height: 680px;
  background-image: url(/images/ab_bg3.jpg);
}
.about .main .part03 .w80 .box {
  margin-top: 180px;
}
.about .main .part03 .w80 .box ul li {
  flex-wrap: wrap;
}
.about .main .part03 .w80 .box ul li.swiper-slide-active {
  width: 30% !important;
  box-shadow: 0 0 2px #999;
}
.about .main .part03 .w80 .box ul li .swiper-slide-shadow-left {
  background-image: none;
}
.about .main .part03 .w80 .box ul li .swiper-slide-shadow-right {
  background-image: none;
}
.about .main .part03 .w80 .box ul li .img {
  width: 100%;
}
.about .main .part03 .w80 .box ul li .img img {
  width: 100%;
  transition: all 0.5s;
}
.about .main .part03 .w80 .box ul li .text {
  padding-top: 10px;
  padding-bottom: 10px;
}
.about .main .part03 .w80 .box ul li .text p {
  font-size: 20px;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}
.about .main .part03 .w80 .box .btn {
  position: relative;
}
.about .main .part03 .w80 .box .btn .honor_leftBtn {
  position: absolute;
  top: 32%;
  left: 30px;
  width: 56px;
  height: 56px;
}
.about .main .part03 .w80 .box .btn .honor_leftBtn::after {
  position: absolute;
  background-image: url(/images/quan.png);
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  animation: rotate 4s linear infinite;
}
.about .main .part04 {
  margin: 120px 0;
}
.about .main .part04 .w80 .title {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .part04 .w80 .title .left .top h4 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
  color: #004593;
  line-height: 1;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
}
.about .main .part04 .w80 .title .left .top h4::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  background-color: #004593;
  margin-left: 20px;
}
.about .main .part04 .w80 .title .left .bottom {
  margin-top: 10px;
}
.about .main .part04 .w80 .title .left .bottom h3 {
  font-size: 36px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.about .main .part04 .w80 .title .right {
  width: calc(100% - 400px);
}
.about .main .part04 .w80 .title .right p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.about .main .part04 .w80 ul li {
  flex-wrap: wrap;
}
.about .main .part04 .w80 ul li .img {
  width: 100%;
}
.about .main .part04 .w80 ul li .img img {
  width: 100%;
}
.about .main .part04 .w80 ul li .text {
  width: 100%;
  height: 46px;
  background-color: #f3f3f3;
}
.about .main .part04 .w80 ul li .text p {
  font-size: 15px;
  color: #333;
  line-height: 46px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1680px) {
  .about .main .part01 .w80 .right .a_text .more {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1440px) {
  .about .main .part01 {
    height: 520px;
  }
  .about .main .part01 .w80 .right .a_title .bottom h3 {
    font-size: 22px;
  }
  .about .main .part01 .w80 .left {
    width: 570px;
  }
  .about .main .part01 .w80 .left .img img {
    width: 100%;
  }
  .about .main .part01 .w80 .right {
    width: calc(100% - 630px);
  }
  .about .main .part01 .w80 .right .a_text p {
    font-size: 14px;
  }
  .about .main .part01 {
    padding-top: 90px;
  }
  .about .main .part02 {
    height: 480px;
  }
  .about .main .part02 .w80 .right ul li .top .top_txt p {
    font-size: 18px;
  }
  .about .main .part02 .w80 .right ul li .num h3 {
    font-size: 90px;
  }
  .about .main .part02 .w80 .left .item .l_title .bottom h3 {
    font-size: 30px;
  }
  .about .main .part02 .w80 .left .item .l_txt p {
    font-size: 16px;
    line-height: 1.2;
  }
  .about .main .part03 .w80 .box {
    margin-top: 150px;
  }
  .about .main .part03 {
    height: 590px;
    background-size: cover;
  }
  .about .main .part04 {
    margin: 90px 0;
  }
  .about .main .part04 .w80 .title .left .bottom h3 {
    font-size: 24px;
  }
  .about .main .part04 .w80 .title .right p {
    font-size: 14px;
  }
  .about .main .part04 .w80 .title .right {
    width: calc(100% - 310px);
  }
}
@media screen and (max-width: 992px) {
  .about .main .part01 {
    height: auto;
    margin-bottom: 60px;
  }
  .about .main .part01 .w80 .right {
    width: 100%;
    margin-top: 40px;
  }
  .about .main .part01 .w80 .right .a_title .bottom h3 {
    font-size: 20px;
  }
  .about .main .part02 .w80 .left {
    width: 100%;
    height: 240px;
  }
  .about .main .part02 .w80 .right {
    width: 100%;
    height: 240px;
  }
  .about .main .part02 .w80 .right ul li .top .top_img img {
    width: 24px;
  }
  .about .main .part02 .w80 .right ul li .top .top_img::after {
    height: 26px;
  }
  .about .main .part02 .w80 .right ul li .top .top_txt p {
    font-size: 14px;
  }
  .about .main .part02 .w80 .right ul li .top {
    left: 0;
  }
  .about .main .part02 .w80 .right ul li .btn {
    top: 24%;
  }
  .about .main .part02 .w80 .right ul li .num h3 {
    font-size: 68px;
  }
  .about .main .part02 .w80 .right ul li .top .top_txt p {
    text-align: center;
  }
  .about .main .part02 .w80 .right ul li .top .top_img img {
    margin: 0 auto;
  }
  .about .main .part03 .w80 .box ul li {
    display: none;
  }
  .about .main .part03 .w80 .box ul li.swiper-slide-active {
    display: block;
    width: 100% !important;
  }
  .about .main .part03 {
    height: 360px;
    background-position: center;
  }
  .about .main .part03 .w80 .box {
    margin-top: 90px;
  }
  .about .main .part04 .w80 .title .right {
    width: 100%;
    margin-top: 30px;
  }
  .about .main .part02 .w80 .left .item .l_title .bottom h3 {
    font-size: 20px;
  }
  .about .main .part02 .w80 .left .item .l_title .bottom h4 {
    font-size: 14px;
  }
  .about .main .part03 .w80 .box ul li .text p {
    font-size: 18px;
  }
  .about .main .part04 .w80 .title .left .bottom h3 {
    font-size: 24px;
  }
}
.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 .title .top h4 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
  color: #004593;
  line-height: 1;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
}
.news2 .main > div:first-of-type .newsBoxTitle .title .top h4::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  background-color: #004593;
  margin-left: 20px;
}
.news2 .main > div:first-of-type .newsBoxTitle .title .bottom {
  margin-top: 10px;
}
.news2 .main > div:first-of-type .newsBoxTitle .title .bottom h3 {
  font-size: 36px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.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 #e6f2f8;
}
.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:hover .n_newsText {
  background-color: #004593;
}
.news2 .main > div:first-of-type .news_part02 ul li a:hover .n_newsText .n_textBox .n_textBox_center .tit {
  color: #fff;
  opacity: 0.6;
}
.news2 .main > div:first-of-type .news_part02 ul li a:hover .n_newsText .n_textBox .n_textBox_center .desc p {
  color: #fff;
}
.news2 .main > div:first-of-type .news_part02 ul li a:hover .n_newsText .n_textBox .n_textBox_center .box2 .date {
  color: #fff;
}
.news2 .main > div:first-of-type .news_part02 ul li a:hover .n_newsText .n_textBox .n_textBox_center .box2 .n_icon {
  background-color: #004593;
}
.news2 .main > div:first-of-type .news_part02 ul li a:hover .n_newsImg .n_newsImg_box img {
  transform: calc(1.1);
}
.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: #f6f6f6;
}
.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: 140px;
}
.news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .tit {
  font-size: 14px;
  line-height: 1;
  height: 14px;
  color: #cccccc;
  overflow: hidden;
  margin: 0 0 6px;
  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: 60px;
  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: 18px;
  color: #333;
  line-height: 1.5;
  font-weight: 700;
  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 .n_icon {
  width: 32px;
  height: 32px;
  box-sizing: border-box;
  transition: 0.3s ease;
  cursor: pointer;
  background-color: #004593;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
}
.news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .box2 .n_icon i {
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .news2 .main > div:first-of-type .newsBoxTitle h3 {
    font-size: 24px;
  }
  .news2 .main > div:first-of-type .newsBoxTitle h3::after {
    margin-top: 14px;
    height: 2px;
    width: 30px;
    background-color: #004593;
  }
  .news2 .main > div:first-of-type .newsBoxTitle p {
    font-size: 16px;
  }
  .news2 .main > div:first-of-type .newsBoxTitle p img {
    display: none;
  }
  .news2 .main > div:first-of-type .newsBoxTitle {
    margin-bottom: 30px;
  }
  .news2 .main > div:first-of-type .news_part02 ul li a .n_newsImg .n_newsImg_box {
    height: 240px;
  }
  .news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox {
    padding: 20px;
  }
  .news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center {
    padding-bottom: 130px;
  }
  .news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .desc {
    height: 50px;
    margin-bottom: 10px;
  }
  .news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .desc p {
    font-size: 16px;
  }
  .news2 .main {
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 992px) {
  .news2 .main > div:first-of-type .newsBoxTitle .title .bottom h3 {
    font-size: 24px;
  }
  .news2 .main > div:first-of-type {
    margin-top: 50px;
  }
  .news2 .main > div:first-of-type .newsBoxTitle h3 {
    font-size: 18px;
  }
  .news2 .main > div:first-of-type .newsBoxTitle p {
    font-size: 13px;
    margin-top: 14px;
  }
  .news2 .main > div:first-of-type .news_part02 ul li {
    width: 100%;
  }
  .news2 .main > div:first-of-type .news_part02 ul li a .n_newsImg .n_newsImg_box {
    height: 200px;
  }
  .news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .desc p {
    font-size: 14px;
  }
  .news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .desc {
    height: 40px;
  }
  .news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center {
    padding-bottom: 114px;
  }
  .news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .box2 .date {
    font-size: 12px;
  }
  .news2 .main {
    margin-bottom: 40px;
  }
}
.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 #dfdfdf;
  padding-bottom: 24px;
}
.news_details .main > div .left .news_title h3 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.news_details .main > div .left .news_attribute {
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
  justify-content: flex-start;
  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: #e6f2f8;
  border: 1px solid #dfdfdf;
  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: 15px;
  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 #dfdfdf;
}
.news_details .main > div .right .top .back {
  width: 48%;
}
.news_details .main > div .right .top .back a {
  font-size: 15px;
  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: 15px;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.news_details .main > div .right .top .share .txt {
  float: left;
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.news_details .main > div .right .bottom {
  background-color: #e6f2f8;
  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 #dfdfdf;
}
.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: 15px;
  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 {
    margin-top: 70px;
  }
  .news_details .main > div .left .news_title h3 {
    font-size: 18px;
  }
  .news_details .main > div .left .news_attribute .attrItem p {
    font-size: 13px;
  }
  .news_details .main > div .left .news_descrition p {
    font-size: 13px;
  }
  .news_details .main > div .left .news_Content p {
    font-size: 14px;
  }
  .news_details .main > div .right .bottom > div ul li h3 {
    font-size: 16px;
  }
  .news_details .main > div .right .bottom > div ul li p {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .news_details .main {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .news_details .main > div .left {
    width: 100%;
  }
  .news_details .main > div .right {
    width: 100%;
    margin-top: 20px;
  }
  .news_details .main > div .right .bottom > div ul li {
    margin-top: 0px;
    padding-bottom: 14px;
  }
  .news_details .main > div .right .bottom > div ul li:nth-of-type(2) {
    padding-bottom: 0;
  }
  .news_details .main > div .right .bottom > div ul li h3 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .news_details .main > div .right .bottom > div ul li p {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .news_details .main > div .right .bottom > div ul li span {
    font-size: 13px;
    color: #004593;
  }
  .news_details .main > div .left .news_attribute .attrItem:nth-of-type(3) {
    display: none;
  }
  .news_details .main > div .left .news_attribute .attrItem:nth-of-type(4) {
    display: none;
  }
  .news_details .main > div .left .news_title h3 {
    text-align: center;
    font-size: 16px;
  }
}
.products .main .ct {
  margin-top: 120px;
}
.products .main .ct .top ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.products .main .ct .top ul li {
  width: 16%;
  padding: 16px 70px;
  border: 1px solid #5c575760;
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
  cursor: pointer;
}
.products .main .ct .top ul li.active {
  background-color: #004593;
  color: #fff;
}
.products .main .ct .list .item {
  display: none;
}
.products .main .ct .list .item.active {
  display: block;
}
.products .main .ct .list .item.it1 ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.products .main .ct .list .item.it1 ul li {
  width: 48%;
  margin-bottom: 40px;
}
.products .main .ct .list .item.it1 ul li a {
  position: relative;
  display: block;
  height: 340px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.products .main .ct .list .item.it1 ul li a::before {
  display: block;
  content: "";
  width: 70%;
  height: 100%;
  background-color: #f5f5f5;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.products .main .ct .list .item.it1 ul li a::after {
  display: block;
  content: "";
  width: 70%;
  height: 0;
  background-color: #004593;
  position: absolute;
  transition: all 0.5s ease;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.products .main .ct .list .item.it1 ul li a:hover::after {
  height: 100%;
}
.products .main .ct .list .item.it1 ul li a:hover .left h2 {
  color: #fff;
}
.products .main .ct .list .item.it1 ul li a:hover .left h3 {
  color: #fff;
}
.products .main .ct .list .item.it1 ul li a:hover .left p {
  color: #fff;
}
.products .main .ct .list .item.it1 ul li a:hover .left p span {
  color: #fff;
}
.products .main .ct .list .item.it1 ul li a:hover .left button {
  background-color: #fff;
  color: #000;
}
.products .main .ct .list .item.it1 ul li a .left {
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 50px 45px 0 30px;
  width: 48%;
  box-sizing: border-box;
}
.products .main .ct .list .item.it1 ul li a .left h2 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: bold;
  text-align: left;
  margin-bottom: 6px;
}
.products .main .ct .list .item.it1 ul li a .left h3 {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: bold;
  text-align: left;
  margin-bottom: 20px;
}
.products .main .ct .list .item.it1 ul li a .left p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  font-weight: normal;
  text-align: left;
  margin-bottom: 60px;
}
.products .main .ct .list .item.it1 ul li a .left p span {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}
.products .main .ct .list .item.it1 ul li a .left button {
  padding: 10px 40px;
  font-size: 15px;
  color: #fff;
  line-height: 1;
  font-weight: normal;
  text-align: left;
  background-color: #004593;
  border-radius: 6px;
  border: none;
}
.products .main .ct .list .item.it1 ul li a .right {
  width: 52%;
  position: relative;
  z-index: 2;
  border: 1px solid #d7d7d7;
  box-sizing: border-box;
}
.products .main .ct .list .item.it1 ul li a .right img {
  width: 100%;
}
.products .main .ct .list .item.it2 ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.products .main .ct .list .item.it2 ul li {
  width: 31%;
  margin-right: 3.5%;
}
.products .main .ct .list .item.it2 ul li:nth-child(3n) {
  margin-right: 0;
}
.products .main .ct .list .item.it2 ul li:hover a .img .more {
  height: 100%;
}
.products .main .ct .list .item.it2 ul li a .img {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 0;
}
.products .main .ct .list .item.it2 ul li a .img img {
  width: 100%;
}
.products .main .ct .list .item.it2 ul li a .img .more {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: all 0.5s ease;
  background: rgba(25, 73, 137, 0.6);
}
.products .main .ct .list .item.it2 ul li a .img .more .bx1 {
  font-size: 20px;
  color: #fff;
  line-height: 1;
  font-weight: normal;
  text-align: center;
  transform: translateY(-50%);
}
.products .main .ct .list .item.it2 ul li a .img .more .bx1 i {
  display: block;
  margin-top: 40px;
  font-size: 52px;
  line-height: 1;
}
.products .main .ct .list .item.it2 ul li a .text {
  margin-top: 10px;
  width: 100%;
  background-color: #fbfbfb;
}
.products .main .ct .list .item.it2 ul li a .text p {
  font-size: 16px;
  color: #333;
  line-height: 50px;
  font-weight: normal;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .products .main .ct .list .item.it1 ul li a .left h3 {
    font-size: 16px;
    margin-bottom: 6px;
    margin-top: 10px;
  }
  .products .main .ct .list .item.it1 ul li a .left p {
    font-size: 13px;
    margin-bottom: 14px;
    display: none;
  }
  .products .main .ct .list .item.it1 ul li a .left button {
    font-size: 13px;
    padding: 8px 26px;
    margin-top: 16px;
  }
  .products .main .ct .list .item.it1 ul li {
    margin-bottom: 20px;
  }
  .products .main .ct .list .item.it1 ul li a {
    height: 240px;
  }
  .products .main .ct .list .item.it1 ul li a .left {
    padding: 12px 45px 0 30px;
  }
  .products .main .ct .list .item.it1 ul li a .left h2 {
    font-size: 18px;
    margin-top: 30px;
  }
  .products .main .ct {
    margin-top: 100px;
  }
}
@media screen and (max-width: 992px) {
  .products .main .ct {
    margin-top: 50px;
  }
  .products .main .ct .list .item.it1 ul li {
    width: 100%;
  }
  .products .main .ct .list .item.it1 ul li a .left {
    padding: 10px 10px 0 10px;
  }
  .products .main .ct .list .item.it1 ul li a .left p {
    margin-bottom: 16px;
  }
  .products .main .ct .list .item.it1 ul li a .left h3 {
    margin-bottom: 8px;
    margin-top: 10px;
  }
  .products .main .ct .list .item.it1 ul li a {
    height: 190px;
  }
  .products .main .ct .list .item.it1 ul li a .left button {
    display: none;
  }
  .products .main .ct .list .item.it1 ul li a .left h2 {
    font-size: 15px;
  }
  .products .main .ct .list .item.it1 ul li a .left p span {
    font-size: 15px;
  }
}
.products_detailed .main .top {
  padding-top: 100px;
  width: 100%;
  background: url(../images/pro_detailed_bg.jpg) repeat-y center;
}
.products_detailed .main .top .ct {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.products_detailed .main .top .ct .left {
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.products_detailed .main .top .ct .left .bigImg {
  width: 84%;
}
.products_detailed .main .top .ct .left .bigImg img {
  width: 100%;
}
.products_detailed .main .top .ct .left .smailImg {
  width: 14%;
}
.products_detailed .main .top .ct .left .smailImg ul {
  padding: 0 8px;
  box-sizing: border-box;
  border: 1px solid #dfdfdf;
  overflow: hidden;
}
.products_detailed .main .top .ct .left .smailImg ul li {
  width: 100%;
  box-sizing: border-box;
  margin-top: 8px;
}
.products_detailed .main .top .ct .left .smailImg ul li img {
  width: 100%;
}
.products_detailed .main .top .ct .left .smailImg ul li.active {
  border: 2px solid #004593;
}
.products_detailed .main .top .ct .right {
  width: 44%;
  height: inherit;
  position: relative;
}
.products_detailed .main .top .ct .right .title h3 {
  font-size: 28px;
  color: #333;
  line-height: 1;
  font-weight: bold;
  text-align: left;
}
.products_detailed .main .top .ct .right .title::after {
  display: block;
  content: "";
  margin-top: 30px;
  width: 60px;
  height: 2px;
  background-color: #004593;
}
.products_detailed .main .top .ct .right .pro_content {
  margin-top: 40px;
  margin-bottom: 40px;
}
.products_detailed .main .top .ct .right .pro_content p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  font-weight: normal;
  text-align: left;
}
.products_detailed .main .top .ct .right .tel {
  margin-top: 40px;
  margin-bottom: 20px;
}
.products_detailed .main .top .ct .right .tel a {
  display: inline-block;
  padding: 8px 30px;
  background-color: #004593;
  font-size: 18px;
  color: #fff;
  line-height: 1.8;
  font-weight: normal;
  text-align: left;
  border-radius: 6px;
}
.products_detailed .main .top .ct .right .tel a i {
  font-size: 24px;
  line-height: 1;
}
.products_detailed .main .top .ct .right .button .pre a {
  font-size: 16px;
  color: #333;
  line-height: 60px;
  font-weight: normal;
  text-align: left;
}
.products_detailed .main .top .ct .right .button .next a {
  font-size: 16px;
  color: #333;
  line-height: 60px;
  font-weight: normal;
  text-align: left;
}
.products_detailed .main .bottom {
  width: 100%;
  background-color: #e6f2f8;
  overflow: hidden;
}
.products_detailed .main .bottom .across {
  width: 100%;
  height: 80px;
  background-color: #004593;
  position: relative;
}
.products_detailed .main .bottom .across .name {
  float: left;
  font-size: 20px;
  color: #fff;
  line-height: 80px;
  font-weight: bold;
  text-align: left;
}
.products_detailed .main .bottom .across .title {
  position: absolute;
  left: 50%;
  top: 0;
  display: inline-block;
  padding: 0 60px;
  background-color: #004593;
  font-size: 20px;
  color: #fff;
  line-height: 80px;
  font-weight: bold;
  text-align: left;
}
.products_detailed .main .bottom .desc {
  margin-top: 50px;
  margin-bottom: 80px;
  box-sizing: border-box;
  padding: 40px;
  background-color: #fff;
}
.products_detailed .main .bottom .desc p {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.products_detailed .main .bottom .desc strong {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  font-weight: 700;
  text-align: left;
  margin-bottom: 14px;
  margin-top: 20px;
  display: block;
}
@media screen and (max-width: 1440px) {
  .products_detailed .main .top {
    padding-top: 60px;
  }
  .products_detailed .main .top .ct .right .title h3 {
    font-size: 18px;
  }
  .products_detailed .main .top .ct .right .title::after {
    width: 30px;
    margin-top: 16px;
    height: 1px;
  }
  .products_detailed .main .top .ct .right .pro_content p {
    font-size: 13px;
  }
  .products_detailed .main .top .ct .right .tel a {
    font-size: 15px;
  }
  .products_detailed .main .top .ct .right .button .pre a {
    font-size: 13px;
    line-height: 40px;
  }
  .products_detailed .main .top .ct .right .button .next a {
    font-size: 13px;
    line-height: 40px;
  }
  .products_detailed .main .bottom .across {
    height: 60px;
  }
  .products_detailed .main .bottom .across .name {
    line-height: 60px;
    font-size: 16px;
  }
  .products_detailed .main .bottom .across .title {
    line-height: 60px;
    font-size: 16px;
  }
}
@media screen and (max-width: 992px) {
  .products_detailed .main .top .ct .left {
    width: 100%;
  }
  .products_detailed .main .top .ct .left .smailImg {
    display: none;
  }
  .products_detailed .main .top .ct .left .bigImg {
    width: 100%;
  }
  .products_detailed .main .top .ct .right {
    width: 100%;
    margin-top: 40px;
  }
  .products_detailed .main .top {
    background-image: none;
  }
  .products_detailed .main .bottom .across .name {
    display: none;
  }
  .products_detailed .main .bottom .across .title {
    left: 0;
  }
  .products_detailed .main .bottom {
    margin-top: 40px;
  }
  .products_detailed .main .bottom .desc {
    padding: 20px;
  }
}
.contact .main .part01 {
  margin-top: 120px;
}
.contact .main .part01 .w80 .top {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .part01 .w80 .top .left h3 {
  font-size: 32px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 16px;
}
.contact .main .part01 .w80 .top .left p {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.contact .main .part01 .w80 .top .right h2 {
  font-size: 32px;
  color: #004593;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.contact .main .part01 .w80 .top .right p {
  font-size: 16px;
  color: #666;
  line-height: 1;
  font-weight: 400;
  text-align: right;
  margin-bottom: 10px;
}
.contact .main .part01 .w80 .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .part01 .w80 .bottom .left {
  width: 60%;
}
.contact .main .part01 .w80 .bottom .left ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .part01 .w80 .bottom .left ul li i {
  font-size: 30px;
  color: #004593;
}
.contact .main .part01 .w80 .bottom .left ul li h3 {
  margin-top: 12px;
  font-size: 18px;
  color: #333;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
}
.contact .main .part01 .w80 .bottom .left ul li p {
  margin-top: 4px;
  font-size: 15px;
  color: #333;
  line-height: 1.2;
  font-weight: 400;
  text-align: left;
}
.contact .main .part01 .w80 .bottom .right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .part01 .w80 .bottom .right p {
  font-size: 16px;
  color: #666;
  line-height: 1.2;
  font-weight: 400;
  text-align: right;
  margin-right: 8px;
}
.contact .main .part01 .w80 .bottom .right p span {
  font-size: 18px;
  font-weight: 700;
  display: block;
  color: #000;
}
.contact .main .part02 {
  margin-top: 50px;
}
.contact .main .part03 {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .part03 .left {
  width: 50%;
  height: 600px;
  background-image: url(/images/message_img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  background-attachment: fixed;
}
.contact .main .part03 .right {
  width: 50%;
}
.contact .main .part03 .right > div {
  float: left;
  width: 80%;
  box-sizing: border-box;
  padding-left: 5%;
}
.contact .main .part03 .right > div .title {
  margin-bottom: 40px;
}
.contact .main .part03 .right > div .title .top h4 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
  color: #004593;
  line-height: 1;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
}
.contact .main .part03 .right > div .title .top h4::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  background-color: #004593;
  margin-left: 20px;
}
.contact .main .part03 .right > div .title .bottom {
  margin-top: 10px;
}
.contact .main .part03 .right > div .title .bottom h3 {
  font-size: 36px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.contact .main .part03 .right > div .item {
  margin-top: 14px;
}
.contact .main .part03 .right > div .item:nth-of-type(5) {
  margin-top: 30px;
}
.contact .main .part03 .right > div .item input {
  width: 100%;
  border-bottom: 1px solid #e7e7e7;
  font-size: 15px;
  color: #333;
  line-height: 50px;
  font-weight: 400;
  text-align: left;
}
.contact .main .part03 .right > div .item textarea {
  background-color: #eeeeee;
  width: 100%;
  height: 120px;
  box-sizing: border-box;
  padding: 20px;
}
.contact .main .part03 .right > div .item button {
  padding: 12px 40px;
  background-color: #004593;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .contact .main .part01 .w80 .top .left h3 {
    font-size: 24px;
  }
  .contact .main .part01 .w80 .top .left p {
    font-size: 15px;
  }
  .contact .main .part01 .w80 .bottom .left ul li h3 {
    font-size: 16px;
  }
  .contact .main .part01 .w80 .bottom .left ul li p {
    font-size: 14px;
  }
  .contact .main .part03 .right > div .title .bottom h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 992px) {
  .contact .main .part01 .w80 .top .left h3 {
    font-size: 20px;
  }
  .contact .main .part01 .w80 .top .right {
    display: none;
  }
  .contact .main .part01 .w80 .bottom .left {
    width: 100%;
  }
  .contact .main .part01 .w80 .bottom .left ul li {
    width: 60%;
    margin-bottom: 20px;
  }
  .contact .main .part01 .w80 .bottom .left ul li:nth-of-type(2n) {
    width: 40%;
  }
  .contact .main .part01 .w80 .bottom .right {
    display: none;
  }
  .contact .main .part03 .left {
    display: none;
  }
  .contact .main .part03 .right {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 80px;
  }
  .contact .main .part03 .right > div .title .bottom h3 {
    font-size: 24px;
  }
}
