@charset "UTF-8";
img {
  max-width: 100%;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
}

.preloader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.preloader-icon {
  width: 100px;
  height: 100px;
  display: inline-block;
  padding: 0px;
}

.preloader-icon span {
  position: absolute;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: #6f8c25;
  -webkit-animation: preloader-fx 1.6s linear infinite;
  animation: preloader-fx 1.6s linear infinite;
}

.preloader-icon span:last-child {
  animation-delay: -0.8s;
  -webkit-animation-delay: -0.8s;
}

@keyframes preloader-fx {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}
@-webkit-keyframes preloader-fx {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}
.navbar .navbar-brand {
  margin-right: 180px;
  font-size: 14px;
  color: #fff;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar .navbar-toggler {
  color: #fff;
  border-color: #fff;
}
.navbar .navbar-toggler i {
  font-size: 20px;
}
.navbar .navbar-nav {
  width: 100%;
}
.navbar .nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.navbar .nav-item .dropdown-menu {
  margin-top: 0;
  border: 0;
  border-radius: 0;
  left: 0;
  right: 0;
  top: 100%;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.navbar .nav-item .dropdown-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .navbar .nav-item .dropdown-menu ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.navbar .nav-item .dropdown-menu .dropdown-item {
  padding-left: 30px;
  padding-right: 30px;
  line-height: 40px;
  height: 45px;
  color: #fff;
  position: relative;
  text-align: center;
}
.navbar .nav-item .dropdown-menu .dropdown-item:hover {
  background: transparent;
}
.navbar .nav-item .dropdown-menu .dropdown-item:hover::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 3px;
  width: 20px;
  height: 4px;
  background-color: #6f8c25;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-animation: width-animation 0.3s;
          animation: width-animation 0.3s;
}
@-webkit-keyframes width-animation {
  0% {
    width: 0;
  }
  100% {
    width: 20px;
  }
}
@keyframes width-animation {
  0% {
    width: 0;
  }
  100% {
    width: 20px;
  }
}
.navbar .nav-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
}
.navbar .nav-link.dropdown-menu-toggle {
  border: none;
  outline: none;
}
.navbar .nav-link.active {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: bold;
}
.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 3px;
  width: 20px;
  height: 4px;
  background-color: #6f8c25;
}
.navbar .nav-link:not(.active):hover::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 3px;
  width: 20px;
  height: 4px;
  background-color: #6f8c25;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-animation: width-animation 0.3s;
          animation: width-animation 0.3s;
}
@keyframes width-animation {
  0% {
    width: 0;
  }
  100% {
    width: 20px;
  }
}
.navbar .navbar-user {
  color: #fff;
  font-size: 26px;
  margin-left: 24px;
  text-decoration: none;
}
.navbar .navbar-user .iconfont {
  font-size: 26px;
}
.navbar .search {
  color: #fff;
  font-size: 22px;
  margin-left: 24px;
  text-decoration: none;
}
.navbar .search .iconfont {
  font-size: 22px;
}
.navbar.scroll, .navbar.active {
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-animation: background-animation 0.3s;
          animation: background-animation 0.3s;
}
@-webkit-keyframes background-animation {
  0% {
    background-color: rgba(0, 0, 0, 0);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
@keyframes background-animation {
  0% {
    background-color: rgba(0, 0, 0, 0);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
.navbar.navbar-light {
  background-color: #fff !important;
}
.navbar.navbar-light .nav-link {
  color: #222222 !important;
}
.navbar.navbar-light .dropdown-menu {
  background: #fff !important;
}
.navbar.navbar-light .dropdown-menu .dropdown-item {
  color: #222222 !important;
}
.navbar.navbar-light .search {
  color: #222;
  font-size: 26px;
  margin-left: 24px;
  text-decoration: none;
}
.navbar.navbar-light .search .iconfont {
  color: #222;
  font-size: 26px;
}
.navbar.navbar-light .navbar-toggler {
  color: #222;
  border-color: #222;
}

.h-full {
  height: 100vh;
}

.btn-success {
  color: #fff;
}

.index-swiper {
  height: 100vh;
}
.index-swiper video {
  -o-object-fit: fill;
     object-fit: fill;
}
.index-swiper .swiper-slide {
  position: relative;
}
.index-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.index-swiper .swiper-slide:nth-child(2) .overlay {
  top: 20%;
}
.index-swiper .swiper-slide .overlay {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  color: #fff;
}
.index-swiper .swiper-slide .overlay .swiper-slide-title {
  font-size: 40px;
  font-weight: bold;
  line-height: 92px;
  letter-spacing: 5px;
  text-align: right;
}
.index-swiper .swiper-slide .overlay .swiper-slide-descrption {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 56px;
  width: 633px;
}
.index-swiper .swiper-slide .overlay .btn-video {
  width: 176px;
  height: 54px;
  font-size: 20px;
  color: #fff;
}

.section {
  padding: 82px 0;
}
.section .section-title {
  font-weight: 600;
  font-size: 24px;
  color: #444444;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-align: center;
}
.section .section-lead {
  text-align: center;
  margin-bottom: 50px;
  color: #999999;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
}

.index-news .news-content {
  font-size: 24px;
  font-weight: 500;
  line-height: 48px;
  text-align: center;
}

.index-project {
  padding-top: 60px;
  padding-bottom: 45px;
}
.index-project .project-preview {
  position: relative;
  margin-bottom: 100px;
}
.index-project .project-preview .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index-project .project-preview .overlay .text {
  position: absolute;
  width: 87px;
  height: 87px;
}
.index-project .project-preview .overlay .text .active {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
}
.index-project .project-preview .overlay .text img {
  width: 100%;
  height: 100%;
}
.index-project .project-preview .overlay .text:nth-child(1) {
  top: -22px;
  right: 21px;
}
.index-project .project-preview .overlay .text:nth-child(2) {
  right: -22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.index-project .project-preview .overlay .text:nth-child(3) {
  bottom: -22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.index-project .project-preview .overlay .text:nth-child(4) {
  left: -22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.index-project .project-preview .overlay .text:nth-child(5) {
  top: -22px;
  left: 21px;
}
.index-project #project-swiper .swiper-slide .title {
  color: #ffffff;
  margin-bottom: 20px;
  border-bottom: 1px solid #6f8c25;
}
.index-project #project-swiper .swiper-slide .title h3 {
  height: 30px;
  font-weight: 600;
  background-color: #6f8c25;
  padding: 4px 11px;
  display: inline-block;
  font-size: 16px;
  margin-bottom: 0;
}
.index-project #project-swiper .swiper-slide ul {
  font-size: 14px;
  color: #666666;
  line-height: 30px;
  min-height: 160px;
}
.index-project .index-project-swiper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .index-project .index-project-swiper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 52px;
  }
}
.index-project .index-project-swiper #swiper-thumb {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .index-project .index-project-swiper #swiper-thumb {
    width: 540px;
  }
}
.index-project .index-project-swiper #swiper-thumb .swiper-slide img {
  width: 100%;
}
.index-project .index-project-swiper #swiper-thumb .swiper-button {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.42);
  color: #fff;
  width: 40px;
  height: 56px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.index-project .index-project-swiper #swiper-thumb .swiper-button .iconfont {
  font-size: 20px;
}
.index-project .index-project-swiper #swiper-thumb .swiper-button.arrow-left {
  border-radius: 0 100% 100% 0;
  left: -6px;
}
.index-project .index-project-swiper #swiper-thumb .swiper-button.arrow-right {
  border-radius: 100% 0 0 100%;
  right: -6px;
}
.index-project .index-project-swiper .view {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}
.index-project .index-project-swiper .view #preview-project {
  width: 100%;
}
.index-project .index-project-swiper .view .all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.index-project .index-project-swiper .view .all .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 28px;
  margin-bottom: 50px;
}
.index-project .index-project-swiper .view .all .list .logo {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  margin-bottom: 20px;
  border: 1px solid #6f8c25;
}
.index-project .index-project-swiper .view .all .list .name {
  font-weight: 400;
  font-size: 14px;
  color: #222222;
  line-height: 20px;
  text-align: center;
  font-style: normal;
  display: -webkit-box;
  /* 旧版弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 内容垂直排列 */
  -webkit-line-clamp: 1;
  /* 限制显示的行数 */
  overflow: hidden;
  /* 隐藏溢出内容 */
  text-overflow: ellipsis;
  /* 可选：当一行时加省略号（根据需要） */
  line-clamp: 1;
}
.index-project .index-project-swiper .view a {
  text-decoration: none;
}
.index-project .index-project-swiper .view .title {
  font-weight: 600;
  font-size: 24px;
  color: #444444;
  line-height: 33px;
  letter-spacing: 1px;
  margin-bottom: 47px;
}
.index-project .index-project-swiper .view .content {
  font-weight: 400;
  font-size: 16px;
  color: #222222;
  line-height: 28px;
  letter-spacing: 1px;
  display: -webkit-box;
  /* 旧版弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 内容垂直排列 */
  -webkit-line-clamp: 6;
  /* 限制显示的行数 */
  overflow: hidden;
  /* 隐藏溢出内容 */
  text-overflow: ellipsis;
  /* 可选：当一行时加省略号（根据需要） */
  line-clamp: 6;
}

