:root {
  --color-bg1: #080a0f;
  --color-bg2: #001120;
  --color1: 140, 100, 255;
  --color2: 140, 100, 255;
  --color3: 140, 100, 255;
  --color4: 140, 100, 255;
  --color5: 140, 100, 255;
  --color-interactive: 140, 100, 255;
  --circle-size: 70%;
  --blending: normal;
}
.cont .page_bg .bg{
    pointer-events: none;
}
.sidenavigation{
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        right: 8px;
        width: 50px;
        z-index: 100;
    }
    .sidenavigation .reservation{
        display: block;
        width: 100%;
        background: linear-gradient(to bottom, #4a2e87, #6e4cbb);
        border-radius: 100px;
        margin-bottom: 10px;
        border: 2px solid #fff;
        position: relative;
    }
    .sidenavigation .reservation .qr{
        width: 207px;
        border-radius: 15px;
        position: absolute;
        right: 60px;
        top: 0;
        overflow: hidden;
        pointer-events: none;
        opacity: 0;
        transform: translateX(50px);
        transition: all .3s;
    }
    .sidenavigation .reservation.register1:hover .qr{
        pointer-events: auto;
        opacity: 1;
        transform: translateX(0px);
    } 
    .sidenavigation .reservation .img{
        width: 100%;
    padding: 6%;
        border-radius: 100%;
        overflow: hidden;
    }
    .sidenavigation .reservation .txt{
        writing-mode: vertical-rl; 
        text-orientation: upright;
        color: #fff;
        margin: 0px auto;
        padding:10px 0 15px;
        letter-spacing: 7px;
    }
    .sidenavigation .service{
        display: block;
        width: 100%;
        height: 50px;
        border-radius: 100%;
        background: #fff;
        overflow: hidden;
        box-shadow: 0 0 30px rgba(74,47,135,.2);
        position: relative;
        transition: all .3s;
    }
    .sidenavigation .service:hover,.sidenavigation .back_top:hover{
        background:#563d8f;
    }
    .sidenavigation .service:hover svg path,.sidenavigation .back_top:hover svg path{
        fill:#fff;
        
    }
    .sidenavigation .service svg,.sidenavigation .back_top svg{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        margin: 0;
        width: 25px;
        height: 25px;
    }
    .sidenavigation .back_top{
        display: block;
        width: 100%;
        height: 50px;
        border-radius: 100%;
        background: #fff;
        overflow: hidden;
        box-shadow: 0 0 30px rgba(74,47,135,.2);
        margin-top: 10px;
        position: relative;
        transition: all .3s;
    }
.p_page{
    text-align: center;
    margin-top: 80px;
}
.p_page .laypage_total label{
    font-size: 16px;
}
.p_page .laypage_main a, .p_page .laypage_main span,.p_page .laypage_main span.laypage_total input{
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    border: 1px solid #edeff5;
    padding: 0;
    text-align: center;
    font-size: 16px;
    color: #787e86;
}
.p_page .laypage_main a:hover, .p_page .laypage_main span:hover,.p_page .laypage_main span:hover{
    background: #4a2f87;
    color: #fff;
}
.p_page .laypage_main a.laypage_curr, .p_page .laypage_main span.laypage_curr, .p_page .laypage_main span.laypage_curr{
    background: #4a2f87;
    color: #fff;
}
.laypage_main a.laypage_next,.laypage_main a.laypage_prev{
    font-size: 22px;
    line-height: 48px;
    color: #787e86;
}

.p_page .laypage_main span.laypage_total{
    width: auto;
    border: 0px;
    font-size: 16px;
    color: #787e86!important;
    background: transparent!important;
}

.p_page .laypage_main button{
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    border: 1px solid #edeff5;
    padding: 0;
    text-align: center;
    font-size: 12px;
    color: #787e86;
    cursor: pointer;
}
.p_page .laypage_main button:hover{
    background: #4a2f87;
    color: #fff;
}

.gradient-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  left: 0;
  pointer-events: none;
}
.gradient-bg .svgBlur {
  display: none;
}
.gradient-bg .noiseBg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  mix-blend-mode: soft-light;
  opacity: 0.3;
}

