/* Function */
.ac-dn {
  display: none !important;
}
.ac-cb:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  overflow: hidden;
  content: '.';
}
.ac-ib {
  display: inline-block;
}
.ac-blk {
  display: block;
}
.ac-blkfull {
  display: block;
  width: 100%;
  height: 100%;
}
.ac-img {
  display: block;
  width: 100%;
}
.ac-dis {
  pointer-events: none;
}
.ac-hide {
  display: none !important;
}
.ac-vhide {
  visibility: hidden;
}
/* 适配iphoneX */
.ac-iphonexfull {
  padding: constant(safe-area-inset-top) constant(safe-area-inset-right) constant(safe-area-inset-bottom) constant(safe-area-inset-left);
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
.ac-iphonexlr {
  padding-left: constant(safe-area-inset-left);
  padding-right: constant(safe-area-inset-right);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.ac-iphonexbm {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}
.ac-iphonexmgfull {
  margin: constant(safe-area-inset-top) constant(safe-area-inset-right) constant(safe-area-inset-bottom) constant(safe-area-inset-left);
  margin: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
.ac-iphonexmglf {
  margin-left: constant(safe-area-inset-left);
  margin-right: constant(safe-area-inset-right);
  margin-left: env(safe-area-inset-left);
  margin-right: env(safe-area-inset-right);
}
.ac-iphonexmgbm {
  margin-bottom: constant(safe-area-inset-bottom);
  margin-bottom: env(safe-area-inset-bottom);
}
/* 1px解决文案：优点，可画圆角，重置可变色；缺点，安卓低端机边框可能会糊，会丢线；*/
.ac-bd {
  position: relative;
}
.ac-bd *,
.ac-txt * {
  position: relative;
  z-index: 1;
}
.ac-bd:after,
.ac-txt:after {
  position: absolute;
  z-index: 2;
  content: '';
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  transform-origin: top left;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
  border-width: 0;
  pointer-events: none;
}
/* @Media & for UI fix */
/*-----------------------------------------------------*/
/* 1px解决方案 2倍屏 */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
  .ac-bd:after,
  .ac-txt:after {
    width: 200%;
    height: 200%;
    transform: scale(0.5);
    border-color: rgba(0, 0, 0, 0.1);
  }
}
/* 1px解决方案 3倍屏 */
@media screen and (-webkit-min-device-pixel-ratio: 3) {
  .ac-bd:after,
  .ac-txt:after {
    width: 300%;
    height: 300%;
    transform: scale(0.333333);
    border-color: rgba(0, 0, 0, 0.13);
  }
}
/* Position */
.ac-fl {
  float: left;
}
.ac-fr {
  float: right;
}
.ac-pr {
  position: relative;
}
.ac-pa {
  position: absolute;
}
.ac-prafll {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.ac-fix {
  position: fixed;
}
.ac-fixfll {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
/* Align */
/* absolute 自身 左右居中 */
.ac-hc {
  position: absolute !important;
  left: 50%;
  transform: translateX(-50%);
}
/* absolute 自身 上下居中 */
.ac-vc {
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
}
/* absolute 自身 绝对居中 */
.ac-cc {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* flex 内容多行居中排版，需要定高 */
.ac-fvc {
  display: flex;
  justify-content: center;
  flex-direction: column;
  -webkit-box-pack: center;
}
.ac-flvc {
  display: flex;
  align-content: center;
  align-items: center;
}
.ac-fcc {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ac-fbvc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ac-flex11 {
  flex: 1 1 auto;
}
.ac-flex01 {
  flex: 0 1 auto;
}
.ac-flex00 {
  flex: 0 0 auto;
}
.ac-mgt5 {
  margin-top: 5px;
}
.ac-mgt10 {
  margin-top: 10px;
}
.ac-mgt15 {
  margin-top: 15px;
}
.ac-mgt20 {
  margin-top: 20px;
}
html,
body {
  width: 100%;
  height: 100%;
  font-family: 'HanHei SC', 'PingFang SC', 'Helvetica Neue', 'Helvetica', sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: #333;
  -moz-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}
body {
  box-sizing: border-box;
}
html,
body,
img,
iframe,
button,
input {
  border: 0;
}
body,
html,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
p,
input,
header,
menu,
section,
figure,
figcaption,
article,
blockquote {
  padding: 0;
  margin: 0;
}
textarea,
select,
input,
button {
  font-size: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
em,
i {
  font-style: normal;
  text-align: left;
}
li,
i {
  list-style: none;
}
textarea {
  resize: none;
  overflow: auto;
}
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
i svg {
  display: block;
  width: 100%;
  height: 100%;
}
svg {
  display: inline-block;
  width: 100%;
  height: 100%;
  fill: currentColor;
  font-family: inherit;
  line-height: 0;
}
/* Text */
.ac-thide {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: normal;
}
.ac-thide2,
.ac-thide3,
.ac-thide4 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.ac-thide3 {
  -webkit-line-clamp: 3;
}
.ac-thide4 {
  -webkit-line-clamp: 4;
}
.ac-pre {
  word-wrap: break-word;
  word-break: break-all;
}
.ac-nw {
  white-space: nowrap;
}
.ac-tid {
  text-indent: -9999px;
}
.ac-tc {
  text-align: center;
}
.ac-tl {
  text-align: left;
}
.ac-tr {
  text-align: right;
}
/* Grid for Web */
@media screen and (min-width: 600px) {
  .ac-g-web {
    width: 600px;
    margin: 0 auto;
  }
  .ac-g-web-sep {
    width: 100%;
  }
  .ac-g-web-sep .ac-g-main {
    width: 600px;
    margin: 0 auto;
  }
  .ac-g-main-cnt {
    height: auto;
  }
}

/* Footer */
#afooter {
  width: 100%;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  color: #9f9e9e;
  background: #000306;
  padding: 15px 0;
  overflow: hidden;
}
#afooter .wrap_ied {
  margin: 0 auto;
  width: 1200px;
}
#afooter a {
  color: #9f9e9e;
  text-decoration: none;
}
#afooter a:hover {
  text-decoration: underline;
}
/* Footer END */
.bg {
  width: 100%;
  height: 100%;
  background-size: cover;
}
.app-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-size: cover;
  min-width: 12rem;
  overflow: hidden;
}
.web-bg {
  /* 页面背景切片 */
  position: relative;
  width: 100%;
  min-width: 12rem;
  background-size: 1920px 100%;
  background-position: top center;
  height: 10.8rem;
}
.button {
  /* 按钮 */
  cursor: pointer;
  transition: all 0.3s;
}
.button:hover {
  filter: brightness(1.1);
}
.button.disabled {
  filter: grayscale(1);
}
.button.disabled:hover {
  filter: grayscale(1);
}
.ui-1 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20241203rank/slice_1.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.ui-2 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20241203rank/slice_2.png);
  margin-top: -1px;
  background-size: cover;
  background-repeat: no-repeat;
}
.ui-3 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20241203rank/slice_3.png);
  margin-top: -1px;
  background-size: cover;
  background-repeat: no-repeat;
}
.ui-4 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20241203rank/slice_4.png);
  margin-top: -1px;
  background-size: cover;
  background-repeat: no-repeat;
}
.ui-5 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20241203rank/slice_5.png);
  margin-top: -1px;
  background-size: cover;
  background-repeat: no-repeat;
  height: 5.2rem;
}
.app-container__inner {
  position: absolute;
  width: 12rem;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.top-container {
  position: relative;
  width: 100%;
}
.top-container .logo {
  position: absolute;
  width: 1.36rem;
  height: 1.39rem;
  top: 0.15rem;
  left: -1.14rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20241203rank/logo.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.top-container .logo-chuangshi {
  position: absolute;
  width: 1.4rem;
  height: 1.39rem;
  top: 0.15rem;
  left: 0.54rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20241203rank/logo-chuangshi.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.top-container .slogan {
  position: absolute;
  top: 8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 10.8rem;
  height: 3.08rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20241203rank/slogan.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.top-container .user-container {
  position: absolute;
  top: 10.8rem;
  left: 50%;
  transform: translateX(-50%);
  color: #eaf6ff;
  font-size: 0.26rem;
  line-height: 0.26rem;
  width: 100%;
  text-align: center;
}
.top-container .user-container .login-container {
  display: none;
  text-align: center;
}
.top-container .user-container .login-container.active {
  display: block;
}
.top-container .user-container .logout-container {
  opacity: 0;
  pointer-events: none;
}
.top-container .user-container .logout-container.active {
  opacity: 1;
  pointer-events: auto;
}
.top-container .user-container .logout-container .area-info {
  opacity: 0;
}
.top-container .user-container .logout-container .area-info.active {
  opacity: 1;
}
.top-container .slogan2 {
  position: absolute;
  top: 11.35rem;
  left: 50%;
  transform: translateX(-50%);
  width: 9.1rem;
  height: 0.51rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/slogan2.png) no-repeat center center / cover;
}
.section1-container {
  position: absolute;
  top: 12.3rem;
  width: 100%;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease-out;
}
.section1-container.show {
  opacity: 1;
  transform: translateY(0);
}
.section1-container .title {
  margin: 0 auto;
  width: 11.24rem;
  height: 2.23rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/grey/header1.png) no-repeat center center / 100% 100%;
}
.section1-container .desc {
  width: 100%;
  text-align: center;
  font-size: 0.28rem;
  line-height: 0.28rem;
  margin-top: 0.28rem;
  margin-bottom: 0.2rem;
  color: #5c5d5c;
}
.section1-container .content {
  position: relative;
  width: 12.05rem;
  height: 7rem;
  margin: 0 auto;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/grey/rechargeListBg.png) no-repeat center center / 100% 100%;
}
.section1-container .content .table-container {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0.9rem;
  position: relative;
}
.section1-container .content .table-container .nodata {
  opacity: 0;
}
.section1-container .content .table-container .tr {
  display: flex;
  height: 0.5rem;
  line-height: 0.5rem;
}
.section1-container .content .table-container .td {
  flex: 1;
  height: 0.5rem;
  text-align: center;
  line-height: 0.5rem;
  font-size: 0.28rem;
}
.section1-container .content .table-container .td:nth-child(1) {
  flex: 0.3;
}
.section1-container .content .table-container .td:nth-child(4) {
  flex: 2.7;
}
.section1-container .content .table-container .th,
.section1-container .content .table-container .tr {
  height: 0.5rem;
  text-align: center;
  line-height: 0.5rem;
  font-size: 0.28rem;
  color: #5c5d5c;
}
.section1-container .content .table-container .th {
  border-bottom: 1px solid #5c5d5c;
}
.section1-container .content .login-desc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.32rem;
  line-height: 0.32rem;
  color: #0b79cb;
  opacity: 1;
  pointer-events: auto;
}
.section1-container .rank-container {
  margin-top: 0.32rem;
  font-size: 0.28rem;
  line-height: 0.28rem;
  color: #5c5d5c;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 0 0.3rem;
}
.section1-container .rank-container .rank-value {
  color: #5c5d5c;
}
.section1-container.active .title {
  margin: 0 auto;
  width: 11.24rem;
  height: 2.23rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/header1.png) no-repeat center center / 100% 100%;
  transition: background-image 0.4s ease;
}
.section1-container.active .title.chuangshi {
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/header1-chuangshi.png) no-repeat center center / 100% 100%;
}
.section1-container.active .desc {
  width: 100%;
  text-align: center;
  font-size: 0.28rem;
  line-height: 0.28rem;
  color: #0b79cb;
  margin-top: 0.28rem;
  margin-bottom: 0.2rem;
}
.section1-container.active .content {
  position: relative;
  width: 12.05rem;
  height: 7rem;
  margin: 0 auto;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/rechargeListBg.png) no-repeat center center / 100% 100%;
}
.section1-container.active .content .table-container {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0.9rem;
  position: relative;
}
.section1-container.active .content .table-container .table-content.rank-table {
  max-height: 5rem;
  overflow-y: auto;
}
.section1-container.active .content .table-container .table-content.rank-table::-webkit-scrollbar {
  transform: scale(0.5);
  width: 2px;
  height: 2px;
  /**/
}
.section1-container.active .content .table-container .table-content.rank-table::-webkit-scrollbar-track {
  background: #efefef;
  border-radius: 2px;
}
.section1-container.active .content .table-container .table-content.rank-table::-webkit-scrollbar-thumb {
  background: #bfbfbf;
  border-radius: 10px;
}
.section1-container.active .content .table-container .table-content.rank-table::-webkit-scrollbar-thumb:hover {
  background: #333;
}
.section1-container.active .content .table-container .nodata {
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.32rem;
  line-height: 0.32rem;
  color: #fff;
  background-color: #5481db;
  width: 3.4rem;
  height: 0.6rem;
  padding: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.section1-container.active .content .table-container .tr {
  display: flex;
  height: 0.5rem;
  line-height: 0.5rem;
}
.section1-container.active .content .table-container .td {
  flex: 1;
  height: 0.5rem;
  text-align: center;
  line-height: 0.5rem;
  font-size: 0.28rem;
}
.section1-container.active .content .table-container .td:nth-child(1) {
  flex: 0.3;
}
.section1-container.active .content .table-container .td:nth-child(4) {
  flex: 2.7;
}
.section1-container.active .content .table-container .th,
.section1-container.active .content .table-container .tr {
  height: 0.5rem;
  text-align: center;
  line-height: 0.5rem;
  font-size: 0.28rem;
  color: #0b79cb;
}
.section1-container.active .content .table-container .th {
  border-bottom: 1px solid #8ea9e9;
}
.section1-container.active .content .login-desc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.32rem;
  line-height: 0.32rem;
  color: #0b79cb;
  opacity: 0;
  pointer-events: none;
}
.section1-container.active .rank-container {
  margin-top: 0.32rem;
  font-size: 0.28rem;
  line-height: 0.28rem;
  color: #0b79cb;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 0 0.3rem;
}
.section1-container.active .rank-container .rank-value {
  color: #2a90ff;
}
.section2-container {
  position: absolute;
  top: 23.6rem;
  width: 100%;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease-out;
}
.section2-container.show {
  opacity: 1;
  transform: translateY(0);
}
.section2-container .title {
  margin: 0 auto;
  width: 12.07rem;
  height: 2.23rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/grey/header2.png) no-repeat center center / 100% 100%;
}
.section2-container .gifts-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.section2-container .gifts-container .gift-item {
  width: 2.76rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.2rem;
}
.section2-container .gifts-container .gift-item .item-desc {
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/grey/chongzhiBg.png) no-repeat center center / 100% 100%;
  width: 2.02rem;
  height: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.2rem;
  line-height: 0.2rem;
  color: #fff;
  margin-top: 0.1rem;
  margin-bottom: 0.2rem;
}
.section2-container .gifts-container .gift-item .content {
  width: 2.76rem;
  height: 2.79rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/grey/iconCircleBg.png) no-repeat center center / 100% 100%;
  position: relative;
}
.section2-container .gifts-container .gift-item .content .icon {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section2-container .gifts-container .gift-item .content .icon.icon-50 {
  width: 0.88rem;
  height: 0.78rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/grey/iconGold50.png) no-repeat center center / 100% 100%;
}
.section2-container .gifts-container .gift-item .content .icon.icon-150 {
  width: 1.08rem;
  height: 0.78rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/grey/iconGold150.png) no-repeat center center / 100% 100%;
}
.section2-container .gifts-container .gift-item .content .icon.icon-200 {
  width: 1.1rem;
  height: 0.99rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/grey/iconGold200.png) no-repeat center center / 100% 100%;
}
.section2-container .gifts-container .gift-item .content .icon.icon-500 {
  width: 1.05rem;
  height: 1.03rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/grey/iconGold500.png) no-repeat center center / 100% 100%;
}
.section2-container .gifts-container .gift-item .content .icon.icon-1000 {
  width: 1.51rem;
  height: 0.99rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/grey/iconGold1000.png) no-repeat center center / 100% 100%;
}
.section2-container .gifts-container .gift-item .content .icon.icon-2000 {
  width: 1.7rem;
  height: 0.99rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/grey/iconGold2000.png) no-repeat center center / 100% 100%;
}
.section2-container .gifts-container .gift-item .content .icon.icon-cash {
  top: 16%;
  left: 50%;
  transform: translateX(-50%);
  width: 1.35rem;
  height: 1.37rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/grey/iconCash.png) no-repeat center center / 100% 100%;
}
.section2-container .gifts-container .gift-item .content .icon.icon-rabbit9 {
  width: 0.92rem;
  height: 0.89rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/grey/iconRabbit.png) no-repeat center center / 100% 100%;
}
.section2-container .gifts-container .gift-item .content .icon.icon-rabbit5 {
  width: 0.92rem;
  height: 0.89rem;
  top: 28%;
  left: 50%;
  transform: translateX(-50%);
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/grey/iconRabbit5.png) no-repeat center center / 100% 100%;
}
.section2-container .gifts-container .gift-item .content .desc {
  position: absolute;
  top: 68%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.23rem;
  line-height: 0.23rem;
  color: #5c5d5c;
  width: 100%;
  text-align: center;
}
.section2-container .gifts-container .gift-item .get-gift {
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/grey/clickBg.png) no-repeat center center / 100% 100%;
  width: 2.27rem;
  height: 0.64rem;
}
.section2-container.active .title {
  margin: 0 auto;
  width: 12.07rem;
  height: 2.23rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/header2.png) no-repeat center center / 100% 100%;
  transition: background-image 0.4s ease;
}
.section2-container.active .title.chuangshi {
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/header2-chuangshi.png) no-repeat center center / 100% 100%;
}
.section2-container.active .gifts-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  pointer-events: auto;
}
.section2-container.active .gifts-container .gift-item {
  width: 2.76rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.2rem;
}
.section2-container.active .gifts-container .gift-item .item-desc {
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/chongzhiBg.png) no-repeat center center / 100% 100%;
  width: 2.02rem;
  height: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.2rem;
  line-height: 0.2rem;
  color: #fff;
  margin-top: 0.1rem;
  margin-bottom: 0.2rem;
}
.section2-container.active .gifts-container .gift-item .content {
  width: 2.76rem;
  height: 2.79rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/iconCircleBg.png) no-repeat center center / 100% 100%;
  position: relative;
}
.section2-container.active .gifts-container .gift-item .content .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section2-container.active .gifts-container .gift-item .content .icon.icon-50 {
  width: 0.88rem;
  height: 0.78rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/iconGold50.png) no-repeat center center / 100% 100%;
}
.section2-container.active .gifts-container .gift-item .content .icon.icon-150 {
  width: 1.08rem;
  height: 0.78rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/iconGold150.png) no-repeat center center / 100% 100%;
}
.section2-container.active .gifts-container .gift-item .content .icon.icon-200 {
  width: 1.1rem;
  height: 0.99rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/iconGold200.png) no-repeat center center / 100% 100%;
}
.section2-container.active .gifts-container .gift-item .content .icon.icon-500 {
  width: 1.05rem;
  height: 1.03rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/iconGold500.png) no-repeat center center / 100% 100%;
}
.section2-container.active .gifts-container .gift-item .content .icon.icon-1000 {
  width: 1.51rem;
  height: 0.99rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/iconGold1000.png) no-repeat center center / 100% 100%;
}
.section2-container.active .gifts-container .gift-item .content .icon.icon-2000 {
  width: 1.7rem;
  height: 0.99rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/iconGold2000.png) no-repeat center center / 100% 100%;
}
.section2-container.active .gifts-container .gift-item .content .icon.icon-cash {
  top: 16%;
  left: 50%;
  transform: translateX(-50%);
  width: 1.35rem;
  height: 1.37rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/iconCash.png) no-repeat center center / 100% 100%;
}
.section2-container.active .gifts-container .gift-item .content .icon.icon-rabbit9 {
  width: 0.92rem;
  height: 0.89rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/iconRabbit.png) no-repeat center center / 100% 100%;
}
.section2-container.active .gifts-container .gift-item .content .icon.icon-rabbit5 {
  width: 0.92rem;
  height: 0.89rem;
  top: 28%;
  left: 50%;
  transform: translateX(-50%);
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/iconRabbit5.png) no-repeat center center / 100% 100%;
}
.section2-container.active .gifts-container .gift-item .content .desc {
  position: absolute;
  top: 68%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.23rem;
  line-height: 0.23rem;
  color: #0b79cb;
  width: 100%;
  text-align: center;
}
.section2-container.active .gifts-container .gift-item .get-gift {
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/clickBg.png) no-repeat center center / 100% 100%;
  width: 2.27rem;
  height: 0.64rem;
}
.section2-container.active .gifts-container .gift-item .get-gift.got {
  cursor: auto;
  filter: grayscale(1);
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/clickBgGot.png) no-repeat center center / 100% 100%;
}
.section3-container {
  position: absolute;
  top: 35rem;
  width: 100%;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease-out;
}
.section3-container.show {
  opacity: 1;
  transform: translateY(0);
}
.section3-container .header {
  margin: 0 auto;
  width: 10.38rem;
  height: 1.65rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/header3.png) no-repeat center center / 100% 100%;
}
.section3-container .content {
  width: 12.05rem;
  height: 10.8rem;
  position: relative;
  margin: 0 auto;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/rulesBg.png) no-repeat center center / 100% 100%;
  padding: 0.84rem 1rem;
  box-sizing: border-box;
}
.section3-container .content .act-rank-desc-container {
  width: 10.28rem;
  position: relative;
  margin: 0 auto;
}
.section3-container .content .act-rank-desc-item.desc {
  width: 10.28rem;
  height: 3.73rem;
  position: relative;
  margin: 0 auto;
  padding: 0.12rem 0.2rem;
  box-sizing: border-box;
  background: url(//game.gtimg.cn/images/xy2/act/a20241203rank/rulesBg2.png) no-repeat center center / 100% 100%;
}
.section3-container .content .act-rank-desc-item.desc .title {
  font-size: 0.22rem;
  color: #fee58c;
}
.section3-container .content .act-rank-desc-item.desc .desc div {
  font-size: 0.22rem;
  line-height: 0.28rem;
  color: #fff;
}
.section3-container .content .rule-item {
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: #0b79cb;
  position: relative;
}
.section3-container .content .rule-item::before {
  content: '';
  position: absolute;
  top: 0.06rem;
  left: -0.24rem;
  width: 0.21rem;
  height: 0.24rem;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAYCAYAAAAVibZIAAACL0lEQVQ4ja3UWaiIQRQH8N+3pFxKkVxbHoiyXWuSZH9QSpYXXKQUD16QPCoPPFFKSrZkK9mylKIk4cFSXFuRfXkgZcnblYeZT58v995P+ddpZs78z3/OzJyZJF93XU0sx8E6xDRJEjWsIUmSHUmS9K/Dz7MsrbP4PHRDM7Z2mGmapmpYc6Vt1+pk2ohZsT8UY3GnvYA8S9MBeIOfbXCWICuNl3Yg2inPsnQ6duIR7uEBWmL/ExZXghZhXVxoMIZjJIbF/pY8y9ID0bEe4yoCu3EWY0q+c9iAzehU4W/H/qT31ofiqmcwp0L6jn44htm4iyl4gr4V7gXMRWueh4tqFcrlGkaUiF3j9pfgEhZixl8EWyKnFfIs/30HXzAfN9CzFLAa+7AR77GrIvgxxn0pHEWmBZ5hAWbiOZ5G3xbhzLfFbAeV7Frk/EY50wLdMSpuvQFd8C7OvcYEjI6CA5Hg5h+ilUxH4WgUK3Ab43EKr4QbXluan4UXOF44kqa9b4t+I24Jt13GSlwUCn6FcCyPY4YFfmBqjJdnWQadhZKqCn7FaaFWe+GwUMtXo0iBhriTiXib53maYI9wVmW8jP5NmBR93XEi+n6iCT3iXD+cxLQ8y7JV6CM81ZZoD2OWhPosYwiu4Hwc9xGeZ1Ns1ySTj3/WAZb588c/FH1tojjT9nBaKPgucXy4o4A6/+m3KNwsvKjL/0O0yK4ZR7T97/6z6GV8UGPr/yLaKnwo9+uQfwGmzHCqNSOLgQAAAABJRU5ErkJggg==) no-repeat center center / 100% 100%;
}
.section3-container .content .act-rank-desc-item.title {
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: #5e84d4;
}

