/* --------------------------------------------------------------------------

Version:  1.1
Author:	Bing
blog:   https://blog.csdn.net/Centenario_0?spm=1000.2115.3001.5343&type=blog

--------------------------------------------------------------------------- */
@media (min-width: 1920px) and (max-width: 2560px) {
  html {
    font-size: 24px;
  }
}
@media (min-width: 1680px) and (max-width: 1920px) {
  html {
    font-size: 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1680px) {
  html {
    font-size: 18px;
  }
}
@media (min-width: 1366px) and (max-width: 1440px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 1000px) and (max-width: 1366px) {
  html {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 20px;
  }
}
/* ---------- CSS RESET --------- */
body,
ol,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div,
img,
form,
input,
textarea,
select,
header,
nav,
main,
menu,
section,
figure,
figcaption,
footer {
  margin: 0;
  padding: 0;
  font: inherit;
  color: #343434;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans SC", Arial, Tahoma, sans-serif !important;
  scroll-behavior: smooth;
  /*------ 滚动条样式 ------*/
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 4px;
  height: 10px;
}
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: #efefef;
  border-radius: 2px;
}
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: #6a3acd;
  border-radius: 10px;
}
html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background: #767676;
}
html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner {
  background: #767676;
}
p,
a,
span,
h1,
h2,
h3,
h4,
h5,
h6,
button,
li {
  line-height: 1;
  /* ---------- 根据字体大小设置行高 --------- */
}
a {
  display: block;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}