@supports not (-webkit-backdrop-filter: none) {
   .gradient-bg .gradients-container {
       filter: blur(40px);
  }
}
.gradient-bg .gradients-container {
  /*filter: url(#goo) blur(20px);*/
  width: 100%;
  height: 100%;
}
.gradient-bg .g1 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: center center;
  animation: moveVertical 30s ease infinite;
  opacity: 0.4;
}
.gradient-bg .g2 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 400px);
  animation: moveInCircle 20s reverse infinite;
  opacity: 0.3;
}
.gradient-bg .g3 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2 + 200px);
  left: calc(50% - var(--circle-size) / 2 - 500px);
  transform-origin: calc(50% + 400px);
  animation: moveInCircle 40s linear infinite;
  opacity: 0.3;
}
.gradient-bg .g4 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 200px);
  animation: moveHorizontal 40s ease infinite;
  opacity: 0.7;
}
.gradient-bg .g5 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: calc(var(--circle-size) * 2);
  height: calc(var(--circle-size) * 2);
  top: calc(50% - var(--circle-size));
  left: calc(50% - var(--circle-size));
  transform-origin: calc(50% - 800px) calc(50% + 200px);
  animation: moveInCircle 20s ease infinite;
  opacity: 0.4;
}
.gradient-bg .g6 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: 50%;
  height: 50%;
  bottom: 0;
  left: 0;
  transform-origin: calc(50% - 200px);
  animation: moveHorizontal 40s ease infinite;
  opacity: 0.4;
}
.gradient-bg .g7 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: 50%;
  height: 50%;
  bottom: -100px;
  left: 0;
  transform-origin: calc(50% - 200px);
  animation: moveHorizontalr 30s ease infinite;
  opacity: 0.4;
}
.gradient-bg .interactive {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: 100%;
  height: 100%;
  top: -50%;
  left: -50%;
  opacity: 0.4;
}
.interactive2 {
  background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: 1300px;
  height: 1300px;
  opacity: 1;
  position: absolute;
  filter: url(#goo) blur(40px);
  pointer-events: none;
  opacity: 0.3;
}
@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }
  50% {
    transform: translateX(50%) translateY(10%);
  }
  100% {
    transform: translateX(-50%) translateY(-10%);
  }
}
@keyframes moveHorizontalr {
  0% {
    transform: translateX(150%) translateY(-10%);
  }
  50% {
    transform: translateX(50%) translateY(50%);
  }
  100% {
    transform: translateX(150%) translateY(-10%);
  }
}
body,
html {
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
}
::-webkit-scrollbar {
  width: 5px;
  height: 3px;
}
::-webkit-scrollbar-track {
  background: #e6e6ec;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #4a2f87;
  border-radius: 6px;
}
body,
div,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
iframe,
pre,
code,
fieldset,
legend,
form,
input,
select,
textarea,
button,
p,
blockquote,
th,
td,
figure {
  margin: 0;
  padding: 0;
}
body,
div,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
iframe,
pre,
code,
fieldset,
legend,
form,
p,
blockquote,
figure,
header,
footer,
nav,
article,
section,
aside,
address,
figcaption {
  *zoom: 1;
}
li {
  list-style-type: none;
}
i {
  font-style: normal;
}
a:link,
a:visited,
a:active,
a {
  text-decoration: none;
}
a * {
  *cursor: pointer;
}
input,
select {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
select {
  -webkit-appearance: none;
}
input::-ms-clear {
  width: 0;
  height: 0;
}
input::-webkit-credentials-auto-fill-button {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
}
input:focus::-webkit-contacts-auto-fill-button {
  opacity: 0;
}
input:focus,
select:focus {
  outline: none;
  border-width: 0;
  box-shadow: none!important;
}
body {
  word-break: break-word;
}
i {
  font-style: normal;
}
img {
  width: 100%;
  display: block;
  line-height: 0;
  font-size: 0;
  transition: all 0.5s;
}
.cont {
  width: 100%;
  overflow: hidden;
  position: relative;
}
svg {
  margin: 0;
  width: 20px;
  height: 20px;
}
svg path {
  transition: all 0.3s;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  width: 100%;
  transition: all 0.3s;
  border-top: 8px solid #4f2a8c;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, .1);
}
.header .h_top {
  width: 88%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .h_top .logo {
  width: 206px;
  overflow: hidden;
  position: relative;
}
.header .h_top .header_nav_r {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc(100% - 300px);
}
.header .h_top .m_nav {
  width: calc(100% - 250px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100px;
  transition: all 0.3s;
}
.header .h_top .m_nav > li {
  height: 100%;
  display: block;
  position: relative;
}
.header .h_top .m_nav > li > a {
  color: #0a044b;
  height: 100%;
  padding: 0 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
}
.header .h_top .m_nav > li > a::before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 20%;
  right: 20%;
  height: 2px;
  background-color: #0a044b;
  opacity: 0;
  transition: all 0.3s;
}
.header .h_top .m_nav > li:hover > a::before {
  opacity: 1;
}
.header .h_top .m_nav > li .nav_icon {
  display: none;
}
.header .h_top .m_nav > li .sub_nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 107%;
  width: 160px;
  background: #fff;
  display: none;
  padding: 10px 0;
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  overflow: hidden;
}
.header .h_top .m_nav > li .sub_nav li {
  width: 100%;
}
.header .h_top .m_nav > li .sub_nav li a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 8px;
  transition: all 0.5s;
  line-height: 1.3;
  color: #0a044b;
}
.header .h_top .m_nav > li .sub_nav li a:hover {
  color: #fff;
  background: #0a044b;
}
.header .h_top .nav_r {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 250px;
}
.header .h_top .nav_r .language {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.header .h_top .nav_r .language svg {
  width: 27px;
  height: 27px;
}
.header .h_top .nav_r .language i {
  display: flex;
  align-items: center;
  color: #0a044b;
  margin-left: 20px;
}
.header .h_top .nav_r .language i svg {
  width: 12px;
  height: 12px;
  margin-left: 8px;
}
.header .h_top .nav_r .language ul {
  position: absolute;
  top: 100%;
  left: 47px;
  right: 0;
  padding: 10px 0;
  background: #fff;
  display: none;
  border-radius: 15px;
    overflow: hidden
}
.header .h_top .nav_r .language ul li a{
  text-align: center;
  padding: 5px 0;
  color: #0a044b;
  display: block;
}
.header .h_top .nav_r .language ul li a:hover{
    color: #fff;
    background: #0a044b;
}
.header .h_top .nav_r .search {
  display: block;
  width: 27px;
  height: 27px;
  margin-left: 20px;
}
.header .h_top .nav_r .search svg {
  width: 100%;
  height: 100%;
}
.footer {
  background: #fff;
  padding: 80px 0 50px;
}
.footer .btm_top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 100px;
  margin-bottom: 40px;
  border-bottom: 1px solid #d7d9e0;
}
.footer .btm_top .footer_logo {
  display: block;
  max-width: 264px;
}
.footer .btm_top .infor {
  width: 34%;
  height: 140px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.footer .btm_top .infor li {
  height: 33.33%;
  display: flex;
  align-items: center;
}
.footer .btm_top .infor li a {
  color: #0a044b;
  position: relative;
}
.footer .btm_top .infor li a::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #0a044b;
  transition: all 0.3s;
}
.footer .btm_top .infor li svg {
  margin-top: 3px;
  margin-left: 10px;
  opacity: 0;
  transform: translate(-5px, 5px);
  transition: all 0.3s;
}
.footer .btm_top .infor li:hover a::after {
  width: 100%;
}
.footer .btm_top .infor li:hover svg {
  transform: translate(0px, 0px);
  opacity: 1;
}
.footer .btm_top .qr_list {
  max-width: 380px;
  display: flex;
  justify-content: space-between;
}
.footer .btm_top .qr_list .item {
  margin-left: 30px;
}
.footer .btm_top .qr_list .item:nth-child(1) {
  margin-left: 0;
}
.footer .btm_top .qr_list .item p {
  color: #0a044b;
  display: block;
  margin-bottom: 12px;
}
.footer .btm_top .qr_list .item img {
  max-width: 105px;
}
.footer .btm_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .btm_bottom .btm_l {
  display: flex;
  align-items: center;
}
.footer .btm_bottom .btm_l p,
.footer .btm_bottom .btm_l a {
  color: #8481a5;
  line-height: 1;
}
.footer .btm_bottom .btm_l a:hover {
  color: #0a044b;
}
.footer .btm_bottom .btm_l p:nth-child(1) {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid #d7d9e0;
}
.footer .btm_bottom .btm_r {
  display: flex;
  align-items: center;
}
.footer .btm_bottom .btm_r a {
  color: #8481a5;
  padding: 0 15px;
  position: relative;
}
.footer .btm_bottom .btm_r a:nth-last-child(1)::after {
  display: none;
}
.footer .btm_bottom .btm_r a::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: #d7d9e0;
}
.footer .btm_bottom .btm_r a:hover {
  color: #0a044b;
}
.w1600 {
  width: 1600px;
  overflow: hidden;
  margin: 0 auto;
}
.w1440 {
  width: 1440px;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .w1600 {
    width: 90%;
  }
  .w1440 {
    width: 80%;
  }
  .header .h_top .m_nav > li > a {
    padding: 0px 15px;
  }
}
@media screen and (max-width: 1440px) {
  .header .h_top .logo {
    width: 180px;
  }
 
  .header .h_top .nav_r .language i,
  .header .h_top .nav_r .search {
    margin-left: 10px;
  }
  .header .h_top .nav_r {
    width: 210px;
  }
  .header .h_top .m_nav {
    width: calc(100% - 210px);
  }
  .footer .btm_top .footer_logo {
    width: 19%;
  }
}
@media screen and (max-width: 1366px) {
  .footer .btm_top .qr_list {
    max-width: 300px;
  }
  .footer .btm_top .qr_list .item {
    margin-left: 15px;
  }
}
@media screen and (max-width: 1280px) {
  .header .h_top .nav_r .language svg,
  .header .h_top .nav_r .search {
    width: 20px;
    height: 20px;
  }
  .header .h_top .nav_r {
    width: 185px;
  }
  .header .h_top .logo {
    width: 150px;
  }
}
@media screen and (max-width: 1200px) {
  .w1440 {
    width: 90%;
  }
}
@media screen and (max-width: 998px) {
    .header .h_top .m_nav > li > a::before{display:none;}
    .p_page{
            margin-top: 30px;
    }
    .p_page .laypage_main a, .p_page .laypage_main span,.p_page .laypage_main span.laypage_total input{
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
}
.laypage_main a.laypage_next,.laypage_main a.laypage_prev{
    font-size: 16px;
    line-height: 28px;
}
.p_page .laypage_main span.laypage_total{
    font-size: 12px;
}
.p_page .laypage_total label {
    font-size: 12px;
}
.p_page .laypage_main button{
    width: 30px;
    height: 30px;
    line-height: 30px;
}
  .header .u-menu {
    width: 25px;
    height: 25px;
    position: relative;
    cursor: pointer;
    top: 5px;
    z-index: 6;
    margin-right: 0px;
    margin-left: 12px;
  }
  .header .u-menu .menu-sub {
    position: absolute;
    left: 0;
    margin: 8px 0 0;
    top: 8px;
    width: 24px;
    height: 2px;
    background-color: #0a044b;
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    border-radius: 2px;
  }
  .header .u-menu .menu-sub:after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    border-radius: 2px;
    display: block;
  }
  .header .u-menu .menu-sub:before {
    content: "";
    position: absolute;
    left: 0;
    width: 28px;
    height: 2px;
    background-color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    border-radius: 2px;
    display: block;
  }
  .header .u-menu .menu-sub:before {
    top: -16px;
  }
  .header .u-menu .menu-sub:after {
    top: -8px;
  }
  .header .u-menu.on .menu-sub {
    height: 0;
    background: #0a044b;
  }
  .header .u-menu.on .menu-sub:before {
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #0a044b;
    top: -8px;
  }
  .header .u-menu.on .menu-sub:after {
    -ms-transform: rotate(-225deg);
    -moz-transform: rotate(-225deg);
    -webkit-transform: rotate(-225deg);
    -o-transform: rotate(-225deg);
    transform: rotate(-225deg);
    background: #0a044b;
    top: -8px;
  }
  .header .u-menu.on .menu-sub:before,
  .header .u-menu.on .menu-sub:after {
    width: 20px;
  }
  /* .header.on .u-menu .menu-sub{background-color: #0a044b;}
    .header.on .u-menu .menu-sub{background: #0a044b;}
    .header.on .u-menu .menu-sub:before{background: #0a044b;}
    .header.on .u-menu .menu-sub:after{background: #0a044b;}

    .header.act .u-menu .menu-sub{background-color: #fff;}
    .header.act .u-menu.on .menu-sub{background: #fff;}
    .header.act .u-menu.on .menu-sub:before{background: #fff;}
    .header.act .u-menu.on .menu-sub:after{background: #fff;} */
  .header {
    padding: 10px 0;
  }
  .header .h_top {
    width: 90%;
  }
  .header .h_top .header_nav_r {
    width: calc(100% - 80px);
  }
  .header .h_top .nav_r .language ul {
    left: 20px;
  }
  .header .h_top .nav_r {
    width: 100%;
  }
  .header .h_top .nav_r .language i {
    font-size: 12px;
    margin-left: 5px;
  }
  .header .h_top .nav_r .language i svg {
    width: 8px;
    height: 8px;
    margin-left: 4px;
  }
  .header .h_top .logo {
    width: 80px;
  }
  .header .h_top .m_nav {
    position: fixed;
    top: 52px;
    left: 0;
    height: calc(100vh - 52px);
    width: 100%;
    bottom: 0;
    right: 0;
    background-color: #fff;
    margin-left: 0;
    display: none;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: all;
  }
  .header .h_top .m_nav li {
    width: 94%;
    margin: 0 auto;
    height: auto;
    border-bottom: 1px solid #f1f1f1;
    position: relative!important;
  }
  .header .h_top .m_nav li:nth-last-child(1) {
    border-bottom: 0;
  }
  .header .h_top .m_nav li > a {
    font-size: 16px;
    width: 80%;
    height: 50px;
    line-height: 50px;
  }
  .header .h_top .m_nav > li .sub_nav li a:hover {
    color: #3574b7;
    background: transparent;
  }
  .header .h_top .m_nav > li > a::after {
    display: none;
  }
  .header .h_top .m_nav > li:nth-child(1) .sub_nav ul {
    display: block;
    padding: 0!important;
  }
  .header .h_top .m_nav > li:nth-child(1) .sub_nav ul li {
    width: 100%;
  }
  .header .h_top .m_nav > li:nth-child(1) .sub_nav ul li img {
    display: none;
  }
  .header .h_top .m_nav li .nav_icon {
    position: absolute;
    bottom: auto;
    top: 0%;
    left: auto;
    right: 0%;
    transform: translateX(0%);
    width: 20%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header .h_top .m_nav li .nav_icon svg {
    transition: all 0.3s;
    width: 15px;
    height: 15px;
  }
  .header .h_top .m_nav li .sub_nav {
    position: static;
    transform: translateX(0);
    width: 100%;
    text-align: left;
    box-shadow: initial;
    padding: 0 0 0 20px;
  }
  .header .h_top .m_nav > li .sub_nav li a {
    text-align: left;
    padding: 0;
    line-height: 35px;
    height: 35px;
    font-size: 14px;
  }
  .header .h_top .m_nav li .sub_nav a {
    color: #777;
  }
  .footer {
    padding: 40px 0;
  }
  .footer .btm_top {
    flex-wrap: wrap;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .footer .btm_top .footer_logo {
    width: 100%;
    display: block;
    max-width: none;
    margin-bottom: 20px;
  }
  .footer .btm_top .footer_logo img {
    width: 234px;
    margin: 0 auto;
  }
  .footer .btm_top .infor {
    display: none;
  }
  .footer .btm_top .qr_list {
    width: 100%;
    max-width: none;
    justify-content: center;
  }
  .footer .btm_top .qr_list .item p {
    text-align: center;
    margin-bottom: 8px;
  }
  .footer .btm_bottom {
    flex-wrap: wrap;
  }
  .footer .btm_bottom .btm_l {
    width: 100%;
    flex-wrap: wrap;
  }
  .footer .btm_bottom .btm_l p {
    width: 100%;
    margin-right: 0!important;
    padding-right: 0!important;
    border: 0!important;
    text-align: center;
    margin-bottom: 15px;
  }
  .footer .btm_bottom .btm_r {
    justify-content: center;
    width: 100%;
  }
  .footer .btm_bottom .btm_r a {
    white-space: nowrap;
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
    .sidenavigation .reservation .qr{
            width: 150px;
            right: 40px;
    }
    .footer .btm_top .footer_logo img{
        width: 200px;
    }
    .sidenavigation{
        width: 35px;
    }
    .sidenavigation .service,.sidenavigation .back_top{
        height: 35px;
    }
}
/*# sourceMappingURL=./base.css.map */