/*
	PC端登录相关样式
	less使用方式：
	lessc login.css login-min.css -x
*/


/*qq登录*/
.milo-qqLogin{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    display: none;
}
.milo-qqLogin .qqLoginCover{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 999;
    background-color: white;
    opacity: 0.7;
    filter: alpha(opacity=70);
}
.milo-qqLogin .qqLoginContent{
    width: 650px;
    height: 400px;
    background-color: #fff;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10000;
    margin-left: -375px;
    margin-top: -225px;
    border: 1px solid #bfbfbf;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3)
}
.milo-qqLogin .qqLoginFrame{
	width: 100%;
    height: 400px;
    overflow: hidden;
    border: 0px solid white
}

/*微信登录*/
.milo-wxLogin{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    display: none;
}
.milo-wxLogin .wxLoginCover{
	position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 999;
    background-color: white;
    opacity: 0.7;
    filter: alpha(opacity=70);
}
.milo-wxLogin .wxLoginContent{
    box-sizing: content-box;
	width: 300px;
    height: 460px;
    background-color: #fff;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10000;
    margin-left: -150px;
    margin-top: -230px;
    border: 1px solid #bfbfbf;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    padding:0px 20px;
}
.milo-wxLogin .wxLoginContent .wxLoginClose{
    height: 40px;
    width: 100%;  
}
.milo-wxLogin .wxLoginContent .wxLoginClose a{
	line-height: 36px;
    text-align: center;
	float: right;
	margin-right: -20px;
    height: 40px;
    width: 40px;
    display:inline-block;
	color: rgb(102, 102, 102);
    font-family: Verdana, sans-serif;
    font-size: 30px;
    text-decoration:none;
    cursor: pointer;
}
.milo-wxLogin .wxLoginContent .wxLoginClose a:hover{
	color: rgb(240, 115, 115);
    font-family: Verdana, sans-serif;
}
.milo-wxLogin .wxLoginContent .wxLoginBox{
	width:100%;
	height:100%;
	overflow:hidden;
}


