/* 基础样式 - 适用于所有设备 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Roboto' !important;
}
body {
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
  cursor: default;
}
html {
  font-size: 16px;
  /* 默认值，1rem = 16px */
}
@media (min-width: 576px) {
  html {
    font-size: 17px;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  html {
    font-size: 19px;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 20px;
  }
}
a {
  text-decoration: none;
  color: #333;
}
ul,
ol {
  list-style: none;
}
img {
  vertical-align: top;
  border: none;
}
.flex {
  display: flex;
}
.d-c-c {
  display: flex;
  justify-content: center;
  align-items: center;
}
.d-a-c {
  display: flex;
  align-items: center;
}
.d-j-c {
  display: flex;
  justify-content: center;
}
.d-c-sb {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.button {
  border: 0;
  background-color: none;
  outline: none;
}
@media (min-width: 768px) {
  .w-49 {
    flex: 0 0 auto;
    width: 49% !important;
  }
}
.rotateDeg {
  transform: rotateX(96deg) translate3d(-50%, 0, 0) !important;
}
.noRotateDeg {
  transform: translateX(-50%) !important;
}
#carouselExampleIndicators .small-banner-text {
  right: 0;
  left: 10%;
  text-align: left;
}
#carouselExampleIndicators .data-panel {
  position: absolute;
  bottom: -41px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  height: 82px;
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  display: flex;
  opacity: 0.8;
  padding: 8px;
  transition: all 1s;
  transform-origin: center;
  transform-origin: bottom;
  z-index: 3;
}
#carouselExampleIndicators .data-panel .data-item {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#carouselExampleIndicators .data-panel .data-item .card_left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 5px;
}
#carouselExampleIndicators .data-panel .data-item .card_left .top_list {
  display: flex;
}
#carouselExampleIndicators .data-panel .data-item .card_left .top_list .num {
  font-size: 36px;
  font-weight: normal;
  color: #dd0012;
}
#carouselExampleIndicators .data-panel .data-item .card_left .top_list .unit {
  font-size: 12px;
  font-family: Source Han Sans CN, Source Han Sans CN-400;
  font-weight: 400;
  color: #333;
}
#carouselExampleIndicators .data-panel .data-item .card_left .desc {
  font-size: 11px;
  font-family: Source Han Sans CN, Source Han Sans CN-400;
  font-weight: 400;
  color: #333;
}
#carouselExampleIndicators .data-panel .data-item .card_right {
  width: 0.5px;
  height: 55px;
  background-color: #999;
}
.main-block {
  display: block;
}
#case_id {
  display: flex;
  align-items: center;
  border-radius: 3.9936px;
  position: relative;
}
#case_id .case_item_box {
  position: relative;
}
#case_id .case_item_box:last-child {
  margin-right: 0px !important;
}
#case_id .case_item_box .case_big_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  cursor: pointer;
  overflow: hidden;
}
#case_id .case_item_box .case_big_box .case_big_text {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  height: 35.0016px;
  text-align: center;
  color: #fff;
  font-size: 13.9968px;
  border-radius: 4.992px;
}
#case_id .case_item_box .case_big_box .case_big_text .detail_text_small {
  display: inline-block;
  width: 95.0016px;
  height: 35.0016px;
  line-height: 35.0016px;
  margin-right: 30.0096px;
  background: #ffc000;
  border-radius: 4.992px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#case_id .case_item_box .case_big_box .case_big_text .ask_text_small {
  display: inline-block;
  width: 95.0016px;
  height: 35.0016px;
  line-height: 35.0016px;
  background: #0f92de;
  border-radius: 4.992px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#case_id .case_img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 3.9936px;
  object-fit: cover;
}
.container {
  height: auto;
  position: relative;
}
@keyframes textTopAni {
  /*from表示动画的开始位置 也可以使用0%*/
  from {
    transform: translateY(-999.9936px);
  }
  /*to动画的结束位置 也可以使用100%*/
  to {
    transform: translateY(0px);
  }
}
@keyframes textLeftAni {
  /*from表示动画的开始位置 也可以使用0%*/
  from {
    transform: translate(-999.9936px, 99.9936px);
  }
  /*to动画的结束位置 也可以使用100%*/
  to {
    transform: translate(-600px, 99.9936px);
  }
}
@keyframes textRightAni {
  /*from表示动画的开始位置 也可以使用0%*/
  from {
    transform: translate(999.9936px);
  }
  /*to动画的结束位置 也可以使用100%*/
  to {
    transform: translate(0px);
  }
}
@keyframes textBottomAni {
  /*from表示动画的开始位置 也可以使用0%*/
  from {
    transform: translateY(999.9936px);
  }
  /*to动画的结束位置 也可以使用100%*/
  to {
    transform: translate(0px);
  }
}
@keyframes textScaleAni {
  /*from表示动画的开始位置 也可以使用0%*/
  from {
    transform: scale(0);
  }
  /*to动画的结束位置 也可以使用100%*/
  to {
    transform: scale(1);
  }
}
@keyframes SmalltextLeftAni {
  from {
    transform: translate(-80.0064px);
  }
  to {
    transform: translate(0px);
  }
}
@keyframes SmalltextRightAni {
  from {
    transform: translate(80.0064px);
  }
  to {
    transform: translate(0px);
  }
}
@keyframes SmalltextNewsTopAni {
  from {
    transform: translateY(-80.0064px);
  }
  to {
    transform: translate(0px);
  }
}
@keyframes SmalltextNewsBtmAni {
  from {
    transform: translateY(80.0064px);
  }
  to {
    transform: translate(0px);
  }
}
@keyframes lineMove1 {
  0% {
    height: 0.9984px;
  }
  100% {
    height: 120px;
  }
}
@keyframes lineRowMove1 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes lineMove2 {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes lineRowMove2 {
  0% {
    width: 0.9984px;
  }
  100% {
    width: 76.992px;
  }
}
@keyframes caseLeftAni {
  from {
    transform: translate(-80.0064px, 80.0064px);
  }
  to {
    transform: translate(0px);
  }
}
@keyframes caseRightAni {
  from {
    transform: translate(80.0064px, 80.0064px);
  }
  to {
    transform: translate(0px);
  }
}
@keyframes moverowlineAni {
  from {
    width: 0;
  }
  to {
    width: 1582.0032px;
  }
}
@keyframes moverowLeavelineAni {
  from {
    width: 1582.0032px;
  }
  to {
    width: 0;
  }
}
.container .fix_content {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 349.9968px;
  height: 510.0096px;
  width: 150.0096px;
  z-index: 7;
}
.container .fix_content .siring_logo {
  width: 147.9936px;
  height: 48.9984px;
}
.container .fix_content .fix_main {
  background: #ffffff;
  border-radius: 6.0096px;
}
.container .fix_content .fix_main .fix_item {
  height: 51.9936px;
  font-size: 20.0064px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container .fix_content .fix_main .fix_item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 400;
  color: #000000;
  cursor: pointer;
  font-size: 20.0064px;
}
.container .fix_content .fix_main .fix_item a:hover {
  color: #fff;
}
.container .index {
  color: #f5f60c;
}
.container .serive_pro {
  width: 100%;
  min-height: 750.0096px;
  display: flex;
  justify-content: center;
  position: relative;
  background: url(../img/two_hand.png) no-repeat 50%;
  background-attachment: fixed;
  background-size: cover;
}
.container .serive_pro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.container .serive_pro .serive_box {
  position: absolute;
  width: 100%;
}
.container .serive_pro .serive_box .ser_main {
  display: flex;
  width: 1560px;
  margin: 0 auto;
  margin-top: 30.0096px;
}
.container .serive_pro .serive_box .ser_main .serive_left {
  margin: 0 39.9936px 0 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6.0096px;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.container .serive_pro .serive_box .ser_main .serive_left .se_left_item {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 279.9936px;
  height: 80.0064px;
  justify-content: center;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  position: relative;
  color: #999;
}
.container .serive_pro .serive_box .ser_main .serive_left .se_left_item .backbox {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #dd0012;
  overflow: hidden;
  border-radius: 2.9952px;
}
.container .serive_pro .serive_box .ser_main .serive_left:hover {
  cursor: pointer;
  border-radius: 3.9936px;
}
.container .serive_pro .serive_box .ser_main .serive_left .se_img {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 4;
  margin-bottom: 3.9936px;
}
.container .serive_pro .serive_box .ser_main .serive_left .se_text {
  font-size: 20.0064px;
  font-weight: 400;
  position: relative;
  z-index: 4;
}
.container .serive_pro .serive_box .ser_main .serive_left .none_text {
  display: none;
}
.container .serive_pro .serive_box .serive_right {
  flex: 1;
}
.container .serive_pro .serive_box .serive_right .right_desc {
  font-size: 22.0032px;
  line-height: 36px;
  font-family: Arial;
  font-weight: 400;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  /* 控制显示的行数 */
  padding-right: 8.0064px;
}
.container .serive_pro .serive_box .serive_right .right_desc .right_desc_title {
  font-weight: bold;
}
.container .serive_pro .serive_box .serive_right .se_catext {
  font-size: 39.9936px;
  font-weight: normal;
  color: #ffff00;
  margin: 27.9936px 0 30.0096px;
}
.container .serive_pro .serive_box .serive_right .case_box {
  display: flex;
  align-items: center;
  border-radius: 3.9936px;
  position: relative;
}
.container .serive_pro .serive_box .serive_right .case_box .case_item_box {
  position: relative;
  margin-right: 39.9936px;
}
.container .serive_pro .serive_box .serive_right .case_box .case_item_box:last-child {
  margin-right: 0px !important;
}
.container .serive_pro .serive_box .serive_right .case_box .case_item_box .case_big_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  cursor: pointer;
  overflow: hidden;
}
.container .serive_pro .serive_box .serive_right .case_box .case_item_box .case_big_box .case_big_text {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  height: 35.0016px;
  text-align: center;
  color: #fff;
  font-size: 13.9968px;
  border-radius: 4.992px;
}
.container .serive_pro .serive_box .serive_right .case_box .case_item_box .case_big_box .case_big_text .detail_text_small {
  display: inline-block;
  width: 95.0016px;
  height: 35.0016px;
  line-height: 35.0016px;
  margin-right: 30.0096px;
  background: #ffc000;
  border-radius: 4.992px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container .serive_pro .serive_box .serive_right .case_box .case_item_box .case_big_box .case_big_text .ask_text_small {
  display: inline-block;
  width: 95.0016px;
  height: 35.0016px;
  line-height: 35.0016px;
  background: #0f92de;
  border-radius: 4.992px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container .serive_pro .serive_box .serive_right .case_box .case_img {
  width: 386.9952px;
  height: 386.9952px;
  cursor: pointer;
  border-radius: 3.9936px;
  object-fit: cover;
}
.container .serive_pro .serive_box .serive_right .ser_btn {
  position: absolute;
  bottom: -60px;
  left: calc(50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.container .serive_pro .serive_box .serive_right .ser_btn .ser_lf_btn {
  width: 131.0016px;
  height: 49.9968px;
  border: 0.9984px solid #ffffff;
  font-size: 15.9936px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  margin-right: 39.9936px;
  padding-left: 10.0032px;
  cursor: pointer;
  position: relative;
  visibility: visible;
  animation-delay: 1s;
  animation-name: fadeInUp;
  transition: all 0.5s;
}
.container .serive_pro .serive_box .serive_right .ser_btn .ser_lf_btn:hover {
  background: #e60012;
  border-color: #e60012;
  color: #ffffff;
}
.container .serive_pro .serive_box .serive_right .ser_btn .ser_lf_btn:hover .img-box .white-arrow {
  left: 3.9936px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.container .serive_pro .serive_box .serive_right .ser_btn .ser_lf_btn .img-box {
  margin-left: 10.0032px;
  width: 30.0096px;
  height: 8.0064px;
  overflow: hidden;
  position: relative;
}
.container .serive_pro .serive_box .serive_right .ser_btn .ser_lf_btn .img-box .white-arrow {
  position: relative;
  left: -30.0096px;
  width: 60px;
  height: 8.0064px;
}
.container .serive_pro .serive_box .serive_right .ser_btn .ser_rg_btn {
  width: 131.0016px;
  height: 49.9968px;
  font-size: 15.9936px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  padding-left: 10.0032px;
  cursor: pointer;
  border: 0.9984px solid #ffffff;
  position: relative;
  visibility: visible;
  animation-delay: 1s;
  animation-name: fadeInUp;
  transition: all 0.5s;
}
.container .serive_pro .serive_box .serive_right .ser_btn .ser_rg_btn a {
  color: #fff;
}
.container .serive_pro .serive_box .serive_right .ser_btn .ser_rg_btn:hover {
  background: #e60012;
  border-color: #e60012;
  color: #ffffff;
}
.container .serive_pro .serive_box .serive_right .ser_btn .ser_rg_btn:hover .img-box .white-arrow {
  left: 3.9936px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.container .serive_pro .serive_box .serive_right .ser_btn .ser_rg_btn .img-box {
  margin-left: 10.0032px;
  width: 30.0096px;
  height: 8.0064px;
  overflow: hidden;
  position: relative;
}
.container .serive_pro .serive_box .serive_right .ser_btn .ser_rg_btn .img-box .white-arrow {
  position: relative;
  left: -30.0096px;
  width: 60px;
  height: 8.0064px;
}
.pro_show .main_mar {
  padding-top: 30.0096px;
}
.pro_show .pro_container {
  background: url(../img/block.png);
  position: relative;
  padding-bottom: 30px;
}
.pro_show .pro_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pro_show .pro_main {
  display: flex;
  margin: 0px auto;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pro_show .pro_main .pro_item {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 6.0096px;
  border-top-right-radius: 6.0096px;
  margin-top: 15px;
  cursor: pointer;
}
.pro_show .pro_main .pro_item .app_big_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  overflow: hidden;
}
.pro_show .pro_main .pro_item .app_big_box .big_text {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  height: 35.0016px;
  line-height: 35.0016px;
  text-align: center;
  color: #fff;
  font-size: 13.9968px;
  border-radius: 4.992px;
  z-index: 99;
  display: none;
  width: 100%;
}
.pro_show .pro_main .pro_item .app_big_box .big_text .detail_text {
  display: inline-block;
  width: 95.0016px;
  height: 35.0016px;
  margin-right: 30.0096px;
  background: #ffc000;
  border-radius: 4.992px;
  font-size: 16px;
  line-height: 33.0048px;
}
.pro_show .pro_main .pro_item .app_big_box .big_text .ask_text {
  display: inline-block;
  width: 95.0016px;
  height: 35.0016px;
  background: #0f92de;
  border-radius: 4.992px;
  font-size: 16px;
  line-height: 33.0048px;
  text-decoration: none;
}
.pro_show .pro_main .pro_item .app_big_img {
  width: 374.9952px;
  height: 374.9952px;
}
.pro_show .pro_main .pro_item .pro_btm {
  background: rgba(255, 255, 255, 0.9);
  padding: 6.0096px 10.0032px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 0px 4.992px 0px rgba(0, 0, 0, 0.05);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}
.pro_show .pro_main .pro_item .pro_btm .pro_left {
  flex: 1;
}
.pro_show .pro_main .pro_item .pro_btm .pro_left .pro_left_top {
  width: 100%;
  display: flex;
  align-items: center;
}
.pro_show .pro_main .pro_item .pro_btm .pro_left .pro_left_top .left_name {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  /* 控制显示的行数 */
}
.pro_show .pro_main .pro_item .pro_btm .pro_left .pro_rgt_top {
  padding-top: 10.0032px;
  display: flex;
  align-items: center;
}
.pro_show .pro_main .pro_item .pro_btm .pro_left .pro_rgt_top .left_img {
  width: 24.9984px;
  height: 24.9984px;
}
.pro_show .pro_main .pro_item .pro_btm .pro_left .pro_rgt_top .rgt_btm {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  margin-right: 10.0032px;
}
.pro_show .pro_main .pro_item .pro_btm .pro_right {
  width: 63.9936px;
  height: 63.9936px;
  border-radius: 1.9968px;
}
.more_box {
  margin: 30.0096px auto 0;
  border: 0.9984px solid #000;
  width: 131.0016px;
  height: 49.9968px;
  font-size: 15.9936px;
  font-weight: 500;
  color: #000;
  display: flex;
  align-items: center;
  padding-left: 10.0032px;
  cursor: pointer;
  position: relative;
  visibility: visible;
  animation-delay: 1s;
  animation-name: fadeInUp;
  transition: all 0.5s;
}
.more_box:hover {
  background: #e60012;
  border-color: #e60012;
  color: #ffffff;
}
.more_box:hover .img-box .white-arrow {
  left: 3.9936px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.more_box .img-box {
  margin-left: 10.0032px;
  width: 30.0096px;
  height: 8.0064px;
  overflow: hidden;
  position: relative;
}
.more_box .img-box .white-arrow {
  top: -10px;
  position: relative;
  left: -30.0096px;
  width: 60px;
  height: 8.0064px;
}
.coop_step {
  position: relative;
  width: 100%;
  background: url(../img/earth.png) center center;
}
.coop_step .coop_container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 20.0064px auto;
}
.coop_step .coop_container .coop_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.coop_step .coop_container .coop_item .top-circle-box {
  width: 156px;
  height: 156px;
  border: 3.9936px solid #dedede;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.coop_step .coop_container .coop_item .top-circle-box .circle-line {
  position: absolute !important;
  top: -3.9936px;
  left: -3.9936px;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.coop_step .coop_container .coop_item .top-circle-box .box-num {
  position: absolute;
  left: 152.0064px;
  top: 50%;
  transform: translateY(-50%);
  width: 104.0064px;
  height: 49.9968px;
  object-fit: cover;
}
.coop_step .coop_container .coop_item .top-circle-box .center-img {
  width: 80.0064px;
  height: 80.0064px;
}
.coop_step .coop_container .coop_item .bottom-name {
  margin-top: 30.0096px;
  font-size: 16px;
  font-weight: 400;
  text-align: LEFT;
  color: #333333;
  line-height: 23.0016px;
}
.coop_step .coop_container .move_rowline {
  position: absolute;
  top: 81.0048px;
  left: 109.9968px;
  background: #a90303;
  height: 2.9952px;
}
.coop_step .coop_container .all_line {
  position: absolute;
  top: -49.9968px;
  left: 109.9968px;
}
.coop_step .coop_container .coop_chart {
  height: 210.0096px;
  position: relative;
  width: 100%;
}
.coop_step .coop_container .coop_chart .coop_one {
  position: absolute;
  top: -20.0064px;
  left: 109.9968px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 109.9968px;
}
.coop_step .coop_container .coop_chart .coop_one:hover .move_line1 {
  animation: lineMove1 0.8s forwards;
}
.coop_step .coop_container .coop_chart .coop_one:hover .move_row_line1 {
  animation: lineRowMove1 0.5s forwards ease-out;
  animation-delay: 0.8s;
  /* 添加2秒延迟 */
}
.coop_step .coop_container .coop_chart .coop_one .move_line1 {
  position: absolute;
  top: 99.9936px;
  left: 95.0016px;
  width: 2.9952px;
  height: 0px;
  background: #a90303;
  z-index: 4;
}
.coop_step .coop_container .coop_chart .coop_one .row_box {
  position: absolute;
  top: 216.9984px;
  left: 20.0064px;
  width: 76.992px;
  height: 2.9952px;
  overflow: hidden;
}
.coop_step .coop_container .coop_chart .coop_one .row_box .move_row_line1 {
  transform: translateX(100%);
  width: 76.992px;
  height: 2.9952px;
  background: #a90303;
  position: absolute;
  z-index: 4;
}
.coop_step .coop_container .coop_chart .coop_one .one_img {
  width: 56.0064px;
}
.coop_step .coop_container .coop_chart .coop_one .one_coop_text {
  display: flex;
  flex-direction: column;
}
.coop_step .coop_container .coop_chart .coop_one .one_coop_text .one_text {
  width: 108px;
  height: 28.992px;
  background: rgba(255, 255, 255, 0.2);
  text-align: center;
  line-height: 28.992px;
  color: #333333;
  font-size: 20.0064px;
  margin-bottom: 30.0096px;
  margin-right: 1.9968px;
  position: relative;
  top: 3.9936px;
}
.coop_step .coop_container .coop_chart .coop_one .one_coop_text .two_text {
  font-size: 15.9936px;
  font-weight: 400;
  text-align: CENTER;
  color: #333333;
  margin-bottom: 6.0096px;
}
.coop_step .coop_container .coop_chart .coop_two {
  position: absolute;
  top: -45.0048px;
  left: 306.0096px;
  align-items: center;
  width: 109.9968px;
}
.coop_step .coop_container .coop_chart .coop_two:hover .move_line2 {
  animation: lineMove2 0.8s forwards;
}
.coop_step .coop_container .coop_chart .coop_two:hover .move_row_line2 {
  animation: lineRowMove2 0.5s forwards ease-out;
  animation-delay: 0.8s;
  /* 添加2秒延迟 */
}
.coop_step .coop_container .coop_chart .coop_two .move_line2_box {
  position: absolute;
  top: -4.992px;
  left: 14.9952px;
  overflow: hidden;
}
.coop_step .coop_container .coop_chart .coop_two .move_line2_box .move_line2 {
  transform: translateY(100%);
  width: 2.9952px;
  height: 120px;
  background: #a90303;
  z-index: 4;
}
.coop_step .coop_container .coop_chart .coop_two .row_box2 {
  position: absolute;
  top: -6.0096px;
  left: 14.9952px;
  width: 76.992px;
  height: 3.9936px;
  overflow: hidden;
}
.coop_step .coop_container .coop_chart .coop_two .row_box2 .move_row_line2 {
  width: 0px;
  height: 2.9952px;
  background: #a90303;
  position: absolute;
  z-index: 4;
}
.coop_step .coop_container .coop_chart .coop_two .two_top_text {
  display: flex;
  flex-direction: column;
  margin-bottom: 10.0032px;
}
.coop_step .coop_container .coop_chart .coop_two .two_top_text .btm_coop {
  font-size: 15.9936px;
  font-weight: 400;
  text-align: CENTER;
  color: #333333;
  letter-spacing: 0.1em;
  margin-left: 10.0032px;
  margin-bottom: 8.0064px;
}
.coop_step .coop_container .coop_chart .coop_two .two_btm_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: -87.9936px;
}
.coop_step .coop_container .coop_chart .coop_two .two_btm_text .two_title {
  text-align: center;
  color: #333333;
  font-size: 18px;
  margin-top: 3.9936px;
}
.coop_step .coop_container .coop_chart .coop_two .two_btm_text .two_img {
  width: 56.0064px;
}
.coop_step .coop_container .coop_chart .coop_three {
  position: absolute;
  top: -12px;
  left: 488.0064px;
  align-items: center;
  width: 109.9968px;
}
.coop_step .coop_container .coop_chart .coop_three:hover .move_line3 {
  animation: lineMove1 0.8s forwards;
}
.coop_step .coop_container .coop_chart .coop_three:hover .move_row_line3 {
  animation: lineRowMove1 0.5s forwards ease-out;
  animation-delay: 0.8s;
  /* 添加2秒延迟 */
}
.coop_step .coop_container .coop_chart .coop_three .move_line3 {
  position: absolute;
  top: 93.0048px;
  left: 52.992px;
  width: 2.9952px;
  height: 0px;
  background: #a90303;
  z-index: 4;
}
.coop_step .coop_container .coop_chart .coop_three .row_box3 {
  position: absolute;
  top: 211.008px;
  left: -22.0032px;
  width: 76.992px;
  height: 2.9952px;
  overflow: hidden;
}
.coop_step .coop_container .coop_chart .coop_three .row_box3 .move_row_line3 {
  transform: translateX(100%);
  width: 76.992px;
  height: 2.9952px;
  background: #a90303;
  position: absolute;
  z-index: 4;
}
.coop_step .coop_container .coop_chart .coop_three .three_top_text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.coop_step .coop_container .coop_chart .coop_three .three_top_text .three_img {
  width: 56.0064px;
}
.coop_step .coop_container .coop_chart .coop_three .three_top_text .three_title {
  text-align: center;
  color: #333333;
  font-size: 20.0064px;
}
.coop_step .coop_container .coop_chart .coop_three .three_btm_text {
  display: flex;
  flex-direction: column;
  margin-top: 35.0016px;
  margin-left: -90.0096px;
}
.coop_step .coop_container .coop_chart .coop_three .three_btm_text .btm_coop_three {
  font-size: 14px;
  font-weight: 400;
  text-align: CENTER;
  color: #333333;
  letter-spacing: 0.1em;
  margin-bottom: 7.008px;
  position: relative;
  top: -15.9936px;
}
.coop_step .coop_container .coop_chart .coop_four {
  left: 672px !important;
}
.coop_step .coop_container .coop_chart .coop_four:hover .move_line4 {
  animation: lineMove2 0.8s forwards;
}
.coop_step .coop_container .coop_chart .coop_four:hover .move_row_line4 {
  animation: lineRowMove2 0.5s forwards ease-out;
  animation-delay: 0.8s;
  /* 添加2秒延迟 */
}
.coop_step .coop_container .coop_chart .coop_four .move_line4_box {
  position: absolute;
  top: -4.992px;
  left: 12.9984px;
  overflow: hidden;
}
.coop_step .coop_container .coop_chart .coop_four .move_line4_box .move_line4 {
  transform: translateY(100%);
  width: 2.9952px;
  height: 120px;
  background: #a90303;
  z-index: 4;
}
.coop_step .coop_container .coop_chart .coop_four .row_box4 {
  position: absolute;
  top: -4.992px;
  left: 14.9952px;
  width: 76.992px;
  height: 2.9952px;
  overflow: hidden;
}
.coop_step .coop_container .coop_chart .coop_four .row_box4 .move_row_line4 {
  width: 0px;
  height: 2.9952px;
  background: #a90303;
  position: absolute;
  z-index: 4;
}
.coop_step .coop_container .coop_chart .coop_five {
  left: 853.9968px !important;
}
.coop_step .coop_container .coop_chart .coop_five:hover .move_line5 {
  animation: lineMove1 0.8s forwards;
}
.coop_step .coop_container .coop_chart .coop_five:hover .move_row_line5 {
  animation: lineRowMove1 0.5s forwards ease-out;
  animation-delay: 0.8s;
  /* 添加2秒延迟 */
}
.coop_step .coop_container .coop_chart .coop_five .move_line5 {
  position: absolute;
  top: 93.0048px;
  left: 49.9968px;
  width: 2.9952px;
  height: 0px;
  background: #a90303;
  z-index: 4;
}
.coop_step .coop_container .coop_chart .coop_five .row_box5 {
  position: absolute;
  top: 211.008px;
  left: -24px;
  width: 76.992px;
  height: 2.9952px;
  overflow: hidden;
}
.coop_step .coop_container .coop_chart .coop_five .row_box5 .move_row_line5 {
  transform: translateX(100%);
  width: 76.992px;
  height: 2.9952px;
  background: #a90303;
  position: absolute;
  z-index: 4;
}
.coop_step .coop_container .coop_chart .coop_six {
  left: 1034.9952px !important;
}
.coop_step .coop_container .coop_chart .coop_six:hover .move_line6 {
  animation: lineMove2 0.8s forwards;
}
.coop_step .coop_container .coop_chart .coop_six:hover .move_row_line6 {
  animation: lineRowMove2 0.5s forwards ease-out;
  animation-delay: 0.8s;
  /* 添加2秒延迟 */
}
.coop_step .coop_container .coop_chart .coop_six .move_line6_box {
  position: absolute;
  top: -4.992px;
  left: 12px;
  overflow: hidden;
}
.coop_step .coop_container .coop_chart .coop_six .move_line6_box .move_line6 {
  transform: translateY(100%);
  width: 2.9952px;
  height: 120px;
  background: #a90303;
  z-index: 4;
}
.coop_step .coop_container .coop_chart .coop_six .row_box6 {
  position: absolute;
  top: -4.992px;
  left: 14.9952px;
  width: 76.992px;
  height: 2.9952px;
  overflow: hidden;
}
.coop_step .coop_container .coop_chart .coop_six .row_box6 .move_row_line6 {
  width: 0px;
  height: 2.9952px;
  background: #a90303;
  position: absolute;
  z-index: 4;
}
.coop_step .coop_container .coop_chart .coop_seven {
  left: 1214.9952px !important;
}
.coop_step .coop_container .coop_chart .coop_seven:hover .move_line7 {
  animation: lineMove1 0.8s forwards;
}
.coop_step .coop_container .coop_chart .coop_seven:hover .move_row_line7 {
  animation: lineRowMove1 0.5s forwards ease-out;
  animation-delay: 0.8s;
  /* 添加2秒延迟 */
}
.coop_step .coop_container .coop_chart .coop_seven .move_line7 {
  position: absolute;
  top: 93.0048px;
  left: 52.992px;
  width: 2.9952px;
  height: 0px;
  background: #a90303;
  z-index: 4;
}
.coop_step .coop_container .coop_chart .coop_seven .row_box7 {
  position: absolute;
  top: 211.008px;
  left: -20.0064px;
  width: 76.992px;
  height: 2.9952px;
  overflow: hidden;
}
.coop_step .coop_container .coop_chart .coop_seven .row_box7 .move_row_line7 {
  transform: translateX(100%);
  width: 76.992px;
  height: 2.9952px;
  background: #a90303;
  position: absolute;
  z-index: 4;
}
.coop_step .coop_container .coop_chart .coop_eight {
  left: 1400.0064px !important;
}
.coop_step .coop_container .coop_chart .coop_eight:hover .move_line8 {
  animation: lineMove2 0.8s forwards;
}
.coop_step .coop_container .coop_chart .coop_eight:hover .move_row_line8 {
  animation: lineRowMove2 0.5s forwards ease-out;
  animation-delay: 0.8s;
  /* 添加2秒延迟 */
}
.coop_step .coop_container .coop_chart .coop_eight .move_line8_box {
  position: absolute;
  top: -4.992px;
  left: 10.0032px;
  overflow: hidden;
}
.coop_step .coop_container .coop_chart .coop_eight .move_line8_box .move_line8 {
  transform: translateY(100%);
  width: 2.9952px;
  height: 120px;
  background: #a90303;
  z-index: 4;
}
.coop_step .coop_container .coop_chart .coop_eight .row_box8 {
  position: absolute;
  top: -4.992px;
  left: 12px;
  width: 76.992px;
  height: 2.9952px;
  overflow: hidden;
}
.coop_step .coop_container .coop_chart .coop_eight .row_box8 .move_row_line8 {
  width: 0px;
  height: 2.9952px;
  background: #a90303;
  position: absolute;
  z-index: 4;
}
.coop_step .coop_container .coop_chart .coop_nine {
  left: 1580.0064px !important;
}
.coop_step .coop_container .coop_chart .coop_nine:hover .move_line9 {
  animation: lineMove1 0.8s forwards;
}
.coop_step .coop_container .coop_chart .coop_nine:hover .move_row_line9 {
  animation: lineRowMove1 0.5s forwards ease-out;
  animation-delay: 0.8s;
  /* 添加2秒延迟 */
}
.coop_step .coop_container .coop_chart .coop_nine .move_line9 {
  position: absolute;
  top: 93.0048px;
  left: 49.9968px;
  width: 2.9952px;
  height: 0px;
  background: #a90303;
  z-index: 4;
}
.coop_step .coop_container .coop_chart .coop_nine .row_box9 {
  position: absolute;
  top: 211.008px;
  left: -24px;
  width: 76.992px;
  height: 2.9952px;
  overflow: hidden;
}
.coop_step .coop_container .coop_chart .coop_nine .row_box9 .move_row_line9 {
  transform: translateX(100%);
  width: 76.992px;
  height: 2.9952px;
  background: #a90303;
  position: absolute;
  z-index: 4;
}
.coop_part {
  position: relative;
  height: 610.0032px;
  overflow: hidden;
}
.coop_part .coopr {
  position: relative;
  width: 100%;
  height: 699.9936px;
  background: url(../img/coopr.png) no-repeat 50%;
  background-attachment: fixed;
  background-size: cover;
}
.coop_part .coopr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.coop_part .brand_two_id {
  transform: translateX(-50%) !important;
  display: none;
}
.coop_part .brand_box {
  margin: 0 auto;
  perspective: 999.9936px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 15px;
}
.coop_part .brand_box .two_item {
  justify-content: center !important;
}
.coop_part .brand_box .threee_item {
  justify-content: center !important;
}
.coop_part .brand_box .four_item {
  justify-content: center !important;
}
.coop_part .brand_box .five_item {
  justify-content: center !important;
}
.coop_part .brand_box .brand_item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 30.0096px;
}
.coop_part .brand_box .brand_item .img_box {
  width: 219.9936px;
  height: 90.0096px;
  border-radius: 8.0064px;
  background: #fff;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coop_part .brand_box .brand_item .img_box .brand_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8.0064px;
}
.about_container {
  position: relative;
}
.about_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  overflow-y: scroll;
}
.about_container .about_img {
  width: 100%;
  height: 579.9936px;
}
.about_container .about_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
}
.about_container .about_box .about_left {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
}
.about_container .about_box .about_left .about_title {
  font-size: 18px;
  font-weight: normal;
  color: #ffff00;
  margin-bottom: 24.9984px;
  position: relative;
  z-index: 2;
}
.about_container .about_box .about_left .about_us {
  position: absolute;
  top: -49.9968px;
  left: 99.9936px;
}
.about_container .about_box .about_left .about_line {
  width: 49.9968px;
  height: 4.992px;
  background: #d9d9d9;
}
.about_container .about_box .about_left .comp_con {
  display: flex;
}
.about_container .about_box .about_left .comp_con .vertical_line {
  width: 1.9968px;
  margin-top: 20.0064px;
  margin-right: 43.008px;
}
.about_container .about_box .about_left .comp_con .vertical_line .line1 {
  width: 1.9968px;
  height: 99.9936px;
  background-color: #dde10d;
  margin-bottom: 20.0064px;
}
.about_container .about_box .about_left .comp_con .vertical_line .line2 {
  width: 1.9968px;
  height: 240px;
  background-color: #1073e9;
}
.about_container .about_box .about_left .comp_list {
  display: flex;
  flex-direction: column;
  margin: 18.0096px 0 0px;
}
.about_container .about_box .about_left .comp_list .comp_name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20.0064px;
}
.about_container .about_box .about_left .comp_list .comp_desc {
  max-height: 300px;
  overflow-y: scroll;
  line-height: 36px;
  letter-spacing: 1.9968px;
  display: inline-block;
  font-size: 16px !important;
  font-weight: 400;
  color: #ffffff;
}
.about_container .about_box .about_left .comp_list .comp_desc p {
  margin-bottom: 0;
  font-size: 16px !important;
}
.about_container .about_box .about_left .comp_list .comp_desc > p > span {
  font-size: 16px !important;
}
.about_container .about_box .about_left .comp_list .comp_desc::-webkit-scrollbar {
  background-color: rgba(0, 0, 0, 0);
  /* 设置滚动条背景颜色，根据需要调整 */
}
.about_container .about_box .about_left .comp_list .comp_desc::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0);
  /* 设置滚动条拖动块颜色，根据需要调整 */
}
.about_container .about_box .about_right {
  position: relative;
}
.about_container .about_box .about_right .box_about {
  width: 97%;
  height: 339.9936px;
  border: 1.9968px solid #ffffff;
  position: absolute;
  z-index: 0;
  top: 52%;
  transform: translateY(-50%);
}
.about_container .about_box .about_right .comp_img {
  height: 339.9936px;
  margin-left: 20px;
  position: relative;
  z-index: 2;
  border-radius: 1.9968px;
  top: 57%;
  transform: translateY(-50%);
}
.case {
  background: url(../img/block.png);
}
.case .case_box {
  padding-top: 20.0064px;
  padding-bottom: 24px;
}
.case .free_cons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30.0096px 0;
  flex-wrap: wrap;
  width: 100%;
}
.case .free_cons .free_item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 50px;
}
.case .free_cons .free_item .top_img {
  width: 70.0032px;
  height: 70.0032px;
}
.case .free_cons .free_item .top_content {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}
.case .free_img {
  margin-top: 30.0096px;
}
.case .pro_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.case .pro_box .pro_item_list {
  margin-bottom: 34.0032px;
  background: #fff;
  padding: 20.0064px;
}
.case .pro_box .pro_item_list .pro_top {
  display: flex;
}
.case .pro_box .pro_item_list .pro_top .pro_avar {
  width: 80.0064px;
  height: 80.0064px;
  margin-right: 14.9952px;
}
.case .pro_box .pro_item_list .pro_top .pro_avar img {
  width: 80.0064px;
  height: 80.0064px;
}
.case .pro_box .pro_item_list .pro_top .top_right {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.case .pro_box .pro_item_list .pro_top .top_right .pro_top_name {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}
.case .pro_box .pro_item_list .pro_top .top_right .pro_top_desc {
  font-size: 16px;
  line-height: 30.0096px;
  font-weight: 400;
  color: #333333;
  margin-top: 10.0032px;
}
.case .pro_box .pro_item_list .pro_top .top_right .pro_btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10.0032px;
}
.case .pro_box .pro_item_list .pro_top .top_right .pro_btm .pro_industry {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
}
.case .pro_box .pro_item_list .pro_top .top_right .pro_btm .pro_industry .btm_indu {
  font-size: 16px;
  font-weight: 500;
  margin-left: 10.0032px;
  color: #dd0012;
}
.case .pro_box .pro_item_list .pro_top .top_right .pro_btm .pro_industry .indured {
  color: #000000;
}
.new_update {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
.new_update::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.new_update .new_two_hand {
  width: 100%;
  height: 495.9936px;
  background: url("../img/new_two_hand.png") no-repeat 50% 50%;
  background-attachment: fixed;
  background-size: cover;
}
.new_update .update_box {
  height: 495.9936px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  left: 50%;
  transform: translate(-50%);
}
.new_update .update_content {
  margin-top: 39.9936px;
  display: flex;
  overflow: hidden;
}
.new_update .update_content .update_item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20.0064px;
  position: relative;
}
.new_update .update_content .update_item .news_animat {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  display: none;
  cursor: pointer;
  overflow: hidden;
}
.new_update .update_content .update_item .news_animat .anni_top {
  width: 100%;
  height: 140.0064px;
}
.new_update .update_content .update_item .news_animat .anni_btm {
  width: 100%;
  height: 230px;
  background: #0f245e;
  overflow: hidden;
}
.new_update .update_content .update_item .news_animat .anni_btm .anni_title {
  padding-top: 20.0064px;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  margin: 0px 0 15.9936px;
  padding-left: 22.0032px;
  overflow: hidden;
  /* 控制显示的行数 */
}
.new_update .update_content .update_item .news_animat .anni_btm .anni_desc {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 10.0032px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  padding: 0 22.0032px;
}
.new_update .update_content .update_item .news_animat .anni_btm .anni_desc > p span {
  font-size: 13.9968px !important;
}
.new_update .update_content .update_item .update_date {
  width: 100%;
  height: 117.0048px;
  border: 0.9984px solid #dd0012;
  border-radius: 3.9936px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.new_update .update_content .update_item .update_date .monthDay {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 3.9936px;
}
.new_update .update_content .update_item .update_date .year {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}
.new_update .update_content .update_item .update_quest {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  margin: 20.0064px 0 15.9936px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  /* 控制显示的行数 */
}
.new_update .update_content .update_item .update_desc {
  font-size: 16px !important;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 30.0096px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  /* 控制显示的行数 */
  width: 260px;
  height: 100px;
}
.new_update .update_content .update_item .update_desc > p > span {
  font-size: 13.9968px !important;
}
.new_update .update_content .update_item .update_btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.new_update .update_content .update_item .update_btm .btm_update {
  font-size: 16px;
  font-weight: 400;
  color: #ffff00;
}
.new_update .update_content .update_item .update_btm .btm_update:hover {
  color: #a90303;
}
.new_update .update_content .update_item .update_btm .btm_up {
  width: 48px;
  height: 48px;
}
.new_update .getmore {
  margin: 10.0032px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: 30.0096px;
}
.new_update .getmore .ser_lf_btn {
  width: 131.0016px;
  height: 49.9968px;
  border: 0.9984px solid #ffffff;
  font-size: 15.9936px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  margin-right: 39.9936px;
  padding-left: 10.0032px;
  cursor: pointer;
  position: relative;
  visibility: visible;
  animation-delay: 1s;
  animation-name: fadeInUp;
  transition: all 0.5s;
}
.new_update .getmore .ser_lf_btn:hover {
  background: #e60012;
  border-color: #e60012;
  color: #ffffff;
}
.new_update .getmore .ser_lf_btn:hover .img-box .white-arrow {
  left: 3.9936px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.new_update .getmore .ser_lf_btn .img-box {
  margin-left: 10.0032px;
  width: 30.0096px;
  height: 8.0064px;
  overflow: hidden;
  position: relative;
}
.new_update .getmore .ser_lf_btn .img-box .white-arrow {
  top: -10px;
  position: relative;
  left: -30.0096px;
  width: 60px;
  height: 8.0064px;
}
.new_update .getmore .mores {
  font-size: 22.0032px;
  font-weight: 400;
  color: #ffffff;
  margin-right: 6.0096px;
}
.appli_container {
  background: url(../img/earth.png);
}
.application {
  padding-bottom: 20.0064px;
}
.application .app_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.application .app_box .app_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 279.9936px;
  height: 140.0064px;
  border: 0.9984px solid #eeeeee;
  margin-bottom: 15px;
  margin-left: 15px;
  margin-right: 15px;
}
.application .app_box .app_item .app_img {
  width: 49.9968px;
  height: 49.9968px;
}
.application .app_box .app_item .app_text {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
}
.footer {
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.footer .foot_img {
  width: 99.8%;
  height: 579.9936px;
  background: url(../img/footer_bg.png) no-repeat 50% 50%;
  background-attachment: fixed;
  background-size: cover;
}
.footer .footer_content {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.footer .footer_content .footer_left {
  padding: 50.0032px 0 15.9936px 10.0032px;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 16px;
  width: 620px;
}
.footer .footer_content .footer_left .line_border {
  width: 279.9936px;
  /* height: 0.0052rem !important; */
  /* background: #ffffff; */
  margin-bottom: 39.9936px;
  margin-top: 26.9952px;
  display: flex;
  justify-content: space-between;
}
.footer .footer_content .footer_left .line_border .line1 {
  width: 99.9936px;
  height: 2.9952px;
  background-color: #dde10d;
  border-radius: 10.0032px;
}
.footer .footer_content .footer_left .line_border .line2 {
  width: 159.9936px;
  height: 2.9952px;
  background-color: #1073e9;
  border-radius: 10.0032px;
}
.footer .footer_content .footer_left .free_get {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10.0032px;
  font-family: Source Han Sans CN, Source Han Sans CN-700;
  font-weight: normal;
  color: #ffff00;
}
.footer .footer_content .footer_left .free_con {
  font-size: 32.0064px;
  color: #ffffff;
  display: flex;
  align-items: center;
}
.footer .footer_content .footer_left .con_text {
  margin-bottom: 10.0032px;
}
.footer .footer_content .footer_left #get_pro_id {
  margin-bottom: 40.992px;
}
.footer .footer_content .footer_left .free_desc {
  font-size: 32.0064px;
  color: #ffffff;
  margin-bottom: 8.0064px;
}
.footer .footer_content .footer_left .free_small {
  font-size: 15.9936px;
  color: #ffffff;
  margin-bottom: 12px;
}
.frgt_top {
  width: 100%;
}
.frgt_top .footer_input {
  display: flex;
  flex-direction: column;
  position: relative;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.frgt_top .footer_input .nation {
  display: flex;
  align-items: center;
  background: #f9faff;
}
.frgt_top .footer_input .nation .sele_nation {
  display: flex;
  align-items: center;
  background: #f9faff;
  cursor: pointer;
  position: relative;
}
.frgt_top .footer_input .nation .sele_nation .sele_main {
  position: absolute;
  z-index: 4;
  top: 25.9968px;
  left: 0;
  width: 60px;
  height: 200.0064px;
  background: #f9faff;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}
.frgt_top .footer_input .nation .sele_nation .sele_main img {
  width: 32.0064px;
  height: auto;
}
.frgt_top .footer_input .nation img {
  width: 32.0064px;
  height: 24.9984px;
}
.frgt_top .footer_input .nation .btm_img {
  width: 12px;
  height: 12px;
  text-align: right;
  margin-bottom: 3.9936px;
}
.frgt_top .footer_input .sele_list {
  position: absolute;
  bottom: -241.9968px;
  left: 0;
  width: 97%;
  background: #f9faff;
  height: 240px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.frgt_top .footer_input .sele_list .sele_item {
  height: 30.0096px;
  width: 100%;
  color: #858585;
  padding-left: 10.0032px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.frgt_top .footer_input .sele_list .sele_item:hover {
  background: #858585;
  color: #fff;
}
.frgt_top .footer_input .img_small {
  display: flex;
  align-items: center;
  margin-bottom: 6.0096px !important;
  margin-top: 10.0032px;
}
.frgt_top .footer_input .img_small img {
  width: 15.9936px;
  height: 15.9936px;
  margin-right: 3.9936px;
}
.frgt_top .footer_input .footer_name {
  margin-bottom: 6.0096px;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}
.frgt_top .footer_input .footer_name.redStar::before {
  content: "*";
  color: red;
}
.frgt_top .footer_input .input_background_phone {
  background: #f9faff !important;
  height: 36px;
  border-radius: 3.9936px;
  border: none;
  width: 100%;
  font-size: 16px;
}
.frgt_top .footer_input .input_background {
  background: #f9faff !important;
  height: 36px;
  border-radius: 3.9936px;
  border: none;
  width: 100%;
  font-size: 16px;
}
.frgt_top .footer_input .input_background_arae {
  background: #f9faff !important;
  padding: 15.9936px;
  border: none;
  width: 100%;
  font-size: 16px;
}
.frgt_top .footer_input .input_background:focus {
  outline: none;
  box-shadow: none;
  border-color: initial;
  /* 可选，保持边框颜色不变 */
}
.frgt_top .footer_input .input_background_phone:focus {
  outline: none;
  box-shadow: none;
  border-color: initial;
  /* 可选，保持边框颜色不变 */
}
.frgt_top .footer_input .input_background_arae:focus {
  outline: none;
  box-shadow: none;
  border-color: initial;
  /* 可选，保持边框颜色不变 */
}
.frgt_top .footer_input .sele_box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 36.9984px;
  justify-content: space-between;
}
.frgt_top .footer_input .sele_text {
  color: #858585;
  cursor: pointer;
}
.frgt_top .footer_input .btm_img {
  width: 12px;
  height: 12px;
  text-align: right;
  cursor: pointer;
}
.submit_btm {
  display: flex;
  justify-content: center;
}
.submit_btm .submit {
  width: 157.9968px;
  height: 37.9968px;
  background: #dd0012;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  border-radius: 3.9936px;
  cursor: pointer;
}
.footer_right {
  background: #fff;
}
.qrcode_box {
  width: 100%;
  background: #161717;
}
.qrcode_box .qrcode_box_main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.qrcode_box .wcenter {
  display: flex;
  justify-content: center;
  padding: 15px 15px 0 15px;
}
.qrcode_box .wcenter .qrback {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.qrcode_box .wcenter .qrcode_item {
  position: relative;
}
.qrcode_box .wcenter .qrcode_item .qr_bg_big {
  background-color: #eeeeee;
  position: absolute;
  top: 33.0048px;
  left: 10.0032px;
  margin-top: 24.9984px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.qrcode_box .wcenter .qrcode_item .qr_bg_big .qr_big {
  height: 219.9936px;
}
.qrcode_box .wcenter .qrcode_item .qr_item {
  display: flex;
  flex-direction: column;
  padding: 23px 15px;
}
.qrcode_box .wcenter .qrcode_item .qr_item .qr_item_top {
  display: flex;
  align-items: center;
}
.qrcode_box .wcenter .qrcode_item .qr_item .comp_add {
  margin-right: 10.0032px;
  font-size: 18px;
  font-weight: 400;
  color: #dd0012;
}
.qrcode_box .wcenter .qrcode_item .qr_item .comp_top_img {
  width: 36px;
  height: 36px;
}
.qrcode_box .wcenter .qrcode_item .qr_item .comp_loca {
  min-height: 42.0096px;
  margin-top: 4.992px;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.qrcode_box .wcenter .qrcode_item .qrcode_top {
  width: 190px;
}
.qrcode_box .wcenter .qrcode_item .qrcode_top img {
  width: 42.0096px;
  height: 42.0096px;
  cursor: pointer;
}
.qrcode_box .wcenter .qrcode_item .qrcode_con {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  z-index: 4;
  margin-top: 5px;
  padding: 20px;
}
.qrcode_box .wcenter .qrcode_item .qrcode_img img {
  width: 145.9968px;
  height: 145.9968px;
}
.qrcode_box .wcenter .qrcode_item .cwechat {
  text-align: center;
  font-size: 15.9936px;
  font-weight: 400;
  color: #000;
  position: relative;
  z-index: 5;
}
.qrcode_box .wcenter .qrcode_item .cwechat .jump-btn2 {
  cursor: pointer;
  margin: 0 auto 0;
  width: 85.9968px;
  height: 30.0096px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2.9952px;
  color: #a90303;
  border: 0.0052rem solid #a90303;
  border-radius: 14.9952px;
  font-size: 15.9936px;
  font-weight: bold;
}
.qrcode_box .wcenter .qrcode_item .cwechat .jump-btn2 .jump-img {
  width: 24px;
  height: 24px;
  margin-right: 3.9936px;
}
.qrcode_item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.qrcode_item .qr_bg_big2 {
  background-color: #eeeeee;
  position: absolute;
  top: 33.0048px;
  left: 10.0032px;
  margin-top: 24.9984px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.qrcode_item .qr_bg_big2 .qr_big {
  height: 219.9936px;
}
.qrcode_item .qr_item {
  display: flex;
  flex-direction: column;
}
.qrcode_item .qr_item .qr_item_top {
  display: flex;
  align-items: center;
}
.qrcode_item .qr_item .comp_add {
  margin-right: 10.0032px;
  font-size: 22.0032px;
  font-weight: 400;
  color: #dd0012;
  line-height: 23.0016px;
}
.qrcode_item .qr_item .comp_top_img {
  width: 36px;
  height: 36px;
}
.qrcode_item .qr_item .comp_loca {
  min-height: 42.0096px;
  margin-top: 4.992px;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.qrcode_item .qrcode_top2 {
  width: 190px;
}
.qrcode_item .qrcode_top2 img {
  width: 42.0096px;
  height: 42.0096px;
  cursor: pointer;
}
.qrcode_item .qrcode_con {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 4;
  margin-top: 5px;
}
.qrcode_item .qrcode_img2 img {
  width: 145.9968px;
  height: 145.9968px;
}
.qrcode_item .cwechat2 {
  text-align: center;
  font-size: 15.9936px;
  font-weight: 400;
  color: #000;
  position: relative;
  z-index: 5;
}
.qrcode_item .cwechat2 .jump-btn3 {
  cursor: pointer;
  margin: 0 auto 0;
  width: 85.9968px;
  height: 30.0096px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2.9952px;
  color: #a90303;
  border: 0.0052rem solid #a90303;
  border-radius: 14.9952px;
  font-size: 15.9936px;
  font-weight: bold;
}
.qrcode_item .cwechat2 .jump-btn3 .jump-img {
  width: 24px;
  height: 24px;
  margin-right: 3.9936px;
}
.company_con {
  background: #272727;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  margin-top: 15px;
}
.type_box {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  background: #f9faff;
  width: 260.0064px;
  padding-left: 10.0032px;
  cursor: pointer;
  position: relative;
}
.type_box img {
  width: 20.0064px;
  height: 20.0064px;
  margin-right: 3.9936px;
}
.type_box .type_main {
  position: absolute;
  top: 35.0016px;
  left: 0;
  width: 45.0048px;
  height: 99.9936px;
  background: #f9faff;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 4;
}
.type_box .type_main img {
  width: 20.0064px;
  height: 20.0064px;
  margin-bottom: 10.0032px;
}
/* 移动端样式 - 屏幕宽度小于768px */
@media screen and (max-width: 767px) {
  .smHide {
    display: block;
  }
  .lgHide {
    display: none !important;
  }
  .app_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .app_box .app_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px !important;
    height: 70px !important;
    border: 0.9984px solid #eeeeee;
    margin-bottom: 15px;
    margin-left: 2px !important;
    margin-right: 2px !important;
  }
  .app_box .app_item .app_img {
    width: 24px !important;
    height: 24px !important;
  }
  .app_box .app_item .app_text {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
  }
  .pro_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .pro_box .pro_item_list {
    margin-bottom: 34.0032px;
    background: #fff;
    padding: 20.0064px;
  }
  .pro_box .pro_item_list .pro_top {
    display: flex;
  }
  .pro_box .pro_item_list .pro_top .pro_avar {
    width: 56px !important;
    height: 56px !important;
    margin-right: 8px !important;
  }
  .pro_box .pro_item_list .pro_top .pro_avar img {
    width: 56px !important;
    height: 56px !important;
  }
  .pro_box .pro_item_list .pro_top .top_right {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .pro_box .pro_item_list .pro_top .top_right .pro_top_name {
    font-size: 18px;
    font-weight: 400;
    color: #333333;
  }
  .pro_box .pro_item_list .pro_top .top_right .pro_top_desc {
    font-size: 13px !important;
    line-height: 18px !important;
    font-weight: 400;
    color: #333333;
    margin-top: 2px !important;
  }
  .pro_box .pro_item_list .pro_top .top_right .pro_btm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10.0032px;
  }
  .pro_box .pro_item_list .pro_top .top_right .pro_btm .pro_industry {
    font-size: 12px !important;
    font-weight: 400;
    color: #666666;
  }
  .pro_box .pro_item_list .pro_top .top_right .pro_btm .pro_industry .btm_indu {
    font-size: 13px !important;
    font-weight: 500;
    margin-left: 10.0032px;
    color: #dd0012;
  }
  .pro_box .pro_item_list .pro_top .top_right .pro_btm .pro_industry .indured {
    color: #000000;
  }
  .case_box {
    padding-bottom: 20px !important;
  }
  .case_box .free_cons {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow: hidden !important;
    overflow-x: scroll !important;
    margin: 0px 0 !important;
  }
  .case_box .free_cons .free_item {
    margin-right: 20px !important;
  }
  .case_box .free_cons .free_item .top_img {
    width: 34px !important;
    height: 34px !important;
  }
  .case_box .free_cons .free_item .top_content {
    width: 120px !important;
    font-size: 12px !important;
  }
  .pro_main {
    display: flex;
    margin: 0px auto;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .pro_main .pro_item {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 6.0096px;
    border-top-right-radius: 6.0096px;
    margin-top: 15px;
    cursor: pointer;
  }
  .pro_main .pro_item .app_big_box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    overflow: hidden;
  }
  .pro_main .pro_item .app_big_box .big_text {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    height: 35.0016px;
    line-height: 35.0016px;
    text-align: center;
    color: #fff;
    font-size: 13.9968px;
    border-radius: 4.992px;
    z-index: 99;
    display: none;
    width: 100%;
  }
  .pro_main .pro_item .app_big_box .big_text .detail_text {
    display: inline-block;
    width: 70px !important;
    height: 30px !important;
    margin-right: 4px !important;
    background: #ffc000;
    border-radius: 4.992px;
    font-size: 12px !important;
    line-height: 30px !important;
  }
  .pro_main .pro_item .app_big_box .big_text .ask_text {
    display: inline-block;
    width: 70px !important;
    height: 30px !important;
    background: #0f92de;
    border-radius: 4.992px;
    font-size: 12px !important;
    line-height: 30px !important;
    text-decoration: none;
  }
  .pro_main .pro_item .app_big_img {
    width: 374.9952px;
    height: 374.9952px;
  }
  .pro_main .pro_item .pro_btm {
    background: rgba(255, 255, 255, 0.9);
    padding: 6.0096px 10.0032px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 0px 4.992px 0px rgba(0, 0, 0, 0.05);
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
  }
  .pro_main .pro_item .pro_btm .pro_left {
    flex: 1;
  }
  .pro_main .pro_item .pro_btm .pro_left .pro_left_top {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .pro_main .pro_item .pro_btm .pro_left .pro_left_top .left_name {
    font-size: 14px !important;
    font-weight: 500;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    /* 控制显示的行数 */
  }
  .pro_main .pro_item .pro_btm .pro_left .pro_rgt_top {
    padding-top: 0px !important;
    display: flex;
    align-items: center;
  }
  .pro_main .pro_item .pro_btm .pro_left .pro_rgt_top .left_img {
    width: 18px !important;
    height: 18px !important;
  }
  .pro_main .pro_item .pro_btm .pro_left .pro_rgt_top .rgt_btm {
    font-size: 12px !important;
    font-weight: 400;
    color: #333333;
    margin-right: 2px !important;
  }
  .pro_main .pro_item .pro_btm .pro_right {
    width: 40px !important;
    height: 40px !important;
    border-radius: 1.9968px;
  }
  .coop_part {
    height: 300px !important;
  }
  .brand_item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 30.0096px;
  }
  .brand_item .img_box {
    width: 68px !important;
    height: 27px !important;
    border-radius: 4px !important;
    background: #fff;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .brand_item .img_box .brand_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px !important;
  }
  .coop_step .coop_container .coop_item {
    flex: 33.33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  .coop_step .coop_container .coop_item .top-circle-box {
    width: 78px !important;
    height: 78px !important;
    border: 3.9936px solid #dedede;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .coop_step .coop_container .coop_item .top-circle-box .circle-line {
    position: absolute !important;
    top: -3.9936px;
    left: -3.9936px;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
  }
  .coop_step .coop_container .coop_item .top-circle-box .box-num {
    position: absolute;
    left: 152.0064px;
    top: 50%;
    transform: translateY(-50%);
    width: 104.0064px;
    height: 49.9968px;
    object-fit: cover;
  }
  .coop_step .coop_container .coop_item .top-circle-box .center-img {
    width: 40px !important;
    height: 40px !important;
  }
  .coop_step .coop_container .coop_item .bottom-name {
    margin-top: 30.0096px;
    font-size: 16px;
    font-weight: 400;
    text-align: LEFT;
    color: #333333;
    line-height: 23.0016px;
  }
  .addr-list-box-wrap {
    padding: 20px 10px 0;
    overflow: hidden;
  }
  .addr-list-box-wrap .addr-list-box {
    display: flex;
    overflow-x: scroll;
  }
  .addr-list-box-wrap .addr-list-box .addr-item {
    padding: 10px;
    width: 50%;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
  }
  .addr-list-box-wrap .addr-list-box .addr-item .addr-item-top .addr-city {
    color: #dd0012;
    font-size: 16px;
    margin-right: 6px;
  }
  .addr-list-box-wrap .addr-list-box .addr-item .addr-item-top .addr-city-img {
    width: 36px;
    height: 36px;
  }
  .addr-list-box-wrap .addr-list-box .addr-item .addr-item-btm {
    min-height: 42px;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
  }
  .news-list-box .news-item {
    display: flex;
    margin-top: 15px;
  }
  .news-list-box .news-item .news-left-date {
    width: 82px;
    height: 88px;
    border: 0.5px solid #dd0012;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
  }
  .news-list-box .news-item .news-left-date .monthDay {
    font-size: 18px;
  }
  .news-list-box .news-item .news-left-date .year {
    font-size: 16px;
  }
  .news-list-box .news-item .news-right-cont {
    flex: 1;
    margin-left: 10px;
  }
  .news-list-box .news-item .news-right-cont .news-title {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1 /* 控制显示的行数 */;
  }
  .news-list-box .news-item .news-right-cont .news-desc {
    font-size: 16px !important;
    color: #fff;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
  }
  .news-list-box .news-item .news-right-cont .news-desc p {
    font-size: 16px !important;
  }
  .news-list-box .news-item .news-right-cont .news-desc p span {
    font-size: 16px !important;
  }
  .footer .foot_img {
    height: 400px !important;
  }
  .footer .footer_content .footer_left {
    padding: 20px 0 0 10px !important;
  }
  .about_container .about_img {
    height: 480px !important;
  }
  #case_id .case_item_box_wrap .case_item_box .case_big_box .case_big_text .detail_text_small {
    display: inline-block;
    width: 70px !important;
    height: 30px !important;
    margin-right: 10px !important;
    background: #ffc000;
    border-radius: 4.992px;
    font-size: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #case_id .case_item_box_wrap .case_item_box .case_big_box .case_big_text .ask_text_small {
    display: inline-block;
    width: 70px;
    height: 30px;
    background: #0f92de;
    border-radius: 4.992px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
/* 平板设备 - 屏幕宽度在768px到1023px之间 */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .smHide {
    display: block;
  }
  .lgHide {
    display: none !important;
  }
}
/* PC端样式 - 屏幕宽度大于1024px */
@media screen and (min-width: 1024px) {
  .smHide {
    display: none;
  }
  .mdHide {
    display: none;
  }
  .lgHide {
    display: block !important;
  }
}
.tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background-color: #fff;
  display: flex;
  font-size: 14px;
  z-index: 999;
}
.tab-bar .tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tab-bar a {
  text-decoration: none;
  color: #333;
}
.main {
  position: relative;
  perspective: 999.9936px;
  display: none;
}
.main .banner-video-box {
  width: 100%;
  height: 660px;
}
.main .img_box_ad {
  width: 100%;
  height: 660px;
  cursor: pointer;
}
.main .dot_content {
  position: absolute;
  bottom: 150.0096px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}
.main .dot_content .dot_item {
  width: 30.0096px;
  height: 3.9936px;
  background: #ffffff;
  border-radius: 7.008px;
  margin-right: 20.0064px;
  cursor: pointer;
  opacity: 0.4;
}
.main .left_box {
  position: absolute;
  top: 50%;
  left: 14%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.main .left_box .main_top {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 15.9936px;
  text-align: left;
}
.main .left_box .main_mid {
  font-size: 36px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 11.0016px;
  text-align: left;
}
.main .left_box .main_content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 222.0096px;
  height: 57.0048px;
  background: rgba(255, 255, 255, 0.3);
  margin-top: 15.9936px;
  text-align: left;
}
.main .left_box .main_content .main_btm {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.main .main_box {
  opacity: 0;
  position: absolute;
  top: 120px;
  left: 180px;
  display: flex;
  flex-direction: column;
}
.main .main_box .main_top {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15.9936px;
}
.main .main_box .main_mid {
  font-size: 36px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 11.0016px;
}
.main .main_box .main_content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 222.0096px;
  height: 57.0048px;
  background: rgba(255, 255, 255, 0.3);
  margin-top: 15.9936px;
}
.main .main_box .main_content .main_btm {
  display: block;
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
/* 移动端样式 - 屏幕宽度小于768px */
@media screen and (max-width: 767px) {
  .qrcode_box {
    width: 100%;
    padding-bottom: 50px;
    background: #161717;
  }
  .desc_con {
    display: flex;
    width: 95%;
    height: 100px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 1.9968px 7.6032px 0px rgba(0, 0, 0, 0.05);
    transition: all 1s;
    transform-origin: center;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: bottom;
    transform: translate3d(-50%, 0, 0);
  }
  .desc_con .desc_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
  }
  .desc_con .desc_item .desc_left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
  }
  .desc_con .desc_item .desc_left .desc_top {
    font-weight: 400;
    color: #333333;
    position: relative;
  }
  .desc_con .desc_item .desc_left .desc_top .num_count {
    font-size: 30px;
    font-weight: 500;
    color: #dd0012;
  }
  .desc_con .desc_item .desc_left .desc_top .top_text {
    position: absolute;
    right: -20px;
    top: 0px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
  }
  .desc_con .desc_item .desc_left .desc_btm {
    font-size: 12px;
    font-weight: 400;
    color: #333333;
    position: relative;
    top: 0px;
    text-align: center;
  }
  .desc_con .desc_item .desc_rht .desc_line {
    display: block;
    width: 0.9984px;
    height: 80px;
    background: rgba(0, 0, 0, 0.5);
  }
}
/* 平板设备 - 屏幕宽度在768px到1023px之间 */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .qrcode_box {
    width: 100%;
    padding-bottom: 50px;
    background: #161717;
  }
  .desc_con {
    display: flex;
    width: 90%;
    height: 100px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 1.9968px 7.6032px 0px rgba(0, 0, 0, 0.05);
    transition: all 1s;
    transform-origin: center;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: bottom;
    transform: translate3d(-50%, 0, 0);
  }
  .desc_con .desc_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
  }
  .desc_con .desc_item .desc_left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
  }
  .desc_con .desc_item .desc_left .desc_top {
    font-weight: 400;
    color: #333333;
    position: relative;
  }
  .desc_con .desc_item .desc_left .desc_top .num_count {
    font-size: 55px;
    font-weight: 500;
    color: #dd0012;
  }
  .desc_con .desc_item .desc_left .desc_top .top_text {
    position: absolute;
    right: -30px;
    top: 20px;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
  }
  .desc_con .desc_item .desc_left .desc_btm {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    position: relative;
    top: -12px;
    text-align: center;
  }
  .desc_con .desc_item .desc_rht .desc_line {
    display: block;
    width: 0.9984px;
    height: 80px;
    background: rgba(0, 0, 0, 0.5);
  }
}
/* PC端样式 - 屏幕宽度大于1024px */
@media screen and (min-width: 1024px) {
  .qrcode_box {
    width: 100%;
    padding-bottom: 0px;
    background: #161717;
  }
  .desc_con {
    display: flex;
    width: 90%;
    height: 140.0064px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 1.9968px 7.6032px 0px rgba(0, 0, 0, 0.05);
    transition: all 1s;
    transform-origin: center;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: bottom;
    transform: translate3d(-50%, 0, 0);
  }
  .desc_con .desc_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
  }
  .desc_con .desc_item .desc_left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
  }
  .desc_con .desc_item .desc_left .desc_top {
    font-weight: 400;
    color: #333333;
    position: relative;
  }
  .desc_con .desc_item .desc_left .desc_top .num_count {
    font-size: 70.0032px;
    font-weight: 500;
    color: #dd0012;
  }
  .desc_con .desc_item .desc_left .desc_top .top_text {
    position: absolute;
    right: -30px;
    top: 20px;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
  }
  .desc_con .desc_item .desc_left .desc_btm {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    position: relative;
    top: -16px;
    text-align: center;
  }
  .desc_con .desc_item .desc_rht .desc_line {
    display: block;
    width: 0.9984px;
    height: 99.9936px;
    background: rgba(0, 0, 0, 0.5);
  }
  .desc_con .desc_item .chat_item {
    position: relative;
    width: 360px;
    top: -39.9936px;
    display: none;
  }
  .desc_con .desc_item .chat_item .chat_img {
    height: 124.992px;
  }
  .desc_con .desc_item .chat_item .chat_top {
    display: flex;
    position: absolute;
    top: -16.992px;
    left: 10.0032px;
    align-items: center;
  }
  .desc_con .desc_item .chat_item .chat_top .avar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 10.0032px;
    border: 3.9936px solid #fff;
  }
  .desc_con .desc_item .chat_item .chat_top .avar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }
  .desc_con .desc_item .chat_item .chat_top .username {
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    margin-top: 20.0064px;
  }
  .desc_con .desc_item .chat_item .dot {
    display: flex;
    justify-content: center;
  }
  .desc_con .desc_item .chat_item .dot .dot_one {
    display: block;
    width: 10.0032px;
    height: 10.0032px;
    background: #e6e6e6;
    border-radius: 50%;
    cursor: pointer;
    margin-right: 10.0032px;
  }
  .desc_con .desc_item .chat_item .chat_btm {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    position: absolute;
    left: 20.0064px;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
    /* 允许文本换行 */
    white-space: normal;
    /* 用于创建省略号 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 限制显示的行数 */
    -webkit-box-orient: vertical;
  }
}
