@charset "UTF-8";

/* 尺寸规范 */
/**
*****小屏768/720-30
*****中屏992/970-30
*****大屏1200/1200-30
*****超大屏1600/1520-30
**/
html {
  min-width: 768px;
  font-size: 100px;
}

body {
  min-width: 768px;
  min-height: 100vh;
  /*height: auto;*/
  background: #fafafa;
  font-family: 'Microsoft Yahei', Helvetica Neue, Helvetica, Arial, sans-serif;
  position: relative;
  /* footer高度 */
  /* padding-bottom: 130px; */
  padding-bottom: 160px;
}

@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }
}

@media (min-width: 1600px) {
  html {
    font-size: 120px;
  }

  .container {
    width: 1520px;
  }
}

/* reset */
ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

/* header */
header {
  width: 100%;
  height: 70px;
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  font-size: .16rem;
  z-index: 1000000000;
  position: relative;
}

header .navbar-header {
  height: 70px;
}

header .navbar-brand {
  padding: 8px 15px;
}

header .logo {
  display: block;
  height: 54px;
}

header .logo img {
  height: 54px;
}

header .nav-box li a,
header .login-box li a {
  line-height: 70px;
  padding: 0 16px;
  font-size: .16rem;
  color: #333;
}

@media (min-width: 1200px) {

  header .nav-box li a,
  header .login-box li a {
    padding: 0 20px;
  }
}

header .login-box li {
  float: left;
}

header .login-box li a {
  padding: 0 12px;
  font-size: .14rem;
}

header ul li a:hover,
header ul li.active a {
  color: #FFD615;
}

header .login-box li a .icon-phone {
  margin-right: 3px;
}

.nav>li>a:focus,
.nav>li>a:hover {
  background-color: transparent;
}

.navbar {
  border: none;
}

.navbar-nav {
  margin: 0;
}

.navbar-toggle {
  margin-bottom: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .app-load {
    display: none;
  }
}

@media (max-width: 991px) {
  .navbar-header {
    float: left;
  }

  .navbar-toggle {
    display: block;
    float: left;
  }

  .navbar-toggle .icon-menu {
    font-size: 26px;
    color: #262626;
    border: 1px solid #FFD615;
    border-radius: 8px;
    padding: 2px 6px;
    background: #FFD615;
  }

  .navbar-toggle.collapsed .icon-menu:hover {
    background: rgba(249, 87, 53, 0.1);
  }

  .navbar-toggle.collapsed .icon-menu {
    color: #4a4a4a;
    background: transparent;
  }

  .navbar-collapse.collapse {
    display: none !important;
  }

  .navbar-collapse.in {
    display: block !important;
  }

  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .navbar-nav {
    float: none;
  }

  .navbar-nav>li {
    float: none;
    padding-left: 30px;
  }

  .navbar-right {
    float: none !important;
  }

  .navbar-collapse.collapsing,
  .navbar-collapse.in {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-collapse.collapsing ul,
  .navbar-collapse.in ul {
    margin-right: 0;
  }

  .navbar-collapse.collapsing li,
  .navbar-collapse.in li {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
  }

  .navbar-collapse.collapsing li a,
  .navbar-collapse.in li a {
    line-height: 40px;
    max-width: 750px;
    margin: 0 auto;
    padding-left: 20px;
  }
}

header .done-login {
  display: block;
  overflow: hidden;
  height: 70px;
  max-width: 1.28rem;
}

header .done-login img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-right: 5px;
}

header .dropdown-menu {
  top: 68px;
  right: 0;
  left: auto;
}

header .dropdown-menu li {
  float: none;
}

header .dropdown-menu li a {
  line-height: 44px;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 782px) {
  header .usercenter {
    margin-right: 14px;
  }
}

@media (min-width: 992px) and (max-width: 1028px) {
  header .usercenter {
    margin-right: 19px;
  }
}

@media (min-width: 1200px) and (max-width: 1259px) {
  header .usercenter {
    margin-right: 38px;
  }
}

/* footer */
footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  /* height: 130px; */
  height: 160px;
  background: #000;
  z-index: 10;
  font-size: .14rem;
  color: #666;
}

footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-left {
  padding-top: 55px;
  float: left;
}

.footer-left a {
  display: inline-block;
  color: #666;
  padding: 0 15px;
  line-height: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 10px;
  position: relative;
}

.footer-left a:nth-child(4n) {
  border-right: none;
}

.footer-left a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer-left .footer-popup {
  position: absolute;
  top: -170px;
  left: -15px;
  width: 150px;
  height: 150px;
  display: none;
}

.footer-left a:hover .footer-popup {
  display: block;
}

.footer-left .footer-popup::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  position: absolute;
  bottom: -8px;
  left: 67px;
}

.footer-left .footer-popup img {
  width: 100%;
}

