li {
  list-style: none;
}

:root {
  --ahcess-color: #1e51a2;
  --ahcess-secondary-color: #e3e3e3;
  --font-color-lightest: #e7e9ec;
  --font-color-darker: #2e2e2e;
  --font-color-dark: #494949;
  --font-color-gary: #8b8b8b;
  --font-color-dark-gray: #727272;
  --font-color-light-gray: #c6c6c6;
  --back-color: rgba(42, 42, 42, 0.69);
}

.backdrop {
  background: var(--back-color);
  z-index: 60;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.5;
}

button {
  --bg-color: #fff;
  --font-color: #1e51a2;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition-config);
}

button.fill-button {
  color: var(--font-color);
  border: 1px solid var(--font-color);
  position: relative;
  padding: 8px 40px;
  transition: all 600ms ease-out;
  /* 以下为核心代码 */
  background-size: 200% 100%;
  background-position: right bottom;
  background-image: linear-gradient(
    to right,
    var(--font-color) 50%,
    var(--bg-color) 50%
  );
}

button.fill-button:hover {
  color: var(--bg-color);
  background-position: left bottom;
}

/* 内容区域 */
/* 通用样式 */
.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

section {
  display: grid;
  justify-items: center;
  max-width: 1280px;
  padding: 0 80px;
}

.section-bg {
  position: relative;
}

.section-bg::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #f9fbfb;
  width: 100vw;
  height: 100%;
  z-index: -1;
}

.title1 {
  font-size: 34px;
  color: var(--font-color-darker);
  margin-top: 30px;
}

.title1::after {
  content: "";
  display: block;
  width: 80%;
  height: 4px;
  background-color: var(--ahcess-color);
  margin-top: 14px;
  transform: translateX(10%);
}

.intro {
  margin: 28px 0 60px 0;
  font-size: 18px;
  color: var(--font-color-dark-gray);
}

/* 关于我们 */
.about-us {
  padding-bottom: 32px;
}

.about-us img {
  position: absolute;
  margin-left: 1600px;
  margin-top: 300px;
  animation: mymove 3s infinite;
  -webkit-animation: mymove 3s infinite; /*Safari and Chrome*/
  animation-direction: alternate; /*轮流反向播放动画。*/
  animation-timing-function: ease-in-out; /*动画的速度曲线*/
  /* Safari 和 Chrome */
  -webkit-animation: mymove 3s infinite;
  -webkit-animation-direction: alternate; /*轮流反向播放动画。*/
  -webkit-animation-timing-function: ease-in-out; /*动画的速度曲线*/
}
@keyframes mymove {
  0% {
    transform: scale(1); /*开始为原始大小*/
  }
  25% {
    transform: scale(1.1); /*放大1.1倍*/
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}

@-webkit-keyframes mymove /*Safari and Chrome*/ {
  0% {
    transform: scale(1); /*开始为原始大小*/
  }
  25% {
    transform: scale(1.1); /*放大1.1倍*/
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 126px 126px;
  column-gap: 5vw;
}

.feature {
  display: grid;
  grid-template-areas:
    "icon title"
    "icon content";
  grid-template-columns: 60px 1fr;
  grid-template-rows: 1fr 3fr;
}

.feature i.fas {
  grid-area: icon;
  font-size: 34px;
  color: var(--ahcess-color);
}

.feature-title {
  grid-area: title;
  font-size: 18px;
  color: var(--font-color-darker);
}

.feature-content {
  grid-area: content;
  color: var(--font-color-gary);
  margin-top: 8px;
}

/* 成功案例 */
.showcases {
  max-width: unset;
  padding: 0;
  padding-top: 72px;
}

.filter-btns {
  margin-top: 54px;
  margin-bottom: 38px;
}

.filter-btn {
  margin: 0 7px;
  background-color: var(--ahcess-secondary-color);
  border: 0;
  color: var(--font-color-dark-gray);
  padding: 8px 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.4s;
}

.filter-btn:focus,
.filter-btn:active {
  outline: none;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--ahcess-color);
  color: white;
}

.showcases .cases {
  width: 100vw;
}

.showcases .case-item {
  width: 25vw;
  height: 20vw;
  overflow: hidden;
}

.case-item img {
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
}

.img .case-item .title {
  width: 100%;
  height: 100%;
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  text-align: center;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  font-size: 24px;
  line-height: 400px;
}

.img:hover {
  cursor: pointer;
}

.img:hover .title {
  opacity: 1;
}

.img:hover img {
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
}

/* 技术服务 */
.iservice {
  padding-top: 131px;
}

.iservices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  column-gap: 38px;
  row-gap: 34px;
}

