#online-store {
  position: fixed;
  z-index: 999;
  top: -999vh;
  top: calc(var(--vh, 1vh) * -999);
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#online-store .mask {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.65);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.5s ease;
}
#online-store .store-container {
  position: relative;
  z-index: 2;
  background-color: #fff;
  width: 1312px;
  height: 720px;
  opacity: 0;
  transform: translateY(25%);
  transition-delay: 0.25s;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
@media (min-width: 1440px) and (max-width: 1600px) and (orientation: landscape) {
  #online-store .store-container {
    width: 1312px;
    height: 625px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) and (orientation: landscape) {
  #online-store .store-container {
    width: 896px;
    height: 580px;
  }
}
@media (min-width: 768px) and (max-width: 1439px) and (orientation: portrait) {
  #online-store .store-container {
    width: 720px;
    height: 850px;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  #online-store .store-container {
    width: 320px;
    height: 620px;
  }
}
#online-store .store-container .store-page {
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: scroll;
}
#online-store .store-container .store-page::-webkit-scrollbar {
  width: 4px;
}
#online-store .store-container .store-page::-webkit-scrollbar-thumb {
  background-color: #2ec84d;
}
#online-store .store-container .store-page .close-button {
  position: absolute;
  z-index: 3;
  top: 32px;
  right: 32px;
  width: 14px;
  height: 14px;
  cursor: pointer;
}
#online-store .store-container .store-page .title-area {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: calc(100% - 4px);
  height: 146px;
  background-color: #fff;
  text-align: center;
  padding-top: 70px;
}
#online-store .store-container .store-page .title-area p {
  font-size: 28px;
  line-height: 44px;
  letter-spacing: -0.1;
  font-family: OPPOSans-Bold;
}
#online-store .store-container .store-page .store-content {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 146px;
  margin-bottom: 28px;
}
#online-store .store-container .store-page .store-content .store-list {
  width: 1088px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 1024px) and (max-width: 1439px) and (orientation: landscape) {
  #online-store .store-container .store-page .store-content .store-list {
    width: 664px;
  }
}
@media (min-width: 768px) and (max-width: 1439px) and (orientation: portrait) {
  #online-store .store-container .store-page .store-content .store-list {
    width: 532px;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  #online-store .store-container .store-page .store-content .store-list {
    width: 280px;
  }
}
#online-store .store-container .store-page .store-content .store-list .store-title {
  flex: 100%;
  text-align: center;
  margin-bottom: 20px;
}
#online-store .store-container .store-page .store-content .store-list .store {
  width: 192px;
  height: 144px;
  background-color: rgba(0,0,0,0.04);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
#online-store .store-container .store-page .store-content .store-list .store img {
  width: 118px;
  height: 80px;
  transition: transform 0.3s ease;
}
@media (min-width: 1440px) {
  #online-store .store-container .store-page .store-content .store-list .store:not(:nth-of-type(5n+1)) {
    margin-left: 32px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) and (orientation: landscape) {
  #online-store .store-container .store-page .store-content .store-list .store {
    width: 200px;
    height: 150px;
  }
  #online-store .store-container .store-page .store-content .store-list .store:not(:nth-of-type(3n+1)) {
    margin-left: 32px;
  }
  #online-store .store-container .store-page .store-content .store-list .store img {
    width: 122px;
    height: 82px;
  }
}
@media (min-width: 768px) and (max-width: 1439px) and (orientation: portrait) {
  #online-store .store-container .store-page .store-content .store-list .store {
    width: 155px;
    height: 116px;
  }
  #online-store .store-container .store-page .store-content .store-list .store:not(:nth-of-type(3n+1)) {
    margin-left: 32px;
  }
  #online-store .store-container .store-page .store-content .store-list .store img {
    width: 95px;
    height: 64px;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  #online-store .store-container .store-page .store-content .store-list .store {
    width: 132px;
    height: 96px;
  }
  #online-store .store-container .store-page .store-content .store-list .store:not(:nth-of-type(2n+1)) {
    margin-left: 16px;
  }
  #online-store .store-container .store-page .store-content .store-list .store img {
    width: 98px;
    height: 66px;
  }
}
#online-store .store-container .store-page .store-content .store-list .store:hover,
#online-store .store-container .store-page .store-content .store-list .store :active {
  background-color: rgba(0,0,0,0.01);
}
#online-store .store-container .store-page .store-content .store-list .store:hover img,
#online-store .store-container .store-page .store-content .store-list .store :active img {
  transform: scale(0.9);
}
#online-store .store-container .store-page .store-content .store-list:not(:first-child) {
  margin-top: 6px;
}
#online-store.show {
  top: 0;
}
#online-store.show .mask {
  opacity: 1;
}
#online-store.show .store-container {
  opacity: 1;
  transform: translateY(0);
}
#navbar {
  position: -webkit-sticky;
  position: sticky;
  top: -1px;
  background-color: #fff;
  color: #000;
  cursor: default;
  height: 61px;
  opacity: 1;
  width: 100%;
  z-index: 10;
  border: 1px solid rgba(0,0,0,0.1);
  border-left: none;
  border-right: none;
}
@media (max-width: 767px) {
  #navbar {
    height: 51px;
  }
}
#navbar.no-border-btm {
  border-bottom: transparent;
}
#navbar.sticked {
  transition: background-color 0.3s ease;
  background-color: #fff;
}
[data-theme='dark']#navbar.sticked {
  background-color: #000;
}
[data-theme='dark']#navbar {
  background-color: #000;
  border-color: rgba(255,255,255,0.1);
  color: #fff;
}
#navbar ul,
#navbar li {
  align-items: center;
  display: flex;
  justify-content: center;
}
#navbar li {
  font-family: OPPOSans-Regular;
  font-size: 14px;
  letter-spacing: -0.06px;
  line-height: 24px;
}
@media (max-width: 767px) {
  #navbar li {
    font-size: 12px;
    letter-spacing: -0.05px;
    line-height: 24px;
  }
}
#navbar li a {
  cursor: pointer;
  white-space: nowrap;
}
#navbar li a:hover {
  opacity: 1;
}
#navbar li a,
#navbar li span {
  align-items: center;
  color: inherit;
  display: flex;
  font-size: inherit;
  opacity: 0.6;
  transition: opacity 0.3s ease, color 0.3s ease;
}
#navbar .container {
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 14.4rem;
  padding: 0 0.6rem;
  position: relative;
  width: 100%;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #navbar .container {
    padding: 0 0.5rem;
  }
}
@media (max-width: 767px) {
  #navbar .container {
    padding: 0 20px;
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1023px) {
  #navbar .container {
    padding: 0 40px;
  }
}
#navbar .mask {
  background-color: rgba(253,253,253,0.9);
  transition: background-color 0.3s ease;
}
[data-theme='dark']#navbar .mask {
  background-color: rgba(21,21,21,0.9);
}
#navbar .indicator .arrow {
  fill: #000;
  transition: fill 0.3s ease;
}
[data-theme='dark']#navbar .indicator .arrow {
  fill: #fff;
}
#navbar .products,
#navbar .links,
#navbar .buttons {
  align-items: center;
  min-width: 0;
}
#navbar .link:not(:first-child),
#navbar .button:not(:first-child) {
  margin-left: 18px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #navbar .link:not(:first-child),
  #navbar .button:not(:first-child) {
    margin-left: 12px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #navbar .link:not(:first-child),
  #navbar .button:not(:first-child) {
    margin-left: 10px;
  }
}
@media (max-width: 767px) {
  #navbar .link:not(:first-child),
  #navbar .button:not(:first-child) {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  #navbar .products,
  #navbar .links {
    align-items: stretch;
    flex-direction: column;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    transform: translateX(-100vw);
    width: 100%;
  }
  #navbar .products > :last-child > :last-child,
  #navbar .links > :last-child > :last-child,
  #navbar .products > :last-child > :last-child > :last-child,
  #navbar .links > :last-child > :last-child > :last-child {
    border-bottom-color: transparent;
  }
  #navbar .products li,
  #navbar .links li {
    background-color: #fff;
    justify-content: stretch;
    padding: 0 58px;
    position: relative;
    transform: translateY(-800%);
    transition: transform 0.3s ease;
  }
  [data-theme='dark']#navbar .products li,
  [data-theme='dark']#navbar .links li {
    background-color: #000;
  }
  #navbar .products a,
  #navbar .links a {
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: center;
    padding: 15px 0;
    text-align: center;
    width: 100%;
  }
}
#navbar .products {
  flex: 1 1 0%;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  #navbar .products {
    z-index: 3;
  }
}
#navbar .products .active {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
#navbar .products .divider {
  margin: 0 18px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #navbar .products .divider {
    margin: 0 12px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #navbar .products .divider {
    margin: 0 10px;
  }
}
@media (max-width: 767px) {
  #navbar .products .divider {
    display: none;
  }
}
#navbar .products .divider a {
  cursor: default;
}
#navbar .links {
  flex: 3 3 0%;
  justify-content: center;
}
@media (max-width: 767px) {
  #navbar .links {
    z-index: 4;
  }
}
#navbar .buttons {
  flex: 1 1 0%;
  justify-content: flex-end;
}
#navbar .buttons .button {
  overflow: hidden;
  position: relative;
}
#navbar .buttons .button a {
  font-family: OPPOSans-Bold;
  background-color: #2ec84d;
  color: #fff;
  font-size: 12px;
  height: 30px;
  letter-spacing: 0;
  line-height: 1;
  opacity: 1;
  padding: 0 18px;
}
@media (max-width: 767px) {
  #navbar .buttons .button a {
    height: 32px;
    padding: 0 15px;
    font-size: 13px;
  }
}
#navbar .links .default {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
#navbar .links[data-active="1"] > li:nth-child(1) a {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
#navbar .links[data-active="2"] > li:nth-child(2) a {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
#navbar .links[data-active="3"] > li:nth-child(3) a {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
#navbar .links[data-active="4"] > li:nth-child(4) a {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
#navbar .links[data-active="5"] > li:nth-child(5) a {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
#navbar .links[data-active="6"] > li:nth-child(6) a {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
#navbar .links[data-active="7"] > li:nth-child(7) a {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
#navbar .links[data-active="8"] > li:nth-child(8) a {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
#navbar .links[data-active="9"] > li:nth-child(9) a {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
#navbar .links[data-active="10"] > li:nth-child(10) a {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
@media (max-width: 767px) {
  #navbar {
    position: relative;
  }
  #navbar .mask {
    height: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 0;
  }
  #navbar .indicator {
    height: 24px;
    margin-left: 5px;
  }
  #navbar .indicator .arrow {
    width: 14px;
    height: 14px;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
  }
  #navbar .selector {
    align-items: center;
    display: flex;
    justify-content: flex-start;
  }
  #navbar .selector li * {
    opacity: 1;
    font-family: OPPOSans-Bold;
  }
  #navbar .selector[disabled] .indicator {
    display: none;
  }
  #navbar .container[data-active-selector] .mask {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    opacity: 1;
  }
  #navbar .container[data-active-selector='product'] .product-selector .indicator .arrow {
    transform: none;
  }
  #navbar .container[data-active-selector='product'] .products {
    transform: translateX(0);
  }
  #navbar .container[data-active-selector='product'] .products > li {
    transform: translateY(0);
  }
  #navbar .container[data-active-selector='link'] .link-selector .indicator .arrow {
    transform: none;
  }
  #navbar .container[data-active-selector='link'] .links {
    transform: translateX(0);
  }
  #navbar .container[data-active-selector='link'] .links > li {
    transform: translateY(0);
  }
  #navbar .product-selector,
  #navbar .buttons {
    flex: 0 0 85px;
  }
  #navbar .link-selector {
    flex: 1 1 0%;
    justify-content: center;
    margin: 0 5px;
  }
}
#oc-header.fixed {
  position: absolute;
}
#main-wrapper {
  position: relative;
}

