/* 公共样式 */

::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-track {
  background-color: #f4f4f4;
}

::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 6px #98785e;
}

#mask {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9;
  display: none;
  transition: all 0.8s;
}

.container {
  width: 87.5%;
  margin: 0 auto;
}

.container .titlemode {
  font-size: 0.28rem;
  width: 2.42rem;
  height: 0.75rem;
  background: #98785e;
  border-radius: 50px;
  display: block;
  margin: 0.8rem auto;
  text-align: center;
  line-height: 0.75rem;
  color: #fff;
}
/* 分页样式 */

.pagination {
  display: flex;
  justify-content: center;
  margin: 20px auto 30px;
}
/* 关闭谷歌浏览器的视频下载按钮提示  */
/* .xl-chrome-ext-bar {
        display: none;
    } */

.pagination li {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0.08rem;
  border: 1px solid #efefef;
  text-align: center;
  line-height: 0.5rem;
  border-radius: 50%;
}

.pagination .disabled {
  opacity: 0.5;
}

.pagination .active {
  background: #98785e;
  color: #fff;
}

.hamburger .line {
  width: 40px;
  height: 2px;
  background-color: #ecf0f1;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover {
  cursor: pointer;
}

#hamburger-6.is-active {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#hamburger-6.is-active .line:nth-child(2) {
  width: 0px;
}

#hamburger-6.is-active .line:nth-child(1),
#hamburger-6.is-active .line:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

#hamburger-6.is-active .line:nth-child(1) {
  -webkit-transform: translateY(13px);
  -ms-transform: translateY(13px);
  -o-transform: translateY(13px);
  transform: translateY(13px);
}

#hamburger-6.is-active .line:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(90deg);
  -ms-transform: translateY(-7px) rotate(90deg);
  -o-transform: translateY(-7px) rotate(90deg);
  transform: translateY(-7px) rotate(90deg);
}
/* 头部样式 */

header {
  position: absolute;
  z-index: 150;
  width: 100%;
}

header .container {
  display: flex;
  justify-content: space-between;
}

header .container .logopic {
  width: 1.2rem;
  margin: 0.2rem;
}

header .hamburger {
  margin: 2% 0.25% 0 0;
}

header .container > img {
  max-width: 1.4rem;
}

.videobox {
  width: 100%;
  position: fixed;
  z-index: 13;
  background: #000;
  height: 100%;
  display: flex;
  justify-content: center;
  left: 0;
  transition: all 0.4s;
}
/* 导航效果 */

nav {
  width: 1.8rem;
  background: rgba(0, 0, 0, 0.85);
  height: 99.4%;
  position: fixed;
  right: -1.8rem;
  top: 0;
  z-index: -1;
  transition: all 0.5s;
  padding: 1rem 0 0 0;
}

nav ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

nav ul li .subnav {
  width: 1.36rem;
  background: rgba(47, 47, 47, 0.85);
  position: fixed;
  right: 1.8rem;
  height: fit-content;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  display: none;
  height: 100%;
  top: 0;
  transition: all 0.2s;
}

nav ul li:hover .subnav {
  display: flex;
  animation-name: fadeInDown;
  visibility: visible;
}

nav ul li .subnav a {
  padding: 0.3rem 0;
  color: #fff;
  font-size: 0.16rem;
  font-weight: 400;
  text-align: center;
}

nav ul li .subnav a:hover {
  color: #98785e;
  background: #000;
  font-weight: 400;
}

nav ul li {
  padding: 0.22rem 0 0.22rem 0;
  border-top: 1px solid #3e3d3d;
  width: 100%;
  position: relative;
}

nav ul li > a {
  color: #fff;
  font-size: 0.18rem;
  font-weight: 400;
  padding: 0 0 0 0.22rem;
}

nav ul li a:hover {
  color: #98785e;
}

.bannerbox {
  background: rgb(79, 78, 76);
  position: relative;
  overflow: hidden;
}

.bannerbox .swiper {
  /* height: 940px; */
  height: max-content;
}

.bannerbox .sub-banner {
  width: 100%;
}

.bannerbox .swiper-pagination-bullet-active {
  background: #fff;
}

footer {
  background: #3b3938;
}

footer .container .wrapper {
  padding: 80px 0 0 0;
  display: flex;
  justify-content: space-between;
  animation-name: fadeInUp;
  visibility: visible;
}

footer .container .wrapper .left {
  margin: 0 10px;
}

footer .container .wrapper .center {
  flex-grow: 1;
  padding: 0 30px;
}

footer .container .wrapper .center .btm-nav {
  display: flex;
}

footer .container .wrapper .center .btm-nav .item {
  flex-grow: 1;
  text-align: center;
}

footer .container .wrapper .center .btm-nav .item .title {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}

footer .container .wrapper .center .btm-nav .item a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 16px 0;
  font-weight: 300;
}

footer .container .wrapper .center .btm-nav .item a:hover {
  color: rgba(255, 255, 255, 1);
}

footer .container .wrapper .center .btm-info {
  margin: 55px 0;
}

footer .container .wrapper .center .btm-info .citypic {
  max-width: 62.5%;
}

footer .container .wrapper .center .btm-info span {
  font-size: 0.21rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 48px;
  margin: 0 0 0 30px;
  font-weight: 300;
}

footer .container .wrapper .center .btm-info a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 10px;
}

footer .container .wrapper .center .btm-info a:hover {
  color: rgba(255, 255, 255, 1);
}

footer .container .wrapper .right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: end;
}

footer .container .wrapper .right .qrcode img {
  width: 1.37rem;
  height: 1.37rem;
}

footer .container .wrapper .right .qrcode p {
  font-size: 0.16rem;
  color: #fff;
  text-align: center;
  margin: 6px 0;
  font-weight: 300;
}

footer .container .wrapper .right .backtotop {
  width: 0.7rem;
  height: 0.7rem;
  cursor: pointer;
  margin: 120px 0 0 0;
}

.index-about .container .aboutpic {
  max-width: 100%;
  display: block;
  margin: 2rem 0;
  animation-name: zoomIn;
  visibility: visible;
}

.index-about .container .aboutbox {
  position: relative;
  min-height: 940px;
  width: 100%;
  margin: 1rem 0;
}
/* .index-about .container .aboutbox .titlepic {
        position: absolute;
    } */

.index-about .container .about1 .titlepic {
  width: 67.4%;
  position: absolute;
  z-index: 1;
}

.index-about .container .aboutbox .x-logo {
  position: absolute;
  right: 0;
  top: 0;
  width: 1.2rem;
  height: 0.3rem;
  animation-name: rubberBand;
  visibility: visible;
}

.index-about .container .aboutbox .pic1 {
  position: absolute;
  left: 22%;
  top: 17%;
  z-index: 0;
  width: 36.9%;
  transition: all 0.4s;
  /* height: 7.7rem; */
}

.index-about .container .aboutbox .pic1 img {
  max-width: 100%;
}

.index-about .container .about1 .txtbox {
  width: 32.2%;
  float: right;
  padding: 2.2rem 0 0 0;
}

.index-about .container .about1 .txtbox .title {
  font-size: 0.4rem;
  color: #98785e;
  margin: 0 0 0.3rem 0;
}

.index-about .container .about1 .txtbox .desc {
  font-size: 0.2rem;
  color: #333;
  padding: 0 0 0.6rem 0;
}

.index-about .container .about1 .txtbox .cont {
  font-size: 0.2rem;
  color: #999;
  text-align: justify;
  line-height: 0.56rem;
}

.index-about .container .about2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.index-about .container .about2 .left {
  width: 61%;
}

.index-about .container .about2 .left .about2swiper {
  max-width: 88%;
  margin: 0.5rem auto;
  display: block;
}

.index-about .container .about2 .right {
  width: 30.4%;
}

.index-about .container .about2 .right .cont {
  font-size: 0.2rem;
  color: #999;
  line-height: 0.56rem;
  margin: 0.8rem 0 0.4rem 0;
}

