h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}
a {
  text-decoration: none;
}
i {
  font-style: normal;
}
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
dl,
dt,
dd {
  margin-bottom: 0;
}
html,
body {
  padding: 0;
  margin: 0;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes goUpFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
  }
}
@keyframes goUpFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes arrowDown {
  0%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
@keyframes arrowDown {
  0%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
@-webkit-keyframes wordsGoUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
  }
}
@keyframes wordsGoUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
  }
}
@font-face {
  font-family: OPPOSans-B;
  src: url("https://cdn.ucyber.cn/amber_gw/siraj/fonts/OPPOSans-B.ttf");
}
@font-face {
  font-family: OPPOSans-R;
  src: url("https://cdn.ucyber.cn/amber_gw/siraj/fonts/OPPOSans-R.ttf");
}
:root {
  --primary-color: #e3a11c;
  --select-color: #e19e1d;
  --white-color: #ffffff;
  --text-color: #2a1201;
  --border-radius: 8px;
  --transition-duration: 0.3s;
  --select-animation: goUpFadeIn 0.5s ease-in-out;
}
.leaflet-control-zoom {
  display: none;
}
.leaflet-bottom {
  display: none;
}
.leaflet-popup-content-wrapper {
  border-radius: 4px;
}
.leaflet-popup-content {
  margin: 16px 10px 12px;
}
.leaflet-container a.leaflet-popup-close-button {
  padding: 0;
}
.el-message--success .el-message__content {
  font-size: 12px;
}
.el-message--error .el-message__content {
  font-size: 12px;
}
html,
body {
  width: 100%;
}
body {
  overflow-x: hidden;
}
body.hidden {
  overflow: hidden;
}
#app {
  width: 100%;
  font-family: OPPOSans-B;
}
#app .inner {
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#app .header {
  background-color: var(--white-color);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  padding: 4px 0 6px;
  z-index: 9;
}
#app .header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#app .header .logo {
  display: block;
  width: 151px;
  height: 43px;
  background: url("../imgs/logo-color.png") center no-repeat;
  background-size: 100%;
}
#app .header .logo h1 {
  display: none;
}
#app .header .menus-lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#app .header .menus-lang .menus1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
}
#app .header .menus-lang .menus1 li {
  cursor: pointer;
  font-size: 12px;
  line-height: 16px;
  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;
  position: relative;
  padding: 20px 50px;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}
#app .header .menus-lang .menus1 li span {
  color: var(--text-color);
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
  position: relative;
}
#app .header .menus-lang .menus1 li span::after {
  content: " ";
  display: block;
  width: 140%;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -15px;
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}
#app .header .menus-lang .menus1 li:hover span {
  color: var(--primary-color);
}
#app .header .menus-lang .menus1 li:hover span::after {
  background: transparent;
}
#app .header .menus-lang .menus1 li.active span {
  color: var(--primary-color);
}
#app .header .menus-lang .menus1 li.active span::after {
  background: var(--primary-color);
}
#app .header .menus-lang .lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  margin-right: 10px;
}
#app .header .menus-lang .lang .lang-icon {
  cursor: pointer;
  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;
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}
#app .header .menus-lang .lang .lang-icon i {
  width: 20px;
  height: 20px;
  background-image: url("../imgs/earth.png");
  background-repeat: no-repeat;
  background-size: 195%;
  background-position: 0px 0;
  display: block;
}
#app .header .menus-lang .lang .lang-icon:hover {
  background-color: #f3f4f6;
}
#app .header .menus-lang .lang .lang-icon:hover i {
  background-position: -19px 0;
}
#app .header .menus-lang .lang .lang-select {
  display: none;
  position: absolute;
  right: 0;
  top: 40px;
  width: 240px;
  border-radius: var(--border-radius);
  background: var(--white-color);
  -webkit-animation: var(--select-animation);
          animation: var(--select-animation);
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
#app .header .menus-lang .lang .lang-select li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 42px;
  padding: 0 14px;
  position: relative;
  cursor: pointer;
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}
#app .header .menus-lang .lang .lang-select li .name {
  font-size: 12px;
  width: 70px;
  color: rgba(0, 0, 0, 0.8);
}
#app .header .menus-lang .lang .lang-select li .desc {
  font-weight: 400;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}
