.menu-button-active {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .header-button-active {
    background-color: #efefef !important;
  }
}


.rc-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.rc-dialog-wrap {
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.rc-dialog-title {
  margin: 0;
  font-size: 14px;
  line-height: 21px;
  font-weight: bold;
}
.rc-dialog-content {
  position: relative;
  background-color: #ffffff;
  border: none;
  border-radius: 6px 6px;
  background-clip: padding-box;
}
.rc-dialog-close {
  cursor: pointer;
  border: 0;
  background: transparent;
  font-size: 21px;
  position: absolute;
  right: 20px;
  top: 12px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
  text-decoration: none;
}
.rc-dialog-close-x:after {
  content: '\D7';
}
.rc-dialog-close:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  text-decoration: none;
}
.rc-dialog-header {
  padding: 13px 20px 14px 20px;
  border-radius: 5px 5px 0 0;
  background: #fff;
  color: #666;
  border-bottom: 1px solid #e9e9e9;
}
.rc-dialog-body {
  padding: 20px;
}
.rc-dialog-footer {
  border-top: 1px solid #e9e9e9;
  padding: 10px 20px;
  text-align: right;
  border-radius: 0 0 5px 5px;
}
.rc-dialog-zoom-enter,
.rc-dialog-zoom-appear {
  opacity: 0;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  animation-play-state: paused;
}
.rc-dialog-zoom-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  animation-play-state: paused;
}
.rc-dialog-zoom-enter.rc-dialog-zoom-enter-active,
.rc-dialog-zoom-appear.rc-dialog-zoom-appear-active {
  animation-name: rcDialogZoomIn;
  animation-play-state: running;
}
.rc-dialog-zoom-leave.rc-dialog-zoom-leave-active {
  animation-name: rcDialogZoomOut;
  animation-play-state: running;
}
@keyframes rcDialogZoomIn {
  0% {
    opacity: 0;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@keyframes rcDialogZoomOut {
  0% {
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform: scale(0, 0);
  }
}
@media (min-width: 768px) {
  .rc-dialog {
    width: 600px;
    margin: 30px auto;
  }
}
.rc-dialog-mask {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #373737;
  background-color: rgba(55, 55, 55, 0.6);
  height: 100%;
  filter: alpha(opacity=50);
  z-index: 1050;
}
.rc-dialog-mask-hidden {
  display: none;
}
.rc-dialog-fade-enter,
.rc-dialog-fade-appear {
  opacity: 0;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
  animation-play-state: paused;
}
.rc-dialog-fade-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
  animation-play-state: paused;
}
.rc-dialog-fade-enter.rc-dialog-fade-enter-active,
.rc-dialog-fade-appear.rc-dialog-fade-appear-active {
  animation-name: rcDialogFadeIn;
  animation-play-state: running;
}
.rc-dialog-fade-leave.rc-dialog-fade-leave-active {
  animation-name: rcDialogFadeOut;
  animation-play-state: running;
}
@keyframes rcDialogFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rcDialogFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.cobo-notification {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.65);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  position: fixed;
  z-index: 1010;
  width: 300px;
  max-width: calc(100vw - 32px);
  margin-right: 24px;
  z-index: 10000000;
}
.cobo-notification-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 12px;
  border-radius: 4px;
  box-shadow: 1px 0 16px rgba(0, 0, 0, 0.15);
  background: #fff;
  line-height: 1.5;
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
}
.cobo-notification-notice-message {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 24px;
  display: inline-block;
}
.cobo-notification-notice-message-single-line-auto-margin {
  width: calc(384px - 24px * 2 - 24px - 48px - 100%);
  background-color: transparent;
  pointer-events: none;
  display: block;
  max-width: 4px;
}
.cobo-notification-notice-message-single-line-auto-margin:before {
  content: '';
  display: block;
  padding-bottom: 100%;
}
.cobo-notification-notice-description {
  font-size: 14px;
  margin-top: 8px;
}
.cobo-notification-notice-closable .cobo-notification-notice-message {
  padding-right: 24px;
}
.cobo-notification-notice-with-icon .cobo-notification-notice-message {
  font-size: 16px;
  margin-left: 48px;
  margin-bottom: 4px;
}
.cobo-notification-notice-with-icon .cobo-notification-notice-description {
  margin-left: 48px;
  font-size: 14px;
}
.cobo-notification-notice-icon {
  position: absolute;
  font-size: 24px;
  line-height: 24px;
  margin-left: 4px;
}
.cobo-notification-notice-icon-success {
  color: #52c41a;
}
.cobo-notification-notice-icon-info {
  color: #1890ff;
}
.cobo-notification-notice-icon-warning {
  color: #faad14;
}
.cobo-notification-notice-icon-error {
  color: #f5222d;
}
.cobo-notification-notice-close-x:after {
  font-size: 26px;
  line-height: 1;
  content: '\D7';
  cursor: pointer;
}
.cobo-notification-notice-close {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.45);
  outline: none;
}
a.cobo-notification-notice-close:focus {
  text-decoration: none;
}
.cobo-notification-notice-close:hover {
  color: #404040;
}
.cobo-notification-notice-btn {
  float: right;
  margin-top: 16px;
}
.cobo-notification .notification-fade-effect {
  animation-duration: 0.24s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cobo-notification-fade-enter,
.cobo-notification-fade-appear {
  opacity: 0;
  animation-duration: 0.24s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  animation-play-state: paused;
}
.cobo-notification-fade-leave {
  animation-duration: 0.24s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  animation-duration: 0.2s;
  animation-play-state: paused;
}
.cobo-notification-fade-enter.cobo-notification-fade-enter-active,
.cobo-notification-fade-appear.cobo-notification-fade-appear-active {
  animation-name: NotificationFadeIn;
  animation-play-state: running;
}
.cobo-notification-fade-leave.cobo-notification-fade-leave-active {
  animation-name: NotificationFadeOut;
  animation-play-state: running;
}
@-webkit-keyframes NotificationFadeIn {
  0% {
    opacity: 0;
    left: 384px;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@keyframes NotificationFadeIn {
  0% {
    opacity: 0;
    left: 384px;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@-webkit-keyframes NotificationLeftFadeIn {
  0% {
    opacity: 0;
    right: 384px;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
@keyframes NotificationLeftFadeIn {
  0% {
    opacity: 0;
    right: 384px;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
@-webkit-keyframes NotificationFadeOut {
  0% {
    opacity: 1;
    margin-bottom: 16px;
    padding-top: 16px 24px;
    padding-bottom: 16px 24px;
    max-height: 150px;
  }
  100% {
    opacity: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    max-height: 0;
  }
}
@keyframes NotificationFadeOut {
  0% {
    opacity: 1;
    margin-bottom: 16px;
    padding-top: 16px 24px;
    padding-bottom: 16px 24px;
    max-height: 150px;
  }
  100% {
    opacity: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    max-height: 0;
  }
}

@media screen and (max-width: 768px) {
  .cobo-notification {
    font-size: 12px;
    width: 60%;
    margin-right: 16px;
  }
  .cobo-notification-notice {
    padding: 16px;
  }
  .cobo-notification-notice-message {
    font-size: 14px;
    line-height: 20px;
  }
  .cobo-notification-notice-closable .cobo-notification-notice-message {
    padding-right: 20px;
  }
  .cobo-notification-notice-description {
    font-size: 12px;
  }
  .cobo-notification-notice-close {
    position: absolute;
    right: 16px;
    top: 15px;
  }
}

.rc-dialog-mask {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
  filter: alpha(opacity=60);
}
.rc-dialog-wrap.center {
  text-align: center;
}
.rc-dialog-close {
  display: none;
}
.cb-dialog-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 18px;
  cursor: pointer;
  z-index: 10;
}
.cb-dialog-close img {
  width: 100%;
  display: block;
}
.rc-dialog {
  margin: 0 auto;
  box-shadow: 0 44px 51px 0 rgba(0, 0, 0, 0.2);
}
.rc-dialog-content {
  border-radius: 4px;
  /*overflow: hidden;*/
}
.rc-dialog-body {
  padding: 0;
}

.dialog-button-active {
  background-color: #ddd !important;
}

@media (max-width: 768px) {
  .cb-dialog-close {
    right: 0;
    top: 0;
    width: 48px;
    padding: 16px;
  }
  .rc-dialog {
    margin-top: 30%;
    padding: 15px;
    width: 100% !important;
  }
  .rc-dialog-body {
    width: 100%;
  }
  .rc-dialog-content{
    width: 100%;
  }
}

@font-face {
  font-family: 'Din';
  src: url(/_next/static/images/din_regular-0c48d343f4270a642f2108c18a0a3dfa.ttf);
}

@font-face {
  font-family: 'DinBold';
  src: url(/_next/static/images/din_bold-469fed7f450ea0963cd1f15e10ad54c3.ttf);
}

@font-face {
  font-family: 'DinLight';
  src: url(/_next/static/images/din_light-334bf23d5a8feace4b70ef02d0abd43e.ttf);
}

@font-face {
  font-family: 'DinNext';
  src: url(/_next/static/images/DINNextLTPro-BoldCondensed-acd5a41d16e554a6707bd1950c1e2373.ttf);
}

@font-face {
  font-family: 'MontserratLight';
  src: url(/_next/static/images/Montserrat-Light-100b38fa184634fc89bd07a84453992c.ttf);
}

@font-face {
  font-family: 'MontserratMedium';
  src: url(/_next/static/images/Montserrat-Medium-a98626e1aef6ceba5dfc1ee7112e235a.ttf);
}

@font-face {
  font-family: 'Montserrat';
  src: url(/_next/static/images/Montserrat-Regular-9c46095118380d38f12e67c916b427f9.ttf);
}

@font-face {
  font-family: 'MontserratBold';
  src: url(/_next/static/images/Montserrat-Bold-88932dadc42e1bba93b21a76de60ef7a.ttf);
}

@font-face {
  font-family: 'MontserratExtraBold';
  src: url(/_next/static/images/Montserrat-ExtraBold-9bc77c3bca968c7490de95d1532d0e87.ttf);
}


@font-face {
  font-family: 'Montserrat-Light';
  src: url(/_next/static/images/Montserrat-Light-100b38fa184634fc89bd07a84453992c.ttf);
}

@font-face {
  font-family: 'Montserrat-Medium';
  src: url(/_next/static/images/Montserrat-Medium-a98626e1aef6ceba5dfc1ee7112e235a.ttf);
}

@font-face {
  font-family: 'Montserrat-Bold';
  src: url(/_next/static/images/Montserrat-Bold-88932dadc42e1bba93b21a76de60ef7a.ttf);
}

@font-face {
  font-family: 'Montserrat-ExtraBold';
  src: url(/_next/static/images/Montserrat-ExtraBold-9bc77c3bca968c7490de95d1532d0e87.ttf);
}


@font-face {
  font-family: 'Montserrat-Thin';
  src: url(/_next/static/images/Montserrat-Thin-0052573bbf05658a18ba557303123533.ttf);
}

@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url(/_next/static/images/Montserrat-SemiBold-c88cecbffad6d8e731fd95de49561ebd.ttf);
}

* {
  box-sizing: border-box;
  position: relative;
}

body {
  margin: 0;
  padding: 0;
  color: #000;
  line-height: normal;
}

h1,
h2,
h3,
ul,
ol,
blockquote,
p {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

ol {
  list-style: decimal;
  padding-left: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

i,
em {
  font-style: normal;
}

body,
.text-regular {
  font-family: 'Din', -apple-system, 'Microsoft Yahei', 微软雅黑,
    'MicrosoftJhengHei', BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
    Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body .text-bold {
  font-family: 'DinBold', -apple-system, 'Microsoft Yahei', 微软雅黑,
    'MicrosoftJhengHei', BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
    Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body .text-light {
  font-family: 'DinLight', -apple-system, 'Microsoft Yahei', 微软雅黑,
    'MicrosoftJhengHei', BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
    Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.rotate-interval {
  animation: rotate 5s infinite linear;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hue-text {
  animation: hue 20s infinite linear;
  -webkit-background-clip: text;
  background-image: linear-gradient(92deg, #21d4fd, #b721ff);
  color: #b721ff;
  -webkit-text-fill-color: transparent;
}

@keyframes hue {
  0% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(50deg);
  }
  100% {
    filter: hue-rotate(0deg);
  }
}

.section p {
  padding: 10px 0;
  font-size: 16px;
}

.section-header {
  font-size: 40px;
  margin: 20px 0;
}

@media screen and (min-width: 1024px) {
  .section.is-medium {
    padding: 120px;
  }
}

.section-column {
  padding: 40px;
}

.section .content-center {
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.speed-section-text {
  padding: 106px 150px 20px;
}

.speed-section-text p {
  color: #fff;
}

.is-web-center {
  text-align: center;
}

.drag {
  cursor: grabbing;
}

.cobo-table-dropdown {
  box-sizing: border-box;
  position: absolute;
  left: -9999px;
  top: -9999px;
  z-index: 1050;
  display: block;
}
.cobo-table-dropdown-wrap {
  position: relative;
}
.cobo-table-dropdown-hidden {
  display: none;
}

.touch-active {
  opacity: 0.7;
}

.slick-prev::before {
  color: transparent !important;
  font-size: 40px !important;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAArlBMVEUAAABTEfJUEfJTEfJTEfFUEfFVEvNVEfNTEfJVEvJXE/NXG/lmIv9TEvFUEvJUEfJUEvFTEvFTEvFTEfJTEvJUEvJTEvJUEvJVE/NTE/NUFPNVEfRYEvZVE/aAQP9TEfH////18f76+P739P57SfSlg/eHWfV3RPSCU/WrivigfPecdvd/TvRzPfP7+v7n3v3h1fzSwfuwkviZcvZhJfJZGvHv6v3j2PzErfpkKfJXkF05AAAAH3RSTlMA7cX64Ek2VaRjKRMH9efSy7u5sqyamYt7a0AtHRsE+ON66gAAAvNJREFUaN681elymzAUhuFPEgYMeN+X+IvbNN3Spkn3+7+x+gczmlDb4QhJzw28A3POEcSqXbbOp3qUKGNUMtLTfJ3tKoRVbOYJz0rmmwJhlP18yKuGeb+EZ1U2M2zBzLIK/qRLxdbUMoUf2wmFJlt019N0oHvoJh3T0TiFu3LBDhbOI95X7ET14WKv2ZneQ6yn6IGSDtlhRU9WBwjcaHqjb9BakdCjpEBLqaJXKm05VgN6Nmg1YpmhdyZr8b2GAZhXvzkdMIhBiqsKxUBUcXV/EwaTXNnng2ZA+oBLVgxqdXGgGdiF0d4rBqb2OEczOI0z+oygj/+UihGoEk0LRrFAQ8pImqdzzEjGkVfY6glWKdxKbRnRFtaEEU28jPSXp+Pj80+K2MFe0tX919uT3z8osUStUhSzXXlZVXU4o5Tt1r6J/nZWh2cUs93aMwVm9fNg6OT+za31SAFTur2HtmsdKVC/jjldfKi7tSdK5MDJkEK2a91RYoiTgg0u3e+UKQBsKPfQscsNgDnFHt6+7H6m1BxAwoYIXSZARak7965VYccGafcTXewEh9pnlxnWbIjS5Vp4t94fX3bf0VGOKRuidDmFZkOULjVGbIjS5UhwP/42uh/ZQQLFtv547FLBsK1fHrs0/7o3YxUEYyAGgwiCo4iLg9ipg66+/6O5CJ3T5O5yPkHg5297l3wpEy771MjP9VH+XMhxeiuPE3CBSJUPwJUpVb6UPRLQs7iU+WcRGASkyidg9JEq33eGvadi2APGW+WYeQQGeqnyFVxhljK7wuwubS9S+QyvqUuZW1PxxXwpM4s5Y0VMxoqgzJdJmC+c3TQHYTdRBtschMHGWYrjp4tairyJOnDdx63eNk42yh2igdQwxCP+SQy8XCK+tFDTJ8ZNCq6dovoUOMELx4gHUPyQm2DIyBGrigTJXNG5KFjQGY+MAELdEVg19NsBcxaC3X1Qdgm8362uQBY0elZSdks4vWtHaNHqP6pl+jJdWX3wC15BVzrNU/W4AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-size: 40px 40px;
}

.slick-next::before {
  color: transparent !important;
  font-size: 40px !important;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAAsVBMVEUAAABTEfJTEfJTEfFUEvJVEvNVEfNTEvFTEfJUEvJVEvJUEfFXE/NmIv9TEvFTEfFUEvJUEfJUEvFUEfJTEfJTEvJUEvJVE/NTE/NVEfFUFPNVEfRYEvZVE/ZZGvJVHP+AQP9TEfH////08P58SfT59/738/6GWPWBUfR3Q/T7+v6rivimhPehfvedePeZc/bi1/xzPfPn3v3SwfuxkvhhJfJZGvHu6P3ErfpkKfLf1PyuvLwxAAAAIXRSTlMA7PrgxjZVuqSZY0kpB/Xv59LLwrKsi3trS0AtHRsUEgRb2GMXAAAC5ElEQVRo3rzVZ3LbMBiE4UVhFaneZUtayunddpzk/heLxuMfoiHJBEjgucA7mOHHhbVyEy/SRI+UkFKokU7SRbwp4VexnCmepWbLAn5s83TIq4ZpvkXHyngq2YCcxiW6E2UDNjbIInRjndBSskZ7PU0Huod2ojEdjSO422VsIdvBUS7Yisjh4mbC1iY3sLYS7IBYwc5+zo7M97Bwq9kZfYvGCsUOqQINRYKdEhEa6fXZsX4PDcSSnZNxg/dKeiDffHPUpxf9CFcVgp6I4ur9KnqjrtzzXtMjvcclc3o1xwUrera6sIOCnonzKzmhdxOckTOAHIadYABiZ4QzBpEZv0oGEqFuzEDGqOkxmPpOaQajcWLNgNYn4YQBJc6f9NPj/eHhF51Fjjf8+2d19PkDLZm3XA5ouN5tVx6UL+GYFp6O3bbl+CU8pYXHqmpdnuLZVtLCfdW+LLcOe3ioHMvmOqa08VCdeudWTp/DQ9q4q+rlj3QwxFFBOz+6KBcAljT4Ly8BzGjwX54BULT2vV5+f0dbCihpCFEusaEhRHmDmE6+tSzHWNAQorxASoNb+RNtpEjo6mu9fLAqJ9A0hChrjGgIUR5BsYUvr8r/2JSCoMG9/JdNCUianMt/2JT8373ZpSAMxEAYRPzDBwVFQRAGEbyB4P0P5gHytEl2MmkvMLS03WTmmzLhsked+nJ9B16u1M9pYK052x8IRRdr+8uk6GKbdki8Bg8JeyxSdHGzgwBFF5uk0WdUF4+yYa9qvPUN9GFdXO0KQ9HF3S5tFF0c42uqS/cUX8w/8Fw7lxUR18XBZb7EdVdPj90U18UlZrC9wwYb31J0mqi/2P1iX28bk41yhWiAGoZoxD/EwEsl4qOFmjoxLim4VorqKXCCFo4xH0DRQ24mQ0aKWNVMkEwVnZsFCyrjkTOAUHUENhv67YA5J4LdfVD2FHi/W10hWNDoWUnxlnB6145Gi1bLqJYRynSs+uAf1AyvlFJSeEIAAAAASUVORK5CYII=);
  background-repeat: no-repeat;
  background-size: 40px 40px;
}

.slick-dots li button:before {
  color: #5311f1 !important;
  font-size: 12px !important;
}

@media (max-width: 768px) {
  .section-header {
    font-size: 26px;
  }
  .section-header > span {
    padding-top: 2px;
  }
  .section-column {
    padding: 40px;
  }
  .speed-section {
    padding: 120px 0 220px;
  }
  .section .content-center {
    padding: 0 40px;
  }
  .is-web-center {
    text-align: left;
  }
  .slick-prev::before {
    font-size: 32px !important;
    background-size: 32px 32px;
  }
  .slick-next::before {
    font-size: 32px !important;
    background-size: 32px 32px;
  }
}

