@charset "UTF-8";

/*---Public CSS---*/
html,
body,
div,
applet,
object,
iframe,
p,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
input,
button,
select,
textarea,
img,
table,
th,
td,
article,
aside,
footer,
header,
hgroup,
menu,
nav,
section,
audio,
video,
a,
i {
  font-weight: normal;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: 0 none;
}

article,
aside,
footer,
header,
menu,
nav,
section,
img {
  display: block
}

html {
  height: auto !important;
}

:root {
  --theme-color: #FF6633;
  --hover-color: #1818FF;
  --form-btn-theme-color: #00CEBF;
  --border-width: 0.2604vw;
  --body-border-width: 1.0417vw;
  --frame-width: 93.75vw;
}

body {
  font-family: "Oswald", sans-serif !important;
  font-size: 14px !important;
  font-weight: 400;
  line-height: 1.5 !important;
  background-color: #CCDEFF;
  width: 100%;
  height: 100%;
  color: #000000;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.overflow-hide {
  overflow: hidden;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
  border-bottom: 1px solid rgba(0, 0, 0, 0.54)
}

button,
input,
select,
textarea,
img,
.button {
  vertical-align: middle;
  outline: 0
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer
}

input[type="text"],
textarea {
  -webkit-appearance: none;
}

select {
  padding-right: 14px;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #705a39;
}

select::-ms-expand {
  display: none;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
  height: 0
}

li {
  list-style: none
}