.footer-center {
  float: left;
}

.footer-center p {
  font-size: .14rem;
  margin-top: 26px;
  margin-bottom: -10px;
}

.footer-center a {
  display: inline-block;
  width: 1.1rem;
  height: .3rem;
  line-height: .3rem;
  text-align: center;
  font-size: .16rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 0.8);
  margin-right: 15px;
  margin-bottom: 8px;
}

.footer-center a:hover {
  border: 1px solid white;
  color: white;
}

.footer-center a i {
  font-size: .2rem;
  margin-right: 8px;
}

.footer-right {
  padding-top: 16px;
  float: left;
}

.footer-right p {
  margin-bottom: 5px;
}

.footer-right a {
  color: #666;
}

.footer-right a:hover {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1199px) {
  .footer-left {
    width: 260px;
    padding-top: 36px;
  }

  .footer-left a:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 991px) {
  .footer-center {
    width: 160px;
  }

  .footer-center p {
    margin-top: 16px;
  }

  .footer-right {
    width: 210px;
  }
}

/* card */
.card-list {
  width: 100%;
  position: relative;
}

.card {
  display: block;
  width: 320px;
  height: 250px;
  border: 1px solid #e9e9e9;
  margin-top: .2rem;
  border-radius: 5px;
  background: #ffffff;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card-list .card {
  float: left;
  margin-right: 50px;
}

