@font-face {
  font-family: 'Montserrat-Semi-Bold';
  src: url('../fonts/Montserrat-Semi-Bold.otf');
}
@font-face {
  font-family: 'Montserrat-Light';
  src: url('../fonts/Montserrat-Light.otf');
}
h1,
h2,
h3,
h4,
h5,
p {
  transition: all 0.5s;
}
html,
body {
  scroll-behavior: smooth;
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  background-color: #fff;
}
body::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}
body::-webkit-scrollbar-thumb {
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  background-color: #666;
}
body:hover::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
.out-header {
  height: 90px;
  width: 100%;
}
.container {
  max-width: 1520px;
  width: 85%;
  margin: 0 auto;
}
.blank {
  margin: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  min-height: 0 !important;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.5s;
}
header .header {
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
header .header .header-blank {
  height: 0;
  width: 38.5416667%;
}
header .header .logo {
  margin-left: 6.61458333%;
}
header .header .logo img {
  max-height: 100%;
}
header .header .lv1 {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  height: 100%;
}
header .header .lv1 > li {
  position: relative;
  padding-bottom: 5px;
}
header .header .lv1 > li a {
  font-size: 16px;
  color: #fff;
  transition: all 0.5s;
}
header .header .lv1 > li:hover::after {
  width: 100%;
}
header .header .lv1 > li::after {
  position: absolute;
  display: block;
  content: "";
  width: 0%;
  height: 2px;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s;
}
header .header .lv1 > .active > a {
  font-weight: 700;
}
header .header .lv1 > .active::after {
  width: 100%;
}
header .header .lv1 .header-tools {
  display: flex;
  height: 100%;
}
header .header .lv1 .search {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
header .header .lv1 .search .search-btn {
  width: 90px;
  line-height: 90px;
  text-align: center;
  cursor: pointer;
  background-color: #fff;
  color: #434343;
  font-size: 18px;
  height: 100%;
}
header .header .lv1 .search form {
  position: absolute;
  opacity: 0;
  transition: all 0.5s;
  right: 0;
  visibility: hidden;
}
header .header .lv1 .search form input {
  outline: none;
  width: 126px;
  height: 35px;
  color: #666;
  font-size: 14px;
  border: 1px solid rgba(102, 102, 102, 0.5);
  border-radius: 17.5px;
  background-color: #fff;
  padding: 0 32px 0 16px;
  transition: all 0.5s;
}
header .header .lv1 .search form input::placeholder {
  color: #ccc;
}
header .header .lv1 .search form input:focus {
  border-color: rgba(102, 102, 102, 0.8);
}
header .header .lv1 .search form button {
  position: absolute;
  top: 50%;
  right: 13px;
  font-size: 14px;
  color: #999;
  outline: none;
  border: 0;
  transform: translateY(-50%);
  background-color: transparent;
  cursor: pointer;
}
header .header .lv1 .search:hover form {
  right: 100%;
  opacity: 1;
  visibility: visible;
}
header .header .lv1 .menu {
  position: relative;
  z-index: 1;
  width: 90px;
  line-height: 90px;
  background-color: #e2ad2e;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
header .header .lv1 .menu .menu-bar {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
header .header .lv1 .menu .menu-bar em {
  display: block;
  width: 23px;
  height: 2px;
  background-color: #fff;
  margin-bottom: 7px;
  transition: all 0.5s;
  transform-origin: -1px center;
}
header .header .lv1 .menu .menu-bar em:last-of-type {
  margin-bottom: 0;
}
header .header .lv1 .menu .menu-on {
  overflow: visible;
}
header .header .lv1 .menu .menu-on em:nth-child(1) {
  transform: rotate(45deg);
}
header .header .lv1 .menu .menu-on em:nth-child(2) {
  opacity: 0;
}
header .header .lv1 .menu .menu-on em:nth-child(3) {
  transform: rotate(-45deg);
}
header .header .menu-list {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0%;
  width: 300px;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 90px 0 0 40px;
  visibility: hidden;
  transform: scale(0);
  transform-origin: right top;
  opacity: 0;
  transition: all 0.8s;
}
header .header .menu-list .menu-lv1 {
  visibility: hidden;
}
header .header .menu-list li {
  position: relative;
  line-height: 2;
  margin-bottom: 15px;
  text-align: left;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s;
}
header .header .menu-list li a {
  color: #fff;
  font-size: 16px;
}
header .header .menu-list li::after {
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  height: 1px;
  background-color: #fff;
  transition: 1s;
  left: 0;
}
header .header .menu-list li:hover {
  transition-delay: 0s !important;
  padding-left: 15px;
}
header .header .menu-list li:hover::after {
  width: 100%;
}
header .header .menu-list-show {
  right: 0;
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
header .header .menu-list-show .menu-lv1 {
  visibility: visible;
}
header .header .menu-list-show li {
  opacity: 1;
  transform: translateY(0);
}
header .header .menu-list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  background-color: #fff;
}
header .header .menu-list::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}
header .header .menu-list::-webkit-scrollbar-thumb {
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  background-color: #ccc;
}
header .header .menu-list:hover::-webkit-scrollbar-thumb {
  background-color: #666;
}
header .header .lv2 {
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #f5f5f5;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
header .header .lv2 p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 43px;
  padding: 0 20px;
  transition: all 0.5s;
}
header .header .lv2 p a {
  color: #666;
  transition: all 0.5s;
}
header .header .lv2 p:hover {
  background-color: #4fb025;
}
header .header .lv2 p:hover a {
  color: #fff;
}
header .header .lv1 > li:hover .lv2 {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.inner-header {
  background-color: #fff;
}
.inner-header .header .lv1 > li a {
  color: #333;
}
.inner-header .header .lv1 .search .lang a {
  color: #333;
}
.inner-header .header .lv1 .search .lang .act {
  color: #326295;
}
.inner-header .header .lv1 .search form input {
  color: #333;
  border-color: #666;
}
.inner-header .header .lv1 .search form input::placeholder {
  color: #666;
}
.inner-header .header .lv1 .search form input:focus {
  border-color: rgba(0, 0, 0, 0.2);
}
.header-fixed {
  position: fixed;
  animation: top-bottom 0.8s ease-in-out;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2), 0 10px 15px rgba(0, 0, 0, 0.1);
  mix-blend-mode: luminosity;
}
@keyframes top-bottom {
  0% {
    transform: translate(0, -100%);
  }
  100% {
    transform: translate(0, 0);
  }
}
.box {
  width: 100%;
  text-align: center;
  margin-top: 3.2895%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pagination {
  display: flex !important;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
}
.pagination > li a {
  display: block;
  padding: 10.5px 12.5px 8.5px 12.5px;
  line-height: 1;
  border: 1px solid #d0e5f6;
  background-color: #fff;
  margin: 3px 8px;
  color: #333;
  border-radius: 50%;
  transition: all 0.5s;
}
.pagination > .btn a {
  border-radius: 0;
  border: none;
}
.pagination .active a {
  color: #fff;
  background-color: #e2ad2e;
  border: 1px solid transparent;
}
.pagination .active a:hover {
  color: #fff;
}
.pagination li a:hover {
  color: #e2ad2e;
}
.pagination .disabled a {
  color: #ccc !important;
  cursor: not-allowed;
}
.box .total {
  color: #999;
  margin-left: 10px;
}
.index-banner img {
  display: block;
  width: 100%;
  object-fit: cover;
  min-height: 235px;
}
.index-banner .index-banner-swiper .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.index-banner .index-banner-swiper .container h2 {
  font-size: 38px;
  font-family: 'Montserrat-Semi-Bold';
  line-height: 1.3;
  transform: translateY(100px);
  opacity: 0;
  transition-delay: 0.2s;
}
.index-banner .index-banner-swiper .container em {
  display: block;
  width: 35px;
  height: 2px;
  background-color: #fff;
  margin: 44px 0 24px;
  transition: all 0.5s;
  transform: translateY(100px);
  opacity: 0;
  transition-delay: 0.3s;
}
.index-banner .index-banner-swiper .container h5 {
  font-size: 20px;
  font-family: 'Montserrat-Light';
  line-height: 1.4;
  margin-bottom: 3px;
  transform: translateY(100px);
  opacity: 0;
  transition-delay: 0.4s;
}
.index-banner .index-banner-swiper .container h4 {
  font-size: 28px;
  font-family: 'Noto Sans SC', sans-serif;
  line-height: 1.4;
  transform: translateY(100px);
  opacity: 0;
  transition-delay: 0.5s;
}
.index-banner .index-banner-swiper .swiper-slide-active .container h2,
.index-banner .index-banner-swiper .swiper-slide-active .container em,
.index-banner .index-banner-swiper .swiper-slide-active .container h5,
.index-banner .index-banner-swiper .swiper-slide-active .container h4 {
  transform: translateY(0);
  opacity: 1;
}
.index-banner .index-banner-swiper .swiper-pagination {
  bottom: 4.375%;
}
.index-banner .index-banner-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 112px;
  height: 2px;
  background-color: #fff;
  border-radius: 0;
  transition: all 0.5s;
  margin: 0 12px;
}
.index-title {
  position: relative;
  z-index: 1;
  text-align: center;
}
.index-title h2 {
  position: relative;
  font-size: 48px;
  font-weight: 700;
  color: #000;
  display: inline-block;
}
.index-title h2::before {
  content: attr(title);
  position: absolute;
  white-space: nowrap;
  font-size: 115px;
  color: #e3e3e3;
  font-weight: 700;
  z-index: -1;
  left: 50%;
  top: -50%;
  line-height: 1;
  transform: translate(-50%, 0);
}
.index-title h2::after {
  content: "";
  position: relative;
  display: block;
  width: 45px;
  height: 4px;
  background-color: #e2ad2e;
  margin: 4px auto 0;
}
.index-title-left {
  text-align: left;
}
.index-title-left h2::before {
  left: 0;
  transform: translate(0, 0);
}
.index-title-left h2::after {
  margin: 4px 0 0;
}
.index-about {
  margin-top: 4.58333%;
}
.index-about .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index-about .container .lt {
  width: 45.6579%;
  margin-top: 4%;
}
.index-about .container .lt .index-title {
  text-align: left;
}
.index-about .container .lt .index-title h2 {
  margin-bottom: 6.34006%;
}
.index-about .container .lt .brief {
  font-size: 18px;
  color: #333;
  text-align: justify;
}
.index-about .container .lt .more {
  display: inline-block;
  background-color: #e2ad2e;
  width: 167px;
  line-height: 48px;
  height: 48px;
  text-align: center;
  margin-top: 7.204611%;
}
.index-about .container .lt .more a {
  position: relative;
  margin: 2px auto;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  display: block;
  color: #fff;
  font-size: 16px;
  background: url('../images/about-more-border.png') no-repeat;
  background-size: 100% 100%;
}
.index-about .container .rt {
  position: relative;
  width: 44.737%;
  background: url('../images/index-about-bg.jpg');
}
.index-about .container .rt .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 64.7059%;
  top: 32px;
  left: -34px;
  overflow: hidden;
}
.index-about .container .rt .pic img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-about .container .rt .pic:hover img {
  transform: scale(1.05);
}
.index-about-data {
  margin-top: 6.1458333%;
}
.index-about-data .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #ebe3d0;
  border-bottom: 1px solid #ebe3d0;
  padding: 18px 0 28px 0;
}
.index-about-data .container em {
  display: block;
  width: 1px;
  height: 30px;
  background-color: #ebe3d0;
}
.index-about-data .container em:last-of-type {
  display: none;
}
.index-about-data .container .block {
  text-align: center;
}
.index-about-data .container .block h2 {
  font-size: 40px;
  color: #e2ad2e;
  font-weight: 700;
  line-height: 1.8;
}
.index-about-data .container .block p {
  font-size: 17px;
  color: #333;
}
.index-about-data .container .block p span {
  font-size: 14px;
}
.index-business {
  margin-top: 7.2916667%;
}
.index-business .index-title {
  margin-bottom: 1.8229167%;
}
.index-business .index-business-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.index-business .index-business-wrapper .block {
  width: 50%;
  transition: all 0.5s;
  transform-origin: center;
}
.index-business .index-business-wrapper .block .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 68.2291667%;
  transition: all 1s;
}
.index-business .index-business-wrapper .block .pic a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.index-business .index-business-wrapper .block .pic a::after {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: translateZ(500px);
}
.index-business .index-business-wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.index-business .index-business-wrapper .block .pic .link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  transition: all 0.5s;
  transition-delay: 0.3s;
}
.index-business .index-business-wrapper .block .pic .link h3 {
  font-size: 30px;
  color: #fff;
}
.index-business .index-business-wrapper .block .pic .link h5 {
  font-size: 16px;
  color: #fff;
}
.index-business .index-business-wrapper .block .pic .link span {
  position: relative;
  display: inline-block;
  width: 51px;
  height: 51px;
  line-height: 51px;
  color: #c3952a;
  background-color: #fff;
  border-radius: 50%;
  z-index: 1;
  margin-top: 30px;
  transition: all 0.5s;
}
.index-business .index-business-wrapper .block .pic .link span::after {
  display: block;
  position: absolute;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  transition: all 0.5s;
}
@keyframes water {
  0% {
    width: 100%;
    height: 100%;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}
.index-business .index-business-wrapper .block:hover .pic {
  transition: all 0s;
}
.index-business .index-business-wrapper .block:hover .pic .link {
  transform: translate(-50%, -50%) translateZ(100px);
  filter: drop-shadow(0 15px 2px rgba(0, 0, 0, 0.3));
}
.index-business .index-business-wrapper .block:hover .pic .link span {
  color: #fff;
  background-color: #e2ad2e;
}
.index-business .index-business-wrapper .block:hover .pic .link span::after {
  background-color: #e2ad2e;
  animation: water 2s infinite linear;
}
.index-case {
  margin-top: 7.5%;
}
.index-case .index-title {
  margin-bottom: 3.026316%;
}
.index-case .index-case-tab {
  display: flex;
  justify-content: center;
  margin-bottom: 4.079%;
}
.index-case .index-case-tab li {
  margin: 0 18px;
}
.index-case .index-case-tab li a {
  display: block;
  width: 148px;
  line-height: 45px;
  color: #333;
  font-size: 18px;
  text-align: center;
  transition: all 0.5s;
  border: 1px solid #565656;
}
.index-case .index-case-tab li a:hover {
  color: #e2ad2e;
}
.index-case .index-case-tab .active a {
  border: 1px solid transparent;
  background-color: #e2ad2e;
  color: #fff !important;
}
.index-case .index-case-container {
  position: relative;
}
.index-case .index-case-wrapper {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transform: translate(0, 30%) scale(0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  transition: all 1.5s;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.175);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.175);
  transform-style: preserve-3d;
  perspective: 1000px;
}
.index-case .index-case-wrapper .block {
  width: 32.56579%;
  background-color: #f5f5f5;
  margin-bottom: 18px;
  transition: all 0.5s;
}
.index-case .index-case-wrapper .block .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 63.43434%;
  overflow: hidden;
}
.index-case .index-case-wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-case .index-case-wrapper .block .title {
  padding: 15px 20px 14px 19px;
}
.index-case .index-case-wrapper .block .title h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333;
  font-size: 20px;
}
.index-case .index-case-wrapper .block .title h3 a {
  color: #333;
  transition: all 0.5s;
  font-size: 20px;
  font-weight: 700;
}
.index-case .index-case-wrapper .block .title p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  color: #999;
}
.index-case .index-case-wrapper .block .title p a {
  font-size: 14px;
  color: #999;
}
.index-case .index-case-wrapper .block .title .more {
  border-top: 1px solid #ececec;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 10px;
}
.index-case .index-case-wrapper .block .title .more span {
  font-size: 14px;
  color: #999;
}
.index-case .index-case-wrapper .block .title .more em {
  display: block;
  width: 27px;
  height: 8px;
  background: url('../images/index-case-arrow.png') no-repeat;
  filter: grayscale(1);
  opacity: 0.5;
  transition: all 0.5s;
}
.index-case .index-case-wrapper .block:hover {
  transform: translate3d(0, -1px, 5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
}
.index-case .index-case-wrapper .block:hover .pic img {
  transform: scale(1.02);
}
.index-case .index-case-wrapper .block:hover .title h3 a {
  color: #c89827;
}
.index-case .index-case-wrapper .block:hover .title .more span {
  color: #c89827;
}
.index-case .index-case-wrapper .block:hover .title .more em {
  opacity: 1;
  filter: grayscale(0);
}
.index-case .show {
  position: relative;
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0) scale(1);
  z-index: 1;
}
.index-news {
  margin-top: 6.97916667%;
}
.index-news .index-title {
  margin-bottom: 5.921053%;
}
.index-news .index-news-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.index-news .index-news-wrapper .lt {
  width: 41.907895%;
}
.index-news .index-news-wrapper .lt .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 64.05024%;
  overflow: hidden;
  border-radius: 8px;
}
.index-news .index-news-wrapper .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.index-news .index-news-wrapper .lt .pic .mask {
  position: absolute;
  width: 100%;
  line-height: 65px;
  text-align: center;
  background-color: rgba(29, 29, 29, 0.2);
  left: 0;
  bottom: 0;
  padding: 0 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
}
.index-news .index-news-wrapper .lt .pic .mask a {
  color: #fff;
  font-size: 16px;
}
.index-news .index-news-wrapper .lt .pic:hover img {
  transform: scale(1.05);
}
.index-news .index-news-wrapper .rt {
  width: 54.144737%;
}
.index-news .index-news-wrapper .rt .row {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #eee;
  padding-bottom: 16px;
  margin-bottom: 3.2807%;
}
.index-news .index-news-wrapper .rt .row .date {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  white-space: nowrap;
  padding-right: 34px;
  border-right: 1px solid #dcdcdc;
  margin-right: 31px;
  color: #4a4a4a;
}
.index-news .index-news-wrapper .rt .row .date h3 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.index-news .index-news-wrapper .rt .row .date h5 {
  font-size: 16px;
  line-height: 1;
}
.index-news .index-news-wrapper .rt .row .title {
  width: calc(100% - 120px);
}
.index-news .index-news-wrapper .rt .row .title h4 {
  font-size: 18px;
  color: #151515;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  margin-bottom: 5px;
}
.index-news .index-news-wrapper .rt .row .title h4 a {
  font-size: 18px;
  color: #151515;
  transition: all 0.5s;
}
.index-news .index-news-wrapper .rt .row .title p {
  font-size: 14px;
  color: #4a4a4a;
  height: 4em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-news .index-news-wrapper .rt .row .title p a {
  font-size: 14px;
  color: #4a4a4a;
  transition: all 0.5s;
}
.index-news .index-news-wrapper .rt .row:hover .date {
  color: #e2ad2e;
}
.index-news .index-news-wrapper .rt .row:hover .title h4 a {
  color: #e2ad2e;
}
.index-news .index-news-wrapper .rt .row:hover .title p a {
  color: #e2ad2e;
  opacity: 0.65;
}
.index-news .index-news-wrapper .rt .row:last-of-type {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}
.index-globalization {
  background: url('../images/index-global-bg.jpg') no-repeat;
  background-size: cover;
  padding: 4.4791667% 0 2%;
  margin-top: 5.4166667%;
}
.index-globalization .index-title {
  margin-bottom: 7.894737%;
}
.index-globalization .index-title h2::before {
  color: rgba(255, 255, 255, 0.2);
}
.index-globalization .index-title h2 {
  color: #fff;
}
.index-globalization .index-title h2::after {
  background-color: #fff;
}
.index-globalization .global-business-wrapper {
  max-width: 1160px;
  margin: 0 auto;
}
.index-globalization .global-business-wrapper ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index-globalization .global-business-wrapper ul li {
  border: 1px solid #fff;
  line-height: 46px;
  border-radius: 23px;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all 0.5s;
  padding: 0 20px 0 26px;
  font-size: 16px;
  color: #fff;
  margin: 0 50px;
}
.index-globalization .global-business-wrapper ul li span {
  font-weight: 700;
}
.index-globalization .global-business-wrapper ul li em {
  display: inline-block;
  width: 20px;
  height: 26px;
  background: url('../images/index-location-icon.png') no-repeat;
  background-position: 0 0;
  vertical-align: middle;
  transition: all 0.5s;
  margin-right: 6px;
}
.index-globalization .global-business-wrapper ul li:hover {
  border-color: #c89827;
  background-color: rgba(200, 152, 39, 0.2);
  color: #c89827;
  mix-blend-mode: color-dodge;
  animation: rubberBand 1s !important;
}
.index-globalization .global-business-wrapper ul li:hover em {
  background-position: 0 -61px;
}
.index-globalization .global-business-wrapper ul li:nth-child(even) {
  margin-top: 20px;
  margin-bottom: 10px;
}
.index-globalization .global-business-wrapper ul li:nth-child(odd) {
  margin-bottom: 10px;
}
footer {
  background-color: #333;
}
footer .footer-top {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 4.166667% 0 5.2083333%;
}
footer .footer-top p {
  font-size: 16px;
  color: #fff;
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 300;
}
footer .footer-top p i {
  width: 17px;
  margin-right: 11px;
}
footer .footer-top .site-info .logo {
  margin-bottom: 33px;
}
footer .footer-top .site-info p {
  margin-bottom: 14px;
}
footer .footer-top .site-qrcode {
  text-align: center;
}
footer .footer-top .site-qrcode p {
  margin-top: 13px;
}
footer .footer-top .site-menu {
  font-family: 'Noto Sans SC', sans-serif;
}
footer .footer-top .site-menu h3 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
footer .footer-top .site-menu h3::after {
  content: "";
  display: block;
  position: relative;
  width: 25px;
  height: 2px;
  background-color: #fff;
  margin: 12px 0 18px;
}
footer .footer-top .site-menu p {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 14px;
}
footer .footer-top .site-menu p a {
  color: #fff;
  transition: all 0.5s;
}
footer .footer-top .site-menu p a:hover {
  color: rgba(255, 255, 255, 0.6);
}
footer .footer-bt {
  background-color: #1f1f1f;
}
footer .footer-bt .container {
  height: 50px;
  display: flex;
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
  align-items: center;
}
footer .footer-bt .container p {
  line-height: 1.5;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 300;
}
footer .footer-bt .container p a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.5s;
}
footer .footer-bt .container p a:hover {
  color: #fff;
}
.inner-banner img {
  display: block;
  width: 100%;
  min-height: 180px;
  object-fit: cover;
}
.bread-crumb {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.bread-crumb .block {
  display: inline-block;
  width: 208px;
  height: 218px;
  background-color: #e2ad2e;
  border-radius: 6px;
  color: #fff;
  padding: 36px 0 0 23px;
  position: relative;
  z-index: 1;
  margin-top: -6.57895%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bread-crumb .block img {
  position: absolute;
  opacity: 0.23;
  right: 0;
  bottom: 0;
}
.bread-crumb .block h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
}
.bread-crumb .block h4 {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.5;
}
.bread-crumb .block em {
  flex: 1;
  width: 1px;
  background-color: #fff;
  margin-top: 10px;
}
.bread-crumb .bread-crumb-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 3.684211%;
}
.bread-crumb .bread-crumb-wrapper ul {
  display: flex;
}
.bread-crumb .bread-crumb-wrapper ul li {
  position: relative;
  margin-right: 83px;
  font-size: 18px;
}
.bread-crumb .bread-crumb-wrapper ul li a {
  color: #333;
  transition: all 0.5s;
}
.bread-crumb .bread-crumb-wrapper ul li a:hover {
  color: #e2ad2e;
}
.bread-crumb .bread-crumb-wrapper ul li:last-of-type {
  margin-right: 0;
}
.bread-crumb .bread-crumb-wrapper ul .active a {
  color: #e2ad2e;
  font-weight: 700;
}
.bread-crumb .bread-crumb-wrapper ul .active::after {
  content: "";
  position: absolute;
  display: block;
  width: 18px;
  height: 2px;
  background-color: #e2ad2e;
  bottom: -19px;
  left: 50%;
  transform: translate(-50%, 100%);
}
.bread-crumb .bread-crumb-wrapper p {
  font-size: 14px;
  color: #666;
}
.bread-crumb .bread-crumb-wrapper p i {
  display: inline-block;
  width: 17px;
  height: 15px;
  background-image: url('../images/home-icon.png');
  margin-right: 6px;
  vertical-align: middle;
}
.bread-crumb .bread-crumb-wrapper p a {
  color: #666;
  transition: all 0.5s;
}
.bread-crumb .bread-crumb-wrapper p a:hover {
  color: #c3952a;
}
.inner-about {
  margin: 8.38541667% 0 4.166667%;
}
.inner-about-profile .index-title {
  margin-bottom: 4.5394737%;
}
.inner-about-profile .about-profile {
  position: relative;
  padding-top: 3.684211%;
  /* background: url('../images/about-profile-bg.png') no-repeat;
  background-position: top center; */
}
.inner-about-profile .about-profile .bg {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 30%;
  z-index: -1;
}
.inner-about-profile .about-profile .brief {
  columns: 2;
  overflow: hidden;
  font-size: 16px;
  text-align: justify;
  color: #333;
  margin-bottom: 4.8684211%;
}
.inner-about-profile .about-data {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.inner-about-profile .about-data .lt {
  width: 47.82895%;
}
.inner-about-profile .about-data .lt .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 52.407153%;
}
.inner-about-profile .about-data .lt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.inner-about-profile .about-data .lt .pic:hover img {
  transform: scale(1.05);
}
.inner-about-profile .about-data .rt {
  width: 38%;
}
.inner-about-profile .about-data .rt ul {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-content: space-around;
  flex-wrap: wrap;
}
.inner-about-profile .about-data .rt ul li {
  position: relative;
  width: 50%;
  border-left: 1px solid #dcdcdc;
  padding-left: 13px;
}
.inner-about-profile .about-data .rt ul li h2 {
  color: #e2ad2e;
  font-size: 52px;
  line-height: 1;
  margin: -8px 0 10px;
}
.inner-about-profile .about-data .rt ul li h2 span {
  font-weight: 700;
  font-family: 'Abel', sans-serif;
}
.inner-about-profile .about-data .rt ul li h2 em {
  font-size: 12px;
}
.inner-about-profile .about-data .rt ul li p {
  font-size: 16px;
  font-weight: 300;
  font-family: 'Noto Sans SC', sans-serif;
  color: #666;
  line-height: 1.2;
}
.inner-about-profile .about-data .rt ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: -1px;
  top: 0;
  width: 1px;
  height: 29px;
  transition: all 0.5s;
  background-color: #e2ad2e;
}
.inner-about-profile .about-data .rt ul li:hover::before {
  height: 100%;
}
.inner-about-dev .bg {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
  z-index: -1;
}
.inner-about-dev .index-title {
  margin-bottom: 4.4079%;
}
.inner-about-dev .dev-head {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  background-color: #f5f5f5;
}
.inner-about-dev .dev-head h2 {
  position: absolute;
  font-size: 47px;
  font-weight: 700;
  font-family: 'Noto Serif SC', sans-serif;
  white-space: nowrap;
  top: 50%;
  transform: translate(-100%, -50%);
  left: -47px;
}
.inner-about-dev .dev-head em {
  position: relative;
  display: block;
  width: 95px;
  line-height: 95px;
  height: 95px;
  text-align: center;
  background-color: #e2ad2e;
  border-radius: 50%;
  margin: 0 47px;
}
.inner-about-dev .dev-head em img {
  display: inline-block;
  max-height: 62%;
}
.inner-about-dev .dev-head h3 {
  position: absolute;
  font-size: 28px;
  color: #555;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  top: 50%;
  transform: translate(100%, -50%);
  right: -47px;
}
.inner-about-dev .dev-wrapper {
  position: relative;
  padding: 3.94737%;
}
.inner-about-dev .dev-wrapper .block {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 14.4737%;
  margin-bottom: 5.59211%;
  z-index: 1;
}
.inner-about-dev .dev-wrapper .block .lt {
  text-align: right;
  width: 47.69231%;
}
.inner-about-dev .dev-wrapper .block .lt h3 {
  font-size: 46px;
  color: #555;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  line-height: 1.4;
  transition: all 0.5s;
}
.inner-about-dev .dev-wrapper .block .lt .brief {
  color: #555;
  font-size: 16px;
}
.inner-about-dev .dev-wrapper .block .rt {
  width: 35.23077%;
}
.inner-about-dev .dev-wrapper .block .rt .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 45.85153%;
  overflow: hidden;
  transition: all 1s;
}
.inner-about-dev .dev-wrapper .block .rt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.inner-about-dev .dev-wrapper .block em {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  display: block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #e9e9e9;
  transition: all 0.5s;
}
.inner-about-dev .dev-wrapper .block em::after {
  position: absolute;
  display: block;
  content: "";
  width: 4px;
  height: 4px;
  top: 50%;
  left: 50%;
  background-color: #e9e9e9;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
.inner-about-dev .dev-wrapper .block em::before {
  position: absolute;
  display: block;
  content: "";
  width: 89px;
  height: 1px;
  background-color: #e9e9e9;
  top: 50%;
  left: 0;
  transform: translate(-100%, 50%);
  transition: all 0.5s;
}
.inner-about-dev .dev-wrapper .block:last-of-type {
  margin-bottom: 0;
}
.inner-about-dev .dev-wrapper .block:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: 14.4737%;
  padding-right: 0;
}
.inner-about-dev .dev-wrapper .block:nth-child(even) .lt {
  text-align: left;
}
.inner-about-dev .dev-wrapper .block:nth-child(even) em::before {
  left: 100%;
  transform: translate(0, -50%);
}
.inner-about-dev .dev-wrapper .block:hover .lt h3 {
  color: #e2ad2e;
}
.inner-about-dev .dev-wrapper .block:hover em {
  border-color: #e2ad2e;
}
.inner-about-dev .dev-wrapper .block:hover em::after {
  background-color: #e2ad2e;
}
.inner-about-dev .dev-wrapper .block:hover em::before {
  background-color: #e2ad2e;
}
.inner-about-dev .dev-wrapper .block:hover .rt .pic {
  transform: translate(10%, 0);
}
.inner-about-dev .dev-wrapper .block:hover .rt .pic img {
  transform: scale(1.05);
}
.inner-about-dev .dev-wrapper .block:nth-child(even):hover .rt .pic {
  transform: translate(-10%, 0);
}
.inner-about-dev .future {
  position: relative;
  z-index: 1;
  margin: 4.6053% auto 0;
  width: 88px;
  height: 88px;
  background-color: #e2ad2e;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  align-items: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
}
.inner-about-dev .future h5 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
.inner-about-dev .future h4 {
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}
.inner-about-dev .future::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background-color: #e2ad2e;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: future-bluse-anime 3s infinite linear;
}
@keyframes future-bluse-anime {
  0% {
    width: 100%;
    height: 100%;
  }
  60%,
  100% {
    width: 150%;
    height: 150%;
    opacity: 0;
  }
}
.inner-about-dev .dev-wrapper::after {
  position: absolute;
  display: block;
  content: "";
  width: 3px;
  height: 100%;
  background-color: #e9e9e9;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}
.inner-about-customer {
  margin-bottom: 0;
}
.inner-about-customer .index-title {
  margin-bottom: 2.60416667%;
}
.inner-about-customer .cooperation-wrapper {
  padding: 4.58333% 0 4.166667%;
  background-color: #f5f5f5;
}
.inner-about-customer .cooperation-wrapper .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.inner-about-customer .cooperation-wrapper .container .lt {
  max-width: 396px;
  transform-style: preserve-3d;
  perspective: 2000px;
  margin-right: 30px;
}
.inner-about-customer .cooperation-wrapper .container .lt h5 {
  position: relative;
  font-size: 18px;
  color: #000;
  font-weight: 700;
  margin-bottom: 37px;
}
.inner-about-customer .cooperation-wrapper .container .lt h5::after {
  display: inline-block;
  content: "";
  width: 54px;
  height: 2px;
  background-color: #e2ad2e;
  vertical-align: middle;
  margin-left: 28px;
}
.inner-about-customer .cooperation-wrapper .container .lt h2 {
  font-size: 54px;
  color: #e2ad2e;
  font-weight: 700;
  font-family: 'Noto Serif SC', sans-serif;
  line-height: 1.2;
  margin-bottom: 18%;
}
.inner-about-customer .cooperation-wrapper .container .lt .brief {
  font-size: 14px;
  color: #666;
  min-height: 14.4em;
  line-height: 1.8;
  margin-bottom: 60px;
  text-align: justify;
}
.inner-about-customer .cooperation-wrapper .container .lt .join {
  position: relative;
  display: inline-block;
  width: 276px;
  line-height: 52px;
  height: 52px;
  border: 1px solid #888;
  text-align: center;
  font-size: 14px;
  color: #333;
  transition: all 0.5s;
  transform-style: preserve-3d;
  perspective: 2000px;
  transform-origin: top center;
}
.inner-about-customer .cooperation-wrapper .container .lt .join::after {
  content: attr(title);
  position: absolute;
  top: calc(100% + 1px);
  left: -1px;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #e2ad2e;
  color: #fff;
  font-size: 14px;
  border: 1px solid #e2ad2e;
  transform-origin: top center;
  transform: rotateX(-82deg);
  transition: all 0.5s;
}
.inner-about-customer .cooperation-wrapper .container .lt .join:hover {
  transform: rotateX(97deg);
}
.inner-about-customer .cooperation-wrapper .container .lt .join:hover::after {
  box-shadow: 0 0 10px rgba(224, 168, 29, 0.3), 0 0 20px rgba(224, 168, 29, 0.4), 0 0 30px rgba(224, 168, 29, 0.5);
}
.inner-about-customer .cooperation-wrapper .container .rt {
  position: relative;
  width: calc(63.026316%);
  --height: 147px;
}
.inner-about-customer .cooperation-wrapper .container .rt .swiper {
  height: calc(var(--height) * 3 + 4px);
}
.inner-about-customer .cooperation-wrapper .container .rt .swiper .swiper-slide {
  position: relative;
  background-color: #fff;
  height: calc((100% - 4px) / 3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  transform-origin: top left;
}
.inner-about-customer .cooperation-wrapper .container .rt .swiper .swiper-slide img {
  max-width: 90%;
  max-height: 90%;
}
.inner-about-customer .cooperation-wrapper .container .rt .swiper .swiper-slide:hover {
  box-shadow: 0 0 29px rgba(0, 0, 0, 0.24);
  z-index: 1;
}
.inner-about-customer .cooperation-wrapper .container .rt .swiper-button {
  position: relative;
  display: flex;
  margin-top: 37px;
  float: right;
}
.inner-about-customer .cooperation-wrapper .container .rt .swiper-button .swiper-button-prev,
.inner-about-customer .cooperation-wrapper .container .rt .swiper-button .swiper-button-next {
  position: relative;
  margin: 0;
  left: auto;
  top: auto;
  bottom: auto;
  right: auto;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #e2ad2e;
  color: #fff;
  text-align: center;
  transition: all 0.5s;
}
.inner-about-customer .cooperation-wrapper .container .rt .swiper-button .swiper-button-prev {
  margin-right: 12px;
}
.inner-about-customer .cooperation-wrapper .container .rt .swiper-button .swiper-button-prev::after,
.inner-about-customer .cooperation-wrapper .container .rt .swiper-button .swiper-button-next::after {
  font-size: 14px;
  transition: all 0.5s;
}
.inner-about-customer .cooperation-wrapper .container .rt .swiper-button .swiper-button-disabled {
  background-color: #cbcbcb;
  opacity: 1;
}
.inner-about-customer .cooperation-wrapper .container .rt .swiper-button .swiper-button-disabled::after {
  color: #333;
}
.inner-about-honor {
  margin-bottom: 2.1875%;
}
.inner-about-honor .index-title {
  margin-bottom: 4.144737%;
}
.inner-about-honor .inner-honor-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.inner-about-honor .inner-honor-wrapper .block {
  width: 18.8158%;
  text-align: center;
  margin-bottom: 2.5%;
  transition: all 0.5s;
}
.inner-about-honor .inner-honor-wrapper .block .pic {
  position: relative;
  border: 1px solid #e0e0e0;
  margin-bottom: 25px;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 141.6084%;
}
.inner-about-honor .inner-honor-wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: all 0.5s;
}
.inner-about-honor .inner-honor-wrapper .block p {
  font-size: 16px;
  color: #333;
  line-height: 1.2;
}
.inner-about-culture .index-title {
  margin-bottom: 4.07895%;
}
.inner-about-culture .inner-culture-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 4.6053%;
}
.inner-about-culture .inner-culture-wrapper .block {
  text-align: center;
}
.inner-about-culture .inner-culture-wrapper .block h3 {
  font-size: 40px;
  color: #000;
  font-weight: 700;
}
.inner-about-culture .inner-culture-wrapper .block div {
  font-size: 26px;
  color: #888;
  line-height: 1.8;
}
.inner-about-culture .inner-values {
  position: relative;
  padding: 6.51041667% 0 2.708333%;
  background-color: #31618d;
  overflow: hidden;
}
.inner-about-culture .inner-values .index-title {
  position: relative;
  z-index: 1;
}
.inner-about-culture .inner-values .index-title h2 {
  color: #fff;
}
.inner-about-culture .inner-values .index-title h2::before {
  color: rgba(255, 255, 255, 0.1);
}
.inner-about-culture .inner-values .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 70%;
  left: 0;
  z-index: 0;
}
.inner-about-culture .inner-values .bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-about-culture .inner-values .values-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.inner-about-culture .inner-values .values-wrapper .block {
  width: 31.9737%;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 2.3684211% 3.421053% 2.3684211% 2.69737%;
  min-height: 175px;
  margin-bottom: 2.171053%;
}
.inner-about-culture .inner-values .values-wrapper .block h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.2;
  margin-bottom: 18px;
}
.inner-about-culture .inner-values .values-wrapper .block h4 em {
  display: inline-block;
  transition: all 0.5s;
}
.inner-about-culture .inner-values .values-wrapper .block .content {
  font-size: 16px;
  color: #fff;
  text-align: justify;
  line-height: 1.8;
}
.inner-about-culture .inner-values .values-wrapper .block:hover h4 em {
  transform: rotate(360deg);
}
.inner-about-culture .inner-concept {
  margin-top: 4.94791667%;
}
.inner-about-culture .inner-concept .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 4.6875%;
}
.inner-about-culture .inner-concept .row .lt {
  width: 36.1458333%;
  margin-left: 6.9271%;
}
.inner-about-culture .inner-concept .row .lt h3 {
  font-size: 36px;
  color: #333;
  border-bottom: 1px solid #e2e2e2;
  line-height: 1.2;
  padding-bottom: 4.32277%;
  margin-bottom: 3.7464%;
}
.inner-about-culture .inner-concept .row .lt h3::after {
  display: inline-block;
  content: attr(title);
  vertical-align: middle;
  color: #e2ad2e;
  opacity: 0.3;
  font-family: 'Abel', sans-serif;
  margin-left: 11px;
}
.inner-about-culture .inner-concept .row .lt .brief {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  text-align: justify;
}
.inner-about-culture .inner-concept .row .lt .brief p {
  margin-bottom: 2.1614%;
}
.inner-about-culture .inner-concept .row .lt .brief p:last-of-type {
  margin-bottom: 0;
}
.inner-about-culture .inner-concept .row .rt {
  width: 50%;
}
.inner-about-culture .inner-concept .row:nth-of-type(even) {
  flex-direction: row-reverse;
}
.inner-about-culture .inner-concept .row:nth-of-type(even) .lt {
  margin-right: 6.9271%;
  margin-left: 0;
}
.inner-about-culture .inner-concept .row:last-of-type {
  margin-bottom: 0;
}
.inner-case {
  margin: 4.4791667% 0 4.166667%;
}
.inner-case .case-tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.inner-case .case-tab h3 {
  font-size: 32px;
  color: #000;
  font-weight: 700;
}
.inner-case .case-tab ul {
  display: flex;
}
.inner-case .case-tab ul li {
  position: relative;
  margin-left: 78px;
}
.inner-case .case-tab ul li a {
  font-size: 18px;
  color: #333;
  transition: all 0.5s;
}
.inner-case .case-tab ul li a:hover {
  color: #e2ad2e;
}
.inner-case .case-tab ul li:first-of-type {
  margin-left: 0;
}
.inner-case .case-tab ul .active a {
  font-weight: 700;
  color: #e2ad2e;
}
.inner-case .case-tab ul .active::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #e2ad2e;
  content: "";
}
.inner-case .load-more {
  text-align: center;
  margin-top: 2.76316%;
  width: 100%;
}
.inner-case .load-more a {
  display: inline-block;
  width: 148px;
  line-height: 45px;
  color: #fff;
  font-size: 18px;
  background-color: #e2ad2e;
}
.inner-case .list-container {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.inner-case .list-block {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transform-origin: center;
  transform: translate3d(0, 20%, -100px);
  opacity: 0;
  transition: all 1.5s;
  visibility: hidden;
}
.inner-case .show {
  position: relative;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  z-index: 1;
  visibility: visible;
  transition: all 2s;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.inner-case .building-case {
  margin-bottom: 4.2708333%;
}
.inner-case .building-case .case-tab {
  margin-bottom: 1.9737%;
}
.inner-case .building-case .building-case-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.inner-case .building-case .building-case-wrapper .block {
  width: 48.3553%;
  margin-bottom: 1.44737%;
}
.inner-case .building-case .building-case-wrapper .block .pic {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 76.2195122%;
}
.inner-case .building-case .building-case-wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: all 0.5s;
}
.inner-case .building-case .building-case-wrapper .block .pic .title {
  position: absolute;
  z-index: 2;
  width: 100%;
  padding: 0 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 60px;
  background: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.3));
  background-repeat: no-repeat;
  background-position: center 60px;
  color: #fff;
  font-size: 18px;
  bottom: 0;
  left: 0;
  text-align: center;
  transition: all 0.5s;
}
.inner-case .building-case .building-case-wrapper .block .pic .mask {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  background: -webkit-linear-gradient(top, transparent 30%, #e0a81d);
  transition: all 0.5s;
  opacity: 5;
}
.inner-case .building-case .building-case-wrapper .block:hover .pic img {
  transform: scale(1.05);
}
.inner-case .building-case .building-case-wrapper .block:hover .pic .mask {
  opacity: 0.1;
}
.inner-case .building-case .building-case-wrapper .block:hover .pic .title {
  background-position: center 0;
}
.inner-case .decoration-case .case-tab {
  margin-bottom: 2.3684211%;
}
.inner-case .decoration-case .decoration-case-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  transform-style: preserve-3d;
  perspective: 1000px;
  transform: translate3d(0, 20%, -50px);
}
.inner-case .decoration-case .decoration-case-wrapper .block {
  position: relative;

  width: 48.3553%;
  background-color: #f5f5f5;
  margin-bottom: 3.2895%;
  transition: all 0.5s;
}
.inner-case .decoration-case .decoration-case-wrapper .block .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 58.639456%;
  overflow: hidden;
}
.inner-case .decoration-case .decoration-case-wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.inner-case .decoration-case .decoration-case-wrapper .block .title {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  background: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, .5)) no-repeat;
  background-position: 0 84px;


  width: 100%;
  min-height: 84px;
  padding: 1% 6.6666667% 1% 4.3537415%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  transition: all .5s;
}
.inner-case .decoration-case .decoration-case-wrapper .block .title h4 {
  font-size: 18px;
  line-height: 1.2;
  margin-right: 3%;
}
.inner-case .decoration-case .decoration-case-wrapper .block .title h4 a {
  color: #fff;
  transition: all 0.5s;
}
.inner-case .decoration-case .decoration-case-wrapper .block .title h5 {
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;


  display: none;
}
.inner-case .decoration-case .decoration-case-wrapper .block .title h5 a {
  color: #999;
  transition: all 0.5s;
}
.inner-case .decoration-case .decoration-case-wrapper .block:hover {
  background-color: #f0f0f0;
  transform-origin: top left;
  transform: translate3d(0, -1px, 5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
}
.inner-case .decoration-case .decoration-case-wrapper .block:hover .title {
  background-position: 0 0;
}
/* .inner-case .decoration-case .decoration-case-wrapper .block:hover .title h4 a {
  color: #e2ad2e;
} */
.inner-case .decoration-case .decoration-case-wrapper .block:hover .title h5 a {
  color: #e2ad2e;
  opacity: 0.8;
}
.inner-case .decoration-case .load-more {
  margin-top: 0.921053%;
}
.inner-case .decoration-case .show {
  transform: translate3d(0, 0, 0);
}
.inner-article-detail {
  padding: 3.4375% 0 4.583333%;
}
.inner-article-detail .article-title {
  text-align: center;
  padding-bottom: 3.2895%;
}
.inner-article-detail .article-title h3 {
  font-size: 32px;
  color: #000;
  line-height: 1.4;
}
.inner-article-detail article p {
  overflow: hidden;
}
.inner-case-detail article {
  font-size: 18px;
  color: #444;
  text-align: justify;
  /* text-align-last: center; */
  line-height: 1.8;
}
.inner-case-detail article p {
  /* margin-bottom: 2.1053%; */
}
.inner-case-detail article img {
  margin: 2% 0;
}
.inner-case-detail article p:last-of-type {
  margin-bottom: 0;
}
.contact-us {
  position: relative;
  background: -webkit-linear-gradient(top, #fafafa, #f8f8fa);
  padding: 8.33333% 0 4.4791667%;
  overflow: hidden;
}
.contact-us .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
}
.contact-us .container .lt {
  width: 40%;
  color: #666;
  line-height: 1.4;
}
.contact-us .container .lt .index-title {
  margin-bottom: 8.5%;
  line-height: 2;
}
.contact-us .container .lt h4 {
  font-size: 22px;
  margin-bottom: 4%;
}
.contact-us .container .lt h6 {
  font-size: 14px;
  margin-bottom: 10%;
}
.contact-us .container .lt h6 i {
  font-size: 16px;
  margin-right: 7px;
}
.contact-us .container .lt h6 a {
  color: #666;
}
.contact-us .container .lt h5 {
  font-size: 18px;
  margin-bottom: 2%;
}
.contact-us .container .lt h3 {
  font-size: 24px;
  font-weight: 700;
  color: #e2ad2e;
  margin-bottom: 10%;
}
.contact-us .container .rt {
  width: 51.053%;
}
.contact-us .container .rt .map {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 65.2062%;
}
.contact-us .container .rt .map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.contact-us .bg {
  position: absolute;
  bottom: -40%;
  width: 100%;
  z-index: 0;
  mix-blend-mode: darken;
}
.online-msg {
  margin: 4.1666667% 0;
}
.online-msg .container {
  padding: 1.82291667% 2.6041667% 3.6458333%;
  box-shadow: 0 0 16px rgba(52, 52, 52, 0.16);
}
.online-msg .container .title {
  margin-bottom: 2.4648%;
}
.online-msg .container .title h3 {
  font-size: 32px;
  color: #333;
  font-weight: 700;
  margin-bottom: 1.053%;
}
.online-msg .container .title p {
  font-size: 18px;
  color: #666;
  text-align: justify;
  max-width: 684px;
}
.online-msg .container form .row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.online-msg .container form .row .col {
  position: relative;
  width: 48.943662%;
  margin-bottom: 1.971831%;
}
.online-msg .container form .row .col:last-of-type {
  margin-bottom: 0;
}
.online-msg .container form .row .required::after {
  content: "*";
  display: inline-block;
  position: absolute;
  line-height: 1;
  right: 25px;
  top: 40%;
  color: #e13333;
  font-size: 22px;
}
.online-msg .container form input {
  width: 100%;
  height: 55px;
  color: #666;
  background-color: #fafafa;
  padding: 0 40px 0 25px;
  outline: none;
  transition: all 0.5s;
}
.online-msg .container form textarea {
  width: 100%;
  height: 268px;
  color: #666;
  background-color: #fafafa;
  padding: 20px 35px 20px 25px;
  outline: none;
  transition: all 0.5s;
}
.online-msg .container form input::placeholder,
.online-msg .container form textarea::placeholder {
  color: #999;
}
.online-msg .container form input:focus,
.online-msg .container form textarea:focus {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.online-msg .container form button {
  position: absolute;
  width: 139px;
  height: 45px;
  color: #fff;
  font-size: 16px;
  background-color: #e2ad2e;
  bottom: 26px;
  right: 26px;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 1px 0 #e0c37e, 0 2px 0 #e0bd69, 0 3px 0 #e1b753, 0 4px 0 #e1b140, 0 5px 0 #e2ad2e, 0 0 5px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.2), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.2), 0 10px 10px rgba(0, 0, 0, 0.2), 0 20px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.5s;
}
.online-msg .container form button:hover {
  box-shadow: none;
}
.inner-news {
  margin: 6.875% 0 4.166667%;
}
.inner-news .index-title {
  margin-bottom: 4.27632%;
}
.inner-news .news-list .block {
  display: flex;
  justify-content: space-between;
  transition: all 0.5s;
  margin-bottom: 5.26316%;
}
.inner-news .news-list .block .lt {
  width: 70.2632%;
  border-bottom: 1px solid #d5d5d5;
}
.inner-news .news-list .block .lt h5 {
  font-size: 14px;
  color: #999;
  line-height: 1;
}
.inner-news .news-list .block .lt h5 a {
  color: #999;
}
.inner-news .news-list .block .lt h3 {
  font-size: 24px;
  color: #333;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 2.15356% 0 1.6854%;
}
.inner-news .news-list .block .lt h3 a {
  color: #333;
  transition: all 0.5s;
}
.inner-news .news-list .block .lt p {
  font-size: 16px;
  color: #686868;
  line-height: 1.9;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.inner-news .news-list .block .lt p a {
  color: #686868;
}
.inner-news .news-list .block .rt {
  width: 22.1711%;
}
.inner-news .news-list .block .rt .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 68.84273%;
  overflow: hidden;
}
.inner-news .news-list .block .rt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.inner-news .news-list .block:hover {
  transform: translate(0, -5px);
  filter: drop-shadow(0 5px 3px rgba(0, 0, 0, 0.2));
}
.inner-news .news-list .block:hover .lt h3 {
  color: #e2ad2e;
}
.inner-news .news-list .block:hover .lt h3 a {
  color: #e2ad2e;
}
.inner-news .news-list .block:last-of-type {
  margin-bottom: 0;
}
.inner-news-detail .article-title {
  border-bottom: 1px solid #d5d5d5;
  margin-bottom: 1.9737%;
}
.inner-news-detail .article-title h3 {
  color: #333;
  margin-bottom: 2.1711%;
}
.inner-news-detail .article-title h5 {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
.inner-news-detail article {
  font-size: 16px;
  color: #333;
  text-align: justify;
  letter-spacing: 0.5px;
}
.inner-news-detail article img {
  margin: 1.9737% 0;
  max-width: 48.487%;
}
.inner-news-detail .article-tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #d5d5d5;
  padding-top: 2.237%;
  margin-top: 3.553%;
}
.inner-news-detail .article-tab p {
  max-width: 45%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333;
  font-size: 16px;
}
.inner-news-detail .article-tab p a {
  color: #333;
  transition: all 0.5s;
}
.inner-news-detail .article-tab p a:hover {
  color: #e2ad2e;
}
.inner-credit {
  margin: 6.875% 0 4.16667%;
}
.inner-credit .index-title {
  margin-bottom: 2.76041667%;
}
.inner-credit .credit-swiper .swiper-slide {
  background-color: #f5f5f5;
  text-align: center;
  padding: 40px 30px 0;
}
.inner-credit .credit-swiper .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 132.9412%;
  overflow: hidden;
}
.inner-credit .credit-swiper .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.inner-credit .credit-swiper p {
  font-size: 20px;
  color: #333;
  margin: 1em 0 0.9em;
  transition: all 0.5s;
}
.inner-credit .credit-swiper .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 2.1875%;
  line-height: 1;
}
.inner-credit .credit-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background-color: #e2ad2e;
  margin: 0 10px;
}
.inner-credit .credit-swiper .swiper-slide:hover p {
  color: #e2ad2e;
}
.inner-standard {
  background-color: #f0f0f0;
  padding: 8.28125% 0 5.1041667%;
}
.inner-standard .index-title {
  margin-bottom: 3.2895%;
}
.inner-standard .standard-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.inner-standard .standard-wrapper .lt {
  width: 37.303%;
  text-align: justify;
}
.inner-standard .standard-wrapper .lt h3 {
  font-size: 28px;
  color: #000;
  line-height: 1.4;
}
.inner-standard .standard-wrapper .lt p {
  font-size: 18px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 0.4em;
}
.inner-standard .standard-wrapper .lt h4 {
  font-size: 18px;
  color: #e2ad2e;
  font-weight: 700;
  line-height: 1.9;
}
.inner-standard .standard-wrapper .rt {
  width: 53.026316%;
}
.inner-standard .standard-wrapper .rt img {
  transition: all 0.5s;
}
.inner-standard .standard-wrapper .rt img:hover {
  transform: scale(1.05);
}
.inner-base {
  margin: 6.875% 0 4.0625%;
}
.inner-base .index-title {
  margin-bottom: 4.276316%;
}
.inner-base .base-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.inner-base .base-wrapper .lt {
  width: 55.46053%;
}
.inner-base .base-wrapper .rt {
  width: 38.2895%;
}
.inner-base .base-wrapper .rt h3 {
  font-size: 40px;
  color: #333;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6.8729%;
}
.inner-base .base-wrapper .rt h3 span {
  color: #e2ad2e;
}
.inner-base .base-wrapper .rt .intro {
  font-size: 18px;
  color: #555;
  line-height: 1.9;
  text-align: justify;
  text-align-last: center;
  margin-bottom: 4.811%;
}
.inner-base .base-wrapper .rt .pic {
  text-align: center;
}
.inner-base .base-wrapper .rt .pic p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-top: 1.7182131%;
}
.inner-hardcore {
  padding: 6.770833% 0 2.6041667%;
  background-color: #f7f7f7;
}
.inner-hardcore .index-title {
  margin-bottom: 4.4737%;
}
.inner-hardcore .hardcore-pic {
  text-align: center;
  padding: 0 0 0 3.2%;
  margin-bottom: 7.237%;
}
.inner-hardcore .hardcore-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.inner-hardcore .hardcore-wrapper .block {
  width: 21.0526316%;
  background-color: #fff;
  border: 1px solid #e2ad2e;
  text-align: center;
  padding: 4.21053% 0.5% 3%;
  min-height: 346px;
  margin-bottom: 1.9737%;
  transition: all 0.5s;
}
.inner-hardcore .hardcore-wrapper .block .icon {
  margin-bottom: 11.149826%;
}
.inner-hardcore .hardcore-wrapper .block h3 {
  font-size: 22px;
  color: #e2ad2e;
  margin-bottom: 6px;
}
.inner-hardcore .hardcore-wrapper .block h4 {
  font-size: 18px;
  color: #e2ad2e;
  line-height: 1.6;
}
.inner-hardcore .hardcore-wrapper .block:hover {
  transform: translate(0, -5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition-delay: 0s;
}
.inner-recruit {
  position: relative;
  padding: 6.9791667% 0 5.0521%;
  overflow: hidden;
}
.inner-recruit .container {
  position: relative;
  z-index: 1;
}
.inner-recruit .bg {
  position: absolute;
  display: block;
  left: 0;
  bottom: -50%;
}
.inner-recruit .index-title {
  margin-bottom: 4.737%;
}
.inner-recruit .recruit-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.inner-recruit .recruit-intro .lt {
  width: 48.1579%;
}
.inner-recruit .recruit-intro .lt .brief {
  font-size: 16px;
  color: #333;
  text-align: justify;
  letter-spacing: 0.5px;
  margin-bottom: 5.738%;
}
.inner-recruit .recruit-intro .lt .recruit-tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.inner-recruit .recruit-intro .lt .recruit-tab li {
  background-color: #fff;
  border-radius: 7px;
  border: 1px solid #ececec;
  width: 47.268%;
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: all 0.5s;
  cursor: pointer;
}
.inner-recruit .recruit-intro .lt .recruit-tab li .icon {
  margin-right: 20px;
}
.inner-recruit .recruit-intro .lt .recruit-tab li .icon img {
  transition: all 0.5s;
}
.inner-recruit .recruit-intro .lt .recruit-tab li .text h4 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}
.inner-recruit .recruit-intro .lt .recruit-tab li .text h5 {
  font-size: 16px;
  color: #999;
  line-height: 1.6;
}
.inner-recruit .recruit-intro .lt .recruit-tab .active {
  background-color: #e2ad2e;
  border: 1px solid transparent;
}
.inner-recruit .recruit-intro .lt .recruit-tab .active .icon img {
  filter: invert(1);
}
.inner-recruit .recruit-intro .lt .recruit-tab .active .text h4 {
  color: #fff;
}
.inner-recruit .recruit-intro .lt .recruit-tab .active .text h5 {
  color: #fff;
}
.inner-recruit .recruit-intro .rt {
  width: 45.26316%;
}
.recruit-content {
  position: relative;
  background-color: #f5f5f5;
  overflow: hidden;
  padding: 3.645833% 0 4.53125%;
}
.recruit-content .container {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  width: 94%;
}
.recruit-content .recruit-box {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.5s;
  visibility: hidden;
  animation: bounceOutLeft 1s;
}
.recruit-content .active {
  position: relative;
  z-index: 1;
  visibility: visible;
  animation: bounceInRight 1.5s;
}
.recruit-content .recruit-title {
  font-size: 30px;
  color: #333;
  text-align: center;
  margin-bottom: 2.25%;
}
.recruit-content .bg1 {
  position: absolute;
  z-index: 0;
  top: -30%;
  right: 0;
}
.recruit-content .bg2 {
  position: absolute;
  z-index: 0;
  bottom: -30%;
  left: 0;
}
.recruit-content .job-wrapper .job-title {
  background-color: #e2ad2e;
  color: #fff;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  line-height: 65px;
  padding: 0 7.39583% 0 6.40625%;
  border-radius: 18px 18px 0 0;
}
.recruit-content .job-wrapper .job-title span {
  font-weight: 700;
  flex: 1;
  margin-right: 20px;
}
.recruit-content .job-wrapper .job-title span:last-child {
  flex: initial;
  width: 50px;
  margin-right: 0;
}
.recruit-content .job-wrapper .job-list {
  border: 1px solid #e4e4e4;
}
.recruit-content .job-wrapper .job-block {
  background-color: #fff;
  border-bottom: 1px solid #e4e4e4;
  padding: 0 7.39583% 0 6.40625%;
}
.recruit-content .job-wrapper .job-block .job-params {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}
.recruit-content .job-wrapper .job-block .job-params li {
  font-size: 16px;
  color: #333;
  flex: 1;
  margin-right: 20px;
}
.recruit-content .job-wrapper .job-block .job-params li a {
  color: #333;
  transition: all 0.5s;
}
.recruit-content .job-wrapper .job-block .job-params li a:hover {
  color: #e2ad2e;
}
.recruit-content .job-wrapper .job-block .job-params li .close {
  display: none;
  color: #d71518 !important;
}
.recruit-content .job-wrapper .job-block .job-params li:last-child {
  flex: initial;
  width: 50px;
  margin-right: 0;
}
.recruit-content .job-wrapper .job-block .job-content {
  display: none;
  font-size: 14px;
  color: #333;
  padding: 1px 0 2.9375%;
}
.recruit-content .job-wrapper .job-block .job-content h4 {
  font-size: 16px;
  color: #e2ad2e;
  margin: 12px 0 8px;
}
.recruit-content .job-wrapper .job-block .job-content button {
  position: relative;
  width: 121px;
  height: 38px;
  color: #fff;
  background-color: #e2ad2e;
  outline: none;
  border-radius: 6px;
  margin-top: 35px;
  cursor: pointer;
}
.recruit-content .job-wrapper .job-block:last-child {
  border-bottom: 0;
}
.recruit-content .job-wrapper .show .job-params li a {
  display: none;
}
.recruit-content .job-wrapper .show .job-params li .close {
  display: block;
}
.package-building {
  padding: 7.03125% 0 4.16667%;
}
.package-building .index-title {
  margin-bottom: 4.8684211%;
}
.package-building .building-list .block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2.395833%;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
}
.package-building .building-list .block .lt {
  width: 40.885412%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  padding: 1%;
}
.package-building .building-list .block .lt .brief {
  max-width: 458px;
  width: 94%;
  text-align: center;
}
.package-building .building-list .block .lt .brief h3 {
  position: relative;
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  margin-bottom: 8.079%;
}
.package-building .building-list .block .lt .brief h3::after,
.package-building .building-list .block .lt .brief h3::before {
  display: block;
  position: absolute;
  content: "";
  width: 19px;
  height: 19px;
  border: 2px solid #e2ad2e;
  border-radius: 50%;
  right: -8px;
  top: -4px;
  z-index: -1;
  transition: all 0.5s;
}
.package-building .building-list .block .lt .brief p {
  font-size: 16px;
  color: #333;
  text-align: justify;
  text-align-last: center;
  line-height: 1.8;
}
.package-building .building-list .block .lt .brief a {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 52px;
  line-height: 52px;
  border-radius: 50%;
  border: 1px solid #e2ad2e;
  font-size: 20px;
  color: #e2ad2e;
  margin-top: 16.37555%;
  transition: all 0.5s;
}
.package-building .building-list .block .lt .brief a::after {
  position: absolute;
  content: "";
  display: block;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  border: 1px solid #e2ad2e;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.5;
  transition: all 0.5s;
  animation: water 2s infinite linear;
}
.package-building .building-list .block .lt .brief:hover h3 {
  color: #e2ad2e;
}
.package-building .building-list .block .lt .brief:hover h3::after {
  border-color: #e8272d;
  animation: fadeInUp 1s;
}
.package-building .building-list .block .lt .brief:hover h3::before {
  animation: fadeOutUp 0.5s;
  visibility: hidden;
}
.package-building .building-list .block .lt .brief:hover a {
  background-color: #e2ad2e;
  color: #fff;
}
.package-building .building-list .block .lt .brief:hover a::after {
  background-color: #e2ad2e;
}
.package-building .building-list .block .rt {
  width: 59.114588%;
}
.package-building .building-list .block .rt .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 54.8813%;
  transition: all 1s;
  overflow: hidden;
}
.package-building .building-list .block .rt .pic::after {
  position: absolute;
  z-index: 1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform: translateZ(100px);
}
.package-building .building-list .block .rt .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.package-building .building-list .block .rt .pic .stripe {
  position: absolute;
  width: 30%;
  left: 0;
  bottom: 0;
  height: 10px;
  background-color: #e2ad2e;
  transition: all 1s ease-in-out;
}
.package-building .building-list .block .rt .pic .stripe::after {
  position: absolute;
  display: block;
  content: "";
  width: 40px;
  height: 10px;
  background: url('../images/building-pic-stripe.png') no-repeat;
  right: 0;
  top: 0;
  transform: translate(100%, 0);
}
.package-building .building-list .block .rt .pic .num {
  position: absolute;
  color: transparent;
  font-family: 'Noto Serif SC', sans-serif;
  z-index: 1;
  line-height: 1;
  bottom: 5%;
  right: 6%;
  font-size: 110px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.5);
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: transparent;
  transition: all 1s;
  transition-delay: 0.5s;
  transform-origin: top left;
}
.package-building .building-list .block .rt .pic:hover {
  transition: all 0s;
}
.package-building .building-list .block .rt .pic:hover .stripe {
  width: calc(100% - 40px);
}
.package-building .building-list .block .rt .pic:hover .num {
  transform: translate3d(-30px, -30px, 50px) rotateY(-30deg);
  -webkit-text-stroke-color: #ffffff;
  filter: drop-shadow(0 10px 2px rgba(0, 0, 0, 0.4));
}
.package-building .building-list .block:hover {
  border-color: #f0d696;
}
.package-building .building-list .block:last-of-type {
  margin-bottom: 0;
}
.package-building .building-list .block:nth-child(even) {
  flex-direction: row-reverse;
}
.package-detail {
  margin: 3.4375% 0 4.0625%;
}
.package-building-detail .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.package-building-detail .container .lt {
  width: 40.13158%;
  padding-top: 2.5%;
}
.package-building-detail .container .lt .title {
  font-size: 28px;
  color: #000;
  line-height: 1.5;
  margin-bottom: 3.93443%;
}
.package-building-detail .container .lt .intro {
  font-size: 16px;
  color: #444;
  line-height: 1.9;
  text-align: justify;
}
.package-building-detail .container .lt .advantage {
  margin-top: 9.0164%;
}
.package-building-detail .container .lt .advantage h3 {
  font-size: 24px;
  color: #000;
  line-height: 1.5;
  margin-bottom: 5.738%;
}
.package-building-detail .container .lt .advantage ul li {
  position: relative;
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  border-bottom: 1px solid #ededed;
  padding: 0 0 7px 24px;
  margin-bottom: 3.115%;
}
.package-building-detail .container .lt .advantage ul li::before {
  position: absolute;
  display: block;
  content: "";
  width: 17px;
  height: 13px;
  background: url('../images/adv-icon.png') no-repeat;
  left: 0;
  top: 10px;
}
.package-building-detail .container .rt {
  width: 53.3553%;
}
.package-building-detail .container .rt .pic img {
  transition: all 0.5s;
}
.package-building-detail .container .rt .pic:hover img {
  transform: scale(1.05);
}
.package-building-detail .container .content {
  width: 100%;
  margin-top: 4%;
  font-size: 16px;
  color: #444;
  line-height: 1.9;
  text-align: justify;
}
.package-decoration {
  margin: 7.03125% 0 3.2291667%;
}
.package-decoration .index-title {
  margin-bottom: 3.94737%;
}
.package-decoration .package-decoration-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.package-decoration .package-decoration-wrapper .block {
  width: 32.5%;
  margin-bottom: 1.25%;
}
.package-decoration .package-decoration-wrapper .block .pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 121.4575%;
}
.package-decoration .package-decoration-wrapper .block .pic img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.package-decoration .package-decoration-wrapper .block .pic .text {
  position: absolute;
  z-index: 1;
  width: 100%;
  bottom: 7.69231%;
  padding: 0 15px;
  text-align: center;
  transition: all 0.5s;
}
.package-decoration .package-decoration-wrapper .block .pic h3 {
  width: 100%;
  font-size: 22px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 2.83401%;
}
.package-decoration .package-decoration-wrapper .block .pic p {
  font-size: 15px;
  color: #fff;
  text-align: justify;
  text-align-last: center;
  font-weight: 300;
  max-width: 313px;
  margin: 0 auto;
  transition: all 0.5s;
  line-height: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 4.4534413%;
}
.package-decoration .package-decoration-wrapper .block .pic span {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  color: #fff;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.55);
  font-size: 20px;
  transition: all 0.5s;
}
.package-decoration .package-decoration-wrapper .block .pic .mask {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #e2ad2e;
  top: 0;
  left: 0;
  transition: all 0.5s;
  clip-path: circle(0);
  z-index: 0;
}
.package-decoration .package-decoration-wrapper .block:hover .pic .mask {
  clip-path: circle(100%);
  background-color: rgba(226, 173, 46, 0.85);
  transition: all 1s;
  transition-delay: 0.3s;
}
.package-decoration .package-decoration-wrapper .block:hover .pic .text {
  bottom: 18.4211%;
}
.package-decoration .package-decoration-wrapper .block:hover .pic h3 {
  margin-bottom: 6.0729%;
}
.package-decoration .package-decoration-wrapper .block:hover .pic span {
  color: #e7202a;
  background-color: #fff;
}
.package-decoration .package-decoration-wrapper .block:hover .pic p {
  line-height: 1.8;
}
.package-decoration-detail {
  margin-bottom: 0;
}
.package-decoration-detail .block-title {
  font-size: 32px;
  color: #000;
  font-weight: 700;
}
.package-decoration-detail .intro-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #e2ad2e;
  margin-bottom: 5.26316%;
}
.package-decoration-detail .intro-wrapper .lt {
  position: relative;
  width: 44.87%;
  padding: 2.961% 2.6316% 1%;
  overflow: hidden;
}
.package-decoration-detail .intro-wrapper .lt .title {
  position: relative;
  z-index: 1;
  line-height: 1.4;
  margin-bottom: 4.105572%;
}
.package-decoration-detail .intro-wrapper .lt .title h3 {
  font-size: 28px;
  color: #fff;
  font-weight: 700;
}
.package-decoration-detail .intro-wrapper .lt .title h3 span {
  font-size: 18px;
  font-weight: 400;
}
.package-decoration-detail .intro-wrapper .lt .intro {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 0 18px;
}
.package-decoration-detail .intro-wrapper .lt .intro p {
  margin-bottom: 1.33%;
}
.package-decoration-detail .intro-wrapper .lt .intro p:last-of-type {
  margin-bottom: 0;
}
.package-decoration-detail .intro-wrapper .lt .bg {
  position: absolute;
  bottom: -25%;
  right: 0;
}
.package-decoration-detail .intro-wrapper .rt {
  width: 55.13%;
  overflow: hidden;
}
.package-decoration-detail .intro-wrapper .rt img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.package-decoration-detail .intro-wrapper .rt img:hover {
  transform: scale(1.05);
}
.package-decoration-detail .intro-swiper {
  background-color: #f0f0f0;
  padding: 3.125% 0 3.90625%;
}
.package-decoration-detail .intro-swiper .block-title {
  margin-bottom: 1.84211%;
}
.package-decoration-detail .intro-swiper em {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #e2ad2e;
  border: 2px solid #fff;
  box-shadow: 0 4px 18px rgba(226, 173, 46, 0.56);
  margin: 14px 0 19.231% 17px;
}
.package-decoration-detail .intro-swiper em::after {
  display: block;
  position: absolute;
  content: "";
  width: 0px;
  height: 20px;
  border-left: 3px dotted #e2ad2e;
  bottom: -12px;
  left: 50%;
  transform: translate(-50%, 100%);
}
.package-decoration-detail .intro-swiper .adv-text {
  background-color: #fff;
  border: 2px solid #ebebeb;
  padding: 21.762% 18px 10%;
  min-height: 275px;
}
.package-decoration-detail .intro-swiper .adv-text h4 {
  font-size: 20px;
  color: #333;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12.44%;
}
.package-decoration-detail .intro-swiper .adv-text .brief {
  text-align: justify;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}
