
#loading {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #dee2eb;
}

.circle {
  margin: 0.4rem auto;
  position: relative;
  width: 0.1rem;
  height: 0.1rem;
  background-color: rgba(221, 44, 23, 0.5);
  -webkit-box-shadow: -0.1rem 0rem 0rem white;
  box-shadow: -0.1rem 0rem 0rem white;
  border-radius: 50%;
  -webkit-animation: circle_classic 1s ease-in-out infinite alternate;
  animation: circle_classic 1s ease-in-out infinite alternate;
}

@-webkit-keyframes circle_classic {
  0% {
    opacity: 0.1;
    -webkit-transform: rotate(0deg) scale(0.5);
    transform: rotate(0deg) scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(360deg) scale(1.2);
    transform: rotate(360deg) scale(1.2);
  }
}

@keyframes circle_classic {
  0% {
    opacity: 0.1;
    -webkit-transform: rotate(0deg) scale(0.5);
    transform: rotate(0deg) scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(360deg) scale(1.2);
    transform: rotate(360deg) scale(1.2);
  }
}

.w {
  width: 14.48rem;
  margin: 0 auto;
}

#header.fixed_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  background-color: #fff;
  box-shadow: 0 0.02rem 0.02rem 0 rgb(96 127 179 / 30%);
}

.header_con {
  width: 100%;
  background: #fff;
}

.header_con .index-banner {
  position: relative;
  height: 100vh;
}

.header_con .index-banner .swiper-container {
  height: 100%;
}

.header_con .index-banner .swiper-container .swiper-slide {
  position: relative;
}

.header_con .index-banner .swiper-container .swiper-slide .u-img {
  display: block;
  height: 100%;
}

.header_con .index-banner .swiper-container .swiper-slide .m-text {
  position: absolute;
  width: 14.5rem;
  height: 100%;
  top: 200vh;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header_con .index-banner .swiper-container .swiper-slide .m-text .pic-text {
  margin-bottom: 1rem;
  max-width: 100%;
}
.header_con
  .index-banner
  .swiper-container
  .swiper-slide
  .m-text
  .pic-text
  img {
  display: block;
  max-width: 100%;
}

.header_con .index-banner .swiper-container .swiper-slide .m-text .m-fill-btn {
  width: 2.65rem;
  margin: 0;
  -webkit-box-shadow: 0 0 0.1rem 0 rgba(221, 44, 23, 0.51);
  box-shadow: 0 0 0.1rem 0 rgba(221, 44, 23, 0.51);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ec3a14),
    to(#ff7108)
  );
  background: linear-gradient(90deg, #ec3a14 0%, #ff7108 100%);
}

.header_con
  .index-banner
  .swiper-container
  .swiper-slide
  .m-text
  .m-fill-btn
  .u-iocn {
  display: inline-block;
  width: 0.2rem;
  height: 0.2rem;
  background-image: url(../image/icon.png);
  background-size: 3rem;
  background-position: -1.32rem 0;
}

.header_con
  .index-banner
  .swiper-container
  .swiper-slide
  .m-text
  .m-fill-btn:hover {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ff7108),
    to(#ec3a14)
  );
  background: linear-gradient(90deg, #ff7108 0%, #ec3a14 100%);
}

.header_con .index-banner .swiper-pagination {
  margin-bottom: 0.4rem;
}

.header_con .index-banner .swiper-pagination .swiper-pagination-bullet {
  width: 0.4rem;
  height: 0.04rem;
  border-radius: 0;
  margin: 0 0.06rem;
}

.header_con
  .index-banner
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #dd2c17;
}

/*cloud*/
body {
  background-color: #fff;
}

/*主题色*/
.blcok {
  display: block !important;
}

.elli1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.elli2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.elli3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  line-clamp: 3;
  -webkit-mask-position-y: 3;
}

.elli4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.elli7 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
}

.u-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.m-fill-btn {
  display: table;
  margin: 0 auto;
  background: #084795;
  text-align: center;
  font-size: 0.2rem;
  padding: 0 0.4rem;
  height: 0.52rem;
  border-radius: 0.26rem;
  line-height: 0.52rem;
  color: #fff;
}
/* 
.m-fill-btn:hover {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ec3a14),
    to(#ff7108)
  );
  background: linear-gradient(90deg, #ec3a14 0%, #ff7108 100%);
} */

.m-linear-btn {
  display: table;
  margin: 0 auto;
  background: #fff;
  text-align: center;
  font-size: 0.22rem;
  padding: 0 0.4rem;
  height: 0.5rem;
  border-radius: 0.25rem;
  line-height: 0.46rem;
  color: #dd2c17;
  border: 0.02rem solid rgba(221, 44, 23, 0.5);
}

.m-title .u-tit {
  color: #393939;
  font-size: 0.42rem;
  line-height: 0.5rem;
  text-align: center;
  font-weight: bold;
}

.m-title .sub-tit {
  color: #000;
  font-size: 0.22rem;
  line-height: 0.28rem;
  text-align: center;
  font-weight: 200;
  letter-spacing: 0.06rem;
  margin-top: 0.2rem;
}

.m-title.textWhite .u-tit {
  color: #fff;
}

.m-title.textWhite .sub-tit {
  color: #fff;
}

.tip-box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}

.tip-box .area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.tip-box .logo-box{
  display: flex;
}

.tip-box .logo-box a {
  display: block;
  width: 2.12rem;
  height: 0.93rem;
  /* margin-top: 0.1rem; */
}

/* .tip-box .nav-box {
  margin-left: auto;
} */

.tip-box .tel-box{
  display: flex;
}

.tip-box .tel-box .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.2rem;
}

.tip-box .tel-box .nav .nav-item {
    display: block;
    font-size: 0.18rem;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #393939;
    line-height: 0.38rem;
}

.tip-box .nav-box .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.2rem;
}

.tip-box .nav-box .nav .nav-item {
  margin-right: 0.45rem;
}

.tip-box .nav-box .nav .nav-item::after {
  content: "";
  display: block;
  height: 0.02rem;
  background: #dd2c17;
  border-radius: 0.01rem;
  opacity: 0;
  width: 0;
}

.tip-box .nav-box .nav .nav-item:hover::after,
.tip-box .nav-box .nav .nav-item.active::after {
  opacity: 1;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.tip-box .nav-box .nav .nav-item .nav-link {
  display: block;
  font-size: 0.18rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #393939;
  line-height: 0.38rem;
}

.tip-box .m-earch {
  width: 0.22rem;
  height: 0.22rem;
  background-image: url(../image/icon.png);
  background-size: 3rem;
  background-position: 0 0;
  margin-bottom: 0.28rem;
  position: relative;
  cursor: pointer;
}

.tip-box .m-earch::before {
  content: "";
  display: block;
  width: 0.01rem;
  height: 0.2rem;
  background: #dd2c17;
  position: absolute;
  top: 0;
  left: -0.25rem;
}

.tip-box .search-layer {
  position: fixed;
  width: 100%;
  height: 1.2rem;
  top: -1.5rem;
  left: 0;
  z-index: 101;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0.15rem 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 0.15rem 0 rgba(0, 0, 0, 0.2);
  padding: 0.35rem 0;
}

.tip-box .search-layer .icon,
.tip-box .search-layer .close {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: #f5f5f5;
  border-radius: 0.25rem 0 0 0.25rem;
}

.tip-box .search-layer .icon::before,
.tip-box .search-layer .close::before {
  content: "";
  display: block;
  width: 0.22rem;
  height: 0.22rem;
  background-image: url(../image/icon.png);
  background-size: 3rem;
  background-position: 0 0;
  margin: 0.14rem auto;
}

.tip-box .search-layer .close {
  border-radius: 0 0.25rem 0.25rem 0;
  background-color: #dd2c17;
}

.tip-box .search-layer .close::before {
  width: 0.32rem;
  height: 0.32rem;
  background-position: 0 -0.58rem;
  margin: 0.09rem auto;
  opacity: 0.45;
}

.tip-box .search-layer .text {
  border: 0.01rem solid #f5f5f5;
  outline: none;
  font-size: 0.22rem;
  color: #333;
  line-height: 0.48rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0 0 0 0.3rem;
}

.footer-box {
  background: #141212;
}

.footer-box .Links-box {
  padding: 0.55rem 0 0.4rem;
  background: #2e2b2b;
  display: none;
}

.footer-box .Links-box .area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer-box .Links-box .area .title {
  display: block;
  font-size: 0.16rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #ffffff;
  line-height: 0.24rem;
  border-bottom: 0.01rem solid #fff;
  margin-right: 0.55rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-bottom: 0.13rem;
}

.footer-box .Links-box .area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-box .Links-box .area ul li {
  margin-right: 0.4rem;
}

.footer-box .Links-box .area ul li:last-child {
  margin: 0;
}

.footer-box .Links-box .area ul li a {
  display: block;
  font-size: 0.16rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #ffffff;
  line-height: 0.24rem;
}

.footer-box .Links-box .area ul li a:hover {
  color: #dd2c17;
}

.footer-box .footer-con .area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  padding-bottom: 0.8rem;
  border-bottom: 0.01rem solid #666565;
}