.text--col .detail {
  margin-top: 40px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .text--col .detail {
    margin-top: 27px;
  }
}
@media (max-width: 767px) {
  .text--col .detail {
    margin-top: 20px;
  }
}
@media (max-width: 767px) and (min-width: 1024px) and (max-width: 1439px) {
  .text--col .detail {
    margin-top: 14px;
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1023px) {
  .text--col .detail {
    margin-top: 11px;
  }
}
@media (max-width: 767px) {
  .text--row .detail {
    margin-top: 20px;
  }
}
@media (max-width: 767px) and (min-width: 1024px) and (max-width: 1439px) {
  .text--row .detail {
    margin-top: 14px;
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1023px) {
  .text--row .detail {
    margin-top: 11px;
  }
}
.text--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .text--row {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }
}
.text--row .link {
  margin-top: 10px;
}
@media (min-width: 1440px) {
  .text--row .link {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  body #oc-header {
    overflow: hidden;
  }
}
body #oc-wrapper {
  overflow: visible;
}

body #oc-container {
  padding-top: 0;
}
body.no-scroll {
  overflow-y: hidden;
}
#main-wrapper,
#navbar {
  font-size: 16px;
  font-family: OPPOSans-Regular, 'PingFang SC', 'Hiragino Sans GB', 'STHeiti', 'Microsoft YaHei', 'WenQuanYi Micro Hei', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
}
#main-wrapper *,
#navbar * {
  box-sizing: border-box;
}
#main-wrapper a,
#navbar a {
  text-decoration: none;
}
#main-wrapper img {
  display: block;
  max-width: initial;
}
#main-wrapper canvas img {
  display: none;
}
#main-wrapper video {
  display: block;
  max-width: initial;
}
#main-wrapper br {
  font-family: 'Open Sans', '-apple-system', 'BlinkMacSystemFont', 'Helvetica Neue', 'Helvetica', 'Roboto', 'Arial', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft Yahei', 'Microsoft Jhenghei', 'sans-serif';
}
#main-wrapper h1 {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  border: none;
  margin: 0;
  padding: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0 0 99.9%);
          clip-path: inset(0 0 99.9%);
}
#main-wrapper .vertical-center {
  height: 100%;
  display: flex;
  align-items: center;
}
#main-wrapper .vertical-center > * {
  width: 100%;
}
#main-wrapper .horizontal-center {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#main-wrapper .horizontal-center > * {
  height: 100%;
}
#main-wrapper .text-center {
  text-align: center;
}
#main-wrapper .g--sticky-container {
  position: relative;
}
sup {
  font-size: 50%;
  top: -1em;
}
.g--title-group.black .g--title,
.g--title-group.black .g--text {
  color: #000;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .g--title-group.min .g--title {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -0.09px;
  }
}
@media (max-width: 767px) {
  .g--title-group.min .g--title {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.12px;
  }
  .g--title-group.min .g--text {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.1px;
  }
}
.g--title {
  color: #fff;
  font-size: 42px;
  line-height: 1.476190476190476;
  letter-spacing: -0.49px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .g--title {
    font-size: 36px;
    line-height: 1.555555555555556;
    letter-spacing: -0.18px;
  }
}
@media (max-width: 767px) {
  .g--title {
    font-size: 28px;
    line-height: 1.571428571428571;
    letter-spacing: -0.1px;
  }
}
.g--text {
  color: #fff;
  font-size: 16px;
  line-height: 2;
  letter-spacing: -0.09px;
}
@media (max-width: 767px) {
  .g--text {
    line-height: 28px;
  }
}
.g--sub-title {
  color: #fff;
  font-size: 28px;
  line-height: 1.571428571428571;
  letter-spacing: -0.1px;
}
@media (max-width: 767px) {
  .g--sub-title {
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: -0.12px;
  }
}
.g--sub-title.black {
  color: #000;
}
.g--desc {
  display: flex;
  justify-content: center;
  margin: 32px auto 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .g--desc {
    margin: 28px auto 0;
  }
}
@media (max-width: 767px) {
  .g--desc {
    width: 100%;
    justify-content: space-between;
  }
}
.g--desc .g--desc-wrapper {
  display: flex;
  flex-direction: column;
  text-align: start;
}
.g--desc .g--desc-wrapper:nth-child(2) {
  margin: 0 32px;
}
@media (max-width: 767px) {
  .g--desc .g--desc-wrapper:nth-child(2) {
    margin: 0;
  }
}
.g--desc .g--desc-wrapper .g--desc-title {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}
.g--desc .g--desc-wrapper .g--desc-text {
  color: #fff;
  font-size: 8px;
}
.g--container {
  margin: 0 auto;
  width: 1312px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .g--container {
    width: 896px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .g--container {
    width: 720px;
  }
}
@media (max-width: 767px) {
  .g--container {
    width: 88.88888888888889vw;
  }
}
@media (max-width: 767px) {
  .g--pt-hidden {
    display: none !important;
  }
}
@media not screen and (max-width: 767px) {
  .g--ls-hidden {
    display: none !important;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .g--1024-hidden {
    display: none !important;
  }
}
#online-store {
  position: fixed;
  z-index: 999;
  top: -999vh;
  top: calc(var(--vh, 1vh) * -999);
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#online-store .mask {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.65);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.5s ease;
}
#online-store .store-container {
  position: relative;
  z-index: 2;
  background-color: #fff;
  width: 1312px;
  height: 720px;
  opacity: 0;
  transform: translateY(25%);
  transition-delay: 0.25s;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
@media (min-width: 1440px) and (max-width: 1600px) and (orientation: landscape) {
  #online-store .store-container {
    width: 1312px;
    height: 625px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) and (orientation: landscape) {
  #online-store .store-container {
    width: 896px;
    height: 580px;
  }
}
@media (min-width: 768px) and (max-width: 1439px) and (orientation: portrait) {
  #online-store .store-container {
    width: 720px;
    height: 850px;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  #online-store .store-container {
    width: 320px;
    height: 620px;
  }
}
#online-store .store-container .store-page {
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: scroll;
}
#online-store .store-container .store-page::-webkit-scrollbar {
  width: 4px;
}
#online-store .store-container .store-page::-webkit-scrollbar-thumb {
  background-color: #2ec84d;
}
#online-store .store-container .store-page .close-button {
  position: absolute;
  z-index: 3;
  top: 32px;
  right: 32px;
  width: 14px;
  height: 14px;
  cursor: pointer;
}
#online-store .store-container .store-page .title-area {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: calc(100% - 4px);
  height: 146px;
  background-color: #fff;
  text-align: center;
  padding-top: 70px;
}
#online-store .store-container .store-page .title-area p {
  font-size: 28px;
  line-height: 44px;
  letter-spacing: -0.1;
  font-family: OPPOSans-Bold;
}
#online-store .store-container .store-page .store-content {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 146px;
  margin-bottom: 28px;
}
#online-store .store-container .store-page .store-content .store-list {
  width: 1088px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 1024px) and (max-width: 1439px) and (orientation: landscape) {
  #online-store .store-container .store-page .store-content .store-list {
    width: 664px;
  }
}
@media (min-width: 768px) and (max-width: 1439px) and (orientation: portrait) {
  #online-store .store-container .store-page .store-content .store-list {
    width: 532px;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  #online-store .store-container .store-page .store-content .store-list {
    width: 280px;
  }
}
#online-store .store-container .store-page .store-content .store-list .store-title {
  flex: 100%;
  text-align: center;
  margin-bottom: 20px;
}
#online-store .store-container .store-page .store-content .store-list .store {
  width: 192px;
  height: 144px;
  background-color: rgba(0,0,0,0.04);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