/*qq微信登录*/

.milo-qqwx-login {
    position: fixed;
    z-index: 10000;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    display: none
}

.qqwx-login-cover {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 9999;
    background-color: white;
    opacity: 0.7;
    filter: alpha(opacity=70)
}

.qqwx-login-frame {
    width: 750px;
    height: 470px;
    background-color: white;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10000;
    margin-left: -375px;
    margin-top: -240px;
    border: 1px solid #bfbfbf;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    border-radius: 5px 5px 0px 0px;
}

.qqwx-tabs {
    line-height: 40px;
    /* position: absolute; */
    z-index: 100001;
    width: 100%;
    height: 40px;
}

.qqwx-tabs .qq-tab,
.qqwx-tabs .wx-tab {
    cursor: pointer;
    display: inline-block;
    width: 50%;
    float: left;
    text-align: center;
    font-size: 18px;
    background-color: #f1f1f1;
    color: #b1b1b1;
    text-decoration: none
}

.qqwx-active-qq a.qq-tab {
    color: #fff;
    background-color: #51b7ec
}

.qqwx-active-wx a.wx-tab {
    color: #fff;
    background-color: #4ab218
}

.qqwx-tabs .qqwxtab-close {
    position: absolute;
    right: 0px;
    top: 0px;
    text-decoration: none;
    color: grey;
    font-size: 25px;
    line-height: 25px;
    display: inline-block;
    padding: 0px 5px;
    border-width: 0px 0px 1px 1px;
    border-style: solid
}

