* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  background: #fff;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}
body {
  font: 16px/1.65 "Roboto Slab", Georgia, serif;
  color: #252525;
  background: #fff;
  --font-accent-serif: "Roboto Slab", Georgia, serif;
  --accent-serif-color: #9b6a4d;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* 去除列表默认样式 */
  /* 去除默认的倾斜效果 */
  /* 去除超链接默认的样式 */
  /* 设置img的垂直对齐方式为居中对齐，去除img默认下间隙 */
  /* 去除input默认样式 */
}
body ul,
body ol {
  list-style: none;
}
body em,
body i {
  font-style: normal;
}
body a {
  text-decoration: none;
  color: #252525;
}
body img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
body input {
  border: none;
  outline: none;
  color: #333;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: var(--font-accent-serif);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}
.reveal-up {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  animation: none;
  will-change: opacity, transform;
}
.reveal-up.is-visible {
  animation: fadeUp 0.75s ease both;
}
.delay-1 {
  animation-delay: 0.08s;
}
.delay-2 {
  animation-delay: 0.16s;
}
.delay-3 {
  animation-delay: 0.24s;
}
.delay-4 {
  animation-delay: 0.32s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.wrapper {
  width: calc(100% - 32px);
  max-width: 1240px;
  margin: 0 auto;
}
.content {
  margin-top: 250px;
  height: 2000px;
  display: flex;
}
.top-banner {
  top: 0;
  position: fixed;
  height: 27px;
  width: 100%;
  background-color: #ea8b2e;
  z-index: 999;
}
.shortcut {
  position: fixed;
  width: 100%;
  height: 48px;
  background-color: white;
  top: 27px;
  z-index: 999;
  border-bottom: solid 1px #e9d5d5;
}
.shortcut .short-flex {
  display: flex;
  position: relative;
}
.shortcut .short-flex a {
  line-height: 48px;
}
.shortcut .short-flex a:hover {
  color: orange;
}
.shortcut .short-flex div:nth-child(2) {
  flex: 1;
  position: absolute;
  right: 0;
}
.shortcut .short-flex div:nth-child(2) a {
  margin-left: 10px;
}
.shortcut .short-flex div:nth-child(2) :nth-child(1) {
  font-size: 20px;
  color: #ec3a38;
}
.shortcut .short-flex div:nth-child(2) :nth-child(2) {
  font-size: 20px;
  background-image: linear-gradient(to top right, #5b3d98, #9a3c98, #c3294f, #cb683c, #cea736);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.shortcut .short-flex div:nth-child(2) :nth-child(3) {
  font-size: 20px;
  color: #1da1f3;
}
.shortcut .short-flex div:nth-child(2) :nth-child(4) {
  font-size: 20px;
  color: #26d366;
}
.shortcut .short-flex div:nth-child(2) :nth-child(5) {
  font-size: 20px;
  background-image: linear-gradient(to top, #ff9900 0%, #ff9900 30%, black 31%, black 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.shortcut .short-flex div:nth-child(2) :nth-child(6) {
  font-size: 20px;
  color: #3b5998;
}
.shortcut .short-flex div:nth-child(2) :nth-child(7) {
  font-size: 20px;
  color: #007fb1;
}
.shortcut .short-flex div:nth-child(2) :nth-child(8) {
  font-size: 20px;
  color: #cc2127;
}
.header-box {
  position: fixed;
  top: 75px;
  width: 100%;
  background-color: white;
  z-index: 999;
}
.header-box .header {
  position: relative;
  display: flex;
  height: 88px;
  top: 0;
}
.header-box .header .logo {
  width: 250px;
  height: 88px;
}
.header-box .header .logo a {
  display: block;
  width: 250px;
  height: 88px;
  background-image: url(../img/logo.png);
  background-repeat: no-repeat;
  font-size: 0;
}
.header-box .header .nav {
  position: absolute;
  right: 0;
  width: 640px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
}
.header-box .header .nav ul {
  width: 640px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}
.header-box .header .nav ul li {
  margin-left: 0;
}
.header-box .header .nav ul li a:hover,
.header-box .header .nav ul li a.active {
  color: orange;
}
.header-box .header .nav ul li a {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  color: #1d1d1f;
}
.header-box .header .nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: orange;
  transition: width 0.25s ease;
}
.header-box .header .nav ul li a:hover::after,
.header-box .header .nav ul li a.active::after {
  width: 100%;
}
.bgd {
  position: fixed;
  top: 0;
  width: 100%;
  height: 1080px;
  background-color: #fff;
  background-image: url(../img/world-map-bg.svg);
  background-repeat: no-repeat;
  background-position: center 160px;
  background-size: min(2048px, 118vw) auto;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.bgd-solve {
  position: relative;
  z-index: 1;
}
.footer {
  margin-top: 100px;
  height: 520px;
  background-color: #231816;
  width: 100%;
}
.footer .subscribe {
  color: white;
  display: flex;
  height: 170px;
  justify-content: space-between;
  align-items: center;
}
.footer .subscribe div:nth-child(1) span {
  display: block;
  font-weight: 600;
}
.footer .subscribe div:nth-child(1) span:nth-child(1) {
  font-size: 32px;
  line-height: 1.15;
}
.footer .subscribe div:nth-child(1) span:nth-child(2) {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
}
.footer .subscribe div:nth-child(2) {
  display: flex;
}
.footer .subscribe div:nth-child(2) input {
  width: 500px;
  height: 45px;
  font-size: 15px;
  padding-left: 20px;
}
.footer .subscribe div:nth-child(2) ::-webkit-input-placeholder {
  font-size: 15px;
}
.footer .subscribe div:nth-child(2) .subButton {
  width: 100px;
  height: 45px;
  background-color: #ea8b2e;
  cursor: pointer;
}
.footer .subscribe div:nth-child(2) .subButton span {
  display: block;
  width: 100px;
  text-align: center;
  line-height: 45px;
  font-size: 15px;
}
.footer .contact-list {
  display: flex;
  height: 350px;
}
.footer .contact-list .footer-contact {
  height: 350px;
  width: 400px;
}
.footer .contact-list .footer-contact div:nth-child(1) {
  width: 250px;
  height: 80px;
  background: url(../img/logo.png) no-repeat center center;
}
.footer .contact-list .footer-contact div:nth-child(2) {
  margin-top: 30px;
}
.footer .contact-list .footer-contact div:nth-child(2) p {
  font-weight: 500;
  margin-top: 5px;
  color: white;
}
.footer .contact-list .footer-contact div:nth-child(2) p a {
  color: #cea736;
}
.footer .contact-list .footer-nav {
  margin-top: 100px;
  flex: 1;
  margin-left: 200px;
  display: flex;
  justify-content: space-evenly;
}
.footer .contact-list .footer-nav dl {
  color: white;
}
.footer .contact-list .footer-nav dl dt {
  font-weight: 600;
}
.footer .contact-list .footer-nav dl a {
  color: white;
}
.footer .contact-list .footer-nav dl dd {
  margin-top: 10px;
}
.footer .contact-list .footer-nav dl dd:nth-child(2) {
  margin-top: 20px;
}
.copyright {
  width: 100%;
  height: 30px;
  background-color: #322220;
}
.copyright .wrapper {
  position: relative;
}
.copyright .wrapper span {
  color: white;
  position: absolute;
  right: 0;
}
.ab_box1 {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  width: min(1380px, calc(100% - 96px));
  min-height: 760px;
  margin-top: 245px;
  padding: 0;
  border: none;
  background: #e8e2d8;
  border-radius: 10px;
  box-shadow:
    0 2px 4px rgba(37, 37, 37, 0.05),
    0 16px 36px rgba(37, 37, 37, 0.1),
    0 40px 80px rgba(37, 37, 37, 0.14);
  overflow: hidden;
}
.ab_box1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 18px;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.07) 0%,
    rgba(0, 0, 0, 0.14) 38%,
    rgba(255, 255, 255, 0.42) 50%,
    rgba(0, 0, 0, 0.12) 62%,
    rgba(0, 0, 0, 0.05) 100%
  );
  pointer-events: none;
}

.ab_box1 .left,
.ab_box1 .right {
  position: relative;
  z-index: 1;
  min-height: 100%;
  background-color: #faf8f5;
}

.ab_box1 .left {
  padding: 56px 62px 64px 54px;
  border-radius: 10px 0 0 10px;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 0%, transparent 18%),
    linear-gradient(90deg, transparent 72%, rgba(0, 0, 0, 0.045) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, transparent 10%, transparent 90%, rgba(0, 0, 0, 0.035) 100%);
  box-shadow:
    inset -22px 0 28px -14px rgba(37, 37, 37, 0.09),
    6px 0 18px rgba(37, 37, 37, 0.04);
}
.ab_box1 .right {
  padding: 56px 54px 64px 72px;
  border-radius: 0 10px 10px 0;
  background-image:
    linear-gradient(270deg, rgba(255, 255, 255, 0.55) 0%, transparent 18%),
    linear-gradient(270deg, transparent 72%, rgba(0, 0, 0, 0.045) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, transparent 10%, transparent 90%, rgba(0, 0, 0, 0.035) 100%);
  box-shadow:
    inset 22px 0 28px -14px rgba(37, 37, 37, 0.09),
    -6px 0 18px rgba(37, 37, 37, 0.04);
}
.contact-logo {
  width: 300px;
  height: 110px;
  margin: 0 auto 48px;
}
.contact-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0);
}
.contact-info-block {
  padding: 28px 0 30px;
  border-bottom: 1px solid #e8e3df;
}
.contact-info-block h3 {
  margin-bottom: 14px;
  color: #252525;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
}
.contact-info-block p {
  margin-top: 4px;
  color: #6e6e6e;
  font-size: 16px;
  line-height: 1.65;
}
.ab_box1 .right h2 {
  max-width: 620px;
  color: #252525;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
}
.contact-intro {
  max-width: 620px;
  margin-top: 18px;
  color: #6e6e6e;
  font-size: 16px;
  line-height: 1.7;
}
.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid #e8e3df;
  border-radius: 0;
  background: #fff;
  color: #252525;
  font: inherit;
  font-size: 15px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #bc8b64;
  box-shadow: 0 0 0 3px rgba(188, 139, 100, 0.12);
}
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
.phone-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
}
.contact-form button {
  min-height: 56px;
  border: none;
  border-radius: 2px;
  background: #bc8b64;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.contact-form button:hover {
  background: #a87450;
  transform: translateY(-1px);
}
@media (max-width: 900px) {
  .ab_box1 {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    margin-top: 210px;
  }
  .ab_box1::before {
    top: auto;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 14px;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.07) 0%,
      rgba(0, 0, 0, 0.14) 38%,
      rgba(255, 255, 255, 0.42) 50%,
      rgba(0, 0, 0, 0.12) 62%,
      rgba(0, 0, 0, 0.05) 100%
    );
  }
  .ab_box1 .left,
  .ab_box1 .right {
    padding: 36px 28px;
  }
  .ab_box1 .left {
    border-radius: 10px 10px 0 0;
    box-shadow:
      inset 0 -18px 24px -12px rgba(37, 37, 37, 0.09),
      0 6px 18px rgba(37, 37, 37, 0.04);
  }
  .ab_box1 .right {
    border-radius: 0 0 10px 10px;
    box-shadow:
      inset 0 18px 24px -12px rgba(37, 37, 37, 0.09),
      0 -6px 18px rgba(37, 37, 37, 0.04);
  }
  .phone-row {
    grid-template-columns: 1fr;
  }
}
