h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
  margin-top: 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 {
  --box-bg: #f2f4f6;
  --primary-color: #e3a11c;
  --select-color: #e19e1d;
  --more-color: #d97706;
  --white-color: #ffffff;
  --text-color: #2a1201;
  --border-radius: 8px;
  --transition-duration: 0.3s;
  --select-animation: goUpFadeIn 0.5s ease-in-out;
}
.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: 20px;
}
#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 20px;
  -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: 120%;
  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: 12px 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;
  line-height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
#app .box-modal .main .item .head .tit i {
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#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 .box-modal .main .item .cont .words p {
  font-size: 14px;
  line-height: 28px;
  font-family: OPPOSans-R;
  color: rgba(0, 0, 0, 0.6);
  position: relative;
  padding-left: 25px;
}
#app .box-modal .main .item .cont .words p::before {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  content: " ";
  display: block;
  border-radius: 50%;
  left: 0px;
  top: 10px;
}
#app .box2-modal .head .tit .i1 {
  background-image: url("../imgs/b2-c1.png");
}
#app .box2-modal .head .tit .i2 {
  background-image: url("../imgs/b2-c2.png");
}
#app .box2-modal .head .tit .i3 {
  background-image: url("../imgs/b2-c3.png");
}
#app .box2-modal .head .tit .i4 {
  background-image: url("../imgs/b2-c4.png");
}
#app .box2-modal .head .tit .i5 {
  background-image: url("../imgs/b2-c5.png");
}
#app .box2-modal .head .tit .i6 {
  background-image: url("../imgs/b2-c6.png");
}
#app .box2-modal .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
#app .box2-modal .cont .pic {
  width: 438px;
  height: 292px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: var(--border-radius);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#app .box2-modal .cont .p1 {
  background-image: url("../imgs/b2-cover1.jpg?v=1");
}
#app .box2-modal .cont .p2 {
  background-image: url("../imgs/b2-cover2.jpg?v=1");
}
#app .box2-modal .cont .p3 {
  background-image: url("../imgs/b2-cover3.jpg?v=1");
}
#app .box2-modal .cont .p4 {
  background-image: url("../imgs/b2-cover4.jpg?v=1");
}
#app .box2-modal .cont .p5 {
  background-image: url("../imgs/b2-cover5.jpg?v=1");
}
#app .box2-modal .cont .p6 {
  background-image: url("../imgs/b2-cover6.jpg?v=1");
}
#app .box6-modal .main {
  width: 598px;
}
#app .box6-modal .head .tit .i1 {
  background-image: url("../imgs/b6-c1.png");
}
#app .box6-modal .head .tit .i2 {
  background-image: url("../imgs/b6-c2.png");
}
#app .box6-modal .head .tit .i3 {
  background-image: url("../imgs/b6-c3.png");
}
#app .box6-modal .head .tit .i4 {
  background-image: url("../imgs/b6-c4.png");
}
#app .box6-modal .cont {
  min-height: 150px;
}
#app .content {
  /* 从下往上动画 */
  /* 从左往右动画 */
  /* 从右往左动画 */
}
#app .content .box {
  position: relative;
  padding: 4% 0 5%;
  overflow: hidden;
}
#app .content .box .box-tit h2 {
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  font-weight: normal;
  margin-bottom: 10px;
}
#app .content .box .box-tit p {
  font-size: 18px;
  font-weight: normal;
  line-height: 36px;
  text-align: center;
  font-family: OPPOSans-R;
  color: rgba(0, 0, 0, 0.6);
}
#app .content .scroll-box .card {
  opacity: 0;
  -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 .scroll-box .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 .box1 {
  padding: 15.5% 0;
  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 {
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-items: center;
  position: relative;
  z-index: 1;
}
#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: 65px;
  line-height: 98px;
  margin-bottom: 8%;
  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;
  margin: 0 5px;
}
#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 .box2 {
  background-color: var(--box-bg);
  background-image: url(../imgs/box-2_decorate.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 50% 100%;
}
#app .content .box2 .box-card {
  display: grid;
  gap: 27px;
  grid-template-columns: repeat(auto-fill, minmax(398px, 1fr));
  padding-top: 4%;
}
#app .content .box2 .box-card .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);
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
  border-radius: var(--border-radius);
  background-color: var(--white-color);
  position: relative;
  padding: 24px 27px 40px;
  cursor: pointer;
}
#app .content .box2 .box-card .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 .box-card .card .in:hover .more::after {
  -webkit-transform: translateX(2px);
      -ms-transform: translateX(2px);
          transform: translateX(2px);
}
#app .content .box2 .box-card .card .in:hover .icon {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
#app .content .box2 .box-card .card .icon {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius);
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-size: 100%;
}
#app .content .box2 .box-card .card .icon.i1 {
  background-image: url("../imgs/b2-c1.png");
}
#app .content .box2 .box-card .card .icon.i2 {
  background-image: url("../imgs/b2-c2.png");
}
#app .content .box2 .box-card .card .icon.i3 {
  background-image: url("../imgs/b2-c3.png");
}
#app .content .box2 .box-card .card .icon.i4 {
  background-image: url("../imgs/b2-c4.png");
}
#app .content .box2 .box-card .card .icon.i5 {
  background-image: url("../imgs/b2-c5.png");
}
#app .content .box2 .box-card .card .icon.i6 {
  background-image: url("../imgs/b2-c6.png");
}
#app .content .box2 .box-card .card .word {
  font-size: 18px;
  line-height: 26px;
  min-height: 54px;
  margin-top: 15px;
  margin-bottom: 15px;
}
#app .content .box2 .box-card .card .more {
  position: absolute;
  color: var(--more-color);
  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 .box-card .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 .box3 {
  padding-bottom: 80px;
}
#app .content .box3 .swiper {
  width: 100%;
  height: 620px;
  overflow: visible;
  margin-top: 33px;
}
#app .content .box3 .swiper .swiper-wrapper {
  width: 100%;
}
#app .content .box3 .swiper .swiper-slide {
  border-radius: var(--border-radius);
  max-width: 700px;
  background: linear-gradient(127deg, #f6faff 1%, #f2f7fe 97%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}
#app .content .box3 .swiper .swiper-slide .mask {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
#app .content .box3 .swiper .swiper-slide .cont {
  padding: 18px 28px;
}
#app .content .box3 .swiper .swiper-slide .cont .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}
#app .content .box3 .swiper .swiper-slide .cont .icon i {
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}
#app .content .box3 .swiper .swiper-slide .cont .icon .i1 {
  background-image: url("../imgs/b3-c1.png");
}
#app .content .box3 .swiper .swiper-slide .cont .icon .i2 {
  background-image: url("../imgs/b3-c2.png");
}
#app .content .box3 .swiper .swiper-slide .cont .icon .i3 {
  background-image: url("../imgs/b3-c3.png");
}
#app .content .box3 .swiper .swiper-slide .cont .icon .i4 {
  background-image: url("../imgs/b3-c4.png");
}
#app .content .box3 .swiper .swiper-slide .cont .icon .i5 {
  background-image: url("../imgs/b3-c5.png");
}
#app .content .box3 .swiper .swiper-slide .cont .icon .i6 {
  background-image: url("../imgs/b3-c6.png");
}
#app .content .box3 .swiper .swiper-slide .cont .icon p {
  font-size: 20px;
  line-height: 28px;
}
#app .content .box3 .swiper .swiper-slide .cont .word p {
  padding-left: 74px;
  font-family: OPPOSans-R;
  color: rgba(0, 0, 0, 0.6);
  position: relative;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 16px;
}
#app .content .box3 .swiper .swiper-slide .cont .word p::before {
  content: " ";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  background-color: var(--primary-color);
  border-radius: 50%;
  left: 42px;
  top: 7px;
}
#app .content .box3 .swiper .swiper-slide .cont .pic {
  max-width: 560px;
  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;
  overflow: hidden;
  border-radius: 10px;
  margin: 30px auto 0px;
}
#app .content .box3 .swiper .swiper-slide .cont .pic img {
  width: 100%;
  display: block;
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}
#app .content .box3 .swiper .swiper-slide-active .mask {
  display: none;
}
#app .content .box3 .swiper .swiper-btns {
  width: 835px;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#app .content .box3 .swiper .swiper-btns .btn {
  width: 36px;
  height: 34px;
  top: -13px;
  background-color: var(--white-color);
  position: absolute;
  cursor: pointer;
  border-radius: 50%;
  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;
  padding: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#app .content .box3 .swiper .swiper-btns .btn:hover {
  opacity: 0.8;
}
#app .content .box3 .swiper .swiper-btns .btn.prev-btn {
  left: 0;
}
#app .content .box3 .swiper .swiper-btns .btn.next-btn {
  right: 0;
}
#app .content .box3 .swiper .swiper-btns .btn.next-btn span {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
#app .content .box3 .swiper .swiper-btns .btn span {
  display: block;
  border: 1px solid var(--primary-color);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: url("../imgs/go-left.png") center no-repeat;
  background-size: 50%;
}
#app .content .box3 .swiper .swiper-pagination_wrap {
  bottom: -40px;
  width: 424px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  position: absolute;
  z-index: 2;
}
#app .content .box3 .swiper .swiper-pagination_wrap .num {
  top: -8px;
  position: absolute;
  font-size: 14px;
}
#app .content .box3 .swiper .swiper-pagination_wrap .num.num-start {
  left: -28px;
  color: var(--primary-color);
}
#app .content .box3 .swiper .swiper-pagination_wrap .num.num-end {
  right: -28px;
  color: rgba(42, 18, 1, 0.2);
}
#app .content .box3 .swiper .swiper-pagination_wrap .num.num-end.active {
  color: var(--primary-color);
}
#app .content .box3 .swiper .swiper-pagination_wrap .swiper-pagination {
  height: 4px;
  overflow: hidden;
  background-color: var(--box-bg);
}
#app .content .box3 .swiper .swiper-pagination_wrap .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: var(--primary-color);
}
#app .content .box4 {
  background-color: var(--box-bg);
  background-image: url(../imgs/box-4_decorate.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 100% 95%;
}
#app .content .box4 .box-card {
  display: grid;
  gap: 27px;
  grid-template-columns: repeat(auto-fill, minmax(398px, 1fr));
  padding-top: 4%;
}
#app .content .box4 .box-card .card {
  overflow: hidden;
  background: var(--white-color);
  border-radius: var(--border-radius);
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
  -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);
}
#app .content .box4 .box-card .card:hover .icon i {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
#app .content .box4 .box-card .card .cover {
  width: 100%;
  height: 240px;
  overflow: hidden;
}
#app .content .box4 .box-card .card .cover::before {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
  background-size: cover;
}
#app .content .box4 .box-card .card .cover:hover::before {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
#app .content .box4 .box-card .card .c1::before {
  background-image: url("../imgs/b4-p1.jpg");
}
#app .content .box4 .box-card .card .c2::before {
  background-image: url("../imgs/b4-p2.jpg");
}
#app .content .box4 .box-card .card .c3::before {
  background-image: url("../imgs/b4-p3.jpg");
}
#app .content .box4 .box-card .card .cont {
  padding: 24px 27px;
}
#app .content .box4 .box-card .card .cont .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#app .content .box4 .box-card .card .cont .icon i {
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
  width: 50px;
  height: 50px;
  display: block;
  border-radius: var(--border-radius);
  background-position: center;
  background-repeat: no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#app .content .box4 .box-card .card .cont .icon .i1 {
  background-image: url("../imgs/b4-c1.png");
}
#app .content .box4 .box-card .card .cont .icon .i2 {
  background-image: url("../imgs/b4-c2.png");
}
#app .content .box4 .box-card .card .cont .icon .i3 {
  background-image: url("../imgs/b4-c3.png");
}
#app .content .box4 .box-card .card .cont .icon p {
  font-size: 17px;
  line-height: 22px;
}
#app .content .box4 .box-card .card .cont .desc {
  margin-top: 20px;
  font-size: 14px;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.6);
  font-family: OPPOSans-R;
}
#app .content .box4 .box-card .card: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 .box5 .box-card {
  display: grid;
  gap: 27px;
  grid-template-columns: repeat(auto-fill, minmax(398px, 1fr));
  padding-top: 4%;
}
#app .content .box5 .box-card .card .in {
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -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);
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
  border-radius: var(--border-radius);
  background-color: var(--white-color);
  position: relative;
  padding: 24px 17px 18px 27px;
}
#app .content .box5 .box-card .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 .box5 .box-card .card .in:hover .icon i {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
#app .content .box5 .box-card .card .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#app .content .box5 .box-card .card .icon i {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: block;
  border-radius: var(--border-radius);
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
#app .content .box5 .box-card .card .icon .i1 {
  background-image: url(../imgs/b2-c1.png);
}
#app .content .box5 .box-card .card .icon .i2 {
  background-image: url(../imgs/b2-c2.png);
}
#app .content .box5 .box-card .card .icon .i3 {
  background-image: url(../imgs/b2-c3.png);
}
#app .content .box5 .box-card .card .icon .i4 {
  background-image: url(../imgs/b2-c4.png);
}
#app .content .box5 .box-card .card .icon .i5 {
  background-image: url(../imgs/b2-c5.png);
}
#app .content .box5 .box-card .card .icon p {
  font-size: 17px;
  line-height: 22px;
}
#app .content .box5 .box-card .card .desc {
  font-size: 14px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 10px;
  font-family: OPPOSans-R;
  position: relative;
  padding-left: 66px;
}
#app .content .box5 .box-card .card .desc::before {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  content: " ";
  display: block;
  border-radius: 50%;
  left: 42px;
  top: 10px;
}
#app .content .box6 {
  background-color: var(--box-bg);
  background-image: url(../imgs/box-6_decorate.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 50% 100%;
}
#app .content .box6 .cont {
  padding-top: 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 29px;
}
#app .content .box6 .cont .list {
  width: 398px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 27px;
  margin-bottom: 0;
}
#app .content .box6 .cont .list li {
  -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);
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding: 24px 0px 24px 24px;
  cursor: pointer;
}
#app .content .box6 .cont .list li: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 .box6 .cont .list li:hover i {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
#app .content .box6 .cont .list li i {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius);
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}
#app .content .box6 .cont .list li .i1 {
  background-image: url("../imgs/b6-c1.png");
}
#app .content .box6 .cont .list li .i2 {
  background-image: url("../imgs/b6-c2.png");
}
#app .content .box6 .cont .list li .i3 {
  background-image: url("../imgs/b6-c3.png");
}
#app .content .box6 .cont .list li .i4 {
  background-image: url("../imgs/b6-c4.png");
}
#app .content .box6 .cont .list li p {
  font-size: 17px;
  line-height: 27px;
}
#app .content .box6 .cont .cover {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
}
#app .content .box6 .cont .cover::after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: " ";
  display: block;
  background: url("../imgs/b6-cover.jpg") center no-repeat;
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}
#app .content .box6 .cont .cover:hover::after {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
#app .content .box7 {
  background-color: #1d1710;
  color: var(--white-color);
  padding-top: 40px;
  padding-bottom: 0;
  background-image: url(../imgs/box-7_decorate.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 45% 110%;
}
#app .content .box7 .inner .footer-item {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
#app .content .box7 .inner .footer-item .item {
  margin-bottom: 30px;
}
#app .content .box7 .inner .footer-item .item .tit {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
}
#app .content .box7 .inner .footer-item .item1 .logo {
  width: 187px;
  height: 48px;
  background: url("../imgs/logo-white.png") no-repeat center;
  background-size: contain;
}
#app .content .box7 .inner .footer-item .item1 .desc {
  font-size: 14px;
  line-height: 20px;
  font-family: OPPOSans-R;
  max-width: 273px;
  margin-top: 20px;
}
#app .content .box7 .inner .footer-item .item2 ul li {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}
#app .content .box7 .inner .footer-item .item2 ul li:last-child {
  margin-bottom: 0;
}
#app .content .box7 .inner .footer-item .item2 ul li .t {
  margin-bottom: 5px;
}
#app .content .box7 .inner .footer-item .item2 ul li .v {
  font-family: OPPOSans-R;
}
#app .content .box7 .inner .footer-item .item2 ul li a {
  color: var(--white-color);
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}
#app .content .box7 .inner .footer-item .item2 ul li a:hover {
  opacity: 0.8;
}
#app .content .box7 .inner .footer-item .item3 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}
#app .content .box7 .inner .footer-item .item3 ul li {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 196, 86, 0.2);
  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;
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}
#app .content .box7 .inner .footer-item .item3 ul li:hover {
  cursor: pointer;
  background-color: rgba(255, 196, 86, 0.3);
}
#app .content .box7 .inner .footer-item .item3 ul li::after {
  content: " ";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(227, 161, 28, 0.5);
}
#app .content .box7 .inner .footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  font-family: OPPOSans-R;
  padding: 20px 0;
}
#app .content .box7 .inner .footer-copyright a {
  color: #ffffff;
}
@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 .content .box .box-tit h2 {
    font-size: 20px;
    line-height: 28px;
  }
  #app .content .box .box-tit p {
    font-size: 14px;
    line-height: 22px;
  }
  #app .content .box3 {
    padding-bottom: 65px;
  }
  #app .content .box3 .swiper .swiper-btns {
    display: none;
  }
  #app .content .box3 .swiper .swiper-pagination_wrap {
    bottom: -30px;
  }
}
@media (max-width: 767px) {
  #app .header .logo {
    width: 120px;
  }
  #app .box-modal .main {
    width: 100%;
  }
  #app .box-modal .main .item .head .tit {
    font-size: 16px;
  }
  #app .box2-modal .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #app .box2-modal .cont .pic {
    width: 100%;
  }
  #app .content .box {
    padding: 30px 0;
  }
  #app .content .box .box-tit {
    margin-bottom: 30px;
  }
  #app .content .box1 {
    padding: 40% 0;
  }
  #app .content .box1 .inner {
    padding: 0 5px;
  }
  #app .content .box1 .word.word-1 {
    font-size: 30px;
    line-height: 38px;
    padding: 0 9%;
  }
  #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);
    margin: 0 0 40px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #app .content .box2 .box-card {
    grid-template-columns: auto;
  }
  #app .content .box3 {
    padding-bottom: 50px;
  }
  #app .content .box3 .swiper .swiper-slide .cont .pic {
    max-width: 100%;
  }
  #app .content .box3 .swiper .swiper-slide .cont .pic img {
    width: 100%;
  }
  #app .content .box3 .swiper .swiper-pagination_wrap {
    width: 80%;
    bottom: -25px;
  }
  #app .content .box4 .box-card,
  #app .content .box5 .box-card {
    grid-template-columns: auto;
  }
  #app .content .box6 .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #app .content .box6 .cont .list {
    width: 100%;
  }
  #app .content .box6 .cont .cover {
    height: 437px;
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  #app .content .box2,
  #app .content .box4,
  #app .content .box6,
  #app .content .box7 {
    background-image: none;
  }
}