.qqwx-active-qq .qqwx-tabs .qqwxtab-close {
    border-color: #e0dcdc
}

.qqwx-active-wx .qqwx-tabs .qqwxtab-close {
    border-color: #8BC34A;
    color: #d4d2d2
}

.qqwx-tabs .qqwxtab-close:hover {
    font-weight: bold
}

.qqwx-tips {
    line-height: 30px;
    font-size: 14px;
    text-align: center;
    color: #a2a2a2;
    position: absolute;
    height: 32px;
    width: 100%;
    top: 40px;
    z-index: 10001;
    background-color: #fff;
    border: none;
}

.qqwx-frame {
    width: 100%;
    height: 400px;
    position: absolute;
    overflow: hidden;
    border: none;
    top: 70px;
}

.qqwx-frame div {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    text-align: center;
    display: none;
    border: none;
}

.qqwx-frame div iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.qqwx-active-qq div.qqwx-frame-qq-div {
    display: block
}

.qqwx-active-wx div.qqwx-frame-wx-div {
    display: block
}

i.ico-qq-logo,
i.ico-wx-logo {
    display: inline-block;
    height: 23px;
    vertical-align: middle;
    margin: 0px 5px;
    margin-top: -4px;
    background: url(https://vm.gtimg.cn/tencentvideo/vstyle/web/common/style/img/login/sprite_login.png?d=0210&max_age=31104000) no-repeat
}

i.ico-qq-logo {
    width: 20px
}

i.ico-wx-logo {
    width: 24px
}

.qqwx-active-wx i.ico-qq-logo {
    background-position: -180px -90px
}

.qqwx-active-wx i.ico-wx-logo {
    background-position: -250px -90px
}

.qqwx-active-qq i.ico-qq-logo {
    background-position: -200px -90px
}

.qqwx-active-qq i.ico-wx-logo {
    background-position: -220px -90px
}

div#qqwx-frame-wx-div {
    top: 20px
}