.index-service {
  background: #f8f8f8;
  padding: 50px 0 10px;
}
.index-service .row > * {
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 40px;
}
.index-service .row > * .d-flex {
  cursor: pointer;
  padding: 55px 22px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 330px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index-service .row > * .d-flex:hover {
  background-color: #eee;
}
.index-service .row > * .icon {
  margin-bottom: 20px;
}
.index-service .row > * .icon .icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
  font-size: 46px;
}
.index-service .row > * h5 {
  font-size: 24px;
  color: #222222;
  margin-bottom: 20px;
}
.index-service .row > * p {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1px;
}
.index-service .row > * .text-white h5,
.index-service .row > * .text-white p {
  color: #fff;
}

.index-case {
  padding-top: 58px;
  padding-bottom: 87px;
}
.index-case .tags {
  margin-bottom: 40px;
}

.index-introduction {
  position: relative;
  background-color: #484545;
}
.index-introduction .left {
  padding-top: 70px;
  padding-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .index-introduction .left {
    width: 50%;
    padding-right: 30px;
  }
}
.index-introduction .left .title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.index-introduction .left .content {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 30px;
  letter-spacing: 1px;
  margin-bottom: 37px;
}
.index-introduction .left .content span {
  color: #6f8c25;
}
.index-introduction .left .number {
  font-weight: 500;
  font-size: 40px;
  color: #9cc337;
  line-height: 56px;
  letter-spacing: 3px;
  margin-bottom: 13px;
}
.index-introduction .left .text {
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  line-height: 28px;
  letter-spacing: 1px;
}
.index-introduction .left .btn {
  width: 120px;
  font-size: 12px;
  margin-top: 43px;
  padding: 10px 18px;
  display: inline-block;
}
.index-introduction .right-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 50%;
  top: 0;
  background: url("/assets/images/introduction.jpg") no-repeat center center;
  background-size: cover;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: none;
}
@media (min-width: 768px) {
  .index-introduction .right-bg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.index-introduction .right-bg .txt {
  background-color: #6f8c25;
  padding: 13px 30px;
  color: #fff;
  font-size: 20px;
  letter-spacing: 1px;
}

.recommend-news {
  padding: 54px 0;
}
.recommend-news.index {
  padding: 100px 0;
}
.recommend-news .left,
.recommend-news .right {
  cursor: pointer;
}
.recommend-news .left img,
.recommend-news .right img {
  width: 100%;
  aspect-ratio: 656/438;
  border-radius: 20px;
  background-color: #f6f4f4;
  -o-object-fit: contain;
     object-fit: contain;
}
.recommend-news .left .title,
.recommend-news .right .title {
  font-weight: 600;
  font-size: 24px;
  color: #222222;
  line-height: 33px;
  letter-spacing: 1px;
  margin-bottom: 23px;
}
.recommend-news .left .time,
.recommend-news .right .time {
  margin-bottom: 23px;
  font-weight: 400;
  font-size: 12px;
  color: #999999;
  line-height: 14px;
}
.recommend-news .left .category,
.recommend-news .right .category {
  margin-bottom: 21px;
  display: inline-block;
  padding: 5px 12px;
  background: #ffffff;
  border-radius: 17px;
  border: 1px solid #6f8c25;
  font-size: 12px;
  color: #6f8c25;
}
.recommend-news .left img {
  margin-bottom: 27px;
}
.recommend-news .left:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.recommend-news .left:hover .title {
  color: #6f8c25;
}
.recommend-news .right .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.recommend-news .right .list + .list {
  margin-top: 12px;
}
.recommend-news .right .list:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.recommend-news .right .list:hover .title {
  color: #6f8c25;
}
@media (min-width: 768px) {
  .recommend-news .right .list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.recommend-news .right .list img {
  aspect-ratio: 270/184;
  width: 100%;
}
@media (min-width: 768px) {
  .recommend-news .right .list img {
    width: 270px;
  }
}
.recommend-news .right .list .list-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.recommend-news .right .list .list-content .title {
  font-size: 16px;
  margin-bottom: 17px;
  font-weight: 600;
  display: -webkit-box;
  /* 旧版弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 内容垂直排列 */
  -webkit-line-clamp: 2;
  /* 限制显示的行数 */
  overflow: hidden;
  /* 隐藏溢出内容 */
  text-overflow: ellipsis;
  /* 可选：当一行时加省略号（根据需要） */
  line-clamp: 2;
  line-height: 22px;
}

.business-carousel {
  background-color: #6f8c25;
  width: 100%;
  position: relative;
}
.business-carousel .business-carousel-indicators {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  z-index: 1;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.business-carousel .business-carousel-indicators button {
  opacity: 1 !important;
  width: 8px;
  height: 18px;
  background-color: #6f8c25;
  margin-right: 4px;
  border: none;
  outline: none;
}
.business-carousel .business-carousel-indicators button.active {
  width: 18px !important;
}
.business-carousel .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.business-carousel .overlay .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.business-carousel .overlay .container .overlay-content {
  color: #fff;
  font-size: 66px;
  line-height: 92px;
  letter-spacing: 5px;
}
.business-carousel .carousel-search {
  position: absolute;
  width: 100%;
  bottom: 183px;
  z-index: 2;
  left: 0;
}
.business-carousel .carousel-search .form-group .iconfont {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  font-size: 31px;
}
.business-carousel .carousel-search .form-control {
  width: 465px;
  height: 52px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid #ffffff;
  color: #fff;
  padding-left: 68px;
  position: relative;
  letter-spacing: 1px;
  font-size: 24px;
  font-weight: 400;
}
.business-carousel .carousel-search .form-control::-webkit-input-placeholder {
  color: #fff;
  letter-spacing: 1px;
}
.business-carousel .carousel-search .form-control::-moz-placeholder {
  color: #fff;
  letter-spacing: 1px;
}
.business-carousel .carousel-search .form-control:-ms-input-placeholder {
  color: #fff;
  letter-spacing: 1px;
}
.business-carousel .carousel-search .form-control::-ms-input-placeholder {
  color: #fff;
  letter-spacing: 1px;
}
.business-carousel .carousel-search .form-control::placeholder {
  color: #fff;
  letter-spacing: 1px;
}
.business-carousel .carousel-search .btn-search {
  color: #fff;
  width: 176px;
  height: 54px;
}

.business {
  padding: 50px 0;
}
.business .business-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.business .business-section .left {
  width: 376px;
  margin-right: 60px;
}
.business .business-section .left .list-group-item {
  padding-left: 0;
  padding-right: 0;
}
.business .business-section .left .list-group-item-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 40px;
  color: #222222;
  letter-spacing: 2px;
  text-decoration: none;
  width: 100%;
  display: block;
}
.business .business-section .left .list-group-item-title[aria-expanded] {
  position: relative;
}
.business .business-section .left .list-group-item-title[aria-expanded]::before {
  position: absolute;
  right: 0;
  content: "-";
}
.business .business-section .left .list-group-item-title[aria-expanded=false]::before {
  content: "+";
}
.business .business-section .left .media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 30px 0;
}
.business .business-section .left .media:not(:last-child) {
  border-bottom: 1px solid #979797;
}
.business .business-section .left .media .media-image {
  width: 64px;
  height: 69px;
}
.business .business-section .left .media .media-body .media-title {
  color: #222222;
  font-size: 20px;
  margin-bottom: 13px;
}
.business .business-section .left .media .media-body .media-text {
  color: #666666;
  font-size: 16px;
  line-height: 22px;
}
.business .business-section .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.business .business-section .right .title {
  font-weight: 600;
  font-size: 40px;
  color: #222222;
  line-height: 56px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.business .business-section .right .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  margin-bottom: 50px;
  font-size: 20px;
  color: #222222;
}

.job {
  padding: 78px 0 64px;
  position: relative;
}
.job .logo {
  top: -57px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  width: 114px;
  height: 114px;
  background: #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.job .logo img {
  width: 76px;
  height: 76px;
}
.job .job-lead {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 30px;
  letter-spacing: 1px;
  text-align: center;
}

.job-content {
  background: #f9f9f9;
  padding: 50px 0;
}
.job-content .media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  overflow: hidden;
}
.job-content .media .media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.job-content .media .media-body .media-title {
  height: 30px;
  font-weight: 600;
  font-size: 22px;
  color: #222222;
  line-height: 30px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.job-content .media .media-body .media-content {
  height: 96px;
  font-weight: 400;
  font-size: 12px;
  color: #666666;
  line-height: 24px;
  margin-bottom: 36px;
}
.job-content .media .media-body .media-content p {
  margin-bottom: 0;
}
.job-content .media .media-body .btn {
  width: 100px;
  height: 34px;
  line-height: 22px;
  font-size: 12px;
}
.job-content .media .media-image {
  width: 300px;
  height: 300px;
}
.job-content .media .media-image img {
  width: 100%;
  height: 100%;
}

.tags {
  margin-top: 40px;
  text-align: center;
  padding: 0 22px;
}
.tags .tag-list {
  padding: 22px 30px 6px;
  margin: 0 auto;
  border-radius: 34px;
  border: 1px solid #d9d9d9;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 22px 15px 6px;
}
@media (min-width: 768px) {
  .tags .tag-list {
    padding: 22px 30px 6px;
  }
}
.tags .tag-list .tag-list-item {
  float: left;
  color: #999999;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  padding: 0 25px 16px;
}
@media (min-width: 768px) {
  .tags .tag-list .tag-list-item {
    padding: 0 35px 16px;
  }
}
.tags .tag-list .tag-list-item.active {
  font-weight: 600;
  color: #6f8c25;
}
.tags .tag-list .tag-list-item.active::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 1px;
  background: #6f8c25;
  bottom: 12px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
}
.tags .tag-list .tag-list-item:hover {
  color: #6f8c25;
}

