/* 子元素-平均分栏 */
.flex1 {
  flex: 1;
}
/* 父元素-横向排列（主轴） */
.flex-h {
  display: flex;
  flex-direction: row;
}
/* 父元素-横向换行 */
.flex-hw {
  flex-wrap: wrap;
}
/* 父元素-水平居中（主轴是横向才生效） */
.flex-hc {
  justify-content: center;
}
/* 父元素-纵向排列（主轴） */
.flex-v {
  display: flex;
  flex-direction: column;
}
/* 父元素-纵向换行 */
.flex-vw {
  flex-wrap: wrap;
}
/* 父元素-竖直居中（主轴是横向才生效） */
.flex-vc {
  align-items: center;
}
/* 子元素-显示在从左向右（从上向下）第1个位置，用于改变源文档顺序显示 */
.flex-1 {
  order: 1;
}
/* 子元素-显示在从左向右（从上向下）第2个位置，用于改变源文档顺序显示 */
.flex-2 {
  order: 2;
}
@media screen and (min-width: 1200px) and (max-width: 1600px) {
  html,
  body {
    font-size: 14px;
  }
}
@media screen and (min-width: 1600px) {
  html,
  body {
    font-size: 16px;
  }
}
a {
  cursor: pointer;
  user-select: none;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@media screen and (min-width: 1200px) {
  .animate-logo {
    position: absolute;
    z-index: 9;
    left: 48vw;
    right: 48vw;
    bottom: 1vw;
    text-align: center;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0s infinite alternate;
  }
  .animate-logo .icon_gf_logo {
    display: inline-block;
    width: 2.5vw;
    height: 2.5vw;
    background: url("https://cdn.gfzq.cn/hkstore/hkportal/sprites/icon-675-644-562.png");
    background-repeat: no-repeat;
    background-size: 21.0938vw 20.125vw;
    background-position: -5.3125vw -15.4688vw;
  }
  .animate-logo .animate-text {
    color: #fff;
    display: inline-block;
    margin-top: 0.6vw;
    font-size: 12px;
    word-break: keep-all;
    writing-mode: tb;
    letter-spacing: 3.2px;
  }
  .row {
    margin: 0 auto;
    box-sizing: border-box;
    width: 64vw;
  }
  .header-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .header {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 4vw;
    background: #fff;
  }
  .header.gold {
    background: #000;
  }
  .header.gold .navbar .menu div a,
  .header.gold .navbar .lang a {
    color: rgba(255, 255, 255, 0.7);
  }
  .header.slider {
    animation: fadeInDowns 1s ease-in-out;
  }
  .header .groups {
    position: relative;
  }
  .header .groups .popover {
    list-style: none;
    z-index: 999;
    position: absolute;
    top: 4vw;
    left: -0.5vw;
    right: -0.5vw;
    overflow: hidden;
    border-radius: 0.52vw;
    height: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0.25rem 0 rgba(7, 35, 105, 0.15);
  }
  .header .groups .popover li {
    text-align: center;
    letter-spacing: 0.5px;
  }
  .header .groups .popover li a {
    color: rgba(3, 3, 3, 0.5);
    cursor: pointer;
  }
  .header .groups .popover li:hover a {
    color: #CFA979;
  }
  .header .groups:hover .popover {
    height: auto;
    box-sizing: border-box;
    padding: 0.5vw 0 1vw;
  }
  .header.change {
    background: none;
  }
  .header.change.home_header .navbar .site-nav-menus .navbar-menu .menu div a,
  .header.change.home_header .navbar .site-nav-menus .navbar-menu .lang a {
    color: rgba(255, 255, 255, 0.7);
  }
  .header.change .navbar .site-nav-menus .navbar-menu .menu a {
    color: #333;
  }
  .header.change .navbar .site-nav-menus .navbar-menu .menu a:hover {
    color: #CFA979;
  }
  .header.change .navbar .site-nav-menus .navbar-menu .lang a {
    color: #333;
  }
  .header.change .navbar .site-nav-menus .navbar-menu .lang a:hover {
    color: #CFA979;
  }
  .header.change .navbar .site-nav-menus .navbar-menu .lang span {
    color: rgba(255, 255, 255, 0.7);
  }
  .header.change .popover {
    background: rgba(255, 255, 255, 0.7);
  }
  .tran {
    width: 0;
    height: 0;
    margin-top: 0.3rem;
    margin-left: 0.3rem;
    border-top: 0.3rem solid rgba(255, 255, 255, 0.5);
    border-left: 0.3rem solid transparent;
    border-right: 0.3rem solid transparent;
    border-bottom: 0.3rem solid transparent;
    display: none;
  }
  .navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 4vw;
  }
  .navbar .navbar-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .navbar .navbar-icon img {
    cursor: pointer;
    margin-left: -0.3vw;
  }
  .navbar .navbar-icon .white {
    height: 42px;
  }
  .navbar .navbar-icon .gold {
    height: 42px;
  }
  .navbar .navbar-menu {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
  }
  .navbar .navbar-menu.En .groups .popover {
    left: -1.2vw;
    right: -1.2vw;
  }
  .navbar .navbar-menu.En a {
    font-family: Arial;
  }
  .navbar .menu a {
    color: #222;
  }
  .navbar .menu a:hover {
    color: #CFA979;
  }
  .navbar .menu:hover > a {
    color: #c1a579;
  }
  .navbar .menu:not(:last-child) {
    height: 4vw;
  }
  .navbar .menu > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 4vw;
    box-sizing: border-box;
    white-space: nowrap;
  }
  .navbar .lang {
    padding-left: 1.2vw;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .navbar .lang a {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    cursor: pointer;
  }
  .navbar .lang a:hover {
    color: #CFA979 !important;
  }
  .navbar .lang span {
    cursor: pointer;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.7);
    padding: 0 0.6vw;
    transform: scale(0.9);
  }
  .navbar .nav-toggle {
    display: none;
  }
}
@media screen and (min-width: 1600px) {
  .menu a,
  .lang a {
    font-size: 16px;
  }
  .menu:not(:last-child) {
    padding: 0 1.3vw;
  }
  .popover li {
    padding: 12px;
  }
  .popover li a {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1600px) {
  .menu a,
  .lang a {
    font-size: 14px;
  }
  .navbar-menu.En .menu:not(:last-child) {
    padding: 0 0.5vw \0;
  }
  .menu:not(:last-child) {
    padding: 0 1vw;
  }
  .popover li {
    padding: 7px;
  }
  .popover li a {
    font-size: 13px;
    font-size: 12px\0;
  }
}
@media screen and (max-width: 1200px) {
  .row {
    width: inherit;
  }
  .row::after {
    content: '';
    clear: both;
  }
}
@keyframes fadeInDowns {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 1200px) {
  .row {
    padding: 0 3.2vw;
  }
  .header {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 12vw;
    background: #C7A877;
  }
  .header.slider {
    animation: all 0.8s ease-in-out 0s;
  }
  .header.change {
    background: #C7A877;
  }
  .header.change .groups .popover {
    background: none;
    border-radius: 0;
  }
  .header.change .groups .popover li:hover {
    background: none;
  }
  .header.change .groups .popover::before {
    display: none;
  }
  .header.change .groups .popover a {
    color: #000;
  }
  .header.home_header {
    background: #C7A877;
  }
  .header .groups:hover .popover {
    line-height: normal;
  }
  .header .groups .popover {
    display: inherit;
    background: none;
    transition: all 0.3s ease-out;
  }
  .header .groups .popover::before {
    content: inherit;
    background: none;
    position: inherit;
    margin: 0;
  }
  .header .navbar-menu.En li a {
    font-family: 'Arial';
  }
  .header .navbar-menu.En .groups .popover li {
    padding-left: 10vw;
  }
  .navbar {
    height: 12vw;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .navbar .navbar-menu {
    box-sizing: border-box;
    display: block;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    transform: translateX(-120%);
    position: fixed;
    left: 0;
    bottom: 0;
    top: 12vw;
    width: 66.66vw;
    min-height: calc(100% - 12vw);
    overflow-y: scroll;
    background: #fff;
  }
  .navbar .navbar-menu.En .menu div a {
    padding-left: 10vw;
  }
  .navbar .menu {
    border-bottom: 0.26vw solid rgba(0, 0, 0, 0.1);
  }
  .navbar .menu > div {
    justify-content: space-between;
    padding: 0;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
  }
  .navbar .menu > div a {
    padding: 4.3vw 0 4.3vw 17.06vw;
  }
  .navbar .menu:not(:last-child) {
    display: block;
    cursor: pointer;
    justify-content: center;
    height: auto;
    align-items: center;
  }
  .navbar .menu a {
    color: #333;
    font-size: 4.57vw;
    cursor: pointer;
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .navbar .menu a:hover {
    color: #CFA979;
  }
  .navbar .menu:hover > a {
    color: #333;
  }
  .navbar .navbar-icon img {
    height: 7.46vw;
  }
  .navbar .navbar-icon .gold {
    height: 7.46vw;
  }
  .navbar .nav-toggle {
    display: block;
    width: 12vw;
    height: 12vw;
    position: absolute;
    z-index: 12;
    left: 0;
    top: 0;
    transition: none;
  }
  .navbar .nav-toggle:before,
  .navbar .nav-toggle:after,
  .navbar .nav-toggle span {
    position: absolute;
    content: "";
    background: #fff;
    height: 0.8vw;
    width: 4.8vw;
    top: 5.6vw;
    left: 3.2vw;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    overflow: hidden;
  }
  .navbar .nav-toggle:before {
    top: 4vw;
  }
  .navbar .nav-toggle:after {
    top: 7.2vw;
  }
  .navbar .lang {
    display: block;
    padding-left: 0;
  }
  .navbar .lang a {
    color: #000000;
    display: block;
    height: 4vw;
    line-height: 4vw;
    text-align: center;
    border-bottom: 1px solid #eee;
    cursor: pointer;
  }
  .navbar .site-nav-menus {
    position: fixed;
    z-index: 999;
    top: 12vw;
    left: 0;
    width: 0%;
    height: 100%;
    overflow: hidden;
  }
  .navbar .site-nav-menus .button-close {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 15vw;
    height: 15vw;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    z-index: 2;
  }
  .navbar .site-nav-menus .button-close span {
    display: block;
  }
  .navbar .site-nav-menus .button-close .btn-top,
  .navbar .site-nav-menus .button-close .btn-btm {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .navbar .site-nav-menus .button-close .btn-top .line,
  .navbar .site-nav-menus .button-close .btn-btm .line {
    position: absolute;
    left: 5vw;
    width: 4.5vw;
    height: 0.6vw;
    background: #FFF;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .navbar .site-nav-menus .button-close .btn-top {
    transform: rotate(45deg);
  }
  .navbar .site-nav-menus .button-close .btn-top .line {
    top: 7.5vw;
  }
  .navbar .site-nav-menus .button-close .btn-btm {
    transform: rotate(-45deg);
  }
  .navbar .site-nav-menus .button-close .btn-btm .line {
    bottom: 7.6vw;
  }
  .navbar.nav-open .site-nav-menus {
    width: 100%;
  }
  .navbar.nav-open .nav-toggle:before,
  .navbar.nav-open .nav-toggle:after {
    top: 6.1875vw;
  }
  .navbar.nav-open .nav-toggle:before {
    transform: rotate(45deg);
  }
  .navbar.nav-open .nav-toggle:after {
    transform: rotate(-45deg);
  }
  .navbar.nav-open .nav-toggle span {
    opacity: 0;
  }
  .navbar.nav-open .navbar-menu {
    transform: scale(1);
    transition: transform 0.55s, opacity 0.55s;
  }
  .navbar.nav-open .btn-top,
  .navbar.nav-open .btn-btm {
    transition: transform 0.2s 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  }
  .navbar.nav-open .btn-top line,
  .navbar.nav-open .btn-btm line {
    transition: transform 0.2s 0.2s, height 0.2s 0.2s;
  }
  .arrow {
    width: 1.52vw;
    height: 3vw;
    display: block;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    margin-right: 3.73vw;
  }
  .header .groups {
    /* &:nth-of-type(2) {
        &.current {
          .popover {
            height: 60vw !important;
          }
        }
      }

      &:nth-of-type(6) {
        &.current {
          .popover {
            height: 49.5vw !important;
          }
        }
      }

      &:nth-of-type(3) {
        &.current {
          .popover {
            height: 30vw !important;
          }
        }
      }


      &:nth-of-type(4),
      &:nth-of-type(5),
      &:nth-of-type(7) {
        &.current {
          .popover {
            height: 20vw !important;
          }
        }
      }  */
  }
  .header .groups.current .arrow {
    transform: rotate(90deg);
  }
  .header .groups .popover {
    position: initial;
    overflow: hidden;
    max-height: 0;
    padding: 0 !important;
    transition: max-height 0.5s ease-out;
  }
  .header .groups .popover li {
    text-align: left;
    padding: 0 0 3.73vw 17.6vw;
  }
  .header .groups .popover li a {
    color: #000;
    opacity: 0.5;
    font-size: 4.26vw;
    line-height: normal;
    display: block;
  }
  .header .groups .popover li:hover {
    transform: scale(1);
  }
  .header .groups .popover li:hover a {
    opacity: 1;
    color: #C7A877;
  }
  .header .groups.current .popover {
    max-height: 70vw;
  }
  .header .groups.current .popover li {
    transform-origin: 0 50%;
    transform: scale(1);
    opacity: 1;
  }
  .header .groups.current .popover a {
    transition: padding-bottom 0.25s;
  }
}

.footer {
  margin-top: 7.3vw;
  background: #F0F0F0;
}
.footer .row {
  padding-top: 3.1vw;
  padding-bottom: 2.1vw;
}
.footer .friends {
  display: flex;
  padding-bottom: 1vw;
}
.footer .friends.En h5,
.footer .friends.En li {
  font-family: 'Arial';
}
.footer .friends .links-content {
  display: flex;
}
.footer .friends h5 {
  font-size: 16px;
  line-height: 26px;
  color: #000;
  margin-bottom: 1vw;
}
.footer .friends ul {
  list-style: none;
  line-height: 2.1vw;
}
.footer .friends ul li {
  cursor: pointer;
  line-height: 1.5;
  margin-bottom: 0.8vw;
}
.footer .friends ul li:hover {
  color: #28489B;
}
.footer .friends .links {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  padding-right: 4vw;
}
.footer .friends .links a {
  color: #666;
  text-decoration: none;
}
.footer .friends .links a:hover {
  color: #28489B;
}
.footer .friends .qr {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.footer .friends .qr div {
  text-align: center;
  padding-left: 1.6vw;
}
.footer .friends .qr div img {
  width: 6.8vw;
  height: 6.8vw;
}
.footer .friends .qr div span {
  padding-top: 1vw;
  display: block;
  font-size: 12px;
  color: #000;
}
.footer .address {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 14px;
  line-height: 24px;
  color: #666;
}
.footer .address p {
  margin-top: 6px;
}
.footer .address p:nth-of-type(1) {
  margin-top: 0.2vw;
}
.footer .address .tel {
  color: #666;
  text-decoration: none;
  margin-top: 22px;
}
.footer .address .tax {
  margin-left: 1vw;
}
.footer .address .split {
  margin: 17px 0;
  height: 1px;
  background-color: #CCCCCC;
}
.footer .address .gov {
  margin-top: 22px;
}
.footer .address-content.En h5,
.footer .address-content.En p {
  font-family: 'Arial';
}
.footer .address-content h5 {
  font-size: 16px;
  line-height: 26px;
  color: #000;
  margin-bottom: 1vw;
}
.footer .address-content .address {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 14px;
  line-height: 24px;
  color: #666;
}
.footer .address-content .address p {
  margin-top: 6px;
}
.footer .address-content .address p:nth-of-type(1) {
  margin-top: 0.2vw;
}
.footer .address-content .address .tel {
  color: #666;
  text-decoration: none;
  margin-top: 22px;
}
.footer .address-content .address .tax {
  margin-left: 1vw;
}
.footer .address-content .address .split {
  margin: 17px 0;
  height: 1px;
  background-color: #CCCCCC;
}
.footer .address-content .address .gov {
  margin-top: 22px;
}
.footer-err {
  margin-top: 120px;
  background: #22262d;
  color: #999;
  font-size: 14px;
}
.footer-err .row {
  padding: 61px 0 30px;
}
.footer-err .row .footer-top {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(102, 102, 102, 0.5);
}
.footer-err .row .footer-top strong {
  color: #fff;
  font-size: 18px;
  margin-bottom: 18px;
  display: block;
  font-weight: normal;
}
.footer-err .row .footer-top p {
  line-height: 2vw;
}
.footer-err .row .footer-center {
  border-bottom: 1px solid rgba(102, 102, 102, 0.5);
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.footer-err .row .footer-center .friends {
  display: flex;
  padding-bottom: 15px;
  margin-top: 29px;
}
.footer-err .row .footer-center .friends .friends-link {
  display: flex;
  margin-left: 10px;
}
.footer-err .row .footer-center .friends ul {
  display: flex;
}
.footer-err .row .footer-center .friends li {
  margin-right: 50px;
}
.footer-err .row .footer-center .friends li h5 {
  color: #eee;
  margin-bottom: 22px;
  font-weight: normal;
  font-size: 16px;
}
.footer-err .row .footer-center .friends li p a {
  display: block;
  color: #999;
  margin-bottom: 16px;
}
.footer-err .row .footer-center .friends li p a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.footer-err .row .footer-center .friends .qr {
  flex: 1;
  display: flex;
  margin-right: 10px;
  justify-content: flex-end;
}
.footer-err .row .footer-center .friends .qr div {
  text-align: center;
  padding-left: 80px;
}
.footer-err .row .footer-center .friends .qr div img {
  width: 130px;
  height: 130px;
}
.footer-err .row .footer-center .friends .qr div .back_ground_erweimajiaoyi {
  display: block;
}
.footer-err .row .footer-center .friends .qr div .back_ground_erweimagongzonghao {
  display: block;
}
.footer-err .row .footer-center .friends .qr div span {
  padding-top: 1vw;
  display: block;
  font-size: 16px;
  text-align: center;
  line-height: 22px;
  color: #999;
}
.footer-err .row .footer-center .text:nth-of-type(1) {
  margin-bottom: 15px;
}
.footer-err .row .footer-center .text a {
  color: #999;
}
.footer-err .row .footer-center .text:nth-of-type(2) a {
  margin-right: 30px;
}
.footer-err .row .footer-center .text:nth-of-type(2) a:nth-of-type(3) {
  margin-left: 70px;
}
.footer-err .row .footer-center .text a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.footer-err .row .footer-bottom .address,
.footer-err .row .footer-bottom .tel,
.footer-err .row .footer-bottom .account {
  margin-top: 20px;
}
.footer-err .row .footer-bottom p em {
  font-style: normal;
}
.footer-err .row .footer-bottom p span {
  margin-right: 1.2vw;
}
.footer-err .row .footer-bottom p.copyright {
  margin-top: 31px;
}
.footer-err .row .copyright {
  margin-top: 20px;
}
.weixin-icon {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  margin: 3px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #333;
  transition: all 300ms ease 0s;
  background: transparent;
}
.weixin-icon .wx_hover {
  display: none;
}
.weixin-icon:hover {
  background: #333;
}
.weixin-icon:hover .wx_normal {
  display: none;
}
.weixin-icon:hover .wx_hover {
  display: block;
}
.weixin-icon img {
  width: 25px !important;
  height: 25px !important;
  display: block;
  cursor: pointer;
}
.weixin {
  position: relative;
}
.weixin .weixin-content {
  position: absolute;
  left: -40px;
  top: 60px;
}
.weixin .weixin-content.show {
  display: block;
}
.weixin .weixin-content.hide {
  display: none;
}
.in .weixin-icon img {
  width: 20px !important;
  height: 20px !important;
}
.in_icon .in_hover {
  display: none;
}
.in_icon:hover .in_normal {
  display: none;
}
.in_icon:hover .in_hover {
  display: block;
}
@media screen and (max-width: 1200px) {
  .footer {
    margin-top: 12vw;
    background: #f0f0f0;
    padding: 4.8vw 4.8vw 9vw;
  }
  .footer .row {
    width: 100%;
    padding: 0;
  }
  .footer .friends {
    display: inline;
  }
  .footer .friends.En h5,
  .footer .friends.En li {
    font-family: 'Arial';
  }
  .footer .friends .links-content {
    justify-content: space-between;
  }
  .footer .friends ul {
    line-height: 6.5vw;
  }
  .footer .friends ul li {
    margin-bottom: 1.8vw;
  }
  .footer .friends h5 {
    font-size: 3.73vw;
    margin-bottom: 1.7vw;
  }
  .footer .friends .links {
    padding-right: 2vw;
    font-size: 3.2vw;
  }
  .footer .friends .weixin .weixin-content {
    left: -7vw;
    top: 14vw;
  }
  .footer .friends .weixin .weixin-icon img {
    width: 5vw !important;
    height: 5vw !important;
  }
  .footer .friends .qr {
    justify-content: center;
    margin-top: 2vw;
  }
  .footer .friends .qr .weixin-icon {
    width: 10vw;
    height: 10vw;
  }
  .footer .friends .qr div {
    padding-left: 0;
    text-align: left;
  }
  .footer .friends .qr div:nth-of-type(1) {
    margin-right: 4.33vw;
  }
  .footer .friends .qr div:nth-of-type(2) {
    margin-right: 7.33vw;
  }
  .footer .friends .qr div img {
    width: 23.46vw;
    height: 23.46vw;
  }
  .footer .friends .qr div span {
    font-size: 3.2vw;
    padding-top: 3.2vw;
  }
  .footer .address-content.En h5,
  .footer .address-content.En p {
    font-family: 'Arial';
  }
  .footer .address-content h5 {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin-bottom: 1vw;
  }
  .footer .address-content .address {
    padding-top: 5.8vw;
    justify-content: center;
    font-size: 2.66vw;
    display: block;
  }
  .footer .address-content .address div:nth-of-type(1) {
    margin-bottom: 3.2vw;
  }
  .footer .address-content .address p {
    line-height: 3.73vw;
  }
  .footer .address-content .address .tel {
    margin-left: 0.3rem;
  }
  .footer-err {
    margin-top: 9.6vw;
    padding: 6.4vw 3.2vw;
  }
  .footer-err .row {
    padding-top: 0;
    padding-bottom: 0;
  }
  .footer-err .footer-top p {
    line-height: 1.5 !important;
  }
  .footer-err .footer-top strong {
    font-size: 4.26vw;
    color: #eee;
    display: block;
    margin-bottom: 3.2vw;
  }
  .footer-err .footer-top p {
    line-height: 4.8vw;
    font-size: 3.2vw;
    text-align: justify;
  }
  .footer-err .footer-center .friends {
    display: inline !important;
  }
  .footer-err .footer-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .footer-err .footer-center {
    border-top: 1px solid rgba(102, 102, 102, 0.5);
    border-bottom: none;
    margin-top: 30px;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .footer-err .footer-center .friends {
    display: initial;
  }
  .footer-err .footer-center .friends .friends-link {
    display: initial;
  }
  .footer-err .footer-center .friends ul {
    display: flex;
    flex: 1;
    flex-direction: column;
  }
  .footer-err .footer-center .friends li {
    border-bottom: 0.3vw solid #666666;
    font-size: 3.7vw;
    margin-right: 0 !important;
  }
  .footer-err .footer-center .friends li h5 {
    height: 11.46vw;
    line-height: 11.46vw;
    color: #eeeeee;
    display: flex;
    align-items: center;
    margin-bottom: 0 !important;
  }
  .footer-err .footer-center .friends li h5 i {
    display: block;
    margin-left: auto;
    width: 2.67vw;
    height: 2.9vw;
    display: inline-block;
    transition: all 0.2s ease-in-out 0s;
  }
  .footer-err .footer-center .friends li p {
    color: #eeeeee;
    padding-left: 3.73vw;
    height: 0;
    overflow: hidden;
    transition: all 0.2s ease-in-out 0s;
  }
  .footer-err .footer-center .friends li p a {
    margin-bottom: 5vw;
  }
  .footer-err .footer-center .friends li.current i {
    transform: rotate(45deg);
  }
  .footer-err .footer-center .friends li.current p {
    padding-top: 2vw;
  }
  .footer-err .footer-center .friends li:nth-of-type(1).current p {
    height: 50vw;
  }
  .footer-err .footer-center .friends li:nth-of-type(2).current p {
    height: 16vw;
  }
  .footer-err .footer-center .friends li:nth-of-type(3).current p {
    height: 50vw;
  }
  .footer-err .footer-center .friends li:nth-of-type(4).current p {
    height: 35vw;
  }
  .footer-err .footer-center .friends li:nth-of-type(5).current p {
    height: 43vw;
  }
  .footer-err .footer-center .friends .qr {
    margin: 8.1vw 0;
    justify-content: space-between;
  }
  .footer-err .footer-center .friends .qr div {
    padding-left: 0;
  }
  .footer-err .footer-center .friends .qr div img {
    width: 37.33vw;
    height: 37.33vw;
  }
  .footer-err .footer-center .friends .qr div span {
    color: #eee;
    font-size: 3.7vw;
    display: block;
    margin-top: 4.8vw;
  }
  .footer-err .footer-center .text {
    line-height: 4.8vw;
    font-size: 3.2vw;
  }
  .footer-err .footer-center .text:nth-of-type(2) {
    margin-top: 4.8vw;
  }
  .footer-err .footer-center .text:nth-of-type(2) span {
    display: block;
    margin-bottom: 1vw;
  }
  .footer-err .footer-center .text:nth-of-type(2) a {
    display: inline-block;
  }
  .footer-err .footer-center .text:nth-of-type(2) a:nth-of-type(3) {
    margin-left: 0;
  }
  .footer-err .footer-bottom .footer-bottom-h5 {
    margin-top: 4.8vw;
    display: flex;
    flex-direction: column-reverse;
  }
  .footer-err .footer-bottom .footer-bottom-h5 em {
    font-weight: normal;
    display: block;
    color: #999;
    margin-bottom: 4.8vw;
    font-size: 3.7vw;
    margin-left: 3.2vw;
  }
  .footer-err .footer-bottom .footer-bottom-h5 .tel span {
    display: block;
    margin-left: -2.2vw;
    margin-bottom: 4.6vw;
  }
  .footer-err .footer-bottom .footer-bottom-h5 .address span {
    display: block;
    font-size: 3.7vw;
    margin-bottom: 3.7vw;
  }
  .footer-err .footer-bottom .footer-bottom-h5 .account {
    font-size: 3.7vw;
  }
  .footer-err .copyright {
    margin-top: 4.6vw !important;
    text-align: center;
    font-size: 3.2vw;
    color: #888;
    background: none;
  }
}

@media screen and (min-width: 1200px) {
  .curve_line {
    display: inline-block;
    width: 406px;
    height: 32px;
    background: url("https://cdn.gfzq.cn/hkstore/hkportal/sprites/home_line_icon-812-145.png");
    background-repeat: no-repeat;
    background-size: 406px 61.0526px;
    background-position: 0px 0px;
    position: absolute;
    left: 50%;
    margin-left: -203px;
    margin-top: 46px;
  }
  .bg-p2-title {
    display: inline-block;
    margin-bottom: 0;
    position: absolute;
    left: 50%;
    margin-left: -175px;
    margin-top: 0 !important;
    font-size: 34px;
    color: #000000;
    line-height: 45px;
    font-weight: normal;
  }
  .bg-p2-title-en {
    display: inline-block;
    margin-bottom: 0;
    position: absolute;
    left: 50%;
    min-width: 200px;
    text-align: center;
    margin-left: -204px;
    margin-top: 0 !important;
    font-size: 26px;
    color: #000000;
    line-height: 45px;
    font-weight: normal;
  }
  .bg-en-title {
    position: absolute;
    left: 52%;
    margin-top: 54px;
    color: rgba(0, 0, 0, 0.1);
    font-size: 24px;
    font-style: italic;
    font-family: arial;
  }
  .bg {
    display: inline-block;
  }
  .white-bg {
    color: #fff;
  }
  .curve_line.white-bg {
    width: 406px;
    height: 32px;
    background: url("https://cdn.gfzq.cn/hkstore/hkportal/sprites/home_line_icon-812-145.png");
    background-repeat: no-repeat;
    background-size: 406px 72.5px;
    background-position: 0px -40.5px;
  }
}
@media screen and (max-width: 1200px) {
  .curve_line {
    display: inline-block;
    width: 62.93vw;
    height: 6.4vw;
    background: url("https://cdn.gfzq.cn/hkstore/hkportal/sprites/home_line_icon-812-145.png");
    background-repeat: no-repeat;
    background-size: 62.93vw 12.2105vw;
    background-position: 0vw 0vw;
    position: absolute;
    left: 50%;
    margin-left: -31.47vw;
  }
  .bg-p2-title {
    padding-left: 17vw;
    text-align: center !important;
    font-size: 4.33vw;
    color: #000000;
    line-height: 22px;
    margin-bottom: 0 !important;
    font-weight: normal;
    width: 28vw;
  }
  .bg-p2-title-en {
    padding-left: 17vw;
    text-align: center !important;
    font-size: 4.53vw;
    color: #000000;
    line-height: 22px;
    margin-bottom: 0 !important;
    font-weight: normal;
    width: 28vw;
  }
  .bg-en-title {
    position: absolute;
    left: 54%;
    margin-top: 6px;
    color: rgba(0, 0, 0, 0.3);
    font-size: 3.2vw;
    font-style: italic;
    font-family: arial;
  }
  .bg {
    display: inline-block;
  }
  .white-bg {
    color: #fff;
  }
  .curve_line.white-bg {
    width: 62.93vw;
    height: 6.4vw;
    background: url("https://cdn.gfzq.cn/hkstore/hkportal/sprites/home_line_icon-812-145.png");
    background-repeat: no-repeat;
    background-size: 62.93vw 14.5vw;
    background-position: 0vw -8.1vw;
  }
}

.bread {
  font-size: 14px;
  padding: 1.6vw 0;
  display: flex;
  align-items: center;
}
.bread div:not(:last-child) {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.bread div:not(:last-child) a {
  color: #C7A877;
}
.bread div:not(:last-child):after {
  content: '';
  display: inline-block;
  padding-right: 1vw;
  margin-right: 1vw;
  height: 0.6vw;
  border-right: 1px solid #000;
}
.bread div:last-child {
  color: #000;
}
.p2-title {
  font-family: MicrosoftYaHei;
  font-size: 34px;
  color: #000000;
  line-height: 45px;
  font-style: normal;
  text-align: center;
  margin-top: 3vw;
  text-transform: uppercase;
  font-weight: normal;
}
.p2-title.En {
  letter-spacing: 0;
}
.p2-title-shadow {
  font-family: 'arial';
  opacity: 0.08;
  font-size: 2.5vw;
  color: #193C96;
  letter-spacing: 0;
  text-align: center;
  margin-top: -1.5vw;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  .bread {
    display: none;
  }
  .p2-title {
    font-size: 4.8vw;
    margin-top: 5vw;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
  }
  .p2-title.En {
    letter-spacing: 0;
  }
  .p2-title-shadow {
    font-size: 4.8vw;
    font-family: "arial";
    font-weight: bold;
    margin-top: -1.5vw;
  }
}

.banner {
  position: relative;
  height: calc(100vh - 4vw);
}
.banner .ban {
  width: 100vw;
  height: calc(100vh - 4vw);
  box-sizing: border-box;
}
.banner .banner1 .row {
  padding: 0 6.5rem;
  margin-top: calc(50vh - 6.55rem);
  transform: translateY(-50%);
}
.banner .banner1 .row h4 {
  color: #fff;
  font-weight: bold;
  font-size: 3.375rem;
  margin-bottom: 2.5rem;
}
.banner .banner1 .row a {
  display: inline-block;
  background: linear-gradient(90deg, #2255D6 0%, #4C74DB 100%);
  border-radius: 1.375rem;
  padding: 0 3.125rem;
  height: 2.75rem;
  line-height: 2.75rem;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
}
.banner .banner-video {
  position: relative;
  display: none;
}
.banner .banner-video::after {
  content: '';
  display: block;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.banner .banner-video video {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.banner .banner-video .main-video {
  z-index: 99;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.banner .banner-video .play-video {
  z-index: 999;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.banner .banner-video .play-video .play-icon {
  display: block;
  width: 3vw;
  height: 3vw;
  background: url(https://cdn.gfzq.cn/hkstore/hkportal/play.png);
  background-repeat: no-repeat;
  background-size: 3vw 3vw;
  background-position: 0 0;
}
.banner .swiper-page {
  position: relative;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  bottom: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.banner .swiper-page .desc {
  background: rgba(0, 0, 0, 0.3);
  width: 15rem;
  height: 17.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: none;
}
.banner .swiper-page .desc p:nth-child(1) {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
}
.banner .swiper-page .desc p:nth-child(2) {
  color: #fff;
  font-size: 0.875rem;
  margin-bottom: 1.375rem;
}
.banner .swiper-page .desc img {
  width: 8.75rem;
}
.banner .swiper-page .pager {
  text-align: right;
  margin-top: 1.5rem;
  margin-right: 2rem;
}
.banner .swiper-page .pager a {
  margin-left: 0.94rem;
  cursor: pointer;
}
.banner .swiper-page .pager a img {
  width: 1.875rem;
  height: 1.875rem;
}
.banner .swiper-page .pager a .icon_01_btn_right_1x {
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
  background: url("https://cdn.gfzq.cn/hkstore/hkportal/sprites/icon-675-644-562.png");
  background-repeat: no-repeat;
  background-size: 31.6406rem 30.1875rem;
  background-position: -23.2031rem -10.7813rem;
}
.banner .swiper-page .pager a .icon_01_btn_right_sel_1x {
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
  background: url("https://cdn.gfzq.cn/hkstore/hkportal/sprites/icon-675-644-562.png");
  background-repeat: no-repeat;
  background-size: 31.6406rem 30.1875rem;
  background-position: -17.3438rem -14.5313rem;
}
.banner .swiper-page .pager a .icon_01_btn_left_1x {
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
  background: url("https://cdn.gfzq.cn/hkstore/hkportal/sprites/icon-675-644-562.png");
  background-repeat: no-repeat;
  background-size: 31.6406rem 30.1875rem;
  background-position: -29.25rem -19.6875rem;
}
.banner .swiper-page .pager a .icon_01_btn_left_sel_1x {
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
  background: url("https://cdn.gfzq.cn/hkstore/hkportal/sprites/icon-675-644-562.png");
  background-repeat: no-repeat;
  background-size: 31.6406rem 30.1875rem;
  background-position: -23.2031rem -8.6719rem;
}
.banner .swiper-page .pager.En {
  margin-right: 5rem;
}
.banner .more {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
  text-align: center;
}
.banner .more .guide {
  width: 2.25rem;
  display: none;
  animation: guide 3s linear infinite;
}
@keyframes guide {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
    transform: scale3d(1.1);
  }
  100% {
    opacity: 1;
  }
}
.swiper-pagination {
  display: none;
}
@media screen and (max-width: 1200px) {
  .h5-wrapper {
    margin-top: 12vw;
    overflow-y: scroll;
  }
  .banner {
    height: auto;
  }
  .banner .ban {
    height: 85.33vw;
    padding-top: 0;
  }
  .banner .swiper-page,
  .banner .more {
    display: none;
  }
  .banner .banner1 .row {
    margin-top: 37.33vw;
    padding: 0;
    text-align: center;
  }
  .banner .banner1 .row h4 {
    font-size: 1.875rem;
  }
  .banner .banner1 .row a {
    display: none;
  }
  .swiper-pagination {
    display: block;
    bottom: 2.5rem !important;
  }
  .swiper-pagination-bullet {
    background: #fff;
    width: 10px;
    height: 10px;
    margin: 0 8px !important;
  }
}
.ReactModal__Overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #000;
}
.shape {
  background-color: rgba(0, 0, 0, 0.3);
}
.ReactModal__Shape {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: red;
}
.ReactModal__Content {
  padding: 0 20px !important;
  background: transparent !important;
  border: none !important;
  left: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  overflow: hidden !important;
  border-radius: 0;
}
#main-video {
  width: 100%;
  height: 100%;
}
.close-video {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.close-video span {
  display: block;
  position: relative;
  padding: 35px 50px;
  transition: all 0.5s ease-out 0s;
}
.close-video span:hover {
  transform: scale(1.2);
}
.close-video em {
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  position: absolute;
}
.close-video em:nth-of-type(1) {
  transform: rotate(45deg);
}
.close-video em:nth-of-type(2) {
  transform: rotate(-45deg);
}

.body-banner {
  position: relative;
}
.body-banner div {
  width: 100vw;
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.body-banner div h4 {
  font-weight: bold;
  font-size: 2.5vw;
  letter-spacing: 0.4vw;
  line-height: 3.3vw;
  text-shadow: 0 0.1vw 0.5vw rgba(6, 29, 91, 0.24);
  color: #fff;
  max-width: 80%;
  text-align: center;
}
.body-banner div h4.En {
  letter-spacing: 0;
}
.body-banner div h5 {
  font-weight: 300;
  font-size: 1.3vw;
  letter-spacing: 0.2vw;
  line-height: 1.6vw;
  text-shadow: 0 0.1vw 0.5vw rgba(6, 29, 91, 0.24);
  color: #fff;
  margin-top: 1vw;
  max-width: 80%;
  text-align: center;
}
.body-banner div h5.En {
  letter-spacing: 0;
}
.full {
  height: 100vh !important;
}
.full h4 {
  font-size: 2.5vw !important;
}
.p3-bg {
  width: 100vw;
  height: 360px;
  margin-bottom: -360px;
}
@media screen and (max-width: 1200px) {
  .body-banner div {
    height: 46.67vw;
    margin-top: 12vw;
  }
  .body-banner div h4 {
    font-size: 5.5vw !important;
    line-height: 5vw;
    text-align: center;
  }
  .body-banner div h5 {
    font-size: 4vw;
    margin-top: 5vw;
    padding: 0 8vw;
    line-height: 5vw;
    text-align: center;
  }
  .body-banner div.full {
    height: 46.67vw !important;
  }
  .animate-logo {
    display: none;
  }
  .p3-bg {
    height: 46.67vw;
    margin-top: 44px;
    margin-bottom: -40vw;
  }
}

.modal-img {
  text-align: center;
}
.modal-img img {
  width: 70vw;
  max-width: 300px;
  margin-top: 50vh;
  transform: translateY(-50%);
}
.modal-close {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.modal-close span {
  display: block;
  position: relative;
  padding: 35px 50px;
  transition: all 0.5s ease-out 0s;
}
.modal-close span:hover {
  transform: scale(1.2);
}
.modal-close em {
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  position: absolute;
}
.modal-close em:nth-of-type(1) {
  transform: rotate(45deg);
}
.modal-close em:nth-of-type(2) {
  transform: rotate(-45deg);
}

@media screen and (max-width: 1200px) {
  .h5-wrapper {
    width: 100%;
    overflow-x: hidden;
  }
  .h5-wrapper .fixed-ope {
    right: 2.13vw;
    z-index: 3;
    bottom: 20vw;
    position: fixed;
    right: 5.417vw;
    z-index: 5;
  }
  .h5-wrapper .fixed-ope li {
    width: 10.67vw;
    max-width: 75px;
    height: 10.67vw;
    max-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.73vw;
    margin-top: 2.13vw;
    font-weight: normal;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.15);
    position: relative;
    background: #fff;
    border-radius: 1.6vw;
  }
  .h5-wrapper .fixed-ope li:nth-of-type(1) {
    width: 15vw;
    height: 15vw;
    margin-left: -2.3vw;
    max-width: initial;
    max-height: initial;
  }
  .h5-wrapper .fixed-ope li:nth-of-type(1) span {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .h5-wrapper .fixed-ope li:nth-of-type(1) img {
    width: 40px;
    margin: 0 auto;
  }
  .h5-wrapper .fixed-ope li:nth-last-child(1) img {
    width: 28px;
  }
  .h5-wrapper .fixed-ope li > a {
    width: 10.67vw;
    height: 10.67vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .h5-wrapper .fixed-ope li .side-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
  }
  .h5-wrapper .fixed-ope li .wap_wechat_normal_3x {
    width: 28px;
    height: 28px;
    background: url("https://cdn.gfzq.cn/hkstore/hkportal/sprites/home_icons2-3840-1706.png");
    background-repeat: no-repeat;
    background-size: 746.6667px 331.7222px;
    background-position: -166.8333px -271.0556px;
  }
  .h5-wrapper .fixed-ope li .wap_lingying_normal_3x {
    width: 28px;
    height: 28px;
    background: url("https://cdn.gfzq.cn/hkstore/hkportal/sprites/home_icons2-3840-1706.png");
    background-repeat: no-repeat;
    background-size: 746.6667px 331.7222px;
    background-position: -108.8889px -271.0556px;
  }
  .h5-wrapper .fixed-ope li .wap_accout_normal_2x {
    width: 28px;
    height: 28px;
    background: url("https://cdn.gfzq.cn/hkstore/hkportal/sprites/home_icons2-3840-1706.png");
    background-repeat: no-repeat;
    background-size: 1493.3333px 663.4444px;
    background-position: -900.2778px -542.1111px;
  }
  .h5-wrapper .fixed-ope li .wap_download_normal_2x {
    width: 28px;
    height: 28px;
    background: url("https://cdn.gfzq.cn/hkstore/hkportal/sprites/home_icons2-3840-1706.png");
    background-repeat: no-repeat;
    background-size: 1493.3333px 663.4444px;
    background-position: -840.3889px -542.1111px;
  }
  .h5-wrapper .fixed-ope li .wap_message_normal_2x {
    width: 28px;
    height: 28px;
    background: url("https://cdn.gfzq.cn/hkstore/hkportal/sprites/home_icons2-3840-1706.png");
    background-repeat: no-repeat;
    background-size: 1493.3333px 663.4444px;
    background-position: -780.5px -542.1111px;
  }
  .h5-wrapper .fixed-ope .pop div {
    height: 42vw;
    right: 14vw;
    width: 40vw;
    position: absolute;
    background: #fff;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
    visibility: hidden;
  }
  .h5-wrapper .fixed-ope .pop div p:nth-child(1) {
    font-size: 3.73vw;
    color: #000;
    margin-bottom: 1.33vw;
  }
  .h5-wrapper .fixed-ope .pop div p:nth-child(2) {
    font-size: 3.2vw;
    color: #333;
  }
  .h5-wrapper .fixed-ope .pop div img {
    width: 29.73vw;
    height: 29.73vw;
  }
  .h5-wrapper .fixed-ope .pop:hover div {
    visibility: visible;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.15);
  }
}

.backtop {
  right: 3.13vw;
  z-index: 3;
  bottom: 12.5rem;
  width: 10.66vw;
  height: 10.66vw;
  font-size: 0.875rem;
  position: fixed;
  box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.15);
  background: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.6vw;
}
.backtop img {
  width: 28px;
}

.loading {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  min-height: calc(100vh - 100px);
  z-index: 1000;
}
.loading p {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.85;
  text-align: left;
  border: 6px solid rgba(43, 51, 63, 0.7);
  box-sizing: border-box;
  background-clip: padding-box;
  width: 50px;
  height: 50px;
  border-radius: 25px;
}
.loading p:before,
.loading p:after {
  content: "";
  position: absolute;
  margin: -6px;
  box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: 1;
  border: inherit;
  border-color: transparent;
  border-top-color: #fff;
  animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
}
.loading p:before {
  border-top-color: #fff;
}
.loading p:after {
  border-top-color: #fff;
  animation-delay: 0.44s;
}
@keyframes vjs-spinner-spin {
  100% {
    transform: rotate(360deg);
  }
}
.role_uselist_loding {
  position: fixed;
  width: 1000px;
  height: 50px;
  background: none;
  top: 31%;
}
.role_uselist_loding p {
  position: absolute;
  top: 25%;
  left: 30%;
}