.footer-box .footer-con .area .left-column {
  width: 4.6rem;
  padding-top: 0.44rem;
}

.footer-box .footer-con .area .left-column .footer-logo {
  display: block;
  height: 0.65rem;
  width: 4.6rem;
  margin-bottom: 0.25rem;
}

.footer-box .footer-con .area .left-column .address p {
  min-width: 0.5rem;
  display: inline-block;
  font-size: 0.14rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #ffffff;
  line-height: 0.3rem;
  opacity: 0.72;
}

.footer-box .footer-con .area .left-column .address p::after {
  content: "•";
}
.footer-box .footer-con .area .left-column .address p:last-child:after {
  display: none;
  content: "";
}
.footer-box .footer-con .area .left-column .about-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 0.25rem;
}

.footer-box .footer-con .area .left-column .about-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 2.22rem;
  height: 0.75rem;
  border: 0.01rem solid #777575;
  border-radius: 0.38rem;
  padding: 0 0.18rem;
}

.footer-box .footer-con .area .left-column .about-btn a .u-img {
  width: 0.37rem;
  height: 0.37rem;
  border-radius: 50%;
  overflow: hidden;
}

.footer-box .footer-con .area .left-column .about-btn a .u-text {
  font-size: 0.14rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  padding-left: 0.1rem;
}

.footer-box .footer-con .area .left-column .about-btn a .u-text p {
  color: #ffffff;
}

.footer-box .footer-con .area .left-column .about-btn a .u-text span {
  color: #999999;
}

.footer-box .footer-con .area .left-column .m-codeimg {
  display: none;
}

.footer-box .footer-con .area .right-column {
  display: flex;
  /* justify-content: space-between; */
  flex-grow: 1;
  margin-top: 0.69rem;
  padding-left: 1.68rem;
}

.footer-box .footer-con .area .right-column .m-infor {
  width: 4.8rem;
}
.footer-box .footer-con .area .right-column .m-infor .Hotline {
  margin-top: 0.2rem;
}
.footer-box .footer-con .area .right-column .m-infor .top {
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #ffffff;
}

.footer-box .footer-con .area .right-column .m-infor .top h3 {
  font-size: 0.24rem;
}

.footer-box .footer-con .area .right-column .m-infor .top p {
  font-size: 0.16rem;
  margin-top: 0.1rem;
  margin-bottom: 0.2rem;
}

.footer-box .footer-con .area .right-column .m-infor .Hotline .phone::before {
  content: "";
  display: inline-block;
  width: 0.44rem;
  height: 0.26rem;
  background-image: url(../image/icon.png);
  background-size: 3rem;
  background-position: 0 -0.32rem;
  vertical-align: middle;
  margin-right: 0.1rem;
}

.footer-box .footer-con .area .right-column .m-infor .Hotline .phone span {
  font-size: 0.24rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #ffffff;
  line-height: 0.4rem;
  vertical-align: middle;
}

.footer-box
  .footer-con
  .area
  .right-column
  .m-infor
  .Hotline
  .phone
  span::after {
  content: "/";
  display: inline-block;
  font-size: 0.24rem;
  color: #ffffff;
  margin: 0 0.1rem;
  line-height: 0.4rem;
}

.footer-box
  .footer-con
  .area
  .right-column
  .m-infor
  .Hotline
  .phone
  span:last-child::after {
  display: none;
}

.footer-box .footer-con .area .right-column .m-infor .Hotline .tips {
  font-size: 0.16rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.65;
}

.footer-box .footer-con .area .right-column .m-infor .site {
  font-size: 0.16rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  margin-top: 0.2rem;
  line-height: 0.3rem;
}

.footer-box .footer-con .area .right-column .m-infor .site h3 {
  font-weight: normal;
  color: #ffffff;
}

.footer-box .footer-con .area .right-column .m-infor .site p {
  color: #c4c4c4;
}
.footer-box .footer-con .area .right-column .m-codeimg{
  margin-left: 0.3rem;
}
.footer-box .footer-con .area .right-column .m-codeimg .top {
  display: flex;
  align-items: center;
  /* justify-content: center; */
}

.footer-box .footer-con .area .right-column .m-codeimg .top p{
  text-align: center;
  margin-top: 0.08rem;
font-size: 0.16rem;
font-family: Microsoft YaHei-Regular, Microsoft YaHei;
font-weight: 400;
color: #FFFFFF;
}

.footer-box .footer-con .area .right-column .m-codeimg .top .icon {
  width: 0.3rem;
  height: 0.25rem;
  background-image: url(../image/icon.png);
  background-size: 3rem;
  background-position: -1.52rem -0.16rem;
}

.footer-box .footer-con .area .right-column .m-codeimg .top h3 {
  font-size: 0.24rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #ffffff;
  line-height: 0.4rem;
}

.footer-box .footer-con .area .right-column .m-codeimg .u-img {
  margin-top: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
}

.footer-box .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-box .copyright .m-text {
  padding: 0.15rem 0 0.2rem;
  color: #999;
}
.footer-box .copyright .m-text a {
  color: #999;
}
.footer-box .copyright .m-text p {
  font-size: 0.12rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #ffffff;
  line-height: 0.24rem;
  opacity: 0.45;
}

.footer-box .btn-top {
  width: 0.49rem;
  height: 0.49rem;
  overflow: hidden;
  border-radius: 50%;
  cursor: pointer;
}

.recruit-box {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.7rem;
  background: rgba(13, 12, 46, 0.65);
  -webkit-box-shadow: 0 0.02rem 0.13rem 0 rgba(45, 56, 82, 0.4);
  box-shadow: 0 0.02rem 0.13rem 0 rgba(45, 56, 82, 0.4);
  z-index: 10;
}

.recruit-box .area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.recruit-box .area .left-column {
  position: relative;
}

.recruit-box .area .left-column img {
  position: absolute;
  left: 0;
  bottom: 0.12rem;
  z-index: 9;
  width: 2.31rem;
}