.section.news-list {
  padding: 40px 0;
  background: #f7f8fb;
}
.section.news-list .media {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section.news-list .media:hover .media-image {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.section.news-list .media:hover .media-title {
  color: #6f8c25 !important;
}
.section.news-list .media .media-image {
  width: 100%;
  aspect-ratio: 286/180;
}
@media (min-width: 768px) {
  .section.news-list .media {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .section.news-list .media .media-image {
    width: 286px;
    height: 180px;
  }
}
.section.news-list .media .media-image {
  background: #d8d8d8;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.section.news-list .media .media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.section.news-list .media .media-body .media-title {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
  line-height: 28px;
}
.section.news-list .media .media-body .media-text {
  font-size: 12px;
  color: #666666;
  line-height: 20px;
}
.section.news-list .media .media-body .btn {
  margin-top: 12px;
  padding-left: 18px;
  padding-right: 18px;
  height: 34px;
  line-height: 1.8;
  font-size: 12px;
}

.section.project .section-tag {
  height: 67px;
  border-radius: 34px;
  border: 1px solid #d9d9d9;
  margin: 0 auto 50px;
}
.section.project .section-tag .section-tag-item {
  padding: 0 45px;
  color: #999999;
  font-size: 16px;
  cursor: pointer;
  position: relative;
}
.section.project .section-tag .section-tag-item.active {
  font-weight: 600;
  color: #6f8c25;
}
.section.project .section-tag .section-tag-item.active::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 1px;
  background: #6f8c25;
  bottom: -5px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
}
.section.project .section-tag .section-tag-item:hover {
  color: #6f8c25;
}
.section.project .project-list .media {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 2px 26px 0px rgba(0, 0, 0, 0.17);
          box-shadow: 0px 2px 26px 0px rgba(0, 0, 0, 0.17);
  background: #f9f9f9;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  gap: 30px;
}
@media (min-width: 768px) {
  .section.project .project-list .media {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 60px;
    padding: 60px;
  }
}
.section.project .project-list .media:hover {
  -webkit-transform: scale(1.025);
          transform: scale(1.025);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.section.project .project-list .media::after {
  content: "";
  position: absolute;
  background: rgba(111, 140, 37, 0.05);
  top: 117px;
  right: -107px;
  border-radius: 100%;
  z-index: 0;
  width: 300px;
  height: 300px;
  bottom: -30%;
  top: auto;
  right: -20%;
}
@media (min-width: 768px) {
  .section.project .project-list .media::after {
    width: 500px;
    height: 500px;
    top: 117px;
    right: -107px;
  }
}
@media (min-width: 576px) {
  .section.project .project-list .media:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.section.project .project-list .media:nth-child(2n)::after {
  width: 300px;
  height: 300px;
  bottom: -30%;
  top: auto;
  left: -20%;
  right: auto;
}
@media (min-width: 768px) {
  .section.project .project-list .media:nth-child(2n)::after {
    right: auto;
    top: 117px;
    left: -107px;
  }
}
.section.project .project-list .media .media-image {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 576px) {
  .section.project .project-list .media .media-image {
    width: 330px;
    background: #d8d8d8;
  }
}
.section.project .project-list .media .media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.section.project .project-list .media .media-body .media-title {
  font-size: 22px;
  font-weight: 600;
  color: #6f8c25;
  margin-bottom: 40px;
  line-height: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section.project .project-list .media .media-body .media-text {
  font-size: 12px;
  color: #666666;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section.project .project-list .media .media-body .btn {
  margin-top: 22px;
  padding-left: 18px;
  padding-right: 18px;
  height: 34px;
  line-height: 1.8;
  font-size: 12px;
}

.news,
.project {
  padding: 50px 0;
}
.news .card,
.project .card {
  height: 100%;
  border-radius: 10px;
  cursor: pointer;
}
.news .card.active,
.project .card.active {
  -webkit-box-shadow: 0px 2px 7px 0px rgba(111, 140, 37, 0.59);
          box-shadow: 0px 2px 7px 0px rgba(111, 140, 37, 0.59);
}
.news .card .card-img-top,
.project .card .card-img-top {
  aspect-ratio: 380/216;
}
.news .card .card-title,
.project .card .card-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 20px;
  line-height: 28px;
  color: #666666;
  font-weight: 600;
}
.news .next-button,
.project .next-button {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
}
.news .next-button .next-button-prev,
.news .next-button .next-button-next,
.project .next-button .next-button-prev,
.project .next-button .next-button-next {
  width: 26px;
  height: 26px;
  background: #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news .next-button .next-button-prev i,
.news .next-button .next-button-next i,
.project .next-button .next-button-prev i,
.project .next-button .next-button-next i {
  font-size: 13px;
  color: #6f8c25;
}
.news .next-button .next-button-prev.disabled,
.news .next-button .next-button-next.disabled,
.project .next-button .next-button-prev.disabled,
.project .next-button .next-button-next.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.section.news-info {
  padding: 50px 0;
}
.section.news-info .title {
  font-weight: 600;
  font-size: 40px;
  color: #222222;
  line-height: 56px;
  letter-spacing: 3px;
  margin-bottom: 30px;
}
.section.news-info .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  font-size: 20px;
  color: #222222;
  border-bottom: 1px solid #979797;
  letter-spacing: 1px;
}

.case .button-prev,
.case .button-next {
  z-index: 10;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background-color: rgba(0, 0, 0, 0.42);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
}
.case .button-prev .iconfont,
.case .button-next .iconfont {
  font-size: 20px;
  color: #fff;
  text-align: center;
}
.case .button-prev.swiper-button-disabled,
.case .button-next.swiper-button-disabled {
  opacity: 0.42;
}
.case .button-prev {
  left: -26px;
  padding-left: 16px;
}
.case .button-next {
  right: -26px;
  padding-right: 16px;
}

.section.case .media,
.index-case .media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  text-decoration: none;
}
.section.case .media:hover,
.index-case .media:hover {
  -webkit-transform: scale(1.025);
          transform: scale(1.025);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.section.case .media:hover .media-title,
.index-case .media:hover .media-title {
  color: #6f8c25 !important;
}
.section.case .media + .media,
.index-case .media + .media {
  margin-top: 50px;
}
.section.case .media.media-reverse,
.index-case .media.media-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.section.case .media .media-image,
.index-case .media .media-image {
  width: 100%;
  aspect-ratio: 288/221;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.section.case .media .media-body,
.index-case .media .media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.section.case .media .media-body .media-title,
.index-case .media .media-body .media-title {
  font-weight: 600;
  font-size: 16px;
  color: #2e2b2b;
  text-overflow: ellipsis;
  overflow: hidden;
  /* 显示两行 */
  display: -webkit-box;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.section.case .media .media-body .media-text,
.index-case .media .media-body .media-text {
  font-weight: 400;
  font-size: 12px;
  color: #605e5e;
}

.section.company .section-title {
  height: 56px;
  font-weight: 600;
  font-size: 40px;
  color: #444444;
  line-height: 56px;
  letter-spacing: 3px;
  margin-bottom: 41px;
}
.section.company .company-inroduce-content-1 .right {
  width: 353px;
  margin-left: 50px;
}
.section.company .company-inroduce-content-1 .right img {
  width: 100%;
}
.section.company .company-inroduce-content-1 .left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #f6f8f9;
  padding: 40px;
  font-weight: 500;
  font-size: 20px;
  color: #222222;
  line-height: 48px;
  letter-spacing: 1px;
  text-indent: 2em;
}
.section.company .company-inroduce-content-2 {
  margin-top: 74px;
}
.section.company .company-inroduce-content-2 .left {
  width: 500px;
  margin-right: 82px;
}
.section.company .company-inroduce-content-2 .left img {
  width: 100%;
}
.section.company .company-inroduce-content-2 .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
  font-size: 20px;
  color: #222222;
  line-height: 48px;
  letter-spacing: 1px;
  text-indent: 2em;
}

.project-detail .top,
.case-detail .top {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 52px;
}
@media (min-width: 768px) {
  .project-detail .top,
  .case-detail .top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 70px;
  }
}
.project-detail .top .left,
.case-detail .top .left {
  overflow: hidden;
  width: 100%;
}
@media (min-width: 768px) {
  .project-detail .top .left,
  .case-detail .top .left {
    width: 374px;
  }
}
.project-detail .top .left img,
.case-detail .top .left img {
  width: 100%;
  border-radius: 10px;
}
.project-detail .top .right,
.case-detail .top .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 20px;
}
.project-detail .top .right .title,
.case-detail .top .right .title {
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 1px;
  color: #6f8c25;
  font-weight: 600;
  margin-bottom: 52px;
}
.project-detail .top .right .desc,
.case-detail .top .right .desc {
  font-size: 18px;
  line-height: 30px;
  color: #666666;
}

.case-detail .left {
  height: auto !important;
  border-radius: 20px !important;
}

.news-detail {
  padding-bottom: 60px !important;
}
.news-detail .title {
  font-weight: 600;
  font-size: 24px;
  color: #222222;
  line-height: 33px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.news-detail .time {
  font-size: 12px;
  color: #666666;
  line-height: 30px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d9d9d9;
}

.news-detail-bottom {
  padding-top: 0 !important;
  background: #f7f8fb;
}
.news-detail-bottom .news-detail-title {
  color: #220000;
  font-size: 22px;
  letter-spacing: 1px;
  background-color: #fff;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.contact-carousel {
  height: 100vh;
}

.section.contact .row {
  gap: 147px;
}
.section.contact .tag {
  width: 112px;
  height: 34px;
  background: #6f8c25;
  border-radius: 4px;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 34px;
  letter-spacing: 1px;
  margin-bottom: 30px;
}
.section.contact h4 {
  font-weight: 500;
  font-size: 18px;
  color: #222222;
  line-height: 25px;
  letter-spacing: 1px;
  margin-bottom: 46px;
}
.section.contact p {
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 28px;
  letter-spacing: 1px;
}

.contact-media .media {
  background: #fbfbfb;
  border-radius: 20px;
  border: 1px solid #6f8c25;
  padding: 38px;
  text-align: center;
  color: #666666;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  height: 100%;
}
.contact-media .media img {
  width: 105px;
  height: 105px;
  margin-bottom: 20px;
}
.contact-media .media:hover, .contact-media .media.active {
  color: #fff;
}
.contact-media .media:hover .name,
.contact-media .media:hover .content, .contact-media .media.active .name,
.contact-media .media.active .content {
  color: #fff;
}
.contact-media .media:hover {
  background: rgba(111, 140, 37, 0.85);
}
.contact-media .media.active {
  background: #6f8c25 !important;
}

.message {
  background: #f9f9f9;
}
.message .row > div {
  padding-left: 41px;
  padding-right: 41px;
  margin-bottom: 50px;
}
.message .form-control {
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  outline: none;
}
.message .btn {
  width: 100px;
  height: 34px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

.footer {
  background-color: #6e6e6e;
  padding: 35px 0;
  color: #fff;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  color: #6f8c25;
  text-decoration: underline;
}
.footer .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 20px;
  margin-bottom: 36px;
  letter-spacing: 1px;
  font-weight: 600;
}
.footer .qrcode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.footer .title {
  font-size: 18px;
  margin-bottom: 10px;
}
.footer .contact {
  font-size: 13px;
}
.footer .contact > div {
  margin-bottom: 10px;
}
.footer .list {
  padding-left: 50px;
  background: url("../images/footer-list.jpg") repeat-y;
}
.footer .list li {
  line-height: 32px;
  font-size: 18px;
  margin-bottom: 26px;
}

.copy {
  background-color: #000;
  padding: 18px 0;
  color: #fff;
  text-align: center;
  font-size: 12px;
  line-height: 26px;
}

.customer {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 110px;
}
.customer .scroll-top {
  display: none;
  margin-top: 10px;
  background-color: #6f8c25;
  color: #fff;
  width: 45px;
  height: 45px;
  text-decoration: none;
  border-radius: 10px;
  text-align: center;
  line-height: 45px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.customer .scroll-top i {
  color: #fff;
  font-size: 20px;
}
.customer .scroll-top:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
          box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  background-color: #6f8c25;
  color: #fff;
}
.customer .customer-icon {
  width: 55px;
  height: 55px;
}
.customer .customer-icon img {
  width: 100%;
  height: 100%;
}
.customer .customer-wrapper {
  position: fixed;
  bottom: 30px;
  right: 100px;
  width: 300px;
  background: #ffffff;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}
.customer .customer-wrapper .customer-close {
  position: absolute;
  right: 0;
  top: -8px;
  height: 32px;
}
.customer .customer-wrapper .customer-close i {
  font-size: 32px;
  color: #6f8c25;
}
.customer .customer-wrapper .customer-content {
  padding: 20px;
}
.customer .customer-wrapper .customer-content .customer-title {
  font-size: 24px;
  font-weight: 400;
  color: #222222;
  line-height: 28px;
  letter-spacing: 1px;
  margin-bottom: 11px;
}
.customer .customer-wrapper .customer-content .customer-title img {
  width: 47px;
  height: 51px;
  margin-right: 7px;
}
.customer .customer-wrapper .customer-content .customer-text {
  font-weight: 400;
  font-size: 12px;
  color: #666666;
  line-height: 17px;
  margin-bottom: 16px;
}
.customer .customer-wrapper .customer-content .customer-text .customer-text-lead {
  margin-bottom: 18px;
}
.customer .customer-wrapper .customer-content .customer-qrcode {
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  color: #666666;
  line-height: 17px;
  margin-bottom: 23px;
}
.customer .customer-wrapper .customer-content .customer-qrcode img {
  width: 108px;
  height: 108px;
  margin-bottom: 12px;
}
.customer .customer-wrapper.show {
  opacity: 1;
  visibility: visible;
}

.empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}
.empty img {
  width: 320px;
  height: 320px;
}

.pagination .page-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  color: #605e5e;
  font-size: 14px;
}
.pagination .page-item .form-control {
  width: 60px;
}
.pagination .page-item .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
  border-color: #6f8c25;
}
.pagination .page-item .page-link {
  border-radius: 3px;
}
.pagination .page-item .page-link:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.pagination .page-item.total, .pagination .page-item.target {
  padding: 0 23px;
}

.breadcrumb-item {
  color: #aeacac;
}
.breadcrumb-item a {
  color: #aeacac;
  text-decoration: none;
}
.breadcrumb-item a:hover {
  color: #6f8c25;
  text-decoration: underline;
  font-weight: bold;
}

.detection-banner .detection-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 90px;
}
.detection-banner .detection-list .detection-image {
  width: 200px;
}
.detection-banner .detection-list .detection-image img {
  width: 100%;
}