ul,
li {
  list-style: none;
}
button,
input,
textarea {
  outline: none;
  border: none;
  font: inherit;
}
input,
textarea {
  -webkit-appearance: none;
  /* ---------- 取消默认阴影效果针对ios端 --------- */
}
input::placeholder,
textarea::placeholder {
  font-size: inherit;
}
textarea {
  overflow: auto;
  resize: none;
  /* ---------- 取消右下角拖拽 --------- */
}
img {
  width: 100%;
  max-height: 100%;
  display: block;
  border: none;
  object-fit: cover;
}
/* ---------- flex box --------- */
.fx {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
}
.fy {
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  display: flex;
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
}
.jc {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.jb {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ac {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.fc {
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
/* ---------- swiper reset --------- */
.swiper-container {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.swiper-button-prev:focus,
.swiper-button-next:focus {
  outline: none;
}
/* ---------- 文本隐藏省略 --------- */
.one-row {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.more-row {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.container {
  max-width: 70rem;
  margin: 0 auto;
}
.not-allowed {
  cursor: not-allowed !important;
  background-color: rgba(106, 58, 205, 0.5) !important;
}
/* ---------- header css --------- */
header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 3000;
  transition: all ease 0.46s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header * {
  color: #fff;
}
header .content {
  width: 100%;
  padding: 0  3rem;
  margin: 0 auto;
}
header .content .logo {
  width: 9.2rem;
  min-width: 7rem;
  transition: all 0.3s ease;
}
header .content .logo img:last-child {
  display: none;
}
header .content .middle {
  margin-left: 9%;
}
header .content .middle nav > ul > li {
  position: relative;
  padding: 1.9rem 2.5rem;
  transition: all 0.3s ease;
}
header .content .middle nav > ul > li > a {
  font-size: 0.9rem;
  white-space: nowrap;
}
header .content .middle nav > ul > li > i {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  font-size: 1.5rem;
  display: block;
  transition: all 0.3s ease;
  opacity: 0;
}
header .content .middle nav > ul > li .twoul {
  padding-top: 0.8rem;
  position: absolute;
  top: 86%;
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  transition: all 0.36s ease;
  transform-origin: top;
  opacity: 0;
  pointer-events: none;
}
header .content .middle nav > ul > li .twoul li {
  position: relative;
  padding: 0.8rem 2rem;
  background-color: #fff;
}
header .content .middle nav > ul > li .twoul li:last-child::after {
  display: none;
}
header .content .middle nav > ul > li .twoul li::before {
  position: absolute;
  content: '';
  width: 90%;
  height: 0.05rem;
  background-color: #f7f7f7;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
header .content .middle nav > ul > li .twoul li::after {
  position: absolute;
  content: '';
  width: 30%;
  height: 0.05rem;
  background-color: #6a3acd;
  bottom: 0;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
  transition: all 0.36s ease;
}
header .content .middle nav > ul > li .twoul li a {
  font-size: 0.9rem;
  color: #666;
  white-space: nowrap;
  transition: all 0.3s ease;
}
header .content .middle nav > ul > li .twoul li a:hover {
  color: #6a3acd;
}
header .content .middle nav > ul > li .twoul li:hover::after {
  opacity: 1;
  width: 90%;
}
header .content .middle nav > ul > li:hover > a {
  color: #6a3acd;
}
header .content .middle nav > ul > li:hover i {
  bottom: 0.25rem;
  opacity: 1;
  color: #6a3acd;
}
header .content .middle nav > ul > li:hover .twoul {
  opacity: 1;
  pointer-events: inherit;
  transform: translateX(-50%) scaleY(1);
}
header .content .middle nav > ul > li .tow {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  box-shadow: 0rem 0.5rem 3rem 0rem rgba(0, 0, 0, 0.07);
  border-top: 1px solid #eaeaea;
  display: none;
  z-index: 111;
}
header .content .middle nav > ul > li .tow > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 1rem;
  transition: 0.3s;
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 1px solid #eaeaea;
  transition: all 0.36s ease;
}
header .content .middle nav > ul > li .tow > li:last-child {
  border-bottom: 0;
}
header .content .middle nav > ul > li .tow > li a {
  margin-right: 20%;
  font-size: 0.8rem;
  color: #333;
}
header .content .middle nav > ul > li .tow > li i {
  font-size: 18px;
  color: #666;
}
header .content .middle nav > ul > li .tow > li .three {
  position: absolute;
  top: -1px;
  left: 100%;
  width: 400px;
  height: 100%;
  height: auto;
  opacity: 0;
  background-color: #fff;
  border-top: 1px solid #eaeaea;
  transition: 0.4s;
  z-index: -1;
}
header .content .middle nav > ul > li .tow > li .three > ul {
  height: 100%;
  flex-wrap: wrap;
}
header .content .middle nav > ul > li .tow > li .three > ul li {
  position: relative;
  height: 50%;
  width: 33.33%;
  padding: 30px ;
  display: flex;
  align-items: center;
}
header .content .middle nav > ul > li .tow > li .three > ul li a {
  position: relative;
  font-size: 16px;
  color: #666;
  padding-left: 14px;
  transition: 0.4s ease;
}
header .content .middle nav > ul > li .tow > li .three > ul li a::before {
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  background-color: #767676;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s ease;
}
header .content .middle nav > ul > li .tow > li .three > ul li:hover a {
  color: #6a3acd;
}
header .content .middle nav > ul > li .tow > li .three > ul li:hover a::before {
  background-color: #6a3acd;
}
header .content .middle nav > ul > li .tow > li:hover {
  background-color: #6a3acd;
}
header .content .middle nav > ul > li .tow > li:hover a,
header .content .middle nav > ul > li .tow > li:hover i {
  color: #fff;
}
header .content .middle nav > ul > li .tow > li:hover .three {
  opacity: 1;
  z-index: 11;
}
header .content .middle nav > ul .on i {
  bottom: 0.25rem;
  opacity: 1;
}
header .content .middle .contact {
  margin-left: 1.5rem;
}
header .content .middle .contact > span {
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.05rem solid #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}
header .content .middle .contact > span i {
  font-size: 1.5rem;
}
header .content .middle .contact p {
  margin-left: 0.3rem;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  font-weight: bold;
  white-space: nowrap;
}
header .content .middle .contact p span {
  margin-bottom: 0.4rem;
  font-size: 0.7rem;
  font-weight: 500;
}
header .content .right .login-box {
  margin-right: 2rem;
}
header .content .right .login-box a {
  font-size: 0.8rem;
  white-space: nowrap;
}
header .content .right .login-box i {
  display: inline-block;
  margin: 0 0.4rem;
  width: 0.1rem;
  height: 0.8rem;
  font-family: "Arial", "Microsoft YaHei", "黑体", "宋体", sans-serif;
  background-color: #fff;
}
header .content .right .language {
  padding: 20px 0;
  position: relative;
}
header .content .right .language p {
  margin: 0 0.3rem 0 0.4rem;
  font-size: 0.8rem;
  white-space: nowrap;
}
header .content .right .language ul {
  padding-top: 20px;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  transform: scaleY(0);
  pointer-events: none;
  transition: all 0.3s ease;
  transform-origin: top;
  cursor: pointer;
}
header .content .right .language ul li {
  padding: 8px 10px;
  width: 100%;
  font-size: 16px;
  border-bottom: 1px solid #f7f7f7;
  color: #666;
  background-color: #fff;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}
header .content .right .language ul li:hover {
  color: #6a3acd;
}
header .content .right .language:hover ul {
  transform: scaleY(1);
  pointer-events: inherit;
}
header:hover {
  background-color: #fff;
}
header:hover * {
  color: #333;
}
header:hover .logo img:first-child {
  display: none !important;
}
header:hover .logo img:last-child {
  display: block !important;
}
header:hover .contact > span {
  border-color: #6a3acd !important;
}
header:hover .contact > span i {
  color: #6a3acd;
}
header:hover .contact p {
  color: #6a3acd !important;
}
header:hover .contact p span {
  color: #6a3acd !important;
}
header:hover .right .login-box i {
  background-color: #666;
}
.two-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: -1;
  transition: all 0.36s ease;
}
.two-menu .tmenu {
  padding: 2rem 0 2.5rem;
  border-top: 0.05rem solid #f2f2f2;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: none;
  background-color: #fff;
  border-bottom: 0.05rem solid #f1f1f1;
  z-index: 1;
}
.two-menu .nav-item {
  margin-right: 8%;
}
.two-menu .nav-item h4 {
  position: relative;
  padding-bottom: 1rem;
  font-size: 1rem;
  color: #333;
  font-weight: 540;
}
.two-menu .nav-item h4::before,
.two-menu .nav-item h4::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 0.05rem;
  bottom: 0;
  left: 0;
  background-color: #f2f2f2;
}
.two-menu .nav-item h4::after {
  background-color: #6a3acd;
  width: 0;
  transition: all 0.6s ease-in-out;
  opacity: 0;
  z-index: 1;
}
.two-menu .nav-item > div {
  padding-top: 0.7rem;
}
.two-menu .nav-item > div ul {
  margin-right: 2.5rem;
  min-height: 8rem;
}
.two-menu .nav-item > div ul:last-child {
  margin-right: 0;
}
.two-menu .nav-item > div ul li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.1rem;
  font-size: 0.9rem;
  color: #666;
  width: 8.5rem;
  white-space: nowrap;
  transition: all 0.36s ease;
}
.two-menu .nav-item > div ul li a {
  color: inherit;
  font: inherit;
}
.two-menu .nav-item > div ul li::before {
  position: absolute;
  content: '';
  width: 0.3rem;
  height: 0.3rem;
  background-color: #6a3acd;
  opacity: 0.3;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border-radius: 50%;
  transition: all 0.36s ease;
}
.two-menu .nav-item > div ul li:hover {
  color: #6a3acd;
  padding-left: 1.4rem;
}
.two-menu .nav-item > div ul li:hover::before {
  opacity: 1;
}
.two-menu .nav-item:hover h4 {
  color: #6a3acd;
}
.two-menu .nav-item:hover h4::after {
  width: 100%;
  opacity: 0.5;
}
.fixed {
  box-shadow: 0rem 0.1rem 0.5rem rgba(0, 0, 0, 0.05);
  background-color: #fff;
}
.fixed * {
  color: #333;
}
.fixed .logo img:first-child {
  display: none !important;
}
.fixed .logo img:last-child {
  display: block !important;
}
.fixed .contact > span {
  border-color: #6a3acd !important;
}
.fixed .contact > span i {
  color: #6a3acd;
}
.fixed .contact p {
  color: #6a3acd !important;
}
.fixed .contact p span {
  color: #6a3acd !important;
}
.fixed .right .login-box i {
  background-color: #666 !important;
}
.actived {
  opacity: 0 !important;
  transform: translateY(-110%) !important;
}
/* ---------- footer css  --------- */
footer {
  background: url(../images/footerbg.jpg) no-repeat center;
  background-size: cover;
}
footer * {
  color: #fff;
}
footer .foot {
  padding: 2.5rem 0;
}
footer .foot .f-item {
  margin-right: 8%;
}
footer .foot .f-item:last-child {
  margin-right: 0;
}
footer .foot .f-item h4 {
  margin-bottom: 1rem;
  font-size: 0.7rem;
  white-space: nowrap;
}
footer .foot .f-item a {
  font-size: 0.6rem;
  color: #ffffff;
  line-height: 1.8rem;
  white-space: nowrap;
  opacity: 0.5;
  transition: all 0.3s ease;
}
footer .foot .f-item a:hover {
  opacity: 1;
  transform: translateX(0.25rem);
}
footer .foot .f-item > div .wechat:first-child {
  margin-right: 1rem;
}
footer .foot .f-item > div .wechat img {
  width: 4.5rem;
}
footer .foot .f-item > div .wechat p {
  font-size: 0.6rem;
  text-align: center;
}
footer .foot .f-item p {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}
footer .foot .f-item p i {
  display: inline-block;
  margin-right: 0.25rem;
  color: inherit;
}
footer .foot .f-item p span {
  font-size: 1.2rem;
  color: #fff;
}
footer .foot .f-item .video-icon .v {
  position: relative;
  margin-right: 10px;
}
footer .foot .f-item .video-icon .v span {
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  border-radius: 50%;
}
footer .foot .f-item .video-icon .v span i {
  font-size: 20px;
  color: #fff;
}
footer .foot .f-item .video-icon .v .mark {
  position: absolute;
  width: 100px;
  height: 100px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50%;
  transition: all 0.36s ease;
  z-index: -1;
  opacity: 0;
}
footer .foot .f-item .video-icon .v:hover .mark {
  bottom: 130%;
  z-index: 1;
  opacity: 1;
}
footer .foot .contact .tel > span {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  border-radius: 50%;
  border: 0.05rem solid #fff;
}
footer .foot .contact .tel > span i {
  font-size: 1.5rem;
  color: #fff;
}
footer .foot .contact .tel h3 {
  margin-left: 0.5rem;
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
}
footer .foot .contact .tel h3 span {
  font-size: 0.6rem;
  margin-bottom: 0.25rem;
}
footer .foot .contact p {
  font-size: 0.7rem;
  line-height: 1.8rem;
}
footer .foot .contact p i {
  margin-right: 0.4rem;
}
footer .copyRight {
  padding: 1rem 0;
  border-top: 0.05rem solid rgba(255, 255, 255, 0.1);
}
footer .copyRight p,
footer .copyRight a {
  font-size: 0.6rem;
  line-height: 1rem;
  opacity: 0.3;
}
footer .copyRight .jc {
  font-size: 0.6rem;
  display: flex;
  align-items: center;
}
footer .copyRight .jc img {
  width: 0.8rem;
}
footer .copyRight .jc .cp {
  margin-right: 60px;
  display: flex;
}
footer .copyRight .jc .cp a {
  color: #fff;
  opacity: 1;
}
footer .copyRight .jc p {
  margin-left: 0.5rem;
  color: #fff;
  opacity: 0.5;
  font-size: 0.6rem;
}
footer .copyRight .jc .police img {
  margin-right: 0.25rem;
}
footer .copyRight a {
  color: #fff;
  margin-right: 0.25rem;
}
footer .copyRight a:hover {
  opacity: 1;
}
/* ---------- 侧边悬浮栏 css  --------- */
.aside-tags {
  position: fixed;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}
.aside-tags ul li {
  position: relative;
  border-bottom: 0.05rem solid #6a3acd;
  box-shadow: 0 0.1rem 0.65rem rgba(0, 0, 0, 0.1);
}
.aside-tags ul li:last-child {
  border-bottom: 0;
}
.aside-tags ul li a {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  background-color: #fff;
  transition: all 0.4s ease;
}
.aside-tags ul li a i {
  font-size: 1.2rem;
  color: #6a3acd;
}
.aside-tags ul li a:hover {
  background-color: #6a3acd;
}
.aside-tags ul li a:hover i {
  color: #fff;
}
.aside-tags ul li .mask {
  position: absolute;
  padding: 0.5rem;
  background-color: #6a3acd;
  right: 120%;
  top: 0;
  transform: translateY(2.5rem);
  transition: all 0.36s ease;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
.aside-tags ul li .mask::before {
  position: absolute;
  content: '';
  border-width: 0.25rem;
  border-style: solid;
  border-color: transparent transparent transparent #6a3acd;
  left: 100%;
  top: 20%;
}
.aside-tags ul li .mask img {
  width: 4.5rem;
}
.aside-tags ul li .mask p {
  margin-top: 0.4rem;
  font-size: 0.6rem;
  color: #fff;
  text-align: center;
}
.aside-tags ul li .mnum {
  transform: translateY(4rem) !important;
  background-color: #6a3acd;
  padding: 0.5rem 0.7rem;
}
.aside-tags ul li .mnum h4 {
  color: #fff;
  white-space: nowrap;
  margin-top: 0.4rem;
  font-size: 1.2rem;
}
.aside-tags ul li .mnum span {
  color: #eaeaea;
  font-size: 0.6rem;
}
.aside-tags ul li .ema h4 {
  font-size: 0.9rem;
}
.aside-tags ul li:hover .mask {
  transform: translateY(0);
  opacity: 1;
  z-index: 11;
}
.aside-tags ul li:hover .mnum {
  transform: translateY(10%) !important;
}
.aside-tags ul .totop {
  transform: translateY(2rem);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.aside-tags ul .showt {
  transform: translateY(0);
  opacity: 1;
}
/* ---------- 分页器 css  --------- */
.paged {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.paged a {
  padding: 0.1rem;
  border-radius: 0.1rem;
  width: 1.8rem;
  height: 1.8rem;
  text-align: center;
  line-height: 1.8rem;
  background-color: #eaeaea;
  margin: 0 0.5rem;
}
.paged a i {
  font-size: 0.7rem;
  color: #fff;
  transform: translateY(0.1rem);
}
.paged p {
  padding: 0.1rem;
  background-color: #f4f4f4;
  border-radius: 0.1rem;
  width: 1.5rem;
  height: 1.5rem;
  text-align: center;
  line-height: 1.5rem;
  font-size: 0.8rem;
  color: #666;
}
.paged span a {
  padding: 0.1rem;
  background-color: #f4f4f4;
  border-radius: 0.1rem;
  width: 1.5rem;
  height: 1.5rem;
  text-align: center;
  line-height: 1.5rem;
  font-size: 0.8rem;
  color: #666;
}
.paged .page-num-current {
  background-color: #6a3acd;
  color: #fff;
}
/* ---------- mobile meun css  --------- */
.sidebar-wrapper {
  position: relative;
  height: 100%;
  overflow: auto;
}
#dowebok {
  background-color: #fff;
  right: -100%;
  opacity: 0;
}
#dowebok .nav {
  margin-top: 90px;
  line-height: 40px;
  list-style-type: none;
}
#dowebok .nav li {
  margin: 0 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 0.05rem solid rgba(0, 0, 0, 0.1);
}
#dowebok .nav a {
  padding: 0.75rem 0;
  display: block;
  margin: 0 1rem;
  color: #666;
  font-size: 16px;
  text-align: left;
  text-decoration: none;
  flex: 1;
}
.oon {
  opacity: 1 !important;
}
.show {
  left: 0;
  right: auto !important;
}
/* ---------- 导航菜案按钮  --------- */
.menu-box {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3005;
}
.navbar-toggle {
  position: relative;
  float: right;
  padding: 0.45rem 0.5rem;
  margin-right: 0.25rem;
  background-color: transparent;
  background-image: none;
  border: 0.05rem solid transparent;
  border-radius: 0.2rem;
  z-index: 3001;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 1.1rem;
  height: 0.1rem;
  border-radius: 0.05rem;
  background-color: #fff;
  transition: linear 0.3s;
}
.black {
  background-color: #000 !important;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 0.2rem;
}
.navbar-toggle .icon-bar:nth-child(3) {
  margin-top: -0.1rem;
}
.close-nav .icon-bar:nth-child(1),
.close-nav .icon-bar:nth-child(4) {
  background: none !important;
}
.close-nav .icon-bar:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.close-nav .icon-bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/*----- 按钮 -----*/
@-webkit-keyframes actif-btn-wave {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    -webkit-transform-origin: center;
    transform-origin: center;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
    -webkit-transform-origin: center;
    transform-origin: center;
  }
}
@-webkit-keyframes anim-moema-1 {
  60% {
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
  }
  85% {
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* ----- 环形按钮 ----- */
.more-btn {
  position: relative;
  display: inline-block;
  padding: 0.6rem 2rem;
  font-size: 0.8rem;
  color: #fff;
  background-color: #6a3acd;
  border-radius: 1rem;
}
.more-btn::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  border: 0.05rem solid #6a3acd;
  top: 50%;
  left: 50%;
  padding: 0.5rem;
  transform: translate(-50%, -50%);
  border-radius: inherit;
  border-radius: 1.5rem;
  -webkit-animation: actif-btn-wave 1s infinite ease-out;
}
.more-btn:hover {
  -webkit-animation: anim-moema-1 0.4s forwards;
  animation: anim-moema-1 0.4s forwards;
}
/* ------- 背景缩放按钮 ------- */
.scaleBtn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}
.scaleBtn::before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  z-index: -1;
  background-color: #6a3acd;
  transition: all 0.46s ease;
  opacity: 0;
}
.scaleBtn:hover {
  color: #fff;
}
.scaleBtn:hover::before {
  transform: translate(-50%, -50%) scale(6);
  opacity: 1;
}
.yiffo {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}
