﻿/* #region 初始化 */
* {
  margin: 0;
  padding: 0;
}
/*@font-face {
  font-family: regular;
  src: url("../fonts/Alibaba-PuHuiTi-Regular.otf");
}*/
* {
  font-family: regular;
}
a {
  text-decoration: none;
  color: #000000;
  display: block;
}
div,
a {
  box-sizing: border-box;
}
input {
  border: none;
  outline: none;
}
li {
  list-style: none;
}
.clearfloat {
  zoom: 1;
}

.clearfloat:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}
.flex_row {
  display: flex;
}
.flex_col {
  display: flex;
  flex-direction: column;
}
.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex_space_between {
  display: flex;
  justify-content: space-between;
}

.position_center-x {
  left: 50%;
  transform: translate(-50%);
}
.position_center-y {
  top: 50%;
  transform: translateY(-50%);
}
.cursor {
  cursor: pointer;
}
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
img {
  display: block;
  max-width: 100%;
  /* image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;  */
}

.textone {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.texttwo {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* #endregion */

/* #region  公共*/

.width {
  width: 83.33%;
  margin: 0 auto;
}
.flex {
  display: flex !important;
}
.block {
  display: block !important;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 99;
  transition: 0.3s;
}
.header .width {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
.logo {
  width: 10.5%;
}
.logo img {
  width: 100%;
  /* transition: width 0.5s; */
}
.nav_icon {
  display: none;
}
.nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.nav_phone {
  display: none;
}
.nav_item {
  position: relative;
  margin-left: 2rem;
  display: flex;
}
.nav_item:first-of-type {
  margin-left: 0;
}
.nav_href {
  font-size: 0.9rem;
  color: #fff;
  height: 2rem;
  display: flex;
  align-items: center;
  cursor: pointer;

  text-shadow: 0.06rem 0.06rem 0px rgba(11, 11, 11, 0.43);
}

.nav_choose .nav_href {
  color: #e50012;
  position: relative;
  text-shadow: none;
}

.gologin {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #fff;
  margin-left: auto;
  cursor: pointer;
  transition: all 0.3s;
}

.gologin img {
  width: 1rem;
  margin-right: 0.5rem;
  display: block;
}

.gologin:hover {
  color: #e50012;
}

.xbtn_hover {
  position: relative;
  overflow: hidden;
  /* -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  transition: 0.2s; */
}

.xbtn_hover span {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.xbtn_hover:hover > span {
  opacity: 0;
  -webkit-transform: translate(0px, -100%);
  transform: translate(0px, -100%);
}

.nav_choose .xbtn_hover:hover > span {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
}

.xbtn_hover::after {
  content: attr(data-text);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transform: translate(0, 30%);
  transform: translate(0, 30%);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.nav_choose .nav_href::after {
  content: "";
  position: absolute;
  border-bottom: 2px solid #e50012;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  -webkit-transform: translate(0);
  transform: translate(0);
  opacity: 1;
}

.xbtn_hover:hover::after {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.app_item {
  width: 3.7rem;
  height: 3.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e50012;
  cursor: pointer;
  z-index: 10;

  position: fixed;
  right: 3.7rem;
  bottom: 7.4rem;
}
.app_img {
  width: 1.75rem;
  transform: scale(1);
  transition: 0.8s;
}
.app_row {
  display: flex;
  /* transform: scale(0);
  transition: 0.8s; */
  width: 0;
  overflow: hidden;
}

.app_item2 {
  animation: app1 0.8s both;
}

/* .app_item2 .app_row {
  transform: scale(1);
} */
.app_item2 .app_img {
  transform: scale(0);
  width: 0;
}

.app_item3 {
  animation: app2 0.8s both;
}

@keyframes app1 {
  0% {
    width: 3.7rem;
    height: 3.7rem;
  }
  100% {
    width: 13.7rem;
    height: 7.8rem;
  }
}
@keyframes app2 {
  0% {
    width: 13.7rem;
    height: 7.8rem;
  }
  100% {
    width: 3.7rem;
    height: 3.7rem;
  }
}

.app_item2 .app_row {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.app_col img {
  width: 4.4rem;
  height: 4.4rem;
  display: block;
  margin: 0 auto;
}
.app_col {
  text-align: center;
  font-size: 0.8rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.app_col span {
  display: block;
  margin-top: 0.3rem;
}

.phone_item {
  min-width: 3.7rem;
  height: 3.7rem;
  position: fixed;
  bottom: 3.7rem;
  right: 0;
  background: #b1b4b2;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}
.add_item {
  min-width: 3.7rem;
  height: 3.7rem;
  position: fixed;
  bottom: 0;
  right: 0;
  background: #e50012;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}
.phone_img {
  width: 3.7rem;
  height: 3.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone_img img {
  width: 1.35rem;
}
.add_img {
  width: 3.7rem;
  height: 3.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone_num {
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 1rem;
  color: #000000;
  text-align: right;
}
.phone_item2 .phone_num {
  animation: iwidth 0.8s both;
}
.phone_item3 .phone_num {
  animation: iwidth2 0.8s both;
}

@keyframes iwidth {
  0% {
    width: 0;
    padding: 0;
  }
  100% {
    width: 9.8rem;
    padding: 0 0.8rem;
  }
}

@keyframes iwidth2 {
  0% {
    width: 9.8rem;
    padding: 0 0.8rem;
  }
  100% {
    width: 0;
    padding: 0;
  }
}
.logo {
  position: relative;
}
.logo img {
  display: block;
}
.logo img:nth-of-type(1) {
  opacity: 1;
}
.logo img:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.headerh {
  background: #fff;
  padding: 0.7rem 0;
}

.headerh .nav_href,
.headerh .gologin {
  color: #605f5f;
  font-size: 0.8rem;
  text-shadow: none;
}
.headerh .gologin img {
  width: 0.8rem;
}
.headerh .nav_href {
  height: 1.8rem;
}

.headerh .logo img:nth-of-type(1) {
  width: 80%;
  opacity: 0;
}
.headerh .logo img:nth-of-type(2) {
  opacity: 1;
  width: 80%;
}

.header_hover .logo img:nth-of-type(1) {
  opacity: 0;
}
.header_hover .logo img:nth-of-type(2) {
  opacity: 1;
}
.header_hover .nav_href,
.header_hover .gologin {
  color: #605f5f;
  text-shadow: none;
}

.header_bg {
  background: #fff;
  position: absolute;
  width: 100%;
  height: 0;
  z-index: 1;
  left: 0;
  top: 3.8rem;
  transition: all 0.3s;
  opacity: 0;
}

.header_bg2 {
  height: 7.6rem;
  top: 0;
  opacity: 1;
}

.headerh .header_bg {
  top: 3.4rem;
}
.headerh .header_bg2 {
  height: 6.8rem;
  top: 0;
}

.nav_selectp {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 2.1rem 0 1rem 0;
  z-index: 10;
}

.nav_select {
  display: flex;
}

.nav_select a {
  font-size: 0.8rem;
  color: #949494;
  transition: 0.2s;
  margin-right: 2.5rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.nav_select a:hover {
  color: #e50012;
}

.nav_select a:last-of-type {
  margin-right: 0;
}

.nav_select a span {
  margin-right: 0.5rem;
}

.nav_select .nav_active {
  color: #e50012;
}

.login_modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: none;
}

.login {
  background: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 29rem;
}

.login_main {
  padding: 1.4rem 2.5rem 2rem 2.5rem;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}
.login_tab {
  display: flex;
  background: #f3f3f3;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
}
.login_tab div {
  width: 50%;
  height: 3.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #000000;
  cursor: pointer;
  transition: 0.2s;
}
.login_tab div:hover {
  color: #e50012;
}
.login_tab .login_active:hover {
  color: #000000;
}
.login_active {
  background: #fff;
}

.login_list {
  display: none;
}

.login_row {
  display: flex;
  align-items: center;
  width: 100%;
  height: 2.6rem;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  margin-bottom: 0.8rem;
  padding-left: 0.7rem;
  overflow: hidden;
}

.login_row img {
  width: 1.5rem;
}
.login_row input {
  flex: 1;
  height: 100%;
  font-size: 0.8rem;
  padding: 0 0.8rem;
  box-sizing: border-box;
}

.contact_right textarea:-ms-input-placeholder,
.contact_right input:-ms-input-placeholder,
.index6_message textarea:-ms-input-placeholder,
.index6_message input:-ms-input-placeholder,
.login_row input:-ms-input-placeholder {
  color: #c2c2c2;
}
.contact_right textarea::-webkit-input-placeholder,
.contact_right input::-webkit-input-placeholder,
.index6_message textarea::-webkit-input-placeholder,
.index6_message input::-webkit-input-placeholder,
.login_row input::-webkit-input-placeholder {
  color: #c2c2c2;
}
.contact_right textarea::-moz-placeholder,
.contact_right input::-moz-placeholder,
.index6_message textarea::-moz-placeholder,
.index6_message input::-moz-placeholder,
.login_row input::-moz-placeholder {
  color: #c2c2c2;
}
.contact_right textarea:-moz-placeholder,
.contact_right input:-moz-placeholder,
.index6_message textarea:-moz-placeholder,
.index6_message input:-moz-placeholder,
.login_row input:-moz-placeholder {
  color: #c2c2c2;
}
.contact_right textarea:-moz-placeholder,
.contact_right input:-moz-placeholder,
.index6_message textarea:-moz-placeholder,
.index6_message input:-moz-placeholder,
.login_row input:-moz-placeholder {
  color: #c2c2c2;
}

.login_btn {
  padding-top: 0.6rem;
}
.login_btn input {
  width: 100%;
  height: 2.6rem;
  border-radius: 5px;
  background: #e50012;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: 0.3s;
}

.login_btn input:hover {
  opacity: 0.85;
}

.login_close {
  position: absolute;
  top: -2rem;
  right: -1.5rem;
  cursor: pointer;
}

.login_close img {
  width: 20px;
  height: 20px;
}

.footer {
  background: #211f20;
  font-size: 0.8rem;
  color: #666666;
  text-align: center;
  padding: 1.4rem 0;
}
.footer * {
  display: inline;
}
.footer a {
  color: #666666;
}
.headertwo {
  background: #fff;
}

.headertwo .logo img:nth-of-type(1) {
  opacity: 0;
}
.headertwo .logo img:nth-of-type(2) {
  opacity: 1;
}
.headertwo .nav_href,
.headertwo .gologin {
  color: #605f5f;
  text-shadow: none;
}

/* #endregion */

/* #region  首页*/

.header_height {
  display: none;
}
.banner,
.banner_swiper {
  width: 100%;
}
.banner {
  position: relative;
}
.banner_swiper .swiper-slide img {
  width: 100%;
  display: block;
}
.banner_jiantou {
  width: 100%;
  position: absolute;
  top: 55%;
  left: 0;
  transform: translateY(-50%);
  z-index: 10;
}
.banner_jiantou .width {
  display: flex;
  justify-content: flex-end;
}
.banner_left,
.banner_right {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
}
.banner_left:hover,
.banner_right:hover {
  background: #e50012;
}
.banner_right {
  margin-left: 1.4rem;
}

.banner_swiper .swiper-slide {
  position: relative;
  color: #fff;
}
.banner_txt {
  color: #fff;
  position: absolute;
  bottom: 6.1rem;
  width: 100%;
  z-index: 10;
}
.banner_t1,
.banner_t2,
.banner_t3 {
  -webkit-animation: fadeOutUp 0.8s both;
  animation: fadeOutUp 0.8s both;
}

.banner_t1,
.banner_t2,
.banner_t3 {
  text-shadow: 0.075rem 0.13rem 0px rgba(11, 11, 11, 0.43);
}
.banner_t1 {
  font-size: 1.3rem;
}
.banner_t2 {
  font-size: 3.9rem;
  margin-top: 0.3rem;
  font-weight: bold;
}
.banner_t3 {
  font-size: 1rem;
  margin-top: 0.4rem;
}

.swiper-slide-active .banner_t1,
.swiper-slide-active .banner_t2,
.swiper-slide-active .banner_t3 {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.swiper-slide-active .banner_t1 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.swiper-slide-active .banner_t2 {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.swiper-slide-active .banner_t3 {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

.banner_dibu {
  position: absolute;
  width: 100%;
  bottom: 2.6rem !important;
  left: 0 !important;
  z-index: 10;
  color: #fff;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner_dot {
  display: flex;
  align-items: center;
}
.banner_dot span {
  display: block;
  width: 2rem;
  border-bottom: 1px solid #fff;
}
.banner_dot div {
  transition: 0.3s;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner_dot:last-of-type span {
  display: none;
}
.swiper-pagination-bullet-active {
  font-size: 1.2rem;
  font-weight: bold;
}

.swiper-pagination-bullet {
  width: auto;
  height: auto;
  display: flex;
  border-radius: 0;
  background: none;
  opacity: 1;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0;
}

.iabout {
  padding: 6.2rem 3.4% 6rem 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.iabout_left {
  width: 35.4%;
}
.iabout_right {
  width: 59.6%;
}

.index_title div {
  font-size: 2.4rem;
  font-weight: bold;
}
.index_title span {
  font-size: 1.6rem;
  display: block;
}
.iabout_img {
  margin-top: 2.4rem;
  border-bottom: 0.6rem solid #e50012;
}
.iabout_img img {
  width: 100%;
  display: block;
}

.iabout_right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.iabout_item {
  height: 11.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.1rem;
  color: #45444a;
  border: 1px solid #e5e5e5;
  position: relative;
}
.iabout_item .iabout_bg {
  transition: width 0.6s;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #e50012;
  z-index: 1;
}

.iabout_item img,
.iabout_item span {
  position: relative;
  z-index: 10;
}

.iabout_icon {
  width: 3rem;
  height: 3rem;
  position: relative;
  margin: 0 auto;
}
.iabout_icon img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: 0.3s;
}
.iabout_icon img:nth-of-type(2) {
  opacity: 0;
}
.iabout_item span {
  display: block;
  text-align: center;
  margin-top: 0.2rem;
  transition: 0.3s;
}

.iabout_item:hover .iabout_bg {
  width: 100%;
}
.iabout_item:hover img:nth-of-type(1) {
  opacity: 0;
}
.iabout_item:hover img:nth-of-type(2) {
  opacity: 1;
}
.iabout_item:hover span {
  color: #fff;
}
.iabout_item:nth-of-type(1),
.iabout_item:nth-of-type(2),
.iabout_item:nth-of-type(3) {
  width: 30%;
}
.iabout_item:nth-of-type(4),
.iabout_item:nth-of-type(5) {
  width: 47.55%;
  margin-top: 2rem;
}

.index_page3 {
  background: url(../images/index3_bg.png) no-repeat;
  background-size: 100% 100%;
  padding: 4.8rem 0 4.8rem 8.34%;
  display: flex;
  align-items: center;
}

.index_page3 .index_title {
  color: #010101;
}

.index3_text {
  font-size: 1rem;
  line-height: 1.6;
  color: #6e6e6e;
  margin-top: 1.2rem;
}

.index3_left {
  width: 15.5rem;
  margin-right: 6.2rem;
}

.index3_tabs {
  display: flex;
  justify-content: space-between;
  margin-top: 2.8rem;
}
.index3_tab {
  width: 7.4rem;
  height: 6.8rem;
  background: #e2e2e2;
  color: #45444a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
.index3_tab span {
  display: block;
  margin-top: 0.6rem;
}

.index3_timg {
  width: 2.7rem;
  height: 2.7rem;
  position: relative;
  margin: 0 auto;
}
.index3_timg img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.index3_timg img:nth-of-type(2) {
  opacity: 0;
}
.index3_tab span,
.index3_timg {
  position: relative;
  z-index: 10;
}

.index3_tbg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #e50012;
  height: 100%;
  width: 0;
  transition: width 0.6s;
  overflow: hidden;
}

.index3_active .index3_tbg,
.index3_tab:hover .index3_tbg {
  width: 100%;
}
.index3_active .index3_timg img:nth-of-type(1),
.index3_tab:hover .index3_timg img:nth-of-type(1) {
  opacity: 0;
}
.index3_active .index3_timg img:nth-of-type(2),
.index3_tab:hover .index3_timg img:nth-of-type(2) {
  opacity: 1;
}
.index3_active,
.index3_tab:hover {
  color: #fff;
}

.index3_lrp {
  /* margin-top: 3.5rem; */
  margin-top: 2rem;
}
.index3_lr {
  display: none;
  justify-content: center;
}

.index3_lr div {
  background: #c5c5c5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.4rem;
}
.index3_lr div:hover {
  background: #e50012;
}

.index3_right {
  flex: 1;
  overflow: hidden;
}
.swiper-container {
  width: 100%;
}

.index3_right .swiper-slide {
  width: 24.14rem;
  margin-right: 2.2rem;
}
.index3_item {
  width: 100%;
}
.index3_img {
  overflow: hidden;
}
.index3_img img {
  width: 100%;
  display: block;
  transition: 0.5s;
}
.index3_title {
  font-size: 0.9rem;
  color: #45444a;
  display: flex;
  align-items: center;
  height: 3rem;
  transition: 0.3s;
}
.index3_title span {
  display: block;
  height: 100%;
  width: 2px;
  border-left: 2px solid #45444a;
  margin-left: 1.3rem;
  margin-right: 1.4rem;
  position: relative;
  top: -1rem;
  transition: 0.3s;
}
.index3_title div {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.index3_right .swiper-container {
  display: none;
}
.index3_item:hover .index3_img img {
  transform: scale(1.05);
}
.index3_item:hover .index3_title {
  color: #e50012;
}
.index3_item:hover .index3_title span {
  border-left: 2px solid #e50012;
}

.index_page4 {
  background: #dedede;
  padding: 3rem 0 3.5rem 0;
}
.index_page4 .index_title {
  text-align: center;
  color: #333333;
}

.index4 {
  padding: 0 10% 0 10%;
  display: flex;
  align-items: center;
  margin-top: 1.1rem;
}

.banner_left,
.banner_right,
.index3_lr div,
.index4_prev,
.index4_next {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
}

.banner_jiantou img,
.index3_lr img,
.index4_prev img,
.index4_next img {
  width: 0.4rem;
}

.index4_prev,
.index4_next {
  background: #fff;
  position: relative;
}

.index4_prev div,
.index4_next div {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  right: 0;
}

.index4_prev img,
.index4_next img {
  transition: 0.3s;
}

.index4_prev div:nth-of-type(2) img,
.index4_next div:nth-of-type(2) img {
  opacity: 0;
}
.index4_prev:hover,
.index4_next:hover {
  background: #e50012;
}

.index4_prev:hover div:nth-of-type(1) img,
.index4_next:hover div:nth-of-type(1) img {
  opacity: 0;
}
.index4_prev:hover div:nth-of-type(2) img,
.index4_next:hover div:nth-of-type(2) img {
  opacity: 1;
}

.index4_center {
  flex: 1;
  overflow: hidden;
}

.index4_center .swiper-slide {
  transform: scale(0.8);
  transition: 0.3s;
  opacity: 0;
}
.index4_center .swiper-slide-prev,
.index4_center .swiper-slide-active,
.index4_center .swiper-slide-next {
  opacity: 1;
}
.index4_center .swiper-slide-prev {
  transform: translateX(13%) scale(0.8);
}
.index4_center .swiper-slide-next {
  transform: translateX(-13%) scale(0.8);
}
.index4_center .swiper-slide-active {
  transform: scale(1);
  z-index: 20;
}

.index4_img img {
  width: 100%;
  display: block;
}
.index4_item span {
  display: block;
  text-align: center;
  padding: 0 5%;
  font-size: 1rem;
  color: #333333;
  margin-top: 0.8rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: 0.2s;
}

.index4_item:hover span {
  color: #e50012;
}

.index_page5 {
  padding: 3.6rem 0;
  background: #fafbff;
}
.index_page5 .index_title {
  text-align: center;
  color: #45444a;
}

.index5 {
  display: flex;
  justify-content: space-evenly;
  margin-top: 2.3rem;
}

.index5_item {
  width: 29.88%;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 2.3rem 0px rgba(213, 213, 213, 0.43);
  padding: 2.2rem 3% 2.5rem 3%;
}

.index5_title {
  display: flex;
  align-items: center;
}
.index5_title img {
  width: 2.5rem;
  margin-right: 1.4rem;
}
.index5_tright div {
  font-size: 1.4rem;
  color: #45444a;
  font-weight: bold;
}
.index5_tright span {
  font-size: 1rem;
  color: #d2d2d2;
  display: block;
  margin-top: 0.26rem;
}

.index5_img {
  width: 100%;
  margin-top: 1.9rem;
  overflow: hidden;
}
.index5_img img {
  display: block;
  width: 100%;
  transition: 0.5s;
}
.index5_text {
  font-size: 0.9rem;
  color: #777778;
  margin-top: 0.8rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: 0.2s;
}

.index5_xz:hover .index5_img img {
  transform: scale(1.05);
}
.index5_xz:hover .index5_text {
  color: #e50012;
}

.index_page6 {
  display: flex;
}
.index_page6 .index_title {
  color: #45444a;
}
.index_page6 img {
  display: block;
}
.index6_left {
  width: 41%;
}
.index6_center {
  width: 32.14%;
  background: #dedede;
  padding: 4.5rem 3.9% 5rem 3.9%;
  position: relative;
}
.index6_right {
  width: 26.86%;
  overflow: hidden;
  position: relative;
}
.index6_left img {
  width: 100%;
}
.index6_right img {
  position: absolute;
  min-height: 100%;
  min-width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.footer_row1 {
  display: flex;
  font-size: 2.1rem;
  color: #e50012;
  font-weight: bold;
  align-items: center;
  margin-top: 1.8rem;
}
.footer_row2 {
  display: flex;
  font-size: 0.9rem;
  line-height: 1.3rem;
  color: #727272;
  margin-top: 0.8rem;
}
.footer_row1 img,
.footer_row2 img {
  width: 1.3rem;
  height: 1.3rem;
  display: block;
  margin-right: 0.5rem;
}

.footer_row3 {
  padding-left: 1.8rem;
}

.footer_row3 div {
  width: 8.8rem;
  height: 8.8rem;
  border: 1px solid #bfbfbf;
  padding: 0.5rem;
  margin-top: 1rem;
}
.footer_row3 img {
  width: 100%;
  height: 100%;
}

.index6_bottom {
  width: 14.7rem;
  height: 2.7rem;
  background: #efefef;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  color: #000;
  transition: 0.2s;
}
.index6_bottom:hover {
  color: #e50012;
}
.index6_bottom img {
  width: 1.3rem;
  margin-right: 0.7rem;
}
.index6_bottom div {
  position: absolute;
  top: -0.76rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 0.4rem solid transparent;
  border-bottom: 0.4rem solid #efefef;
}
.index6_message {
  position: absolute;
  bottom: 4.3rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 0.5rem;
  width: 88.58%;
  padding: 1rem 5.7% 2.2rem 5.7%;
  display: none;
}

.index6_mtitle {
  font-size: 1rem;
  color: #000000;
}
.contact_right input,
.index6_message input {
  width: 100%;
  height: 3rem;
  background: #efefef;
  padding: 0 0.9rem;
  box-sizing: border-box;
  font-size: 0.8rem;
  display: block;
  margin-top: 0.9rem;
}
.contact_right textarea,
.index6_message textarea {
  width: 100%;
  height: 4.5rem;
  background: #efefef;
  padding: 0.8rem 0.9rem;
  box-sizing: border-box;
  font-size: 0.8rem;
  display: block;
  margin-top: 0.9rem;
  border: none;
  resize: none;
  outline: none;
}
.contact_right button,
.index6_message button {
  width: 100%;
  height: 3rem;
  background: #e50012;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #fff;
  margin-top: 1.5rem;
  transition: 0.3s;
  outline: none;
  border: none;
  cursor: pointer;
}
.contact_right button:hover,
.index6_message button:hover {
  opacity: 0.85;
}

.index6_close {
  position: absolute;
  width: 1rem;
  height: 1rem;
  right: 1.1rem;
  top: 1.1rem;
  cursor: pointer;
}
.index6_close img {
  display: block;
  width: 100%;
  height: 100%;
}
.index4_swiper .swiper-slide {
  width: 33.33%;
}
/* #endregion */

/* #region  关于我们*/
.about_banner {
  /* background: url(../images/about_banner.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 6rem 0 4.7rem 0; */
  position: relative;
}

.banner2_bg {
  display: block;
  width: 100%;
}

.banner2_txt {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.about_banner2 .banner2_txt {
  top: 50% !important;
}

.about_banner .index_title,
.about_tab {
  position: relative;
  z-index: 5;
}

.about_banner .index_title {
  color: #fff;
  text-align: center;
  text-shadow: 0.075rem 0.13rem 0px rgba(37, 37, 37, 0.43);
}
.about_tab {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.about_tab a,
.about_tab div {
  width: 7.9rem;
  height: 2.7rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #333333;
  background: rgb(255, 255, 255, 0.94);
  margin: 0 0.35rem;
  margin-bottom: 0.7rem;
  transition: 0.3s;
  cursor: pointer;
}

.about_tab a:hover,
.about_tab div:hover,
.about_tab .about_active {
  background: rgb(229, 0, 18, 0.94);
  color: #fff;
}

.about_title {
  text-align: center;
  padding: 2.7rem 0 1.5rem 0;
}
.about_t1 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #6c6c6c;
}
.about_t1 span {
  display: block;
  width: 1.9rem;
  margin: 0 1rem;
  border-bottom: 1px solid #313131;
}
.about_t2 {
  font-size: 1.2rem;
  margin-top: 0.6rem;
}
.about_row1 {
  font-size: 0.8rem;
  line-height: 1.5rem;
  color: #333333;
}

.about_row2 {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  line-height: 1.4rem;
  margin-top: 3.5rem;
  color: #333333;
  background: #f3f3f3;
}
.about_row2 img {
  width: 49.3%;
  display: block;
}
.about_row2 div {
  width: 50.7%;
  padding: 0 5.5%;
}
.about_page1 {
  padding-bottom: 3.7rem;
}
.about_page2 {
  background: #f3f3f3;
  padding-bottom: 4.5rem;
}

.about_row3 {
  display: flex;
  align-items: center;
}
.about2_left {
  width: 47.3%;
  padding-right: 3.2%;
  font-size: 0.8rem;
  line-height: 1.4rem;
  color: #333;
}
.about2_img {
  width: 52.7%;
}
.about2_img img {
  width: 100%;
  display: block;
}

.about_page2 .about_title {
  padding: 3.8rem 0 2.7rem 0;
}

.about_page3 {
  padding-bottom: 3.5rem;
}

.about_page3 .about_title {
  padding: 4.3rem 0 3.6rem 0;
}

.about3_time {
  font-size: 1rem;
  color: #898989;
  text-align: center;
}

.about3_radius {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 1rem;
}
.about3_center {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #e50012;
  padding: 2px;
  position: relative;
  z-index: 5;
}
.about3_center div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #e50012;
}
.about3_hr {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-bottom: 1px solid #dcdcdc;
  width: 100%;
  z-index: 1;
}

.about3_title {
  font-size: 0.9rem;
  color: #333333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  margin-top: 0.8rem;
  padding: 0 14%;
  font-weight: bold;
}

.about3_text {
  font-size: 0.8rem;
  color: #898989;
  line-height: 1.4rem;
  margin-top: 1.1rem;
  padding: 0 14%;
  text-align: center;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}

.about3_bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3.6rem;
}

.about3_next,
.about3_prev,
.about5_next,
.about5_prev {
  width: 0.45rem;
  height: 0.95rem;
  position: relative;
  cursor: pointer;
  margin: 0 1.3rem;
  outline: none;
}

.about3_next img,
.about3_prev img,
.about5_next img,
.about5_prev img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  transition: 0.3s;
}

.about3_next img:nth-of-type(2),
.about3_prev img:nth-of-type(2),
.about5_next img:nth-of-type(2),
.about5_prev img:nth-of-type(2) {
  opacity: 0;
}

.about3_next:hover img:nth-of-type(1),
.about3_prev:hover img:nth-of-type(1),
.about5_next:hover img:nth-of-type(1),
.about5_prev:hover img:nth-of-type(1) {
  opacity: 0;
}

.about3_next:hover img:nth-of-type(2),
.about3_prev:hover img:nth-of-type(2),
.about5_next:hover img:nth-of-type(2),
.about5_prev:hover img:nth-of-type(2) {
  opacity: 1;
}

.about3_dot,
.about5_dot {
  display: flex;
}
.about3_dot span,
.about5_dot span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bfbfbf;
  display: block;
  margin: 0.35rem;
  outline: none;
}
.about3_dot .swiper-pagination-bullet-active,
.about5_dot .swiper-pagination-bullet-active {
  background: #e50012;
}

.about_page4 {
  background: #f3f3f3;
  padding-bottom: 5.5rem;
}
.about_page4 .about_title {
  padding: 3.6rem 0 2.7rem 0;
}
.about4_img img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.about_page5 .about_title {
  padding: 3rem 0 2.1rem 0;
}

.about5_img {
  width: 100%;
  background: #f3f3f3;
  padding: 0.9rem 1rem;
  border-radius: 0.5rem;
}
.about5_img img {
  width: 100%;
  display: block;
}

.about5_title {
  font-size: 0.9rem;
  line-height: 1.4rem;
  padding: 0 8%;
  text-align: center;
  margin-top: 1rem;
}

.about_page5 .about3_bottom {
  margin-top: 1.6rem;
}
.about_page5 {
  padding-bottom: 2.5rem;
}

.footer2 {
  background: #201d1d;
  padding: 1.8rem 0 1rem 0;
}
.footer2 .width {
  display: flex;
}
.footer2_left {
  flex: 1;
  overflow: hidden;
}
.footer2_right {
  margin-left: 3rem;
}
.footer2_right div {
  border: 1px solid #bfbfbf;
  background: #fff;
  padding: 0.5rem;
  width: 8.8rem;
}
.footer2_right img {
  display: block;
  width: 100%;
}
.footer2_right span {
  display: block;
  font-size: 0.8rem;
  color: #727272;
  text-align: center;
  margin-top: 0.5rem;
}
.footer2_left {
  font-size: 0.8rem;
  color: #666666;
}
.footer2_top {
  display: flex;
  align-items: center;
  height: 6.3rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.footer2_logo {
  width: 8.4rem;
}
.footer2_logo img {
  display: block;
  width: 100%;
}
.footer2_list {
  margin-left: 8%;
  margin-right: 5%;
}
.footer2_list div {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
}
.footer2_list div:last-of-type {
  margin-bottom: 0;
}
.footer2_list img {
  width: 1.25rem;
  margin-right: 0.5rem;
}

.footer2_btn {
  width: 12rem;
  height: 3rem;
  border-radius: 30px;
  background: #e50012;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-left: auto;
  transition: 0.3s;
}
.footer2_btn img {
  width: 1.35rem;
  margin-right: 0.5rem;
  display: block;
}
.footer2_btn:hover {
  opacity: 0.9;
}
.footer2_bottom {
  padding: 1.5rem 0;
}
.footer2_bottom a {
  color: #666666;
}
.footer2_bottom * {
  display: inline;
}

/* #endregion */

/* #region  产品中心*/
.product_top {
  background: #f6f6f6;
  padding: 2.3rem 0 2rem 0;
}

.product_top .width {
  display: flex;
  align-items: center;
}

.product_left {
  width: 23.12%;
  padding-bottom: 2rem;
}

.product_right {
  width: 76.88%;
  display: flex;
}

.product_left div {
  font-size: 2.1rem;
  color: #d6d5d5;
  font-weight: bold;
}
.product_left span {
  display: block;
  font-size: 1.4rem;
  color: #585657;
  margin-top: 0;
}
.product_left label {
  display: block;
  width: 1.4rem;
  height: 0.2rem;
  background: #e50012;
  margin-top: 1.5rem;
}

.product_tab {
  width: 50%;
}

.ptab_title {
  font-size: 1rem;
  font-weight: bold;
  color: #585657;
  margin-bottom: 1.3rem;
}

.ptab_list {
  display: flex;
  flex-wrap: wrap;
}

.ptab_title,
.ptab_list a {
  padding-right: 1rem;
}
.ptab_list a {
  width: 50%;
  font-size: 0.8rem;
  color: #818181;
  margin-bottom: 0.7rem;
  transition: 0.2s;
  cursor: pointer;
}

.ptab_list a:hover,
.ptab_list .ptab_active {
  color: #e50012;
}

.product_list {
  display: flex;
  flex-wrap: wrap;
}

.product {
  width: 23.62%;
  margin-right: 1.84%;
  margin-top: 3rem;
  color: #45444a;
  transition: 0.2s;
}
.product:nth-of-type(4n + 4) {
  margin-right: 0;
}

.product_img {
  width: 100%;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  transition: 0.3s;
}

.product:hover .product_img {
  border: 1px solid #e50012;
}

.product_img img {
  width: 100%;
  transition: 0.5s;
  display: block;
}

.product_title {
  font-size: 0.8rem;
  margin-top: 1.2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.product_btn {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  margin-top: 1.2rem;
  color: #828282;
  transition: 0.2s;
}
.product_btn div {
  margin-left: 0.7rem;
  width: 0.8rem;
  height: 0.35rem;
  position: relative;
  transition: 0.5s;
}

.product_btn img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.2s;
}

.product_btn img:nth-of-type(2) {
  opacity: 0;
}
.product:hover,
.product:hover .product_btn {
  color: #e50012;
}
.product:hover .product_img img {
  transform: scale(1.05);
}
.product:hover .product_btn div {
  transform: translateX(0.5rem);
}
.product:hover .product_btn img:nth-of-type(1) {
  opacity: 0;
}
.product:hover .product_btn img:nth-of-type(2) {
  opacity: 1;
}

.page {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3.9rem 0;
}

.page a {
  margin: 0 1.2rem;
  transition: 0.3s;
  font-size: 0.8rem;
  color: #55444a;
}

.page a:first-of-type,
.page a:last-of-type,
.page .page_next {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  position: relative;
  border: 1px solid #e6e6e6;
}

.page a:first-of-type img,
.page a:last-of-type img,
.page .page_next img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.5rem;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s;
  display: block;
}

.page a:first-of-type img:nth-of-type(2),
.page a:last-of-type img:nth-of-type(2),
.page_next img:nth-of-type(2) {
  opacity: 0;
}
.page .page_active,
.page a:hover {
  color: #e50012;
}

.page a:first-of-type:hover,
.page a:last-of-type:hover,
.page .page_next:hover {
  border-color: #e50012;
}

.page a:first-of-type:hover img:nth-of-type(1),
.page a:last-of-type:hover img:nth-of-type(1),
.page_next:hover img:nth-of-type(1) {
  opacity: 0;
}

.page a:first-of-type:hover img:nth-of-type(2),
.page a:last-of-type:hover img:nth-of-type(2),
.page_next:hover img:nth-of-type(2) {
  opacity: 1;
}

/* #endregion */

/* #region  产品详情*/
.show_top {
  background: #f6f6f6;
  padding-bottom: 2.8rem;
}

.show_back {
  height: 2.8rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.show_back a {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  transition: 0.2s;
  line-height: 1;
}
.show_back img {
  margin-right: 0.8rem;
  width: 0.35rem;
}

.show_back a:hover {
  color: #e50012;
}

.show_top .show_row {
  display: flex;
  align-items: center;
}

.show_left {
  /*width: 18.6rem;*/
  border: 1px solid #e5e5e5;
  background: #fff;
}
.show_left img {
  width: 100%;
}

.show_left2 {
  width: 24.75rem;
}

.show_right,
.show_right2 {
  flex: 1;
  overflow: hidden;
}

.show_right {
  margin-left: 4.3%;
}

.show_right2 {
  margin-left: 4%;
}

.show_t1 {
  font-size: 1rem;
}
.show_t2 {
  font-size: 0.8rem;
  line-height: 1.7rem;
  color: #333333;
  margin-top: 1.4rem;
}

.show_title {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
.show_title div {
  width: 14.1rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: #f3f3f3;
}
.show_title span {
  display: block;
  flex: 1;
  border-bottom: 1px solid #e5e5e5;
}

.show_text {
  margin-top: 2.9rem;
  font-size: 0.8rem;
}
.show_text img {
  max-width: 100%;
  display: inline;
}

.show_page {
  display: flex;
  justify-content: space-between;
  padding: 2.5rem 0;
  margin-top: 1rem;
}
.show_page div {
  max-width: 49%;
  font-size: 0.8rem;
  color: #767575;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.show_page a {
  display: inline;
  color: #121212;
  transition: 0.2s;
}
.show_page a:hover {
  color: #e50012;
}
.show_time {
  font-size: 0.8rem;
  color: #9c9c9c;
  margin-top: 0.6rem;
}

.show_right2 .show_t2 {
  margin-top: 0.8rem;
}

/* #endregion */

/* #region  软件优势*/
.product_class {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 2rem;
  position: relative;
  top: 0.5rem;
}
.product_class a {
  font-size: 1rem;
  color: #605f5f;
  padding: 0 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.product_class span {
  display: block;
  height: 0.7rem;
  border-left: 1px solid #dcdcdc;
}
.product_class span:last-of-type {
  display: none;
}
.product_class a:hover,
.product_class .product_active {
  color: #e50012;
}

.scientific {
  font-size: 0.8rem;
  margin-top: 3rem;
  margin-bottom: 5rem;
}

.scientific img {
  display: inline;
  max-width: 100%;
}

/* #endregion */

/* #region  服务支持*/

.service_search {
  width: 57%;
  height: 4rem;
  border-radius: 3rem;
  background: #f3f3f3;
  border: 1px solid #dcdcdc;
  margin: 2.4rem auto 1.5rem auto;
  display: flex;
  align-items: center;
}
.service_search input {
  flex: 1;
  height: 100%;
  padding-left: 2rem;
  background: none;
  font-size: 0.8rem;
}
.service_search button {
  padding: 0 2.2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}
.service_search button img {
  width: 2rem;
}

.service_item {
  height: 7rem;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
}
.service_item:last-of-type {
  border-bottom: none;
}
.service_img {
  width: 3rem;
  margin-right: 1.3rem;
}
.service_img img {
  width: 100%;
}
.service_title {
  font-size: 0.9rem;
  color: #333333;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.service_btn {
  width: 11rem;
  height: 3.3rem;
  border-radius: 2rem;
  border: 1px solid #dcdcdc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #333333;
  cursor: pointer;
  transition: 0.3s;
}
.service_btn:hover {
  background: #e50012;
  color: #fff;
}

.service_main .page {
  margin-top: 2rem;
}
.service_popup {
  width: 26rem;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 1.1rem 1.3rem 2.7rem 1.3rem;
  box-shadow: -0.004rem -0.25rem 1.3rem 0px rgba(148, 148, 148, 0.33);
  border-radius: 0.5rem;
  z-index: 888;
  text-align: center;
  display: none;
}
.spopup_close {
  display: flex;
  justify-content: flex-end;
}
.spopup_close img {
  cursor: pointer;
}

.spopup_text {
  font-size: 1rem;
  line-height: 2rem;
  margin-top: 1.3rem;
}

.spopup_btn1 {
  width: 14rem;
  height: 3.5rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  background: #e50012;
  margin: 2rem auto 0 auto;
  cursor: pointer;
  transition: 0.3s;
}

.spopup_btn1:hover {
  opacity: 0.8;
}

.spopup_btn2 {
  display: flex;
  justify-content: center;
  margin-top: 2.1rem;
  line-height: 1;
}

.spopup_btn2 div {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: #777777;
  transition: 0.3s;
}
.spopup_btn2 div:hover {
  color: #e50012;
}
.spopup_btn2 img {
  width: 0.5rem;
  margin-left: 0.45rem;
}

/* #endregion */

/* #region  招标资料*/
.data_item {
  display: flex;
  align-items: center;
  color: #333333;
  margin-top: 3rem;
}
.data_img {
  width: 26.25%;
}
.data_right {
  width: 73.75%;
  padding-left: 2.87%;
}
.data_img img {
  width: 100%;
}
.data_title {
  font-size: 1rem;
  transition: 0.2s;
}
.data_text {
  font-size: 0.8rem;
  line-height: 1.7rem;
  margin-top: 0.8rem;
  color: #8e8e8e;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.data_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.3rem;
}

.data_time {
  font-size: 0.8rem;
}
.data_btn {
  width: 9rem;
  height: 3.1rem;
  color: #828282;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  border-radius: 2rem;
  border: 1px solid #e5e5e5;
  transition: 0.3s;
}
.data_btn div {
  width: 0.8rem;
  height: 0.35rem;
  position: relative;
  margin-left: 0.7rem;
}
.data_btn img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: 0.3s;
}

.data_btn img:nth-of-type(2) {
  opacity: 0;
}
.data_title:hover {
  color: #e50012;
}
.data_btn:hover {
  background: #e50012;
  color: #fff;
}
.data_btn:hover img:nth-of-type(1) {
  opacity: 0;
}
.data_btn:hover img:nth-of-type(2) {
  opacity: 1;
}

/* #endregion */

/* #region  消防动态*/
.fire_main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0.74rem;
}
.fire {
  width: 45.75%;
  padding: 1.9rem 0 1.5rem 0;
  position: relative;
}

.fire_time {
  display: flex;
  align-items: center;
}

.fire_time span {
  font-size: 0.8rem;
  color: #333333;
}
.fire_time div {
  width: 2.5rem;
  height: 1.5rem;
  background: #231815;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-left: 2rem;
  transition: 0.3s;
}

.fire_text {
  font-size: 0.9rem;
  color: #333333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 0.66rem;
}
.fire_hr1 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
}

.fire_hr2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  border-bottom: 1px solid #e50012;
  overflow: hidden;
  transition: width 1s;
}

.fire:hover .fire_time div {
  background: #e50012;
}

.fire:hover .fire_hr2 {
  width: 100%;
}

/* #endregion */

/* #region  消防详情*/

.show_top2 {
  background: #f6f6f6;
  padding-bottom: 2.5rem;
}
.show_top2 .show_back {
  height: 2.5rem;
}
.show2 {
  padding: 0 8.8%;
}

.show2_title {
  text-align: center;
  font-size: 1rem;
  margin-top: 0.4rem;
  color: #333333;
}

.show2_time {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 0.66rem;
  color: #858383;
}

.show2_text {
  font-size: 0.8rem;
  line-height: 1.7rem;
  color: #333333;
  margin-top: 1.7rem;
}

.show2_text img{
  display: inline;
  max-width: 100%;
}

/* #endregion */

/* #region  人才招聘*/

.recruit_list {
  display: flex;
  flex-wrap: wrap;
}

.recruit {
  width: 31.64%;
  margin-right: 2.54%;
  padding: 1.3rem 2.2% 1.8rem 2.2%;
  background: #f3f3f3;
  border-radius: 5px;
  margin-top: 2rem;
  color: #333333;
  transition: 0.2s;
}
.recruit:hover {
  color: #e50012;
}
.recruit:nth-of-type(3n + 3) {
  margin-right: 0;
}

.recruit_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
}

.recruit_row span {
  color: #e50012;
}

.recruit_text {
  font-size: 0.8rem;
  line-height: 1.4rem;
  height: 4.2rem;
  color: #787777;
  margin-top: 0.9rem;
    text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.recruit_text *{
  font-size: 0.8rem!important;
}
.recruit_bottom {
  display: flex;
  justify-content: space-evenly;
  margin-top: 1.4rem;
}
.recruit_phone {
  width: 8.9rem;
  height: 2.2rem;
  background: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  font-size: 0.8rem;
  color: #373737;
  transition: 0.3s;
}
.recruit_popup {
  display: none;
  width: 100%;
  position: absolute;
  height: 2.8rem;
  line-height: 2.8rem;
  bottom: 2.2rem;
  border-radius: 5px;
  background: #fff;
  color: #333333;
  text-align: center;
}
.recruit_icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.6rem;
  position: relative;
}
.recruit_icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.recruit_icon img:nth-of-type(2) {
  opacity: 0;
}

.recruit_phone:hover {
  color: #fff;
  background: #e50012;
}
.recruit_phone:hover .recruit_icon img:nth-of-type(1) {
  opacity: 0;
}
.recruit_phone:hover .recruit_icon img:nth-of-type(2) {
  opacity: 1;
}
/* #endregion */

/* #region  招聘详情*/
.show_top3 {
  background: #f6f6f6;
  padding-bottom: 1.8rem;
}
.show_top3 .show_back {
  height: 2.5rem;
}
.show3_title {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  margin-top: 0.4rem;
  color: #333333;
}
.show3_title span {
  font-size: 1.2rem;
  color: #e50012;
  margin-left: 2.4rem;
}
.show3_row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 2px;
}
.show3_time {
  font-size: 0.8rem;
  color: #858383;
}
.show3_right {
  display: flex;
}
.show3_right .recruit_phone {
  margin-left: 1.3rem;
  width: 8.9rem;
  height: 2.5rem;
}

.show3_right .recruit_popup {
  bottom: 2.5rem;
}
/* #endregion */

/* #region  联系我们*/
.contact_main {
  padding: 2.8rem 9.3% 6rem 9.3%;
}
.contact_flex {
  display: flex;
}
.contact_map {
  height: 27.7rem;
  margin-top: 3.3rem;
}
.index6_left .contact_map{
  height: 100% !important;
  margin-top: 0 !important;
}
.contact_map img {
  width: 100%;
  height: 100%;
}

.contact_flex {
  display: flex;
  justify-content: space-between;
}

.contact_left {
  width: 50%;
}
.contact_right {
  width: 43.6%;
}

.contact_title {
  font-size: 1.4rem;
}

.contact_left .footer_row1 {
  line-height: 1;
  margin-top: 1.5rem;
}
.contact_left .footer_row2 {
  margin-top: 1.1rem;
}
.contact_left .footer_row3 div {
  margin-top: 1.4rem;
}
.contact_right input {
  margin-bottom: 1.1rem;
  margin-top: 0 !important;
  height: 3.5rem;
}
.contact_right textarea {
  height: 5.36rem;
  margin-top: 0 !important;
}
.contact_right button {
  margin-top: 1.7rem;
  height: 3.5rem;
}
.contact_right .contact_title {
  margin-bottom: 1.2rem;
}
/* #endregion */

/* #region  修改*/
.nav_choose .nav_href {
  color: #e50012;
}
.nav_href:hover {
  color: #e50012;
  text-shadow: none;
}

.amap-overviewcontrol {
  z-index: 1 !important;
  display: none;
}
.my-map{
    width:100%!important;
    height: 100%!important;
}
.amap-logo,
.amap-copyright,
.amap-scale-text,
.amap-copyright,
.amap-scale-line,
.amap-zoomcontrol {
  display: none !important;
}
/* #endregion */

/* #region  动画延迟*/

.index3_lrp,
.index5_item:nth-of-type(2),
.index_title span ,
.iabout_item:nth-of-type(2){
  animation-delay: 0.2s;
}

.about_tab,
.footer_row1,
.index5_item:nth-of-type(3),
.index4,
.index3_text,
.iabout_img,
.iabout_item:nth-of-type(3){
  animation-delay: 0.4s;
}

.footer_row2,
.index3_tabs,
.iabout_item:nth-of-type(4){
  animation-delay: 0.5s;
}

.footer_row3,
.iabout_item:nth-of-type(5){
  animation-delay: 0.7s;
}




/* #endregion */

/* #region  动画*/
.fadeInUp2 {
  animation-name: fadeInUp2;
}
.fadeInUp3 {
  animation-name: fadeInUp3;
}
@keyframes fadeInUp2 {
  0% {
    opacity: 0;
    transform: translate3d(0, 1rem, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp3 {
  0% {
    opacity: 0;
    transform: translate3d(0, 2rem, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/* #endregion */

/* .textone {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.texttwo {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
} */