.package-decoration-detail .intro-swiper .swiper {
  position: relative;
  cursor: default;
}
.package-decoration-detail .intro-swiper .swiper::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 6px;
  background-color: rgba(226, 173, 46, 0.2);
  top: 26px;
  left: 0;
}
.package-decoration-detail .application-swiper {
  margin: 3.229167% 0 4.0625%;
}
.package-decoration-detail .application-swiper .block-title {
  margin-bottom: 2.894737%;
}
.package-decoration-detail .application-swiper .swiper-slide {
  width: auto;
}
.package-decoration-detail .application-swiper .swiper-slide .pic {
  position: relative;
  height: 350px;
}
.package-decoration-detail .application-swiper .swiper-slide .pic img {
  display: block;
  max-height: 100%;
  object-fit: contain;
}
.package-decoration-detail .application-swiper .swiper-slide .pic a {
  display: block;
  height: 100%;
  outline: none;
}
.package-decoration-detail .application-swiper p {
  font-size: 20px;
  color: #333;
  line-height: 1.4;
  text-align: center;
  margin-top: 14px;
}
.package-decoration-detail .install-diagram {
  background-color: #f0f0f0;
  padding: 3.8541667% 0;
}
/*.package-decoration-detail .install-diagram .container {*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  align-items: center;*/
/*  flex-wrap: wrap;*/
/*}*/
.package-decoration-detail .install-diagram .container .lt {
  width: 42.76316%;
}
.package-decoration-detail .install-diagram .container .lt .block-title {
  margin-bottom: 9.5385%;
}
.package-decoration-detail .install-diagram .container .lt h4 {
  font-size: 24px;
  color: #000;
  margin-bottom: 2.769231%;
}
.package-decoration-detail .install-diagram .container .lt .feature {
  font-size: 18px;
  color: #000;
}
.package-decoration-detail .install-diagram .container .rt {
  width: 51.64474%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.package-decoration-detail .install-diagram .container .rt .pic {
  --pic_height: 480px;
  width: 100%;
  border: 1px solid #d7d7d7;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5.61%;
}
.package-decoration-detail .install-diagram .container .rt .pic a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
.package-decoration-detail .install-diagram .container .rt .pic img {
  max-width: 100%;
  max-height: 100%;
}
.package-decoration-detail .install-diagram .container .rt .l {
  width: 52.23%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.package-decoration-detail .install-diagram .container .rt .l .pic {
  height: calc(var(--pic_height) / 2 - 7px);
}
.package-decoration-detail .install-diagram .container .rt .r {
  width: 45.9873%;
}
.package-decoration-detail .install-diagram .container .rt .r .pic {
  height: 480px;
}
.anchor-fix {
  position: relative;
  top: -150px;
}