/*qc登录*/

.loginframe {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border: 0px solid white
}

.milo-qConnectLogin {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px
}

.qConnectLoginCover {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 9999;
    background-color: white;
    opacity: 0.7;
    filter: alpha(opacity=70)
}

.qConnectLoginContent {
    width: 752px;
    height: 400px;
    background-color: #fff;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10000;
    margin-left: -375px;
    margin-top: -220px;
    border: 1px solid #bfbfbf;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3)
}

.qConnectLoginContent>div {
    height: 30px;
    width: 100%;
    /* background-color: #4fb7ec; */
    background-color: #fff;
    font-size: 18px
}

.qConnectLoginContent>div span {
    color: white;
    display: inline-block;
    line-height: 30px;
    padding: 0px 5px
}

.qConnectLoginContent>div a {
    float: right;
    line-height: 30px;
    text-decoration: none;
    color: #009aff;
    font-weight: bold;
    font-size: 25px;
    width: 30px;
    text-align: center;
    cursor: pointer
}

.qConnectLoginContent>div a:hover {
    color: #f57272
}

.qConnectLoginContent>div {
    position: absolute;
    z-index: 100001;
    right: 0px;
    width: 30px;
    top: 0px;
    height: 48px;
    text-align: center
}

.qConnectLoginContent>div a {
    line-height: 40px;
    display: inline-block
}