#app .header .menus-lang .lang .lang-select li::after {
  width: 8px;
  height: 8px;
  content: " ";
  border-radius: 50%;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  display: block;
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}
#app .header .menus-lang .lang .lang-select li:hover {
  background-color: #f6ecd7;
}
#app .header .menus-lang .lang .lang-select li.active {
  background-color: #f6ecd7;
}
#app .header .menus-lang .lang .lang-select li.active .desc {
  color: var(--select-color);
}
#app .header .menus-lang .lang .lang-select li.active::after {
  background-color: var(--primary-color);
}
#app .header .menus-lang .menus2 {
  position: relative;
  display: none;
}
#app .header .menus-lang .menus2 .icon {
  border-radius: var(--border-radius);
  width: 40px;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}
#app .header .menus-lang .menus2 .icon i {
  display: block;
  width: 18px;
  height: 18px;
  background-size: 220%;
  background-image: url("../imgs/menus.png");
  background-repeat: no-repeat;
  background-position: 0 0;
}
#app .header .menus-lang .menus2 .icon:hover {
  background-color: #f3f4f6;
}
#app .header .menus-lang .menus2 .icon:hover i {
  background-position: -19px 0;
}
#app .header .menus-lang .menus2 .menus2-select {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  -webkit-animation: var(--select-animation);
          animation: var(--select-animation);
}
#app .header .menus-lang .menus2 .menus2-select li {
  cursor: pointer;
  padding: 5px 20px;
  font-size: 14px;
  line-height: 30px;
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}
#app .header .menus-lang .menus2 .menus2-select li.active {
  color: var(--select-color);
  background-color: rgba(227, 161, 28, 0.4);
}
#app .header .menus-lang .menus2 .menus2-select li:hover {
  background-color: rgba(227, 161, 28, 0.4);
}
#app .box-modal {
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  padding: 40px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: auto;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation: fadeIn 0.1s ease-in-out;
          animation: fadeIn 0.1s ease-in-out;
}
#app .box-modal .main {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  position: relative;
  width: 920px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#app .box-modal .main::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.05)));
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05));
}
#app .box-modal .main .item {
  display: none;
}
#app .box-modal .main .item .head {
  padding: 20px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #d1d5db;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#app .box-modal .main .item .head .tit {
  font-size: 20px;
}
#app .box-modal .main .item .head .close {
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
  cursor: pointer;
  width: 34px;
  height: 34px;
  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: var(--border-radius);
}
#app .box-modal .main .item .head .close:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
#app .box-modal .main .item .head .close::before {
  content: " ";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../imgs/close.png") center no-repeat;
  background-size: 150%;
}
#app .box-modal .main .item .cont {
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-y: auto;
}
#app .box2-modal .cont {
  gap: 30px;
}
#app .box2-modal .cont .word-left .row1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
#app .box2-modal .cont .word-left .row1 .icon {
  width: 66px;
  height: 66px;
  margin-right: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-repeat: no-repeat;
  background-image: url("../imgs/modal-icon.png");
}
#app .box2-modal .cont .word-left .row1 .icon.icon-1 {
  background-position: 0px 0px;
}
#app .box2-modal .cont .word-left .row1 .icon.icon-2 {
  background-position: -70px 0px;
}
#app .box2-modal .cont .word-left .row1 .icon.icon-3 {
  background-position: -141px 0px;
}
#app .box2-modal .cont .word-left .row1 .icon.icon-4 {
  background-position: -211px 0px;
}
#app .box2-modal .cont .word-left .row1 .icon.icon-5 {
  background-position: -282px 0px;
}
#app .box2-modal .cont .word-left .row1 .icon.icon-6 {
  background-position: -352px 0px;
}
#app .box2-modal .cont .word-left .row1 .word {
  font-size: 14px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.6);
  font-family: OPPOSans-R;
}
#app .box2-modal .cont .word-left .row2 {
  margin-top: 0;
}
#app .box2-modal .cont .word-left .row2 dt {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
  color: #000000;
}
#app .box2-modal .cont .word-left .row2 dd {
  margin-left: 0;
  font-family: OPPOSans-R;
  font-size: 14px;
  line-height: 20px;
  padding-left: 20px;
  position: relative;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 10px;
}
#app .box2-modal .cont .word-left .row2 dd:last-child {
  margin-bottom: 0;
}
#app .box2-modal .cont .word-left .row2 dd::before {
  content: " ";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #f59e0b;
  position: absolute;
  left: 0;
  top: 5px;
  border-radius: 5px;
}
#app .box2-modal .cont .pic-right {
  max-width: 500px;
  border-radius: var(--border-radius);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#app .box2-modal .cont .pic-right.pic-3,