@media (max-width: 991px) {
  .card-list .card:nth-child(2n) {
    margin-right: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .card {
    width: 290px;
    height: 250px;
  }

  .card-list .card {
    margin-right: 35px;
  }

  .card-list .card:nth-child(3n) {
    margin-right: 0;
  }
}

@media (min-width: 1200px) {
  .card {
    width: 270px;
    height: 250px;
  }

  .card-list .card {
    margin-right: 30px;
  }

  .card-list .card:nth-child(4n) {
    margin-right: 0;
  }
}

@media (min-width: 1600px) {
  .card {
    width: 340px;
    height: 290px;
  }

  .card-list .card {
    margin-right: 43px;
  }
}

.card.group::after {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 2%;
  width: 96%;
  height: .06rem;
  border: 1px solid #e9e9e9;
  background: #fafafa;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}

.card:hover {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
}

.card-title {
  width: 100%;
  height: .9rem;
  line-height: .25rem;
  font-size: .16rem;
  color: #000000;
  padding: .2rem;
}

.card-desc {
  width: 100%;
  padding: 0 .2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card-desc .right {
  width: .65rem;
  height: .65rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: .08rem;
  margin-right: -.09rem;
  float: left;
}

.card-desc .right img {
  width: 100%;
  height: 100%;
}

.card-desc .left {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  float: left;
}

.card-time {
  font-size: .12rem;
  color: #666;
}

.card-time .hours {
  font-size: .12rem;
  color: #00a51f;
  margin-left: .06rem;
  margin-right: .03rem;
}

.card-teacher span {
  max-width: .6rem;
  text-align: center;
  line-height: .14rem;
  font-size: .12rem;
  color: #333333;
  display: inline-block;
  margin-right: .1rem;
  margin-bottom: .05rem;
  vertical-align: top;
}

.card-teacher span img {
  width: .32rem;
  height: .32rem;
  border-radius: 50%;
  border: 1px solid transparent;
}

.card-teacher span:hover {
  color: #FF9900;
}

.card-teacher span:hover img {
  border: 1px solid #FFD615;
}

.card-price {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: .52rem;
  padding: .22rem .15rem 0;
  background: #fafafa;
  font-size: .14rem;
  color: #aaaaaa;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.card-price .pull-right {
  margin-top: -.08rem;
  font-size: .12rem;
  height: .32rem;
  line-height: .32rem;
  vertical-align: bottom;
}

.card-price .pull-right span:last-of-type {
  color: #f00;
  font-size: .22rem;
}

.card-price .pull-right span.price-original {
  font-size: .14rem;
  text-decoration: line-through;
  color: #bbb;
  vertical-align: bottom;
  line-height: .26rem;
  margin-left: 5px;
}

.card-sign {
  position: absolute;
  top: 0;
  right: 0;
  width: .6rem;
  height: .6rem;
  overflow: hidden;
}

.card-sign span {
  position: absolute;
  top: .11rem;
  right: -.28rem;
  width: 1rem;
  height: .22rem;
  line-height: .22rem;
  text-align: center;
  font-size: .12rem;
  background: #FFD615;
  color: #262626;
  -webkit-transform: rotate(45deg) translateZ(0);
  transform: rotate(45deg) translateZ(0);
  z-index: 8;
}

/* card-none 没有课程的时候 */
.card-none {
  position: absolute;
  top: .5rem;
  left: 50%;
}

.card-none .none-box {
  margin-left: -50%;
}

.card-none img {
  width: 150px;
}

.card-none p {
  width: 150px;
  color: #999;
  font-size: .16rem;
  margin-top: 10px;
  text-align: center;
}

.user-tab+.main .card-none {
  position: static;
}

.user-tab+.main .card-none .none-box {
  text-align: center;
  margin: 150px auto;
}

.user-tab+.main .card-none .none-box p {
  width: 100%;
}

/* 页码 */
.pages {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  height: 40px;
}

.page-num {
  clear: both;
  padding: 5px 0;
  font-size: .12rem;
  display: inline-block;
}

.page-num a {
  float: left;
  padding: 0 14px;
  margin: 0 7px;
  cursor: pointer;
  background: #fff;
  text-decoration: none;
  color: black;
  font-weight: 300;
  border-radius: 5px;
  height: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 30px;
}

.page-num .page-btn {
  width: 30px;
  padding: 0;
}

.page-num .current,
.page-num a:hover {
  background: #FFD615;
  color: #262626;
}

.page-num .disabled {
  color: rgba(0, 0, 0, 0.4);
  cursor: default;
}

.page-num a.disabled:hover {
  background: #fff;
  color: rgba(0, 0, 0, 0.4);
}

.chide {
  display: none;
}

/* sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -230px;
  bottom: 0;
  background: #fff;
  border-left: 1px solid #ddd;
  z-index: 100;
  width: 265px;
  -webkit-transition: all .8s;
  transition: all .8s;
}

.sidebar .side-left {
  float: left;
  width: 34px;
  height: 100%;
  position: relative;
}

@media (max-height: 600px) {
  .sidebar {
    position: absolute;
  }

  .sidebar .side-left {
    height: 600px;
  }
}

.sidebar .side-left .back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 10px;
  text-align: center;
  cursor: pointer;
  display: none;
}

.sidebar .side-left .back:hover {
  color: #FF9900;
}

.sidebar .side-left .back .iconfont {
  font-size: 12px;
}

.sidebar .side-left .items {
  margin-top: 100px;
}

.sidebar .side-left .item {
  width: 34px;
  height: 62px;
  line-height: 62px;
  text-align: center;
  color: #000;
  border-radius: 3px;
  margin-top: 10px;
  margin-left: 1px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.sidebar .side-left .item.active,
.sidebar .side-left .item:hover {
  background: #FFD615;
  color: #262626;
}

.sidebar .side-left .item .iconfont {
  font-size: 20px;
}

.sidebar .side-left .item .tip {
  position: absolute;
  top: 18px;
  right: 45px;
  width: 90px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}

.sidebar .side-left .item:hover .tip {
  display: block;
}

.sidebar .side-left .item .tip::after {
  content: "";
  position: absolute;
  top: 8px;
  right: -5px;
  width: 0;
  height: 0;
  border-left: 5px solid rgba(0, 0, 0, 0.7);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.sidebar .side-left .tools {
  position: absolute;
  left: 0;
  bottom: 10px;
}

.sidebar .side-left .tool {
  width: 34px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 3px;
  margin-bottom: 15px;
  margin-left: 1px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.sidebar .side-left .tool .iconfont {
  font-size: 20px;
}

.sidebar .side-left .tool .icon-telephone {
  color: #e95d60;
}

.sidebar .side-left .tool .icon-weixin {
  color: #20c581;
}

.sidebar .side-left .tool .icon-top1 {
  color: #a2a2a2;
}

.sidebar .side-left .tool:hover {
  background: #FFD615;
}

.sidebar .side-left .tool:hover .iconfont {
  color: #fff;
}

.sidebar .side-left .phone-box {
  width: 300px;
  height: 190px;
  padding: 20px;
  background: #fff;
  text-align: left;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -80px;
  right: 55px;
  display: none;
}

.sidebar .side-left .tool:hover .phone-box {
  display: block;
}

.sidebar .side-left .phone-box::after {
  content: "";
  position: absolute;
  top: 87px;
  right: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.sidebar .side-left .phone-box p {
  font-size: 14px;
  line-height: 20px;
  color: #5b6269;
}

.sidebar .side-left .phone-box p.title {
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}

.sidebar .side-left .phone-box p.number {
  font-size: 16px;
  line-height: 30px;
}

.sidebar .side-left .phone-box p.number .iconfont {
  font-size: 18px;
  color: #5b6269;
  margin-right: 5px;
}

.sidebar .side-left .weixin-box {
  width: 180px;
  height: 180px;
  position: absolute;
  top: -100px;
  right: 50px;
  display: none;
}

.sidebar .side-left .tool:hover .weixin-box {
  display: block;
}

.sidebar .side-left .weixin-box img {
  width: 100%;
}

.sidebar .side-right {
  float: left;
  width: 230px;
}

.sidebar .side-right .content {
  display: none;
  -webkit-animation: scale .5s linear;
  animation: scale .5s linear;
}

.sidebar .side-right .none-item {
  width: 100%;
  padding-top: 140px;
  text-align: center;
  /*display: none;*/
}

.sidebar .side-right .none-item img {
  width: 100px;
}

.sidebar .side-right .none-item p {
  margin-top: 15px;
  font-size: 0.13rem;
  color: #666;
}

.sidebar .side-right .none-item p a {
  color: #FF9900;
  margin-left: 12px;
  text-decoration: underline;
}

.sidebar .side-right .item-list {
  padding: 15px;
}

.sidebar .side-right .item-head {
  height: 60px;
  line-height: 60px;
  font-size: 14px;
  color: #313131;
  text-align: center;
  position: relative;
}

.sidebar .side-right .item-head::before,
.sidebar .side-right .item-head::after {
  content: "";
  width: 55px;
  height: 1px;
  background: #e1e1e1;
  position: absolute;
  top: 30px;
  left: 0;
}

.sidebar .side-right .item-head::after {
  left: auto;
  right: 0;
}

.sidebar .side-right .bofang {
  text-align: center;
}

.sidebar .side-right .item {
  padding-top: 10px;
  border-bottom: 1px dashed #e1e1e1;
}

.sidebar .side-right .bofang .item {
  padding: 15px 0 10px;
  margin-bottom: 10px;
}

.sidebar .side-right .time {
  font-size: 12px;
  line-height: 18px;
  color: #666;
}

.sidebar .side-right .item-more a {
  float: right;
  font-size: 12px;
  color: #FF9900;
  line-height: 30px;
}

.sidebar .side-right .title a {
  font-size: 15px;
  line-height: 22px;
  color: #333;
}

.sidebar .side-right .title a:hover {
  color: #FF9900;
}

.sidebar .side-right .title-2 a {
  font-size: 14px;
  line-height: 22px;
  color: #000;
}

.sidebar .side-right .title-2 a:hover {
  color: #FF9900;
}

.sidebar .side-right .item .button {
  height: 25px;
}

.sidebar .side-right .item .button a {
  display: inline-block;
  width: 160px;
  height: 25px;
  line-height: 25px;
  padding: 0 10px;
  color: #262626;
  font-size: 12px;
  background: #FFD615;
  border-radius: 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.sidebar .side-right .item .button a:hover {
  background: #f00;
}

.sidebar.show {
  right: 0;
}

.sidebar.show .side-left .back {
  display: block;
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.noaside {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  border-radius: 5px;
  background: #e2e2e2;
  z-index: 100;
}

.noaside:hover {
  background: lightgray;
}

.noaside .icon-top1 {
  color: #fff;
  font-size: 28px;
}

.go-top {
  visibility: hidden;
}

/* 弹框 */
.compopup-wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000001;
}

.compopup-cd {
  min-width: 400px;
  height: 240px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background: #fff;
  padding: 20px;
}

.compopup-cd p {
  font-size: 16px;
  text-align: center;
  color: #333;
  margin-bottom: 0;
  margin-top: 35px;
  margin-bottom: -10px;
}

.compopup-cd p.time {
  font-size: 50px;
  color: #FF9900;
}

.compopup-cd .close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.compopup-cd .close .iconfont {
  font-size: 26px;
}

.compopup-suc {
  min-width: 240px;
  height: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background: #fff;
  padding: 22px;
}

.compopup-suc p {
  font-size: 16px;
  text-align: center;
  color: #FF9900;
  margin-bottom: 0;
}

.compopup-suc p .iconfont {
  font-size: 50px;
}

.compopup-err {
  min-width: 150px;
  height: 100px;
  background: rgba(26, 26, 26, 0.85);
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 10px;
  z-index: 1000001;
  color: #e5e5e5;
  padding: 12px 20px;
  -webkit-animation: popup_scale .5s linear;
  animation: popup_scale .5s linear;
}

.compopup-err p {
  font-size: 0.14rem;
  text-align: center;
  margin-bottom: 6px;
}

.compopup-err p .iconfont {
  font-size: 32px;
}

.compopup-confirm {
  min-width: 320px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background: #fff;
  padding: 20px;
}

.compopup-confirm p {
  font-size: 18px;
  text-align: center;
  color: #333;
  margin: 25px 0;
}

.compopup-confirm button {
  width: 80px;
  margin: 0 15px;
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.compopup-confirm button.yes {
  background: #FFD615;
  border-color: #FFD615;
  color: #262626;
}

.compopup-confirm .emphasis {
  color: #FFD615;
}

/*.compopup-confirm button.yes {
    background: #FFD615;
}*/
@-webkit-keyframes popup_scale {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.2);
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes popup_scale {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.2);
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}