.recruit-box .area .left-column .u-text {
  position: relative;
  z-index: 10;
  padding-left: 1.05rem;
  font-size: 0.25rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #ffffff;
  line-height: 0.7rem;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(15%, #f56517),
    color-stop(50%, #fff)
  );
  background: linear-gradient(0deg, #f56517 15%, #fff 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.recruit-box .area .right-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.recruit-box .area .right-column .Tele {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.recruit-box .area .right-column .Tele .icon {
  display: block;
  width: 0.25rem;
  height: 0.29rem;
  background-image: url(../image/icon.png);
  background-position: -0.21rem 0;
  background-size: 3rem;
  margin-right: 0.15rem;
}

.recruit-box .area .right-column .Tele span {
  display: block;
  font-size: 0.32rem;
  font-family: Arial;
  font-weight: 400;
  color: #ffffff;
  line-height: 0.7rem;
}

.recruit-box .area .right-column .online {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.recruit-box .area .right-column .online span {
  display: block;
  margin: 0.1rem 0 0.1rem 0.2rem;
  width: 1.87rem;
  height: 0.5rem;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#e73510),
    to(#f96b03)
  );
  background: linear-gradient(90deg, #e73510, #f96b03);
  border-radius: 0.2rem;
  font-size: 0.2rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #ffffff;
  line-height: 0.5rem;
  text-align: center;
}
.recruit-box .area .right-column .online span a {
  color: #fff;
}
.recruit-box .area .right-column .online .icon {
  display: block;
  width: 0.14rem;
  height: 0.15rem;
  background-image: url(../image/icon.png);
  background-position: -0.46rem 0;
  margin-left: 0.2rem;
  margin-top: 0.1rem;
  cursor: pointer;
  background-size: 3rem;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(calc(-50% + 0.005rem), calc(-50% + 0.005rem));
  transform: translate(calc(-50% + 0.005rem), calc(-50% + 0.005rem));
  z-index: 99;
}

.popup .u-img {
  width: 100%;
  height: 100%;
}

.popup .u-img img {
  display: unset;
  width: 5.77rem;
  height: 3.45rem;
  image-rendering: -webkit-optimize-contrast;
}

.popup .consult-btn {
  position: absolute;
  left: 50%;
  bottom: -0.1rem;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  display: block;
  width: 2.05rem;
  height: 0.59rem;
}

.popup .close {
  position: absolute;
  right: 0.54rem;
  top: 0.32rem;
  z-index: 100;
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background-position: -0.01rem -0.59rem;
  background-size: 3rem;
  cursor: pointer;
}

.fixedright-box {
  position: fixed;
  right: -0.03rem;
  top: 25%;
  z-index: 100;
}

.fixedright-box ul {
  background-color: rgb(255, 255, 255,0.8);
  padding: 0.1rem 0.11rem;
  -webkit-box-shadow: 0 0 0.13rem 0 rgba(95, 95, 95, 0.25);
  box-shadow: 0 0 0.13rem 0 rgba(95, 95, 95, 0.25);
  border-radius: 0.1rem 0 0 0.1rem;
}

.fixedright-box ul li {
  border-bottom: 0.01rem solid #ccc;
  padding-top: 0.15rem;
  position: relative;
}

.fixedright-box ul li a {
  position: relative;
  z-index: 5;
}

.fixedright-box ul li a .icon {
  display: block;
  width: 0.28rem;
  height: 0.28rem;
  background-image: url(../image/icon.png);
  background-size: 3rem;
}

.fixedright-box ul li a label {
  display: block;
  font-size: 0.12rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
  line-height: 0.28rem;
}

.fixedright-box ul li:nth-child(1) {
  padding-top: 0;
}

.fixedright-box ul li:nth-child(1) a .icon {
  background-position: -0.44rem -0.4rem;
}

.fixedright-box ul li:nth-child(2) a .icon {
  background-position: -0.72rem -0.4rem;
}

.fixedright-box ul li:nth-child(2):hover .m-text {
  right: 0.36rem;
}

.fixedright-box ul li:nth-child(3) {
  border: none;
}

.fixedright-box ul li:nth-child(3) a .icon {
  background-position: -1rem -0.4rem;
}

.fixedright-box ul li:nth-child(3):hover .erwei {
  right: 0.67rem;
}

.fixedright-box ul li .m-text {
  position: absolute;
  top: 0;
  right: -3rem;
  width: 2.92rem;
  height: 0.84rem;
  z-index: 2;
  padding: 0.18rem 0.3rem 0.2rem 0.6rem;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.fixedright-box ul li .m-text span {
  font-size: 0.22rem;
  font-family: SourceHanSansCN;
  font-weight: bold;
  color: #dd2c17;
  line-height: 0.24rem;
}

.fixedright-box ul li .m-text p {
  font-size: 0.16rem;
  font-family: SourceHanSansCN;
  font-weight: 400;
  color: #dd2c17;
  line-height: 0.24rem;
}

.fixedright-box ul li .erwei {
  width: 1.56rem;
  height: 1.95rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 0.01rem solid #e3e3e3;
  border-radius: 0.1rem;
  position: absolute;
  top: 0;
  z-index: 2;
  right: -2rem;
  -webkit-box-shadow: 0 0 0.13rem 0 rgba(95, 95, 95, 0.25);
  box-shadow: 0 0 0.13rem 0 rgba(95, 95, 95, 0.25);
  overflow: hidden;
}

.fixedright-box ul li .erwei img {
  display: block;
  width: 100%;
  height: auto;
}

.fixedright-box ul li .erwei .text {
  background: linear-gradient(115deg, #ff7200, #ff4200, #cd281f);
  font-size: 0.16rem;
  font-family: SourceHanSansCN;
  font-weight: 400;
  color: #ffffff;
  line-height: 0.4rem;
  text-align: center;
}

.fixedright-box .goTop {
  margin-top: 0.15rem;
  height: 0.46rem;
  background: #000033;
  border-radius: 0.1rem 0 0 0.1rem;
  padding-top: 0.18rem;
}

.fixedright-box .goTop a {
  display: block;
  width: 0.18rem;
  height: 0.1rem;
  background-image: url(../image/icon.png);
  background-size: 3rem;
  background-position: -1.32rem -0.48rem;
  margin: 0 auto;
}

[screen="false"] {
  overflow: auto !important;
  height: auto !important;
}

[screen="full"] {
  overflow: hidden !important;
}

.area {
  max-width: 14.5rem;
}

.index-banner {
  position: relative;
  /* height: 80vh; */
  height: 6.85rem;
  overflow: hidden;
}

.index-banner .swiper-container {
  height: 100%;
}

.index-banner .swiper-container .swiper-slide {
  position: relative;
}

.index-banner .swiper-container .swiper-slide .u-img {
  display: block;
  height: 100%;
}

.index-banner .swiper-container .swiper-slide .m-text {
  position: absolute;
  width: 14.5rem;
  height: 100%;
  top: 200vh;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.index-banner .swiper-container .swiper-slide .m-text .pic-text {
    margin-bottom: 0.8rem;
    /* scale: 0.8; */
    /* transform: translateX(-1.85rem); */
}
.index-banner .swiper-container .swiper-slide .m-text {
  transform: translate(-50%, -54%);
}

.index-banner .swiper-container .swiper-slide .m-text .pic-text img {
  display: block;
  margin-left: 0;
  max-width: 100%;
}

.index-banner .swiper-container .swiper-slide .m-text .m-fill-btn {
  width: 2.65rem;
  margin: 0;
  -webkit-box-shadow: 0 0 0.1rem 0 rgba(221, 44, 23, 0.51);
  box-shadow: 0 0 0.1rem 0 rgba(221, 44, 23, 0.51);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ec3a14),
    to(#ff7108)
  );
  background: linear-gradient(90deg, #ec3a14 0%, #ff7108 100%);
}

.index-banner .swiper-container .swiper-slide .m-text .m-fill-btn .u-iocn {
  display: inline-block;
  width: 0.2rem;
  height: 0.2rem;
  margin-left: 0.08rem;
  background-image: url(../image/icon.png);
  background-size: 3rem;
  background-position: -1.32rem 0;
  transform: translateY(0.03rem);
}

.index-banner .swiper-container .swiper-slide .m-text .m-fill-btn:hover {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ff7108),
    to(#ec3a14)
  );
  background: linear-gradient(90deg, #ff7108 0%, #ec3a14 100%);
}

.index-banner .swiper-pagination {
  margin-bottom: 0.4rem;
}

.index-banner .swiper-pagination .swiper-pagination-bullet {
  width: 0.4rem;
  height: 0.04rem;
  border-radius: 0;
  margin: 0 0.06rem;
}

.index-banner
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #dd2c17;
}

.team-info-box {
  padding: 1rem 0;
}

.team-info-box .m-team-info-con {
  margin-top: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 4.15rem;
  margin-bottom: 0.75rem;
}

.team-info-box .m-team-info-con .team-itme {
  transition: 0.3s;
  display: block;
  width: 2.6rem;
  height: 3.5rem;
  border-radius: 0.15rem;
  overflow: hidden;
  border: 0.01rem solid #fff;
  -webkit-box-shadow: 0 0 0.3rem 0 rgba(174, 161, 160, 0.35);
  box-shadow: 0 0 0.3rem 0 rgba(174, 161, 160, 0.35);
  padding: 0.25rem 0.2rem 0.4rem;
  background-color: #f5f5f5;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-right: 0.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.team-info-box .m-team-info-con .team-itme .icon {
  width: 1.32rem;
  height: 0.8rem;
  overflow: hidden;
  position: relative;
}

.team-info-box .m-team-info-con .team-itme .icon img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
}

.team-info-box .m-team-info-con .team-itme .u-top .num{
  font-size: 0.4rem;
  margin-bottom: 8%;

}

.team-info-box .m-team-info-con .team-itme .u-top {
  font-size: 0.22rem;
  line-height: 0.3rem;
  font-weight: bold;
  padding-top: 0.2rem;
}

.team-info-box .m-team-info-con .team-itme .u-top .num {
  color: #044692;
}

.team-info-box .m-team-info-con .team-itme .u-top .text {
  color: #333;
}

.team-info-box .m-team-info-con .team-itme .u-describe {
  padding-top: 0.25rem;
  font-size: 0.15rem;
  line-height: 0.28rem;
  color: #333;
  opacity: 0.8;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.team-info-box .m-team-info-con .team-itme .u-hover {
  position: absolute;
  bottom: -0.4rem;
  left: 50%;
  margin-left: -0.36rem;
  width: 0.72rem;
  height: 0.4rem;
  background-image: url(../image/icon.png);
  background-size: 3rem;
  background-position: -0.6rem 0.02rem;
}

.team-info-box .m-team-info-con .team-itme:last-child {
  margin-right: 0;
}

.team-info-box .m-team-info-con .team-itme:hover {
  width: 2.6rem;
  height: 3.8rem;
  z-index: 9;
  background: linear-gradient(#0a4a93 5%, #02336b);
}

.team-info-box .m-team-info-con .team-itme:hover .u-top .num,
.team-info-box .m-team-info-con .team-itme:hover .u-top .text {
  color: #fff;
}

.team-info-box .m-team-info-con .team-itme:hover .u-describe {
  color: #fff;
}


.advantage-box {
  padding: 0.45rem 0 0.4rem 0;
  background: linear-gradient(0deg, #FFFFFF 0%, #F5F5F5 100%);
}

.advantage-box .m-title .m-linear-btn {
  margin-top: 0.2rem;
  letter-spacing: 0.05rem;
}

.advantage-box .m-title{
  margin-bottom: 0.6rem;
}

.advantage-box  .btn-info{
  display: flex;
  justify-content: center;
  font-size: 0.14rem;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #7B7B7B;
  line-height: 0.15rem;
}

.advantage-box  .btn-info .u-img{
  margin-right: 0.1rem;
  width: 0.17rem;
  height: 0.17rem;
}

.advantage-box .m-advantage-con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.55rem 0 0.7rem;
}

.advantage-box .m-advantage-con .advantage-itme {
  width: 7rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0.3rem 0 rgba(174, 161, 160, 0.23);
  box-shadow: 0 0 0.3rem 0 rgba(174, 161, 160, 0.23);
  border-radius: 0.08rem;
  padding: 0.65rem 0.5rem 0.45rem 0.45rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.advantage-box .m-advantage-con .advantage-itme .t-text {
  width: 3.7rem;
}

.advantage-box .m-advantage-con .advantage-itme .t-text .itme-tit {
  font-size: 0.26rem;
  color: #000;
  font-weight: bold;
}

.advantage-box .m-advantage-con .advantage-itme .t-text .itme-tit span {
  color: #dd2c17;
}

.advantage-box .m-advantage-con .advantage-itme .t-text .u-describe {
  margin-top: 0.2rem;
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: #000;
  height: 1.2rem;
}

.advantage-box .m-advantage-con .advantage-itme .t-text .u-describe span {
  color: #dd2c17;
}

.advantage-box .m-advantage-con .advantage-itme .u-icon {
  font-size: 1.8rem;
  color: #f8f8f8;
  font-weight: bold;
  position: absolute;
  top: -1.25rem;
}

.advantage-box .m-advantage-con .advantage-itme .u-img {
  width: 2.34rem;
  height: 1.6rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.advantage-box .m-advantage-con .advantage-itme .u-img.add {
  -webkit-animation: scale 1s ease-in-out 2 alternate;
  animation: scale 1s ease-in-out 2 alternate;
}

/* NEW */
/* .home-high-box .home-high-con{
  width: 14.5rem;
} */

.home-high-box .home-high-con .home-high-list{
  width: 14.5rem;
  display: flex;
  /* justify-content: space-between; */
  margin: 0.65rem 0 0.71rem 0;
}

.home-high-box .m-fill-btn{
  width: 3.8rem;
  height: 0.6rem;
  line-height: 0.6rem;
  border-radius: 0.3rem;
}

.list-left-out{
  overflow:hidden;
  border-radius: 0.2rem 0.2rem 0.2rem 0.2rem;
  margin-right: 0.5rem;
}

.list-left{
  overflow-y: scroll;
  width: 2.59rem;
height: 7.2rem;
background: #FFFFFF;
box-shadow: 0rem 0rem 0.2rem 0.01rem rgba(103,103,103,0.07);
border-radius: 0.2rem 0.2rem 0.2rem 0.2rem;
}

.list-left::-webkit-scrollbar {
  border-radius: 0.1rem;
  width: 0.04rem;
  height: 0.01rem;
  background-color: #ffffff;
}
.list-left::-webkit-scrollbar-track {
  border-radius: 0.1rem;
  background-color: #ffffff;
}
.list-left::-webkit-scrollbar-thumb {
  border-radius: 0.1rem;
  background-color: #054494;
}

.list-left .item{
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
height: 0.9rem;
border-bottom: 0.01rem solid #7070701a;
font-size: 0.2rem;
font-family: Microsoft YaHei-Regular, Microsoft YaHei;
font-weight: 400;
  text-align: center;
color: #515151;
/* box-shadow: 0rem 0rem 0.2rem 0.01rem rgba(103,103,103,0.07); */
}

.list-left .item:hover{
background: linear-gradient(157deg, #094ea5 0%, #054494 100%);
opacity: 0.96;
color: #FFFFFF;

}

.list-left .active{
background: linear-gradient(57deg, #094ea5 0%, #054494 100%);
opacity: 0.96;
color: #FFFFFF;

}

.list-right{
width: 11.31rem;
height: 7.2rem;
padding: 0 0.25rem 0.25rem 0.25rem;
background: #FFFFFF;
box-shadow: 0rem 0rem 0.2rem 0.01rem rgba(103,103,103,0.07);
border-radius: 0.2rem 0.2rem 0.2rem 0.2rem;
}

.list-right .title{
  display: flex;
  justify-content: space-between;
  height: 0.96rem;
}

.list-right .title p{
  width: 15%;
  padding: 0 0.35rem;
line-height: 0.96rem;
font-size: 0.22rem;
font-family: Microsoft YaHei-Bold, Microsoft YaHei;
font-weight: bold;
color: #515151;
}

.list-right .title p i{
  display: inline-block;
width: 0.11rem;
height: 0.11rem;
margin-right: 0.1rem;
border-radius: 50%;
background: linear-gradient(133deg, #F5A019 0%, #F23D12 100%);
box-shadow: 0rem 0.02rem 0.03rem 0.01rem rgba(221,44,24,0.19);
}

.list-right .title .com{
  width: 31%;
}

.list-right .title .job{
  width: 20%;
}
.list-right .title .state{
  width: 16%;
}

.list-right .list-right-content{
  display: none;
  flex-direction: column;
}

.list-right .list-right-content .item:hover p{
color: #F24213;
}

.list-right .item{
  display: flex;
  justify-content: space-between;
height: 0.6rem;
border-radius: 0.1rem 0.1rem 0.1rem 0.1rem;
}

.list-right .item .u-img{
  width: 0.26rem;
  height: 0.26rem;
  margin-right: 0.12rem;
}

.list-right .item p{
  width: 15%;
  padding: 0 0.3rem;
font-size: 0.18rem;
font-family: Microsoft YaHei-Regular, Microsoft YaHei;
font-weight: 400;
color: #7B7B7B;
line-height: 0.6rem;
}

.list-right .item .money{
color: #F24213;
}

.list-right .item .state{
  display: flex;
  align-items: center;
  width: 16%;
  color: #F35D14;
}

.list-right .item .com{
  width: 31%;
}

.list-right .item .job{
  width: 20%;
}

.list-right .item:nth-child(even){
background: #F6F6F6;
}

.list-right .item:nth-child(odd){
background: transparent;
}


/* NEW */

.home-high-box .home-high-con .index_swiper_box {
  overflow: hidden;
  box-sizing: content-box;
  padding: 0 0.5rem;
}
.home-high-box .home-high-con .index_swiper_box .next_btn {
  background-size: 100% 100%;
  width: 0.16rem;
  height: 0.18rem;
  top: 54%;
  outline: none;
}
.home-high-box .home-high-con .index_swiper_box .next_btn::after,
.home-high-box .home-high-con .index_swiper_box .pre_btn::after {
  display: none;
}
.home-high-box .home-high-con .index_swiper_box .pre_btn {
  background-size: 100% 100%;
  width: 0.16rem;
  height: 0.18rem;
  top: 54%;
  outline: none;
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.advantage-box .m-advantage-con .advantage-itme:hover .u-img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.advantage-box .m-fill-btn {
  -webkit-box-shadow: 0 0 0.1rem 0 rgba(221, 44, 23, 0.51);
  box-shadow: 0 0 0.1rem 0 rgba(221, 44, 23, 0.51);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.advantage-box .m-fill-btn .u-iocn {
  display: inline-block;
  width: 0.2rem;
  height: 0.2rem;
  background-image: url(../image/icon.png);
  background-size: 3rem;
  background-position: -1.32rem 0;
  transform: translateY(0.034rem);
}

.advantage-box .m-fill-btn:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.home-high-box {
  padding: 0.9rem 0 1.2rem 0;
background: #F8F8F8;
}

.home-high-box .home-high-con .sort-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.55rem 0;
}

.home-high-box .home-high-con .sort-list .sort-item {
  width: 2.1rem;
  height: 1.72rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0.3rem 0 rgba(211, 190, 190, 0.35);
  box-shadow: 0 0 0.3rem 0 rgba(211, 190, 190, 0.35);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0.02rem solid #fff;
  border-radius: 0.1rem;
  position: relative;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  cursor: pointer;
}
/* .home-high-box .home-high-con .sort-list .sort-item:nth-child(n + 6) {
  display: none;
} */
.home-high-box .home-high-con .sort-list .sort-item .u-img {
  width: 0.7rem;
  height: 0.7rem;
  position: relative;
  z-index: 10;
}

.home-high-box .home-high-con .sort-list .sort-item .u-text {
  font-size: 0.18rem;
  color: #333;
  line-height: 0.24rem;
  text-align: center;
  margin-top: 0.1rem;
  position: relative;
  z-index: 10;
}

.home-high-box .home-high-con .sort-list .sort-item.active {
  border: 0.02rem solid #dd2c17;
  -webkit-box-shadow: 0 0.08rem 0 0 #dd2c17;
  box-shadow: 0 0.08rem 0 0 #dd2c17;
}

.home-high-box .home-high-con .sort-list .sort-item.active::before,
.home-high-box .home-high-con .sort-list .sort-item.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 0.1rem;
}

.home-high-box .home-high-con .sort-list .sort-item.active::before {
  -webkit-box-shadow: 0 0 0.4rem 0 rgba(221, 44, 23, 0.28);
  box-shadow: 0 0 0.4rem 0 rgba(221, 44, 23, 0.28);
}

.home-high-box .home-high-con .sort-list .sort-item.active::after {
  -webkit-box-shadow: 0 0 0.05rem 0 rgba(174, 161, 160, 0.35);
  box-shadow: 0 0 0.05rem 0 rgba(174, 161, 160, 0.35);
}

.home-high-box .home-high-con .scroll-list .scroll-item .row {
  height: 0.98rem;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.home-high-box .home-high-con .scroll-list .scroll-item .row .ul {
  white-space: nowrap;
  margin: 0.2rem 0;
  position: absolute;
  font-size: 0;
}

.home-high-box .home-high-con .scroll-list .scroll-item .row .ul .li {
  display: inline-block;
  height: 0.58rem;
  padding: 0 0.3rem;
  margin-left: 0.3rem;
  background-color: #f8f8f8;
  border-radius: 0.26rem;
  border: 0.01rem solid #eaeaea;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.home-high-box .home-high-con .scroll-list .scroll-item .row .ul .li .left {
  margin-top: 0.18rem;
}

.home-high-box
  .home-high-con
  .scroll-list
  .scroll-item
  .row
  .ul
  .li
  .left
  span {
  font-size: 0.16rem;
  color: #393939;
  line-height: 0.2rem;
}

.home-high-box
  .home-high-con
  .scroll-list
  .scroll-item
  .row
  .ul
  .li
  .left
  span:first-child {
  border-right: 0.01rem solid #393939;
  margin-right: 0.1rem;
  padding-right: 0.1rem;
}

.home-high-box .home-high-con .scroll-list .scroll-item .row .ul .li .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 10;
  margin-left: 0.2rem;
}

.home-high-box
  .home-high-con
  .scroll-list
  .scroll-item
  .row
  .ul
  .li
  .right
  .u-icon {
  display: block;
  width: 0.16rem;
  height: 0.12rem;
  background-image: url(../image/icon.png);
  background-size: 3rem;
  background-position: -1.55rem 0;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.45;
  margin-right: 0.1rem;
}

.home-high-box
  .home-high-con
  .scroll-list
  .scroll-item
  .row
  .ul
  .li
  .right
  span {
  font-size: 0.16rem;
  color: #c1c1c1;
  line-height: 0.56rem;
}

.home-high-box .home-high-con .scroll-list .scroll-item .row .ul .li::before {
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.5rem;
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 0;
  right: -100%;
  border-radius: 42% 0 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.home-high-box .home-high-con .scroll-list .scroll-item .row .ul .li:hover {
  background-image: radial-gradient(#f1f1f1, #ececec 35%);
}

.home-high-box
  .home-high-con
  .scroll-list
  .scroll-item
  .row
  .ul
  .li:hover::before {
  right: 0;
}

.home-high-box
  .home-high-con
  .scroll-list
  .scroll-item
  .row
  .ul
  .li:hover
  .right
  .u-icon {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: 1;
}

.home-high-box
  .home-high-con
  .scroll-list
  .scroll-item
  .row
  .ul
  .li:hover
  .right
  span {
  color: #b78a87;
}

.home-high-box .home-high-con .m-fill-btn {
  margin-top: 0.4rem;
}

.corps-box {
  background-color: #f8f8f8;
  padding-top: 0.8rem;
  padding-bottom: 1.05rem;
  position: relative;
}

.corps-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 6.55rem;
}

.corps-box .m-title {
  position: relative;
  z-index: 2;
}

.corps-box .corps-con {
  width: 14rem;
  margin: 0.6rem auto 0;
  background-color: #fff;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 0 0.36rem 0 rgba(174, 161, 160, 0.35);
  box-shadow: 0 0 0.36rem 0 rgba(174, 161, 160, 0.35);
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.corps-box .corps-con .left-column {
  background-repeat: no-repeat;
  background-size: 3.5rem;
  width: 9.4rem;
  -webkit-box-shadow: 0.1rem 0 0.35rem 0 rgba(174, 161, 160, 0.35);
  box-shadow: 0.1rem 0 0.35rem 0 rgba(174, 161, 160, 0.35);
  height: 100%;
  padding: 0.6rem 0.3rem;
  margin: 0;
  border-radius: 0.25rem;
}

.corps-box .corps-con .left-column .swiper-slide {
  display: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.corps-box .corps-con .left-column .swiper-slide.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.corps-box .corps-con .left-column .swiper-slide > .u-img {
  width: 3.3rem;
  height: 4.45rem;
  margin: 0 0.2rem;
}

.corps-box .corps-con .left-column .swiper-slide > .u-img img {
  -o-object-fit: contain;
  object-fit: contain;
}

.corps-box .corps-con .left-column .swiper-slide .u-info-box {
  width: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.corps-box .corps-con .left-column .swiper-slide .u-info-box .u-top-tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 0.01rem solid #dfddda;
  padding-bottom: 0.3rem;
}

.corps-box
  .corps-con
  .left-column
  .swiper-slide
  .u-info-box
  .u-top-tit
  .u-name {
  font-size: 0.26rem;
  color: #333;
  font-weight: bold;
  line-height: 0.32rem;
}

.corps-box .corps-con .left-column .swiper-slide .u-info-box .u-top-tit .label {
  font-size: 0.18rem;
  color: #333;
  line-height: 0.32rem;
}

.corps-box .corps-con .left-column .swiper-slide .u-info-box .m-linear-btn {
  margin: 0;
  padding: 0;
  text-align: center;
  width: 1.75rem;
  height: 0.4rem;
  font-size: 0.18rem;
  line-height: 0.36rem;
}

.corps-box
  .corps-con
  .left-column
  .swiper-slide
  .u-info-box
  .m-linear-btn:hover {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ec3a14),
    to(#ff7108)
  );
  background: linear-gradient(90deg, #ec3a14 0%, #ff7108 100%);
}

.corps-box .corps-con .left-column .swiper-slide .u-info-box .u-details {
  max-height: 3.15rem;
  padding-top: 0rem;
  font-size: 0.16rem;
  line-height: 0.32rem;
  color: #333;
  overflow: hidden;
  margin-top: -0.2rem;
}
.corps-box .corps-con .left-column .swiper-slide .u-info-box .u-details p {
  max-height: 3.15rem;
}

.corps-box .corps-con .left-column .swiper-slide .m-logo {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.corps-box .corps-con .left-column .swiper-slide .m-logo ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.5rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.corps-box .corps-con .left-column .swiper-slide .m-logo ul li {
  display: block;
  width: 1.63rem;
  height: 0.9rem;
}

.corps-box .corps-con .left-column .swiper-slide .m-logo ul li img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.corps-box .corps-con .left-column .swiper-slide .m-logo ul li:hover {
  -webkit-animation: hue 6s infinite linear;
  animation: hue 6s infinite linear;
  -webkit-box-shadow: 0 0 0.15rem 0 rgba(221, 44, 23, 0.1);
  box-shadow: 0 0 0.15rem 0 rgba(221, 44, 23, 0.1);
}

@-webkit-keyframes hue {
  from {
    -webkit-filter: hue-rotate(0deg);
    filter: hue-rotate(0deg);
  }
  to {
    -webkit-filter: hue-rotate(-360deg);
    filter: hue-rotate(-360deg);
  }
}

@keyframes hue {
  from {
    -webkit-filter: hue-rotate(0deg);
    filter: hue-rotate(0deg);
  }
  to {
    -webkit-filter: hue-rotate(-360deg);
    filter: hue-rotate(-360deg);
  }
}

.corps-box .corps-con .right-column {
  margin-right: 0.4rem;
  overflow: hidden;
}

.corps-box .corps-con .right-column .swiper-container {
  height: 6.65rem;
  padding-top: 0.1rem;
}

.corps-box .corps-con .right-column .swiper-slide {
  position: relative;
  padding: 0.15rem 0.65rem 0.15rem 0.3rem;
  cursor: pointer;
  height: 2.1rem;
}

.corps-box .corps-con .right-column .swiper-slide .m-img {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  -webkit-box-shadow: 0 0 0.05rem 0 rgba(174, 161, 160, 0.35);
  box-shadow: 0 0 0.05rem 0 rgba(174, 161, 160, 0.35);
  border: 0.02rem solid #dd2c17;
  position: absolute;
  top: 50%;
  margin-top: -0.62rem;
  right: 0;
  z-index: 10;
}

.corps-box .corps-con .right-column .swiper-slide .m-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.corps-box .corps-con .right-column .swiper-slide .m-text {
  width: 3rem;
  height: 1.8rem;
  border-radius: 0.26rem;
  border: 0.01rem solid rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0 0 0.3rem 0 rgba(218, 207, 207, 0.55);
  box-shadow: 0 0 0.3rem 0 rgba(218, 207, 207, 0.55);
  position: relative;
  z-index: 8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0.2rem;
}

.corps-box .corps-con .right-column .swiper-slide .m-text .en {
  font-size: 0.24rem;
  font-weight: bold;
  color: #333;
  border-bottom: 0.02rem solid #dd2c17;
  line-height: 0.48rem;
}

.corps-box .corps-con .right-column .swiper-slide .m-text .label {
  font-size: 0.18rem;
  color: #393939;
  line-height: 0.24rem;
  margin-top: 0.1rem;
  max-width: 2.2rem;
}

.corps-box .corps-con .right-column .swiper-slide.active .m-text {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ec3a14),
    to(#ff7108)
  );
  background: linear-gradient(90deg, #ec3a14 0%, #ff7108 100%);
  -webkit-box-shadow: 0 0 0.15rem 0 rgba(242, 65, 18, 0.45);
  box-shadow: 0 0 0.15rem 0 rgba(242, 65, 18, 0.45);
}

.corps-box .corps-con .right-column .swiper-slide.active .m-text .en {
  color: #fff;
  border-bottom: 0.02rem solid #fff;
}

.corps-box .corps-con .right-column .swiper-slide.active .m-text .label {
  color: #fff;
}

.corps-box .corps-con .btn-box {
  width: 0.49rem;
  height: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 0.25rem;
  position: absolute;
  right: -0.9rem;
}

.corps-box .corps-con .btn-box div {
  opacity: 1;
}

.corps-box .corps-con .btn-box .swiper-button-prev,
.corps-box .corps-con .btn-box .swiper-button-next {
  width: 0.49rem;
  height: 0.49rem;
  border-radius: 50%;
  position: initial;
  background-image: url(../image/icon.png);
  background-repeat: no-repeat;
  background-size: 3rem;
  background-position: -2.35rem 0;
  outline: none;
  border: 0.01rem solid #fff;
  box-sizing: content-box;
}

.corps-box .corps-con .btn-box .swiper-button-disabled {
  border: unset;
}

.corps-box .corps-con .btn-box .swiper-button-prev::after,
.corps-box .corps-con .btn-box .swiper-button-next::after {
  display: none;
}

.corps-box .corps-con .btn-box .swiper-button-prev.swiper-button-disabled,
.corps-box .corps-con .btn-box .swiper-button-next.swiper-button-disabled {
  background-position: -1.86rem 0;
}

.corps-box .corps-con .btn-box .swiper-button-next {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.cooperation-box {
  height: 5.6rem;
  padding: 1rem 0 0.44rem 0;
  position: relative;
}

.cooperation-box::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 8;
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  background-color: #fff;
  top: 1rem;
  left: 50%;
  margin-left: -1rem;
  -webkit-box-shadow: 0 0 2rem 2rem white;
  box-shadow: 0 0 2rem 2rem white;
}

.cooperation-box .m-title {
  position: relative;
  z-index: 10;
}

.cooperation-box .cooperation-con {
  position: relative;
  z-index: 10;
  overflow: hidden;
  margin-top: 0.68rem;
  height: 5.7rem;
}

.cooperation-box .cooperation-con .swiper-container {
  padding: 0 0.1rem;
}

.cooperation-box .cooperation-con .swiper-wrapper {
    display: flex;
    height: 3rem;
    flex-wrap: wrap;
}

.cooperation-box .cooperation-con .swiper-wrapper .swiper-slide {
    width: 2rem !important;
    height: 1.45rem;
    margin-right: 0.19rem;
    margin-left: 0.19rem;
}
.cooperation-box .cooperation-con .swiper-pagination {
  bottom: 0;
}
.cooperation-box .cooperation-con .swiper-pagination .swiper-pagination-bullet {
  width: 0.4rem;
  height: 0.04rem;
  border-radius: 0;
  margin: 0 0.06rem;
  outline: none;
}
.cooperation-box
  .cooperation-con
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #dd2c17;
}
.cooperation-box .cooperation-con .swiper-wrapper .swiper-slide .u-img {
  display: block;
  width: 2rem;
  /* height: 1.36rem; */
  border-radius: 0.1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0 0.1rem 0 rgba(174, 161, 160, 0.35);
  box-shadow: 0 0 0.1rem 0 rgba(174, 161, 160, 0.35);
  margin-top: 0.1rem;
  border: 0.02rem solid #fff;
}

.cooperation-box .cooperation-con .swiper-wrapper .swiper-slide .u-img:hover {
  border-color: #dd2c17;
}

.contactUs-box {
  padding-top: 0.9rem;
  height: 10.33rem;
}

.contactUs-box .m-title {
  margin-bottom: 0.5rem;
}

.contactUs-box .contact-con{
  display: flex;
}

.contactUs-box .contact-con .left .u-img {
  width: 8rem;
  height: 6.85rem;
}

.contactUs-box .contact-con .right{
  display: flex;
  margin-left: 0.8rem;
}

.contactUs-box .contact-con .right .contact-right-box{
  position: relative;
  top: 2.18rem;
  right: 0;
}

.contactUs-box .contact-con .right .contact-right-box .i-out{
    position: absolute;
    background: linear-gradient(161deg, #F4F4F4 0%, #F7F7F7 100%);
    height: 0.76rem;
    width: 100%;
    border-radius: 0.2rem 0.2rem 0 0;
}

.contactUs-box .contact-con .right .contact-right-box i{
  position: absolute;
  top: 0.43rem;
  right: 0.47rem;
  width: 0.29rem;
height: 0.08rem;
background: linear-gradient(161deg, #F5A019 0%, #F23D12 100%);
border-radius: 2rem 2rem 2rem 2rem;
opacity: 1;
}

.contactUs-box .contact-con .right .contact-right-box .contact-top{
  position: absolute;
  z-index: 1;
  top: -0.45rem;
width: 1.87rem;
height: 0.96rem;
background: linear-gradient(306deg, #DD2C18 0%, #F23D12 100%);
box-shadow: 0rem 0rem 0.15rem 0.01rem rgba(221,44,24,0.35), inset 0rem 0rem 0.15rem 0.01rem rgba(255,255,255,0.16);
border-radius: 0.2rem 0.2rem 0.2rem 0rem;
opacity: 1;
font-size: 0.26rem;
font-family: Microsoft YaHei-Bold, Microsoft YaHei;
font-weight: bold;
color: #FFFFFF;
    text-align: center;
    line-height: 0.96rem;
}

.contactUs-box .contact-con .right .contact-right-box .contact-bottom{

 width: 5.45rem;
height: 3.28rem;
overflow-y: hidden;
background: linear-gradient(0deg, #FFFFFF 0%, #F4F4F4 100%);
box-shadow: 0rem 0.08rem 0.2rem 0.01rem rgba(227,227,227,0.91);
border-radius: 0.2rem 0.2rem 0.2rem 0.2rem;
opacity: 1;
border: 0.02rem solid #FFFFFF;
}

.contactUs-box .contact-con .right .contact-right-box .contact-bottom-list{
    display: flex;
  flex-wrap: wrap;
  align-content: baseline;
  height: 100%;
padding: 0.86rem 0.3rem 0.26rem 0.3rem;
overflow-y: scroll;
}

.contactUs-box .contact-con .right .contact-right-box .contact-bottom-list::-webkit-scrollbar {
  border-radius: 0.1rem;
  width: 0.04rem;
  height: 0.01rem;
  background-color: #ffffff;
}
.contactUs-box .contact-con .right .contact-right-box .contact-bottom-list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0.05rem #ffffff;
  border-radius: 0.1rem;
  background-color: #ffffff;
}
.contactUs-box .contact-con .right .contact-right-box .contact-bottom-list::-webkit-scrollbar-thumb {
  border-radius: 0.1rem;
  -webkit-box-shadow: inset 0 0 0.05rem #ec3a14;
  background-color: #ec3a14;
}

.contactUs-box .contact-con .right .contact-right-box .contact-bottom .item{
  transition: 0.2s;
width: 0.9rem;
height: 0.48rem;
margin: 0 0.04rem 0.08rem 0;
box-shadow: inset 0rem 0.03rem 0.06rem 0.01rem transparent;
border-radius: 0.3rem 0.3rem 0.3rem 0.3rem;
border: 0.02rem solid transparent;
text-align: center;
font-size: 0.16rem;
font-family: Microsoft YaHei-Regular, Microsoft YaHei;
font-weight: 400;
color: #434343;
line-height: 0.48rem;
}

.contactUs-box .contact-con .right .contact-right-box .contact-bottom .active,.contactUs-box .contact-con .right .contact-right-box .contact-bottom .item:hover{
box-shadow: inset 0rem 0.03rem 0.06rem 0.01rem rgba(242,86,20,0.23);
border-radius: 0.3rem 0.3rem 0.3rem 0.3rem;
border: 0.02rem solid rgba(243,102,20,0.24);
margin: 0 0.04rem 0.08rem 0;
font-weight: bold;
color: #F36615;
}

/* OLD */
.contactUs-box .contact-con .contact-titList {
  width: 100%;
  background: #dd2c17;
  -webkit-box-shadow: 0 0.1rem 0.2rem 0 rgba(205, 55, 31, 0.35);
  box-shadow: 0 0.1rem 0.2rem 0 rgba(205, 55, 31, 0.35);
  overflow: hidden;
}

.contactUs-box .contact-con .contact-titList .swiper-wrapper {
  padding: 0.24rem 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 16.5rem;
}

.contactUs-box .contact-con .contact-titList .swiper-wrapper .swiper-slide {
  width: 1.35rem;
  font-size: 0.2rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #fff;
  line-height: 0.44rem;
  text-align: center;
  cursor: pointer;
  margin-bottom: 0.1rem;
  margin-right: 0.1rem;
}

.contactUs-box
  .contact-con
  .contact-titList
  .swiper-wrapper
  .swiper-slide:nth-child(n + 23) {
  display: none;
}

.contactUs-box
  .contact-con
  .contact-titList
  .swiper-wrapper
  .swiper-slide.active,
.contactUs-box
  .contact-con
  .contact-titList
  .swiper-wrapper
  .swiper-slide:hover {
  background: #ffffff;
  -webkit-box-shadow: 0rem 0rem 0rem 0rem rgba(174, 161, 160, 0.41);
  box-shadow: 0rem 0rem 0rem 0rem rgba(174, 161, 160, 0.41);
  border-radius: 0.2rem;
  color: #dd2c17;
}

.contactUs-box .contact-con .contact-itemList .swiper-slide {
  display: none;
  position: relative;
  height: 4.64rem;
  padding-top: 1.18rem;
}

.contactUs-box .contact-con .contact-itemList .swiper-slide .u-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.contactUs-box .contact-con .contact-itemList .swiper-slide .squar {
  width: 2.57rem !important;
}
.contactUs-box .contact-con .contact-itemList .swiper-slide .u-text {
  position: relative;
  margin: 0 auto;
  z-index: 2;
  padding: 0.28rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 6rem;
  align-items: center;
  background: #ffffff;
  -webkit-box-shadow: 0rem 0rem 0.18rem 0rem rgba(174, 161, 160, 0.35);
  box-shadow: 0rem 0rem 0.18rem 0rem rgba(174, 161, 160, 0.35);
  border-radius: 0.1rem;
}

.contactUs-box .contact-con .contact-itemList .swiper-slide .u-text .left-car {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 2rem;
  max-height: 1.5rem;
}

.contactUs-box
  .contact-con
  .contact-itemList
  .swiper-slide
  .u-text
  .left-car
  .info-itme {
  width: 1rem;
  height: 0.75rem;
  font-size: 0.16rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #000000;
  line-height: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contactUs-box
  .contact-con
  .contact-itemList
  .swiper-slide
  .u-text
  .left-car
  .info-itme:first-child {
  -webkit-box-shadow: 0.04rem 0.04rem 0.04rem 0 rgba(228, 228, 228, 0.4);
  box-shadow: 0.04rem 0.04rem 0.04rem 0 rgba(228, 228, 228, 0.4);
}

.contactUs-box
  .contact-con
  .contact-itemList
  .swiper-slide
  .u-text
  .left-car
  .info-itme:nth-child(2) {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.contactUs-box
  .contact-con
  .contact-itemList
  .swiper-slide
  .u-text
  .left-car
  .info-itme:nth-child(3) {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.contactUs-box
  .contact-con
  .contact-itemList
  .swiper-slide
  .u-text
  .left-car
  .info-itme:last-child {
  -webkit-box-shadow: inset 0.04rem 0.04rem 0.04rem 0 rgba(228, 228, 228, 0.4);
  box-shadow: inset 0.04rem 0.04rem 0.04rem 0 rgba(228, 228, 228, 0.4);
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.contactUs-box
  .contact-con
  .contact-itemList
  .swiper-slide
  .u-text
  .left-car
  .info-itme
  span {
  display: block;
  font-weight: bold;
  color: #dd2c17;
  font-size: 0.2rem;
}

.contactUs-box
  .contact-con
  .contact-itemList
  .swiper-slide
  .u-text
  .riight-car {
  width: 2.85rem;
  border-left: 0.01rem solid #d7d7d7;
  padding-left: 0.35rem;
}

.contactUs-box
  .contact-con
  .contact-itemList
  .swiper-slide
  .u-text
  .riight-car
  h3 {
  font-size: 0.2rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #000000;
  line-height: 0.24rem;
  text-align: center;
}

.contactUs-box
  .contact-con
  .contact-itemList
  .swiper-slide
  .u-text
  .riight-car
  h3::after {
  content: "";
  display: block;
  width: 0.2rem;
  height: 0.01rem;
  background: #cd371f;
  margin: 0.1rem auto 0;
}

.contactUs-box
  .contact-con
  .contact-itemList
  .swiper-slide
  .u-text
  .riight-car
  .address {
  font-size: 0.16rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #000000;
  line-height: 0.24rem;
  margin-top: 0.1rem;
}

.contactUs-box
  .contact-con
  .contact-itemList
  .swiper-slide
  .u-text
  .riight-car
  .m-fill-btn {
  margin-top: 0.15rem;
  width: 1.15rem;
  height: 0.38rem;
  background: linear-gradient(93deg, #ff7200, #ff4200, #cd281f);
  opacity: 0.97;
  border-radius: 0.19rem;
  color: #f8f8f8;
  font-size: 0.14rem;
  padding: 0;
  line-height: 0.38rem;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.contactUs-box
  .contact-con
  .contact-itemList
  .swiper-slide
  .u-text
  .riight-car
  .m-fill-btn:hover {
  background: linear-gradient(-167deg, #ff7200, #ff4200, #cd281f);
}

.contactUs-box .contact-con .contact-itemList .swiper-slide.active {
  display: block;
}

/* OLD */

.news-box {
  height: 9.14rem;
  padding: 0.8rem 0;
}

.news-box .news-con {
  padding-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.news-box .news-con .left-column {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
}

.news-box .news-con .left-column .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 4.75rem;
}

.news-box .news-con .left-column .swiper-wrapper .swiper-slide {
  position: relative;
  width: 4.75rem;
  height: 1.8rem;
  -webkit-box-shadow: 0rem 0rem 0.08rem 0rem rgba(174, 161, 160, 0.35);
  box-shadow: 0rem 0rem 0.08rem 0rem rgba(174, 161, 160, 0.35);
  border-radius: 0.1rem;
  overflow: hidden;
  padding: 0.13rem;
  margin-bottom: 0.25rem;
}

.news-box .news-con .left-column .swiper-wrapper .swiper-slide .u-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.news-box .news-con .left-column .swiper-wrapper .swiper-slide .u-text {
  position: relative;
  height: 100%;
  z-index: 2;
  border: 0.02rem solid transparent;
  border-radius: 0.1rem;
}

.news-box .news-con .left-column .swiper-wrapper .swiper-slide .u-text span {
  display: block;
  font-size: 0.2rem;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #ffffff;
  line-height: 0.3rem;
  text-shadow: 0rem 0.04rem 0.09rem rgba(0, 0, 0, 0.35);
  text-align: center;
  margin-top: 0.45rem;
}

.news-box .news-con .left-column .swiper-wrapper .swiper-slide .u-text a {
  display: block;
  width: 0.9rem;
  height: 0.38rem;
  background: #dd2c17;
  border-radius: 0.19rem;
  font-size: 0.14rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #f8f8f8;
  line-height: 0.38rem;
  text-align: center;
  margin: 0.15rem auto;
}

.news-box .news-con .left-column .swiper-wrapper .swiper-slide:hover .u-text,
.news-box
  .news-con
  .left-column
  .swiper-wrapper
  .swiper-slide.swiper-slide-active
  .u-text {
  border-color: #dd2c17;
}

.news-box .news-con .left-column .swiper-wrapper .swiper-slide:hover .u-text a,
.news-box
  .news-con
  .left-column
  .swiper-wrapper
  .swiper-slide.swiper-slide-active
  .u-text
  a {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ec3a14),
    to(#ff7108)
  );
  background: linear-gradient(90deg, #ec3a14 0%, #ff7108 100%);
}

.news-box .news-con .right-column {
  display: flex;
  flex-grow: 1;
  margin-left: 0.3rem;
  /* justify-content: space-between; */
}

.news-box .news-con .right-column .out-box {
  transition: 0.2s;
  display: flex;
  box-sizing: content-box;
  flex-direction: column;
  width: 3.92rem;
  height: fit-content;
  min-height: 5.74rem;
  margin-right: 0.2rem;
  background: #FFFFFF;
  padding: 0.32rem 0.25rem 0.3rem 0.25rem;
  -webkit-box-shadow: 0rem 0rem 0.08rem 0rem rgba(174, 161, 160, 0.35);
  box-shadow: 0rem 0rem 0.02rem 0.01rem rgba(0,0,0,0.08);
  border-radius: 0.2rem;
  border: 0.02rem solid transparent;
}
/* 
.news-box .news-con .right-column .out-box .l-list{
  display: flex;
  flex-direction: column;
  justify-content: center;
} */

.news-box .news-con .right-column .out-box:hover {
  border:0.02rem solid #D73A27;
  border-bottom: 0.16rem solid #D73A27;
}

.news-box .news-con .right-column .out-box a:hover{
  color: #dd2c17;
}

.news-box .news-con .right-column .out-box .news-title{
  display: flex;
  padding-bottom: 0.2rem;
}

.news-box .news-con .right-column .out-box .news-title .left{
  display: flex;
  flex-direction: column;
  width: 100%;
}

.news-box .news-con .right-column .out-box .news-title .left .title {
    font-size: 0.26rem;
    font-weight: bold;
    padding: 0rem 0 0.1rem 0;
}

.news-box .news-con .right-column .out-box .news-title .left i {
    width: 0.29rem;
height: 0.08rem;
background: linear-gradient(161deg, #F5A019 0%, #F23D12 100%);
border-radius: 2rem 2rem 2rem 2rem;
opacity: 1;
}

.news-box .news-con .right-column .out-box .news-title .right{
  transition: 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.29rem;
height: 0.29rem;
margin-top: 0.1rem;
border-radius: 0.05rem 0.05rem 0.05rem 0.05rem;
opacity: 1;
border: 0.01rem solid #B2B2B2;
color: #B2B2B2;
}

.news-box .news-con .right-column .out-box .news-title .right .u-img{
width: 0.1rem;
height: 0.12rem;
}

.news-box .news-con .right-column .out-box .index {
  position: relative;
  width: 100%;
  height: 2.21rem;
  /* height: 2.4rem; */
  box-shadow: 0rem 0rem 0.08rem 0rem rgba(174, 161, 160, 0.35);
  border-radius: 0.1rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 0.24rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #ffffff;
  line-height: 0.36rem;
  text-align: center;
  /* margin-right: 0.2rem; */
  overflow: hidden;
}
.news-box .news-con .right-column .out-box .l-top{
    position: relative;
}

.news-box .news-con .right-column .out-box .l-top .m-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0.18rem;
}

.news-box .news-con .right-column .out-box .l-top:hover .index img {
    scale: 1.1;
}

.news-box .news-con .right-column .out-box .index img{
  transition: 0.2s;
  width: 100%;
  height: 100%;
}

.news-box .news-con .right-column .out-box .m-text {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  margin-top: 0.3rem;
  color: #FFFFFF;
}
.news-box .news-con .right-column .out-box .m-text-title {
  position: absolute;
  bottom: 0;
  padding: 0.14rem 0.19rem;
}

.news-box .news-con .right-column .out-box .m-text h3 {
  transition: 0.2s;
  font-size: 0.18rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
}

.news-box .news-con .right-column .out-box .m-text p {
  transition: 0.2s;
  width: 70%;
  font-size: 0.16rem;
  line-height: 0.16rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #111111;
}

.news-box .news-con .right-column .out-box .m-text .time {
  width: 23%;
font-size: 0.16rem;
font-family: Microsoft YaHei-Regular, Microsoft YaHei;
font-weight: 400;
color: #B2B2B2;
}

.news-box .news-con .right-column .out-box .m-text:hover p{
  color: #dd2c17;
}

.news-box .news-con .right-column .out-box .m-text .m-buttom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 0.1rem;
}

.news-box .news-con .right-column .out-box .m-text .m-buttom .u-time {
  font-size: 0.14rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #999999;
  line-height: 0.3rem;
}

.news-box .news-con .right-column .out-box .m-text .m-buttom .icon {
  width: 0.13rem;
  height: 0.15rem;
  background-image: url(../image/icon.png);
  background-size: 3rem;
  background-position: -1.36rem -0.23rem;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.3;
}

.news-box .news-con .right-column .out-box:hover .m-text .m-buttom .icon {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: 1;
}

.l-ad-list{
  display: flex;
  width: 100%;
  height: 1.46rem;
  justify-content: center;
  background: #02336b;
  border: 0.01rem solid #042d5d;
}
.l-ad-list .item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 0.22rem;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 0.3rem;
  margin: 0 0.5rem;
}

.l-ad-list .item span {
  font-size: 0.4rem;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 0.3rem;
  margin-bottom: 0.1rem;
}

/* 高新岗位 */
.high-salary-box{
  padding: 0.9rem 0 1.2rem 0;
  background: linear-gradient(0deg, #FFFFFF 0%, #FFF0E7 100%);
}

/* .high-salary-con {
} */

.high-salary-con .m-fill-btn{
  width: 3.8rem;
  height: 0.6rem;
  line-height: 0.6rem;
  border-radius: 0.3rem;
}

.high-salary-list{
  width: 14.5rem;
  display: flex;
  flex-direction: column;
  margin: 0.4rem 0 0.6rem 0;
  /* width: 100%; */
}

.high-salary-list .title{
  display: flex;
  justify-content: space-between;
height: 0.72rem;
background: linear-gradient(90deg, #F5A019 0%, #F23D12 100%);
border-radius: 0.2rem 0.2rem 0rem 0rem;

}

.high-salary-list .title p{
  width: 18%;
  padding: 0 0.44rem;
  font-size: 0.22rem;
font-family: Microsoft YaHei-Bold, Microsoft YaHei;
font-weight: bold;
color: #FFFFFF;
line-height: 0.72rem;
}

.high-salary-list .title .city{
  width: 10%;
}

.high-salary-list .title .year{
  width: 14%;
}

.high-salary-list .item{
  display: flex;
  justify-content: space-between;
  height: 0.72rem;
}

.high-salary-list .item:hover p{
color: #F24213;
}

.high-salary-list .item p{
  width: 18%;
  padding: 0 0.44rem;
font-size: 0.18rem;
font-family: Microsoft YaHei-Regular, Microsoft YaHei;
font-weight: 400;
color: #515151;
line-height: 0.72rem;
}

.high-salary-list .item .salary{
font-size: 0.2rem;
font-family: Microsoft YaHei-Bold, Microsoft YaHei;
font-weight: bold;
color: #F24213;
}

.high-salary-list .item .year{
  width: 14%;
}

.high-salary-list .item .city{
  width: 10%;
}

.high-salary-list .item:nth-child(even){
background: linear-gradient(274deg, #FFE9E3 0%, #FFECCF 100%);
opacity: 0.7;
}

.high-salary-list .item:nth-child(odd){
background: transparent;
opacity: 0.7;
}