#online-store .store-container .store-page .store-content .store-list .store img {
  width: 118px;
  height: 80px;
  transition: transform 0.3s ease;
}
@media (min-width: 1440px) {
  #online-store .store-container .store-page .store-content .store-list .store:not(:nth-of-type(5n+1)) {
    margin-left: 32px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) and (orientation: landscape) {
  #online-store .store-container .store-page .store-content .store-list .store {
    width: 200px;
    height: 150px;
  }
  #online-store .store-container .store-page .store-content .store-list .store:not(:nth-of-type(3n+1)) {
    margin-left: 32px;
  }
  #online-store .store-container .store-page .store-content .store-list .store img {
    width: 122px;
    height: 82px;
  }
}
@media (min-width: 768px) and (max-width: 1439px) and (orientation: portrait) {
  #online-store .store-container .store-page .store-content .store-list .store {
    width: 155px;
    height: 116px;
  }
  #online-store .store-container .store-page .store-content .store-list .store:not(:nth-of-type(3n+1)) {
    margin-left: 32px;
  }
  #online-store .store-container .store-page .store-content .store-list .store img {
    width: 95px;
    height: 64px;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  #online-store .store-container .store-page .store-content .store-list .store {
    width: 132px;
    height: 96px;
  }
  #online-store .store-container .store-page .store-content .store-list .store:not(:nth-of-type(2n+1)) {
    margin-left: 16px;
  }
  #online-store .store-container .store-page .store-content .store-list .store img {
    width: 98px;
    height: 66px;
  }
}
#online-store .store-container .store-page .store-content .store-list .store:hover,
#online-store .store-container .store-page .store-content .store-list .store :active {
  background-color: rgba(0,0,0,0.01);
}
#online-store .store-container .store-page .store-content .store-list .store:hover img,
#online-store .store-container .store-page .store-content .store-list .store :active img {
  transform: scale(0.9);
}
#online-store .store-container .store-page .store-content .store-list:not(:first-child) {
  margin-top: 6px;
}
#online-store.show {
  top: 0;
}
#online-store.show .mask {
  opacity: 1;
}
#online-store.show .store-container {
  opacity: 1;
  transform: translateY(0);
}
#navbar {
  position: -webkit-sticky;
  position: sticky;
  top: -1px;
  background-color: #fff;
  color: #000;
  cursor: default;
  height: 61px;
  opacity: 1;
  width: 100%;
  z-index: 10;
  border: 1px solid rgba(0,0,0,0.1);
  border-left: none;
  border-right: none;
}
@media (max-width: 767px) {
  #navbar {
    height: 51px;
  }
}
#navbar.no-border-btm {
  border-bottom: transparent;
}
#navbar.sticked {
  transition: background-color 0.3s ease;
  background-color: #fff;
}
[data-theme='dark']#navbar.sticked {
  background-color: #000;
}
[data-theme='dark']#navbar {
  background-color: #000;
  border-color: rgba(255,255,255,0.1);
  color: #fff;
}
#navbar ul,
#navbar li {
  align-items: center;
  display: flex;
  justify-content: center;
}
#navbar li {
  font-family: OPPOSans-Regular;
  font-size: 14px;
  letter-spacing: -0.06px;
  line-height: 24px;
}
@media (max-width: 767px) {
  #navbar li {
    font-size: 12px;
    letter-spacing: -0.05px;
    line-height: 24px;
  }
}
#navbar li a {
  cursor: pointer;
  white-space: nowrap;
}
#navbar li a:hover {
  opacity: 1;
}
#navbar li a,
#navbar li span {
  align-items: center;
  color: inherit;
  display: flex;
  font-size: inherit;
  opacity: 0.6;
  transition: opacity 0.3s ease, color 0.3s ease;
}
#navbar .container {
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 14.4rem;
  padding: 0 0.6rem;
  position: relative;
  width: 100%;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #navbar .container {
    padding: 0 0.5rem;
  }
}
@media (max-width: 767px) {
  #navbar .container {
    padding: 0 20px;
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1023px) {
  #navbar .container {
    padding: 0 40px;
  }
}
#navbar .mask {
  background-color: rgba(253,253,253,0.9);
  transition: background-color 0.3s ease;
}
[data-theme='dark']#navbar .mask {
  background-color: rgba(21,21,21,0.9);
}
#navbar .indicator .arrow {
  fill: #000;
  transition: fill 0.3s ease;
}
[data-theme='dark']#navbar .indicator .arrow {
  fill: #fff;
}
#navbar .products,
#navbar .links,
#navbar .buttons {
  align-items: center;
  min-width: 0;
}
#navbar .link:not(:first-child),
#navbar .button:not(:first-child) {
  margin-left: 18px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #navbar .link:not(:first-child),
  #navbar .button:not(:first-child) {
    margin-left: 12px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #navbar .link:not(:first-child),
  #navbar .button:not(:first-child) {
    margin-left: 10px;
  }
}
@media (max-width: 767px) {
  #navbar .link:not(:first-child),
  #navbar .button:not(:first-child) {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  #navbar .products,
  #navbar .links {
    align-items: stretch;
    flex-direction: column;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    transform: translateX(-100vw);
    width: 100%;
  }
  #navbar .products > :last-child > :last-child,
  #navbar .links > :last-child > :last-child,
  #navbar .products > :last-child > :last-child > :last-child,
  #navbar .links > :last-child > :last-child > :last-child {
    border-bottom-color: transparent;
  }
  #navbar .products li,
  #navbar .links li {
    background-color: #fff;
    justify-content: stretch;
    padding: 0 58px;
    position: relative;
    transform: translateY(-800%);
    transition: transform 0.3s ease;
  }
  [data-theme='dark']#navbar .products li,
  [data-theme='dark']#navbar .links li {
    background-color: #000;
  }
  #navbar .products a,
  #navbar .links a {
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: center;
    padding: 15px 0;
    text-align: center;
    width: 100%;
  }
}
#navbar .products {
  flex: 1 1 0%;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  #navbar .products {
    z-index: 3;
  }
}
#navbar .products .active {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
#navbar .products .divider {
  margin: 0 18px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #navbar .products .divider {
    margin: 0 12px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #navbar .products .divider {
    margin: 0 10px;
  }
}
@media (max-width: 767px) {
  #navbar .products .divider {
    display: none;
  }
}
#navbar .products .divider a {
  cursor: default;
}
#navbar .links {
  flex: 3 3 0%;
  justify-content: center;
}
@media (max-width: 767px) {
  #navbar .links {
    z-index: 4;
  }
}
#navbar .buttons {
  flex: 1 1 0%;
  justify-content: flex-end;
}
#navbar .buttons .button {
  overflow: hidden;
  position: relative;
}
#navbar .buttons .button a {
  font-family: OPPOSans-Bold;
  background-color: #2ec84d;
  color: #fff;
  font-size: 12px;
  height: 30px;
  letter-spacing: 0;
  line-height: 1;
  opacity: 1;
  padding: 0 18px;
}
@media (max-width: 767px) {
  #navbar .buttons .button a {
    height: 32px;
    padding: 0 15px;
    font-size: 13px;
  }
}
#navbar .links .default {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
#navbar .links[data-active="1"] > li:nth-child(1) a {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
#navbar .links[data-active="2"] > li:nth-child(2) a {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
#navbar .links[data-active="3"] > li:nth-child(3) a {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
#navbar .links[data-active="4"] > li:nth-child(4) a {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
#navbar .links[data-active="5"] > li:nth-child(5) a {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
#navbar .links[data-active="6"] > li:nth-child(6) a {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
#navbar .links[data-active="7"] > li:nth-child(7) a {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
#navbar .links[data-active="8"] > li:nth-child(8) a {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
#navbar .links[data-active="9"] > li:nth-child(9) a {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
#navbar .links[data-active="10"] > li:nth-child(10) a {
  opacity: 1;
  pointer-events: none;
  font-family: OPPOSans-Bold;
}
@media (max-width: 767px) {
  #navbar {
    position: relative;
  }
  #navbar .mask {
    height: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 0;
  }
  #navbar .indicator {
    height: 24px;
    margin-left: 5px;
  }
  #navbar .indicator .arrow {
    width: 14px;
    height: 14px;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
  }
  #navbar .selector {
    align-items: center;
    display: flex;
    justify-content: flex-start;
  }
  #navbar .selector li * {
    opacity: 1;
    font-family: OPPOSans-Bold;
  }
  #navbar .selector[disabled] .indicator {
    display: none;
  }
  #navbar .container[data-active-selector] .mask {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    opacity: 1;
  }
  #navbar .container[data-active-selector='product'] .product-selector .indicator .arrow {
    transform: none;
  }
  #navbar .container[data-active-selector='product'] .products {
    transform: translateX(0);
  }
  #navbar .container[data-active-selector='product'] .products > li {
    transform: translateY(0);
  }
  #navbar .container[data-active-selector='link'] .link-selector .indicator .arrow {
    transform: none;
  }
  #navbar .container[data-active-selector='link'] .links {
    transform: translateX(0);
  }
  #navbar .container[data-active-selector='link'] .links > li {
    transform: translateY(0);
  }
  #navbar .product-selector,
  #navbar .buttons {
    flex: 0 0 85px;
  }
  #navbar .link-selector {
    flex: 1 1 0%;
    justify-content: center;
    margin: 0 5px;
  }
}
#oc-header.fixed {
  position: absolute;
}
#main-wrapper {
  position: relative;
}
.g--popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  z-index: 11;
  transform: translateY(100vh);
}
.g--popup.show {
  transform: translateY(0);
  transition: transform 0.5s;
}
.g--popup.disappear {
  transition: transform 0.5s;
}
@media (max-width: 767px) {
  .g--popup {
    transform: none;
    display: none;
  }
  .g--popup.show {
    transform: none;
    transition: none;
    display: block;
  }
  .g--popup.disappear {
    transform: none;
    transition: none;
    display: none;
  }
}
.g--popup .g--popup-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .g--popup .g--popup-container {
    padding: 0 5vw;
  }
}
.g--popup .g--video-wrapper {
  position: relative;
  margin-top: -12px;
  width: 60%;
  height: auto;
}
@media (min-width: 2260px) {
  .g--popup .g--video-wrapper {
    margin-top: -24px;
  }
}
@media (max-width: 767px) {
  .g--popup .g--video-wrapper {
    width: 100vw;
  }
}
.g--popup .g--video-wrapper video {
  width: 100%;
  height: 100%;
}
.g--popup .g--popup-close {
  top: -42px;
  right: 0;
  width: 24px;
  height: 24px;
  position: absolute;
  margin-left: auto;
  cursor: pointer;
  z-index: 2;
}
@media (min-width: 2260px) {
  .g--popup .g--popup-close {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 767px) {
  .g--popup .g--popup-close {
    width: 18px;
    height: 18px;
  }
}
.g--popup-container {
  background: #000;
}
.g--popup-close polygon {
  fill: #fff;
}
[data-theme = 'white'] .g--popup-container {
  background: #fff;
}
[data-theme = 'white'] .g--popup-close polygon {
  fill: #000;
}
.g--video-converter .wrapper {
  position: relative;
}
.g--video-converter .wrapper .video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.g--title-group {
  text-align: center;
}
.g--title-group .g--text {
  margin-top: 20px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .g--title-group .g--text {
    margin-top: 14px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .g--title-group .g--text {
    margin-top: 11px;
  }
}
.g--title-group .volume {
  width: 62px;
  height: 27px;
  margin: 32px auto 0;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .g--title-group .volume {
    width: 42px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .g--title-group .volume {
    width: 34px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .g--title-group .volume {
    height: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .g--title-group .volume {
    height: 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .g--title-group .volume {
    margin: 22px auto 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .g--title-group .volume {
    margin: 18px auto 0;
  }
}
.g--title-group.left {
  text-align: left;
}
.g--title-group.left .volume {
  margin: 32px 0 0;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .g--title-group.left .volume {
    margin: 22px 0 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .g--title-group.left .volume {
    margin: 18px 0 0;
  }
}
#section-kv {
  background-color: #000;
}
#section-kv .part-1 {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#section-kv .part-1 .bg {
  position: relative;
  width: 100vw;
  height: 38.125vw;
  transform: scale(1.1);
  opacity: 0;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  #section-kv .part-1 .bg {
    width: 110vw;
    height: 42vw;
    left: -5vw;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-kv .part-1 .bg {
    width: 100vw;
    height: 52.73vw;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-kv .part-1 .bg {
    width: 100vw;
    height: 116.6667vw;
    margin-top: -30px;
  }
}
@media (max-width: 767px) {
  #section-kv .part-1 .bg {
    height: 161.1111vw;
    width: 100vw;
    left: 0;
  }
}
#section-kv .part-1 .bg.move {
  opacity: 1;
  transform: scale(1);
  transition: all 1s ease-out;
}
#section-kv .part-1 .logo-wrapper {
  position: absolute;
  z-index: 2;
  bottom: 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  left: 14vw;
  height: 85px;
  width: 275.75px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  #section-kv .part-1 .logo-wrapper {
    left: 4.1vw;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-kv .part-1 .logo-wrapper {
    left: 4.7vw;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-kv .part-1 .logo-wrapper {
    left: 0;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  #section-kv .part-1 .logo-wrapper {
    left: 9vw;
    bottom: 0;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  #section-kv .part-1 .logo-wrapper {
    left: 3.1vw;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-kv .part-1 .logo-wrapper {
    left: 3.2vw;
  }
}
@media (max-width: 767px) {
  #section-kv .part-1 .logo-wrapper {
    width: 250px;
    height: 55px;
  }
}
#section-kv .part-1 .logo-wrapper .logo {
  height: 85px;
  width: 275.75px;
}
@media (max-width: 767px) {
  #section-kv .part-1 .logo-wrapper .logo {
    width: 250px;
    height: 55px;
  }
}
#section-kv .part-1 .text-wrapper {
  position: absolute;
  top: 13.8vw;
  left: 15.78vw;
  color: #fff;
  text-align: center;
  font-family: OPPOSans-Medium;
  opacity: 0;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  #section-kv .part-1 .text-wrapper {
    left: 5vw;
    top: 12.15vw;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-kv .part-1 .text-wrapper {
    left: 6.25vw;
    top: 19.82vw;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-kv .part-1 .text-wrapper {
    top: 84px;
    width: 100%;
    left: 0;
  }
}
@media (max-width: 767px) {
  #section-kv .part-1 .text-wrapper {
    top: 22.2222vw;
    width: 100%;
    left: 0;
  }
}
#section-kv .part-1 .text-wrapper.show {
  opacity: 1;
  transition: opacity 0.8s ease-out 0.2s;
}
#section-kv .part-1 .text-wrapper .title {
  font-size: 68px;
  letter-spacing: -1.02px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-kv .part-1 .text-wrapper .title {
    font-size: 54px;
    letter-spacing: -0.18px;
    line-height: 64.8px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-kv .part-1 .text-wrapper .title {
    font-size: 54px;
    letter-spacing: -0.18px;
    line-height: 64.8px;
  }
}
@media (max-width: 767px) {
  #section-kv .part-1 .text-wrapper .title {
    font-size: 42px;
    line-height: 54px;
  }
}
#section-kv .part-1 .text-wrapper .desc {
  font-size: 25px;
  letter-spacing: 5.6px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-kv .part-1 .text-wrapper .desc {
    font-size: 18px;
    letter-spacing: 3.6px;
    line-height: 28.8px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-kv .part-1 .text-wrapper .desc {
    font-size: 18px;
    letter-spacing: 3.6px;
    line-height: 28.8px;
  }
}
@media (max-width: 767px) {
  #section-kv .part-1 .text-wrapper .desc {
    font-size: 16px;
    letter-spacing: 4px;
    line-height: 28px;
  }
}
#section-kv .part-2 {
  position: relative;
  width: 100%;
  height: 39.0625vw;
  overflow: hidden;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  #section-kv .part-2 {
    height: 659px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-kv .part-2 {
    height: 576px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-kv .part-2 {
    height: 512px;
  }
}
@media (max-width: 767px) {
  #section-kv .part-2 {
    height: 200vw;
  }
}
#section-kv .part-2 .bg {
  position: absolute;
  top: -8.78125vw;
  left: 0;
  width: 100%;
  height: 56.25vw;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  #section-kv .part-2 .bg {
    top: calc(329.5px - 28.3125vw);
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-kv .part-2 .bg {
    top: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-kv .part-2 .bg {
    height: 100%;
    width: 118.52vw;
    top: 0;
    left: calc(384px - 59.26vw);
  }
}
@media (max-width: 767px) {
  #section-kv .part-2 .bg {
    width: 100vw;
    height: 200vw;
    top: 0;
  }
}
#section-kv .part-2 .center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  #section-kv .part-2 .center {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}
#section-kv .part-2 .center .text-wrapper {
  width: 865px;
  text-align: center;
  color: #fff;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-kv .part-2 .center .text-wrapper {
    width: 591px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-kv .part-2 .center .text-wrapper {
    width: 475px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-kv .part-2 .center .text-wrapper {
    width: 607px;
  }
}
@media (max-width: 767px) {
  #section-kv .part-2 .center .text-wrapper {
    width: 100%;
    text-align: start;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-kv .part-2 .center .text-wrapper {
    width: 589px;
  }
}
#section-kv .part-2 .center .text-wrapper .title {
  padding-bottom: 23px;
  font-size: 42px;
  letter-spacing: -0.1px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-kv .part-2 .center .text-wrapper .title {
    padding-bottom: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-kv .part-2 .center .text-wrapper .title {
    padding-bottom: 13px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-kv .part-2 .center .text-wrapper .title {
    font-size: 36px;
    letter-spacing: -0.18px;
    line-height: 56px;
  }
}
@media (max-width: 767px) {
  #section-kv .part-2 .center .text-wrapper .title {
    font-size: 28px;
    letter-spacing: -0.1px;
    line-height: 44px;
  }
}
#section-kv .part-2 .center .text-wrapper .desc {
  font-size: 16px;
  letter-spacing: -0.04px;
  line-height: 32px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-kv .part-2 .center .text-wrapper .desc {
    font-size: 16px;
    letter-spacing: -0.04px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  #section-kv .part-2 .center .text-wrapper .desc {
    letter-spacing: -0.1px;
    line-height: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-kv .part-2 .g--text {
    line-height: 28px;
  }
}
#section-kv .part-2 .logo {
  margin-top: 32px;
}
#section-kv .part-2 .button-wrapper {
  position: absolute;
  left: calc(50% - 73px);
  bottom: 32px;
}
@media (max-width: 767px) {
  #section-kv .part-2 .button-wrapper {
    left: calc(50% - 63.5px);
  }
}
#section-kv .play {
  width: 146px;
  height: 48px;
  background-color: #fff;
  font-size: 14px;
  color: #000;
  letter-spacing: -0.06px;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 15px;
  margin: 0 auto;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 767px) {
  #section-kv .play {
    width: 127px;
    padding: 0 20px 0 15px;
  }
}
#section-kv .play .arrow {
  width: 18px;
  height: 18px;
}
#section-kv .play span {
  font-size: 14px;
  letter-spacing: -0.06px;
  line-height: 24px;
  font-family: OPPOSans-Bold;
}
#section-1 {
  background-color: #000;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-1 .g--1920-1440-show {
    display: none !important;
  }
}
@media (max-width: 767px) {
  #section-1 .g--1920-1440-show {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .g--1920-1440-show {
    display: none !important;
  }
}
@media not screen and (min-width: 1024px) and (max-width: 1439px) {
  #section-1 .g--1024-show {
    display: none;
  }
}
#section-1 .volume {
  width: 62px;
  height: 27px;
  margin: 0 auto;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-1 .volume {
    width: 42px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .volume {
    width: 34px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-1 .volume {
    height: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .volume {
    height: 15px;
  }
}
#section-1 .part-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 128px;
  margin-top: -1px;
  padding-bottom: 90px;
  position: relative;
  z-index: 2;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  #section-1 .part-1 {
    padding-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .part-1 {
    padding-top: 258px;
  }
}
@media (max-width: 767px) {
  #section-1 .part-1 {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
#section-1 .part-1 .sticky-container {
  height: 120vh;
  height: calc(var(--vh, 1vh) * 120);
  width: 100%;
}
#section-1 .part-1 .sticky-item {
  width: 100%;
  overflow: hidden;
}
#section-1 .part-1 .flex-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#section-1 .part-1 .text-wrapper {
  text-align: center;
  color: #fff;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-1 .part-1 .text-wrapper {
    width: 822px;
  }
}
@media (max-width: 767px) {
  #section-1 .part-1 .text-wrapper {
    text-align: start;
    width: calc(100vw - 40px);
    margin: o auto;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .part-1 .text-wrapper {
    width: 653px;
  }
}
#section-1 .part-1 .text-wrapper .title {
  font-size: 42px;
  letter-spacing: -0.49px;
  line-height: 62px;
  margin-bottom: 30px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-1 .part-1 .text-wrapper .title {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .part-1 .text-wrapper .title {
    margin-bottom: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .part-1 .text-wrapper .title {
    font-size: 36px;
    letter-spacing: -0.18px;
    line-height: 56px;
  }
}
@media (max-width: 767px) {
  #section-1 .part-1 .text-wrapper .title {
    font-size: 28px;
    letter-spacing: -0.1px;
    line-height: 44px;
  }
}
#section-1 .part-1 .text-wrapper .desc {
  font-size: 16px;
  letter-spacing: -0.09px;
  line-height: 32px;
  margin-bottom: 32px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .part-1 .text-wrapper .desc {
    font-size: 16px;
    letter-spacing: -0.04px;
    line-height: 32px;
    width: 532px;
    margin: 0 auto 32px;
    font-size: 14px;
    letter-spacing: -0.06px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  #section-1 .part-1 .text-wrapper .desc {
    letter-spacing: -0.1px;
    line-height: 28px;
    margin-bottom: 0;
  }
}
#section-1 .part-1 .icon {
  width: 62px;
  height: 22px;
  margin-bottom: 46px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-1 .part-1 .icon {
    margin-bottom: 31px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .part-1 .icon {
    margin-bottom: 25px;
  }
}
#section-1 .part-1 .canvas {
  width: 472px;
  height: 407.4px;
  margin-top: 80px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  #section-1 .part-1 .canvas {
    width: 378px;
    height: 326px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-1 .part-1 .canvas {
    width: 297px;
    height: 256.6px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .part-1 .canvas {
    width: 250px;
    height: 216px;
  }
}
@media (max-width: 767px) {
  #section-1 .part-1 .canvas {
    width: 237px;
    height: 204.6px;
  }
}
#section-1 .part-1 .canvas img {
  width: 100%;
  height: 100%;
}
#section-1 .part-1 .img-wrapper {
  display: flex;
  flex-direction: row;
  padding: 0 108px;
  position: absolute;
  bottom: 39.4px;
  justify-content: center;
  transition: transform 0.5s ease-out;
  transform: translateX(-50%);
  left: 50%;
  width: 100%;
}
@media (max-width: 767px) {
  #section-1 .part-1 .img-wrapper {
    transform: translateX(-25%);
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  #section-1 .part-1 .img-wrapper {
    bottom: 33px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-1 .part-1 .img-wrapper {
    bottom: 24.4px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .part-1 .img-wrapper {
    bottom: 22px;
  }
}
@media (max-width: 767px) {
  #section-1 .part-1 .img-wrapper {
    padding: 48px 0 0;
    width: auto;
    bottom: 67.4px;
  }
}
#section-1 .part-1 .img-wrapper img {
  width: 377.6px;
  height: 325.9px;
  flex-shrink: 0;
  margin: 0 50px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  #section-1 .part-1 .img-wrapper img {
    width: 302.4px;
    height: 260.8px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-1 .part-1 .img-wrapper img {
    width: 237.6px;
    height: 205.28px;
    margin: 0 30px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .part-1 .img-wrapper img {
    width: 200px;
    height: 172px;
    margin: 0 20px;
  }
}
@media (max-width: 767px) {
  #section-1 .part-1 .img-wrapper img {
    width: 189.6px;
    height: 163.68px;
    margin: 0 20px;
  }
}
#section-1 .part-1 .img-wrapper .black {
  z-index: 2;
}
#section-1 .part-1 .img-wrapper .white,
#section-1 .part-1 .img-wrapper .green {
  z-index: 1;
}
#section-1 .part-1 .color-selector {
  display: flex;
}
#section-1 .part-1 .color-selector .circle {
  border-radius: 50%;
  opacity: 0.2;
  background: #fff;
  width: 7.8px;
  height: 6px;
  margin: 40px 5px 0;
  transition: opacity 0.3s ease-out;
}
#section-1 .part-1 .color-selector .circle.show {
  opacity: 1;
}
#section-1 .part-2 {
  position: relative;
}
#section-1 .part-2 .sticky-container {
  height: 150vh;
  height: calc(var(--vh, 1vh) * 150);
}
@media (max-width: 767px) {
  #section-1 .part-2 .sticky-container {
    height: 140vh;
    height: calc(var(--vh, 1vh) * 140);
  }
}
#section-1 .part-2 .sticky-container .sticky-item {
  height: 28.54vw;
}
@media (max-width: 767px) {
  #section-1 .part-2 .sticky-container .sticky-item {
    height: 80vw;
  }
}
#section-1 .part-2 .sticky-container .sticky-item .hidden-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
#section-1 .part-2 .sticky-container .sticky-item .canvas {
  width: 100%;
  height: 28.54vw;
}
@media (max-width: 767px) {
  #section-1 .part-2 .sticky-container .sticky-item .canvas {
    position: absolute;
    width: 200%;
    height: 57.08vw;
    margin-left: -50%;
    margin-top: 20%;
  }
}
#section-1 .part-2 .sticky-container .sticky-item .canvas img {
  width: 100%;
  height: 100%;
}
#section-1 .part-2 .sticky-container .sticky-item .text-wrapper {
  color: #fff;
  position: absolute;
  width: 416px;
  left: calc(50% - 710px);
  z-index: 2;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-1 .part-2 .sticky-container .sticky-item .text-wrapper {
    width: 284px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .part-2 .sticky-container .sticky-item .text-wrapper {
    width: 228px;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  #section-1 .part-2 .sticky-container .sticky-item .text-wrapper {
    left: calc(50% - 656px);
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-1 .part-2 .sticky-container .sticky-item .text-wrapper {
    left: 64px;
    width: 444px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .part-2 .sticky-container .sticky-item .text-wrapper {
    left: 20px;
    width: 540px;
  }
}
@media (max-width: 767px) {
  #section-1 .part-2 .sticky-container .sticky-item .text-wrapper {
    left: 20px;
    width: calc(100vw - 40px);
    top: -120%;
  }
}
#section-1 .part-2 .sticky-container .sticky-item .text-wrapper .title {
  font-size: 28px;
  letter-spacing: -0.1px;
  line-height: 44px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #section-1 .part-2 .sticky-container .sticky-item .text-wrapper .title {
    margin-bottom: 4px;
  }
}
#section-1 .part-2 .sticky-container .sticky-item .text-wrapper .desc {
  font-size: 16px;
  letter-spacing: -0.1px;
  line-height: 28px;
}
#section-1 .part-2 .center .text-wrapper {
  color: #fff;
  position: absolute;
  width: 416px;
  left: calc(50% - 710px);
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-1 .part-2 .center .text-wrapper {
    width: 284px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .part-2 .center .text-wrapper {
    width: 228px;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  #section-1 .part-2 .center .text-wrapper {
    left: calc(50% - 656px);
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-1 .part-2 .center .text-wrapper {
    left: 64px;
    width: 432px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .part-2 .center .text-wrapper {
    left: 20px;
    width: 540px;
  }
}
@media (max-width: 767px) {
  #section-1 .part-2 .center .text-wrapper {
    left: 20px;
    width: calc(100vw - 40px);
  }
}
#section-1 .part-2 .center .text-wrapper .title {
  font-size: 28px;
  letter-spacing: -0.1px;
  line-height: 44px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #section-1 .part-2 .center .text-wrapper .title {
    margin-bottom: 4px;
  }
}
#section-1 .part-2 .center .text-wrapper .desc {
  font-size: 16px;
  letter-spacing: -0.1px;
  line-height: 28px;
}
#section-1 .part-2 .center .text-wrapper1 {
  top: 15%;
}
@media (max-width: 767px) {
  #section-1 .part-2 .center .text-wrapper1 {
    bottom: 0;
  }
}
#section-1 .part-2 .center .text-wrapper2 {
  top: 55%;
}
#section-1 .part-3 {
  position: relative;
  z-index: 2;
  background-color: #000;
  width: 100%;
  margin-top: 0;
}
@media (max-width: 767px) {
  #section-1 .part-3 {
    margin-top: 0;
  }
}
#section-1 .part-3 .sticky-container {
  height: 180vh;
  height: calc(var(--vh, 1vh) * 180);
  width: 100%;
  margin-top: -31px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .part-3 .sticky-container {
    margin-top: 10vh;
    margin-top: calc(var(--vh, 1vh) * 10);
  }
}
@media (max-width: 767px) {
  #section-1 .part-3 .sticky-container {
    height: 160vh;
    height: calc(var(--vh, 1vh) * 160);
    margin-top: 0;
  }
}
#section-1 .part-3 .sticky-container .sticky-item {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  overflow: hidden;
  margin-bottom: 128px;
  padding-top: 59px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .part-3 .sticky-container .sticky-item {
    padding-top: 0;
  }
}
#section-1 .part-3 .sticky-container .sticky-item .wrapper {
  padding-bottom: 0;
}
#section-1 .part-3 .sticky-container .sticky-item .center {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
#section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper2 {
  transform: translateY(40px);
  transform: translateX(-50%);
}
#section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper2.show {
  transform: translateY(0);
  transform: translateX(-50%);
}
#section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper2.delay {
  transition: all 0.2s ease-out 0.2s;
}
#section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper1 {
  transform: translateY(40px);
}
#section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper1.show {
  transform: translateY(0);
}
#section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper1.delay {
  transition: all 0.2s ease-out 0.2s;
}
#section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper1.move {
  transform: translateY(-40px);
}
#section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: all 0.2s ease-out;
}
@media (max-width: 767px) {
  #section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper {
    text-align: start;
  }
}
#section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper.show {
  opacity: 1;
}
#section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper .title {
  margin-bottom: 32px;
  font-size: 42px;
  letter-spacing: -0.49px;
  line-height: 62px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper .title {
    font-size: 36px;
    letter-spacing: -0.18px;
    line-height: 56px;
    width: calc(100vw - 40px);
  }
}
@media (max-width: 767px) {
  #section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper .title {
    font-size: 28px;
    letter-spacing: -0.1px;
    line-height: 44px;
    width: calc(100vw - 40px);
    margin-bottom: 20px;
  }
}
#section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper .desc {
  margin-bottom: 32px;
  width: 870px;
}
#section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper .desc {
  font-size: 16px;
  letter-spacing: -0.1px;
  line-height: 28px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper .desc {
    width: 532px;
    font-size: 16px;
    letter-spacing: -0.09px;
    line-height: 32px;
    letter-spacing: -0.07px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  #section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper .desc {
    font-size: 16px;
    letter-spacing: -0.1px;
    line-height: 28px;
    width: calc(100vw - 40px);
  }
}
#section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper .remark {
  color: #666;
  margin-bottom: 32px;
  width: 870px;
  font-size: 8px;
  line-height: 12px;
  letter-spacing: -0.05px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper .remark {
    width: 100%;
  }
}
@media (max-width: 767px) {
  #section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper .remark {
    width: calc(100vw - 40px);
  }
}
#section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper .icon {
  width: 62px;
  height: 22px;
}
#section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper2 {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper2 .desc {
  margin-bottom: 32px;
}
#section-1 .part-3 .sticky-container .sticky-item .center .text-wrapper1 {
  position: relative;
}
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper {
    margin-top: 29px;
  }
}
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .canvas-left,
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .canvas-right {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 24.375vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .canvas-left,
  #section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .canvas-right {
    top: 4vw;
  }
}
@media (max-width: 767px) {
  #section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .canvas-left,
  #section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .canvas-right {
    top: 7vw;
  }
}
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .canvas-left canvas,
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .canvas-right canvas {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .canvas-left canvas.show,
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .canvas-right canvas.show {
  opacity: 1;
}
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .canvas-left .canvas2,
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .canvas-right .canvas2,
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .canvas-left .canvas3,
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .canvas-right .canvas3 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .canvas-right {
  right: 0;
}
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .canvas-left {
  left: 0;
}
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .sound-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24.375vw;
  width: 50vw;
  position: absolute;
  right: 0;
  top: 0;
}
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .sound-wrapper .sound-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .sound-wrapper .sound-icon .sound-wave {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  transition: opacity 0.5s ease-out;
  opacity: 0;
}
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .sound-wrapper .sound-icon .sound-wave.show {
  opacity: 1;
}
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .sound-wrapper .sound-icon .sound-wave .bar {
  display: block;
  width: 2px;
  margin-right: 1px;
  height: 1px;
  background: #fff;
  transition: all 0.085s ease;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  #section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .sound-wrapper .sound-icon .sound-wave .bar {
    width: 0.5px;
    opacity: 0.9;
  }
}
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .bg1 {
  top: -3vw;
  transform: scale(1.2);
}
@media (max-width: 767px) {
  #section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .bg1 {
    top: -8.2vw;
  }
}
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .bg2 {
  top: -3vw;
}
@media (max-width: 767px) {
  #section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .bg2 {
    top: -8.2vw;
  }
}
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .bg3 {
  top: -4.5vw;
}
@media (max-width: 767px) {
  #section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .bg3 {
    top: -9.7vw;
  }
}
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .img {
  width: 17.92vw;
  height: 24.375vw;
  opacity: 1;
  margin-top: 5.2vw;
  transition: opacity 0.5s ease-out;
  z-index: 2;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .img {
    width: 190px;
    height: 237px;
    margin-top: 51px;
  }
}
@media (max-width: 767px) {
  #section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .img {
    width: 37.91vw;
    height: 47.3875vw;
  }
}
#section-1 .part-3 .sticky-container .sticky-item .canvas-wrapper .img.show {
  opacity: 1;
}
#section-1 .part-3 .sticky-container .sticky-item .switchBar {
  width: 337px;
}
#section-1 .part-3 .sticky-container .sticky-item .switchBar {
  position: relative;
  background: rgba(255,255,255,0.29);
  border-radius: 18px;
  color: #fff;
  height: 40px;
  margin: 96px auto 0;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-1 .part-3 .sticky-container .sticky-item .switchBar {
    margin: 66px auto 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-1 .part-3 .sticky-container .sticky-item .switchBar {
    margin: 53px auto 0;
  }
}
#section-1 .part-3 .sticky-container .sticky-item .switchBar.show {
  opacity: 1;
}
#section-1 .part-3 .sticky-container .sticky-item .switchBar .button {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#section-1 .part-3 .sticky-container .sticky-item .switchBar .button.active {
  background: rgba(132,245,129,0.56);
}
#section-1 .part-3 .sticky-container .sticky-item .switchBar .button span {
  text-align: center;
  font-size: 12px;
  letter-spacing: -0.06px;
}
#section-1 .part-3 .sticky-container .sticky-item .switchBar .weak {
  left: 50%;
}
#section-2 {
  width: 100%;
  overflow: hidden;
  padding-top: 209px;
  padding-bottom: 168px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-2 {
    padding-top: 143px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-2 {
    padding-top: 115px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-2 {
    padding-bottom: 115px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-2 {
    padding-bottom: 92px;
  }
}
@media (max-width: 767px) {
  #section-2 {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
@media not screen and (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .g--1024-show {
    display: none;
  }
}
@media not screen and (max-width: 767px) {
  #section-2 .g--360-show {
    display: none;
  }
}
@media not screen and (min-width: 768px) and (max-width: 1023px) {
  #section-2 .g--768-show {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-2 .g--title-group .g--title {
    white-space: nowrap;
  }
  #section-2 .g--title-group .g--text {
    line-height: 28px;
  }
}
#section-2 .part-1 {
  position: relative;
}
#section-2 .part-1 .g--title-group {
  position: relative;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-1 .g--title-group {
    width: 664px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-1 .g--title-group .g--title {
    width: 100%;
  }
  #section-2 .part-1 .g--title-group .g--text {
    width: 595px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  #section-2 .part-1 .g--title-group {
    text-align: left;
  }
}
#section-2 .part-1 .pic1 {
  margin: 80px auto 0;
  position: relative;
  width: 1312px;
  height: 738px;
  overflow: hidden;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-1 .pic1 {
    margin: 55px auto 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-1 .pic1 {
    margin: 44px auto 0;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-1 .pic1 {
    width: 896px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-1 .pic1 {
    width: 720px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-1 .pic1 {
    height: 504px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-1 .pic1 {
    height: 405px;
  }
}
#section-2 .part-1 .pic1 img {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  #section-2 .part-1 .pic1 {
    margin-top: 48px;
    position: relative;
    width: 100%;
    height: 100vw;
  }
}
@media (max-width: 767px) and (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-1 .pic1 {
    margin-top: 33px;
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-1 .pic1 {
    margin-top: 26px;
  }
}
#section-2 .part-2,
#section-2 .part-3 {
  margin-top: 128px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-2,
  #section-2 .part-3 {
    margin-top: 87px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-2,
  #section-2 .part-3 {
    margin-top: 70px;
  }
}
@media (max-width: 767px) {
  #section-2 .part-2,
  #section-2 .part-3 {
    margin-top: 80px;
  }
}
#section-2 .part-2 .flex-between,
#section-2 .part-3 .flex-between {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  #section-2 .part-2 .flex-between,
  #section-2 .part-3 .flex-between {
    display: block;
  }
}
#section-2 .part-2 .flex-between .g--title-group .logo,
#section-2 .part-3 .flex-between .g--title-group .logo {
  width: 120px;
  height: 16px;
  margin-top: 58px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-2 .flex-between .g--title-group .logo,
  #section-2 .part-3 .flex-between .g--title-group .logo {
    margin-top: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-2 .flex-between .g--title-group .logo,
  #section-2 .part-3 .flex-between .g--title-group .logo {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  #section-2 .part-2 .flex-between .g--title-group .logo,
  #section-2 .part-3 .flex-between .g--title-group .logo {
    margin-top: 26px;
  }
}
@media (max-width: 767px) and (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-2 .flex-between .g--title-group .logo,
  #section-2 .part-3 .flex-between .g--title-group .logo {
    margin-top: 18px;
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-2 .flex-between .g--title-group .logo,
  #section-2 .part-3 .flex-between .g--title-group .logo {
    margin-top: 14px;
  }
}
#section-2 .part-2 .flex-between .block1,
#section-2 .part-3 .flex-between .block1 {
  position: relative;
  width: 465px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-2 .flex-between .block1,
  #section-2 .part-3 .flex-between .block1 {
    width: 318px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-2 .flex-between .block1,
  #section-2 .part-3 .flex-between .block1 {
    width: 255px;
  }
}
@media (max-width: 767px) {
  #section-2 .part-2 .flex-between .block1,
  #section-2 .part-3 .flex-between .block1 {
    text-align: left;
    width: 100%;
  }
}
#section-2 .part-2 .flex-between .block2,
#section-2 .part-3 .flex-between .block2 {
  position: relative;
  width: 686px;
  height: 686px;
  overflow: hidden;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-2 .flex-between .block2,
  #section-2 .part-3 .flex-between .block2 {
    width: 468px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-2 .flex-between .block2,
  #section-2 .part-3 .flex-between .block2 {
    width: 376px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-2 .flex-between .block2,
  #section-2 .part-3 .flex-between .block2 {
    height: 468px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-2 .flex-between .block2,
  #section-2 .part-3 .flex-between .block2 {
    height: 376px;
  }
}
#section-2 .part-2 .flex-between .block2 img,
#section-2 .part-3 .flex-between .block2 img {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  #section-2 .part-2 .flex-between .block2,
  #section-2 .part-3 .flex-between .block2 {
    margin-top: 48px;
    position: relative;
    width: 100%;
    height: 88.88vw;
  }
}
@media (max-width: 767px) and (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-2 .flex-between .block2,
  #section-2 .part-3 .flex-between .block2 {
    margin-top: 33px;
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-2 .flex-between .block2,
  #section-2 .part-3 .flex-between .block2 {
    margin-top: 26px;
  }
}
#section-2 .part-2 .flex-between .name,
#section-2 .part-3 .flex-between .name {
  margin-top: 15px;
  text-align: right;
  font-size: 12px;
  line-height: 17px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-2 .flex-between .name,
  #section-2 .part-3 .flex-between .name {
    margin-top: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-2 .flex-between .name,
  #section-2 .part-3 .flex-between .name {
    margin-top: 8px;
  }
}
@media (max-width: 767px) {
  #section-2 .part-2 .flex-between .name,
  #section-2 .part-3 .flex-between .name {
    margin-top: 10px;
  }
}
@media (max-width: 767px) and (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-2 .flex-between .name,
  #section-2 .part-3 .flex-between .name {
    margin-top: 7px;
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-2 .flex-between .name,
  #section-2 .part-3 .flex-between .name {
    margin-top: 5px;
  }
}
@media (max-width: 767px) and (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-2,
  #section-2 .part-3 {
    margin-top: 55px;
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-2,
  #section-2 .part-3 {
    margin-top: 44px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-2 .flex-between .block1 {
    width: auto;
  }
  #section-2 .part-2 .flex-between .block1 .g--title {
    width: 378px;
  }
  #section-2 .part-2 .flex-between .block1 .g--text {
    width: 341px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-2 .flex-between .block1 {
    width: auto;
  }
  #section-2 .part-2 .flex-between .block1 .g--title {
    width: 322px;
  }
  #section-2 .part-2 .flex-between .block1 .g--text {
    width: 336px;
  }
}
#section-2 .part-2 .flex-between .block1 .part-2-br {
  display: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-2 .flex-between .block1 .part-2-br {
    display: block;
  }
}
@media (max-width: 767px) {
  #section-2 .part-2 .flex-between .block1 .part-2-br {
    display: block;
  }
}
#section-2 .part-3 {
  margin-top: 150px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-3 {
    margin-top: 102px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-3 {
    margin-top: 82px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-3 .flex-between .block1 {
    width: 333px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-3 .flex-between .block1 {
    width: 315px;
  }
}
#section-2 .part-3-m {
  margin-top: 67px;
}
#section-2 .part-3-m .g--title-group {
  text-align: left;
}
#section-2 .part-3-m .pic1 {
  margin-top: 56px;
  width: 100%;
  height: 100vw;
  overflow: hidden;
}
#section-2 .part-3-m .pic1 img {
  width: 100%;
  height: 100%;
}
#section-2 .part-4 {
  margin-top: 195px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-4 {
    margin-top: 133px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-4 {
    margin-top: 107px;
  }
}
@media (max-width: 767px) {
  #section-2 .part-4 {
    margin-top: 80px;
  }
}
#section-2 .part-4 .flex-between {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  #section-2 .part-4 .flex-between {
    display: block;
  }
}
#section-2 .part-4 .flex-between .block1 {
  position: relative;
  width: 477px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-4 .flex-between .block1 {
    width: 326px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-4 .flex-between .block1 {
    width: 262px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-4 .flex-between .block1 {
    width: 316px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-4 .flex-between .block1 {
    width: 305px;
  }
}
@media (max-width: 767px) {
  #section-2 .part-4 .flex-between .block1 {
    text-align: left;
    width: 100%;
  }
}
#section-2 .part-4 .flex-between .block2 {
  position: relative;
  width: 686px;
  height: 686px;
  overflow: hidden;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-4 .flex-between .block2 {
    width: 468px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-4 .flex-between .block2 {
    width: 376px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-4 .flex-between .block2 {
    height: 468px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-4 .flex-between .block2 {
    height: 376px;
  }
}
#section-2 .part-4 .flex-between .block2 img {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  #section-2 .part-4 .flex-between .block2 {
    margin-top: 24px;
    position: relative;
    width: 100%;
    height: 88.89vw;
  }
}
@media (max-width: 767px) and (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-4 .flex-between .block2 {
    margin-top: 16px;
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-4 .flex-between .block2 {
    margin-top: 13px;
  }
}
@media (max-width: 767px) and (min-width: 1024px) and (max-width: 1439px) {
  #section-2 .part-4 {
    margin-top: 55px;
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1023px) {
  #section-2 .part-4 {
    margin-top: 44px;
  }
}
@media (max-width: 767px) and (min-width: 1024px) and (max-width: 1439px) {
  #section-2 {
    padding-top: 66px;
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1023px) {
  #section-2 {
    padding-top: 53px;
  }
}
@media (max-width: 767px) and (min-width: 1024px) and (max-width: 1439px) {
  #section-2 {
    padding-bottom: 66px;
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1023px) {
  #section-2 {
    padding-bottom: 53px;
  }
}
@media not screen and (min-width: 768px) and (max-width: 1023px) {
  .g--768-show {
    display: none;
  }
}
@media (min-width: 1440px) {
  .g--1024-768-show {
    display: none !important;
  }
}
@media $1440 {
  .g--1024-768-show {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .g--1024-768-show {
    display: none !important;
  }
}
#section-3 {
  color: #fff;
}
#section-3 .s-f-0 {
  font-family: OPPOSans-Medium;
  font-size: 16px;
  line-height: 1.3125;
  letter-spacing: -0.24px;
}
@media (max-width: 767px) {
  #section-3 .s-f-0 {
    font-size: 14px;
    line-height: 1.285714285714286;
    letter-spacing: -0.21px;
  }
}
#section-3 .s-f-1 {
  font-family: OPPOSans-Bold;
  font-size: 16px;
  line-height: 1.5625;
  letter-spacing: -0.09px;
}
@media (max-width: 767px) {
  #section-3 .s-f-1 {
    font-size: 14px;
    line-height: 1.571428571428571;
    letter-spacing: -0.08px;
  }
}
#section-3 .s-f-2 {
  font-family: OPPOSans-Regular;
  font-size: 8px;
  line-height: 1.375;
  letter-spacing: -0.05px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-f-2 {
    font-size: 10px;
    line-height: 1.3;
    letter-spacing: -0.06px;
  }
}
@media (max-width: 767px) {
  #section-3 .s-f-2 {
    font-size: 10px;
    line-height: 1.3;
    letter-spacing: -0.06px;
  }
}
@media (max-width: 767px) {
  #section-3 .g--title-group {
    text-align: left;
  }
}
#section-3 .desc-0 {
  position: relative;
  z-index: 2;
}
#section-3 .desc-0 .g--text {
  width: 557px;
  width: 700px;
}
@media (min-width: 1366px) and (max-width: 1919px) {
  #section-3 .desc-0 .g--text {
    width: 760px;
  }
}
#section-3 .desc-1 .g--text {
  width: 864px;
}
#section-3 .desc-3 .g--text {
  width: 700px;
}
#section-3 .desc .g--text {
  margin: 20px auto 0 auto;
  width: 800px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .desc .g--text {
    margin: 14px auto 0 auto;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .desc .g--text {
    margin: 11px auto 0 auto;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .desc .g--text {
    width: 675px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .desc .g--text {
    width: 532px;
  }
}
@media (max-width: 767px) {
  #section-3 .desc .g--text {
    width: 100%;
    margin: 20px 0 0 0;
  }
}
#section-3 {
  position: relative;
  width: 100%;
  background: #000;
}
#section-3 .s-part-0 {
  background: rgba(255,255,255,0.13);
}
@media (max-width: 767px) {
  #section-3 .s-part-0 {
    padding-top: 100px;
  }
}
#section-3 .s-part-0 .front-layer,
#section-3 .s-part-0 .back-layer {
  width: 100%;
}
#section-3 .s-part-0 .front-layer {
  position: relative;
  z-index: 2;
}
#section-3 .s-part-0 .front-layer .front-mask {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-180deg);
  background-image: linear-gradient(180deg, #000 8%, rgba(0,0,0,0) 76%);
}
#section-3 .s-part-0 .front-layer .front-container {
  position: relative;
  z-index: 2;
}
#section-3 .s-part-0 .front-layer .front-container .phone-container {
  position: relative;
  width: 714px;
  height: 353px;
  margin: 0 auto 0 auto;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-0 .front-layer .front-container .phone-container {
    width: 488px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-0 .front-layer .front-container .phone-container {
    width: 392px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-0 .front-layer .front-container .phone-container {
    height: 241px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-0 .front-layer .front-container .phone-container {
    height: 194px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-0 .front-layer .front-container .phone-container {
    width: 67.70833333333334vw;
    height: 33.46354166666667vw;
  }
}
@media (max-width: 767px) {
  #section-3 .s-part-0 .front-layer .front-container .phone-container {
    margin-top: 67px;
  }
}
#section-3 .s-part-0 .front-layer .front-container .phone-container .phone {
  width: 100%;
  height: 100%;
  margin-left: -20px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-0 .front-layer .front-container .phone-container .phone {
    margin-left: -14px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-0 .front-layer .front-container .phone-container .phone {
    margin-left: -11px;
  }
}
#section-3 .s-part-0 .front-layer .front-container .phone-container .left {
  width: 201px;
  height: 288px;
  position: absolute;
  bottom: 0;
  left: -210px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-0 .front-layer .front-container .phone-container .left {
    width: 137px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-0 .front-layer .front-container .phone-container .left {
    width: 110px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-0 .front-layer .front-container .phone-container .left {
    height: 197px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-0 .front-layer .front-container .phone-container .left {
    height: 158px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-0 .front-layer .front-container .phone-container .left {
    left: -143px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-0 .front-layer .front-container .phone-container .left {
    left: -115px;
  }
}
#section-3 .s-part-0 .front-layer .front-container .phone-container .right {
  width: 195px;
  height: 209px;
  position: absolute;
  bottom: 0;
  right: -195px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-0 .front-layer .front-container .phone-container .right {
    width: 133px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-0 .front-layer .front-container .phone-container .right {
    width: 107px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-0 .front-layer .front-container .phone-container .right {
    height: 143px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-0 .front-layer .front-container .phone-container .right {
    height: 115px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-0 .front-layer .front-container .phone-container .right {
    right: -133px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-0 .front-layer .front-container .phone-container .right {
    right: -107px;
  }
}
@media (max-width: 767px) {
  #section-3 .s-part-0 .front-layer .front-container .phone-container {
    position: relative;
    width: 100vw;
    height: 113.33333333333333vw;
    margin-left: -5.555555555555555vw;
  }
  #section-3 .s-part-0 .front-layer .front-container .phone-container .phone {
    margin-left: 0;
  }
  #section-3 .s-part-0 .front-layer .front-container .phone-container .left,
  #section-3 .s-part-0 .front-layer .front-container .phone-container .right {
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
  }
}
#section-3 .s-part-0 .front-layer .front-container .tab-container {
  margin: 45px auto 0 auto;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-0 .front-layer .front-container .tab-container {
    margin: 31px auto 0 auto;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-0 .front-layer .front-container .tab-container {
    margin: 25px auto 0 auto;
  }
}
@media (max-width: 767px) {
  #section-3 .s-part-0 .front-layer .front-container .tab-container {
    margin: 70px auto 0 auto;
  }
}
#section-3 .s-part-0 .front-layer .front-container .tab-container .container-360-not {
  display: flex;
  justify-content: center;
}
#section-3 .s-part-0 .front-layer .front-container .tab-container .container-360-not > :not(:first-child) {
  margin-left: 72px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-0 .front-layer .front-container .tab-container .container-360-not > :not(:first-child) {
    margin-left: 49px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-0 .front-layer .front-container .tab-container .container-360-not > :not(:first-child) {
    margin-left: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-0 .front-layer .front-container .tab-container .container-360-not {
    justify-content: space-between;
    width: 75.52083333333334vw;
    margin: auto;
  }
  #section-3 .s-part-0 .front-layer .front-container .tab-container .container-360-not > :not(:first-child) {
    margin-left: 0;
  }
}
#section-3 .s-part-0 .front-layer .front-container .tab-container .container-360 .sub-tab {
  display: flex;
}
#section-3 .s-part-0 .front-layer .front-container .tab-container .container-360 .sub-tab > * {
  flex: 1;
}
#section-3 .s-part-0 .front-layer .front-container .tab-container .container-360 .sub-tab .down {
  margin-top: 4px;
}
#section-3 .s-part-0 .front-layer .front-container .tab-container .container-360 .tab-1,
#section-3 .s-part-0 .front-layer .front-container .tab-container .container-360 .tab-2 {
  margin-top: 32px;
}
#section-3 .s-part-0 .front-layer .front-container .tab-container {
  width: 840px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-0 .front-layer .front-container .tab-container {
    width: 540px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-0 .front-layer .front-container .tab-container {
    width: 65vw;
  }
}
@media (max-width: 767px) {
  #section-3 .s-part-0 .front-layer .front-container .tab-container {
    width: 100%;
  }
}
#section-3 .s-part-0 .front-layer .front-container .container-360-not {
  flex-direction: column;
}
#section-3 .s-part-0 .front-layer .front-container .container-360-not > :not(:first-child) {
  margin-left: 0;
}
#section-3 .s-part-0 .front-layer .front-container .container-360-not .sub-tab {
  display: flex;
  justify-content: space-around;
}
#section-3 .s-part-0 .front-layer .front-container .container-360-not .sub-tab > :not(:first-child) {
  margin-left: 72px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-0 .front-layer .front-container .container-360-not .sub-tab > :not(:first-child) {
    margin-left: 49px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-0 .front-layer .front-container .container-360-not .sub-tab > :not(:first-child) {
    margin-left: 40px;
  }
}
#section-3 .s-part-0 .front-layer .front-container .container-360-not .tab-1 {
  margin-top: 40px;
}
#section-3 .s-part-0 .front-layer .front-container .container-360-not .sub-tab.tab-1 {
  margin-left: 0;
}
#section-3 .s-part-0 .front-layer .front-container .container-360-not .sub-tab.tab-1 .tab:nth-child(2) {
  margin-left: 45px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-0 .front-layer .front-container .container-360-not .sub-tab.tab-1 .tab:nth-child(2) {
    margin-left: 31px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-0 .front-layer .front-container .container-360-not .sub-tab.tab-1 .tab:nth-child(2) {
    margin-left: 25px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-0 .front-layer .front-container .container-360-not .sub-tab.tab-1 .tab:nth-child(2) {
    margin-left: 72px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-0 .front-layer .front-container .container-360-not .sub-tab.tab-1 .tab:nth-child(2) {
    margin-left: 64px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-0 .front-layer .front-container .tab-container {
    width: 85vw;
  }
  #section-3 .s-part-0 .front-layer .front-container .tab-container .container-360-not {
    width: 100%;
  }
  #section-3 .s-part-0 .front-layer .front-container .tab-container .container-360-not .tab:not(:first-child) {
    margin-left: 40px;
  }
  #section-3 .s-part-0 .front-layer .front-container .tab-container .container-360-not .tab .up {
    margin-bottom: 8px;
  }
  #section-3 .s-part-0 .front-layer .front-container .tab-container .container-360-not .tab:first-child {
    order: 0;
  }
  #section-3 .s-part-0 .front-layer .front-container .tab-container .container-360-not .tab:last-child {
    order: 1;
  }
  #section-3 .s-part-0 .front-layer .front-container .tab-container .container-360-not .tab:nth-child(2) {
    order: 2;
  }
  #section-3 .s-part-0 .front-layer .front-container .tab-container .container-360-not .tab:nth-child(3) {
    order: 3;
  }
}
#section-3 .s-part-0 .front-layer .front-container .container-360 .tab {
  margin-top: 32px;
}
#section-3 .s-part-0 .back-layer {
  top: 0;
  left: 0;
  z-index: 1;
  position: absolute;
  background: #000;
  padding-top: 185px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-0 .back-layer {
    padding-top: 126px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-0 .back-layer {
    padding-top: 102px;
  }
}
@media (max-width: 767px) {
  #section-3 .s-part-0 .back-layer {
    padding-top: 96px;
  }
}
#section-3 .s-part-0 .back-layer .back-mask {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.13);
  width: 100%;
  height: 100%;
}
#section-3 .s-part-1 {
  position: relative;
  z-index: 2;
  margin-top: 137px;
  margin-top: 256px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-1 {
    margin-top: 175px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-1 {
    margin-top: 140px;
  }
}
@media (orientation: portrait) and (max-width: 1024px) and (min-width: 768px) {
  #section-3 .s-part-1 {
    margin-top: 96px;
  }
}
@media (max-width: 767px) {
  #section-3 .s-part-1 {
    margin-top: 150px;
  }
}
#section-3 .s-part-1 .microphone {
  position: relative;
  width: 664px;
  height: 733px;
  margin: 20px auto 0;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-1 .microphone {
    width: 453px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-1 .microphone {
    width: 364px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-1 .microphone {
    height: 501px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-1 .microphone {
    height: 402px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-1 .microphone {
    width: 56.380208333333336vw;
    height: 62.109375vw;
    margin: 60px auto 0;
  }
}
@media (max-width: 767px) {
  #section-3 .s-part-1 .microphone {
    width: 88.88888888888889vw;
    height: 98.05555555555556vw;
    margin: 140px auto 90px auto;
    margin: 150px auto;
  }
}
#section-3 .s-part-1 .microphone canvas,
#section-3 .s-part-1 .microphone img {
  width: 100%;
  height: 100%;
}
#section-3 .s-part-1 .microphone .end-phone {
  position: absolute;
  top: -2%;
  left: -1%;
  width: 103%;
  height: 105%;
}
#section-3 .s-part-1 .line-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-1 .line-group {
    left: 20%;
  }
}
#section-3 .s-part-1 .line-group .circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #d8d8d8;
  opacity: 0;
  transition: opacity 0.2s;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-1 .line-group .circle {
    width: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-1 .line-group .circle {
    width: 8px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-1 .line-group .circle {
    height: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-1 .line-group .circle {
    height: 8px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-1 .line-group .circle {
    width: 10px;
    height: 10px;
  }
}
#section-3 .s-part-1 .line-group .line {
  height: 1px;
  background: rgba(216,216,216,0.5);
  flex-grow: 1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s 0.2s;
}
#section-3 .s-part-1 .line-group .line-desc {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -90px;
  opacity: 0;
  transition: opacity 0.3s 0.3s;
}
@media (max-width: 767px) {
  #section-3 .s-part-1 .line-group {
    transform-origin: right;
    transform: rotate(90deg);
  }
  #section-3 .s-part-1 .line-group .line-desc {
    transform: translateY(-50%) rotate(270deg);
    left: -50px;
  }
  #section-3 .s-part-1 .line-group .circle {
    width: 7px;
    height: 7px;
  }
}
#section-3 .s-part-1 .group-0 .line-desc {
  left: -220px;
}
@media (max-width: 767px) {
  #section-3 .s-part-1 .group-0 .line-desc {
    left: -80px;
  }
}
#section-3 .s-part-1 .group-1 .line-desc {
  left: -190px;
}
@media (max-width: 767px) {
  #section-3 .s-part-1 .group-1 .line-desc {
    left: -73px;
  }
}
#section-3 .s-part-1 .group-2 .line-desc {
  left: -245px;
}
@media (max-width: 767px) {
  #section-3 .s-part-1 .group-2 .line-desc {
    left: -115px;
  }
}
#section-3 .s-part-1 .line-wrapper.active .circle,
#section-3 .s-part-1 .line-wrapper.active .line-desc {
  opacity: 1;
}
#section-3 .s-part-1 .line-wrapper.active .line {
  transform: scaleX(1);
}
#section-3 .s-part-1 .group-0 {
  width: 75%;
  top: 30.5%;
}
@media (max-width: 767px) {
  #section-3 .s-part-1 .group-0 {
    width: 50%;
    top: 31%;
    left: 26%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-1 .group-0 {
    width: 57%;
  }
}
#section-3 .s-part-1 .group-1 {
  width: 42.5%;
  top: 47%;
}
@media (max-width: 767px) {
  #section-3 .s-part-1 .group-1 {
    width: 68.5%;
    top: 48%;
    left: -27.5%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-1 .group-1 {
    width: 22.5%;
  }
}
#section-3 .s-part-1 .group-2 {
  width: 52%;
  top: 73%;
}
@media (max-width: 767px) {
  #section-3 .s-part-1 .group-2 {
    width: 30%;
    top: 73%;
    left: 21.5%;
    transform: rotate(270deg);
  }
  #section-3 .s-part-1 .group-2 .line-desc {
    transform: translateY(-50%) rotate(90deg);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-1 .group-2 {
    width: 33%;
    top: 74%;
  }
}
#section-3 .s-part-2 {
  margin-top: 77px;
  width: 100%;
  overflow: hidden;
  padding-bottom: 200px;
  margin-top: 256px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-2 {
    margin-top: 53px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-2 {
    margin-top: 42px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-2 {
    margin-top: 175px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-2 {
    margin-top: 140px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-2 {
    margin-top: 128px;
    margin-top: 256px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-2 {
    margin-top: 86px;
  }
}
@media (max-width: 767px) {
  #section-3 .s-part-2 {
    margin-top: 150px;
    padding-bottom: 100px;
  }
}
#section-3 .s-part-2 .wireless-wrapper {
  position: relative;
  width: 100%;
  height: 38.22916666666667vw;
  margin: 54px auto 0 auto;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-2 .wireless-wrapper {
    margin: 37px auto 0 auto;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-2 .wireless-wrapper {
    margin: 30px auto 0 auto;
  }
}
@media (max-width: 767px) {
  #section-3 .s-part-2 .wireless-wrapper {
    height: 82.77777777777777vw;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-2 .wireless-wrapper {
    width: 160%;
    height: 65.57692307692308vw;
    margin: 54px auto 0 -30%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-2 .wireless-wrapper {
    width: 150%;
    height: 62.5vw;
    margin: 60px auto 0 -25%;
  }
}
#section-3 .s-part-2 .wireless-wrapper img {
  width: 100%;
  height: 100%;
}
#section-3 .s-part-2 .wireless-wrapper .up {
  position: absolute;
  top: 0;
  left: 0;
}
#section-3 .s-part-2 .wireless-wrapper .shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#section-3 .s-part-2 .wireless-wrapper .shadow .f-shadow {
  position: absolute;
  width: 13.541666666666668vw;
  height: 9.635416666666668vw;
  left: 47.708333333333336vw;
  bottom: 14.583333333333334vw;
  background: rgba(0,0,0,0.2);
  -webkit-filter: blur(2px);
          filter: blur(2px);
  border-radius: 80%/65%;
}
@media (max-width: 767px) {
  #section-3 .s-part-2 .wireless-wrapper .shadow .f-shadow {
    width: 25vw;
    height: 19.444444444444443vw;
    left: 34.166666666666664vw;
    bottom: 34.166666666666664vw;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) and (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-2 .wireless-wrapper {
    margin: 37px auto 0 -30%;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) and (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-2 .wireless-wrapper {
    margin: 30px auto 0 -30%;
  }
}
#section-3 .s-part-3 {
  margin-top: -90px;
  width: 100%;
  overflow: hidden;
}
#section-3 .s-part-3 .hours {
  width: 1307px;
  height: 765px;
  margin: 81px auto 0 auto;
  overflow: hidden;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-3 .hours {
    width: 893px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-3 .hours {
    width: 717px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-3 .hours {
    height: 522px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-3 .hours {
    height: 420px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-3 .hours {
    margin: 55px auto 0 auto;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-3 .hours {
    margin: 44px auto 0 auto;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-3 .s-part-3 .hours {
    margin: 80px auto 0 auto;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-3 .hours {
    margin: 80px auto 0 auto;
  }
}
#section-3 .s-part-3 .hours img {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-3 .s-part-3 {
    margin-top: -130px;
  }
  #section-3 .s-part-3 .hours {
    width: 93.75vw;
    height: 54.817708333333336vw;
  }
}
@media (max-width: 767px) {
  #section-3 .s-part-3 {
    margin-top: -20px;
  }
  #section-3 .s-part-3 .hours {
    width: 100vw;
    height: 100vw;
  }
}
@media (max-width: 767px) {
  #section-3 .s-part-3 .g--desc {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  #section-3 .s-part-3 .g--desc .g--desc-wrapper:not(:first-child) {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  #section-3 .s-part-3 .g--desc .g--desc-title {
    font-family: OPPOSans-Bold;
  }
}
#section-4 {
  background-color: #000;
  padding-top: 140px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 {
    padding-top: 96px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 {
    padding-top: 77px;
  }
}
@media (max-width: 767px) {
  #section-4 {
    padding-top: 80px;
    padding-bottom: 97px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .g--768-none {
    display: none;
  }
}
@media not screen and (min-width: 768px) and (max-width: 1023px) {
  #section-4 .g--768-show {
    display: none;
  }
}
#section-4 .part-1 {
  position: relative;
  width: 100%;
  padding-top: 100px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-1 {
    padding-top: 68px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-1 {
    padding-top: 55px;
  }
}
@media (max-width: 767px) {
  #section-4 .part-1 {
    padding-top: 0;
  }
}
#section-4 .part-1 .g--title-group {
  position: relative;
  z-index: 2;
}
#section-4 .part-1 .g--title-group .g--text {
  width: 437px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-1 .g--title-group .g--text {
    width: 376px;
  }
}
@media (max-width: 767px) {
  #section-4 .part-1 .g--title-group .g--text {
    width: 100%;
  }
}
#section-4 .part-1 .water {
  position: absolute;
  z-index: 1;
  top: 90px;
  left: calc(55% - 600px);
  width: 1200px;
  height: 800px;
  overflow: hidden;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-1 .water {
    left: calc(55% - 410px);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-1 .water {
    left: calc(55% - 329px);
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-1 .water {
    width: 819px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-1 .water {
    width: 659px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-1 .water {
    height: 546px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-1 .water {
    height: 439px;
  }
}
#section-4 .part-1 .water img {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-1 .water {
    top: 200px;
  }
}
@media (max-width: 767px) {
  #section-4 .part-1 .water {
    position: relative;
    top: 30px;
    left: 0;
    width: 100%;
    height: 80vw;
  }
  #section-4 .part-1 .water img {
    width: 120vw;
    height: 100%;
    margin-left: -10vw;
  }
}
#section-4 .part-2 {
  margin-top: 700px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 {
    margin-top: 478px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 {
    margin-top: 384px;
  }
}
@media (max-width: 767px) {
  #section-4 .part-2 {
    margin-top: 87px;
  }
}
#section-4 .part-2 .flex-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 .flex-wrapper {
    margin-top: 55px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper {
    margin-top: 44px;
  }
}
@media (max-width: 767px) {
  #section-4 .part-2 .flex-wrapper {
    display: block;
    margin: 48px auto 0;
    width: 88.89vw;
  }
  #section-4 .part-2 .flex-wrapper .right-block {
    margin-top: 18px;
  }
}
#section-4 .part-2 .flex-wrapper .g--text {
  margin-top: 20px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 .flex-wrapper .g--text {
    margin-top: 14px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper .g--text {
    margin-top: 11px;
  }
}
@media (max-width: 767px) {
  #section-4 .part-2 .flex-wrapper .g--text {
    margin-top: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper .g--text {
    font-size: 12px;
    width: 330px;
  }
}
#section-4 .part-2 .flex-wrapper .block {
  position: relative;
  width: 640px;
  height: 570px;
  border-radius: 30px;
  overflow: hidden;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 .flex-wrapper .block {
    width: 437px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper .block {
    width: 351px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 .flex-wrapper .block {
    height: 389px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper .block {
    height: 313px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 .flex-wrapper .block {
    border-radius: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper .block {
    border-radius: 16px;
  }
}
@media (max-width: 767px) {
  #section-4 .part-2 .flex-wrapper .block {
    width: 100%;
    height: 79.2vw;
    border-radius: 4.2vw;
  }
}
#section-4 .part-2 .flex-wrapper .block .loud {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
#section-4 .part-2 .flex-wrapper .block .voice {
  position: absolute;
  z-index: 2;
}
#section-4 .part-2 .flex-wrapper .block .voice.left {
  top: 318px;
  left: 103px;
  width: 114px;
  height: 227px;
  opacity: 0;
  transition: opacity 1s linear;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 .flex-wrapper .block .voice.left {
    top: 217px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper .block .voice.left {
    top: 175px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 .flex-wrapper .block .voice.left {
    left: 70px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper .block .voice.left {
    left: 57px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 .flex-wrapper .block .voice.left {
    width: 78px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper .block .voice.left {
    width: 63px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 .flex-wrapper .block .voice.left {
    height: 155px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper .block .voice.left {
    height: 125px;
  }
}
#section-4 .part-2 .flex-wrapper .block .voice.left.bling {
  opacity: 1;
  animation: bling 2s linear infinite;
}
@media (max-width: 767px) {
  #section-4 .part-2 .flex-wrapper .block .voice.left {
    width: 15.972222222222221vw;
    height: 31.805555555555554vw;
    top: 38.888888888888886vw;
    left: 12.777777777777777vw;
  }
}
#section-4 .part-2 .flex-wrapper .block .voice.right {
  top: 183px;
  left: 321px;
  width: 34px;
  height: 248px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.2s linear;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right {
    top: 125px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right {
    top: 100px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right {
    left: 219px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right {
    left: 176px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right {
    width: 23px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right {
    width: 19px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right {
    height: 169px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right {
    height: 136px;
  }
}
#section-4 .part-2 .flex-wrapper .block .voice.right .big {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 34px;
  opacity: 0.37;
  background-image: linear-gradient(180deg, rgba(0,253,253,0) 0%, #00fdfd 100%);
  border-radius: 32px;
  transition: height 0.5s linear;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right .big {
    height: 23px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right .big {
    height: 19px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right .big {
    border-radius: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right .big {
    border-radius: 17px;
  }
}
#section-4 .part-2 .flex-wrapper .block .voice.right .small {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 10px;
  width: 14px;
  height: 14px;
  opacity: 0.37;
  background-image: linear-gradient(180deg, rgba(0,253,253,0) 0%, #00fdfd 100%);
  border-radius: 13px;
  transition: height 0.45s linear 0.05s;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right .small {
    top: 12px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right .small {
    top: 9px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right .small {
    left: 7px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right .small {
    left: 5px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right .small {
    width: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right .small {
    width: 8px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right .small {
    height: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right .small {
    height: 8px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right .small {
    border-radius: 9px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right .small {
    border-radius: 7px;
  }
}
@media (max-width: 767px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right {
    top: 23.47222222222222vw;
    left: 43.61111111111111vw;
    width: 4.722222222222222vw;
  }
  #section-4 .part-2 .flex-wrapper .block .voice.right .big {
    border-radius: 4.416666666666667vw;
    height: 4.722222222222222vw;
  }
  #section-4 .part-2 .flex-wrapper .block .voice.right .small {
    width: 1.944444444444444vw;
    height: 1.944444444444444vw;
    top: 2.361111111111111vw;
    left: 1.388888888888889vw;
    border-radius: 1.75vw;
  }
}
#section-4 .part-2 .flex-wrapper .block .voice.right.show {
  opacity: 1;
}
#section-4 .part-2 .flex-wrapper .block .voice.right.show .big {
  height: 248px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right.show .big {
    height: 169px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right.show .big {
    height: 136px;
  }
}
#section-4 .part-2 .flex-wrapper .block .voice.right.show .small {
  height: 213px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right.show .small {
    height: 145px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right.show .small {
    height: 117px;
  }
}
@media (max-width: 767px) {
  #section-4 .part-2 .flex-wrapper .block .voice.right.show .big {
    height: 34.72222222222222vw;
  }
  #section-4 .part-2 .flex-wrapper .block .voice.right.show .small {
    height: 29.86111111111111vw;
  }
}
#section-4 .part-3 {
  position: relative;
  margin-top: 128px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-3 {
    margin-top: 87px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-3 {
    margin-top: 70px;
  }
}
#section-4 .part-3 .g--title-group {
  margin-top: 20vh;
  margin-top: calc(var(--vh, 1vh) * 20);
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-3 .g--title-group {
    margin-top: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-3 .g--title-group {
    margin-top: 85px;
  }
}
@media (max-width: 767px) {
  #section-4 .part-3 .g--title-group {
    margin-top: 0;
  }
}
#section-4 .part-3 .g--title-group .g--title {
  white-space: normal;
}
#section-4 .part-3 .g--title-group .g--text {
  width: 390px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-3 .g--title-group .g--text {
    width: 432px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-3 .g--title-group .g--text {
    width: 351px;
  }
}
@media (max-width: 767px) {
  #section-4 .part-3 .g--title-group .g--text {
    width: 100%;
  }
}
#section-4 .part-3 .open {
  position: relative;
  z-index: 1;
  width: 83.33vh;
  width: calc(var(--vh, 1vh) * 83.33);
  height: 83.33vh;
  height: calc(var(--vh, 1vh) * 83.33);
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-3 .open {
    width: 464px;
    height: 464px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-3 .open {
    width: 369px;
    height: 369px;
  }
}
@media (max-width: 767px) {
  #section-4 .part-3 {
    display: block;
    padding-bottom: 0;
  }
  #section-4 .part-3 .open {
    width: 100vw;
    height: 100vw;
    margin-top: 27px;
    margin-left: -5.555vw;
  }
  #section-4 .part-3 .open img {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-3 {
    width: 720px;
    height: 576px;
  }
  #section-4 .part-3 .g--title-group {
    position: relative;
    z-index: 2;
    width: 344px;
    margin-top: 0;
  }
  #section-4 .part-3 .open {
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0;
    width: 504px;
    height: 504px;
  }
}
#section-4 .part-4 {
  position: relative;
  height: 658px;
  margin-top: 128px;
  border-radius: 30px;
  overflow: hidden;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-4 {
    height: 449px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-4 {
    height: 361px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-4 {
    margin-top: 87px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-4 {
    margin-top: 70px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-4 {
    border-radius: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-4 {
    border-radius: 16px;
  }
}
@media (max-width: 767px) {
  #section-4 .part-4 {
    width: 88.89vw;
    height: 157vw;
    border-radius: 4.4vw;
    margin: 80px auto 0;
  }
}
#section-4 .part-4 .g--title-group {
  position: absolute;
  z-index: 2;
  top: 118px;
  left: 71px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-4 .g--title-group {
    top: 81px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-4 .g--title-group {
    top: 65px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-4 .g--title-group {
    left: 48px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-4 .g--title-group {
    left: 39px;
  }
}
@media (max-width: 767px) {
  #section-4 .part-4 .g--title-group {
    top: 57px;
    left: 26px;
    width: calc(100% - 52px);
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-4 .g--title-group .g--title {
    font-size: 28px;
    line-height: 44px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-4 .g--title-group .g--title {
    font-size: 24px;
    line-height: 36px;
  }
}
#section-4 .part-4 .g--title-group .g--text {
  width: 390px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-4 .g--title-group .g--text {
    width: 382px;
  }
}
@media (max-width: 767px) {
  #section-4 .part-4 .g--title-group .g--text {
    width: 100%;
  }
}
@media (max-width: 767px) and (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-4 .g--title-group {
    top: 39px;
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-4 .g--title-group {
    top: 31px;
  }
}
@media (max-width: 767px) and (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-4 .g--title-group {
    left: 18px;
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-4 .g--title-group {
    left: 14px;
  }
}
@media (max-width: 767px) and (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-4 .g--title-group {
    width: calc(100% - 36px);
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-4 .g--title-group {
    width: calc(100% - 29px);
  }
}
#section-4 .part-4 .img-container {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#section-4 .part-4 .img-container img {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) and (min-width: 1024px) and (max-width: 1439px) {
  #section-4 .part-4 {
    margin: 55px auto 0;
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1023px) {
  #section-4 .part-4 {
    margin: 44px auto 0;
  }
}
#section-4 .learn-more {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
#section-4 .learn-more .text {
  font-size: 15px;
  line-height: 20px;
  border-bottom: 1px solid #fff;
}
@keyframes bling {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#section-caption {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: -0.05px;
  color: #fff;
  padding: 128px 0;
  background-color: #000;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  #section-caption {
    padding: 87px 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-caption {
    padding: 70px 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #section-caption {
    padding-top: 202px;
  }
}
@media (max-width: 767px) {
  #section-caption {
    padding: 16px 0;
  }
}
@media (max-width: 767px) and (min-width: 1024px) and (max-width: 1439px) {
  #section-caption {
    padding: 11px 0;
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1023px) {
  #section-caption {
    padding: 9px 0;
  }
}
#main-wrapper img[data-srcset] {
  opacity: 0;
}
#main-wrapper img[data-srcset].loaded {
  opacity: 1;
}
#main-wrapper .g--popup-user {
  display: none;
}