.detection {
  padding-bottom: 0;
}

.detection .section-title,
.process .section-title,
.team .section-title {
  font-size: 24px;
  font-weight: 600;
  color: #444444;
  line-height: 33px;
  letter-spacing: 1px;
}
.detection .section-lead,
.process .section-lead,
.team .section-lead {
  font-size: 14px;
  color: #666666;
  line-height: 30px;
  letter-spacing: 1px;
  text-align: center;
}
.detection .swiper-container .swiper-slide,
.process .swiper-container .swiper-slide,
.team .swiper-container .swiper-slide {
  opacity: 0.5;
}
.detection .swiper-container .swiper-slide img,
.process .swiper-container .swiper-slide img,
.team .swiper-container .swiper-slide img {
  width: 100%;
  height: 100%;
}
.detection .swiper-container .swiper-slide.swiper-slide-active,
.process .swiper-container .swiper-slide.swiper-slide-active,
.team .swiper-container .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.default-swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 0;
}
.default-swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 25px;
  height: 2px;
  background: #ebebeb;
  opacity: 1;
}
.default-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #6f8c25;
}

.process {
  padding-top: 20px;
}
.process .process-list {
  margin-bottom: 40px;
}
.process .detection-list > * {
  padding-left: 0;
  padding-right: 0;
}
.process .detection-list > * .detection-item {
  height: 100%;
  position: relative;
}
.process .detection-list > * .detection-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.process .detection-list > * .detection-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  opacity: 0;
}
.process .detection-list > * .detection-item .overlay:hover {
  opacity: 1;
}
.process .media .name {
  font-weight: 400;
  font-size: 16px;
  color: #222222;
  line-height: 22px;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 40px;
}