#app .box2-modal .cont .pic-right.pic-4 {
  max-width: none;
}
#app .box2-modal .cont .pic-right img {
  display: block;
}
#app .box3-modal .cont {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#app .box3-modal .cont .row1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
#app .box3-modal .cont .row1 .icon {
  width: 66px;
  height: 66px;
  margin-right: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-image: url("../imgs/modal-icon.png");
  background-repeat: no-repeat;
}
#app .box3-modal .cont .row1 .icon.icon-1 {
  background-position: -423px 0px;
}
#app .box3-modal .cont .row1 .icon.icon-2 {
  background-position: -493px 0px;
}
#app .box3-modal .cont .row1 .icon.icon-3 {
  background-position: -564px 0px;
}
#app .box3-modal .cont .row1 .icon.icon-4 {
  background-position: -634px 0px;
}
#app .box3-modal .cont .row1 .word {
  font-size: 14px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.6);
  font-family: OPPOSans-R;
}
#app .box3-modal .cont .row2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
}
#app .box3-modal .cont .row2 .cols-wrap .cols {
  margin-bottom: 30px;
}
#app .box3-modal .cont .row2 .cols-wrap .cols:last-child {
  margin-bottom: 10px;
}
#app .box3-modal .cont .row2 .cols {
  margin-top: 0;
}
#app .box3-modal .cont .row2 .cols dt {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
  color: #000000;
}
#app .box3-modal .cont .row2 .cols dd {
  margin-left: 0;
  font-family: OPPOSans-R;
  font-size: 14px;
  line-height: 20px;
  padding-left: 20px;
  position: relative;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 10px;
}
#app .box3-modal .cont .row2 .cols dd:last-child {
  margin-bottom: 0;
}
#app .box3-modal .cont .row2 .cols dd::before {
  content: " ";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 5px;
  border-radius: 5px;
}
#app .box3-modal .cont .row2 .cols1 dd::before {
  background-color: #f59e0b;
}
#app .box3-modal .cont .row2 .cols2 dd::before {
  background-color: #4d993d;
}
#app .box3-modal .cont .row2 .cols3 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#app .box3-modal .cont .row2 .cols3 img {
  display: block;
  width: 100%;
  border-radius: var(--border-radius);
}
#app .box3-modal .item1 .cont .cols-wrap {
  width: 40%;
}
#app .box3-modal .item1 .cont .cols3 {
  width: 480px;
}
#app .box3-modal .item2 .cont .row2 .cols1 {
  width: 300px;
}
#app .box3-modal .item2 .cont .row2 .cols3 {
  width: 259px;
}
#app .box3-modal .item3 .cont .cols-wrap {
  width: 300px;
}
#app .box3-modal .item3 .cont .cols3 {
  width: 440px;
}
#app .box3-modal .item4 .cont .row2 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#app .box3-modal .item4 .cont .row2 .cols-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#app .box3-modal .item4 .cont .row2 .cols-wrap .cols {
  width: 40%;
}
#app .box3-modal .item4 .cont .row2 .cols3 {
  width: 100%;
}
#app .content {
  /* 从下往上动画 */
  /* 从左往右动画 */
  /* 从右往左动画 */
}
#app .content .box {
  position: relative;
}
#app .content .box1 {
  padding: 15% 0 18%;
  background: url("../imgs/banner.jpg") center no-repeat;
  background-size: cover;
  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;
  position: relative;
}
#app .content .box1 .inner {
  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;
  justify-items: center;
  position: relative;
  z-index: 1;
}
#app .content .box1 canvas {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
#app .content .box1 .word {
  text-align: center;
}
#app .content .box1 .word span {
  margin: 0 5px;
  display: inline-block;
  opacity: 0;
  -webkit-animation: wordsGoUp 0.8s ease both;
          animation: wordsGoUp 0.8s ease both;
}
#app .content .box1 .word.word-1 {
  font-size: 54px;
  font-weight: bold;
  line-height: 64px;
  margin-bottom: 18px;
  color: #ffffff;
}
#app .content .box1 .word.word-2 {
  color: rgba(255, 255, 255, 0.6);
  max-width: 950px;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 40px;
  font-family: OPPOSans-R;
}
#app .content .box1 .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 52px;
}
#app .content .box1 .btns .btn {
  width: 218px;
  height: 52px;
  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: var(--border-radius);
  cursor: pointer;
  font-size: 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}
