@charset "UTF-8";
html,
body,
#app {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

.page-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow-x: hidden;
}
.mobile-page-container {
  width: 100%;
  background: #2D2D38;
  padding-top: 2rem;
  overflow-x: hidden;
}
.header-container{
  width: 100%;
  height: 2rem;
  background: #2D2D38;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: .32rem .28rem;
  z-index: 3;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}
.header-container img{
  width: 3.78rem;
  height: 1.32rem;
}
.btn-right{
  width: .64rem;
  height: .64rem;
  background: url(../images/tabber.webp) no-repeat;
  background-size: 100% 100%;
  margin-bottom: .34rem;
}
.btn-right.close{
  background: url(../images/close.webp) no-repeat;
  background-size: 100% 100%;
}
.header-nav{
  position: absolute;
  top: 2rem;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(45,45,56,0.95);
  z-index: 2;

}
.header-close{
  height: 0;
  overflow: hidden;
}
.header-nav-cont{
  margin: .48rem 0 0 .32rem;
}
.header-nav-cont ul li{
  margin-bottom: .32rem;
}
.header-nav-cont ul li a{
  font-weight: 500;
  font-size: 0.4rem;
  color: #FFFFFF;
  font-family: Inter-Medium;
}

.footer-container{
    width: 100%;
    background: #2D2D38;
    padding: .8rem .32rem 1rem;
}
.footer-container img{
    width: 3.78rem;
}
.logo-p{
    margin-top: .4rem;
}
.logo-p p{
    font-family: 'Inter-Regular';
    font-weight: 400;
    font-size: 0.24rem;
    color: #FFFFFF;
    margin-bottom: .4rem;
}
.link-container{
    margin-top: .64rem;
}

.link-container p.title{
    font-family: 'Inter-Semi Bold';
    font-weight: normal;
    font-size: 0.4rem;
    color: #D84761;
}
.link-container a{

    font-family: 'Inter-Regular';
    font-weight: 400;
    font-size: 0.32rem;
    color: #FFFFFF;
    margin-right: .52rem;
    margin-top: .3rem;
    display: inline-block;
}
.overflowHidden{
  height: 100%;
  overflow: hidden;
}