:root {
  --main-color: #dcac6f;
  --text-dark: #333333;
  --text-grey: #666666;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
body {
  font-size: 16px;
  margin: 0;
  color: #575f84;
  overflow-x: hidden;
  font-weight: 400;
  background: #f5f5f5;
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1200px;
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-8em);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes slideDown {
  0% {
    -moz-transform: translateY(-8em);
  }
  100% {
    -moz-transform: translateY(0);
  }
}
@-o-keyframes slideDown {
  0% {
    -o-transform: translateY(-8em);
  }
  100% {
    -o-transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-8em);
  }
  100% {
    transform: translateY(0);
  }
}
.animated.slideDown {
  -webkit-animation-name: slideDown;
  -moz-animation-name: slideDown;
  -o-animation-name: slideDown;
  animation-name: slideDown;
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-8em);
  }
}
@-moz-keyframes slideUp {
  0% {
    -moz-transform: translateY(0);
  }
  100% {
    -moz-transform: translateY(-8em);
  }
}
@-o-keyframes slideUp {
  0% {
    -o-transform: translateY(0);
  }
  100% {
    -o-transform: translateY(-8em);
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8em);
  }
}
.animated.slideUp {
  -webkit-animation-name: slideUp;
  -moz-animation-name: slideUp;
  -o-animation-name: slideUp;
  animation-name: slideUp;
}
.animated {
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.row-spacing-8 {
  margin-right: -8px;
  margin-left: -8px;
}
.row-spacing-8 [class*=col-] {
  padding-right: 8px;
  padding-left: 8px;
}
.row-spacing-3 {
  margin-right: -3px;
  margin-left: -3px;
}
.row-spacing-3 [class*=col-] {
  padding-right: 3px;
  padding-left: 3px;
}
.row-spacing-0 {
  margin-right: 0px;
  margin-left: 0px;
}
.row-spacing-0 [class*=col-] {
  padding-right: 0px;
  padding-left: 0px;
}
.more-btn-default {
  width: 200px;
  height: 44px;
  text-align: center;
  font-weight: 100;
  font-size: 15px;
  line-height: 43px;
  background-color: #fff !important;
  text-transform: uppercase;
  border: 1px solid #d3d3d3;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  cursor: pointer;
  display: inline-block;
  color: #999999 !important;
  border-radius: 0px;
  letter-spacing: 1px;
  font-family: "HarmonyOS_Sans_SC_Regular";
}
.more-btn-default:hover {
  background-color: var(--main-color) !important;
  color: #fff !important;
}
/*==========================================
      header
  ==========================================*/
.header {
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0px;
  background-color: #fff;
  /* background: #3f51b5; */
}
.logo {
  height: 80%;
  width: 160px;
}
.logo img {
  height: 100%;
}
.header.nav-fixed {
  position: fixed;
  background: var(--main-color);
  -webkit-box-shadow: 0px 1px 13px 0px var(--main-color);
  box-shadow: 0px 1px 13px 0px var(--main-color);
  z-index: 4;
}
.header .main-menu .navbar {
  text-align: center;
  padding: 0;
}
.header .main-menu .navbar .navbar-nav {
  width: 100%;
  text-align: center;
}
.header .main-menu .navbar .navbar-nav .nav-item {
  padding: 0;
}
.header .main-menu .navbar .navbar-nav .nav-item:last-child .nav-link {
  margin-right: 0px;
}
.header .main-menu .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  display: block;
}
.header .main-menu .navbar .navbar-nav .nav-item .nav-link {
  padding: 0;
  display: inline-block;
  padding: 28px 0px;
  margin-left: 25px;
  margin-right: 25px;
  color: var(--text-dark);
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-family: "HarmonyOS_Sans_SC_Medium";
  position: relative;
}
.header .main-menu .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--main-color);
  position: relative;
}
.dropdown-toggle::after {
  content: none;
}
.header .main-menu .navbar .navbar-nav .nav-item .nav-link:before {
  content: "";
  height: 2px;
  width: 94%;
  background-color: var(--main-color);
  display: block;
  position: absolute;
  bottom: 24px;
  left: 50%;
  border-radius: 0px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transform: translateX(-50%) scaleX(0);
  -moz-transform: translateX(-50%) scaleX(0);
  -ms-transform: translateX(-50%) scaleX(0);
  -o-transform: translateX(-50%) scaleX(0);
  transform: translateX(-50%) scaleX(0);
}
.header .main-menu .navbar .navbar-nav .nav-item .nav-link.active:before {
  -webkit-transform: translateX(-50%) scaleX(1);
  -moz-transform: translateX(-50%) scaleX(1);
  -ms-transform: translateX(-50%) scaleX(1);
  -o-transform: translateX(-50%) scaleX(1);
  transform: translateX(-50%) scaleX(1);
}
.header .main-menu .navbar .navbar-nav .nav-item:hover .nav-link:before {
  -webkit-transform: translateX(-50%) scaleX(1);
  -moz-transform: translateX(-50%) scaleX(1);
  -ms-transform: translateX(-50%) scaleX(1);
  -o-transform: translateX(-50%) scaleX(1);
  transform: translateX(-50%) scaleX(1);
}
/* .header .main-menu .navbar .navbar-nav .nav-item:last-child:hover .nav-link:before {
  display: none;
} */
.header .main-menu .navbar .navbar-nav .nav-item .dropdown-menu {
  padding: 0;
  margin: 0;
  border-radius: 0px 0px 5px 5px;
  border: none;
  left: -24px;
}
.header .main-menu .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 15px 20px;
  font-weight: 500;
  color: #6a6a6a;
  font-size: 14px;
  text-align: center;
  font-family: "HarmonyOS_Sans_SC_Regular";
}
.header .main-menu .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}
.header .main-menu .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
  background: var(--main-color);
  color: #fff;
}
.header .main-menu .navbar .navbar-nav .nav-item:last-child a {
  padding-right: 0;
}
.header .main-menu .navbar .navbar-nav .nav-item:first-child {
  padding-left: 0;
}
.header .main-menu .navbar .navbar-nav .nav-item:hover {
  color: #1add97;
}
.header .login {
  text-align: right;
  margin-left: 12px;
}
.header .register {
  text-align: right;
  width: 100%;
}
.header .login a {
  display: inline-block;
  color: #fff;
  font-weight: 400;
  background: var(--main-color);
  font-size: 16px;
  padding: 8px 29px;
  width: 104px;
  border: 1px solid var(--main-color);
  border-radius: 7px;
  text-align: center;
}
.header .register a {
  display: inline-block;
  color: var(--main-color);
  font-weight: 400;
  font-size: 16px;
  padding: 8px 29px;
  width: 104px;
  border: 1px solid var(--main-color);
  border-radius: 7px;
  text-align: center;
}
.header .login a:hover {
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: #fff;
}
/*==========================================
      footer
  ==========================================*/