#app .content .box1 .btns .btn-1 {
  background: -webkit-gradient(linear, left top, right top, from(#ecb117), to(#b96026));
  background: linear-gradient(90deg, #ecb117 0%, #b96026 100%);
  color: var(--white-color);
}
#app .content .box1 .btns .btn-1:hover {
  opacity: 0.9;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.2);
}
#app .content .box1 .btns .btn-2 {
  border: 1px solid var(--white-color);
  color: var(--white-color);
}
#app .content .box1 .btns .btn-2:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
}
#app .content .box1 .go-down {
  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;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  bottom: 5%;
  left: 50%;
  margin-left: -20px;
  cursor: pointer;
  -webkit-animation: arrowDown 1s infinite cubic-bezier(0.4, 0, 0.2, 1);
          animation: arrowDown 1s infinite cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}
#app .content .box1 .go-down:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
#app .content .box1 .go-down::after {
  content: " ";
  display: block;
  width: 14px;
  height: 8px;
  background: url("../imgs/go-down.png") center no-repeat;
  background-size: 100%;
  position: relative;
  top: 1px;
}
#app .content .cards-container {
  display: grid;
}
#app .content .cards-container .card {
  opacity: 0;
  cursor: pointer;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
#app .content .cards-container .card.visible {
  opacity: 1;
  -webkit-transform: translate(0, 0) !important;
      -ms-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}
#app .content .scroll-box[data-animation="fade-up"] .card {
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
}
#app .content .scroll-box[data-animation="fade-left"] .card {
  -webkit-transform: translateX(-30px);
      -ms-transform: translateX(-30px);
          transform: translateX(-30px);
}
#app .content .scroll-box[data-animation="fade-right"] .card {
  -webkit-transform: translateX(30px);
      -ms-transform: translateX(30px);
          transform: translateX(30px);
}
#app .content .box2,
#app .content .box3,
#app .content .box4 {
  padding-top: 5%;
  padding-bottom: 4%;
}
#app .content .box2 .words,
#app .content .box3 .words,
#app .content .box4 .words {
  text-align: center;
  margin-bottom: 4%;
}
#app .content .box2 .words .word-1,
#app .content .box3 .words .word-1,
#app .content .box4 .words .word-1 {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 10px;
}
#app .content .box2 .words .word-2,
#app .content .box3 .words .word-2,
#app .content .box4 .words .word-2 {
  font-size: 18px;
  line-height: 36px;
  color: rgba(0, 0, 0, 0.6);
  font-family: OPPOSans-R;
}
#app .content .box2 .card .card-in,
#app .content .box3 .card .card-in {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}
#app .content .box2 .card .more,
#app .content .box3 .card .more {
  position: absolute;
  color: #d97706;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#app .content .box2 .card .more::after,
