/* 公共样式 */
::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 0px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #535353;
}
::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #ededed;
}
.wp {
  padding: 0% 2%;
  width: 83.3%;
  margin: 0 auto;
  max-width: 1600px;
  min-width: 1170px;
}

.wp .titledemo {
  color: rgb(0, 0, 0);
  font-family: 微软雅黑;
  font-size: clamp(36px, calc(2vw + 16.6px), 55px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0px;
  text-align: center;
  margin: 2vw 0;
}
.banner img {
  animation: mymove 6s infinite;
  -webkit-animation: mymove 6s infinite;
  animation-direction: alternate;
  animation-timing-function: ease;
  -webkit-animation: mymove 6s infinite;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .banner_img {
  overflow: hidden;
}
@keyframes mymove {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
/* * {
        transition: all 0.6s;
    } */
/* 分页样式 */

.pagination {
  display: flex;
  justify-content: center;
}

.pagination li {
  width: 30px;
  height: 30px;
  margin: 10px 10px;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 30px;
}

.pagination .disabled {
  opacity: 0.5;
}

.pagination .active {
  background: rgb(163, 114, 78);
  color: #fff;
}
/* 汉堡菜单icon */

.hamburger .line {
  width: 0.56rem;
  height: 3px;
  background-color: #e50012;
  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-11 {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#hamburger-11.is-active {
  animation: smallbig 0.6s forwards;
}

@keyframes smallbig {
  0%,
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
}

#hamburger-11.is-active .line:nth-child(1),
#hamburger-11.is-active .line:nth-child(2) {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

#hamburger-11.is-active .line:nth-child(1) {
  -webkit-transform: translateY(12px) rotate(45deg);
  -ms-transform: translateY(12px) rotate(45deg);
  -o-transform: translateY(12px) rotate(45deg);
  transform: translateY(12px) rotate(45deg);
}

#hamburger-11.is-active .line:nth-child(2) {
  -webkit-transform: translateY(1px) rotate(-45deg);
  -ms-transform: translateY(1px) rotate(-45deg);
  -o-transform: translateY(1px) rotate(-45deg);
  transform: translateY(1px) rotate(-45deg);
}

#hamburger-11.is-active .line:nth-child(3) {
  width: 0;
}
/* 导航栏 */

header {
  height: 1rem;
  position: absolute;
  z-index: 9;
  width: 100%;
}

header .logo {
  /* padding: 0.22rem 0 0 0.1rem; */
}

header .logo img {
  max-width: 100%;
}
header .wp {
  /* width: 100%; */
  padding: 0 8.5%;
}
header .wp .menuicon {
  margin: 0 0.15rem 0 0;
  position: relative;
}

header .wp .menuicon .mopen {
  width: 0.68rem;
  height: 0.6rem;
}

header .wp .menuicon .mclose {
  display: none;
  width: 0.68rem;
  height: 0.6rem;
}

header .wp {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 0;
  align-items: center;
  height: 100%;
}
header .wp .rsidee {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .wp .rsidee .lang {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header .wp .rsidee .lang img {
  margin: 0 0.05rem 0 0;
}
header .wp .rsidee .lang span {
  font-size: 14px;
  color: #fff;
}
header .wp .menuicon {
  display: none;
}
header .wp nav {
  height: 100%;
  line-height: 1rem;
}
header .wp nav ul {
  display: flex;
}

header .wp nav ul .item {
  position: relative;
  width: max-content;
  text-align: center;
  margin: 0 calc(2vw + 17.4px) 0 0;
}

header .wp nav ul .item a {
  font-size: clamp(16px, calc(0.5vw + 8.4px), 18px);
  color: #fff;
  text-align: center;
}

header .wp nav ul .item > a:hover {
  /* font-weight: bold; */
  color: rgb(163, 114, 78);
}

header .wp nav ul .item .secnav {
  display: none;
  position: absolute;
  z-index: 999;
  background: rgb(163, 114, 78);
  text-align: center;
  left: -1rem;
  line-height: 2;
  top: 70%;
}

header .wp nav ul .item:hover .secnav {
  display: block;
  animation: fadeInDown 0.4s;
  width: 100%;
}

header .wp nav ul .item .secnav .subitem {
  padding: 0.1rem 0;
  background: #f7f7f7;
  position: relative;
  width: 3rem;
}

header .wp nav ul .item .secnav .subitem a {
  color: #000;
  font-size: 0.16rem;
}

header .wp nav ul .item .secnav .subitem:hover {
  background: rgb(163, 114, 78);
}

header .wp nav ul .item .secnav .subitem:hover a {
  color: #fff;
}

header .wp nav ul .item .secnav .thrnav {
  display: none;
  width: 160px;
  position: absolute;
  right: -160px;
  top: 0;
}

header .wp nav ul .item .secnav .thrnav .thritem {
  padding: 0.1rem 0;
  background: #f7f7f7;
  position: relative;
}

header .wp nav ul .item .secnav .thrnav .thritem a {
  color: #000;
  font-size: 0.16rem;
}

header .wp nav ul .item .secnav .thrnav .thritem:hover {
  background: rgb(163, 114, 78);
}

header .wp nav ul .item .secnav .thrnav .thritem:hover a {
  color: #fff;
}

header .wp nav ul .item .secnav .subitem:hover .thrnav {
  display: block;
  animation: fadeInDown 0.4s;
}
/* PC-banner */

/* 移动端导航 */

.mobilenav {
  position: absolute;
  z-index: 10;
  width: 100%;
  background: #fff;
  height: 100vh;
  left: -100%;
  transition: all 0.4s;
}

.mobilenav ul li {
  text-align: center;
}

.mobilenav ul li .navitem {
  font-size: 0.22rem;
  padding: 0.14rem 20px;
  display: block;
  border-bottom: 1px solid #efefef;
}

.mobilenav ul li .subnav ul li {
  border-bottom: 1px solid #efefef;
  padding: 10px 0 10px 45%;
}

.mobilenav ul li .subnav .subitem {
  font-size: 14px;
  padding: 0;
  position: relative;
  border: 0;
  text-align: left;
}

.mobilenav ul li .subnav .subitem::before {
  content: "";
  background: #a1a1a1;
  width: 10px;
  height: 1px;
  position: absolute;
  left: -15px;
  top: 10px;
}

.subnav {
  height: 0px;
  overflow: hidden;
}
/* banner */

.banner {
  line-height: 0.6;
  overflow: hidden;
}
.banner .bannerpic {
  width: 100%;
}
.banner .swiper-pagination-bullet {
  background: #fff;
}

.banner .swiper-pagination-bullet-active {
  background: #fff;
}
/* 底部 */

footer {
  background: #333333;
  padding: 0 0 1.45rem 0;
}

footer .wp {
  animation-name: fadeInUp;
  visibility: visible;
}

footer .wp .wrapper {
  display: flex;
  flex-direction: column;
}

footer .wp .logoinfo {
  padding: 35px 0 0 0;
}

footer .wp .logoinfo .btmlogo {
  padding: 0 0 0 30px;
  margin: 10px auto;
  display: block;
}

footer .wp .logoinfo .phone,
.address {
  font-size: 0.18rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin: 0 auto;
  text-align: center;
  line-height: 0.36rem;
}

footer .wp .logoinfo .phone {
  color: #fff;
}

footer .wp .logoinfo .phone span {
  font-size: 0.36rem;
  color: #fff;
}

footer .wp .btm-cate {
  padding: 60px 0 0 0;
}

footer .wp .btm-cate ul li {
  display: inline-block;
  margin: 0 5% 0 0;
}

footer .wp .btm-cate ul li a {
  display: block;
  color: #fff;
}

footer .wp .btm-cate ul li .catetitle {
  font-size: 18px;
  margin: 0 0 30px 0;
}

footer .wp .btm-cate ul li .subcate {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin: 5px 0;
}

footer .wp .logoinfo,
.qrcode {
  flex-grow: 1;
}

footer .wp .btm-cate {
  flex-grow: 2;
}

footer .wp .wrapper .qrcode {
  display: flex;
  padding: 61px 0 40px 0;
  justify-content: flex-end;
}

footer .wp .qrcode .qrcodebox {
  margin: 0 20px 0;
}

footer .wp .qrcode .qrcodebox p {
  text-align: center;
  margin: 4px 0;
  color: #fff;
  font-size: 16px;
}

footer .info {
  background: #272727;
}

footer .info a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  padding: 20px 0;
  display: block;
  text-align: center;
}

.tabbar {
  height: 1.45rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  z-index: 99;
}

.tabbar .wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.tabbar .wrapper .tabitem {
  flex-grow: 1;
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 1.45rem;
  opacity: 0.8;
}

.tabbar .wrapper .active {
  opacity: 1;
  background: #2c6350;
}

.tabbar .wrapper .tabitem img {
  display: block;
  margin: 10px 0 10px 0;
}

.tabbar .wrapper .tabitem span {
  color: #fff;
  font-size: 0.2rem;
}

.about_us {
  padding: 5.8vw 0;
}
.about_us .wp .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about_us .wp .wrap .lside {
}
.about_us .wp .wrap .lside span {
  font-size: 20px;
  color: rgb(136, 110, 78);
}
.about_us .wp .wrap .lside p {
  font-size: clamp(36px, calc(2vw + 16.6px), 55px);
  color: #000;
  font-weight: 700;
  line-height: 1.3;
  margin: 20px 0 0 0;
}
.about_us .wp .wrap .rside {
  max-width: 797px;
  width: 55%;
}
.about_us .wp .wrap .rside p {
  color: rgb(73, 73, 73);
  font-family: 微软雅黑;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: left;
}
.build {
  background: url(../images/bg1.jpeg);
  height: 39.0625vw;
  max-height: 750px;
  background-position: center center;
  min-height: 450px;
  background-size: cover;
}
.build .wp {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
}
.build .wp a {
  /* margin: 23% 0 0 0px; */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25px;
}
.indexpro .wp {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: 0 auto 70px;
}
.indexpro .wp .lside {
}
.indexpro .wp .lside span {
  font-size: 20px;
  color: rgb(136, 110, 78);
}
.indexpro .wp .lside p {
  font-size: clamp(36px, calc(2vw + 16.6px), 55px);
  color: #000;
  font-weight: 700;
  line-height: 1.3;
  margin: 20px 0 0 0;
}

.indexpro .wp .rside {
  display: flex;
  justify-content: center;
  align-items: center;
}
.indexpro .wp .rside .prev {
  width: 0.58rem;
  height: 0.58rem;
  border: 1px solid rgb(63, 63, 63);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
  cursor: pointer;
}

.indexpro .wp .rside .next {
  width: 0.58rem;
  height: 0.58rem;
  border: 1px solid rgb(63, 63, 63);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
  cursor: pointer;
}
.indexpro .wp .rside .next img {
  transform: rotate(180deg);
}
/*页码*/

.pagination {
  display: flex;
  justify-content: center;
  margin: 20px auto 30px;
}

.pagination li {
  width: 30px;
  height: 30px;
  margin: 10px 10px;
  border: 1px solid #efefef;
  text-align: center;
  line-height: 30px;
}

.pagination .disabled {
  opacity: 0.5;
}

.pagination .active {
  background: rgb(163, 114, 78);
  color: #fff;
}
.indexpro {
  padding: 5.2vw 0;
}
.indexpro .swiper-box {
  width: 100%;
  padding: 0 0 0 8.5%;
}
.indexpro .swiper-box .swiper .swiper-wrapper .swiper-slide img {
  max-width: 100%;
}
.indexpro .swiper-box .swiper .swiper-wrapper .swiper-slide span {
  color: rgb(0, 0, 0);
  font-family: 微软雅黑;
  font-size: clamp(20px, calc(0.5vw + 14.4px), 24px);
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0px;
  text-align: left;
  margin: 20px 0 0 0;
  display: block;
}

.indexcases {
  /* height: 47.9166vw;
  max-height: 920px;
  min-height: 720px;
  background: url(../images/cases/1.jpeg);
  background-size: cover; */
  position: relative;
}
.indexcases .swiper {
  z-index: 9;
}
.indexcases .swiper .swiper-slide img {
  width: 100%;
}
.indexcases .wp {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 8.5%;
  top: 0;
  z-index: 10;
  width: 87.5%;
  padding: 0;
}
.indexcases .wp .lside {
  position: absolute;
  top: 7.9vw;
}
.indexcases .wp .lside span {
  font-size: 20px;
  color: rgb(136, 110, 78);
}
.indexcases .wp .lside p {
  font-size: clamp(36px, calc(2vw + 16.6px), 55px);
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  margin: 20px 0 0 0;
}
.indexcases .wp .rside {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  position: absolute;
  bottom: 30%;
}
.indexcases .wp .rside .catelist {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 15px 0 0;
}
.indexcases .wp .rside .catelist span {
  color: rgba(255, 255, 255, 0.47);
  font-family: 微软雅黑;
  font-size: clamp(24px, calc(0.5vw + 24px), 34px);
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0px;
  text-align: left;
  margin: 0 0 1.3vw 0;
  user-select: none;
  -webkit-user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.indexcases .wp .rside .catelist .active {
  color: #fff;
}
.indexcases .wp .rside a {
  width: 160px;
  height: 52px;
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 50px;
  transition: all 0.4s;
  border-radius: 60px;
  background: rgb(163, 114, 78);
  display: none;
}
.indexcases .wp .rside .catelist .active a {
  display: flex;
}
.indexnews {
  padding: 1vw 0;
}
.indexnews .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}
.indexnews .swiper .swiper-wrapper .swiper-slide {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.indexnews .swiper .swiper-wrapper .swiper-slide .text {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.indexnews .swiper .swiper-wrapper .swiper-slide .text .title {
  font-size: clamp(12px, calc(0.5vw + 4.4px), 14px);
  color: #fff;
}
.indexnews .swiper .swiper-wrapper .swiper-slide .text .content {
  font-size: clamp(16px, calc(0.5vw + 14.4px), 24px);
  color: #fff;
}
.indexnews .swiper {
  transform: scale(1.3);
  margin: 4vw 0;
}
.indexnews .wp {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.indexnews .wp .lside span {
  font-size: 20px;
  color: rgb(136, 110, 78);
}
.indexnews .wp .lside p {
  font-size: clamp(36px, calc(2vw + 16.6px), 55px);
  color: #000;
  font-weight: 700;
  line-height: 1.3;
  margin: 20px 0 0 0;
}

.indexnews .wp .rside {
  display: flex;
  justify-content: center;
  align-items: center;
}
.indexnews .wp .rside .prev {
  width: 0.58rem;
  height: 0.58rem;
  border: 1px solid rgb(63, 63, 63);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
  cursor: pointer;
}

.indexnews .wp .rside .next {
  width: 0.58rem;
  height: 0.58rem;
  border: 1px solid rgb(63, 63, 63);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
  cursor: pointer;
}
.indexnews .wp .rside .next img {
  transform: rotate(180deg);
}
.footer {
  background: rgb(17, 17, 17);
  padding: 5.2604vw 0 0 0;
}
.footer .wp {
  padding: 0;
}
.footer .wp .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer .wp .top .logobox {
  width: 45%;
}

.footer .wp .top .navbox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 70%;
}
.footer .wp .top .navbox ul{
  margin: 0 1vw 0 0;
}
.footer .wp .top .navbox ul li a {
  color: rgb(128, 127, 127);
  font-family: 微软雅黑;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: left;
  max-width: 98%;
  display: block;
  white-space: nowrap;
}
.footer .wp .top .navbox ul li a:hover {
  color: #fff;
}
.footer .wp .top .navbox ul li:first-child a {
  color: rgb(255, 255, 255);
  font-family: 微软雅黑;
  font-size: 18px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0px;
  text-align: left;
}

.footer .wp .footer-address {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 3vw 0;
}
.footer .wp .footer-address .address-left {
}
.footer .wp .footer-address .address-left p {
  font-size: calc(0.5vw + 5.5px);
  color: rgb(128, 127, 127);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 15px 0;
}
.footer .wp .footer-address .address-left p img {
  margin: 0 10px 0 0;
}
.footer .wp .footer-address .social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 -4vw -15vw;
}
.footer .wp .footer-address .social span {
  font-size: clamp(16px, calc(0.5vw + 8.4px), 18px);
  color: #fff;
}
.footer .wp .footer-address .social .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .wp .footer-address .social .item {
  position: relative;
  margin: 10px 10px 0 0;
}
.footer .wp .footer-address .social .item .showbox {
  width: 120px;
  height: 120px;
  display: none;
  position: absolute;
  bottom: 50px;
  left: -30px;
  z-index: 9;
}
.footer .wp .footer-address .social .item .showbox img {
  max-width: 100%;
}
.footer .wp .footer-address .social .item:hover .showbox {
  display: block;
}
.footer .wp .footer-info {
  border-top: 1px solid rgb(61, 61, 61);
  padding: 1vw 0;
  display: flex;
  justify-content: space-between;
}
.footer .wp .footer-info span {
  color: rgb(128, 127, 127);
  font-family: 微软雅黑;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: left;
}
.footer .wp .footer-info a {
  color: rgb(128, 127, 127);
  font-family: 微软雅黑;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: left;
}
.footer .gotoup {
  margin: 0px 0 -7vw -15vw;
  cursor: pointer;
}
.about {
  margin: 5vw 0;
}
.about .wp .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about .wp .wrap .lside {
  width: 47.63%;
}
.about .wp .wrap .lside span {
  font-size: 20px;
  color: rgb(136, 110, 78);
}
.about .wp .wrap .lside p {
  font-size: clamp(36px, calc(2vw + 16.6px), 55px);
  color: #000;
  font-weight: 700;
  line-height: 1.3;
  margin: 20px 0 0 0;
}
.about .wp .wrap .lside i {
  max-width: 686px;
  display: block;
  color: rgb(128, 127, 127);
  font-family: 微软雅黑;
  font-size: clamp(14px, calc(0.5vw + 10.4px), 20px);
  font-weight: 400;
  letter-spacing: 0px;
  text-align: left;
  margin: 25px 0 0 0;
  line-height: 1.8;
}
.about .wp .wrap .imgbox {
  width: 55%;
  text-align: right;
}
.about .wp .wrap .imgbox img {
  max-width: 90%;
}
.about .wp .numbox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3vw 0;
}
.about .wp .numbox .item {
}
.about .wp .numbox .item p {
  color: rgb(163, 114, 78);
  font-family: Outfit;
  letter-spacing: 0px;
  text-align: left;
  font-size: calc(0.5vw + 14px);
}
.about .wp .numbox .item p span {
  font-size: 3.90625vw;
  font-weight: 700;
  line-height: 4.6875vw;
}
.about .wp .numbox .item b {
  color: rgb(0, 0, 0);
  font-family: 微软雅黑;
  font-size: calc(0.5vw + 10.4px);
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: left;
}
.workshop .swiper-box {
  width: 100%;
  margin: 0 0 0 8.854166%;
  padding: 0 0 3vw 0;
}
.workshop .swiper-box .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}
.honor {
  background: rgb(244, 244, 244);
  padding: 1vw 0 4vw 0;
}

.honor .wp .swiper .swiper-wrapper .swiper-slide {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.honor .wp .swiper .swiper-wrapper .swiper-slide img {
  padding: 2vw 0;
  height: 11.979166vw;
  min-height: 180px;
  max-height: 230px;
}
.honor .wp .swiper .swiper-wrapper .swiper-slide .text {
  border-top: 1px solid rgb(198, 198, 198);
  width: 86.72%;
  margin: 0 auto;
  padding: 1vw 0;
}
.honor .wp .swiper .swiper-wrapper .swiper-slide .text p {
  color: rgb(0, 0, 0);
  font-family: 思源黑体;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: center;
  height: 52px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.procenter .wp .catelist {
  padding: 2vw 0 3.2291vw 0;
  font-family: 微软雅黑;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: left;
}

.procenter .wp .catelist .active {
  color: rgb(163, 114, 78);
}
.procenter .wp .prolist {
  display: flex;
  flex-wrap: wrap; /* 自动换行 */
  gap: 20px; /* 每个元素之间的间距 */
}
.procenter .wp .prolist .proitem {
  flex: 0 0 calc(25% - 15px); /* 4 列布局，减去 gap 的影响 */
  box-sizing: border-box;
  height: 24vw;
  overflow: hidden;
  border-radius: 8px;
}
.procenter .wp .prolist .proitem img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: all 1s;
}
.procenter .wp .prolist .proitem:hover img {
  transform: scale(1.15);
  transition: all 1s;
}

.procenter .wp .caselist {
  display: flex;
  flex-wrap: wrap; /* 自动换行 */
  gap: 50px; /* 每个元素之间的间距 */
  margin: 0 0 20px 0;
}
.procenter .wp .caselist .caseitem {
  flex: 0 0 calc(50% - 50px); /* 4 列布局，减去 gap 的影响 */
  box-sizing: border-box;
  position: relative;
}
.procenter .wp .caselist .caseitem img {
  width: 100%;
  height: 21.25vw;
  display: block;
  border-radius: 8px;
}
.procenter .wp .caselist .caseitem p {
  position: absolute;
  bottom: 10px;
  left: 30px;
  color: #fff;
  font-size: clamp(20px, calc(0.5vw + 14.4px), 24px);
}

.prodetail {
  padding: 1vw 0;
}
.prodetail .wp .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.prodetail .wp .wrap .swiperbox {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  height: 34.895833vw;
  max-height: 670px;
  min-height: 580px;
  width: 64%;
  min-width: 600px;
}
.prodetail .wp .wrap .swiperbox .swiper1 {
  height: 34.895833vw;
  max-height: 670px;
  min-height: 580px;
  width: 85%;
  margin: 0 2% 0 0;
}
.prodetail .wp .wrap .swiperbox .swiper2 {
  height: 34.895833vw;
  max-height: 670px;
  min-height: 580px;
  width: 15%;
}
.prodetail .wp .wrap .swiperbox .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prodetail .wp .wrap .txtbox {
  width: 30%;
}
.prodetail .wp .wrap .txtbox .title {
  color: rgb(11, 11, 11);
  font-family: 微软雅黑;
  font-size: clamp(28px, calc(0.5vw + 26.4px), 36px);
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: left;
}
.prodetail .wp .wrap .txtbox .cont {
  color: rgb(128, 127, 127);
  font-family: 微软雅黑;
  font-size: calc(0.5vw + 10.4px);
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0px;
  text-align: left;
  margin: 20px 0 0 0;
}

.news {
  padding: 2vw 0;
}
.news .wp .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 25.9375vw;
  max-height: 495px;
  min-height: 350px;
}
.news .wp .wrap .imgbox {
  width: 57.3333%;
  overflow: hidden;
  height: 25.9375vw;
  max-height: 495px;
  min-height: 350px;
}
.news .wp .wrap .imgbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.news .wp .wrap .hotnews {
  width: 36.6667%;
  position: relative;
  height: 25.9375vw;
  max-height: 495px;
  min-height: 350px;
}
.news .wp .wrap .hotnews .desc {
  color: rgb(163, 114, 78);
  font-size: calc(0.5vw + 10.4px);
  margin: 1.5vw 0;
}
.news .wp .wrap .hotnews .title {
  font-size: calc(0.5vw + 18.8px);
  color: #000;
  margin: 0 0 1.5vw 0;
}
.news .wp .wrap .hotnews .date {
  font-size: calc(0.5vw + 6.4px);
  color: rgb(128, 127, 127);
}
.news .wp .wrap .hotnews .prevnext {
  display: flex;
  position: absolute;
  left: 0;
  bottom: 4%;
}
.news .wp .wrap .hotnews .prevnext div {
  border: 1px solid rgb(63, 63, 63);
  border-radius: 50%;
  display: block;
  width: calc(2vw + 19.6px);
  height: calc(2vw + 19.6px);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 15px 0 0;
}

.news .wp .wrap .hotnews .next img {
  transform: rotate(180deg);
}
.news .wp .catelist {
  padding: 2vw 0 3.2291vw 0;
  font-family: 微软雅黑;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: left;
}

.news .wp .catelist .active {
  color: rgb(163, 114, 78);
}
.news .wp .newslist {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding: 3vw 0;
}
.news .wp .newslist .newsitem {
  flex: 0 0 calc(33.3333% - 40px);
  transition: all 0.4s;
  border-radius: 15px;
}
.news .wp .newslist .newsitem:hover .text {
  box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.2);
}
.news .wp .newslist .newsitem .text {
  background: rgb(244, 244, 244);
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  width: calc(100% - 74px);
  padding: 0 37px;
  transition: all 0.4s;
}
.news .wp .newslist .newsitem .text .desc {
  font-size: 14px;
  color: #000;
  margin: 1.5vw 0;
}
.news .wp .newslist .newsitem .text .title {
  font-size: 24px;
  color: #000;
  height: 72px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.news .wp .newslist .newsitem .text .date {
  color: rgb(128, 127, 127);
  font-size: 14px;
  padding: 1.3vw 0 1.8vw 0;
}
.news .wp .newslist .newsitem .imgbox {
  border-radius: 0 0 15px 15px;
  overflow: hidden;
  height: 13vw;
  max-height: 340px;
  min-height: 240px;
}
.news .wp .newslist .newsitem .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
.news .wp .newslist .newsitem:hover .imgbox img {
  transition: all 0.4s;
  transform: scale(1.02);
}
.contact {
  padding: 4vw 0;
}
.contact .wp .text .title {
  font-size: clamp(48px, calc(3vw + 23.4px), 80px);
  color: #000;
  font-weight: bold;
}
.contact .wp .text .desc {
  font-size: clamp(38px, calc(2vw + 11.8px), 50px);
  color: #000;
}
.contact .wp .text .name {
  font-size: 16px;
  color: rgb(173, 173, 173);
  margin: 1vw 0;
}
.contact .wp .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.contact .wp .wrap .formbox {
  width: 48%;
}
.contact .wp .wrap .formbox .item {
  margin: 0 0 1vw 0;
  display: flex;
  flex-direction: column;
}
.contact .wp .wrap .formbox .item span {
  color: rgb(173, 173, 173);
  font-size: 16px;
}
.contact .wp .wrap .formbox .item span i {
  color: #e50012;
}
.contact .wp .wrap .formbox .item input {
  height: 40px;
  border: 1px solid rgb(222, 222, 222);
  width: calc(100% - 20px);
  padding: 0 10px;
}
.contact .wp .wrap .formbox .item textarea {
  resize: none;
  border: 1px solid rgb(222, 222, 222);
  width: calc(100% - 20px) !important;
  padding: 0 10px;
  height: 150px;
}
.contact .wp .wrap .infobox {
}
.contact .wp .wrap .infobox .title {
  font-size: calc(0.5vw + 12.4px);
  color: #000;
  font-weight: 700;
  margin: 0 0 10px 0;
}
.contact .wp .wrap .infobox .desc {
  font-size: clamp(14px, calc(0.5vw + 8.4px), 18px);
  color: rgb(104, 103, 103);
  margin: 0 0 1.5vw 0;
}
.contact .wp .wrap .infobox .qrcode {
  width: max-content;
  text-align: center;
}
.contact .wp .wrap .infobox .qrcode .imgbox {
  border: 1px dashed rgb(222, 222, 222);
  width: max-content;
  height: max-content;
  display: flex;
}
.contact .wp .wrap .infobox .qrcode .imgbox img {
  width: 100%;
  height: 100%;
}
.contact .wp .wrap .infobox .qrcode p {
  font-size: 16px;
  color: #000;
  margin: 10px 0 0 0;
}
#map {
  width: 100%;
  height: 650px;
}
.newsdetail {
  padding: 9.6354166vw 0;
}
.newsdetail .wp .title {
  color: rgb(0, 0, 0);
  font-family: 微软雅黑;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
}
.newsdetail .wp .date {
  color: rgb(128, 127, 127);
  font-family: Cabin;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0px;
  text-align: center;
  margin: 1vw 0 3vw 0;
}
.newsdetail .wp img {
  max-width: 100% !important;
  display: block !important;
  margin: 0 auto !important;
}
/* 媒介查询 */
/* 大屏幕（老款笔记本1366） */