/*qc微信登录*/

.milo-qcwx-login {
    position: fixed;
    z-index: 10000;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    display: none
}

.qcwx-login-cover {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 9999;
    background-color: white;
    opacity: 0.7;
    filter: alpha(opacity=70)
}

.qcwx-login-frame {
    width: 750px;
    height: 470px;
    background-color: white;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10000;
    margin-left: -375px;
    margin-top: -240px;
    border: 1px solid #bfbfbf;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    border-radius: 5px 5px 0px 0px;
}

.qcwx-tabs {
    line-height: 40px;
    position: absolute;
    z-index: 100001;
    width: 100%
}

.qcwx-tabs .qc-tab,
.qcwx-tabs .wx-tab {
    cursor: pointer;
    display: inline-block;
    width: 50%;
    float: left;
    text-align: center;
    font-size: 18px;
    background-color: #f1f1f1;
    color: #b1b1b1;
    text-decoration: none
}

.qcwx-active-qc a.qc-tab {
    color: #fff;
    background-color: #51b7ec
}

.qcwx-active-wx a.wx-tab {
    color: #fff;
    background-color: #4ab218
}

.qcwx-tabs .qcwxtab-close {
    position: absolute;
    right: 0px;
    top: 0px;
    text-decoration: none;
    color: grey;
    font-size: 25px;
    line-height: 25px;
    display: inline-block;
    padding: 0px 5px;
    border-width: 0px 0px 1px 1px;
    border-style: solid
}