#app .content .box3 .card .more::after {
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
  content: " ";
  display: block;
  width: 6px;
  height: 10px;
  background: url("../imgs/go-right.png") center no-repeat;
  background-size: 100%;
  position: relative;
  top: 2px;
  margin-left: 8px;
}
#app .content .box2 {
  background-color: #f2f4f6;
  background-image: url("../imgs/box-2_decorate.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 50% 100%;
}
#app .content .box2 .cards-container {
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
#app .content .box2 .cards-container .card-in {
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 24px 26px;
  padding-bottom: 44px;
}
#app .content .box2 .cards-container .card-in .icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
  background-repeat: no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-size: 100%;
  background-position: center;
}
#app .content .box2 .cards-container .card-in .icon.icon-1 {
  background-image: url("../imgs/b2-c1.png");
}
#app .content .box2 .cards-container .card-in .icon.icon-2 {
  background-image: url("../imgs/b2-c2.png");
}
#app .content .box2 .cards-container .card-in .icon.icon-3 {
  background-image: url("../imgs/b2-c3.png");
}
#app .content .box2 .cards-container .card-in .icon.icon-4 {
  background-image: url("../imgs/b2-c4.png");
}
#app .content .box2 .cards-container .card-in .icon.icon-5 {
  background-image: url("../imgs/b2-c5.png");
}
#app .content .box2 .cards-container .card-in .icon.icon-6 {
  background-image: url("../imgs/b2-c6.png");
}
#app .content .box2 .cards-container .card-in .more {
  bottom: 24px;
}
#app .content .box2 .cards-container .card-in .cont .tit {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 18px;
}
#app .content .box2 .cards-container .card-in .cont .desc {
  font-size: 14px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.6);
  font-family: OPPOSans-R;
  margin-bottom: 10px;
}
#app .content .box2 .cards-container .card-in:hover {
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.3);
}
#app .content .box2 .cards-container .card-in:hover .icon {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
#app .content .box2 .cards-container .card-in:hover .more::after {
  -webkit-transform: translateX(2px);
      -ms-transform: translateX(2px);
          transform: translateX(2px);
}
#app .content .box3 {
  background-color: #ffffff;
}
#app .content .box3 .words .word-1 {
  padding: 0 13%;
}
#app .content .box3 .cards-container {
  grid-template-columns: repeat(2, 1fr);
  gap: 52px;
}
#app .content .box3 .cards-container .card-in {
  background: linear-gradient(112deg, #f6faff 0%, #f2f7fe 99%);
  border-radius: var(--border-radius);
  padding: 38px 32px 42px;
  padding-bottom: 62px;
}
#app .content .box3 .cards-container .card-in .tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}
#app .content .box3 .cards-container .card-in .tit .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: block;
  margin-right: 16px;
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
#app .content .box3 .cards-container .card-in .tit span {
  font-size: 20px;
}
#app .content .box3 .cards-container .card-in .tit .icon-1 {
  background-image: url("../imgs/b3-c1.png");
}
#app .content .box3 .cards-container .card-in .tit .icon-2 {
  background-image: url("../imgs/b3-c2.png");
}
#app .content .box3 .cards-container .card-in .tit .icon-3 {
  background-image: url("../imgs/b3-c3.png");
}
#app .content .box3 .cards-container .card-in .tit .icon-4 {
  background-image: url("../imgs/b3-c4.png");
}
#app .content .box3 .cards-container .card-in .more {
  bottom: 32px;
}
#app .content .box3 .cards-container .card-in .desc {
  font-family: OPPOSans-R;
  font-size: 14px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.6);
}
#app .content .box3 .cards-container .card-in:hover {
  -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}