.iservice-item {
  display: grid;
  grid-template-areas:
    "icon title"
    "icon content";
  grid-template-columns: 70px 1fr;
  grid-template-rows: 1fr 3fr;
  padding: 24px;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.06);
}

.iservice-item i.fas {
  grid-area: icon;
  font-size: 42px;
  color: var(--ahcess-color);
  padding-top: 6px;
}

.iservice-item .iservice-title {
  grid-area: title;
  color: var(--font-color-darker);
  font-size: 24px;
}

.iservice-item .iservice-content {
  grid-area: content;
  color: var(--font-color-gary);
  line-height: 30px;
  font-size: 18px;
  margin-top: 8px;
}

.iservice img {
  position: absolute;
  margin-right: 1600px;
  margin-top: 350px;
  animation: mymove 3s infinite;
  -webkit-animation: mymove 3s infinite; /*Safari and Chrome*/
  animation-direction: alternate; /*轮流反向播放动画。*/
  animation-timing-function: ease-in-out; /*动画的速度曲线*/
  /* Safari 和 Chrome */
  -webkit-animation: mymove 3s infinite;
  -webkit-animation-direction: alternate; /*轮流反向播放动画。*/
  -webkit-animation-timing-function: ease-in-out; /*动画的速度曲线*/
}
@keyframes mymove {
  0% {
    transform: scale(1); /*开始为原始大小*/
  }
  25% {
    transform: scale(1.1); /*放大1.1倍*/
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}

@-webkit-keyframes mymove /*Safari and Chrome*/ {
  0% {
    transform: scale(1); /*开始为原始大小*/
  }
  25% {
    transform: scale(1.1); /*放大1.1倍*/
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}

.iservice-item .fill-button{
  position: relative;
  right: -170px;
}

/* 团队介绍 */
.team-intro {
  margin-top: 48px;
  padding-top: 62px;
  padding-bottom: 52px;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
  margin-top: 86px;
}

.team-member {
  background-color: white;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.06);
  text-align: center;
  padding-bottom: 28px;
  cursor: pointer;
  transition: 0.4s;
  display: grid;
  justify-items: center;
}

.profile-image {
  overflow: hidden;
}

.profile-image img {
  width: 100%;
  height: 20vw;
  object-fit: cover;
  object-position: top center;
}

.team-member .name {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 500;
  color: var(--font-color-dark);
}

.team-member .position {
  color: var(--font-color-dark-gray);
  margin-top: 12px;
  margin-bottom: 18px;
}

.social-links {
  width: 100%;
  max-width: 200px;
  display: flex;
  justify-content: space-between;
  padding: 0 42px;
}

.social-links li a {
  color: var(--ahcess-color);
  font-size: 20px;
  text-decoration: none;
}

.team-member:hover {
  transform: translateY(-20px) scale(1.05);
  box-shadow: 0 0 36px rgba(0, 0, 0, 0.1);
}

/* 数据部分 */
.data-section {
  max-width: unset;
  width: 100vw;
  height: 255px;
  background-image: url(../images/1920x1080/index2.jpg);
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: repeat(4, minmax(auto, 220px));
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 20;
}

.data-section::before {
  content: "";
  display: block;
  position: absolute;
  background-color: var(--back-color);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.data-piece {
  width: 250px;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  justify-items: center;
  color: #fff;
  position: relative;
  z-index: 40;
}

.data-piece i.fas {
  font-size: 44px;
}

.data-piece .num {
  margin-top: 7px;
  font-size: 41px;
  font-weight: 600;
}

.data-piece .data-desc {
  font-size: 18px;
  font-weight: 500;
}

/* 公司动态 */
.company-activities {
  margin-top: 88px;
}

.activities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
}

.activity {
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  padding: 24px;
  transition: 0.4s;
}

.act-image-wrapper {
  height: 255px;
  overflow: hidden;
  margin: -24px;
  margin-bottom: 0;
}

.act-image-wrapper img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}

.activity .meta {
  margin-top: 20px;
  margin-bottom: 12px;
  color: var(--font-color-light-gray);
  font-size: 12px;
  display: flex;
}

.activity .meta > p:last-child {
  margin-left: 36px;
}