a {
  color: #333;
  text-decoration: none;
  cursor: pointer;
  outline: 0
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

b {
  font-weight: 500;
}

em {
  font-style: normal
}

.bold {
  font-weight: 500
}

.show {
  display: block !important;
}

.hide {
  display: none !important;
}

.table {
  display: table;
}

.title {
  font-size: 28px;
}

.s-title {
  font-weight: 500;
}

.v-middle {
  display: table-cell;
  vertical-align: middle;
}

.fixed {
  position: fixed;
}

.no-event {
  pointer-events: none;
}

.error-tips {
  color: #D50000;
  text-align: left;
  font-size: 13px;
  line-height: 20px;
}

label.error-tips {
  margin: 0;
}

textarea~label.error-tips {
  top: 96px;
}

.btn {
  min-width: 17.1875vw;
  height: 4.1666vw;
  line-height: 1;
  font-size: 2.2916vw;
  text-align: center;
  border-radius: .8333vw;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: .25vw;
  color: #000;
}

.btn-orange {
  background: #FF6633;
}

.btn-orange:hover {
  background: #00CEBF;
  color: #fff;
}

.btn-white {
  background: #fff;
  border: 3px solid #FF6633;
}

.btn-white:hover {
  background: #FF6633;
  color: #fff;
}

.btn-border {
  height: 48px;
  line-height: 48px;
  border-radius: 24px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #000000;
  color: #333;
}

.btn-border:hover {
  background-color: #0000D8;
  color: #fff;
}

.wrapper {
  /* max-width: 1440px; */
  margin: 0 auto;
  box-sizing: content-box;
}

.pc-meida {
  display: block;
}

.mobile-meida {
  display: none;
}

@media (max-width: 828px),
(orientation:portrait) {
  .pc-meida {
    display: none;
  }

  .mobile-meida {
    display: block;
  }

  .btn {
    min-width: 29.95vw;
    height: 10.1449vw;
    line-height: 1;
    font-size: 5.314vw;
    text-align: center;
    border-radius: 1.9323vw;
  }
}

/*---transition---*/

.transition {
  transition: all .36s ease;
}

.transition1 {
  transition: all 0.2s ease-in;
}

.transition2 {
  transition: all .6s ease;
}

.transition3 {
  transition: all .2s ease;
}

.transition4 {
  transition: all .8s ease;
}

.transition5 {
  transition: all 1s ease-in;
}

.transition6 {
  transition: all 1s
}

.transition7 {
  transition: all 0.2s ease-out;
}

.transition-sp1 {
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.transition-sp2 {
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 2) 0s
}

.transition-sp3 {
  transition: all 0.3s cubic-bezier(0.115, 0.61, 0.255, 1) 0s
}

.transition-sp11 {
  transition: box-shadow 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}


/* 超出不换行 */
.multi-line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.single-line {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*---top---*/
.header-top {
  width: 100%;
  color: #fff;
  height: 20vh;
  background-color: #000;
  z-index: 1;
}

.header-top .top-wrapper {
  height: 100%;
  display: -webkit-flex;
  display: flex;
}

.header-top .warning {
  font-size: 2.5vw;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  margin: auto;
  font-family: Arial, sans-serif;
}

.public-header .showlanguagebox {
  position: relative;
  height: 40px;
  padding-left: 48px;
}

.public-header .language_a {
  height: 100%;
  display: -webkit-flex;
  display: flex;
}

.public-header .showlanguagebox .icon-language {
  color: #fff;
  font-size: 20px;
  vertical-align: middle;
  margin: auto;
  font-weight: 600;
}

.header-sticky {
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-box {
  display: flex;
  -webkit-display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  transition: all 0.5s;
}

.public-header .logo {
  height: 6.25vw;
  background: url(../../images/web/logo.svg?v=1) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  width: 20%;
  left: 50%;
  transform: translate(-50%, 2%);
  background-color: #CCDEFF;
  z-index: 6;
}

.public-header.fixed {
  position: fixed;
  top: 0;
}

.public-header .header-content {
  position: relative;
  width: var(--frame-width);
  margin: 0 auto;
  padding-top: 1.9375vw;
  height: 9vw;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  transition: transform 0.2s;
  background-color: #CCDEFF;
}

.public-header .header-content:after,
.public-header .header-content::before {
  content: '';
  position: absolute;
  display: block;
  bottom: 0;
  height: 50%;
  border-right: var(--body-border-width) solid var(--theme-color);
  z-index: 2;
}

.public-header .header-content:after {
  left: 0;
}

.public-header .header-content::before {
  right: 0;
}

.public-header .header-content.slide-up {
  transform: translateY(-100%);
  position: relative;
  z-index: 9;

}

.top-nav ul {
  height: 100%;
  width: 40%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-evenly;
}

.top-nav ul li {
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
}

.top-nav ul li a {
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: 1.6667vw;
}

.top-nav ul li a:hover {
  color: #00CEBF
}

.nav-content {
  height: 100%;
  display: flex;
  justify-content: space-between;
}

.top-nav {
  background: var(--theme-color);
  height: 3.25vw;
  flex: 1;
  justify-content: flex-end;
  border-radius: 0.8333vw 0.8333vw 0 0;
  position: relative;
  z-index: 2;
}

.header-content.mobilebox .top-nav {
  z-index: 5;
}

.header-content.mobilebox .nav-bg {
  height: 100vh;
}

.header-content.mobilebox .nav-content {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: height .2s;
}

.header-content.mobilebox .top-nav ul {
  width: 100%;
  height: auto;
  flex-direction: column;
}

.header-content.mobilebox .top-nav ul li {
  display: block;
  text-align: center;
  margin-bottom: 9.6618vw;
}

.header-content.mobilebox .icon-close {
  position: absolute;
  top: 4.83vw;
  right: 4.83vw;
  color: #fff;
  font-size: 7.7294vw;
  display: block;
  z-index: 99;
}

.header-content.mobilebox .logo {
  display: block;
}

.header-content.mobilebox .top-nav ul li a {
  font-size: 9.6618vw;
}

.header-content.mobilebox .icon-menu {
  display: none;
}

.min-page {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 84vh;
}

.main-content {
  flex: 1;
}

.content-frame {
  width: var(--frame-width) !important;
  margin: 0 auto;
  border-left: var(--body-border-width) solid var(--theme-color);
  border-right: var(--body-border-width) solid var(--theme-color);
  border-bottom: var(--body-border-width) solid var(--theme-color);
  border-radius: 0 0 0.8333vw 0.8333vw;
  margin-bottom: 3.9583vw;
}

.inner-pagebox {
  min-height: 66.666vh;
  padding: 8.333vw 0 12.5vw 0;
}

/* footer */
.footer {
  color: #fff;
  background-color: #00CEBF;
  background-attachment: fixed;
  text-align: left;
  position: relative;
  z-index: 2;
}

.footer-content {
  color: #fff;
}


.footer-row-bottom {
  padding: 2.0833vw 4.6875vw;
}


.footer-content .footer-copy {
  color: #fff;
  font-size: 1.4583vw;
  display: flex;
  justify-content: space-between;
}

.footer-content .footer-copy a {
  color: #fff;
}

.footer-content .footer-copy a:hover {
  text-decoration: underline;
}

.footer-content .footer-copy a:nth-of-type(-n+2) {
  margin-right: 12px;
}

.footer-content .footer-copy a:nth-last-of-type(-n+2) {
  margin-left: 12px;
}

.footer-content.subscribe {
  width: 100%;
  position: relative;
}

.footer-content .follow-us {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-content .title {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 8px;
}

.footer .input-group input {
  height: 40px;
  line-height: 40px;
  max-width: 320px;
  width: calc(100% - 140px);
  background-color: transparent;
  border: 1px solid #999;
  color: #777;
  padding: 0 16px;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

.footer-copy-first {
  display: inline-block;
}

.footer-privacy {
  display: inline-block;
}

.footer-privacybox a:hover {
  color: var(--hover-color);
}

.footer-content .footer-row-left_link {
  display: inline-flex;
  justify-content: flex-start;
  margin-right: 48px;
  width: 100%;
  height: 40px;
  line-height: 40px;
  margin-bottom: 40px;
}

.footer-content .footer-row-left_link a {
  color: #fff;
  margin-right: 48px;
  font-size: 16px;
}

.footer-style-fix {
  position: fixed;
  width: 100%;
  bottom: 0;
}

.frame-adaption {
  /* background-color: #fff; */
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
}

@media (max-width: 654px) {
  .footer-privacy {
    margin-left: 0;
  }
}

@media (max-width: 828px),
(orientation:portrait) {
  .header-top {
    padding: 10.628vw 0;
  }

  .header-top .warning {
    font-size: 4.3478vw;
  }

  /* footer */
  .footer .input-group input {
    width: 100%;
    max-width: 100%;
  }

  .footer .input-group button {
    width: 100%;
    margin-left: 0;
    font-size: 18px;
    margin-top: 20px;
  }

  .footer-content .footer-copy {
    font-size: 3.3816vw;
    flex-direction: column-reverse;
    align-items: center;

  }

  .footer-row-bottom {
    padding: 3.38vw;
  }
}


/*---分页样式---*/
.page-wrap {
  margin: 16px auto;
  overflow: hidden;
  position: relative;
}

@media (max-width: 768px) {
  .page-wrap {
    margin: 24px auto;
    overflow: hidden;
    position: relative;
  }
}

.page-inwrap {
  display: table;
  margin: 0 auto
}

.page li {
  float: left;
  margin: 0 8px;
}

.page li:last-child a,
.page li:first-child a {
  font-size: 14px;
  color: #999
}

.page li:last-child {
  margin-left: 9px;
  margin-right: 0;
  font-weight: bold
}

.page li:first-child {
  margin-left: 0;
  margin-right: 9px;
  font-weight: bold
}

.page-end {
  color: #999
}

.page li a.focus {
  color: #121212;
  background: #ebebeb;
}

.page li a:hover,
.page li.active a {
  color: #121212;
  background: #ebebeb;
}

.page li a {
  text-align: center;
  line-height: 36px;
  color: #888;
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 36px;
}

.page li .icon-Shape:hover {
  color: #333;
}

.page li .page-end:hover {
  color: #999
}


/*---layui---*/
.kizoku-tips-success,
.kizoku-tips-error,
.kizoku-tips-warning {
  box-shadow: none !important;
  border: 1px solid #d9e9c9;
  border-radius: 3px !important;
  overflow: hidden !important;
  display: table !important;
  min-width: 140px !important;
}

.kizoku-tips-warning {
  border: 1px solid #FFDEAF;
  width: auto !important;
}

.kizoku-tips-success .layui-layer-content {
  background: #F4F8EE;
  color: #559900;
}


.kizoku-tips-success .layui-layer-padding,
.kizoku-tips-error .layui-layer-padding {
  padding: 16px 20px 16px 55px !important;
}

.kizoku-tips-success .layui-layer-ico,
.kizoku-tips-error .layui-layer-ico {
  background: none !important;
  width: 24px !important;
  height: 24px !important;
  font-size: 24px !important;
}

.kizoku-tips-error {
  border: 1px solid #f1cddb;
}

.kizoku-tips-error .layui-layer-content {
  background: #fef1f1;
  color: #ea4949;
}

.kizoku-tips-error .layui-layer-content .layui-layer-ico2 {
  font-size: 24px;
}

.kizoku-tips-warning .layui-layer-content {
  background: #FDF6EC;
  color: #E6A23C;
}

.kizoku-tips-warning .layui-layer-content .layui-layer-ico3 {
  font-size: 24px;
  top: 20px !important;
}

.icon-warning {
  background: none !important;
  width: 24px !important;
  height: 24px !important;
  background: url(../../images/web/icon-warning.svg) no-repeat !important;
  background-size: 100% !important;
}

.layui-layer-dialog .layui-layer-content {
  word-break: normal !important;
}


.tips-loading {
  min-width: 100px !important;
  width: 100px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.8) !important;
  border-radius: 8px !important;
}

.tips-loading .layui-layer-content {
  padding: 0 !important;
  text-align: center !important;
  height: 100%;
  display: flex;
  display: -webkit-flex;
}

.tips-loading .timer-loading {
  width: 24px;
  height: 24px;
  background-color: transparent;
  box-shadow: inset 0px 0px 0px 2px #fff;
  border-radius: 50%;
  position: relative;
  margin: auto;
}

.tips-loading .timer-loading:after,
.tips-loading .timer-loading:before {
  position: absolute;
  content: "";
  background-color: #fff;
}

.tips-loading .timer-loading:after {
  width: 10px;
  height: 2px;
  top: 11px;
  left: 11px;
  -webkit-transform-origin: 1px 1px;
  -moz-transform-origin: 1px 1px;
  transform-origin: 1px 1px;
  -webkit-animation: minhand 2s linear infinite;
  -moz-animation: minhand 2s linear infinite;
  animation: minhand 2s linear infinite;
}

.tips-loading .timer-loading:before {
  width: 8px;
  height: 2px;
  top: 11px;
  left: 11px;
  -webkit-transform-origin: 1px 1px;
  -moz-transform-origin: 1px 1px;
  transform-origin: 1px 1px;
  -webkit-animation: minhand 8s linear infinite;
  -moz-animation: minhand 8s linear infinite;
  animation: minhand 8s linear infinite;
}

@-webkit-keyframes minhand {
  0% {
    -webkit-transform: rotate(0deg)
  }

  100% {
    -webkit-transform: rotate(360deg)
  }
}

@-moz-keyframes minhand {
  0% {
    -moz-transform: rotate(0deg)
  }

  100% {
    -moz-transform: rotate(360deg)
  }
}

@keyframes minhand {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

/*---agelimit---*/
.agelimit {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
}

.welcome-box {
  position: absolute;
  padding: 5.4166vw 3.3333vw 3.3333vw;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  text-align: center;
  color: #000;
  background: #CCDEFF;
  border-radius: 16px;
}

.welcome-box .logo {
  font-size: 5.2083vw;
  margin: 0 auto;
  color: #00CEBF;
}

.welcome-box .welcome-icon p {
  font-size: 3.125vw;
  font-weight: 600;
  line-height: 1.2;
}

.welcome-box>p {
  font-size: 1.4583vw;
  margin: 3.125vw 0 5.2083vw 0;
}

.welcome-box .btn-box {
  margin-top: 36px;
  display: flex;
}

.welcome-box button:first-child {
  margin-right: 1.4583vw;
}

.accept-cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #CCDEFF;
  z-index: 9999;
}

.add {
  display: block;
}

.accept-cookies .center {
  padding: 2.0833vw 3.3333vw;
  box-sizing: border-box;
  color: #000;
  display: flex;
  justify-content: space-between;
}

.accept-cookies p {
  width: 100%;
  font-size: 1.4583vw;
  line-height: 1.2;
}

.accept-cookies .btn {
  min-width: 14.5833vw;
  font-size: 1.4583vw;
  text-transform: uppercase;
  height: 3.5416vw;
  padding-bottom: 0;
}

.accept-cookies .btn-border:hover {
  background: #0000D8;
}

.accept-cookies a {
  color: #000;
  text-decoration: underline;
}


@media (max-width: 828px),
(orientation:portrait) {
  .welcome-box {
    padding: 7.7294vw;
    width: 77.777vw;
  }

  .welcome-box .welcome-icon p {
    font-size: 5.7971vw;
  }

  .welcome-box>p {
    font-size: 4.3478vw;
    margin: 6.7632vw 0 9.6618vw;
  }

  .welcome-box .logo {
    margin-bottom: 28px;
  }

  .welcome-box .btn-box {
    margin-top: 20px;
  }

  .footer-content .footer-row-left_link a {
    font-size: 20px;
  }

  .welcome-box button:first-child {
    margin-right: 3.8647vw;
  }

  .accept-cookies .center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4.8309vw 7.7294vw;
  }

  .accept-cookies p {
    font-size: 3.3816vw;
    margin-bottom: 3.8647vw;
  }

  .accept-cookies .btn {
    width: 50vw;
    font-size: 3.3816vw;
    height: 8.6956vw;
  }
}


/*---productdetail---*/
.wapper-container {
  overflow-x: hidden;
}


/*---table-style---*/
.table-style-1 {
  margin-top: 32px;
  border-top: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
  font-size: 14px;
  width: 100%;
}

.table-style-1 td {
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}

.table-style-1 thead td,
.table-style-1 tbody:first-child td {
  height: 44px;
  background: #f0f0f0;
  font-weight: 700;
}

.table-style-1 tbody td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  background: #fff;
}

.table-style-1 tbody td p span {
  text-decoration: underline;
}

.table-style-1 tbody td p {
  margin-bottom: 24px;
}

.table-style-1 tbody td li {
  list-style-type: disc;
  margin-left: 16px;
}

.table-style-2 {
  border-top: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
  font-size: 14px;
  text-align: center;
  width: 100%;
  margin-top: 32px;
  margin-bottom: 32px;
}

.table-style-2 td {
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  height: 44px;
  padding: 0 16px;
}

.table-style-2 thead td,
.table-style-2 tbody:first-child td {
  font-weight: 700;
}

.table-style-2 thead tr td:last-child,
.table-style-2 tbody:first-child tr td:last-child {
  background: #000;
  color: #fff;
}

.table-style-2 tr td:first-child {
  text-align: right;
}

.table-style-2 tr td:last-child {
  text-align: left;
  background: #CF3339;
  color: #fff;
}

.headershow {
  top: 0px;
}

@media (max-width:420px) {
  .table-style-1 td {
    padding: 8px !important;
  }
}

/* 文字动效 */
.animation-item {
  -webkit-transform: translateY(50px);
  -o-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  -webkit-transition: all .4s ease-in-out .3s;
  -o-transition: all .4s ease-in-out .3s;
  -moz-transition: all .4s ease-in-out .3s;
  transition: all .4s ease-in-out .3s;
}

.animation-item.animation {
  -webkit-transform: translateY(0);
  -o-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.pic_view {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  display: block;
}

.icon-loading {
  animation: rotating 1s linear infinite;
  display: inline-block;
  font-size: 20px;
  vertical-align: middle;
}

.is-loading {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: 100%;
  background: var(--theme-color);
  text-align: center;
  color: #fff;
  top: 0;
  left: 0;
  z-index: 3;
  cursor: not-allowed;
  /* display: flex;
  justify-content: center;
  align-items: center; */
}

.is-loading i {
  position: absolute;
  width: initial;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 20px;
  height: 20px;
}

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

  100% {
    transform: rotate(1turn);
  }
}

.inner-title {
  font-weight: 600;
  margin: 0 auto;
  text-align: center;
}

/*---rich text---*/
.rich-text-page {
  width: 76.5625vw;
  box-sizing: content-box;
  text-align: left;
  margin: 0 auto;
}

.rich-text-page .inner-title {
  margin: 0;
  font-size: 4.1666vw;
  color: var(--theme-color);
  text-align: left;
  width: 100%;
}

.rich-text-page .date {
  font-size: 1.4583vw;
  text-align: center;
  text-align: left;
  width: 100%;
}

.rich-text-page .rich-text {
  color: #000;
  margin-top: 6.25vw;
}

.rich-text-page .rich-text p,
.rich-text-page .rich-text div,
.rich-text-page .rich-text li,
.rich-text-page .rich-text i {
  font-size: 1.4583vw;
  color: #585858;
}

.rich-text-page img {
  max-width: 100%;
  margin: 48px 0;
}

.rich-text-page h1 {
  font-size: 24px !important;
  font-weight: 600 !important;
  margin-bottom: 16px;
}

.rich-text-page h2 {
  font-size: 22px !important;
  font-weight: 600 !important;
  margin-bottom: 16px;
}

.rich-text-page h3 {
  font-size: 2.3958vw;
  font-weight: 600 !important;
  margin-bottom: 20px;
  color: var(--theme-color)
}

.rich-text-page h4 {
  font-size: 18px !important;
  font-weight: 600 !important;
  margin-bottom: 16px;
}

.rich-text-page h5 {
  font-size: 16px !important;
  font-weight: 600 !important;
  margin-bottom: 16px;
}

.rich-text-page h6 {
  font-size: 14px !important;
  font-weight: 600 !important;
  margin-bottom: 16px;
}

.rich-text-page .rich-text a:hover {
  text-decoration: underline;
}

.rich-text-page .rich-text a {
  color: #00CEBF;
}

@media (max-width: 828px),
(orientation:portrait) {
  .rich-text-page .inner-title {
    font-size: 6.28vw;
  }

  .rich-text-page .date {
    font-size: 3.3816vw;
  }

  .rich-text-page h3 {
    font-size: 4.3478vw;
  }

  .rich-text-page .rich-text p,
  .rich-text-page .rich-text div,
  .rich-text-page .rich-text li,
  .rich-text-page .rich-text i {
    font-size: 3.3816vw;
  }
}

/* bottom-communitylink */
.bottom-communitylink {
  position: fixed;
  right: 20px;
  bottom: 136px;
  width: 100px;
  z-index: 9997;
  cursor: pointer;
}

.bottom-communitylink a {
  display: block;
  width: 100%;
}

.bottom-communitylink a img {
  width: 100%;
  border-radius: 12px;
}

.bottom-communitylink span {
  position: absolute;
  right: 0;
  top: -8px;
  width: 18px;
  height: 18px;
  color: #fff;
  background: #000;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}

/* bottom-drogue */
.bottom-drogue-lists {
  bottom: 136px;
  cursor: pointer;
  position: fixed;
  right: 20px;
  z-index: 1000
}

.bottom-drogue {
  margin-top: 36px;
  position: relative
}

.bottom-drogue a {
  border-radius: 16px;
  display: block;
  width: 100px
}


.bottom-drogue .icon-close {
  display: block;
}

.bottom-drogue img {
  border-radius: 10px;
  display: block;
  width: 100%
}

.bottom-drogue span {
  align-items: center;
  background: #000;
  border-radius: 18px;
  color: #fff;
  display: flex;
  font-size: 12px;
  height: 18px;
  justify-content: center;
  position: absolute;
  right: 0;
  top: -8px;
  width: 18px
}

@media (max-width: 1024px) {
  .bottom-communitylink span i {
    position: initial;
    display: block;
    transform: none;
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .bottom-communitylink {
    right: 16px;
    bottom: 100px;
    width: 18vw;
  }

  .bottom-drogue-lists {
    bottom: 187px;
    right: 16px;
    width: 18vw
  }

  .bottom-drogue {
    margin-top: 20px
  }

  .bottom-drogue a {
    height: 18vw;
    width: 18vw
  }

}


@media (max-width: 828px),
(orientation:portrait) {
  :root {
    --border-width: 3px;
    --body-border-width: 7px;
  }

  .public-header .logo {
    width: 40vw;
    height: 14.4927vw;
    padding: 0 2.415vw;
    background-size: 85%;
  }

  .public-header .header-content {
    height: 18vw;
  }

  .top-nav ul {
    justify-content: end;
  }

  .top-nav ul li {
    text-align: right;
  }

  .top-nav ul li a {
    font-size: 4vw;
  }

  .nav-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #FF6633;
    transition: height .4s;
    z-index: 4;
  }

  .icon-menu {
    color: #fff;
    font-size: 7.7294vw;
    margin-right: 2vw;
    display: block;
  }

  .icon-close {
    display: none;
  }

  .top-nav {
    height: 7.7294vw;
    border-radius: 1.75vw 1.75vw 0 0;
  }

  .content-frame {
    border-radius: 0 0 1.75vw 1.75vw
  }

  .inner-pagebox {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}