@media (min-width: 1921px) {
  .banner .banpic {
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }
  .wp {
    max-width: 1920px;
  }
}

@media (max-width: 1650px) {
  .footer .wp .top .logobox{
    width: 15%;
    margin: 0 2% 0 0;
  }
  .footer .wp .top .navbox{
    width: 83%;
  }
}

@media (max-width: 1440px) {
  .news .wp .newslist .newsitem .text .title {
    font-size: 18px;
    height: 54px;
  }
}

@media (max-width: 1366px) {
  .footer .wp .top .navbox ul li a{
    font-size: 13px;
  }
  .about .wp .wrap .lside p {
    font-size: clamp(36px, calc(1vw + 12.6px), 55px);
  }
  .build .wp a {
    margin: 15% 0 0 0px;
  }
  .indexcases .wp .rside {
    bottom: 16%;
  }
}

@media (max-width: 1280px) {
  .news .wp .wrap .hotnews .prevnext {
    bottom: 0%;
  }
}

@media (max-width: 1170px) {
}

@media (max-width: 1024px) {
  header .wp nav {
    display: none;
  }
  /* header .wp .menuicon {
    display: block;
  } */
}

@media (max-width: 992px) {
}

@media (max-width: 768px) {
}

@media (max-width: 640px) {
}

@media (max-width: 414px) {
  header .logo {
    padding: 0;
    max-width: 30%;
  }
  header .logo img {
    max-width: 100%;
    width: auto;
    height: auto;
  }
}

@media (max-width: 393px) {
}

@media (max-width: 375px) {
}