.act-title {
  color: var(--font-color-dark);
  font-size: 18px;
  margin-bottom: 16px;
}

.activity article {
  color: var(--font-color-dark);
  letter-spacing: 0.54px;
  line-height: 24px;
}

.activity i.far {
  grid-area: icon;
  font-size: 20px;
  margin-right: 10px;
  color: var(--ahcess-color);
  padding-top: 6px;
}

.readmore-btn {
  border: 0;
  color: #fff;
  background-color: var(--ahcess-color);
  border-radius: 4px;
  padding: 6px 14px;
  margin-top: 24px;
}

.activity:hover {
  cursor: pointer;
  transform: translateY(-20px) scale(1.05);
  box-shadow: 0 0 36px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1100px) {
  .iservice-item .iservice-title {
    font-size: 20px;
  }
  .iservice-item .iservice-content {
    font-size: 14px;
    line-height: 24px;
  }
  .team-members {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
    column-gap: 6vw;
  }
  .activities {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }
}

@media (max-width: 990px) {
  .features,
  .iservices {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
  }
  .data-section {
    grid-template-columns: repeat(2, minmax(200px, auto));
    padding: 24px 0;
    height: auto;
    row-gap: 24px;
    background-size: 200%;
  }
  .showcases .case-item {
    width: calc(100vw / 3);
  }
}

@media (max-width: 650px) {
  .slide-caption h1 {
    font-size: 28px;
  }
  .slide-caption h3 {
    font-size: 13px;
  }
  .features,
  .iservices {
    grid-template-columns: 1fr;
  }
  .feature {
    margin: 10px 0;
  }
  .team-members {
    grid-template-columns: 1fr;
    row-gap: 36px;
    column-gap: 6vw;
  }
  .data-section {
    grid-template-columns: 1fr;
    padding: 24px 0;
    height: auto;
    row-gap: 24px;
    background-size: 400%;
  }
  .activities {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }
  .footer-menus,
  .contact-us {
    grid-template-columns: 1fr;
  }
  .showcases .case-item {
    width: calc(100vw / 2);
  }
}

/* Preloader */

.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader-close {
  position: fixed;
  z-index: 99999999;
  font-size: 26px;
  background: #fff;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  right: 30px;
  top: 30px;
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 150px;
  margin: 0 auto 45px auto;
  width: 150px;
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top: 0;
  position: absolute;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  letter-spacing: 15px;
  display: inline-block;
  position: relative;
  font-size: 70px;
  line-height: 70px;
  /* text-transform: uppercase; */
}

.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.handle-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.handle-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
  color: #ffffff;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  color: #ffffff;
}

.handle-preloader .animation-preloader .spinner {
  border: 3px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.5);
}

/* AnimaciÃ³n del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}
@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .handle-preloader .animation-preloader .txt-loading .letters-loading {
    font-size: 40px;
    letter-spacing: 10px;
  }
}

/* new teams */
.team-section {
  position: relative;
}

.team-block-one {
  max-width: 270px;
  margin: 0 auto;
  margin-top: 40px;
}

.team-block-one .inner-box {
  position: relative;
  display: block;
}

.team-block-one .inner-box .image-box {
  position: relative;
  display: block;
  padding-bottom: 70px;
}

.team-block-one .inner-box .image-box .image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.1);
}

.team-block-one .inner-box .image-box .image:before {
  position: absolute;
  content: "";
  background: #000;
  width: calc(100% - 14px);
  height: 100%;
  left: 7px;
  top: 7px;
  transform: scale(0, 0);
  opacity: 0.4;
  z-index: 1;
  border-radius: 50%;
  clip-path: polygon(0% 0%, 100% 0%, 100% 93%, 0% 96%, 0% 0%);
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box .image:before {
  transform: scale(1, 1);
}

.team-block-one .inner-box .image-box .image img {
  width: 100%;
  border-radius: 50%;
  transition: all 500ms ease;
}

.team-block-one .inner-box .image-box .shape {
  position: absolute;
  left: 0px;
  top: -1px;
  width: 270px;
  height: 255px;
  background-repeat: no-repeat;
  z-index: 1;
}

.team-block-one .inner-box .image-box .bar-box .bar {
  position: absolute;
}

.team-block-one .inner-box .image-box .bar-box .bar-1 {
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  width: 74px;
  height: 26px;
  border-radius: 0% 0% 50% 50%;
}

.team-block-one .inner-box .image-box .bar-box .bar-2 {
  left: 50%;
  transform: translateX(-50%);
  bottom: 32px;
  width: 92px;
  height: 12px;
  border-radius: 10px;
}

.team-block-one .inner-box .image-box .bar-box .bar-3 {
  left: 50%;
  transform: translateX(-50%);
  bottom: 51px;
  width: 110px;
  height: 12px;
  border-radius: 10px;
}

.team-block-one .inner-box .image-box .social-links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0, 0);
  transition: all 500ms ease;
  z-index: 2;
}