.qcwx-active-qc .qcwx-tabs .qcwxtab-close {
    border-color: #e0dcdc
}

.qcwx-active-wx .qcwx-tabs .qcwxtab-close {
    border-color: #8BC34A;
    color: #d4d2d2
}

.qcwx-tabs .qcwxtab-close:hover {
    font-weight: bold
}

.qcwx-tips {
    line-height: 30px;
    font-size: 14px;
    text-align: center;
    color: #a2a2a2;
    position: absolute;
    width: 100%;
    top: 40px;
    z-index: 10001;
    background-color: #fff;
}

.qcwx-frame {
    width: 750px;
    height: 470px;
    position: absolute;
    overflow: hidden;
}

.qcwx-frame div {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    text-align: center;
    display: none
}

.qcwx-frame div iframe {
    width: 100%;
    height: 100%
}

.qcwx-active-qc div.qcwx-frame-qc-div {
    display: block
}

.qcwx-active-wx div.qcwx-frame-wx-div {
    display: block;
    top: 70px;
    height: 400px;
}

i.ico-qc-logo,
i.ico-wx-logo {
    display: inline-block;
    height: 23px;
    vertical-align: middle;
    margin: 0px 5px;
    margin-top: -4px;
    background: url(https://vm.gtimg.cn/tencentvideo/vstyle/web/common/style/img/login/sprite_login.png?d=0210&max_age=31104000) no-repeat
}

i.ico-qc-logo {
    width: 20px
}

i.ico-wx-logo {
    width: 24px
}

.qcwx-active-wx i.ico-qc-logo {
    background-position: -180px -90px
}

.qcwx-active-wx i.ico-wx-logo {
    background-position: -250px -90px
}

.qcwx-active-qc i.ico-qc-logo {
    background-position: -200px -90px
}

.qcwx-active-qc i.ico-wx-logo {
    background-position: -220px -90px
}

div#qcwx-frame-wx-div {
    top: 20px
}