.aboutus .section-title {
  margin-bottom: 60px;
}
.aboutus .introduction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .aboutus .introduction {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 70px;
  }
}
.aboutus .introduction .left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.aboutus .introduction .left .title {
  font-weight: 600;
  font-size: 24px;
  color: #222222;
  line-height: 33px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d9d9d9;
}
.aboutus .introduction .left .content {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 30px;
  letter-spacing: 1px;
}
.aboutus .introduction .right {
  width: 100%;
}
@media (min-width: 768px) {
  .aboutus .introduction .right {
    width: 360px;
  }
}
.aboutus .introduction .right img {
  width: 100%;
}
.aboutus .culture {
  margin-bottom: 60px;
}
.aboutus .culture .swiper-slide-active .icon {
  background: #6f8c25 !important;
}
.aboutus .culture .swiper-slide-active .icon i {
  color: #fff;
}
.aboutus .culture .swiper-slide .icon:hover {
  background: rgba(111, 140, 37, 0.65);
}
.aboutus .culture .swiper-slide .icon:hover i {
  color: #fff;
}
.aboutus .culture .icon {
  width: 113px;
  height: 113px;
  border-radius: 100%;
  background: #f1f1f1;
  margin-bottom: 37px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.aboutus .culture .icon i {
  font-size: 54px;
}
.aboutus .culture .title {
  font-weight: 500;
  font-size: 20px;
  color: #222222;
  line-height: 28px;
  margin-bottom: 12px;
}
.aboutus .culture .content {
  color: #999999;
  font-size: 14px;
  line-height: 20px;
}
.aboutus .timeline {
  margin-bottom: 100px;
  position: relative;
}
.aboutus .timeline .swiper-container::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  position: absolute;
  top: 50%;
  left: 0;
}
.aboutus .timeline .swiper-slide {
  width: 600px;
  display: grid;
  grid-template-rows: repeat(2, 1fr); /* 2个等高行 */
  padding-left: 46px;
  position: relative;
  gap: 40px;
  height: 416px; /* 必须有明确高度 */
}
.aboutus .timeline .swiper-slide::before {
  content: "";
  width: 26px;
  height: 26px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  background-image: url("/assets/images/dot.png");
}
.aboutus .timeline .swiper-slide .top {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.aboutus .timeline .swiper-slide .top .image {
  width: 218px;
  height: 140px;
}
.aboutus .timeline .swiper-slide .top .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background: #f6f4f4;
  border-radius: 10px;
}
.aboutus .timeline .swiper-slide .top .date {
  font-weight: 600;
  font-size: 20px;
  color: #222222;
  letter-spacing: 1px;
}
.aboutus .timeline .swiper-slide .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  color: #222222;
  letter-spacing: 1px;
  position: relative;
}
.aboutus .timeline .swiper-slide .content ul {
  margin-bottom: 0;
  padding-left: 10px;
}
.aboutus .timeline .swiper-slide .content ul li::marker {
  color: #6f8c25;
}
.aboutus .timeline .swiper-slide:nth-child(2n+1) .content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.aboutus .timeline .swiper-slide:nth-child(2n+1) .image {
  margin-bottom: 18px;
}
.aboutus .timeline .swiper-slide:nth-child(2n) .top {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.aboutus .timeline .swiper-slide:nth-child(2n) .image {
  margin-top: 18px;
}
.aboutus .timeline .swiper-slide:nth-child(2n) .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.aboutus .honor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .aboutus .honor {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-bottom: 100px;
  }
}
.aboutus .honor .honor-swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 34px;
  text-align: center;
}
@media (min-width: 768px) {
  .aboutus .honor .honor-swiper-pagination {
    width: 200px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
    gap: 34px;
  }
}
.aboutus .honor .honor-swiper-pagination .swiper-pagination-bullet {
  width: 100%;
  background: none;
  height: 33px;
  opacity: 1;
  color: #666666;
  line-height: 33px;
  letter-spacing: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 0;
  font-size: 14px;
}
@media (min-width: 768px) {
  .aboutus .honor .honor-swiper-pagination .swiper-pagination-bullet {
    font-size: 18px;
  }
}
.aboutus .honor .honor-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #6f8c25;
  font-weight: 600;
  font-size: 18px;
}
@media (min-width: 768px) {
  .aboutus .honor .honor-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    font-size: 24px;
  }
}
.aboutus .honor .gallery-swiper {
  width: 100%;
}
@media (min-width: 768px) {
  .aboutus .honor .gallery-swiper {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 260px;
  }
}
.aboutus .honor .gallery-swiper .image-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 768px) {
  .aboutus .honor .gallery-swiper .image-list {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.aboutus .honor .gallery-swiper .image-list img {
  border-radius: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 768px) {
  .aboutus .honor .gallery-swiper .image-list img {
    width: 200px;
    height: 260px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
  }
}
.aboutus .contact-media {
  margin-bottom: 76px;
}
.aboutus .contact-media .media .name {
  color: #222222;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}
.aboutus .contact-media .media .content {
  text-align: left;
  font-size: 14px;
  color: #999999;
  font-weight: 400;
  line-height: 20px;
  text-indent: 2em;
}
.aboutus .contact-media .media:hover .name,
.aboutus .contact-media .media:hover .content, .aboutus .contact-media .media.active .name,
.aboutus .contact-media .media.active .content {
  color: #fff !important;
}
.aboutus .partner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.aboutus .partner .partner-item {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.aboutus .partner .partner-item:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#exampleModal .modal-dialog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#exampleModal .modal-dialog .modal-content {
  background-color: transparent;
  border: none;
}
#exampleModal .modal-dialog .modal-content .swiper-container,
#exampleModal .modal-dialog .modal-content .swiper-wrapper,
#exampleModal .modal-dialog .modal-content .swiper-slide {
  width: 100%;
}
#exampleModal .modal-dialog .modal-content .swiper-slide {
  width: 100%;
}
#exampleModal .modal-dialog .modal-content .swiper-slide img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#exampleModal .btn {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
}
#exampleModal .btn .iconfont {
  color: #fff;
}

