@charset "UTF-8";
/* 按钮 */
/* 输入框 */
/* 文本域 */
/* 图片背景 */
/* 滚动条不可见但可滚动 */
/* 文本行距空白的协调 */
.header .tools-list .language-switcher {
  width: 16rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: visible;
  background-color: #ffffff;
  box-shadow: 0 0 0 1px #3E3A3933 inset;
}
.header .tools-list .language-switcher .active {
  color: #FCC319;
}
.header .tools-list .language-switcher:hover {
  background-color: #ffffff;
}
.header .tools-list .language-switcher:hover .active {
  color: #FCC319;
}
.header .tools-list .language-switcher > * {
  flex: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: all 0.3s ease;
}
@font-face {
  font-family: 'AlibabaPuHuiTi';
  src: url('fonts/AlibabaPuHuiTi-2-35-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'AlibabaPuHuiTi';
  src: url('fonts/AlibabaPuHuiTi-2-45-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'AlibabaPuHuiTi';
  src: url('fonts/AlibabaPuHuiTi-2-55-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'AlibabaPuHuiTi';
  src: url('fonts/AlibabaPuHuiTi-2-65-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'AlibabaPuHuiTi';
  src: url('fonts/AlibabaPuHuiTi-2-75-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'AlibabaPuHuiTi';
  src: url('fonts/AlibabaPuHuiTi-2-85-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'AlibabaPuHuiTi';
  src: url('fonts/AlibabaPuHuiTi-2-95-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'AlibabaPuHuiTi';
  src: url('fonts/AlibabaPuHuiTi-2-105-Heavy.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'AlibabaPuHuiTi';
  src: url('fonts/AlibabaPuHuiTi-2-115-Black.woff2') format('woff2');
  font-weight: 950;
  font-style: normal;
}
@font-face {
  font-family: 'MyFont';
  src: url('fonts/Inter-ExtraLight.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'MyFont';
  src: url('fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'MyFont';
  src: url('fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'MyFont';
  src: url('fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'MyFont';
  src: url('fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
    transform-origin: center center;
  }
  100% {
    transform: rotate(360deg);
    transform-origin: center center;
  }
}
@keyframes beeFly {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes beeShadow {
  0% {
    transform: scale(1);
    filter: blur(1px);
  }
  50% {
    transform: scale(0.8);
    filter: blur(3px);
  }
  100% {
    transform: scale(1);
    filter: blur(1px);
  }
}
* {
  box-sizing: border-box;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote {
  margin: 0;
  padding: 0;
  border: 0;
}
html {
  font-size: 10px;
}
body {
  color: #3E3A39;
  font-size: 1.4rem;
  font-family: 'MyFont', 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  background-color: #FAF3E8;
}
html[lang="zh-cn"] body,
html[lang="zh-CN"] body,
html[lang="zh"] body {
  font-family: 'AlibabaPuHuiTi', 'PingFang SC', 'Microsoft YaHei', 'SimHei', sans-serif;
}
html[lang="en"] body,
html[lang="en-US"] body {
  font-family: 'MyFont', Arial, 'Helvetica Neue', Helvetica, sans-serif;
}
input,
select,
textarea {
  font-family: inherit;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a,
*::before,
*::after {
  font-size: inherit;
  text-decoration: none;
  color: #3E3A39;
}
a * {
  transition: all 0.4s ease;
}
ol,
ul,
li {
  list-style: none;
}
.clearfix:after,
.clearfix:before {
  content: "";
  display: table;
  clear: both;
}
img {
  border: none;
  vertical-align: middle;
  max-width: 100%;
}
.img {
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #FAF3E8;
}
.pic {
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.img img,
.pic img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  padding: 0;
  border: 0;
  width: 100%;
  height: auto;
  border: none;
}
.img.fh img,
.pic.fh img {
  width: auto;
  height: 100%;
}
.img-center {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: auto!important;
  height: auto!important;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
}
.img-block {
  display: block;
  width: 100%;
  height: auto;
}
p {
  text-align: justify;
}
.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}
/* 滚动条样式 */
body::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}
body::-webkit-scrollbar-track {
  background-color: #3E3A39;
}
body::-webkit-scrollbar-button {
  height: 0;
  width: 0;
}
body::-webkit-scrollbar-thumb {
  background-color: #FCC319;
  box-shadow: inset 1px 1px 0 #FCC319, inset 0 -1px 0 #FCC319;
}
body.no-scroll {
  overflow: hidden;
}
/* 通用 */
.container-outer {
  margin: auto;
  position: relative;
  height: 100%;
}
/* 头部 */
.header {
  position: relative;
  width: 100%;
  z-index: 99;
  height: 160px;
}
.header .part-top {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .part-top svg {
  font-size: 2rem;
}
.header .tools-list {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
  gap: 1rem;
}
.header .tools-list > * {
  display: inline-block;
  position: relative;
  cursor: pointer;
  height: 3.8rem;
  line-height: 3.8rem;
  padding: 0 1.9rem;
  text-align: center;
  border-radius: 1.9rem;
  transition: all 0.4s ease;
  background-color: #FCC319;
  color: #3E3A39;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 12rem;
}
.header .tools-list > *:hover {
  background-color: #3E3A39;
  color: #FCC319;
}
.header .tools-list > *[disabled] {
  background: #debe5e;
  color: #977717;
  cursor: not-allowed;
}
.header .tools-list > *.loading::after {
  content: '';
  width: 2rem;
  height: 2rem;
  display: inline-block;
  margin-left: 1rem;
  background: url(../images/loading.svg) no-repeat center center;
  background-size: 100% 100%;
  animation: loading 1s linear infinite;
  opacity: 0.5;
}
.header .tools-list > *::before,
.header .tools-list > *::after,
.header .tools-list > * span {
  vertical-align: middle;
}
.header .tools-list > * svg {
  vertical-align: middle;
  color: #3E3A39;
}
.header .tools-list > * span {
  vertical-align: middle;
}
.header .tools-list > *:hover svg {
  color: #FCC319;
}
.header .user-account {
  display: inline-block;
  position: relative;
  cursor: pointer;
  height: 3.8rem;
  line-height: 3.8rem;
  padding: 0 1.9rem;
  text-align: center;
  border-radius: 1.9rem;
  transition: all 0.4s ease;
  background-color: #FFFFFF;
  color: #3E3A39;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: 0 0 0 1px #3E3A3933 inset;
}
.header .user-account:hover {
  background-color: #3E3A39;
  color: #FCC319;
}
.header .user-account[disabled] {
  background: #debe5e;
  color: #977717;
  cursor: not-allowed;
}
.header .user-account.loading::after {
  content: '';
  width: 2rem;
  height: 2rem;
  display: inline-block;
  margin-left: 1rem;
  background: url(../images/loading.svg) no-repeat center center;
  background-size: 100% 100%;
  animation: loading 1s linear infinite;
  opacity: 0.5;
}
.header .user-account::before,
.header .user-account::after,
.header .user-account span {
  vertical-align: middle;
}
.header .user-account.has-user svg {
  color: #FCC319;
}
.header .user-cart {
  overflow: visible;
}
.header .user-cart.has-cart::after {
  content: '●';
  position: absolute;
  font-size: 1.2rem;
  color: #d70000;
  right: 0;
  top: -1.5rem;
}
.header .nav-show,
.header .search-show,
.header .nav-close {
  display: none;
}
.header .search {
  position: relative;
}
.header .search input[type="text"] {
  font-size: 1.6rem;
  padding: 0 4.9rem 0 1.9rem;
  border-radius: 1.9rem;
  height: 3.8rem;
  line-height: 3.8rem;
  border: none;
  background-color: #FFFFFF;
  color: #3E3A39;
  box-shadow: 0 0 0 1px #3E3A3933 inset;
  width: 25vw;
  min-width: 24rem;
  max-width: 40rem;
}
.header .search input[type="text"]:focus,
.header .search input[type="text"]:active {
  box-shadow: 0 0 0 1px #FCC319 inset;
}
.header .search input[type="text"]::placeholder {
  color: #aaa;
}
.header .search input[type="text"][disabled] {
  background-color: #eee;
  color: #777;
}
.header .search svg {
  position: absolute;
  right: 1.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: #FCC319;
  cursor: pointer;
}
.header .search svg:hover {
  opacity: 0.5;
}
.header .search .search-icon {
  display: block;
}
.header .search .close-icon {
  display: none;
}
.header .header-logo {
  display: block;
  height: 90%;
}
.header .header-logo img.logo1 {
  display: block;
}
.header .header-logo img.logo2 {
  display: none;
}
.header.fixed .header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
/* 导航 */
.header-nav {
  border-top: 1px solid #b9b9b9;
  border-bottom: 1px solid #b9b9b9;
  background: #FAF3E8;
  transition: all 0.4s ease;
}
.header-nav > ul > li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px;
  position: relative;
}
.header-nav > ul > li::after {
  content: '';
  height: 14px;
  width: 1px;
  background: #ccc;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}
.header-nav > ul > li:first-child {
  margin-left: 5px;
}
.header-nav > ul > li:last-child::after {
  display: none;
}
.header-nav > ul > li > a {
  color: #3E3A39;
  line-height: 60px;
  position: relative;
  z-index: 10;
  font-size: 16px;
}
.header-nav > ul > li > a::before {
  content: '';
  display: block;
  width: 0px;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -10px;
  background: #FCC319;
  transition: all 0.4s ease;
}
.header-nav > ul > li.has-sub > a {
  border-right: 20px solid transparent;
}
.header-nav > ul > li.has-sub > a::after {
  content: '▼';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) scaleX(0.6) scaleY(0.4);
}
.header-nav > ul > li:hover > a,
.header-nav > ul > li.cur > a {
  color: #FCC319;
}
.header-nav > ul > li:hover > a::before,
.header-nav > ul > li.cur > a::before {
  width: 100%;
}
.header-nav > ul > li:hover > a::after {
  opacity: 0.5;
}
.header-nav > ul > li li {
  position: relative;
  line-height: 40px;
  padding: 0 50px 0 15px;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition-duration: 0.1s;
}
.header-nav > ul > li li a {
  font-size: 14px;
  white-space: nowrap;
}
.header-nav > ul > li li:hover {
  background-color: #FCC319;
}
.header-nav > ul > li li:hover::after {
  opacity: 0.5;
}
.header-nav > ul > li li.has-sub::after {
  content: '▶';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) scaleX(0.4) scaleY(0.6);
}
.header-nav > ul > li ul {
  position: absolute;
  left: 100%;
  box-shadow: 9px 11px 29px rgba(125, 138, 152, 0.15);
  background: #fff;
  top: 10px;
  z-index: 100;
}
.header-nav > ul > li > ul {
  left: 0;
  top: 100%;
}
.header-nav li:hover > ul > li {
  height: 40px;
  overflow: visible;
  opacity: 1;
  transition-duration: 0.5s;
}
/* 底部 */
.footer {
  position: relative;
  overflow: visible;
  background: #3E3A39;
  z-index: 2;
}
.footer a {
  color: #fdf9f6;
}
.footer a:hover {
  color: #FCC319;
}
.footer .footer-content-top {
  position: relative;
  padding: 70px 0 70px 0;
  display: flex;
  justify-content: space-between;
  height: auto;
}
.footer .footer-item {
  margin-right: 20px;
  position: relative;
  z-index: 10;
}
.footer .footer-item:last-child {
  margin-right: 0;
}
.footer .logo-item {
  width: 42%;
}
.footer .footer-logo img {
  height: 100px;
}
.footer .footer-text {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 500;
  color: #fdf9f6;
  padding-left: 5px;
  line-height: 30px;
}
.footer .footer-item-top {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding: 0 0 10px 0;
  font-size: 16px;
  color: #fdf9f6;
  font-weight: 500;
  white-space: nowrap;
}
.footer .footer-item-bottom {
  padding-top: 10px;
}
.footer .footer-item-bottom li {
  font-size: 14px;
  color: #fdf9f6;
  font-weight: 300;
  padding: 5px 0 5px 0;
}
.footer .footer-contact li > b {
  font-weight: normal;
  opacity: 0.6;
  padding-bottom: 0.5em;
  margin-right: 0.5em;
}
.footer .footer-contact li > b::after {
  content: ':';
  color: inherit;
}
.footer .footer-contact li > span {
  word-break: break-all;
  white-space: normal;
  margin-bottom: 1em;
}
.footer .footer-content-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0009;
  padding: 30px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.footer .footer-copy {
  color: #fdf9f6;
  opacity: 0.6;
  text-align: center;
  font-weight: 300;
}
.footer .back-show {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.footer .back-show > img {
  position: absolute;
  pointer-events: none;
  max-width: none;
}
.footer .back-show .bee {
  bottom: 45px;
  left: 346px;
  width: auto;
  height: 105px;
}
.footer .back-show .path1 {
  width: 900px;
  height: auto;
  bottom: 60px;
  left: -540px;
}
.footer .back-show .path2 {
  height: 340px;
  width: auto;
  right: 0;
  bottom: 0;
  opacity: 0.3;
}
/* 页面banner */
.page-banner {
  width: 100%;
  aspect-ratio: 1 / 0.338;
  min-height: 240px;
  max-height: 700px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
/* 页面position */
.banner-path {
  position: relative;
  width: 100%;
  z-index: 10;
  padding-top: 1rem;
}
.banner-path .link {
  font-size: 14px;
  color: #3E3A39;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow: hidden;
}
.banner-path .link a {
  white-space: nowrap;
}
.banner-path .link a:hover {
  color: #FCC319;
}
.banner-path .link a.cur {
  font-weight: bold;
}
.banner-path .link .home {
  font-size: 2.2rem;
  color: #FCC319;
}
.banner-path .link .home:hover {
  opacity: 0.6;
}
.banner-path .link .split {
  opacity: 0.4;
}
/* 分页 */
.paginationList {
  width: 100%;
}
.paginationList ul {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 5px;
  padding-top: 10px;
}
.paginationList ul li {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #FFFFFF;
  cursor: pointer;
  font-size: 12px;
}
.paginationList ul li:hover {
  background-color: #3E3A39;
  color: #FAF3E8;
}
.paginationList ul li.cur {
  background-color: #FCC319;
  border-color: #FCC319;
  color: #3E3A39;
}
.paginationList ul li.more {
  border: none;
  background-color: transparent;
  color: #3E3A39;
}
/* 图片详情查看器 */
.galleryOverlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 100000;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  display: none;
  -moz-transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.galleryOverlay.visible {
  opacity: 1;
}
.galleryOverlay .gallerySlider {
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
  position: absolute;
}
.galleryOverlay .gallerySlider .placeholder {
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  line-height: 1px;
  text-align: center;
  width: 100%;
  display: inline-block;
}
.galleryOverlay .gallerySlider .placeholder:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}
.galleryOverlay .gallerySlider .placeholder img {
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
}
.galleryOverlay .prevArrow,
.galleryOverlay .nextArrow {
  border: none;
  text-decoration: none;
  opacity: 0.5;
  cursor: pointer;
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  margin-top: 0px;
}
.galleryOverlay .prevArrow:hover,
.galleryOverlay .nextArrow:hover {
  opacity: 1;
}
.galleryOverlay .prevArrow {
  background-position: left top;
  left: 0;
}
.galleryOverlay .nextArrow {
  background-position: right top;
  right: 0;
}
.galleryOverlay .pagelimit {
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -18px;
  color: #fff;
  font-size: 18px;
}
.galleryOverlay .closed {
  cursor: pointer;
  position: absolute;
  width: 40px;
  height: 40px;
  right: 2%;
  top: 3%;
  transform: rotate(45deg);
}
.galleryOverlay .closed::after,
.galleryOverlay .closed::before {
  content: '';
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.galleryOverlay .closed:hover {
  opacity: 0.5;
}
.galleryOverlay .closed::after {
  width: 26px;
  height: 2px;
}
.galleryOverlay .closed::before {
  width: 2px;
  height: 26px;
}
/* 表单样式 */
.form-item {
  width: 100%;
  position: relative;
  margin-bottom: 2rem;
}
.form-item label {
  margin-left: 1rem;
}
.form-item input[type='text'],
.form-item input[type='password'] {
  font-size: 1.6rem;
  padding: 0 1.9rem 0 1.9rem;
  border-radius: 1.9rem;
  height: 3.8rem;
  line-height: 3.8rem;
  border: none;
  background-color: #FFFFFF;
  color: #3E3A39;
  box-shadow: 0 0 0 1px #3E3A3933 inset;
  width: 100%;
}
.form-item input[type='text']:focus,
.form-item input[type='password']:focus,
.form-item input[type='text']:active,
.form-item input[type='password']:active {
  box-shadow: 0 0 0 1px #FCC319 inset;
}
.form-item input[type='text']::placeholder,
.form-item input[type='password']::placeholder {
  color: #aaa;
}
.form-item input[type='text'][disabled],
.form-item input[type='password'][disabled] {
  background-color: #eee;
  color: #777;
}
.form-item textarea {
  font-size: 1.6rem;
  padding: 1rem 1.9rem 0 1.9rem;
  border-radius: 1.9rem;
  height: 3.8rem;
  line-height: 1.3em;
  border: none;
  background-color: #FFFFFF;
  color: #3E3A39;
  box-shadow: 0 0 0 1px #3E3A3933 inset;
  height: 10rem;
  resize: none;
  width: 100%;
}
.form-item textarea:focus,
.form-item textarea:active {
  box-shadow: 0 0 0 1px #FCC319 inset;
}
.form-item textarea::placeholder {
  color: #aaa;
}
.form-item textarea::-webkit-scrollbar {
  display: none;
}
.form-item.verify-group {
  display: flex;
}
.form-item.verify-group input[type="text"] {
  max-width: 200px;
}
.form-item.verify-group .verify-img {
  margin-left: 1rem;
}
.form-item.request::before {
  content: '*';
  color: red;
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
}
.form-item.error input[type='text'],
.form-item.error input[type='password'],
.form-item.error textarea {
  box-shadow: 0 0 0 1px red inset;
  background-color: #ffeeee;
}
/* 验证码 */
.verify-img {
  height: 3.8rem;
  min-width: 12rem;
  position: relative;
  box-shadow: 0 0 0 1px #3E3A3933 inset;
  cursor: pointer;
}
.verify-img img {
  display: block;
  height: 100%;
  width: auto;
}
.verify-img::before {
  content: '';
  position: absolute;
  left: calc(50% - 10px);
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  background: url(../images/loading.svg) no-repeat center center;
  background-size: 100% 100%;
  animation: loading 1s linear infinite;
  display: none;
}
.verify-img.loading img {
  opacity: 0.2;
}
.verify-img.loading::before {
  display: block;
}
.verify-img:hover img {
  box-shadow: 0 0 0 1px #FCC319;
}
.verify-img.loading:hover img {
  box-shadow: none;
}
/* 消息提示 */
.message-show {
  text-align: center;
  margin-bottom: 20px;
  height: 18px;
}
.message-show.error {
  color: #F00;
  font-weight: bold;
}
.message-show.show {
  color: #777;
}
.message-show.success {
  color: #008000;
  font-weight: bold;
}
/* 语言切换加载 */
.language-switch-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #333;
  text-align: center;
  backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.5);
}
.language-switch-overlay .showFrame {
  width: 90%;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.7);
  padding: 50px 20px;
  border-radius: 10px;
  border: 1px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.1) inset;
  position: relative;
}
.language-switch-overlay .showFrame::after {
  content: '';
  width: 80px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 160px;
  left: 50%;
  margin-left: -42px;
  animation: beeShadow 1s linear infinite;
  transform-origin: center center;
}
.language-switch-overlay .showFrame-icon {
  width: 100px;
  height: 120px;
  background: url(../images/beeFly.svg) no-repeat;
  background-position: 0 0;
  background-size: contain;
  margin: 0 auto;
  position: relative;
  left: 10px;
  animation: beeFly 1s linear infinite;
}
.language-switch-overlay .showText {
  color: #333;
  margin-top: 50px;
  line-height: 1.5;
}
/*# sourceMappingURL=./style.css.map */