#app .content .box3 .cards-container .card-in:hover .icon {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
#app .content .box3 .cards-container .card-in:hover .more::after {
  -webkit-transform: translateX(2px);
      -ms-transform: translateX(2px);
          transform: translateX(2px);
}
#app .content .box4 {
  background-color: #172133;
  background-image: url("../imgs/box-4_decorate.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 100%;
  position: relative;
}
#app .content .box4 .copy-right {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  color: #ffffff;
  font-family: OPPOSans-R;
}
#app .content .box4 .copy-right a {
  color: #ffffff;
}
#app .content .box4 .words .word-1 {
  color: var(--white-color);
}
#app .content .box4 .words .word-2 {
  color: rgba(255, 255, 255, 0.6);
}
#app .content .box4 .content {
  display: grid;
  gap: 52px;
  grid-template-columns: repeat(2, 1fr);
}
#app .content .box4 .content .cont-left .contact-us {
  background: linear-gradient(111deg, #e19e1d 0%, #ba6225 101%);
  border-radius: var(--border-radius);
  padding: 34px 32px;
  color: var(--white-color);
  margin-bottom: 52px;
  min-height: 245px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#app .content .box4 .content .cont-left .contact-us .tit {
  font-size: 24px;
  line-height: 30px;
  padding: 15px 0 30px;
}
#app .content .box4 .content .cont-left .contact-us .desc {
  position: relative;
  padding-left: 40px;
}
#app .content .box4 .content .cont-left .contact-us .desc .p1 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 5px;
}
#app .content .box4 .content .cont-left .contact-us .desc .p2 a {
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  font-family: OPPOSans-R;
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}
#app .content .box4 .content .cont-left .contact-us .desc .p2 a:hover {
  opacity: 0.8;
}
#app .content .box4 .content .cont-left .contact-us .desc::before {
  width: 20px;
  height: 24px;
  content: "";
  display: block;
  background: url("../imgs/add.png") center no-repeat;
  background-size: 100%;
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
#app .content .box4 .content .cont-left .map {
  z-index: 1;
  height: 395px;
  overflow: hidden;
  border-radius: var(--border-radius);
  background-color: var(--white-color);
  background: url("../imgs/map.png") center no-repeat;
  background-size: 100%;
}
#app .content .box4 .content .cont-right {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 30px 35px;
}
#app .content .box4 .content .cont-right .tit {
  font-size: 24px;
  line-height: 60px;
}
#app .content .box4 .content .cont-right .item-form .item-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  width: 100%;
  margin-bottom: 5px;
}
#app .content .box4 .content .cont-right .item-form .item-row .el-form-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#app .content .box4 .content .cont-right .item-form .item-row .first-name-input .el-form-item__label::after {
  display: none;
}
#app .content .box4 .content .cont-right .item-form .el-input__wrapper,
#app .content .box4 .content .cont-right .item-form .el-textarea__inner {
  border-radius: var(--border-radius);
  -webkit-box-shadow: 0 0 0 1px #d1d5db inset;
          box-shadow: 0 0 0 1px #d1d5db inset;
}
#app .content .box4 .content .cont-right .item-form .el-input__inner {
  height: 48px;
  padding: 5px;
}
#app .content .box4 .content .cont-right .item-form .el-textarea__inner {
  height: 130px;
  padding: 10px 15px;
  resize: none;
}
#app .content .box4 .content .cont-right .item-form .el-button {
  border-radius: var(--border-radius);
  border: none;
  background: -webkit-gradient(linear, left top, right top, from(#e3a11c), to(#b96026));
  background: linear-gradient(90deg, #e3a11c 0%, #b96026 100%);
  width: 100%;
  height: 48px;
  font-size: 20px;
  line-height: 18px;
  font-weight: bold;
  margin: 24px 0 0;
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}
#app .content .box4 .content .cont-right .item-form .el-button .icon {
  display: block;
  width: 20px;
  height: 21px;
  background: url("../imgs/send.png") center no-repeat;
  background-size: 100%;
  margin-right: 10px;
}
#app .content .box4 .content .cont-right .item-form .el-button:hover {
  opacity: 0.9;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
#app .content .box4 .content .cont-right .item-form .el-form-item__label {
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 12px;
  color: #000000;
}
#app .content .box4 .content .cont-right .item-form .el-form-item__label::after {
  font-size: 16px;
  color: #ff1111;
}
@media screen and (max-width: 1400px) {
  #app .inner {
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  #app .header .menus-lang .menus1 {
    display: none;
  }
  #app .header .menus-lang .menus2 {
    display: block;
  }
  #app .box2-modal .main .item .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #app .box2-modal .main .item .cont .word-left {
    margin-bottom: 20px;
  }
  #app .box2-modal .main .item .cont .word-left .row1 {
    margin-bottom: 20px;
  }
  #app .box2-modal .main .item .cont .pic-right {
    max-width: 520px;
  }
  #app .box2-modal .main .item .cont .pic-right.pic-4 {
    max-width: 520px;
  }
  #app .box3-modal .cont .row1 {
    margin-bottom: 20px;
  }
  #app .box3-modal .cont .row2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #app .box3-modal .cont .row2 .cols-wrap {
    width: 100%;
  }
  #app .box3-modal .item2 .cont .row2 .cols1 {
    width: auto;
  }
  #app .box3-modal .item4 .cont .row2 .cols-wrap .cols {
    width: 50%;
  }
  #app .content .box1 {
    padding: 22% 0 28%;
  }
  #app .content .box2 .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
  #app .content .box3 .words .word-1 {
    padding: 0;
  }
  #app .content .box3 .cards-container {
    gap: 26px;
  }
  #app .content .box4 .content {
    grid-template-columns: repeat(1, 1fr);
    gap: 26px;
  }
  #app .content .box4 .content .cont-left .contact-us {
    margin-bottom: 26px;
  }
}
@media (max-width: 767px) {
  #app .header .logo {
    width: 120px;
  }
  #app .box-modal .main .item .head {
    padding: 10px 12px;
  }
  #app .box-modal .main .item .head .tit {
    font-size: 16px;
  }
  #app .box-modal .main .item .cont {
    padding: 20px;
  }
  #app .box2-modal .cont .word-left {
    margin-right: 0;
  }
  #app .box2-modal .cont .word-left .row1 .word {
    line-height: 22px;
  }
  #app .box2-modal .cont .pic-right img {
    width: 100%;
  }
  #app .box3-modal .cont .row1 {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #app .box3-modal .cont .row1 .icon {
    margin-top: 10px;
  }
  #app .box3-modal .cont .row1 .word {
    line-height: 22px;
  }
  #app .box3-modal .cont .row2 .cols3.pic-3,
  #app .box3-modal .cont .row2 .cols3.pic-4 {
    width: 100%;
  }
  #app .box3-modal .cont .row2 .cols3 img {
    width: 100%;
  }
  #app .box3-modal .item1 .cont .row2 .cols3 {
    width: 100%;
  }
  #app .content .box1 .inner {
    padding: 0 5px;
  }
  #app .content .box1 .word.word-1 {
    font-size: 24px;
    line-height: 30px;
  }
  #app .content .box1 .word.word-2 {
    font-size: 16px;
    line-height: 20px;
  }
  #app .content .box1 .btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 26px;
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
  }
  #app .content .box2 {
    background-image: none;
  }
  #app .content .box2 .cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
  #app .content .box3 .cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
  #app .content .box4 .content .cont-left .map {
    height: 245px;
  }
  #app .content .box4 .cont-right .item-form .item-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #app .content .box4 .cont-right .item-form .item-row .first-name-input .el-form-item__label {
    display: none;
  }
  #app .content .box2,
  #app .content .box3,
  #app .content .box4 {
    padding-top: 10%;
    padding-bottom: 8%;
  }
  #app .content .box2 .words,
  #app .content .box3 .words,
  #app .content .box4 .words {
    margin-bottom: 8%;
  }
  #app .content .box2 .words .word-1,
  #app .content .box3 .words .word-1,
  #app .content .box4 .words .word-1 {
    font-size: 20px;
    line-height: 28px;
  }
  #app .content .box2 .words .word-2,
  #app .content .box3 .words .word-2,
  #app .content .box4 .words .word-2 {
    font-size: 14px;
    line-height: 22px;
  }
}