/*wegame登录*/

.wegameloginframe {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border: 0px solid white
}

.milo-wegameLogin {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px
}

.wegameLoginCover {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 9999;
    background-color: white;
    opacity: 0.7;
    filter: alpha(opacity=70)
}

.wegameLoginContent {
    width: 800px;
    height: 600px;
    background-color: #fff;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10000;
    margin-left: -400px;
    margin-top: -300px;
    border: 1px solid #bfbfbf;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3)
}

.wegameLoginContent>div {
    height: 30px;
    width: 100%;
    background-color: none;
    font-size: 18px
}

.wegameLoginContent>div.wegameLoginTitle {
    width: 100%;
    background-color: #0e0e0e
}

div.wegameLoginIcon {
    display: none
}

.wegameLoginTitle>div.wegameLoginIcon {
    display: block;
    float: left;
    width: 239px;
    height: 60px;
    background: url(https://api.rail.tgp.qq.com/web/oauth2.0/login/images/wegame-logo-m.png) no-repeat center;
    margin-left: 10px
}

.wegameLoginContent>div span {
    color: white;
    display: inline-block;
    line-height: 30px;
    padding: 0px 5px
}

.wegameLoginContent>div a {
    float: right;
    line-height: 30px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 25px;
    width: 30px;
    text-align: center;
    cursor: pointer
}

.wegameLoginContent>div a:hover {
    color: #f57272
}

.wegameLoginContent>div {
    position: absolute;
    z-index: 100001;
    right: 0px;
    width: 30px;
    top: 0px;
    height: 60px;
    text-align: center
}

.wegameLoginContent>div a {
    line-height: 55px;
    display: inline-block
}


.role-selector {
  transition: opacity 0.5s ease;
  opacity: 0;
  z-index: 1000;
  display: none;
  position: fixed;
}
.r-container {
  width: 296px;
  /* height: 422px; */
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  font-size: 20px;
  z-index: 1000;
}
.r-container > div {
  margin: 8px 0;
}
.pip {
  font-size: 0.7em;
}
.pip input {
  width: 14px;
  height: 14px;
  margin: 0 2px;
  cursor: pointer;
}
.r-container select,
.r-container option {
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  border: 1px solid #797b7c;
  padding: 5px;
  font-size: 0.8em;
}
.error {
  margin: 0 0 -4px;
  font-size: 0.7em;
  color: red;
}
.btns {
  margin-top: 5px;
  line-height: 40px;
  font-size: 0.8em;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.btns div {
  width: 75px;
  height: 40px;
  text-align: center;
  letter-spacing: 0.5em;
  text-indent: 0.7em;
  border-radius: 5px;
  cursor: pointer;
}
.cancel-btn {
  border: 1px solid #e0e3e9;
  margin-right: 15px;
}
.confirm-btn {
  background-color: #66b1ff;
  color: #fff;
}
.r-block {
  width: 100%;
  height: 70%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.r-close {
  position: absolute;
  right: 30px;
  top: 20px;
  color: #abadb4;
  cursor: pointer;
}
.r-mask {
  background-color: #000;
  opacity: 0.7;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.au-ob-animated {
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-fill-mode: both;
}
.au-ob-mark {
  opacity: 0;
}
@keyframes au-ob-fade-in-up {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.au-ob-fade-in-up {
  animation-name: au-ob-fade-in-up;
}
@keyframes au-ob-fade-in-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.au-ob-fade-in-down {
  animation-name: au-ob-fade-in-down;
}
@keyframes au-ob-fade-in-left {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.au-ob-fade-in-left {
  animation-name: au-ob-fade-in-left;
}
@keyframes au-ob-fade-in-right {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.au-ob-fade-in-right {
  animation-name: au-ob-fade-in-right;
}
@keyframes au-ob-slide-in-up {
  0% {
    opacity: 1;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.au-ob-slide-in-up {
  animation-name: au-ob-slide-in-up;
}
@keyframes au-ob-slide-in-down {
  0% {
    opacity: 1;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.au-ob-slide-in-down {
  animation-name: au-ob-slide-in-down;
}
@keyframes au-ob-slide-in-left {
  0% {
    opacity: 1;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.au-ob-slide-in-left {
  animation-name: au-ob-slide-in-left;
}
@keyframes au-ob-slide-in-right {
  0% {
    opacity: 1;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.au-ob-slide-in-right {
  animation-name: au-ob-slide-in-right;
}