.footer {
  padding: 100px 0 0;
  background: #010106;
}
.footer .about-area {
  margin-bottom: 20px;
}
.footer .about-area h6 {
  margin-bottom: 5px;
  display: inline-block;
  color: #ebebeb;
  font-size: 16px;
  font-family: "HarmonyOS_Sans_SC_Light";
}
.footer .about-area .btext {
  line-height: 30px;
  color: #ebebeb;
  font-size: 14px;
  font-family: "HarmonyOS_Sans_SC_Light";
}
.footer .about-area .btel {
  color: #fff;
  font-family: "HarmonyOS_Sans_SC_Regular";
  font-size: 28px;
  margin-top: 5px;
}
.footer .about-area .btel a{
  color: #fff;
}
.footer .about-area .btel a:hover{
    text-decoration: none;
}
.footer .about-area .btext ul {
  margin-top: 10px;
  width: 90%;
}
.footer .about-area .btext ul li {
  width: 11%;
  float: left;
}
.footer .line {
  height: 1px;
  width: 80%;
  background: #a37d5c;
  display: inline-table;
}
.footer .copyright {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  background-color: #010106;
}
.footer .copyright p {
  color: #808181;
  font-size: 14px;
  margin: 0;
  font-family: "HarmonyOS_Sans_SC_Light";
}
.footer .link-title {
  font-size: 16px;
  color: #fff;
  height: 40px;
  position: relative;
  margin-bottom: 10px;
  font-family: "HarmonyOS_Sans_SC_Regular";
  text-align: left;
  margin-top: 50px;
  padding-left: 40px;
}
.footer .links {
  margin-bottom: 40px;
  text-align: left;
}
.footer .links a {
  color: #ffffff;
  font-size: 13px;
  padding: 0px 0;
  display: inline-block;
  font-family: "HarmonyOS_Sans_SC_Light";
}
.footer .links a:hover {
  color: #1add97;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.footer .links .line {
  margin-left: 14px;
  width: 1px;
  height: 10px;
  margin-right: 14px;
  background-color: #fefefe;
  display: inline-block;
}
.footer .links p {
  margin-bottom: 8px;
  padding-left: 40px;
}
.footer .code {
  text-align: center;
  margin-top: 74px;
}
.footer .code p {
  margin-top: 10px;
  font-size: 12px;
  color: #ffffff;
  font-family: "HarmonyOS_Sans_SC_Light";
}
.footer.investment-page {
  padding: 48px 0 0px;
}
.banner-carousel img {
  width: 100%;
  vertical-align: middle;
}
.page-container {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: right;
}
.page-container .el-pager li.active {
  color: #dcac6f;
}
.page-container .el-pager li:hover {
  color: #dcac6f;
}
.page-container .el-pagination button:hover {
  color: #dcac6f;
}
.title-container {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
.title-container .main-title {
  color: #333333;
  font-size: 31px;
  line-height: 1;
  font-family: "siyuan-Medium";
}
.title-container .aide-title {
  color: #333333;
  margin-top: 15px;
  line-height: 1;
  font-family: "siyuan-ExtraLight";
  font-size: 20px;
}
.title-container .en-title {
  font-size: 31px;
  color: #333333;
  margin-top: 15px;
  line-height: 1;
  font-family: "HelveticaNeue-UltraLight";
}
.title-container .line {
  height: 2px;
  width: 20px;
  background-color: var(--text-dark);
  margin: 0 auto;
  margin-top: 10px;
}
.banner {
  margin-top: 114px;
}
#index-page .banner-container {
  margin-top: 0px;
}
#index-page .banner-container .swiper-slide img {
  width: 100%;
  vertical-align: middle;
}
#index-page .banner-container .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 60px;
}
#index-page .banner-container .swiper-pagination-bullet {
  background-color: #e4eaea;
  opacity: 1;
  width: 33px;
  height: 1px;
  border-radius: 0px;
  margin: 0 18px;
}
#index-page .banner-container .swiper-pagination-bullet-active {
  background-color: #e4eaea;
  width: 33px;
  height: 3px;
  border-radius: 0px;
}
#index-page .case-container .top-model .boxs {
  background: #fff;
  border-radius: 25px 25px 25px 25px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
}
#index-page .case-container .top-model .boxs .imgs img {
  width: 100%;
  vertical-align: middle;
}
#index-page .case-container .top-model .boxs .name {
  text-align: center;
  color: #333333;
  font-size: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: "siyuan-Light";
}
#index-page .case-container .top-model .boxs .name span {
  position: relative;
  z-index: 1;
}
#index-page .case-container .top-model .boxs.active .name {
  font-family: "siyuan-Bold";
}
#index-page .case-container .top-model .boxs.active .name span {
  color: #424242;
}
#index-page .case-container .top-model .boxs.active .name span::after {
  content: "";
  height: 12px;
  background: #ffea9a;
  position: relative;
  width: 106%;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