.team {
  background: #f7f8fb;
  padding: 60px 0;
}
.team .team-item {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .team .team-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
  }
}
.team .team-item .team-icon {
  aspect-ratio: 53/30;
  background: #d8d8d8;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 53/30;
}
@media (min-width: 768px) {
  .team .team-item .team-icon {
    width: 300px;
    aspect-ratio: 53/30;
  }
}
@media (min-width: 992px) {
  .team .team-item .team-icon {
    width: 530px;
    height: 300px;
  }
}
.team .team-item .team-icon img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.team .team-item .team-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 400;
  font-size: 12px;
  color: #666666;
  line-height: 24px;
  text-indent: 2em;
}
.team .team-item .team-body p {
  margin-bottom: 20px;
}
.team .stats .stat {
  height: 100%;
  background: #fff;
  padding: 39px 27px 21px;
  border-radius: 10px;
}
.team .stats .stat .value {
  font-weight: 600;
  font-size: 32px;
  color: #9cc337;
  line-height: 45px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.team .stats .stat .label {
  font-weight: 400;
  font-size: 18px;
  color: #222222;
  line-height: 25px;
  letter-spacing: 1px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
}
.team .stats .stat .content {
  font-weight: 400;
  font-size: 18px;
  color: #999999;
  line-height: 25px;
  letter-spacing: 1px;
}
.team .team-content {
  text-indent: 2em;
  margin-bottom: 50px;
  color: #999999;
  font-size: 14px;
  letter-spacing: 1px;
}
.team .image-list img {
  border-radius: 10px;
  margin-bottom: 20px;
}

.scientific {
  padding: 40px 0;
}
.scientific .scientific-list {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .scientific .scientific-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.scientific .scientific-list .scientific-items {
  height: 200px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.scientific .scientific-list .scientific-items img {
  width: 100%;
  height: 100%;
  background: #d8d8d8;
}
.scientific .scientific-list .scientific-items:hover {
  -webkit-transform: scale(1.045);
          transform: scale(1.045);
  z-index: 9;
}

.member {
  padding: 50px 0;
}
.member .section-title {
  font-weight: 600;
  font-size: 24px;
  color: #444444;
  line-height: 33px;
  letter-spacing: 1px;
  text-align: center;
}
.member .swiper-container .swiper-slide {
  opacity: 0.5;
}
.member .swiper-container .swiper-slide img {
  width: 100%;
}
.member .swiper-container .swiper-slide .swiper-title {
  margin-top: 30px;
  font-weight: 600;
  font-size: 16px;
  color: #444444;
  line-height: 22px;
  letter-spacing: 1px;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.member .swiper-container .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.member .swiper-container .swiper-slide.swiper-slide-active .swiper-title {
  opacity: 1;
}

.job-list {
  padding: 40px 0;
  min-height: calc(100vh - 120px);
  background: #f9f9f9;
}
.job-list .section-title {
  font-size: 24px;
  color: #222222;
  line-height: 33px;
  letter-spacing: 1px;
  margin-bottom: 45px;
}
.job-list .media {
  background-color: #fff;
  padding: 40px 31px;
}
.job-list .media + .media {
  margin-top: 30px;
}
.job-list .media .header {
  margin-bottom: 14px;
}
.job-list .media .header h3 {
  font-weight: 600;
  font-size: 22px;
  color: #6f8c25;
  line-height: 30px;
  letter-spacing: 1px;
}
.job-list .media .header span {
  font-weight: 400;
  font-size: 12px;
  color: #999999;
  line-height: 14px;
}
.job-list .media .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 400;
  font-size: 12px;
  color: #222222;
  line-height: 20px;
}
.job-list .media .info .btn {
  width: 100px;
  height: 34px;
  font-size: 12px;
}
.job-list .media .media-body {
  margin-top: 30px;
  border-top: 1px solid #d9d9d9;
  padding-top: 30px;
}
.job-list .media .media-footer {
  font-weight: 600;
  font-size: 16px;
  color: #222222;
  line-height: 30px;
  letter-spacing: 1px;
}

.certification {
  background: #f7f8fb;
}
.certification .section-title {
  margin-bottom: 50px;
}
.certification #important-awards .certification-item {
  width: 100%;
  aspect-ratio: 20/29;
  border-radius: 10px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.certification .tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.certification .tab-list .tab-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
  width: 200px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
}
.certification .tab-list .tab-header .tab-item {
  font-weight: 400;
  font-size: 18px;
  color: #666666;
  line-height: 25px;
  letter-spacing: 1px;
  cursor: pointer;
}
.certification .tab-list .tab-header .tab-item.active {
  color: #6f8c25;
  font-size: 24px;
  font-weight: 600;
}
.certification .tab-list .tab-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}
.certification .tab-list .tab-content .tab-pane {
  width: 100%;
  display: none;
}
.certification .tab-list .tab-content .tab-pane.active {
  display: block;
  -webkit-animation: show 0.3s ease-in-out;
          animation: show 0.3s ease-in-out;
}
@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.certification .tab-list .tab-content .tab-pane .swiper-container {
  width: 100%;
}
.certification .tab-list .tab-content .tab-pane .swiper-container .swiper-slide {
  width: 200px;
}
.certification .tab-list .tab-content .tab-pane .swiper-container img {
  aspect-ratio: 10/13;
  -o-object-fit: contain;
     object-fit: contain;
  width: 200px;
  border-radius: 10px;
}
.certification .tab-list .tab-content .tab-pane .swiper-container .swiper-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
}
.certification .tab-list .tab-content .tab-pane .swiper-container .swiper-button .arrow-left,
.certification .tab-list .tab-content .tab-pane .swiper-container .swiper-button .arrow-right {
  background-color: #fff;
  border-radius: 10px;
  width: 35px;
  height: 35px;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #6f8c25;
  margin-top: 10px;
}
.certification .tab-list .tab-content .tab-pane .swiper-container .swiper-button .arrow-left.disabled,
.certification .tab-list .tab-content .tab-pane .swiper-container .swiper-button .arrow-right.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.search-form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 46px;
}
.search-form .search-input {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid #ffffff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.search-form .search-input.search-form-active {
  background-color: #fff;
  border: 0;
}
.search-form .search-input.search-form-active .iconfont-sousuo {
  color: #222 !important;
}
.search-form .search-input .search-input-group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
}
.search-form .search-input .search-input-group .form-control {
  background-color: transparent;
  border: 0;
  outline: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 24px;
  color: #ffffff;
  letter-spacing: 1px;
}
.search-form .search-input .search-input-group .form-control::-webkit-input-placeholder {
  color: #ffffff;
}
.search-form .search-input .search-input-group .form-control::-moz-placeholder {
  color: #ffffff;
}
.search-form .search-input .search-input-group .form-control:-ms-input-placeholder {
  color: #ffffff;
}
.search-form .search-input .search-input-group .form-control::-ms-input-placeholder {
  color: #ffffff;
}
.search-form .search-input .search-input-group .form-control::placeholder {
  color: #ffffff;
}
.search-form .search-input .search-input-group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  outline: 0;
}
.search-form .search-input .search-input-group .iconfont-sousuo {
  margin-left: 20px;
  margin-right: 10px;
  color: #fff;
  font-size: 22px;
}
.search-form .search-input .search-input-group .iconfont-close {
  margin-right: 20px;
  margin-left: 10px;
  font-size: 22px;
}
.search-form .search-result {
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}
.search-form .search-result .search-result-content {
  max-height: 260px;
  overflow-y: auto;
}
.search-form .search-result .title {
  font-weight: 600;
  font-size: 16px;
  color: #222222;
  line-height: 30px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 14px;
}
.search-form .search-result .title:before {
  content: "";
  width: 4px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #6f8c25;
  border-radius: 4px;
}
.search-form .search-result .list {
  font-size: 16px;
  color: #666666;
  line-height: 30px;
  margin-bottom: 10px;
}
.search-form .search-result .list .item {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-form .search-result .list .item a {
  color: #666666;
  text-decoration: none;
}
.search-form .search-result .list .item a:hover {
  color: #6f8c25;
  text-decoration: underline;
}
.search-form .btn {
  width: 176px;
  height: 54px;
  background: #6f8c25;
}/*# sourceMappingURL=index.css.map */