.index-about .container .about2 .right .more {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.index-about .container .about2 .right .more .span {
  color: #999;
  font-size: 16px;
  font-weight: 400;
}

.index-about .container .about3 {
  display: flex;
  min-height: 700px;
}

.index-about .container .about3 .left {
  width: 44.3%;
}
/* .index-about .container .about3 .left img {
        width: 100%;
    } */

.index-about .container .about3 .left .title {
  font-size: 0.32rem;
  color: #98785e;
  padding: 0 0 0 1.9rem;
  margin: 0 0 0.3rem 0;
}

.index-about .container .about3 .left .cont {
  padding: 0 0 0 1.9rem;
  color: #999;
  font-size: 0.16rem;
  line-height: 0.56rem;
  width: 3.6rem;
  text-align: justify;
  font-weight: 300;
}

.index-about .container .about3 .left .more {
  display: flex;
  width: 3.6rem;
  padding: 0 0 0 1.9rem;
  justify-content: space-between;
  align-items: center;
}

.index-about .container .about3 .left .more img {
  width: 0.33rem;
}

.index-about .container .about3 .right {
  width: 62.5%;
}

.index-about .container .about3 .right img {
  padding: 2.3rem 0 0 0;
  max-width: 100%;
}

.index-about .container .about4 .wrapper {
  display: flex;
  justify-content: space-between;
}

.index-about .container .about4 .titlepic4 {
  display: block;
  margin: 0.2rem auto;
  width: 4.7rem;
}

.index-about .container .about4 .title {
  font-size: 0.32rem;
  line-height: 0.28rem;
  color: #98785e;
  margin: 0.2rem 0;
  text-align: center;
  padding: 0 2.8rem 0 0;
}

.index-about .container .about4 .wrapper .left {
  width: 30.4%;
}

.index-about .container .about4 .wrapper .left .cont {
  font-size: 0.2rem;
  color: #999;
  line-height: 0.56rem;
  margin: 0.2rem 0;
  font-weight: 300;
}

.index-about .container .about4 .wrapper .center {
  width: 23.81%;
  padding: 2.2rem 0;
  transition: all 0.4s;
}

.index-about .container .about4 .wrapper .center .cont {
  font-size: 0.2rem;
  color: #999;
  line-height: 0.56rem;
  margin: 0.2rem 0;
  font-weight: 300;
}

.index-about .container .about4 .wrapper .center .more {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.index-about .container .about4 .wrapper .center .more span {
  font-size: 0.16rem;
  color: #999;
}

.index-about .container .about4 .wrapper .right {
  width: 32.1%;
  padding: 1rem 0 0 0;
}
/* 新闻中心 */

.newscate .container .wrapper {
  display: flex;
  justify-content: center;
  flex-direction: row;
  padding: 1.6rem 0 0 0;
}

.newscate .container .wrapper .item {
  margin: 0 1rem;
  font-size: 0.26rem;
  color: #000;
  text-align: center;
  position: relative;
  user-select: none;
}

.newscate .container .wrapper .item span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.newscate .container .wrapper .item .line {
  display: none;
  position: absolute;
  bottom: -0.16rem;
  width: 1.69rem;
  left: -0.53rem;
}

.newscate .container .wrapper .active {
  color: #98785e;
}

.newscate .container .wrapper .active .line {
  display: block;
}

.newscate .container .wrapper .active span img {
  filter: brightness(1);
}

.newslist {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 50px 0;
}

.newslist .newsitem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin: 0 0 0.3rem 0;
}

.newslist .newsitem:hover {
  box-shadow: 0 0 30px rgba(9, 1, 3, 0.04);
}

.newslist .newsitem .picbox {
  width: 4.7rem;
  height: 3.3rem;
  overflow: hidden;
}

.newslist .newsitem .picbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.newslist .newsitem .txtbox {
  width: 10.8rem;
  height: 2.5rem;
  padding: 0 0.3rem 0;
}

.newslist .newsitem .txtbox .title {
  font-size: 0.26rem;
  color: #000;
  font-weight: bold;
}

.newslist .newsitem .txtbox .date {
  font-size: 0.16rem;
  color: #999;
  margin: 0.2rem 0;
  display: block;
}

.newslist .newsitem .txtbox .cont {
  font-size: 0.16rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 0.4rem;
  color: #999;
}

.newslist .newsitem .txtbox .more {
  display: flex;
  margin: 0.2rem 0 0 0;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.newslist .newsitem .txtbox .more span {
  font-size: 0.16rem;
  color: #999;
  font-weight: 300;
}

.newslist .newsitem .txtbox .more img {
  width: 0.33rem;
}
/* 新闻详情 */

.newsdetail .container {
  padding: 0.6rem 0;
}

.newsdetail .container .detailbox {
  box-shadow: 0 0 30px rgba(152, 120, 92, 0.23);
  padding: 0.5rem 0;
  overflow: hidden;
}

.container .title2mode {
  position: relative;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  font-size: 0.38rem;
  padding: 0.3rem 0.1rem;
  color: #98785e;
  min-width: 4.2rem;
}

.container .title2mode::before {
  content: "";
  background: url(../images/picture/news/leftline.png) no-repeat center;
  left: -108%;
  top: 41px;
  width: 4.9rem;
  height: 0.32rem;
  position: absolute;
  background-position-x: right;
}

.container .title2mode::after {
  content: "";
  background: url(../images/picture/news/rightline.png) no-repeat center;
  right: -108%;
  top: 41px;
  width: 4.9rem;
  height: 0.32rem;
  position: absolute;
  background-position-x: left;
}

.detailcontent {
  padding: 0 0.2rem;
}

.detailcontent p {
  font-size: 0.16rem;
  line-height: 0.36rem;
  color: #999;
  margin: 0.3rem 0;
}

.detailcontent img {
  display: block;
  max-width: 100%;
  margin: 0.2rem 0 auto;
}
/* 商务合作 */

.business .info {
  padding: 0.4rem 0;
  background: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 2.75rem;
  position: relative;
}

.business .info .mode {
  padding: 0 0 0 3.4rem;
}

.business .info .mode p {
  font-size: 0.2rem;
  color: #999;
  line-height: 0.63rem;
  position: relative;
  margin: 0 auto;
}

.business .info .mode .address::before {
  content: "";
  position: absolute;
  width: 0.37rem;
  height: 0.37rem;
  background: url(../images/picture/business/position.png) no-repeat center;
  left: -0.5rem;
  top: 0.14rem;
}

.business .info .mode .phone::before {
  content: "";
  position: absolute;
  width: 0.37rem;
  height: 0.37rem;
  background: url(../images/picture/business/tell.png) no-repeat center;
  left: -0.5rem;
  top: 0.14rem;
}

.business .info .mode .fax::before {
  content: "";
  position: absolute;
  width: 0.37rem;
  height: 0.37rem;
  background: url(../images/picture/business/fax.png) no-repeat center;
  left: -0.5rem;
  top: 0.14rem;
}

.business .info .phonepic {
  position: absolute;
  left: 21%;
  top: -31.3%;
}
/* 人才招聘 */

.recruit .container .joblist {
  display: flex;
  justify-content: flex-start;
  padding: 0.4rem 0;
  flex-wrap: wrap;
}

.recruit .container .joblist .jobitem {
  width: 24%;
  height: 2.18rem;
  background: url(../images/picture/recruit/bg1.jpg) no-repeat center;
  margin: 0 1% 1% 0;
  box-shadow: 0 0 20px rgba(152, 120, 94, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
}

.recruit .container .joblist .jobitem:hover {
  background: url(../images/picture/recruit/bg2.jpg) no-repeat center;
}

.recruit .container .joblist .jobitem:hover .name {
  color: #fff;
}

.recruit .container .joblist .jobitem:nth-child(4n) {
  margin: 0 0 1% 0;
}

.recruit .container .joblist .jobitem .name {
  font-size: 0.2rem;
  color: #000;
  margin: 0 0 0 -1.2rem;
}
/* 人才理念 */

.talent {
  overflow-x: hidden;
}

.talent .container .contentbox .title {
  position: relative;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  font-size: 0.35rem;
  padding: 0.3rem 0;
  color: #98785e;
  min-width: 4.2rem;
}

.talent .container .contentbox p {
  font-size: 14px;
  color: #999;
  margin: 0.2rem 0;
}

.talent .container .contentbox img {
  max-width: 100%;
  display: block;
  margin: 0.2rem auto;
}

.talent .container .funcbox {
  position: relative;
}

.talent .container .funcbox .wraplist {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

.talent .container .funcbox .item {
  width: calc(100% / 5 - 20px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 0 20px 0 0;
}

.talent .container .funcbox .item .picbox img {
  max-width: 100%;
  /* position: absolute; */
}
/* .talent .container .funcbox .item .txtbox {
      
    } */

.talent .container .funcbox .item .picbox {
  /* width: 100%;
        height: 100%; */
  position: relative;
}

.talent .container .funcbox .item .picbox img:last-child {
  /* display: none; */
}

.talent .container .funcbox .active .picbox img:first-child {
  /* display: none; */
}

.talent .container .funcbox .active .picbox img:last-child {
  display: block;
}

.talent .container .funcbox .active .txtbox {
  display: flex;
  animation: fadeInLeft 0.4s;
}

.talent .container .funcbox .txtbox {
  text-align: center;
}

.talent .container .funcbox .txtbox p {
  color: #999;
  margin: 0 auto;
  font-size: calc(0.5vw + 8px);
  line-height: 36px;
}

.talent .container .funcbox .txtbox p span {
  font-size: calc(0.5vw + 14px);
  color: #98785e;
  display: -webkit-box;
  margin: 10px 0 10px 0;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.talent .container .funcbox .onepic {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
/* 案例展示 */

.cases {
  /* height: 985px; */
  background: url(../images/picture/cases/case-bg.jpg) no-repeat center;
  background-size: cover;
  background-position-x: top;
  overflow-x: hidden;
  padding: 0.6rem 0;
}

.cases .container .wrapper {
  /* padding: 1.5rem 0 0 0; */
  display: flex;
  justify-content: space-between;
}

.cases .container .wrapper .earth {
  width: 46vw;
}

.cases .container .wrapper .earth img {
  width: 100%;
}

.cases .container .wrapper .casebox {
  width: 725px;
  overflow: hidden;
}

.cases .container .wrapper .casebox .swiper .item {
  width: 4.87rem;
  height: 4.85rem;
  position: relative;
}

.cases .container .wrapper .casebox .swiper .item .casepic {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.cases .container .wrapper .casebox .swiper .item .txtbox {
  display: flex;
  position: absolute;
  bottom: 0;
  padding: 0;
  width: 100%;
  align-items: center;
}

.cases .container .wrapper .casebox .swiper .item .txtbox .title {
  font-size: 0.3rem;
  color: #fff;
  margin: 0 0 0.2rem 0.2rem;
}

.cases .container .wrapper .casebox .swiper .item .txtbox .cont {
  font-size: 0.16rem;
  color: #fff;
  display: inline-block;
  width: 43%;
  text-align: left;
  padding: 0 0 0 0.2rem;
}

.cases .container .wrapper .casebox .swiper .item .txtbox .more {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 15%;
}

.cases .container .wrapper .casebox .swiper .item .txtbox .more span {
  color: #fff;
  font-size: 14px;
}

.cases .swiper1 {
  width: 46vw;
  height: 100%;
}

.cases .casebox2 {
  display: none;
}

.cases .casebox1 {
  display: block;
}

#certify {
  position: relative;
  width: 48vw;
  margin: 10vw auto 0;
}

#certify .swiper-container {
  padding-bottom: 60px;
}

#certify .swiper-slide {
  width: 487px;
  height: 486px;
}

#certify .swiper-slide {
  filter: blur(2px);
}

#certify .swiper-slide .item .txtbox {
  display: none;
}

#certify .swiper-slide-active .item .txtbox {
  display: flex;
  justify-content: space-between;
  width: 90%;
}

#certify .swiper-slide-active {
  filter: blur(0);
}
/* #certify .swiper-slide img {

} */
/* #certify .swiper-slide p {
    line-height: 98px;
    padding-top: 0;
    text-align: center;
    color: #636363;
    font-size: 1.1em;
    margin: 0;
} */

#certify .swiper-pagination {
  width: 100%;
  bottom: 20px;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
  border: 3px solid #fff;
  background-color: #d5d5d5;
  width: 10px;
  height: 10px;
  opacity: 1;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet-active {
  border: 3px solid #00aadc;
  background-color: #fff;
}
/* 组织架构 */

.organiz {
  /* min-height: 940px; */
  /* background: url(../images/picture/about/bg.png) no-repeat center; */
  /* background-position-x: left; */
}
/* .organiz .container {
        display: flex;
        justify-content: flex-end;
    } */
/* .organiz .container .swiper {
        width: 1181px;
        overflow: hidden;
        padding: 120px 0 0 0;
    } */

.organiz .container .videopage {
  width: 100%;
  height: 940px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
/* 荣誉资质 */

.certifi {
  position: relative;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  height: 964px;
  background: url(../images/picture/certifi/bg.jpg) no-repeat center;
}

.certifi .swiper {
  padding: 2rem 0 0 0;
}

.certifi .swiper-slide {
  width: 600px;
  height: 486px;
  margin: 0 auto;
}

.certifi .swiper-slide p {
  font-size: 0.24rem;
  color: #98785e;
  padding: 0.3rem 0 0 0.4rem;
  opacity: 0;
  transition: all 0.4s;
}

.certifi .swiper-slide-active p {
  opacity: 1;
  transition: all 0.4s;
}
/* .certifi .swiper-slide img {

} */
/* .certifi .swiper-slide p {
    line-height: 98px;
    padding-top: 0;
    text-align: center;
    color: #636363;
    font-size: 1.1em;
    margin: 0;
} */

.certifi .swiper-pagination {
  width: 100%;
  bottom: 20px;
}

.certifi .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
  border: 3px solid #fff;
  background-color: #d5d5d5;
  width: 10px;
  height: 10px;
  opacity: 1;
}

.certifi .swiper-pagination-bullets .swiper-pagination-bullet-active {
  border: 3px solid #00aadc;
  background-color: #fff;
}
/* 企业文化 */

.culture {
  padding: 2rem 0 0 0;
  background: url(../images/picture/culture/bg.png) no-repeat center;
}

.culture .container .titlemode {
  width: 4.42rem;
  margin: 0 auto;
}

.culture .swiper {
  width: 946px;
  overflow: hidden;
  margin: 0.4rem auto;
}

.culture .container .wrapper {
  display: flex;
  justify-content: center;
  flex-direction: row;
  padding: 0.8rem 0;
}

.culture .container .controduce {
  width: 5rem;
  height: fit-content;
  min-height: 5vw;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  z-index: 10;
  border-radius: 44.5px;
  left: 50%;
  margin: 0 0 0 -2.5rem;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  transition: all 0.8s;
  display: none;
}

.culture .container .controduce .txtbox {
  max-width: 70%;
}

.culture .container .controduce .txtbox p {
  font-size: 16px;
  color: #fff;
  display: none;
}

.culture .container .controduce .current p {
  display: block;
}

.culture .container .wrapper .item {
  margin: 0 1rem;
  font-size: 0.26rem;
  color: #000;
  text-align: center;
  position: relative;
  user-select: none;
  cursor: pointer;
}

.culture .container .wrapper .item .line {
  display: none;
  position: absolute;
  bottom: -16px;
  width: 1.69rem;
  left: -0.31rem;
}

.culture .container .wrapper .active {
  color: #98785e;
}

.culture .container .wrapper .active .line {
  display: block;
}

.culture .container .showbox {
  position: relative;
  height: 480px;
  width: 960px;
  display: block;
  margin: 20px auto;
}

.culture .container .mobilepic {
  display: none;
}

.culture .container .showbox img {
  position: absolute;
}

.culture .container .showbox .btm-icon1 {
  width: 5.46rem;
  height: 1.98rem;
  left: 50%;
  margin: 0 0 0 -2.7rem;
  bottom: 1rem;
}

.culture .container .showbox .btm-icon2 {
  width: 5.46rem;
  height: 1.8rem;
  left: 50%;
  margin: 0 0 0 -2.73rem;
  bottom: 1.9rem;
  transform: rotateX(45deg);
}

.culture .container .showbox .btm-icon3 {
  width: 5.46rem;
  height: 5.45rem;
  left: 50%;
  margin: 0 0 0 -2.73rem;
  bottom: 0.3rem;
  animation: run-c 30s linear infinite normal;
}

.culture .container .showbox .btm-icon4 {
  width: 1.34rem;
  height: 1.34rem;
  left: 50%;
  margin: 0 0 0 -0.67rem;
  animation: run-c 15s linear infinite normal;
  bottom: 2.1rem;
}

.culture .container .showbox .btm-icon5 {
  width: 1.37rem;
  height: 1.37rem;
  left: 50%;
  margin: 0 0 0 -0.68rem;
  animation: run-c 20s linear infinite normal;
  bottom: 2.3rem;
}

.culture .container .showbox .btm-icon6 {
  width: 1.37rem;
  height: 1.37rem;
  left: 50%;
  margin: 0 0 0 -0.68rem;
  animation: run-c 8s linear infinite normal;
  bottom: 2.5rem;
}

.culture .container .showbox .btm-icon7 {
  width: 1.37rem;
  height: 1.37rem;
  left: 50%;
  margin: 0 0 0 -0.68rem;
  animation: run-c 14s linear infinite normal;
  bottom: 2.7rem;
}

.culture .container .showbox .btm-icon8 {
  width: 1.37rem;
  height: 1.37rem;
  left: 50%;
  margin: 0 0 0 -0.68rem;
  animation: run-c 18s linear infinite normal;
  bottom: 2.9rem;
}

.culture .container .showbox .logo {
  width: 1.33rem;
  height: 0.63rem;
  left: 50%;
  margin: 0 0 0 -0.67rem;
  bottom: 3.6rem;
}

.culture .container .showbox .icon1-a {
  bottom: 2.7rem;
  left: 0rem;
  z-index: 9;
  animation: move1 2s linear infinite alternate;
}

.culture .container .showbox .icon1-b {
  bottom: 2rem;
  left: 0rem;
  opacity: 0.2;
  z-index: 8;
  animation: move1-2 2.3s linear infinite alternate;
}

.culture .container .showbox .icon1-c {
  bottom: 3.05rem;
  left: 0.4rem;
  z-index: 9;
  animation: move1-1 2s linear infinite alternate;
}

.culture .container .showbox .icon2-a {
  left: 0.6rem;
  bottom: 3.4rem;
  z-index: 5;
  animation: move2-a 3s linear infinite alternate;
}

.culture .container .showbox .icon2-b {
  left: 0.6rem;
  bottom: 2.7rem;
  z-index: 5;
  opacity: 0.2;
  animation: move2-b 3s linear infinite alternate;
}

.culture .container .showbox .icon3-a {
  left: 1.9rem;
  bottom: 3.8rem;
  animation: move3-a 6s infinite alternate;
  z-index: 8;
}

.culture .container .showbox .icon3-b {
  left: 1.9rem;
  bottom: 3rem;
  z-index: 1;
  opacity: 0.2;
  animation: move3-b 2s infinite alternate;
}

.culture .container .showbox .icon4-a {
  right: 1.9rem;
  bottom: 3.8rem;
  z-index: 8;
  animation: move4-a 3s infinite alternate;
}

.culture .container .showbox .icon4-b {
  right: 1.9rem;
  bottom: 3rem;
  z-index: 1;
  opacity: 0.2;
  animation: move4-b 4s infinite alternate;
}

.culture .container .showbox .icon4-c {
  right: 2.35rem;
  bottom: 4.2rem;
  animation: move4-c 3s infinite alternate;
  z-index: 9;
}

.culture .container .showbox .icon5-a {
  right: 0.6rem;
  bottom: 3.4rem;
  z-index: 7;
  animation: move2-a 3s linear infinite alternate;
}

.culture .container .showbox .icon5-b {
  right: 0.6rem;
  bottom: 2.7rem;
  z-index: 5;
  opacity: 0.2;
  animation: move2-b 3s linear infinite alternate;
}

.culture .container .showbox .icon6-a {
  bottom: 2.7rem;
  right: 0.15rem;
  z-index: 9;
  animation: move1 2s linear infinite alternate;
}

.culture .container .showbox .icon6-b {
  bottom: 2rem;
  right: 0.15rem;
  opacity: 0.2;
  z-index: 8;
  animation: move1-2 2.3s linear infinite alternate;
}

.culture .container .showbox .icon7-a {
  bottom: 1.4rem;
  right: 0.7rem;
  z-index: 2;
  animation: move7-a 4s infinite alternate;
}

.culture .container .showbox .icon7-b {
  bottom: 0.7rem;
  right: 0.7rem;
  z-index: 1;
  opacity: 0.2;
  animation: move7-b 4s infinite alternate;
}

.culture .container .showbox .icon8-a {
  bottom: 1.2rem;
  right: 2.3rem;
  z-index: 7;
  animation: move8-a 4s infinite alternate;
}

.culture .container .showbox .icon8-b {
  bottom: 0.5rem;
  right: 2.3rem;
  z-index: 2;
  opacity: 0.2;
  animation: move8-b 3s infinite alternate;
}

.culture .container .showbox .icon8-c {
  bottom: 1.6rem;
  right: 2.66rem;
  z-index: 9;
  animation: move8-c 4s infinite alternate;
}

@keyframes move1 {
  from {
    bottom: 2.7rem;
  }
  to {
    bottom: 2.4rem;
  }
}

@keyframes move1-1 {
  from {
    bottom: 3.05rem;
  }
  to {
    bottom: 2.75rem;
  }
}

@keyframes move1-2 {
  from {
    bottom: 2rem;
  }
  to {
    bottom: 1.8rem;
  }
}

@keyframes move2-a {
  from {
    bottom: 3.4rem;
  }
  to {
    bottom: 3rem;
  }
}

@keyframes move2-b {
  from {
    bottom: 2.7rem;
  }
  to {
    bottom: 2.5rem;
  }
}

@keyframes move3-a {
  from {
    bottom: 3.8rem;
  }
  to {
    bottom: 3.5rem;
  }
}

@keyframes move3-b {
  from {
    bottom: 3rem;
  }
  to {
    bottom: 2.8rem;
  }
}

@keyframes move4-a {
  from {
    bottom: 3.8rem;
  }
  to {
    bottom: 3.5rem;
  }
}

@keyframes move4-b {
  from {
    bottom: 3rem;
  }
  to {
    bottom: 2.5rem;
  }
}

@keyframes move4-c {
  from {
    bottom: 4.1rem;
  }
  to {
    bottom: 3.9rem;
  }
}

@keyframes move7-a {
  form {
    bottom: 1.4rem;
  }
  to {
    bottom: 1.1rem;
  }
}

@keyframes move7-b {
  from {
    bottom: 0.7rem;
  }
  to {
    bottom: 0.9rem;
  }
}

@keyframes move8-a {
  from {
    bottom: 1.2rem;
  }
  to {
    bottom: 0.9rem;
  }
}

@keyframes move8-b {
  from {
    bottom: 0.5rem;
  }
  to {
    bottom: 0.2rem;
  }
}

@keyframes move8-c {
  from {
    bottom: 1.6rem;
  }
  to {
    bottom: 1.2rem;
  }
}
/* 中间的素材转圈圈 */

@keyframes run-c {
  from {
    transform: rotateX(74deg) rotate(0deg);
  }
  to {
    transform: rotateX(74deg) rotate(360deg);
  }
}
/* 企業矩陣 */

.matrix {
  padding: 1rem 0 0 0;
  background: url(../images/picture/culture/bg.png) no-repeat center;
}

.matrix .container .wrapper {
  position: relative;
  height: 9rem;
  width: 100%;
  overflow: hidden;
  /* display: flex; */
  transition: all 0.4s;
  /* flex-wrap: nowrap; */
}

.matrix .container .wrapper .leftside {
  position: relative;
  flex-grow: 1;
  transition: all 0.4s;
}

.matrix .container .wrapper .rightside {
  flex-grow: 1;
  width: 710px;
  box-shadow: 3px 3px 33px rgb(50 50 50 / 19%);
  height: 520px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  display: none;
  transition: all 0.4s;
  position: absolute;
  overflow: hidden;
  top: 3%;
  left: 50%;
  margin: 0 0 0 -355px;
  z-index: 999;
  padding: 20px;
  animation: fadeInDown 0.4s;
}

.matrix .container .wrapper .rightside .closeicon {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
}

.matrix .container .wrapper .active {
  display: block;
}

.matrix .container .wrapper .rightside .title {
  font-size: 26px;
  padding: 40px 0 0 0;
  color: #fff;
  width: fit-content;
  background: #98785e;
  height: 60px;
  border-radius: 30px;
  text-align: center;
  padding: 0 30px;
  line-height: 60px;
  margin: 0.2rem auto;
}

.matrix .container .wrapper .rightside .line {
  display: block;
  width: 100%;
  height: 1px;
  margin: 20px 0;
  border-bottom: 1px dashed #dcdcdc;
}

.matrix .container .wrapper .rightside .contbox {
  max-height: 270px;
  overflow-y: scroll;
}

.matrix .container .wrapper .rightside .cont {
  font-size: 16px;
  color: #fff;
  line-height: 36px;
  margin: 10px 0;
}

.matrix .container .wrapper .rightside .seemore {
  width: 134px;
  height: 50px;
  background: #98785e;
  border-radius: 25.5px;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  color: #fff;
  margin: 30px auto;
  display: block;
}

.matrix .container .wrapper .bgpic {
  width: 4.6rem;
  height: 5.25rem;
  position: absolute;
  left: 50%;
  top: 14%;
  max-width: 100%;
  margin: 0 0 0 -2.25rem;
}

.matrix .swiper {
  width: 185px;
  overflow: hidden;
  margin: 0 auto;
}

.matrix .swiper .swiper-slide img {
  display: block;
  margin: 0 auto;
}

.matrix .swiper .swiper-slide p {
  font-size: 0.26rem;
  color: #98785e;
  text-align: center;
  margin: 2.5rem 0 0 0;
}
/* 服务体验 */

.server {
  height: 937px;
  background: url(../images/picture/server/bg.png) no-repeat center;
  background-position-y: top;
}

.server .container {
  padding: 2rem 0 0 0;
}

.server .container .form {
  height: 622px;
  width: 1260px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin: 0 auto;
  box-shadow: 0 0 32px rgba(48, 48, 48, 0.32);
  animation-name: slideInUp;
  visibility: visible;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.server .container .form .demo {
  width: 7.5rem;
  background: url(../images/picture/server/bg2.png) no-repeat center;
}

.server .container .form .demo img {
  display: none;
}

.server .container .form .formbox {
  width: 4.1rem;
  padding: 0.2rem 0 0 0.6rem;
}

.server .container .form .formbox .title {
  font-size: 30px;
  color: #000;
  font-weight: bold;
  /* margin: 0 0 21px 0; */
}

.server .container .form .formbox .subtitle {
  font-size: 16px;
  color: #666;
}

.server .container .form .formbox .wrapper {
  display: flex;
  flex-direction: column;
  margin: 14px 0 0 0;
}

.server .container .form .formbox .wrapper .inputbox {
  width: 100%;
  overflow: hidden;
}

.server .container .form .formbox .wrapper .inputbox span {
  font-size: 16px;
  color: #000;
  margin: 0 0 14px 0;
  display: block;
}

.server .container .form .formbox .wrapper .inputbox span i {
  color: #ff0000;
}

.server .container .form .formbox .wrapper .inputbox input {
  width: 90%;
  height: 58px;
  background: #f2f2f2;
  border: 0;
  outline: none;
  padding: 0 24px;
}

.server .container .form .formbox .wrapper .inputbox input::placeholder {
  font-size: 16px;
  color: #999;
}

.server .container .form .formbox .wrapper .inputbox textarea {
  background: #f2f2f2;
  outline: none;
  border: 0;
  width: 100%;
  height: 122px;
  padding: 24px;
  display: block;
  resize: none;
}

.server .container .form .formbox .wrapper .inputbox textarea::placeholder {
  font-size: 16px;
  color: 999;
}

.server .container .form .formbox .wrapper .inputbox .verifybox {
  position: relative;
}

.server .container .form .formbox .wrapper .inputbox .verifybox input {
  width: 100%;
  height: 58px;
  line-height: 58px;
  outline: none;
  border: 0;
  background: #f2f2f2;
  padding: 0 24px;
}

.server .container .form .formbox .wrapper .inputbox .verifybox img {
  position: absolute;
  z-index: 9;
  right: 0px;
  bottom: 0px;
  width: 1.8rem;
  height: 0.58rem;
}

.server .container .form .formbox .wrapper a {
  display: block;
  width: 24%;
  height: 58px;
  background: #98785e;
  color: #fff;
  line-height: 58px;
  text-align: center;
  font-size: 16px;
  border-radius: 4px;
}

.server .container .form .formbox .wrapper:last-child {
  flex-direction: revert;
  justify-content: flex-start;
  align-items: end;
}

.server .container .form .formbox .wrapper:last-child .inputbox {
  width: 73%;
  margin: 0 0.1rem 0 0;
}

.server .container .form .formbox .wrapper .inputbox .choselist {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.server .container .form .formbox .wrapper .inputbox .choselist .item {
  width: 1.98rem;
  height: 0.58rem;
  line-height: 0.58rem;
  font-size: 0.16rem;
  font-weight: 300;
  text-align: center;
  background: #fff;
  color: #000;
  width: 47%;
  margin: 1%;
  border-radius: 4px;
  border: 1px solid #d4d4d4;
  user-select: none;
}

.server .container .form .formbox .wrapper .inputbox .choselist .active {
  background: #98785e;
  border: 1px solid #98785e;
  color: #fff;
}
/* 品牌构造 */

.brand {
  overflow: hidden;
  padding: 4vw 0;
}

.brand .container .contentbox p {
  font-size: 0.2rem;
  color: #999;
  margin: 0.2rem 0;
  line-height: 0.46rem;
}

.brand .container .contentbox img {
  max-width: 100%;
  display: block;
  margin: 0.2rem auto;
}
/* 企业品牌构造 */

.brand-about {
  margin: 0.8rem 0;
}

.brand-about .wrapper {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand-about1 .wrapper .left {
  width: 55.9%;
}

.brand-about1 .wrapper .left img {
  width: 100%;
}

.brand-about1 .wrapper .left img:first-child {
  margin: 0 0 0.5rem 0;
}

.brand-about1 .wrapper .right {
  width: 37.1%;
}

.brand-about .x-logo {
  width: 1.2rem;
  float: right;
  margin: 0 0 0.2rem 0;
}

.brand-about1 .wrapper .right p {
  font-size: 0.2rem;
  color: #999;
  margin: 0.2rem 0;
  line-height: 0.56rem;
}

.brand-about .wrapper .more {
  clear: both;
  margin: 0.2rem 0 0 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.brand-about .wrapper .more span {
  font-size: 0.2rem;
  color: #999;
  font-weight: 300;
}

.brand-about .wrapper .more img {
  width: 0.33rem;
}

.brand-about2 .wrapper .left {
  width: 35.7%;
}

.brand-about2 .wrapper .left img:first-child {
  width: 100%;
}

.brand-about2 .wrapper .left p {
  width: 3.78rem;
  font-size: 0.2rem;
  color: #999;
  margin: 0.2rem 0;
  line-height: 0.46rem;
  float: right;
}

.brand-about2 .wrapper .more {
  width: 3.78rem;
  float: right;
}

.brand-about2 .wrapper .right {
  width: 55.6%;
}

.brand-about2 .wrapper .right img:nth-child(2) {
  width: 100%;
  margin: 0.7rem 0 0 0;
}

.brand-about3 {
  background: url(../images/picture/brand/brand3-1.jpg) no-repeat center;
  height: 1499px;
  background-position-y: top;
}

.brand-about3 .title {
  font-size: 0.32rem;
  color: #98785e;
  margin: 0.5rem 0;
  text-align: center;
}

.brand-about3 .about3pic {
  max-width: 100%;
  display: block;
  margin: 0.7rem auto;
}

.brand-about3 .txtbox {
  width: 81.5%;
  margin: 0.5rem auto;
  background: rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.2rem;
  padding: 0.3rem 0;
}

.brand-about3 .txtbox::before {
  content: "";
  width: 0.64rem;
  height: 0.56rem;
  background: url(../images/yin-icon1.png) no-repeat center;
  position: absolute;
  left: -0.2rem;
  top: -0.3rem;
}

.brand-about3 .txtbox::after {
  content: "";
  width: 0.64rem;
  height: 0.56rem;
  background: url(../images/yin-icon2.png) no-repeat center;
  position: absolute;
  right: -0.3rem;
  bottom: -0.3rem;
}

.brand-about3 .txtbox p {
  font-size: 0.16rem;
  color: #333;
  padding: 0 0.3rem;
  line-height: 0.5rem;
}

.brand-about4 .wrapper .left {
  width: 55.9%;
}

.brand-about4 .wrapper .left img:first-child {
  margin: 0 0 0.5rem 0;
}

.brand-about4 .wrapper .left img {
  width: 100%;
}

.brand-about4 .wrapper .right {
  width: 37.1%;
}

.brand-about4 .wrapper .right p {
  font-size: 0.2rem;
  color: #999;
  margin: 0.2rem 0;
  line-height: 0.56rem;
}

.brand-about5 .wrapper .left {
  width: 54.7%;
}

.brand-about5 .wrapper .left img:first-child {
  float: right;
  max-width: 100%;
}

.brand-about5 .wrapper .left .wrap {
  display: flex;
  justify-content: space-between;
  clear: both;
}

.brand-about5 .wrapper .left .wrap .left-a {
  width: 46%;
}

.brand-about5 .wrapper .left .wrap .left-b {
  width: 44.5%;
  margin: 0 0.3rem 0 0;
}

.brand-about5 .wrapper .left .wrap .left-b img:first-child {
  margin: 0.3rem 0 0.5rem 0;
}

.brand-about5 .wrapper .left .wrap .left-b p {
  font-size: 0.18rem;
  color: #999;
  line-height: 0.56rem;
  margin: 0.5rem 0 0 0;
}

.brand-about5 .wrapper .right {
  width: 40.5%;
}

.brand-about5 .wrapper .right img:nth-child(2) {
  max-width: 100%;
}

.brand-about6 .wrapper .left {
  width: 63.7%;
  margin: 0 0.3rem 0 0;
}

.brand-about6 .wrapper .left img:first-child {
  width: 98%;
}

.brand-about6 .wrapper .left .wrap {
  display: flex;
  justify-content: space-between;
}

.brand-about6 .wrapper .left .wrap .left-a {
  width: 52.4%;
}

.brand-about6 .wrapper .left .wrap .left-b {
  width: 40.1%;
}

.brand-about6 .wrapper .left .wrap .left-b p {
  font-size: 0.18rem;
  color: #999;
  line-height: 0.56rem;
  margin: 0.5rem 0 0 0;
}

.brand-about6 .wrapper .right {
  width: 33.5%;
}

.office2 .contentbox .wrap {
  display: flex;
  height: 100%;
}
/* .office2 .contentbox .wrap img {
        width: 48%;
    } */

.brand-about7 {
  margin: 0.5rem 0;
}

.brand-about7 .cen1 img:first-child {
  max-width: 100%;
}

.brand-about7 .cen2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.5rem 0;
}

.brand-about7 .cen2 p {
  width: 76.1%;
  font-size: 0.2rem;
  color: #999;
}

.brand-about7 .cen3 img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.office2 .showsign {
  width: 100%;
  overflow: hidden;
}

.office2 .showsign .signcate {
  height: 1.2rem;
  display: flex;
  width: 100%;
  background: #000;
}

.office2 .showsign .signcate .item {
  flex-grow: 1;
  line-height: 1.2rem;
  color: #fff;
  text-align: center;
  font-size: 0.22rem;
}

.office2 .showsign .signcate .active {
  background: rgba(255, 255, 255, 0.2);
}

.office2 .showsign .swiper-slide img {
  margin: 0;
}

.office2 .showsign .swiper-slide .txt {
  position: absolute;
  top: 10%;
  left: 20%;
  width: 4rem;
  height: 1.36rem;
  line-height: 1.36rem;
  padding: 0.2rem;
  background: rgba(255, 255, 255, 0.2);
}

.office2 .showsign .swiper-slide p {
  color: #fff;
}

.brand-about8 .wrapper .left {
  width: 57.8%;
}

.brand-about8 .wrapper .left img {
  max-width: 100%;
  margin: 0.2rem 0 0 0;
}

.brand-about8 .wrapper .right {
  width: 37.5%;
}

.brand-about8 .wrapper .right img {
  max-width: 100%;
}

.brand-about8 .wrapper .right img:nth-child(2) {
  clear: both;
}

.brand-about8 .wrapper .right .x-logo {
  margin: 0 0 0.5rem 0;
}

.brand-about8 .wrapper .right p {
  font-size: 0.2rem;
  color: #999;
  margin: 0.2rem 0;
  line-height: 0.56rem;
}

.brand-about9 .wrapper .left {
  width: 39.9%;
}

.brand-about9 .wrapper .left p {
  width: 410px;
  padding: 0.5rem 0 0 2.23rem;
  font-size: 0.2rem;
  color: #999;
  margin: 0.2rem 0;
  line-height: 0.56rem;
}

.brand-about9 .wrapper .right {
  width: 55.6%;
}

.brand-about9 .wrapper .right .x-logo {
  margin: 0 0 4rem 0;
}

.brand-about10 {
  position: relative;
}

.brand-about10 .x-logo {
  position: absolute;
  right: 0.2rem;
  top: 0;
}

.brand-about10 img:first-child {
  display: block;
  width: 7.4rem;
  margin: 0 auto;
}

.brand-about10 .wrapper .left {
  width: 31.3%;
}

.brand-about10 .wrapper .left img {
  max-width: 100%;
}

.brand-about10 .wrapper .right {
  width: 61.5%;
}

.brand-about10 .wrapper .right .wrap {
  display: flex;
}

.brand-about10 .wrapper .right .wrap .right-b {
  text-align: left;
}

.brand-about10 .wrapper .right .wrap .right-b img {
  width: 1.64rem;
  display: inline;
  margin: 0 0 0.2rem 0;
}

.brand-about10 .wrapper .right .wrap .right-b p {
  font-size: 0.2rem;
  color: #999;
  margin: 0.2rem 0.3rem 0 0;
  line-height: 0.56rem;
  max-width: 410px;
}

.brand-about11 {
  margin: 0.8rem 0;
}

.brand-about11 img:first-child {
  max-width: 100%;
}

.brand-about11 .wrapper .left {
  width: 63.5%;
  text-align: center;
}

.brand-about11 .wrapper .right {
  width: 35.8%;
}

.brand-about11 .wrapper .right p {
  font-size: 0.2rem;
  color: #999;
  margin: 0.2rem 0.3rem 0 0;
  line-height: 0.56rem;
}

.brand-about11 .wrapper .right .right-b img {
  margin: 0.8rem 0 0.2rem;
}

.brand-about12 img:first-child {
  max-width: 100%;
}

.brand-about12 .wrapper .left p {
  width: 410px;
  font-size: 0.2rem;
  color: #999;
  margin: 0.2rem 0.3rem 0 2.18rem;
  line-height: 0.56rem;
}

.brand-about12 .wrapper .right {
  width: 55.6%;
}

.brand-about12 .wrapper .right .right-b {
  margin: -2rem 0 0 0;
}

.pagemode .container .main-content {
  width: 60.6%;
  overflow-x: hidden;
  margin: 0 3% 0 0;
  height: 940px;
  overflow-y: scroll;
}

.pagemode .container .bigpic {
  max-width: 100%;
}

.pagemode .container .name {
  font-size: 0.3rem;
  color: #999;
  font-weight: 300;
  margin: 0.1rem 0;
}

.pagemode .container .cont {
  font-size: 0.2rem;
  color: #999;
  line-height: 0.46rem;
}

.pagemode .container .line {
  display: block;
  height: 2px;
  width: 100%;
  margin: 0.5rem auto;
  background: #c4c4c4;
}

.pagemode .container {
  display: flex;
  padding: 0.5rem 0;
}

.pagemode .container .sidebar video {
  max-width: 100%;
  display: block;
  margin: 0.2rem auto;
  height: 450px;
  background: #000;
}

.pagemode .container .sidebar img {
  max-width: 100%;
  display: block;
  margin: 0.2rem auto;
}

.pagemode .container .sidebar .item .namebox {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}

.pagemode .container .sidebar .item .namebox .name {
  font-size: calc(0.5vw + 8px);
}

.pagemode .container .sidebar .item .namebox .line {
  width: 61%;
  margin: 0 0.1rem;
  background: #efefef;
}

.pagemode .container .sidebar .item .namebox .trangle {
  width: 0;
  height: 0;
  border: 8px solid;
  border-color: transparent transparent #efefef;
}

.brand-about13 .titlepic {
  display: block;
}

.brand-about13 .wrapper .left img {
  margin: 0.2rem 0;
}

.brand-about13 .wrapper .left p {
  font-size: 0.16rem;
  color: #999;
  margin: 0.2rem 0.3rem 0 0;
  line-height: 0.35rem;
}

.brand-about14 .titlepic {
  float: right;
  padding: 0 0.55rem 0 0;
}

.brand-about14 .wrapper {
  clear: both;
  padding: 0.1rem 0;
}

.brand-about14 .wrapper .left {
  width: 55.7%;
}

.brand-about14 .wrapper .left img {
  max-width: 100%;
}

.brand-about14 .wrapper .right {
  width: 34.5%;
  margin: 0 0.2rem 0 0;
}

.brand-about14 .wrapper .right img {
  max-width: 100%;
}

.brand-about14 .wrapper .right p {
  font-size: 0.16rem;
  color: #999;
  margin: 0.2rem 0 0 0;
  line-height: 0.26rem;
}

.brand-about15 .wrapper {
  padding: 0.1rem 0;
}

.brand-about15 .wrapper .left {
  width: 31.25%;
}

.brand-about15 .wrapper .left img {
  margin: 0.4rem 0px;
  max-width: 100%;
}

.brand-about15 .wrapper .left p {
  font-size: 0.16rem;
  color: #999;
  margin: 0.2rem 0 0 0;
  line-height: 0.26rem;
}

.brand-about15 .wrapper .right {
  width: 61.3%;
}

.brand-about16 .titlepic {
  max-width: 100%;
  float: right;
  margin: 0 0.3rem 0 0;
}

.brand-about16 .wrapper {
  clear: both;
  padding: 0.1rem 0;
}

.brand-about16 .wrapper .left {
  width: 60%;
}

.brand-about16 .wrapper .left p {
  font-size: 0.16rem;
  color: #999;
  margin: 0.2rem 0 0 0;
  line-height: 0.26rem;
}

.brand-about16 .wrapper .right {
  width: 34%;
}

.brand-about16 .btmpic {
  max-width: 100%;
  display: block;
  margin: 0.2rem auto;
}

.brand-about17 .wrapper {
  padding: 0.1rem 0;
}

.brand-about17 .wrapper .left p {
  font-size: 0.16rem;
  color: #999;
  margin: 0.2rem 0 0 0;
  line-height: 0.46rem;
}

.brand-about17 .wrapper .right {
  margin: -1rem 0 0 0;
}
/* 装配式智造 */

.brand-about18 .wrapper {
  flex-wrap: wrap;
}

.brand-about18 .wrapper .left {
  position: relative;
  max-width: 48%;
  width: 42vw;
}

.brand-about18 .wrapper .left .ent1 {
  width: 37vw;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
}

.brand-about18 .wrapper .left .publicswiper {
  position: absolute;
  left: 10vw;
  top: 18%;
  z-index: 0;
  width: 42vw;
}

.brand-about18 .wrapper .right {
  max-width: 30vw;
}

.brand-about18 .wrapper .right p {
  font-size: 1.08vw;
  color: #999999;
  font-weight: 300;
  line-height: 2.85vw;
  margin: 20px 0;
}

.brand-about18 .wrapper .right .cnt1 {
  padding: 4.5vw 0 0 0;
  max-width: 100%;
}

.brand-about19 .wrapper {
  clear: both;
}

.brand-about19 .wrapper .left {
  position: relative;
  margin: -220px 0 0 0;
  width: 48%;
}

.brand-about19 .wrapper .left img {
  max-width: 100%;
}

.brand-about19 .wrapper .right {
  padding: 0;
  width: 53%;
}

.brand-about19 .wrapper .right .title {
  font-size: 2.08vw;
  color: #333;
}

.brand-about19 .wrapper .right .list {
  padding: 60px 0 0 90px;
}

.brand-about19 .wrapper .right .list .item {
  display: flex;
  margin: 0 0 0.5rem 0;
  animation-name: fadeInRight;
  visibility: visible;
}

.brand-about19 .wrapper .right .list .item img {
  margin: 0 0.3rem 0 0;
}

.brand-about19 .wrapper .right .list .item .name {
  font-size: 1.25vw;
  font-weight: 400;
  color: #666;
}

.brand-about19 .wrapper .right .list .item .cont {
  font-size: 1.08vw;
  font-weight: 300;
  color: #999;
}

.brand-about20 .wrapper .right {
  text-align: right;
  width: 60%;
}

.brand-about20 .wrapper .right img {
  max-width: 100%;
}

.brand-about20 .wrapper .right img:first-child {
  margin: 0 0 2.6rem 0;
}

.brand-about20 .wrapper .left {
  width: 40%;
}

.brand-about20 .wrapper .left img {
  max-width: 100%;
}

.brand-about20 .wrapper .left p {
  font-size: 1.08vw;
  color: #999;
  margin: 20px 0 20px 9.8vw;
  width: 23vw;
  font-weight: 300;
  animation-name: fadeInLeft;
  visibility: visible;
  line-height: 2vw;
}

.brand-about20 .wrapper .left .more {
  margin: 20px 0 20px 9.8vw;
  width: 23vw;
}

.brand-about21 .wrapper .left img {
  width: 27.3vw;
  padding: 241px 69px 0px 0px;
}

.brand-baout21 .wrapper .center {
  width: 23.5vw;
}

.brand-about21 .wrapper {
  padding: 0;
}

.brand-about21 .wrapper .center .name {
  font-size: 1.25vw;
  font-weight: 400;
  color: #999;
  margin: 2vw 0 0.5vw 0;
  animation-name: fadeInLeft;
  visibility: visible;
}

.brand-about21 .wrapper .center .cont {
  font-size: 1.08vw;
  font-weight: 300;
  color: #999;
  width: 23vw;
  animation-name: fadeInLeft;
  visibility: visible;
}

.brand-about21 .wrapper .right .x-logo {
  margin: 0 0 3.2rem 0;
}

.brand-about .wrapper .center .ent4 {
  width: 27.6vw;
}

.brand-about21 .wrapper .right img:last-child {
  width: 27.9vw;
}

.pagemode .container .sidebar {
  width: 26.2%;
  max-width: 440px;
  max-height: 940px;
  overflow-x: hidden;
  overflow-y: scroll;
  border-left: 2px solid #c4c4c4;
  padding: 0 0 0 3%;
}
/* 睿谷团队 */

.team {
  height: 940px;
  background: url(../images/picture/team/bg.png) no-repeat center;
  background-size: contain;
  background-position-y: top;
}

.team .container .team-type {
  display: flex;
  justify-content: center;
  font-size: 0.24rem;
  font-weight: bold;
  padding: 1.3rem 0 0 0;
}

.team .container .team-type .item {
  margin: 0 1rem;
  user-select: none;
  position: relative;
  text-align: center;
}

.team .container .team-type .subitem {
  width: 240px;
  background: rgba(141, 113, 91, 0.8);
  overflow: hidden;
  transition: all 0.4s;
  position: absolute;
  left: -66px;
  display: none;
}

.team .container .team-type .item:hover .subitem {
  width: 240px;
  transition: all 0.4s;
  display: block;
  animation-name: fadeInDown;
  visibility: visible;
  z-index: 99;
}

.team .container .team-type .subitem a {
  color: #333;
  width: 100%;
  display: block;
  padding: 0.15rem 0;
  color: #fff;
  font-size: 0.18rem;
  font-weight: 400;
}

.team .container .team-type .subitem a:hover {
  background: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(141, 113, 91, 0.8);
  color: #000;
}

.team .container .swiper {
  width: 430px;
  margin: 0 0 0 38%;
  display: block;
  height: 430px;
}

.wapslider {
  display: none;
}

.publicswiper .wrap {
  position: relative;
}
/* ------------------------------------------媒介查询---------------------------------------------- */

@media screen and (max-width: 1366px) {
  .talent .container .funcbox {
    width: 100%;
  }
  .talent .container .funcbox .item1 {
    /* bottom: 0.4rem;
            left: -0.1rem; */
  }
  .talent .container .funcbox .item1 .txtbox {
    top: -2rem;
    left: 0;
    padding: 0.24rem 0;
  }
  .talent .container .funcbox .item1 .txtbox span {
    left: 9%;
    bottom: -0.18rem;
  }
  .talent .container .funcbox .item5 {
    /* bottom: 0.4rem;
            right: -0.1rem; */
  }
  .talent .container .funcbox .item5 .txtbox {
    top: -2rem;
    right: 0;
    padding: 0.24rem 0;
    left: auto;
  }
  .talent .container .funcbox .item5 .txtbox span {
    left: 87%;
  }
  .index-about .container .about4 .wrapper .center {
    padding: 0.2rem 0 0 0;
    transition: all 0.4s;
  }
  .team .container .team-type .item {
    margin: 0 0.5rem;
  }
  .news-slider .swiper-slide-active {
    width: 230px !important;
    background-size: contain;
  }
  .news__img {
    margin-top: 10px;
  }
  .news-slider__wrp {
    height: 350px;
  }
  .index-about .container .about3 .left .cont {
    padding: 0;
  }
  .index-about .container .about3 .left .more {
    width: 100%;
    padding: 0;
  }
  .index-about .container .about4 .wrapper .left img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }
  .index-about .container .about4 .wrapper .left .cont {
    font-size: 0.16rem;
    line-height: 0.36rem;
  }
  .index-about .container .about4 .wrapper .center .cont {
    font-size: 0.16rem;
    line-height: 0.36rem;
  }
  .index-about .container .about2 .left .titlepic02 {
    max-width: 6rem;
  }
  .index-about .container .about2 .right .aboutpic2 {
    max-width: 100%;
  }
  .culture .container .wrapper .item {
    font-size: 0.24rem;
  }
}

@media screen and (max-width: 1280px) {
  .business .info .phonepic {
    left: 13%;
  }
  .matrix .container .wrapper {
    flex-direction: row;
    /* height: fit-content; */
    align-items: center;
    flex-wrap: wrap;
  }
  .matrix .container .wrapper .rightside {
    margin: 50px 0;
    /* display: none; */
  }
  .index-about .container .about1 .txtbox .title {
    font-size: 0.3rem;
  }
  .index-about .container .about1 .txtbox .cont {
    font-size: 0.16rem;
    line-height: 0.36rem;
  }
  .index-about .container .about1 .txtbox .desc {
    font-size: 0.16rem;
  }
  .bannerbox .swiper {
    height: fit-content;
  }
  .index-about .container .about3 .left .cont {
    width: 79%;
  }
}

@media screen and (max-width: 1024px) {
  .business .info .mode p {
    font-size: 0.12rem;
  }
  .business .info .phonepic {
    left: 3%;
    width: 215px;
    bottom: 0;
    top: auto;
}
  .brand-about19 .wrapper .left {
    position: relative;
    margin: -70px 0 0 0;
    width: 48%;
  }
  #showorgan {
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }
  .organiz .container .videopage {
    height: 600px;
  }
  .culture .container .wrapper .item {
    margin: 0 0.5rem;
  }
  .culture .swiper {
    width: 100%;
  }
  .culture .container .mobilepic {
    width: 100%;
  }
  .culture .container .wrapper .item {
    font-size: 0.22rem;
  }
  .culture .container .showbox {
    display: none;
  }
  .culture .container .mobilepic {
    display: block;
  }
  .talent .container .funcbox .txtbox p {
    font-size: calc(1vw + 8px);
  }
  .talent .container .funcbox .wraplist {
    flex-wrap: wrap;
  }
  .talent .container .funcbox .item {
    width: calc(100% / 2 - 20px);
  }
  .talent .container .funcbox {
    width: 100%;
    margin: 210px auto 0;
  }
  .team .item a {
    font-size: 0.28rem;
  }
  .pcslider {
    display: none;
  }
  .matrix .container .wrapper .rightside {
    width: 96%;
    margin: 50px 0;
    padding: 4% 2%;
    height: 520px;
    left: 0;
  }
  .wapslider {
    display: block;
    overflow: hidden;
    padding: 0.9rem 0;
  }
  .index-about .container .about3 .right img {
    padding: 0.5rem 0 0 0;
  }
  .index-about .container .about4 .wrapper {
    flex-direction: column;
  }
  .index-about .container .about4 .wrapper .left {
    width: 100%;
  }
  .index-about .container .about4 .wrapper .center {
    width: 100%;
  }
  .index-about .container .about4 .wrapper .right {
    width: 100%;
  }
  .index-about .container .about4 .wrapper .right img {
    display: block;
    margin: 0 auto;
  }
  .index-about .container .about3 .left .titlepic {
    max-width: 6rem;
  }
  .index-about .container .about2 .right .cont {
    font-size: 0.16rem;
  }
  .index-about .container .about3 {
    flex-wrap: wrap;
    height: inherit;
  }
  .index-about .container .about3 .left {
    width: 100%;
  }
  .index-about .container .about3 .right {
    width: 100%;
  }
  footer .container .wrapper .center .btm-nav {
    display: none;
  }
  .index-about .container .about1 .titlepic {
    width: 44.4%;
  }
  .index-about .container .about2 .left {
    width: 100%;
  }
  footer .container .wrapper .center .btm-info .citypic {
    display: none;
  }
  .index-about .container .aboutbox {
    height: inherit;
  }
  .index-about .container .about2 .right {
    width: 100%;
  }
  .index-about .container .about2 .right .aboutpic2 {
    display: block;
    margin: 0 auto;
    max-width: 100%;
  }
  .index-about .container .about1 .txtbox {
    width: 100%;
    padding: 0.4rem 0 0 0;
    float: inherit;
  }
  .index-about .container .aboutbox .pic1 {
    left: 0;
    top: 0px;
    transition: all 0.4s;
    position: initial;
    width: 100%;
    z-index: 1;
    padding: 0.5rem 0 0 0;
  }
  .videobox {
    display: none;
  }
  .bannerbox .swiper {
    height: 8.6rem;
  }
  .sub-bannerbox .swiper {
    height: auto;
  }
  .banner {
    overflow: hidden;
    height: 8.6rem;
  }
  .banner .linebox {
    width: 100%;
    overflow: hidden;
    float: none;
    height: 8.6rem;
  }
  .banner .line1 {
    top: 0;
    right: 0%;
    z-index: 1;
    opacity: 0.2;
    width: 5rem;
    height: 6.7rem;
  }
  .banner .line2 {
    z-index: 1;
    opacity: 0.2;
    top: -1%;
    /* top: -500px; */
    right: 39%;
    width: 3.7rem;
    height: 6.6rem;
  }
  .banner .line3 {
    z-index: 1;
    opacity: 0.2;
    top: 14%;
    right: 64%;
    width: 2.5rem;
    height: 4.6rem;
  }
  .banner .title2 {
    width: 3.6rem;
    height: 0.82rem;
    margin: 0 0 0 -1.8rem;
    top: 83%;
    left: 50%;
  }
  .banner .title3 {
    left: 5%;
    top: 83%;
    width: 0.62rem;
    height: 0.91rem;
  }
  .banner .net {
    width: 4.5rem;
    height: 4rem;
  }
  .banner .title1 {
    display: none;
  }
  .banner2 .title1 {
    width: 3.2rem;
    left: 36%;
    top: 23%;
  }
  .banner2 .title2 {
    left: 41%;
    width: 2.2rem;
    top: 42%;
    filter: drop-shadow(2px 4px 6px black);
  }
  .banner2 .lightbox {
    width: 8.6rem;
    height: 7.6rem;
  }
  .banner2 .line2 {
    top: 10%;
    left: 9%;
    width: 5rem;
  }
  .banner2 .line1 {
    left: -11%;
    top: -53%;
    width: 7.2rem;
  }
  .banner2 .title3 {
    left: 61%;
    top: 32%;
    display: none;
  }
  .banner2 .earth {
    width: 3.8rem;
  }
  .banner2 .manbox {
    width: 100%;
  }
  .banner2 .cao1 {
    width: 3.8rem;
  }
  .banner2 .man {
    left: 31%;
    bottom: -16%;
    width: 2.9rem;
  }
  .banner2 .cao2 {
    bottom: -5%;
    left: 53%;
    width: 1.8rem;
  }
  .banner2 .cao3 {
    left: 54%;
    width: 3.81rem;
  }
  @keyframes downup2 {
    from {
      bottom: -1%;
    }
    to {
      bottom: -5%;
    }
  }
  .banner2 {
    height: 8.6rem;
  }
  .banner3 .title1 {
    display: none;
  }
  .banner3 {
    min-width: 100%;
  }
  .banner3 .door {
    right: 2%;
    top: 2%;
    width: 2.6rem;
    height: 6.5rem;
  }
  .banner3 .line1 {
    width: 10rem;
    height: 5.8rem;
    right: 4%;
    top: 6%;
  }
  .banner3 .floor {
    width: 10.7rem;
    height: 2.8rem;
    right: 4%;
    bottom: 27.5%;
  }
  .banner3 .picbox {
    width: 6.2rem;
    height: 8.6rem;
    position: absolute;
    right: 0%;
    bottom: 0;
  }
  .banner3 .woman {
    right: 0;
    bottom: 30%;
    z-index: 2;
    width: 5.7rem;
    height: 4rem;
  }
  .banner3 .title2 {
    left: 5%;
    top: 22%;
    width: 2.8rem;
  }
  .banner3 .title3 {
    display: none;
  }
  .banner3 {
    height: 8.6rem;
  }
  footer .container .wrapper {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 640px) {
  .brand-about21 .wrapper .right .x-logo {
    display: none;
  }
  .brand-about21 .wrapper .right img:last-child {
    width: auto;
    max-width: 100%;
    margin: 0.3rem 0;
  }
  .brand-about21 .wrapper .center .cont {
    font-size: 0.22rem;
    width: 100%;
  }
  .brand-about21 .wrapper .center .name {
    font-size: 0.3rem;
    margin: 0.4rem 0 0 0;
  }
  .brand-about .wrapper .center .ent4 {
    width: auto;
    max-width: 78%;
    margin: 0.3rem 0;
  }
  .brand-about21 .wrapper .left img {
    width: 100%;
    padding: 0;
  }
  .brand-about20 .wrapper {
    padding: 0.2rem 0;
  }
  .brand-about20 .wrapper .right img:first-child {
    margin: 0 0 0.3rem 0;
  }
  .brand-about20 .wrapper .right {
    text-align: right;
    width: 100%;
  }
  .brand-about20 .wrapper .left .more {
    margin: 20px 0 20px 187px;
    width: 47vw;
  }
  .brand-about20 .wrapper .left p {
    font-size: 0.22rem;
    color: #999;
    margin: 20px 0 20px 30.8vw;
    width: 47vw;
    font-weight: 300;
    animation-name: fadeInLeft;
    visibility: visible;
    line-height: 0.32rem;
  }
  .brand-about20 .wrapper .left {
    width: 100%;
  }
  .brand-about19 .wrapper {
    padding: 0.2rem 0;
  }
  .brand-about19 .wrapper .right .list .item img {
    margin: 0 0.3rem 0 0;
    width: 1.3rem;
  }
  .brand-about19 .wrapper .right .list .item .cont {
    font-size: 0.22rem;
    font-weight: 300;
    color: #999;
  }
  .brand-about19 .wrapper .right .list .item .name {
    font-size: 0.28rem;
    font-weight: 400;
    color: #666;
  }
  .brand-about19 .wrapper .right .list {
    padding: 0;
  }
  .brand-about19 .wrapper .right .title {
    font-size: 0.4rem;
    color: #333;
    margin: 0.3rem 0;
  }
  .brand-about19 .wrapper .right {
    padding: 0;
    width: 100%;
  }
  .brand-about19 .wrapper .left {
    position: relative;
    margin: 10px 0 0 0;
    width: 100%;
  }
  .brand-about19 .wrapper .left img:first-child {
    max-width: 78%;
  }
  .brand-about18 .wrapper .right .cnt1 {
    padding: 4.5vw 0 0 0;
    max-width: 42%;
  }
  .brand-about18 .wrapper {
    padding: 0.2rem 0;
  }
  .brand-about18 .wrapper .right p {
    font-size: 0.22rem;
    color: #999999;
    font-weight: 300;
    line-height: 0.5rem;
    margin: 20px 0;
  }
  .brand-about18 .wrapper .right {
    max-width: 100%;
  }
  .brand-about18 .wrapper .left img:first-child {
    width: 48%;
    position: relative;
  }
  .brand-about18 .wrapper .left {
    position: relative;
    max-width: 100%;
  }
  .brand-about18 .wrapper .left img:last-child {
    width: 100%;
    margin: 0.2rem 0;
    position: relative;
    top: auto;
    left: 0;
  }
  .matrix .container .wrapper .rightside .title {
    font-size: 0.32rem;
    padding: 0.2rem;
  }
  .matrix .container .wrapper .rightside .cont {
    font-size: 0.22rem;
    color: #fff;
    line-height: 0.36rem;
    margin: 0.3rem 0;
  }
  .matrix .container .wrapper .leftside {
    height: 380px;
  }
  .rotation3D {
    width: 100%;
    height: fit-content;
  }
  .container {
    width: 96%;
    padding: 0 2%;
  }
  .banner .logo {
    top: 20px;
    left: 20px;
  }
  .banner1 .logo {
    top: 20px;
    left: 20px;
    width: 0.8rem;
  }
  .banner2 .logo {
    top: 20px;
    left: 20px;
    width: 0.8rem;
  }
  .banner3 .logo {
    top: 20px;
    left: 20px;
    width: 0.8rem;
  }
  .banner4 .logo {
    top: 20px;
    left: 20px;
    width: 0.8rem;
  }
  .banner3 .line1 {
    width: 10rem;
    height: 5.8rem;
    right: 4%;
    top: 9%;
  }
  .banner3 .floor {
    width: 10.7rem;
    height: 2.8rem;
    right: 3%;
    top: 73.8%;
  }
  .banner3 .pic1 {
    right: 16%;
    bottom: 5%;
    width: 2.8rem;
  }
  .banner3 .pic2 {
    right: 43%;
    top: 30%;
    width: 0.64rem;
  }
  .banner3 .pic3 {
    right: 58%;
    top: 28%;
    width: 0.1rem;
  }
  .banner3 .pic4 {
    right: 68%;
    bottom: 53%;
    width: 0.36rem;
  }
  .banner3 .pic5 {
    right: 73%;
    bottom: 11%;
    width: 2rem;
  }
  .banner3 .pic6 {
    right: 97%;
    bottom: 25%;
    width: 0.1rem;
  }
  .banner3 .woman {
    right: 21%;
    bottom: 9%;
    z-index: 2;
    width: 3.7rem;
    height: 3rem;
  }
  .banner3 .shadowicon {
    right: 34%;
    bottom: 0%;
    z-index: 1;
    width: 3.4rem;
    height: 1.3rem;
  }
  .banner3 .bg {
    max-height: 100%;
  }
  .banner3 .title4 {
    right: 1%;
    bottom: 0;
  }
  @keyframes line {
    from {
      width: 10rem;
      opacity: 1;
    }
    to {
      width: 8rem;
      opacity: 0.1;
    }
  }
  @keyframes picmove1 {
    from {
      bottom: 1%;
    }
    to {
      bottom: 5%;
    }
  }
  @keyframes picmove2 {
    from {
      top: 26%;
    }
    to {
      top: 30%;
    }
  }
  @keyframes picmove3 {
    from {
      top: 20%;
    }
    to {
      top: 28%;
    }
  }
  @keyframes picmove4 {
    from {
      bottom: 55%;
    }
    to {
      bottom: 53%;
    }
  }
  @keyframes picmove5 {
    from {
      bottom: 5%;
    }
    to {
      bottom: 11%;
    }
  }
  @keyframes picmove6 {
    from {
      transform: rotate3d(0, 1, 0, 0deg);
    }
    to {
      transform: rotate3d(0, 1, 0, 180deg);
    }
  }
  .banner4 .net {
    top: 10%;
    left: 0px;
    width: 7rem;
  }
  .banner4 .linebox {
    width: 98%;
    height: 8.4rem;
    top: 0;
    left: 2%;
  }
  .banner4 .line1 {
    left: 0;
    top: 14%;
    width: 99%;
    height: 7.5rem;
  }
  .banner4 {
    position: relative;
    min-width: 100%;
    height: 8.6rem;
    overflow: hidden;
  }
  .banner4 .title1 {
    display: none;
  }
  .banner4 .title2 {
    width: 2.87rem;
    top: 23%;
    right: 24%;
    filter: drop-shadow(2px 4px 6px black);
  }
  .banner4 .title3 {
    display: none;
  }
  .banner4 .line2 {
    top: 10%;
    left: 0px;
    width: 100%;
  }
  .banner4 .line3 {
    left: 31%;
    top: 17%;
    width: 2.7rem;
    height: 6.6rem;
  }
  .banner4 .amanbox {
    width: 100%;
    height: 8.6rem;
    bottom: 0;
  }
  @keyframes line1 {
    from {
      height: 7.5rem;
      opacity: 1;
    }
    to {
      height: 3.5rem;
      opacity: 0.1;
    }
  }
  .banner4 .man {
    left: 12%;
    top: 39%;
    width: 4.3rem;
  }
  .banner4 .icon1 {
    left: 18%;
    top: 30%;
    width: 0.6rem;
  }
  .banner4 .icon2 {
    left: 18%;
    top: 46%;
    width: 0.35rem;
  }
  .banner4 .icon3 {
    left: 14%;
    top: 69%;
    width: 0.28rem;
  }
  .banner4 .icon4 {
    left: 5%;
    top: 82%;
    width: 1.1rem;
  }
  .banner4 .icon5 {
    left: 81%;
    top: 34%;
    width: 0.35rem;
  }
  .banner4 .icon6 {
    left: 84%;
    top: 51%;
    width: 0.35rem;
  }
  .banner4 .icon7 {
    left: 77%;
    top: 59%;
    width: 0.31rem;
  }
  .banner4 .icon8 {
    left: 81%;
    top: 73%;
    width: 0.3rem;
  }
  .banner4 .icon9 {
    left: 80%;
    top: 90%;
    width: 0.26rem;
  }
  @keyframes iconmove {
    from {
      top: 25%;
    }
    to {
      top: 30%;
    }
  }
  @keyframes iconmove2 {
    from {
      transform: rotate3d(0, 1, 0, 0deg);
      top: 40%;
    }
    to {
      transform: rotate3d(0, 1, 0, 90deg);
      top: 46%;
    }
  }
  @keyframes iconmove3 {
    from {
      top: 60%;
    }
    to {
      top: 69%;
    }
  }
  @keyframes iconmove4 {
    from {
      /* transform: rotate3d(0, 1, 0, 0deg); */
      top: 75%;
    }
    to {
      transform: rotate3d(0, 1, 0, 60deg);
      top: 82%;
    }
  }
  @keyframes iconmove5 {
    from {
      top: 28%;
    }
    to {
      top: 34%;
    }
  }
  @keyframes iconmove6 {
    from {
      transform: rotate3d(0, 1, 0, 0deg);
      top: 44%;
    }
    to {
      transform: rotate3d(0, 1, 0, 90deg);
      top: 51%;
    }
  }
  @keyframes iconmove7 {
    from {
      top: 49%;
    }
    to {
      top: 59%;
    }
  }
  @keyframes iconmove8 {
    from {
      top: 65%;
    }
    to {
      top: 73%;
    }
  }
  @keyframes iconmove9 {
    from {
      top: 86%;
    }
    to {
      top: 90%;
    }
  }
  @keyframes picboxdown {
    from {
      top: -8.6rem;
    }
    to {
      top: 0;
    }
  }
  footer .container .wrapper {
    flex-direction: column;
    padding: 36px 0 0 0;
  }
  footer .container .wrapper .center .btm-nav {
    display: none;
  }
  footer .container .wrapper .center .btm-info img {
    display: none;
  }
  footer .container .wrapper .left {
    text-align: center;
  }
  footer .container .wrapper .center .btm-info {
    text-align: center;
  }
  footer .container .wrapper .right {
    display: none;
  }
  .index-about .container .aboutbox .pic1 {
    left: 0;
    top: 0px;
    transition: all 0.4s;
    position: initial;
    width: 100%;
    z-index: 1;
    padding: 1.5rem 0 0 0;
  }
  .index-about .container .about1 .txtbox {
    width: 100%;
    padding: 0.4rem 0 0 0;
    float: inherit;
  }
  .index-about .container .about2 .left {
    width: 100%;
  }
  .index-about .container .about2 .left img:nth-child(1) {
    max-width: 70%;
  }
  .index-about .container .about2 .right {
    width: 100%;
  }
  .index-about .container .about2 .right .aboutpic2 {
    display: block;
    margin: 0 auto;
    max-width: 100%;
  }
  .index-about .container .aboutbox {
    height: inherit;
  }
  .index-about .container .aboutpic {
    margin: 0.4rem 0;
  }
  .index-about .container .about2 .right .cont {
    margin: 0.4rem 0 0.4rem 0;
    font-size: 0.22rem;
  }
  .index-about .container .about2 .right .more {
    justify-content: flex-start;
  }
  .index-about .container .about2 .right .more span {
    margin: 0 10px 0 0;
  }
  .index-about .container .about1 .txtbox .title {
    font-size: 0.48rem;
  }
  .index-about .container .about4 .wrapper {
    flex-wrap: wrap;
  }
  .index-about .container .about4 .wrapper .left {
    width: 100%;
  }
  .index-about .container .about4 .wrapper .left img {
    max-width: 100%;
  }
  .index-about .container .about4 .wrapper .center {
    width: 100%;
    padding: 0.2rem 0;
  }
  .index-about .container .about4 .wrapper .right img {
    max-width: 100%;
  }
  .index-about .container .about4 .wrapper .right {
    width: 100%;
  }
  .index-about .container .about3 {
    flex-wrap: wrap;
  }
  .index-about .container .about3 .right img {
    max-width: 100%;
    padding: 0.5rem 0 0 0;
  }
  .index-about .container .about3 .left {
    width: 100%;
  }
  .index-about .container .about3 .left img {
    max-width: 80%;
  }
  .index-about .container .about3 .left .cont {
    padding: 0;
    width: 100%;
    font-size: 0.22rem;
  }
  .index-about .container .aboutbox .more {
    display: flex;
    width: 100% !important;
    padding: 0 !important;
    justify-content: flex-start !important;
    align-items: center;
  }
  .index-about .container .aboutbox .more span {
    margin: 0 0.1rem 0 0;
    font-weight: 300;
  }
  .index-about .container .aboutbox .more img {
    width: 0.53rem !important;
  }
  .index-about .container .about4 .titlepic4 {
    display: block;
    margin: 0.2rem 0;
    width: 79%;
  }
  .index-about .container .about4 .title {
    text-align: left;
  }
  .index-about .container .about3 .left .title {
    padding: 0 0 0 1.5rem;
  }
  .newscate .container .wrapper .item {
    margin: 0 0.41rem;
  }
  .newscate .container .wrapper .item span {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .newscate .container .wrapper .item span img {
    width: 0.3rem;
    margin: 0 0.08rem 0 0;
  }
  .newslist .newsitem {
    flex-direction: column;
  }
  .newslist .newsitem .picbox {
    width: 100%;
    height: auto;
  }
  .newslist .newsitem .txtbox {
    width: 100%;
    height: 2.5rem;
    padding: 0.2rem 0;
  }
  .newslist .newsitem .txtbox .more span {
    font-size: 0.24rem;
  }
  .container .title2mode::before {
    content: "";
    background: url(../images/picture/news/leftline.png) no-repeat center;
    left: -115%;
    top: 0.3rem;
    width: 4.9rem;
    height: 0.68rem;
    position: absolute;
    background-position-x: right;
    background-position-y: top;
  }
  .container .title2mode::after {
    content: "";
    background: url(../images/picture/news/rightline.png) no-repeat center;
    right: -115%;
    top: 0.3rem;
    width: 4.9rem;
    height: 0.68rem;
    position: absolute;
    background-position-x: left;
    background-position-y: top;
  }
  nav ul li .subnav {
    max-height: 9rem;
  }
  .business .info .phonepic {
    display: none;
  }
  .business .info .mode p {
    max-width: 80%;
  }
  .recruit .container .joblist .jobitem {
    width: 98%;
    height: 3.25rem;
    background: url(../images/picture/recruit/bg1.jpg) no-repeat center;
    margin: 0 1% 2% 1%;
    box-shadow: 0 0 5px rgb(152 120 94 / 15%);
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: contain;
  }
  .recruit .container .joblist .jobitem:nth-child(4n) {
    margin: 0 1% 2% 1%;
  }
  .recruit .container .joblist {
    padding: 0;
  }
  .recruit .container .joblist .jobitem .name {
    font-size: 0.26rem;
    color: #000;
    margin: 0 0 0 -3rem;
  }
  .container .title2mode {
    padding: 0.35rem 0;
    font-size: 0.24rem;
  }
  .cases .container .wrapper .earth {
    width: 90%;
    display: block;
    margin: 0 auto;
  }
  #certify {
    position: relative;
    width: 5.5rem;
    margin: 0 auto;
  }
  .cases .container .wrapper {
    flex-direction: column;
  }
  #certify .swiper-slide {
    width: 5rem;
    display: block;
    margin: 0 auto;
  }
  .cases .casebox2 {
    display: block;
  }
  .cases .swiper1 {
    display: none;
  }
  .cases .swiper2 {
    margin: 0.4rem 0;
  }
  .cases .container .wrapper .casebox {
    width: 100%;
  }
  .cases .container .wrapper .casebox .swiper .item .casepic {
    height: auto;
  }
  .cases .container .wrapper .casebox .swiper .item {
    width: 100%;
    height: 5.85rem;
    position: relative;
  }
  .organiz {
    background-size: contain;
    min-height: auto;
    height: 8rem;
  }
  .organiz .container .swiper {
    width: 100%;
    padding: 2rem 0 0 0;
  }
  .organiz .container .swiper .swiper-slide img {
    max-width: 100%;
  }
  .certifi .swiper-slide {
    width: 380px;
    height: auto;
  }
  .certifi .swiper-slide img {
    max-width: 70%;
  }
  .certifi .swiper {
    padding: 2rem 0 0 1rem;
    overflow-x: hidden;
  }
  .certifi {
    height: 10rem;
  }
  .culture {
    padding: 1rem 0 1rem 0;
  }
  .culture .swiper {
    width: 100%;
  }
  .culture .swiper .swiper-slide img {
    max-width: 100%;
  }
  .culture .container .wrapper .item {
    margin: 0 0.4rem;
  }
  .culture .container .titlemode {
    width: 4.42rem;
    margin: 0.5rem auto 0;
  }
  .rotation3D .itemList .rotation3D__item .baseImg {
    transform: rotate(180deg);
  }
  .matrix .container .wrapper {
    width: 100%;
    padding: 1rem 0 0 0;
  }
  .matrix .container .wrapper .bgpic {
    width: 4.6rem;
    position: absolute;
    left: 41%;
    top: -14%;
    margin: 0 0 0 -1.7rem;
  }
  .matrix .container .wrapper {
    /* height: fit-content; */
    display: block;
  }
  .rotation3D .itemList .rotation3D__item p {
    transform: rotate(180deg);
    margin-top: -260px;
    font-size: 0.3rem;
    font-weight: bold;
  }
  .rotation3D .itemList .active .baseImg {
    transform: scale(1.1) rotate(180deg) !important;
  }
  .rotation3D__item {
    height: 0;
  }
  .rotation3D .itemList {
    margin-top: -103px;
    transform: rotate(180deg);
  }
  .matrix .swiper .swiper-slide img {
    width: 1.04rem;
    height: 1.15rem;
  }
  .matrix .swiper .swiper-slide p {
    margin: 1.5rem 0 0 0;
  }
  .matrix {
    padding: 1rem 0 0 0;
  }
  .server {
    height: auto;
    padding: 0.4rem 0;
  }
  .server .container .form {
    width: 100%;
    flex-direction: column;
    height: auto;
    padding: 0 0 0.4rem 0;
  }
  .server .container .form .demo img {
    display: block;
    max-width: 100%;
  }
  .server .container .form .formbox {
    width: auto;
    padding: 0.1rem 0.1rem 0 0.1rem;
  }
  .brand-about .wrapper {
    flex-direction: column;
  }
  .brand-about1 .wrapper .left {
    width: 100%;
  }
  .brand-about1 .wrapper .right {
    width: 100%;
  }
  .brand-about .x-logo {
    width: 1.2rem;
    float: right;
    margin: 0.2rem 0;
  }
  .brand-about2 .wrapper .left {
    width: 100%;
  }
  .brand-about2 .wrapper .left p {
    width: 100%;
  }
  .brand-about2 .wrapper .more {
    width: 100%;
  }
  .brand-about2 .wrapper .right {
    width: 100%;
  }
  .brand-about3 .txtbox {
    margin: 3rem auto;
    height: 5.2rem;
  }
  .brand-about3 .txtbox::before {
    background-size: contain;
  }
  .brand-about3 .txtbox::after {
    background-size: contain;
  }
  .brand-about3 {
    background-position-y: bottom;
    height: 1100px;
  }
  .brand-about4 .wrapper .left {
    width: 100%;
  }
  .brand-about4 .wrapper .right {
    width: 100%;
  }
  .brand-about5 .wrapper .left {
    width: 100%;
  }
  .brand-about5 .wrapper .left .wrap {
    flex-direction: column;
  }
  .brand-about5 .wrapper .left .wrap .left-a {
    width: 100%;
  }
  .brand-about5 .wrapper .left .wrap .left-b {
    width: 100%;
    /* margin: 0 0.3rem 0 0; */
  }
  .brand-about5 .wrapper .right {
    width: 100%;
  }
  .brand-about6 .wrapper .left {
    width: 100%;
  }
  .brand-about6 .wrapper .left .wrap {
    flex-direction: column;
  }
  .brand-about6 .wrapper .left .wrap .left-a {
    width: 100%;
    margin: 0.2rem 0;
  }
  .brand-about6 .wrapper .left .wrap .left-b {
    width: 100%;
  }
  .brand-about6 .wrapper .right {
    width: 100%;
  }
  .brand-about7 .cen2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    flex-direction: column;
  }
  .brand-about7 .cen2 p {
    width: 100%;
    font-size: 0.22rem;
    color: #999;
    margin: 0.2rem 0;
  }
  .office2 .showsign {
    padding: 0.2rem 0;
  }
  .brand-about8 .wrapper .left {
    width: 100%;
    margin: 0.5rem 0;
  }
  .brand-about8 .wrapper .left img {
    max-width: 100%;
    margin: 0.2rem 0;
  }
  .brand-about8 .wrapper .right {
    width: 100%;
  }
  .brand-about9 .wrapper .left {
    width: 100%;
  }
  .brand-about9 .wrapper .left img {
    max-width: 85%;
  }
  .brand-about9 .wrapper .left p {
    width: 100%;
    padding: 0.5rem 0 0 0;
  }
  .brand-about9 .wrapper .right {
    width: 100%;
  }
  .brand-about9 .wrapper .right img:last-child {
    max-width: 85%;
    margin: 0 auto;
    display: block;
  }
  .brand-about9 .wrapper .right .x-logo {
    margin: 0.2rem 0;
  }
  .brand-about10 img:first-child {
    display: block;
    width: 7.4rem;
    margin: 0 auto;
    max-width: 70%;
  }
  .brand-about10 {
    padding: 0.5rem 0;
  }
  .brand-about10 .x-logo {
    top: -0.3rem;
  }
  .brand-about10 .wrapper .left {
    width: 100%;
  }
  .brand-about10 .wrapper .right .wrap {
    flex-direction: column;
  }
  .brand-about10 .wrapper .right .wrap .right-b img {
    width: 1.64rem;
    display: inline;
    margin: 0.5rem 0 0.2rem 0;
  }
  .brand-about10 .wrapper .right {
    width: 100%;
  }
  .brand-about11 img:first-child {
    max-width: 80%;
    padding: 1.5rem 0 0 0;
  }
  .brand-about11 {
    margin: 0;
  }
  .brand-about11 .wrapper .left {
    width: 100%;
  }
  .brand-about11 .wrapper .left img {
    padding: 0;
  }
  .brand-about11 .wrapper .right {
    width: 100%;
  }
  .brand-about12 img:first-child {
    max-width: 100%;
    margin: 1rem 0 0 0;
  }
  .brand-about12 .wrapper .right .right-b {
    margin: 0;
  }
  .brand-about12 .wrapper .right {
    width: 100%;
  }
  .brand-about12 .wrapper .left p {
    margin: 0.2rem 0;
  }
  .brand-about12 .wrapper .right .right-b img {
    margin: 0;
  }
  .pagemode .container .sidebar {
    border: 0;
  }
  .pagemode .container {
    flex-direction: column;
  }
  .pagemode .container .main-content {
    width: 100%;
    overflow-x: hidden;
    height: auto;
    overflow-y: scroll;
  }
  .brand-about13 .titlepic {
    display: block;
    max-width: 70%;
  }
  .brand-about13 .right img {
    max-width: 100%;
  }
  .brand-about14 .titlepic {
    float: right;
    padding: 0 0.55rem 0 0;
    max-width: 70%;
  }
  .brand-about14 .wrapper .left {
    width: 100%;
  }
  .brand-about14 .wrapper .right {
    width: 100%;
    margin: 0.3rem 0 0 0;
  }
  .brand-about15 .titlepic {
    max-width: 80%;
  }
  .brand-about15 .wrapper .left {
    width: 100%;
  }
  .brand-about15 .wrapper .right {
    width: 100%;
  }
  .brand-about15 .wrapper .right img {
    max-width: 100%;
  }
  .brand-about16 .titlepic {
    max-width: 70%;
  }
  .brand-about16 .wrapper .right {
    width: 100%;
  }
  .brand-about16 .wrapper .left {
    width: 100%;
    margin: 0.3rem 0;
  }
  .brand-about17 .titlepic {
    display: block;
    max-width: 70%;
  }
  .brand-about17 .wrapper .right {
    margin: 0;
  }
  .brand-about17 .wrapper .right img {
    max-width: 100%;
  }
  .pagemode .container .sidebar {
    width: 100%;
    max-height: none;
    padding: 0;
  }
  .team .container .team-type .item {
    margin: 0 0.12rem;
  }
  .news-slider .swiper-slide {
    width: auto !important;
  }
  .news-slider .swiper-slide-active {
    width: auto !important;
  }
  .news-slider {
    max-width: 100%;
  }
  .wapslider .wapswiper .swiper-slide .picbox img {
    display: block;
    margin: 40px auto;
  }
  .team {
    height: fit-content;
    position: relative;
  }
  .wapslider .wapswiper .swiper-slide .news__more {
    padding: 20px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
  }
  .wapslider .swiper-pagination-bullet {
    width: 13px;
    height: 10px;
    display: inline-block;
    background: #98785e;
    opacity: 0.2;
    margin: 0 5px;
    border-radius: 20px;
    transition: opacity 0.5s, background-color 0.5s, width 0.5s;
    transition-delay: 0.5s, 0.5s, 0s;
  }
  .wapslider .swiper-pagination-bullet-active {
    opacity: 1;
    background: #98785e;
    width: 100px;
    transition-delay: 0s;
  }
  .wapslider .swiper-pagination-bullets {
    bottom: 40px;
  }
  .talent .container .funcbox .wraplist {
    flex-wrap: wrap;
  }
  .talent .container .funcbox .item {
    width: calc(100% / 1);
    margin: 0 0 20px 0;
  }
  .banner2 .cao1-1 {
    bottom: 2.35rem;
    left: 0;
    z-index: 6;
    width: 0.35rem;
    animation: downup1-1 1s ease-in infinite alternate;
  }
  .banner2 .cao1-2 {
    bottom: -0.6rem;
    left: 0.5rem;
    width: 1.09rem;
    animation: downup1-2 1.8s ease-in-out infinite alternate;
  }
  .banner2 .cao1-3 {
    bottom: 0;
    left: 0.5rem;
    z-index: 2;
    width: 1.83rem;
    animation: downup1-3 2.4s ease-in-out infinite alternate;
  }
  .banner2 .cao1-4 {
    bottom: 0;
    left: 1.04rem;
    z-index: 7;
    width: 1.92rem;
    animation: downup1-4 1.6s ease-in-out infinite alternate;
  }
  .banner2 .cao1-5 {
    bottom: 0.3rem;
    left: 1.7rem;
    z-index: 6;
    width: 2.09rem;
    animation: downup1-5 2.81s ease-in-out infinite alternate;
  }
  .banner2 .cao1-6 {
    left: 3.35rem;
    z-index: 6;
    bottom: 0.1rem;
    width: 2.55rem;
    animation: downup1-6 2.41s ease-in-out infinite alternate;
  }
  .banner2 .cao1-7 {
    width: 0.61rem;
    left: 4.8rem;
    bottom: 0;
    animation: downup1-7 1.61s ease-in-out infinite alternate;
  }
  .banner2 .cao1-8 {
    width: 0.38rem;
    left: 5.7rem;
    bottom: 0;
    animation: downup1-8 2.2s ease-in-out infinite alternate;
  }
  .banner2 .cao1-9 {
    width: 0.93rem;
    left: 3.95rem;
    bottom: 0.6rem;
    animation: downup1-9 2.8s ease-in-out infinite alternate;
  }
  .banner2 .cao1-10 {
    width: 0.93rem;
    left: 4.3rem;
    bottom: 1.3rem;
    animation: downup1-10 2.2s ease-in-out infinite alternate;
  }
  .banner2 .cao1-11 {
    width: 1.14rem;
    left: 3.47rem;
    z-index: 5;
    top: auto;
    bottom: 2.7rem;
    animation: downup1-11 2.6s ease-in-out infinite alternate;
  }
  @keyframes downup1-1 {
    from {
      bottom: 2.15rem;
    }
    to {
      bottom: 2.35rem;
    }
  }
  @keyframes downup1-2 {
    from {
      bottom: -0.6rem;
    }
    to {
      bottom: -0.8rem;
    }
  }
  @keyframes downup1-3 {
    from {
      bottom: 0;
    }
    to {
      bottom: -0.14rem;
    }
  }
  @keyframes downup1-4 {
    from {
      bottom: 0;
    }
    to {
      bottom: -0.18rem;
    }
  }
  @keyframes downup1-5 {
    from {
      bottom: 0.3;
    }
    to {
      bottom: 0.4rem;
    }
  }
  @keyframes downup1-6 {
    from {
      bottom: 0.1rem;
    }
    to {
      bottom: 0.3rem;
    }
  }
  @keyframes downup1-7 {
    from {
      bottom: 0rem;
    }
    to {
      bottom: -0.28rem;
    }
  }
  @keyframes downup1-8 {
    from {
      bottom: 0rem;
    }
    to {
      bottom: -0.18rem;
    }
  }
  @keyframes downup1-9 {
    from {
      bottom: 0.6rem;
    }
    to {
      bottom: 0.48rem;
    }
  }
  @keyframes downup1-10 {
    from {
      bottom: 1.3rem;
    }
    to {
      bottom: 1.5rem;
    }
  }
  @keyframes downup1-11 {
    from {
      bottom: 2.7rem;
    }
    to {
      bottom: 2.9rem;
    }
  }
  .brand-about .wrapper .more span {
    font-size: 0.4rem;
  }
  .brand-about .wrapper .more {
    margin: 0.6rem 0 0 0;
  }
  .brand-about3 .txtbox p {
    font-size: 0.22rem;
  }
  nav ul li > a {
    font-size: 0.24rem;
  }
  nav ul li .subnav a {
    font-size: 0.2rem;
    font-weight: 300;
  }
  .server .container .form .formbox .wrapper .inputbox .choselist .item {
    font-size: 0.21rem;
  }
  .newslist .newsitem .txtbox .cont {
    font-size: 0.21rem;
  }
  .detailcontent p {
    font-size: 0.21rem !important;
  }
  .brand-about18 .wrapper .left .publicswiper {
    position: relative;
    left: 0;
    top: 18%;
    z-index: 0;
    width: 100%;
  }
  .brand-about18 .wrapper .left {
    width: 100%;
  }
  .index-about .container .about1 .txtbox .cont {
    font-size: 0.22rem;
  }
  .index-about .container .about1 .txtbox .desc {
    font-size: 0.26rem;
  }
  .index-about .container .about4 .wrapper .left .cont {
    font-size: 0.22rem;
    line-height: 0.46rem;
  }
  .index-about .container .about4 .wrapper .center .cont {
    font-size: 0.22rem;
    line-height: 0.46rem;
  }
  .index-about .container .about4 .wrapper .center .more span {
    font-size: 0.22rem;
    color: #999;
  }
}