#index-page .case-container .bottom-model {
  margin-top: 10px;
}
#index-page .case-container .bottom-model .mod-1 .imgs {
  margin-top: 6px;
  overflow: hidden;
  border-radius: 25px;
}
#index-page .case-container .bottom-model .mod-1 img {
  width: 100%;
  vertical-align: middle;
  border-radius: 25px;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#index-page .case-container .bottom-model .mod-1 img:hover {
  transform: scale(1.07);
  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
  -ms-transform: scale(1.07);
  -o-transform: scale(1.07);
}
#index-page .case-container .more-btn-default {
  border: 1px solid #575757;
  font-size: 18px;
  width: 116px;
  color: #424242 !important;
  height: 36px;
  line-height: 36px;
}

#index-page .case-container .more-btn-default:hover{
    text-decoration: none;
}

#index-page .service-container {
  background: #ffffff;
}
#index-page .service-container .box-slide {
  box-shadow: 0px 1px 6px #f2f2f2;
  padding-bottom: 20px;
  margin-bottom: 40px;
  background-color: #fff;
  border-radius: 25px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
}
#index-page .service-container .box-slide .imgs {
  text-align: center;
  margin: 0 auto;
  cursor: pointer;
  overflow: hidden;
}
#index-page .service-container .box-slide .imgs img {
  width: 100%;
  vertical-align: middle;
  border-radius: 25px 25px 0px 0px;
}
#index-page .service-container .box-slide .name {
  color: #000000;
  font-size: 22px;
  margin-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  font-family: "siyuan-Medium";
}
#index-page .service-container .box-slide .links {
  text-align: center;
  color: #000000;
  font-size: 14px;
  margin-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
}
#index-page .service-container .box-slide .links p {
  margin-bottom: 5px;
  font-size: 12px;
  color: #000000;
  font-family: "siyuan-Light";
}
#index-page .service-container .box-slide .more {
  text-align: center;
  margin-top: 20px;
}
#index-page .service-container .box-slide .more .btn-more {
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  background: #fff;
  border: 2px solid #cd9f5d;
  color: #cd9f5d;
  -webkit-appearance: none;
  text-align: center;
  box-sizing: border-box;
  outline: none;
  margin: 0;
  transition: 0.1s;
  font-weight: 500;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  font-size: 14px;
  border-radius: 20px;
  padding: 4px 50px;
  font-family: "siyuan-Medium";
}
#index-page .service-container .box-slide .more .btn-more:focus,
#index-page .service-container .box-slide .more .btn-more:hover {
  color: #c6a167;
  border-color: #dbc5a3;
  background-color: #fffcf7;
  text-decoration: none;
}
#index-page .service-container .box-slide:hover {
  transform: translateY(-18px);
}
#index-page .team-container .title-box {
  text-align: center;
}
#index-page .team-container .title-box .t1 {
  color: #333333;
  font-size: 20px;
  font-family: "siyuan-ExtraLight";
}
#index-page .team-container .title-box .t2 {
  color: #c6a167;
  font-size: 50px;
  font-family: "siyuan-Bold";
  line-height: 1;
  padding-top: 15px;
  padding-bottom: 15px;
}
#index-page .team-container .list {
  margin-top: 30px;
}
#index-page .team-container .list .imgs {
  cursor: pointer;
  overflow: hidden;
  border-radius: 25px;
  position: relative;
  z-index: 99;
}
#index-page .team-container .list .imgs img {
  vertical-align: middle;
  width: 100%;
  border-radius: 25px;
}
#index-page .team-container .list .imgs .tnum {
  border-radius: 0px;
  width: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 43%;
  top: 60px;
  z-index: 11;
}
#index-page .team-container .list .imgs .ttext {
  color: #fff;
  font-size: 16px;
  width: 100%;
  position: absolute;
  top: 140px;
  text-align: center;
  font-family: "siyuan-Medium";
  z-index: 11;
}
#index-page .team-container .list .imgs .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background: var(--main-color);
  z-index: 1;
  top: 0px;
  left: 0px;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#index-page .team-container .list .imgs .hover {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  z-index: 12;
  top: 0px;
  left: 0px;
  opacity: 0;
}
#index-page .team-container .list .imgs::after {
  content: "";
  height: 20px;
  background: var(--main-color);
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  display: block;
}
#index-page .team-container .list .imgs .hover:hover + .bg {
  opacity: 1;
}
#index-page .customer-container {
  background: #ffffff;
  overflow: hidden;
  margin-bottom: 40px;
}
#index-page .customer-container .pic {
  margin-bottom: 20px;
}
#index-page .customer-container .pic img {
  vertical-align: middle;
  width: 100%;
}
#service_list-page .banner {
  margin-top: 80px;
}
#service_list-page .banner img {
  width: 100%;
  vertical-align: middle;
}
#service_list-page .list {
  background-color: #f5f5f5;
}
#service_list-page .list .inbox-wrap {
  background: #fff;
  background-color: #fff;
}
#service_list-page .list .inbox-wrap a:hover{
    text-decoration: none;
}
#service_list-page .list .inbox {
  border-bottom: 1px dashed #d0d0d0;
  padding: 20px 0px;
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
}
#service_list-page .list .inbox .imgs {
  position: relative;
  overflow: hidden;
}
#service_list-page .list .inbox .imgs img {
  width: 100%;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#service_list-page .list .inbox .imgs img:hover {
  transform: scale(1.07);
  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
  -ms-transform: scale(1.07);
  -o-transform: scale(1.07);
}
#service_list-page .list .inbox .rights-cons {
  position: relative;
}
#service_list-page .list .inbox .rights-cons .tit {
  color: var(--text-dark);
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
  font-family: "HarmonyOS_Sans_SC_Medium";
}
#service_list-page .list .inbox .rights-cons .tit:hover {
  color: var(--main-color);
}
#service_list-page .list .inbox .rights-cons .texts {
  font-size: 14px;
  color: #999999;
  margin-top: 15px;
  font-family: "HarmonyOS_Sans_SC_Regular";
}
#service_list-page .list .inbox .rights-cons .times {
  position: relative;
  margin-top: 15px;
  display: flex;
  align-items: center;
  font-family: "HarmonyOS_Sans_SC_Regular";
}
#service_list-page .list .inbox .rights-cons .times .line {
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 12px;
  background: #999999;
  margin: 0px 10px;
}
#service_list-page .list .inbox .rights-cons .times span {
  display: inline-block;
  vertical-align: middle;
  color: #999999;
  font-size: 14px;
}
#service_desc-page .banner {
  height: 180px;
  margin-top: 80px;
}
#service_desc-page .desc-container {
  position: relative;
}
#service_desc-page .desc-container .innerbox {
  position: relative;
  z-index: 1;
  margin-top: -80px;
  background-color: #f5f5f5;
  margin-bottom: 20px;
}
#service_desc-page .desc-container .main {
  position: relative;
  background: #ffffff;
  min-height: 700px;
  overflow: hidden;
}
#service_desc-page .desc-container .main .title {
  margin: 0px 30px;
  font-size: 24px;
  color: var(--text-dark);
  margin-top: 30px;
  font-family: "HarmonyOS_Sans_SC_Medium";
}
#service_desc-page .desc-container .main .info {
  font-size: 12px;
  color: #999999;
  margin: 0px 30px;
  height: 60px;
  line-height: 60px;
  border-bottom: 1px solid #e7e7e7;
}
#service_desc-page .desc-container .main .info .line {
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 10px;
  background-color: #c2c2c2;
  margin-left: 8px;
  margin-right: 8px;
}
#service_desc-page .desc-container .main .info span {
  display: inline-block;
  vertical-align: middle;
  font-family: "HarmonyOS_Sans_SC_Regular";
}
#service_desc-page .desc-container .main .texts {
  margin: 0px 30px;
  font-family: "HarmonyOS_Sans_SC_Regular";
}
#service_desc-page .desc-container .main .texts img {
  max-width: 100%;
  vertical-align: middle;
}
#service_desc-page .desc-container .siderbar {
  position: relative;
  background: #ffffff;
}
#service_desc-page .desc-container .siderbar .title-bar {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-left: 25px;
  margin-right: 25px;
  border-bottom: 1px solid #e7e7e7;
}
#service_desc-page .desc-container .siderbar .title-bar .icon_bar {
  display: inline-block;
  vertical-align: middle;
  height: 18px;
  width: 3px;
  background: #c6a167;
}
#service_desc-page .desc-container .siderbar .title-bar span {
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
  color: #212121;
  font-family: "HarmonyOS_Sans_SC_Regular";
}
#service_desc-page .desc-container .siderbar ul li {
  margin-left: 25px;
  margin-right: 25px;
  border-bottom: 1px solid #e7e7e7;
}
#service_desc-page .desc-container .siderbar ul li a {
  color: #6a6a6a;
  font-size: 14px;
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
  font-family: "HarmonyOS_Sans_SC_Regular";
}
#service_desc-page .desc-container .siderbar .btn-wrap {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
#service_desc-page .desc-container .siderbar .btn-wrap .btn-more {
  margin: 0px auto;
  height: 40px;
  line-height: 40px;
  width: 200px;
  background: var(--main-color);
  color: #fff;
  text-align: center;
  display: block;
  font-size: 14px;
  font-family: "HarmonyOS_Sans_SC_Regular";
  cursor: pointer;
}
#service_desc-page .desc-container .siderbar .btn-wrap .btn-more:hover {
  background: #cd9b5b;
  text-decoration: none;
}
#abouts-page .banner {
  margin-top: 80px;
}
#abouts-page .banner img {
  width: 100%;
  vertical-align: middle;
}
#abouts-page .abouts-container {
  margin-bottom: 0px;
  margin-top: 70px;
}
#abouts-page .abouts-container .left-title .tit {
  color: #000000;
  font-size: 35px;
  font-family: "HarmonyOS_Sans_SC_Medium";
  line-height: 1;
}
#abouts-page .abouts-container .left-title .line {
  height: 2px;
  width: 35px;
  background: var(--text-dark);
  margin-top: 20px;
  margin-bottom: 20px;
}
#abouts-page .abouts-container .left-title .en1 {
  font-family: HelveticaNeue;
  color: var(--text-dark);
  font-size: 25px;
  line-height: 1;
  font-family: "HarmonyOS_Sans_SC_Light";
}
#abouts-page .abouts-container .left-title .en2 {
  font-family: HelveticaNeue;
  color: var(--text-dark);
  font-size: 25px;
  line-height: 1;
  margin-top: 1px;
  font-family: "HarmonyOS_Sans_SC_Light";
}
#abouts-page .abouts-container .right-context {
  border-left: 1px solid #d0d0d0;
  padding-left: 40px;
  font-family: "HarmonyOS_Sans_SC_Regular";
  color: #333333;
}
#abouts-page .abouts-container .right-context img {
  max-width: 100%;
}
#abouts-page .team-container .pic {
  height: 768px;
}
#abouts-page .map-container {
  overflow: hidden;
  margin-top: 110px;
}
#abouts-page .map-container .innerbox {
  margin-top: 0px;
  margin-bottom: 65px;
  padding-left: 0px;
}
#abouts-page .map-container .left-text {
  position: relative;
  margin-top: 7px;
  margin-bottom: 40px;
}
#abouts-page .map-container .left-text .zh-name {
  color:#000000;
  font-size: 22px;
  font-family: "HarmonyOS_Sans_SC_Medium";
}
#abouts-page .map-container .left-text .en-name {
  color: #000000;
  font-size: 16px;
  margin-top: 0px;
  font-family: "siyuan-Regular";
}
#abouts-page .map-container .left-text .line {
  height: 1px;
  width: 60%;
  background: #d0d0d0;
  margin-top: 16px;
  margin-bottom: 16px;
}
#abouts-page .map-container .left-text .ol {
  color: var(--text-dark);
}
#abouts-page .map-container .left-text .ol .li {
  margin-bottom: 10px;
  font-family: "HarmonyOS_Sans_SC_Regular";
}
#abouts-page .map-container .left-text .ol .text-grey {
  color: #4d4d4d;
}
#abouts-page .map-container .right-qrcode .gz {
  text-align: center;
  font-family: "HarmonyOS_Sans_SC_Regular";
}
#abouts-page .map-container .pic img {
  width: 100%;
  vertical-align: middle;
}
#service_home-page .banner-container {
  margin-top: 80px;
}
#service_home-page .banner-container .swiper-slide img {
  width: 100%;
}
#service_home-page .banner-container .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 60px;
}
#service_home-page .banner-container .swiper-pagination-bullet {
  background-color: #e4eaea;
  opacity: 1;
  width: 33px;
  height: 1px;
  border-radius: 0px;
  margin: 0 18px;
}
#service_home-page .banner-container .swiper-pagination-bullet-active {
  background-color: #e4eaea;
  width: 33px;
  height: 3px;
  border-radius: 0px;
}
#service_home-page .case-container .list {
  margin-top: 0px;
}
#service_home-page .case-container .list .imgs {
  height: 100%;
  overflow: hidden;
  border-radius: 25px;
}
#service_home-page .case-container .list .imgs img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
  border-radius: 25px;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#service_home-page .case-container .list .imgs img:hover {
  transform: scale(1.07);
  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
  -ms-transform: scale(1.07);
  -o-transform: scale(1.07);
}
#service_home-page .case-container .list .sidebar {
  background: #fff;
  height: 100%;
  border-radius: 25px;
}
#service_home-page .case-container .list .sidebar .pic img {
  width: 100%;
  vertical-align: middle;
  border-radius: 25px 25px 0px 0px;
}
#service_home-page .case-container .list .sidebar .name {
  text-align: center;
  color: var(--text-dark);
  font-size: 22px;
  margin-top: 30px;
  font-family: "HarmonyOS_Sans_SC_Medium";
}
#service_home-page .case-container .list .sidebar .desc {
  color: #999999;
  text-align: center;
  font-size: 13px;
  margin: 0px 30px;
  margin-top: 25px;
  font-family: "HarmonyOS_Sans_SC_Light";
}
#service_home-page .case-container .list .sidebar .service-text {
  margin: 0px 35px;
  margin-top: 50px;
}
#service_home-page .case-container .list .sidebar .service-text .h6 {
  color: var(--text-dark);
  font-family: "HarmonyOS_Sans_SC_Medium";
}
#service_home-page .case-container .list .sidebar .service-text .texts {
  color: var(--text-dark);
  font-size: 13px;
  font-family: "HarmonyOS_Sans_SC_Light";
}
#service_home-page .case-container .list .sidebar .service-text .texts span {
  font-size: 12px;
  display: block;
  float: left;
  width: 25%;
  margin-bottom: 6px;
  font-family: "HarmonyOS_Sans_SC_Light";
}
#service_home-page .case-container .list .sidebar .more {
  text-align: center;
  margin-top: 50px;
}
#service_home-page .case-container .list .sidebar .more .btn-more {
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  background: #fff;
  border: 1px solid #c6a167;
  color: #c6a167;
  -webkit-appearance: none;
  text-align: center;
  box-sizing: border-box;
  outline: none;
  margin: 0;
  transition: 0.1s;
  font-weight: 500;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  font-size: 14px;
  border-radius: 20px;
  padding: 12px 40px;
  font-family: "HarmonyOS_Sans_SC_Regular";
}
#service_home-page .case-container .list .sidebar .more .btn-more:focus,
#service_home-page .case-container .list .sidebar .more .btn-more:hover {
  color: #c6a167;
  border-color: #dbc5a3;
  background-color: #fffcf7;
  text-decoration: none;
}
#service_home-page .case-container .list .btext {
  color: var(--text-dark);
  font-size: 14px;
  margin-top: 12px;
  margin-bottom: 30px;
  font-family: "HarmonyOS_Sans_SC_Light";
}
#case_list-page .banner-container {
  margin-top: 80px;
}
#case_list-page .banner-container img {
  width: 100%;
  vertical-align: middle;
}
#case_list-page .tab-container .innerbox {
  overflow: hidden;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}