.team-block-one .inner-box:hover .image-box .social-links {
  transform: translate(-50%, -50%) scale(1, 1);
}

.team-block-one .inner-box .image-box .social-links li {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #fff;
  margin: 0px 10px;
}

.team-block-one .inner-box .image-box .social-links li a {
  display: inline-block;
  color: #fff;
}

.team-block-one .inner-box .lower-content h3 {
  display: block;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 7px;
}

.team-block-one .inner-box .lower-content {
  padding-top: 25px;
  align-items: center;
  text-align: center;
}

.team-block-one .inner-box .lower-content h3 a {
  display: inline-block;
  color: #141417;
}

.team-block-one .inner-box .lower-content .designation {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 17px;
}

.team-section .owl-dots {
  position: relative;
  display: block;
  margin-top: 41px;
}

.team-section .owl-theme .owl-dots .owl-dot span {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #d9d9d9;
  border-radius: 50%;
  margin: 0px 5px;
  cursor: pointer;
  transition: all 500ms ease;
}

/** service-style-three **/

.service-block-two .inner-box {
  position: relative;
  display: block;
  background: #fff;
}

.service-block-two .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
}

.service-block-two .inner-box .image-box img {
  width: 100%;
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .image-box img {
  opacity: 0.7;
  transform: scale(1.05);
}

.service-block-two .inner-box .lower-content {
  padding: 0px 40px 37px 40px;
}

.service-block-two .inner-box .lower-content .icon-box {
  position: relative;
  display: inline-block;
  margin-top: -49px;
  top: -11px;
  margin-bottom: 43px;
}

.service-block-two .inner-box .lower-content .icon-box .icon {
  position: relative;
  display: inline-block;
  width: 96px;
  height: 96px;
  line-height: 96px;
  text-align: center;
  font-size: 40px;
  background: #fbe3d4;
  border-radius: 50%;
  z-index: 1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 94%, 0% 94%, 0% 0%);
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .lower-content .icon-box .icon {
  color: #fff;
}

.service-block-two .inner-box .lower-content .icon-box .icon:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 50%;
  transform: scale(0, 0);
  z-index: -1;
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .lower-content .icon-box .icon:before {
  transform: scale(1, 1);
}

.service-block-two .inner-box .lower-content .icon-box .icon-shape {
  position: absolute;
  left: -46px;
  top: -27px;
  width: 188px;
  height: 208px;
  background-repeat: no-repeat;
}

.service-block-two .inner-box .lower-content h3 {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-block-two .inner-box .lower-content h3 a {
  display: inline-block;
  color: #141417;
}

.service-block-two .inner-box .lower-content p {
  margin-bottom: 16px;
}

.service-block-two .inner-box .lower-content .link a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: #141417;
  text-transform: uppercase;
}

.service-block-two .inner-box .lower-content .link a span {
  position: relative;
  display: inline-block;
  transition: all 500ms ease;
}

.service-block-two .inner-box .lower-content .link a:hover span {
  padding-right: 21px;
}

.service-block-two .inner-box .lower-content .link a span:before {
  position: absolute;
  content: "\e906";
  font-family: "icomoon";
  font-size: 14px;
  top: 0px;
  right: 0px;
  opacity: 0;
  transition: all 500ms ease;
}

.service-block-two .inner-box .lower-content .link a:hover span:before {
  opacity: 1;
}

.service-block-two .inner-box:before {
  position: absolute;
  content: "";
  width: calc(100% - 170px);
  left: 85px;
  bottom: 0px;
  height: 7px;
  transform: scaleX(0);
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover:before {
  transform: scaleX(1);
}

.service-style-three .owl-dots {
  position: relative;
  display: block;
  margin-top: 50px;
  text-align: center;
}

.service-style-three .owl-theme .owl-dots .owl-dot span {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #d9d9d9;
  border-radius: 50%;
  margin: 0px 5px;
  cursor: pointer;
  transition: all 500ms ease;
}

.service-style-three .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


/*底部20230321*/
.bottom2 {
  width: 100%;
  height: 300px;
  background: #172842;
  overflow: hidden;
}

.bottom2 .content{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 1470px;
  height: 280px;
  background: #172842;
}

@media only screen and (max-width: 1280px){
}

@media only screen and (max-width: 767px){
  .bottom2 {
    display: grid;
  }
}

.bottom2 .top img{
  padding-top: 10px;
  width: 220px;
  height: 80px;
}

.bottom2 .center{
  position: relative;
  width: 100%;
  height: 170px;
}

.bottom2 .center img{
  cursor: pointer;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
}

.bottom2 .center img:hover{
  transform: scale(1.1);
  -ms-transform: scale(1.1); 
  -moz-transform: scale(1.1); 
  -webkit-transform: scale(1.1); 
  -o-transform: scale(1.1); 
}

.bottom2 .center .left{
  width: 330px;
  height: 160px;
  background: #2B3A4F;
  float: left;
  padding: 30px 10px 10px 10px;
}


.bottom2 .center .left .img{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
}

.bottom2 .center .left img{
  width: 25px;
  height: 25px;
}

.bottom2 .center .left h4{
  font-family: "思源常规";
  text-align: center;
  font-size: 21px;
  font-weight: 300px;
  color: #fff;
  padding: 12px 0 0 0;
  letter-spacing: 5px;
}

.bottom2 .center .left p,a{
  font-family: "思源常规";
  text-align: center;
  font-size: 14px;
  font-weight: 200px;
  color: #fff;
  letter-spacing: 2px;
  padding-top: 5px;
}

.bottom2 .center .middle{
  margin-left: 20px;
  width: 330px;
  height: 160px;
  background: #2B3A4F;
  float: left;
  padding: 30px 10px 10px 10px;
}

.bottom2 .center .middle .img{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
}

.bottom2 .center .middle img{
  width: 25px;
  height: 25px;
}

.bottom2 .center .middle h4{
  font-family: "思源常规";
  text-align: center;
  font-size: 21px;
  font-weight: 300px;
  color: #fff;
  padding: 12px 0 0 0;
  letter-spacing: 5px;
}

.bottom2 .center .middle p,a{
  font-family: "思源常规";
  text-align: center;
  font-size: 14px;
  font-weight: 200px;
  color: #fff;
  letter-spacing: 2px;
  padding-top: 5px;
}

.bottom2 .center .right{
  margin-left: 20px;
  width: 330px;
  height: 160px;
  background: #2B3A4F;
  float: left;
  padding: 30px 10px 10px 10px;
}

.bottom2 .center .right .img{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
}

.bottom2 .center .right img{
  width: 25px;
  height: 25px;
}

.bottom2 .center .right h4{
  font-family: "思源常规";
  text-align: center;
  font-size: 21px;
  font-weight: 350px;
  color: #fff;
  padding: 12px 0 0 0;
  letter-spacing: 5px;
}

.bottom2 .center .right p,a{
  font-family: "思源常规";
  text-align: center;
  font-size: 14px;
  font-weight: 200px;
  color: #fff;
  letter-spacing: 2px;
  padding-top: 5px;
}


.bottom2 .center .qcr1{
  margin-left: 20px;
  width: 200px;
  height: 160px;
  background: #2B3A4F;
  float: left;
  padding: 20px 10px 10px 10px;
}

.bottom2 .center .qcr1 .img{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
}

.bottom2 .center .qcr1 img{
  width: 90px;
  height: 90px;
}

.bottom2 .center .qcr1 p{
  font-family: "思源常规";
  text-align: center;
  font-size: 14px;
  font-weight: 200px;
  color: #fff;
  letter-spacing: 2px;
  padding: 12px 0 0 0;
}

.bottom2 .center .qcr2{
  margin-left: 20px;
  width: 200px;
  height: 160px;
  background: #2B3A4F;
  float: left;
  padding: 20px 10px 10px 10px;
}

.bottom2 .center .qcr2 .img{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
}

.bottom2 .center .qcr2 img{
  width: 90px;
  height: 90px;
}

.bottom2 .center .qcr2 p{
  font-family: "思源常规";
  text-align: center;
  font-size: 14px;
  font-weight: 200px;
  color: #fff;
  letter-spacing: 2px;
  padding: 12px 0 0 0;
}