#case_list-page .tab-container .innerbox::-webkit-scrollbar {
  display: none;
}
#case_list-page .tab-container .box {
  background: #fff;
  margin-top: 75px;
  margin-bottom: 27px;
  text-align: left;
  cursor: pointer;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 30px;
  white-space: nowrap;
}
#case_list-page .tab-container .box .zh-tit {
  color: #7c7b7b;
  font-family: "HarmonyOS_Sans_SC_Medium";
  font-size: 16px;
}
#case_list-page .tab-container .box.active .zh-tit {
  color: #c6a167;
}
#case_list-page .tab-container .line {
  background-color: #d9dada;
  height: 2px;
  margin-bottom: 45px;
}
#case_list-page .list-container {
  margin-bottom: 50px;
}
#case_list-page .list-container .box {
  background: #fff;
  overflow: hidden;
  display: block;
  margin-bottom: 18px;
}
#case_list-page .list-container .box .pics {
  overflow: hidden;
  position: relative;
}
#case_list-page .list-container .box .pics img {
  width: 100%;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#case_list-page .list-container .box .pics img:hover {
  transform: scale(1.07);
  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
  -ms-transform: scale(1.07);
  -o-transform: scale(1.07);
}
#case_list-page .list-container .box .text-box {
  position: relative;
  overflow: hidden;
}
#case_list-page .list-container .box .name {
  margin: 0px 20px;
  margin-top: 11px;
  font-size: 16px;
  color: var(--text-dark);
  font-family: "HarmonyOS_Sans_SC_Regular";
}
#case_list-page .list-container .box .texts {
  margin: 0px 20px;
  font-size: 14px;
  color: #999999;
  font-family: "HarmonyOS_Sans_SC_Light";
  margin-bottom: 11px;
  margin-top: 5px;
}
#case_list-page .list-container .box:hover {
  text-decoration: none;
}
#case_list-page .list-container .box:hover .text-box {
  background: #d2a26f;
}
#case_list-page .list-container .box:hover .text-box .name {
  color: #fff;
}
#case_list-page .list-container .box:hover .text-box .texts {
  color: #fff;
}
#case_list-page .el-pager li {
  background: #f5f5f5;
}
#case_list-page .el-pagination button:disabled {
  background: #f5f5f5;
}
#case_list-page .el-pagination .btn-next,
#case_list-page .el-pagination .btn-prev {
  background: #f5f5f5;
}
#case_desc-page .banner {
  margin-top: 80px;
}
#case_desc-page .banner img {
  width: 100%;
  vertical-align: middle;
}
#case_desc-page .desc-container {
  position: relative;
}
#case_desc-page .desc-container .left-title {
  text-align: center;
  margin-top: 70px;
}
#case_desc-page .desc-container .left-title .t1 {
  color: #000000;
  font-family: "HarmonyOS_Sans_SC_Medium";
  font-size: 20px;
  line-height: 1;
  text-align: left;
  padding-left: 190px;
  font-weight: 600;
}
#case_desc-page .desc-container .left-title .t2 {
  font-size: 14px;
  color: #000000; 
  line-height: 1;
  font-family: "HarmonyOS_Sans_SC_Regular";
  text-align: left;
  margin-top: 5px;
  padding-left: 190px;
  font-weight: 600;
}
#case_desc-page .desc-container .right-content {
  position: relative;
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 80px;
}
#case_desc-page .desc-container .right-content .item1 ul li {
  line-height: 1;
  font-family: "HarmonyOS_Sans_SC_Regular";
  margin-bottom: 3px;
}
#case_desc-page .desc-container .right-content .item1 ul li span:nth-child(1) {
  color: #999999;
  font-size: 13px;
  margin-right: 15px;
}
#case_desc-page .desc-container .right-content .item1 ul li span:nth-child(2) {
  color: #000000;
  font-size: 12px;
  font-weight: 600;
}
#case_desc-page .desc-container .right-content .item2 {
  font-size: 13px;
  margin-top: 22px;
  font-family: "HarmonyOS_Sans_SC_Regular";
}
#case_desc-page .desc-container .right-content .item2 .tt {
  color: #000000;
  font-weight: 600;
}
#case_desc-page .desc-container .right-content .item2 .cc {
  color: #999;
}
#case_desc-page .desc-container .contents img {
  vertical-align: middle;
  max-width: 100%;
}
#case_desc-page .line {
  background-color: #dcdcdc;
  height: 2px;
}
#case_desc-page .other-container {
  background-color: #ffffff;
  margin-bottom: 60px;
  position: relative;
}
#case_desc-page .other-container .box-next-prev {
  font-size: 0px;
  position: relative;
  margin-top: 45px;
  margin-bottom: 18px;
}
#case_desc-page .other-container .button-prev {
  background-color: #fff;
  width: 40px;
  height: auto;
  z-index: 1;
  cursor: pointer;
}
#case_desc-page .other-container .button-prev img {
  width: 100%;
  vertical-align: middle;
}
#case_desc-page .other-container .button-next {
  background-color: #fff;
  width: 40px;
  height: auto;
  z-index: 1;
  cursor: pointer;
}
#case_desc-page .other-container .button-next img {
  width: 100%;
  vertical-align: middle;
}
#case_desc-page .other-container .box {
  background: #fff;
  overflow: hidden;
}
#case_desc-page .other-container a:hover{
   text-decoration: none;
}
#case_desc-page .other-container .box .pics {
  overflow: hidden;
  position: relative;
}
#case_desc-page .other-container .box .pics img {
  width: 100%;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#case_desc-page .other-container .box .pics img:hover {
  transform: scale(1.07);
  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
  -ms-transform: scale(1.07);
  -o-transform: scale(1.07);
}
#case_desc-page .other-container .box .text-box {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
#case_desc-page .other-container .box .name {
  margin: 0px 20px;
  margin-top: 11px;
  font-size: 18px;
  color: var(--text-dark);
  font-family: "HarmonyOS_Sans_SC_Regular";
}
#case_desc-page .other-container .box .texts {
  margin: 0px 20px;
  font-size: 14px;
  color: #333333;
  font-family: "HarmonyOS_Sans_SC_Light";
  margin-bottom: 11px;
  margin-top: 5px;
}
#case_desc-page .other-container .box:hover {
  text-decoration: none;
}
#case_desc-page .other-container .box:hover .text-box {
  background: #d2a26f;
}
#case_desc-page .other-container .box:hover .text-box .name {
  color: #fff;
}
#case_desc-page .other-container .box:hover .text-box .texts {
  color: #fff;
}
@font-face {
  font-family: "iconfont";
  /* Project id  */
  src: url('../fonts/iconfont.ttf?t=1649212000563') format('truetype');
}
@font-face {
  font-family: "HelveticaNeue";
  /* Project id  */
  src: url('../fonts/HelveticaNeue-UltraLight.otf') format('truetype');
}
@font-face {
  font-family: "HarmonyOS_Sans_SC_Black";
  /* Project id  */
  src: url('../fonts/HarmonyOS_Sans_SC_Black.ttf') format('truetype');
}
@font-face {
  font-family: "HarmonyOS_Sans_SC_Bold";
  /* Project id  */
  src: url('../fonts/HarmonyOS_Sans_SC_Bold.ttf') format('truetype');
}
@font-face {
  font-family: "HarmonyOS_Sans_SC_Light";
  /* Project id  */
  src: url('../fonts/HarmonyOS_Sans_SC_Light.ttf') format('truetype');
}
@font-face {
  font-family: "HarmonyOS_Sans_SC_Medium";
  /* Project id  */
  src: url('../fonts/HarmonyOS_Sans_SC_Medium.ttf?33') format('truetype');
}
@font-face {
  font-family: "HarmonyOS_Sans_SC_Regular";
  /* Project id  */
  src: url('../fonts/HarmonyOS_Sans_SC_Regular.ttf') format('truetype');
}
@font-face {
  font-family: "HarmonyOS_Sans_SC_Thin";
  /* Project id  */
  src: url('../fonts/HarmonyOS_Sans_SC_Thin.ttf') format('truetype');
}
@font-face {
  font-family: "siyuan-Bold";
  /* Project id  */
  src: url('../fonts/siyuan-Bold.ttf') format('truetype');
}
@font-face {
  font-family: "siyuan-ExtraLight";
  /* Project id  */
  src: url('../fonts/siyuan-ExtraLight.ttf') format('truetype');
}
@font-face {
  font-family: "siyuan-Heavy";
  /* Project id  */
  src: url('../fonts/siyuan-Heavy.ttf') format('truetype');
}
@font-face {
  font-family: "siyuan-Light";
  /* Project id  */
  src: url('../fonts/siyuan-Light.ttf?3') format('truetype');
}
@font-face {
  font-family: "siyuan-Medium";
  /* Project id  */
  src: url('../fonts/siyuan-Medium.ttf') format('truetype');
}
@font-face {
  font-family: "siyuan-Normal";
  /* Project id  */
  src: url('../fonts/siyuan-Medium.ttf') format('truetype');
}
@font-face {
  font-family: "siyuan-Regular";
  /* Project id  */
  src: url('../fonts/siyuan-Regular.ttf') format('truetype');
}
@font-face {
  font-family: "HelveticaNeue-UltraLight";
  /* Project id  */
  src: url('../fonts/HelveticaNeue-UltraLight.otf') format('truetype');
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-fenlei:before {
  content: "\e62f";
}
.icon-bg-left:before {
  content: "\e638";
}
.icon-bg-right:before {
  content: "\e64c";
}
#side {
  width: 120px;
  height: 480px;
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}
#side .zixun {
  width: 120px;
  background: #fff;
  border-radius: 63px 63px 4px 4px;
  box-shadow: 0px 3px 10px rgba(5, 36, 82, 0.08);
  position: relative;
}
#side .zixun .kefu_avatar {
  width: 90px;
  height: 90px;
  margin-top: 15px;
}
#side .zixun .hot_phone {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: var(--text-grey);
  padding-left: 2px;
  font-family: "HarmonyOS_Sans_SC_Regular";
}
#side .zixun .phone_number {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 600;
  line-height: 16px;
  color: var(--text-dark);
  margin-top: 8px;
  font-family: "HarmonyOS_Sans_SC_Regular";
}
#side .work_code {
  width: 120px;
  /* height: 142px; */
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 3px 10px rgba(5, 36, 82, 0.08);
  padding-bottom: 10px;
}
#side .work_code .code_text {
  font-size: 13px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
  white-space: pre-wrap;
  margin-bottom: 0px;
  font-family: "HarmonyOS_Sans_SC_Regular";
}
#side .back_top {
  width: 120px;
  height: 36px;
  background: #fff;
  border: 1px solid #EEEEEE;
  border-radius: 4px;
  box-shadow: 0px 3px 10px rgba(5, 36, 82, 0.08);
  color: var(--text-dark);
  display: flex;
  justify-content: center;
  font-family: "HarmonyOS_Sans_SC_Regular";
}
#side .pointer {
  cursor: pointer;
}
#side .red_code {
  color: #e64141 !important;
}
#side .m-t-10 {
  margin-top: 10px;
}
#side .m-t-8 {
  margin-top: 8px;
}
#side .h-12 {
  height: 12px;
}
#side .w-12 {
  width: 12px;
}
#side .h-108 {
  height: 108px;
}
#side .w-108 {
  width: 108px;
}
#side .m-t-6 {
  margin-top: 6px;
}
#side .m-t-4 {
  margin-top: 4px;
}
#side .h-16 {
  height: 16px;
}
#side .w-16 {
  width: 16px;
}
#side .m-l-8 {
  margin-left: 8px;
}
#side .f-s-14 {
  font-size: 14px;
}
#side .p-l-10 {
  padding-left: 10px;
}
#side .d-none {
  display: none;
}
.flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.align-center {
  align-items: center;
}

.empty{
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    display: none;
}
.empty img{
    vertical-align: middle;
}
.empty .text{
    font-size: 15px;
    color: #999;
}