:root {
  --primary-color: #000532;
  --bg-color: #060f1c;
  --font-size-base: 16px;
  --line-height: 1.5;
  --el-bg-color-overlay: #221f2d;
  --el-bg-color-overlay: #221f2d;
  --el-datepicker-text-color: #fff;
  --color: #fff;
  --el-text-color-regular: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
}

html {
  height: 100%;
  width: 100%;
  font-size: var(--font-size-base);
  line-height: var(--line-height);
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-color);
  line-height: var(--line-height);
  background-image: url("../img/body_bj.png");
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body:has(#search_mask.active) {
  overflow: hidden;
}
body:has(.category_box.active) {
  overflow: hidden;
}
body:has(.role_mask.active) {
  overflow: hidden;
}
body:has(.user_mask.active) {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

#app {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
#app .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
}
#app .header .branch img {
  height: 50px;
}
#app .header .category_box ul {
  display: flex;
  align-items: center;
  background: #221f2d;
  border-radius: 50px;
  padding: 12px;
}
#app .header .category_box ul:has(li:hover) li.active {
  background: transparent;
}
#app .header .category_box ul:has(li:hover) li.active > a span {
  color: #f6e4d6;
}
#app .header .category_box ul li {
  transition: all 0.3s;
  border-radius: 25px;
  cursor: pointer;
}
#app .header .category_box ul li > a {
  display: flex;
  padding: 12px 28px;
}
#app .header .category_box ul li > a span {
  font-size: 20px;
  color: #f6e4d6;
  white-space: nowrap;
  line-height: 1em;
}
#app .header .category_box ul li > a span img {
  display: none;
}
#app .header .category_box ul li > a .toggle_icon {
  display: none;
}
#app .header .category_box ul li.active {
  background: #f6e4d6;
}
#app .header .category_box ul li.active > a span {
  color: #1e1d2b;
}
#app .header .category_box ul li:hover {
  background: #f6e4d6 !important;
}
#app .header .category_box ul li:hover > a span {
  color: #1e1d2b !important;
}
#app .header .category_box ul li:has(nav) {
  position: relative;
}
#app .header .category_box ul li:has(nav)::after {
  content: "";
  position: absolute;
  top: 100%;
  display: block;
  width: 100%;
  height: 13px;
}
#app .header .category_box ul li:has(nav) nav {
  height: 0;
  position: absolute;
  top: calc(100% + 12px);
  background: #221f2d;
  transition: all 0.3s;
  left: 0;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5), 0px 2px 10px 0px rgba(19, 19, 20, 0.81);
  border-radius: 0px 0px 16px 16px;
  overflow: hidden;
  z-index: 999;
}
#app .header .category_box ul li:has(nav) nav a {
  display: block;
  padding: 20px 30px;
  white-space: nowrap;
  font-size: 20px;
  color: #f6e4d6;
  line-height: 20px;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}
#app .header .category_box ul li:has(nav) nav a + a {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
#app .header .category_box ul li:has(nav) nav a:hover {
  background: #f6e4d6;
  color: #1e1d2b;
}
#app .header .category_box ul li:has(nav):hover nav {
  height: auto;
}
#app .header .searchtrigger_user {
  background: #221f2d;
  border-radius: 50px;
  display: flex;
  align-items: stretch;
  padding: 12px;
}
#app .header .searchtrigger_user .menu_trigger {
  display: none;
}
#app .header .searchtrigger_user .search_trigger {
  display: flex;
  align-items: center;
  padding-left: 10px;
}
#app .header .searchtrigger_user .login_btn {
  margin-left: 40px;
  background: #f6e4d6;
  border-radius: 24px;
  font-size: 20px;
  color: #04020f;
  line-height: 1em;
  padding: 10px 18px;
  white-space: nowrap;
}
#app .header .searchtrigger_user .user {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #f6e4d6;
  overflow: hidden;
  margin-left: 40px;
}
#app .header .searchtrigger_user .user img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 1750px) {
  #app .header {
    padding: 16px 20px;
  }
  #app .header .branch img {
    height: 40px;
  }
  #app .header .category_box ul li > a span {
    font-size: 16px;
  }
  #app .header .searchtrigger_user .login_btn {
    margin-left: 30px;
    font-size: 16px;
    padding: 12px 18px;
  }
  #app .header .searchtrigger_user .user {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #f6e4d6;
    overflow: hidden;
    margin-left: 40px;
  }
  #app .header .searchtrigger_user .user img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (max-width: 1450px) {
  #app .header {
    padding: 10px 16px;
    background-color: #221f2d;
  }
  #app .header .branch img {
    height: 40px;
  }
  #app .header .category_box {
    display: none;
    position: fixed;
    left: 0;
    top: 60px;
    width: 100%;
    height: calc(100% - 60px);
    background: #221f2d;
    z-index: 1000;
    border-top: 1px solid rgba(246, 228, 214, 0.2);
    overflow-y: scroll;
  }
  #app .header .category_box.active {
    display: block;
  }
  #app .header .category_box ul {
    align-items: stretch;
    flex-direction: column;
    background: transparent;
    border-radius: 0;
    padding: 0;
  }
  #app .header .category_box ul:has(li:hover) li.active {
    background: transparent;
  }
  #app .header .category_box ul:has(li:hover) li.active > a span {
    color: #f6e4d6;
  }
  #app .header .category_box ul li {
    border-radius: 0;
  }
  #app .header .category_box ul li + li {
    border-top: 1px solid rgba(246, 228, 214, 0.2);
  }
  #app .header .category_box ul li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
  }
  #app .header .category_box ul li > a span {
    display: flex;
    align-items: center;
  }
  #app .header .category_box ul li > a span img {
    display: block;
    margin-right: 10px;
  }
  #app .header .category_box ul li > a .toggle_icon {
    display: block;
  }
  #app .header .category_box ul li.active {
    background: transparent;
  }
  #app .header .category_box ul li.active > a span {
    color: #f6e4d6;
  }
  #app .header .category_box ul li:hover {
    background: transparent !important;
  }
  #app .header .category_box ul li:hover > a span {
    color: #f6e4d6 !important;
  }
  #app .header .category_box ul li:has(nav) {
    position: relative;
    padding: 0;
  }
  #app .header .category_box ul li:has(nav) > a {
    padding: 20px 16px;
  }
  #app .header .category_box ul li:has(nav)::after {
    display: none;
  }
  #app .header .category_box ul li:has(nav) nav {
    height: initial;
    position: relative;
    top: initial;
    background: #272532;
    left: 0;
    box-shadow: initial;
    border-radius: initial;
    border-radius: 0;
    display: none;
    padding: 0 16px;
  }
  #app .header .category_box ul li:has(nav) nav a + a {
    border-top: 1px solid rgba(253, 242, 234, 0.2);
  }
  #app .header .category_box ul li:has(nav) nav a:hover {
    background: transparent;
    color: #f6e4d6;
  }
  #app .header .category_box ul li:has(nav):hover nav {
    height: auto;
  }
  #app .header .category_box ul li:has(nav).active {
    padding-bottom: 0;
  }
  #app .header .category_box ul li:has(nav).active > a .toggle_icon {
    transform: rotateZ(90deg);
  }
  #app .header .category_box ul li:has(nav).active nav {
    display: block;
  }
  #app .header .searchtrigger_user {
    background: transparent;
    border-radius: 0;
    padding: 0;
  }
  #app .header .searchtrigger_user .menu_trigger {
    display: flex;
    align-items: center;
    padding: 0 10px;
  }
  #app .header .searchtrigger_user .search_trigger {
    padding: 0 10px;
    margin-left: 20px;
  }
  #app .header .searchtrigger_user .login_btn {
    margin-left: 32px;
    padding: 8px 9px;
  }
  #app .header .searchtrigger_user .user {
    width: 32px;
    height: 32px;
    border-radius: 5px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 600px) {
  #app .header .searchtrigger_user .search_trigger {
    padding: 0 10px;
    margin-left: 10px;
  }
  #app .header .searchtrigger_user .login_btn {
    margin-left: 20px;
  }
  #app .header .searchtrigger_user .user {
    margin-left: 20px;
  }
}
#app .footer {
  background-color: #221f2d;
  padding: 30px 0;
  display: flex;
  align-items: center;
  align-items: center;
  flex-direction: column;
}
#app .footer nav {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
#app .footer nav a {
  color: #ddcdc1;
  font-size: 0.9rem;
}
#app .footer nav a + a {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
#app .footer nav a + a::before {
  content: "";
  width: 1px;
  height: 12px;
  background-color: #ddcdc1;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  #app .footer nav a + a {
    margin-left: 10px;
  }
  #app .footer nav a + a::before {
    margin-right: 10px;
  }
}
#app .footer p {
  color: #ddcdc1;
  font-size: 0.8rem;
  text-align: center;
}
#app .main {
  flex: 1;
  min-height: 0;
  padding: 20px 0 60px;
}

#search_mask {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  background-color: rgba(4, 2, 15, 0.8);
  height: calc(100% - 100px);
  overflow-y: scroll;
  display: none;
  z-index: 999;
  padding-top: 90px;
}
#search_mask.active {
  display: block;
}
#search_mask .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
#search_mask .container .search_main {
  background: #221f2d;
  border-radius: 24px;
  padding: 30px 120px 200px;
}
#search_mask .container .search_main .search_form {
  position: relative;
  margin-bottom: 30px;
}
#search_mask .container .search_main .search_form input {
  width: 100%;
  height: 80px;
  border: 1px solid #f6e4d6;
  background-color: transparent;
  outline: none;
  border-radius: 24px;
  padding: 0 12px;
  font-size: 20px;
  color: #f6e4d6;
  line-height: 1em;
  text-indent: 1em;
  padding-right: 40px;
}
#search_mask .container .search_main .search_form button {
  cursor: pointer;
  width: 70px;
  height: 70px;
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  align-items: center;
  text-align: center;
  background-color: transparent;
  border: none;
  outline: none;
  justify-content: center;
}
#search_mask .container .search_main .search_recommend h2 {
  font-size: 28px;
  color: #f6e4d6;
  line-height: 1em;
  margin-bottom: 32px;
}
#search_mask .container .search_main .search_recommend nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-items: center;
}
#search_mask .container .search_main .search_recommend nav a {
  height: 52px;
  border-radius: 26px;
  border: 1px solid #f6e4d6;
  margin-right: 32px;
  margin-bottom: 32px;
  line-height: 50px;
  padding: 0 30px;
  font-size: 16px;
  color: #f6e4d6;
  transition: all 0.3s;
}
#search_mask .container .search_main .search_recommend nav a:hover {
  background-color: #f6e4d6;
  color: #04020f;
}
@media screen and (max-width: 1350px) {
  #search_mask {
    height: calc(100% - 60px);
    top: 60px;
    padding-top: 32px;
    border-top: 1px solid rgba(246, 228, 214, 0.2);
  }
}
@media screen and (max-width: 1000px) {
  #search_mask {
    height: calc(100% - 60px);
    top: 60px;
    padding-top: 0;
  }
  #search_mask .container {
    padding: 0;
  }
  #search_mask .container .search_main {
    border-radius: 0;
    padding: 32px 16px 80px;
  }
  #search_mask .container .search_main .search_form {
    margin-bottom: 20px;
  }
  #search_mask .container .search_main .search_form input {
    width: 100%;
    height: 48px;
    border-radius: 16px;
  }
  #search_mask .container .search_main .search_form button {
    width: 46px;
    height: 46px;
    top: 0px;
  }
  #search_mask .container .search_main .search_form button img {
    height: 18px;
  }
  #search_mask .container .search_main .search_recommend h2 {
    font-size: 18px;
    margin-bottom: 16px;
  }
  #search_mask .container .search_main .search_recommend nav a {
    height: 40px;
    margin-right: 14px;
    margin-bottom: 14px;
    line-height: 38px;
    padding: 0 20px;
    font-size: 14px;
  }
  #search_mask .container .search_main .search_recommend nav a:hover {
    background-color: transparent;
    color: #f6e4d6;
  }
}

.not_found {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.not_found img {
  width: 100%;
  max-width: 300px;
}
.not_found p {
  font-size: 18px;
  color: #f6e4d6;
  text-align: center;
}
.not_found a {
  color: #f6e4d6;
  background-color: #221f2d;
  padding: 12px 20px;
  border-radius: 12px;
  margin-top: 20px;
  transition: all 0.3s;
}
.not_found a:hover {
  background-color: #f6e4d6;
  color: #04020f;
}

.privacy {
  background: #221f2d;
  box-shadow: 0px -2px 10px 0px rgba(73, 67, 95, 0.34);
  border-radius: 16px;
  padding: 32px;
}
.privacy h1 {
  text-align: center;
  font-size: 24px;
  color: #f6e4d6;
  margin-bottom: 10px;
}
.privacy .line {
  width: 100%;
  margin-bottom: 20px;
}
.privacy p {
  font-size: 16px;
  color: #f6e4d6;
  line-height: 1.6em;
  margin-bottom: 20px;
}
.privacy h2 {
  font-size: 20px;
  color: #f6e4d6;
  margin-bottom: 10px;
}

.el-message {
  background-color: rgba(0, 0, 0, 0.8);
}
.el-message .el-message__content {
  color: #f6e4d6;
}

.getDataTips {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
}
.getDataTips.active {
  display: flex;
}
.getDataTips .get_box {
  width: 270px;
  border-radius: 12px;
  border: 1px solid #ffe2ce;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-image: url("../img/geting_bg.png");
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
}
.getDataTips .get_box::before {
  content: "";
  display: block;
  width: 350px;
  height: 120px;
  position: absolute;
  z-index: 0;
  background-image: url(../img/geting_star.png);
  background-size: cover;
}
.getDataTips .get_box img {
  margin-top: -120px;
  position: relative;
  z-index: 2;
}
.getDataTips .get_box h2 {
  font-size: 18px;
  color: #f6e4d6;
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
  margin-top: 20px;
}
.getDataTips .get_box .retry {
  font-size: 20px;
  color: #04020f;
  width: 172px;
  line-height: 40px;
  text-align: center;
  height: 40px;
  background-image: url("../img/retry_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 30px;
}

.login {
  background: #221f2d;
  box-shadow: 0px -2px 10px 0px rgba(73, 67, 95, 0.34);
  border-radius: 16px;
  padding: 200px 32px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .login {
    padding: 32px;
    height: calc(100vh - 240px);
    justify-content: center;
  }
}
.login img {
  margin-bottom: 20px;
}
.login h1 {
  font-size: 24px;
  color: #f6e4d6;
  margin-bottom: 20px;
}
.login a {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  max-width: 320px;
  font-size: 20px;
  color: #04020f;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding: 18px 0;
  background-image: url("../img/login_btn.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.login a img {
  height: 22px;
  width: auto;
  margin-bottom: 0;
  margin-right: 10px;
}

.list_box h1 {
  font-size: 48px;
  color: #f6e4d6;
  text-align: center;
  margin-bottom: 20px;
}
.list_box p.desc {
  font-size: 24px;
  color: #f6e4d6;
  margin-bottom: 60px;
}
.list_box h2 {
  font-size: 32px;
  color: #f6e4d6;
  margin-bottom: 20px;
}
.list_box .list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  grid-auto-flow: row dense;
  margin-bottom: 40px;
}
.list_box .list li {
  background: #fbf6f2;
  border-radius: 12px;
  padding: 8px 8px 16px;
}
.list_box .list li a {
  display: block;
  width: 100%;
}
.list_box .list li a .thum {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.list_box .list li a .thum img {
  width: 100%;
  transition: all 0.3s;
}
.list_box .list li a span {
  font-size: 16px;
  color: #04020f;
  text-align: center;
  display: block;
  margin-top: 10px;
}
.list_box .list li a:hover .thum img {
  transform: scale(1.1);
}
.list_box.search_res {
  background: #221f2d;
  border-radius: 24px;
  padding: 30px 20px;
  margin-bottom: 60px;
}
.list_box.search_res h1 {
  font-size: 24px;
}
@media screen and (max-width: 600px) {
  .list_box h1 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .list_box p.desc {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .list_box h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .list_box .list {
    margin-bottom: 20px;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
  }
  .list_box .list li {
    padding: 4px 4px 8px;
  }
  .list_box .list li a span {
    font-size: 18px;
    margin-top: 5px;
  }
}

.magician_box {
  padding-top: 20px;
}
.magician_box .tarot-swiper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 90px;
  position: relative;
}
.magician_box .tarot-swiper .swiper-button_prev {
  position: absolute;
  cursor: pointer;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.magician_box .tarot-swiper .swiper-button_prev img {
  width: 32px;
}
.magician_box .tarot-swiper .swiper-button_next {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.magician_box .tarot-swiper .swiper-button_next img {
  width: 32px;
}
.magician_box .tarot-swiper .swiper_box {
  width: calc(100% - 100px);
  opacity: 0;
}
.magician_box .tarot-swiper .swiper_box.active {
  opacity: 1;
}
.magician_box .tarot-swiper .swiper-carousel {
  overflow: hidden;
  width: 100%;
}
.magician_box .tarot-swiper .swiper-carousel .swiper-slide {
  width: 40%;
  transition: all 0.3s ease;
}
.magician_box .tarot-swiper .swiper-carousel .swiper-slide .card {
  width: 100%;
  aspect-ratio: 12/17;
  border-radius: 30px;
  border: 4px solid #f6e4d6;
  overflow: hidden;
}
.magician_box .tarot-swiper .swiper-carousel .swiper-slide .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pbject-position: center;
}
@media screen and (max-width: 860px) {
  .magician_box {
    padding-top: 0;
  }
  .magician_box .tarot-swiper {
    padding: 0;
  }
  .magician_box .tarot-swiper .swiper_box {
    width: 100%;
  }
  .magician_box .tarot-swiper .swiper-button_prev {
    display: none;
  }
  .magician_box .tarot-swiper .swiper-button_next {
    display: none;
  }
  .magician_box .tarot-swiper .swiper-carousel .swiper-slide .card {
    width: 100%;
    border-radius: 15px;
  }
}

.lar_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  font-size: 40px;
  color: #04020f;
  background-image: url("../img/button.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 15px 0;
}
.lar_btn::before, .lar_btn::after {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("../img/star.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 20px;
}
@media screen and (max-width: 860px) {
  .lar_btn {
    font-size: 20px;
    padding: 13px 0;
    margin-top: 20px;
  }
  .lar_btn::before, .lar_btn::after {
    content: "";
    width: 14px;
    height: 14px;
    margin: 0 10px;
  }
}

.title_top {
  font-size: 48px;
  color: #f6e4d6;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 860px) {
  .title_top {
    font-size: 24px;
    margin-bottom: 18px;
  }
}

.popular_recommend {
  margin-top: 60px;
}
.popular_recommend nav {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.popular_recommend nav a {
  width: calc((100% - 60px) / 3);
  background: linear-gradient(221deg, #1e1d2b 0%, #1e1d2b 100%);
  border-radius: 32px;
  border: 1px solid #f9b48a;
  padding: 40px;
}
.popular_recommend nav a figure {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.popular_recommend nav a figure img {
  width: 100%;
}
.popular_recommend nav a figure figcaption {
  font-size: 32px;
  color: #f6e4d6;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 860px) {
  .popular_recommend {
    margin-top: 40px;
  }
  .popular_recommend nav a {
    padding: 14px 0;
    border-radius: 16px;
    width: calc((100% - 28px) / 3);
  }
  .popular_recommend nav a figure img {
    width: calc(100% - 20px);
  }
  .popular_recommend nav a figure figcaption {
    font-size: 14px;
    margin-top: 10px;
    width: 100%;
  }
}

.el-date-table td.disabled .el-date-table-cell {
  background-color: rgba(0, 0, 0, 0.4);
}

.constellation {
  margin-top: 60px;
}
.constellation .title_top {
  margin-bottom: 20px;
}
.constellation .desc {
  font-size: 24px;
  color: #f6e4d6;
  text-align: center;
  margin-bottom: 40px;
}
.constellation .el_date_box {
  position: relative;
}
.constellation .el_date_box .placeholder_box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.constellation .el_date_box .placeholder_box img {
  height: 36px;
  opacity: 0.8;
}
.constellation .el_date_box .placeholder_box .date {
  display: flex;
  align-items: center;
  margin-right: 40px;
}
.constellation .el_date_box .placeholder_box .date b {
  color: #f6e4d6;
  font-weight: 400;
  font-size: 40px;
  margin: 0 24px;
}
.constellation .el_date_box .placeholder_box .date span {
  color: #f6e4d6;
  font-size: 40px;
  position: relative;
}
.constellation .el_date_box .placeholder_box .date span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background-color: #f6e4d6;
}
.constellation .el_date_box .data_picker {
  opacity: 0;
  z-index: 2;
  width: 100%;
  position: absolute;
  top: 0;
  height: 100%;
}
.constellation .el_date_box .data_picker .el-input__wrapper {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 860px) {
  .constellation {
    margin-top: 40px;
  }
  .constellation .desc {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .constellation .el_date_box {
    position: relative;
  }
  .constellation .el_date_box .placeholder_box {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .constellation .el_date_box .placeholder_box img {
    height: 36px;
  }
  .constellation .el_date_box .placeholder_box .date {
    margin-right: 20px;
  }
  .constellation .el_date_box .placeholder_box .date b {
    margin: 0 18px;
  }
  .constellation .el_date_box .placeholder_box .date span {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .constellation .el_date_box {
    position: relative;
  }
  .constellation .el_date_box .placeholder_box img {
    height: 30px;
  }
  .constellation .el_date_box .placeholder_box .date {
    margin-right: 20px;
  }
  .constellation .el_date_box .placeholder_box .date b {
    margin: 0 10px;
  }
  .constellation .el_date_box .placeholder_box .date span {
    font-size: 20px;
  }
}

.el-date-table td.today .el-date-table-cell__text,
.el-date-table td.available:hover {
  color: #d1b883;
}

.el-year-table td.today .el-date-table-cell__text,
.el-year-table td .el-date-table-cell__text:hover,
.el-date-picker__header-label:hover,
.el-month-table td .el-date-table-cell__text:hover,
.el-month-table td.today .el-date-table-cell__text {
  color: #d1b883;
}

.el-month-table td.current:not(.disabled) .el-date-table-cell__text,
.el-year-table td.current:not(.disabled) .el-date-table-cell__text,
.el-date-table td.current:not(.disabled) .el-date-table-cell__text {
  background-color: #d1b883;
}

.el-month-table td.disabled .el-date-table-cell__text,
.el-year-table td.disabled .el-date-table-cell__text {
  background-color: rgba(0, 0, 0, 0.2);
}

.top_rated {
  margin-top: 60px;
}
.top_rated .swiper_box {
  width: 100%;
  overflow: hidden;
}
.top_rated .swiper_box .swiper-wrapper {
  align-items: stretch;
}
.top_rated .swiper_box .swiper-wrapper .swiper-slide {
  height: initial;
  background: linear-gradient(223deg, #1e1d2b 0%, #1e1d2b 100%);
  border-radius: 36px;
  border: 2px solid #f9b48a;
  padding: 32px;
}
.top_rated .swiper_box .swiper-wrapper .swiper-slide a {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.top_rated .swiper_box .swiper-wrapper .swiper-slide a h3 {
  font-size: 32px;
  color: #f6e4d6;
  text-align: center;
}
.top_rated .swiper_box .swiper-wrapper .swiper-slide a p {
  font-size: 18px;
  color: #f6e4d6;
  text-align: center;
  margin-bottom: 10px;
}
.top_rated .swiper_box .swiper-wrapper .swiper-slide a img {
  width: 100%;
}
.top_rated .swiper_box .swiper-wrapper .swiper-slide a .type_list {
  margin-left: 20px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0px 30px;
  width: calc(100% + 20px);
}
.top_rated .swiper_box .swiper-wrapper .swiper-slide a .type_list span {
  font-size: 14px;
  color: #f6e4d6;
  border-radius: 8px;
  border: 1px solid #f6e4d6;
  padding: 11px 15px;
  margin-right: 14px;
  margin-bottom: 14px;
  transition: all 0.3s;
}
.top_rated .swiper_box .swiper-wrapper .swiper-slide a .type_list span:hover {
  background: #f6e4d6;
  color: #04020f;
}
.top_rated .swiper_box .swiper-wrapper .swiper-slide a button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  outline: none;
  margin-top: auto;
  cursor: pointer;
  width: 100%;
  font-size: 28px;
  color: #04020f;
  background-image: url("../img/login_btn.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 24px 0;
  font-family: serif;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.top_rated .swiper_box .swiper-wrapper .swiper-slide a button::before, .top_rated .swiper_box .swiper-wrapper .swiper-slide a button::after {
  content: "";
  width: 14px;
  height: 14px;
  margin: 0 10px;
  background-image: url("../img/star.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 960px) {
  .top_rated .swiper_box {
    width: 100%;
    overflow: hidden;
  }
  .top_rated .swiper_box .swiper-wrapper .swiper-slide {
    border-radius: 26px;
    padding: 20px;
  }
  .top_rated .swiper_box .swiper-wrapper .swiper-slide a h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .top_rated .swiper_box .swiper-wrapper .swiper-slide a p {
    font-size: 16px;
  }
  .top_rated .swiper_box .swiper-wrapper .swiper-slide a .type_list {
    padding: 10px 0px 20px;
    width: calc(100% + 14px);
    margin-left: 10px;
  }
  .top_rated .swiper_box .swiper-wrapper .swiper-slide a .type_list span {
    border-radius: 6px;
    padding: 8px 10px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .top_rated .swiper_box .swiper-wrapper .swiper-slide a button {
    font-size: 22px;
    padding: 20px 0;
  }
}
@media screen and (max-width: 700px) {
  .top_rated .swiper_box .swiper-wrapper .swiper-slide {
    padding: 20px 16px;
  }
  .top_rated .swiper_box .swiper-wrapper .swiper-slide a h3 {
    font-size: 18px;
  }
  .top_rated .swiper_box .swiper-wrapper .swiper-slide a p {
    font-size: 12px;
  }
  .top_rated .swiper_box .swiper-wrapper .swiper-slide a .type_list {
    padding: 10px 0px;
    width: calc(100% + 10px);
  }
  .top_rated .swiper_box .swiper-wrapper .swiper-slide a .type_list span {
    border-radius: 4px;
    padding: 4px 8px;
  }
  .top_rated .swiper_box .swiper-wrapper .swiper-slide a button {
    font-size: 14px;
    padding: 20px 0;
  }
}

.fortune_telling {
  margin-top: 40px;
}
.fortune_telling .fortune_list .item {
  background: linear-gradient(226deg, #1e1d2b 0%, #1e1d2b 100%);
  border-radius: 56px;
  padding: 40px;
}
.fortune_telling .fortune_list .item .thum {
  width: 100%;
  border-radius: 32px;
  border: 4px solid #f9b48a;
  overflow: hidden;
  margin-bottom: 40px;
}
.fortune_telling .fortune_list .item .thum img {
  width: 100%;
}
.fortune_telling .fortune_list .item dl dt {
  font-size: 32px;
  color: #f6e4d6;
  margin-bottom: 16px;
}
.fortune_telling .fortune_list .item dl dd {
  font-size: 20px;
  color: #f6e4d6;
}
.fortune_telling .fortune_list .item + .item {
  margin-top: 40px;
}
@media screen and (max-width: 860px) {
  .fortune_telling {
    margin-top: 20px;
  }
  .fortune_telling .fortune_list .item {
    border-radius: 16px;
    padding: 16px;
  }
  .fortune_telling .fortune_list .item .thum {
    border-radius: 12px;
    border: 2px solid #f9b48a;
    margin-bottom: 16px;
  }
  .fortune_telling .fortune_list .item dl dt {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .fortune_telling .fortune_list .item dl dd {
    font-size: 14px;
  }
  .fortune_telling .fortune_list .item + .item {
    margin-top: 20px;
  }
}

.formation_list {
  display: grid;
  gap: 48px;
  grid-auto-flow: row dense;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.formation_list li {
  height: 100%;
}
.formation_list li a {
  background: linear-gradient(223deg, #1e1d2b 0%, #1e1d2b 100%);
  border-radius: 36px;
  border: 2px solid #f9b48a;
  padding: 32px;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.formation_list li a h3 {
  font-size: 32px;
  color: #f6e4d6;
  text-align: center;
}
.formation_list li a p {
  font-size: 18px;
  color: #f6e4d6;
  text-align: center;
  margin-bottom: 10px;
}
.formation_list li a img {
  width: 100%;
}
.formation_list li a .type_list {
  margin-left: 20px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0px 30px;
  width: calc(100% + 20px);
}
.formation_list li a .type_list span {
  font-size: 14px;
  color: #f6e4d6;
  border-radius: 8px;
  border: 1px solid #f6e4d6;
  padding: 11px 15px;
  margin-right: 14px;
  margin-bottom: 14px;
  transition: all 0.3s;
}
.formation_list li a .type_list span:hover {
  background: #f6e4d6;
  color: #04020f;
}
.formation_list li a button {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  width: 100%;
  font-size: 28px;
  color: #04020f;
  background-image: url("../img/login_btn.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 24px 0;
  font-family: serif;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.formation_list li a button::before, .formation_list li a button::after {
  content: "";
  width: 14px;
  height: 14px;
  margin: 0 10px;
  background-image: url("../img/star.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1040px) {
  .formation_list {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  .formation_list li a {
    padding: 20px;
  }
}
@media screen and (max-width: 830px) {
  .formation_list {
    gap: 15px 13px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .formation_list li a {
    border-radius: 16px;
    border: 1px solid #f9b48a;
    padding: 16px 10px;
  }
  .formation_list li a h3 {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 4px;
  }
  .formation_list li a p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .formation_list li a .type_list {
    margin-left: 10px;
    padding: 10px 0px 20px;
    width: calc(100% + 10px);
  }
  .formation_list li a .type_list span {
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid #f6e4d6;
    padding: 4px 8px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .formation_list li a button {
    font-size: 14px;
    padding: 12px 0;
  }
}
@media screen and (max-width: 500px) {
  .formation_list {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

.detail_main h1 {
  font-size: 48px;
  color: #f6e4d6;
  text-align: center;
  margin-bottom: 40px;
}
.detail_main .detail_base {
  background: #1e1d2b;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.detail_main .detail_base .thum {
  width: 300px;
  border-radius: 16px;
  overflow: hidden;
  margin-right: 32px;
}
.detail_main .detail_base .thum img {
  width: 100%;
}
.detail_main .detail_base .base_info {
  flex: 1;
  min-width: 0px;
  width: 100%;
}
.detail_main .detail_base .base_info ul li {
  display: flex;
  align-items: center;
  font-size: 32px;
  color: #f6e4d6;
}
.detail_main .detail_base .base_info ul li + li {
  margin-top: 10px;
}
.detail_main .detail_base .base_info ul li span {
  font-size: 24px;
}
.detail_main .detail_base .base_info img {
  width: 100%;
  margin-top: 20px;
}
.detail_main .detail_base .base_info dl {
  margin-top: 20px;
  width: 100%;
}
.detail_main .detail_base .base_info dl dt {
  font-size: 32px;
  color: #f6e4d6;
}
.detail_main .detail_base .base_info dl dd {
  font-size: 24px;
  color: #f6e4d6;
  word-break: break-word;
}
.detail_main .detail_base:has(.swiper_box_) {
  position: relative;
}
.detail_main .detail_base:has(.swiper_box_) .swiper_box_ {
  width: 100%;
  overflow: hidden;
}
.detail_main .detail_base:has(.swiper_box_) .swiper_box_ .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: flex-start;
}
.detail_main .detail_base:has(.swiper_box_) .swiper_box_ .swiper-wrapper .swiper-slide .thum {
  width: 330px;
}
.detail_main .detail_base:has(.swiper_box_) .prev,
.detail_main .detail_base:has(.swiper_box_) .next {
  position: absolute;
  bottom: 40px;
  z-index: 999;
  right: 152px;
}
.detail_main .detail_base:has(.swiper_box_) .prev img,
.detail_main .detail_base:has(.swiper_box_) .next img {
  width: 22px;
}
.detail_main .detail_base:has(.swiper_box_) .next {
  right: 40px;
}
.detail_main .detail_base:has(.swiper_box_) .next img {
  transform: rotateZ(180deg);
}
@media screen and (max-width: 900px) {
  .detail_main .detail_base:has(.swiper_box_) .swiper_box_ .swiper-wrapper .swiper-slide {
    flex-direction: column;
    align-items: center;
  }
  .detail_main .detail_base:has(.swiper_box_) .swiper_box_ .swiper-wrapper .swiper-slide .thum {
    width: 300px;
    margin-right: 0;
  }
  .detail_main .detail_base:has(.swiper_box_) .prev,
  .detail_main .detail_base:has(.swiper_box_) .next {
    bottom: initial;
    top: 150px;
    right: initial;
  }
  .detail_main .detail_base:has(.swiper_box_) .next {
    right: 20px;
  }
  .detail_main .detail_base:has(.swiper_box_) .prev {
    left: 20px;
  }
}
.detail_main h2 {
  margin-top: 60px;
  text-align: center;
  font-size: 48px;
  color: #f6e4d6;
  line-height: 1.2;
}
.detail_main .detail_more {
  padding-top: 40px;
}
.detail_main .detail_more .lar_btn {
  margin-bottom: 40px;
}
.detail_main .detail_more .more_item_box {
  position: relative;
}
.detail_main .detail_more .more_item_box.active::before {
  display: none;
}
.detail_main .detail_more .more_item_box::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.detail_main .detail_more .more_item {
  background: #1e1d2b;
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 40px;
}
.detail_main .detail_more .more_item h3 {
  font-size: 32px;
  color: #f6e4d6;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.detail_main .detail_more .more_item h3::after {
  content: "";
  width: 100%;
  height: 22px;
  background-image: url("../img/line.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.detail_main .detail_more .more_item h4 {
  margin-top: 24px;
  font-size: 22px;
  color: #f6e4d6;
  margin-bottom: 10px;
}
.detail_main .detail_more .more_item p {
  font-size: 20px;
  color: #f6e4d6;
  margin-bottom: 12px;
}
@media screen and (max-width: 800px) {
  .detail_main h1 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .detail_main .detail_base {
    border-radius: 24px;
    padding: 20px 16px;
    margin-bottom: 26px;
    flex-direction: column;
  }
  .detail_main .detail_base .thum {
    margin-right: 32px;
    margin-bottom: 12px;
    width: 200px !important;
  }
  .detail_main .detail_base .base_info {
    flex: 1;
  }
  .detail_main .detail_base .base_info ul li {
    font-size: 20px;
  }
  .detail_main .detail_base .base_info ul li + li {
    margin-top: 6px;
  }
  .detail_main .detail_base .base_info ul li span {
    font-size: 16px;
  }
  .detail_main .detail_base .base_info img {
    margin-top: 10px;
  }
  .detail_main .detail_base .base_info dl {
    margin-top: 10px;
  }
  .detail_main .detail_base .base_info dl dt {
    font-size: 20px;
  }
  .detail_main .detail_base .base_info dl dd {
    font-size: 16px;
  }
  .detail_main h2 {
    margin-top: 20px;
    font-size: 24px;
  }
  .detail_main .detail_more {
    padding-top: 20px;
  }
  .detail_main .detail_more .lar_btn {
    margin-bottom: 24px;
  }
  .detail_main .detail_more .more_item {
    background: #1e1d2b;
    border-radius: 24px;
    padding: 16px;
    margin-bottom: 20px;
  }
  .detail_main .detail_more .more_item h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .detail_main .detail_more .more_item p {
    font-size: 16px;
  }
}

.tarot_box h1 {
  font-size: 48px;
  color: #f6e4d6;
  text-align: center;
  margin-bottom: 32px;
}
.tarot_box .tarot_info {
  display: flex;
  align-items: center;
  position: relative;
}
.tarot_box .tarot_info .magician {
  width: 238px;
  overflow: hidden;
  position: relative;
  border: 3px solid #ad805c;
  border-radius: 20px;
}
.tarot_box .tarot_info .magician img {
  width: 100%;
}
.tarot_box .tarot_info .magician a {
  position: absolute;
  top: 20px;
  left: 20px;
}
.tarot_box .tarot_info .magician a img {
  width: 50px;
}
.tarot_box .tarot_info .tarot_swiper {
  width: calc(100% - 138px);
  overflow-x: hidden;
  position: absolute;
  left: 128px;
  padding: 40px 60px;
}
.tarot_box .tarot_info .tarot_swiper .swiper-wrapper .swiper-slide {
  width: 216px;
  background: linear-gradient(228deg, #1e1d2b 0%, #1e1d2b 100%);
  box-shadow: -4px 4px 5px 0px rgba(0, 0, 0, 0.94);
  padding: 12px 16px;
  border-radius: 10px;
  transition: transform 0.3s;
  border: 3px solid #ad805c;
}
.tarot_box .tarot_info .tarot_swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  border-radius: 6px;
}
.tarot_box .tarot_info .tarot_swiper .swiper-wrapper .swiper-slide.active {
  box-shadow: -4px -5px 11px 0px rgba(179, 163, 163, 0.4);
  border: 3px solid #ad805c;
  transform: translateY(-15px);
}
.tarot_box .tarot_info .tarot_swiper .swiper-wrapper .swiper-slide.active img {
  opacity: 1;
}
.tarot_box .user_name {
  width: 100%;
  background: rgba(173, 128, 92, 0.2);
  border-radius: 16px;
  border: 1px solid #ad805c;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  outline: none;
  margin-top: 40px;
  height: 90px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  color: #f6e4d6;
  text-indent: 2em;
}
.tarot_box textarea {
  width: 100%;
  background: rgba(173, 128, 92, 0.2);
  border-radius: 16px;
  padding: 15px;
  border: 1px solid #ad805c;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  outline: none;
  resize: none;
  margin-top: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  color: #f6e4d6;
  text-indent: 2em;
}
.tarot_box .intro {
  margin-top: 40px;
  margin-bottom: 60px;
}
.tarot_box .intro h2 {
  font-size: 48px;
  color: #d8c9c3;
  text-align: center;
  margin-bottom: 32px;
}
.tarot_box .intro ul {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.tarot_box .intro ul li {
  width: calc((100% - 60px) / 3);
  background: linear-gradient(222deg, #1e1d2b 0%, #1e1d2b 100%);
  border-radius: 24px;
  padding: 32px 24px;
}
.tarot_box .intro ul li h3 {
  font-size: 24px;
  color: #f6e4d6;
  text-align: center;
}
.tarot_box .intro ul li img {
  width: 100%;
  margin: 24px 0;
}
.tarot_box .intro ul li p {
  font-size: 20px;
  color: #f6e4d6;
}
@media screen and (max-width: 1024px) {
  .tarot_box h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .tarot_box .user_name {
    border-radius: 8px;
    margin-top: 20px;
    height: 56px;
    font-size: 18px;
    text-indent: 1em;
  }
  .tarot_box .lar_btn {
    margin-top: 32px;
  }
  .tarot_box .intro {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .tarot_box .intro h2 {
    font-size: 24px;
  }
  .tarot_box .intro ul li {
    width: calc((100% - 30px) / 3);
    border-radius: 12px;
    padding: 20px 16px;
  }
  .tarot_box .intro ul li h3 {
    font-size: 18px;
  }
  .tarot_box .intro ul li img {
    margin: 12px 0;
  }
  .tarot_box .intro ul li p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .tarot_box .intro ul {
    flex-direction: column;
  }
  .tarot_box .intro ul li {
    width: 100%;
  }
  .tarot_box .intro ul li + li {
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .tarot_box .tarot_info .magician {
    width: 106px;
    border: 1px solid #ad805c;
    border-radius: 8px;
  }
  .tarot_box .tarot_info .magician a {
    top: 10px;
    left: 10px;
  }
  .tarot_box .tarot_info .magician a img {
    width: 24px;
  }
  .tarot_box .tarot_info .tarot_swiper {
    width: calc(100% - 50px);
    left: 50px;
    padding: 20px 10px;
  }
  .tarot_box .tarot_info .tarot_swiper .swiper-wrapper .swiper-slide {
    width: 100px;
    padding: 6px 8px;
    border-radius: 6px;
  }
  .tarot_box .tarot_info .tarot_swiper .swiper-wrapper .swiper-slide.active {
    transform: translateY(-5px) scale(1.05);
  }
}

.role_mask,
.constellation_mask {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.2);
}
.role_mask.active,
.constellation_mask.active {
  display: block;
}
.role_mask .role_mask_main,
.constellation_mask .role_mask_main {
  background: #221f2d;
  position: absolute;
  height: 100%;
  overflow-y: scroll;
  top: 0;
  right: 0;
  width: 375px;
  padding: 20px 16px 100px;
}
.role_mask .role_mask_main ul,
.constellation_mask .role_mask_main ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
}
.role_mask .role_mask_main ul li a,
.constellation_mask .role_mask_main ul li a {
  display: block;
  width: 100%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.role_mask .role_mask_main ul li a .pointer,
.constellation_mask .role_mask_main ul li a .pointer {
  position: absolute;
  width: 18px;
  top: 10px;
  right: 10px;
  opacity: 0.5;
}
.role_mask .role_mask_main ul li a .thum,
.constellation_mask .role_mask_main ul li a .thum {
  width: 100%;
}
.role_mask .role_mask_main ul li a.active .pointer,
.constellation_mask .role_mask_main ul li a.active .pointer {
  opacity: 1;
}
.role_mask .role_mask_main .title_close,
.constellation_mask .role_mask_main .title_close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}
.role_mask .role_mask_main .title_close h2,
.constellation_mask .role_mask_main .title_close h2 {
  flex: 1;
  min-width: 0;
  margin-right: 20px;
  font-size: 18px;
  color: #f6e4d6;
}
.role_mask .role_mask_main .line,
.constellation_mask .role_mask_main .line {
  width: 100%;
  margin: 20px 0;
}
.role_mask .confirm,
.constellation_mask .confirm {
  position: absolute;
  width: 315px;
  bottom: 32px;
  right: 30px;
  font-size: 20px;
  color: #04020f;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/login_btn.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 15px 0;
}
.role_mask .confirm::before, .role_mask .confirm::after,
.constellation_mask .confirm::before,
.constellation_mask .confirm::after {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("../img/star.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 20px;
}
@media screen and (max-width: 600px) {
  .role_mask .role_mask_main,
  .constellation_mask .role_mask_main {
    width: 100%;
  }
  .role_mask .confirm,
  .constellation_mask .confirm {
    right: 50%;
    transform: translateX(50%);
    bottom: 20px;
  }
}

.no_res {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 40px;
}
.no_res img {
  width: 300px;
}
.no_res p {
  font-size: 32px;
  color: #f6e4d6;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .no_res img {
    width: 200px;
  }
  .no_res p {
    font-size: 20px;
  }
}

.user_mask {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.2);
}
.user_mask.active {
  display: block;
}
.user_mask .user_mask_main {
  background: #221f2d;
  position: absolute;
  height: 100%;
  overflow-y: scroll;
  top: 0;
  right: 0;
  width: 375px;
  padding: 20px 0;
}
.user_mask .user_mask_main .close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
}
.user_mask .user_mask_main dl {
  padding-left: 20px;
  padding-bottom: 10px;
}
.user_mask .user_mask_main dl dt {
  font-size: 20px;
  color: #f6e4d6;
}
.user_mask .user_mask_main dl dd {
  font-size: 14px;
  color: #f6e4d6;
}
.user_mask .user_mask_main ul li {
  border-top: 1px solid rgba(253, 242, 234, 0.2);
}
.user_mask .user_mask_main ul li .trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}
.user_mask .user_mask_main ul li .trigger span {
  font-size: 20px;
  color: #f6e4d6;
  display: flex;
  align-items: center;
}
.user_mask .user_mask_main ul li.active .trigger > img {
  transform: rotateZ(90deg);
}
.user_mask .user_mask_main ul li.active nav {
  display: block;
}
.user_mask .user_mask_main ul li nav {
  background-color: rgb(39, 37, 50);
  display: none;
}
.user_mask .user_mask_main ul li nav a {
  display: block;
  padding: 0 20px 0 30px;
}
.user_mask .user_mask_main ul li nav a + a dl {
  border-top: 1px solid rgba(253, 242, 234, 0.2);
}
.user_mask .user_mask_main ul li nav a dl {
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.user_mask .user_mask_main ul li nav a dl dt {
  font-size: 18px;
  color: #f6e4d6;
}
.user_mask .user_mask_main ul li nav a dl dd {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #f6e4d6;
}
.user_mask .user_mask_main ul li nav a dl dd img {
  margin-left: 4px;
}
.user_mask .user_mask_main .gender {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow-y: scroll;
  background: #221f2d;
}
.user_mask .user_mask_main .gender h2 {
  display: flex;
  align-items: center;
  padding: 28px;
  border-bottom: 1px solid rgba(253, 242, 234, 0.2);
  cursor: pointer;
  font-size: 32px;
  color: #f6e4d6;
}
.user_mask .user_mask_main .gender h2 img {
  transform: rotateZ(180deg);
}
.user_mask .user_mask_main .gender nav {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  padding: 32px;
}
.user_mask .user_mask_main .gender nav a {
  border-radius: 16px;
  border: 1px solid #f6e4d6;
  font-size: 20px;
  color: #f6e4d6;
  padding: 15px 0;
  margin-top: 20px;
  text-align: center;
  transition: all 0.2s;
}
.user_mask .user_mask_main .gender nav a:hover, .user_mask .user_mask_main .gender nav a.active {
  background: #f6e4d6;
  color: #221f2d;
}
.user_mask .user_mask_main .gender .data_lay {
  padding: 24px 20px;
  margin-bottom: 40px;
}
.user_mask .user_mask_main .gender .data_lay .el-input {
  width: 100%;
}
.user_mask .user_mask_main .gender .data_lay .el-input__wrapper {
  box-shadow: none;
  border-radius: 16px;
  border: 1px solid #f6e4d6;
  background-color: transparent;
  outline: none;
  height: 52px;
  width: 100%;
}
.user_mask .user_mask_main .gender .save {
  width: 315px;
  font-size: 20px;
  color: #04020f;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-image: url("../img/login_btn.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 15px 0;
}
.user_mask .user_mask_main .gender .save::before, .user_mask .user_mask_main .gender .save::after {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("../img/star.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 20px;
}
.user_mask .user_mask_main .gender ul {
  padding: 20px;
}
.user_mask .user_mask_main .gender ul li {
  border-bottom: 1px solid rgba(253, 242, 234, 0.2);
  padding: 18px 0;
}
.user_mask .user_mask_main .gender ul li a {
  display: flex;
  align-items: center;
}
.user_mask .user_mask_main .gender ul li a .thum {
  width: 60px;
  height: 67px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 8px;
  border: 1px solid #ad805c;
}
.user_mask .user_mask_main .gender ul li a .thum img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.user_mask .user_mask_main .gender ul li a > img {
  width: 18px;
  margin-left: 10px;
}
.user_mask .user_mask_main .gender ul li a dl {
  flex: 1;
  min-width: 0;
  padding: 0;
}
.user_mask .user_mask_main .gender ul li a dl dt {
  font-size: 18px;
  color: #f6e4d6;
  margin-bottom: 4px;
  line-height: 1;
}
.user_mask .user_mask_main .gender ul li a dl dd {
  font-size: 16px;
  color: #f6e4d6;
  line-height: 1.1;
}
.user_mask .user_mask_main .gender ul li a dl dd:nth-child(3) {
  margin-top: 4px;
  font-size: 12px;
  color: rgb(246, 228, 214);
}
@media screen and (max-width: 600px) {
  .user_mask .user_mask_main {
    width: 100%;
  }
  .user_mask .user_mask_main .gender h2 {
    padding: 24px;
    font-size: 24px;
  }
  .user_mask .user_mask_main .gender nav {
    padding: 24px 16px;
  }
  .user_mask .user_mask_main .gender nav a {
    border-radius: 8px;
    font-size: 18px;
    padding: 12px 0;
    margin-top: 20px;
  }
}

.contellation_match h1 {
  font-size: 32px;
  color: #f6e4d6;
  text-align: center;
  margin-bottom: 20px;
}
.contellation_match .contellation_match_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px;
}
.contellation_match .contellation_match_box .connection_cable {
  width: 50px;
  margin: 0 15px;
}
.contellation_match .contellation_match_box .contellation_box {
  flex: 1;
  aspect-ratio: 3/4;
  border: 2px solid #f6e4d6;
  border-radius: 20px;
  overflow: hidden;
}
.contellation_match .contellation_match_box .contellation_box img {
  width: 100%;
  height: 100%;
}
.contellation_match .contellation_match_box .contellation_box .has_img {
  width: 100%;
  height: 100%;
  position: relative;
}
.contellation_match .contellation_match_box .contellation_box .has_img a {
  position: absolute;
  left: 40px;
  bottom: 40px;
}
.contellation_match .contellation_match_box .contellation_box .has_img a img {
  width: 50px;
}
.contellation_match .contellation_match_box .contellation_box .select_icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}
.contellation_match .contellation_match_box .contellation_box .select_icon img {
  width: 90px;
  height: auto;
}
.contellation_match .contellation_match_box .contellation_box .select_icon p {
  text-align: center;
  font-size: 24px;
  color: #f6e4d6;
  padding: 20px 20px 0;
}
.contellation_match .contellation_match_box .contellation_box .toggle_icon {
  width: 100%;
  height: 100%;
  background-image: url("../img/match_bj.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}
.contellation_match .contellation_match_box .contellation_box .toggle_icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  z-index: 1;
}
.contellation_match .contellation_match_box .contellation_box .toggle_icon > * {
  position: relative;
  z-index: 5;
}
.contellation_match .contellation_match_box .contellation_box .toggle_icon img {
  width: 50px;
  height: auto;
}
.contellation_match .contellation_match_box .contellation_box .toggle_icon p {
  text-align: center;
  font-size: 24px;
  color: #f6e4d6;
  padding: 20px 20px 0;
}
.contellation_match .analysis {
  margin-bottom: 40px;
}
.contellation_match .analysis h2 {
  font-size: 32px;
  color: #f6e4d6;
  margin-bottom: 12px;
}
.contellation_match .analysis .analysis_box {
  background: #221f2d;
  border-radius: 24px;
  padding: 32px;
  font-size: 20px;
  color: #f6e4d6;
}
.contellation_match .analysis .analysis_box * {
  font-size: inherit !important;
  color: inherit !important;
  margin-bottom: 20px;
}
.contellation_match .analysis_res {
  position: relative;
  margin-top: 20px;
}
.contellation_match .analysis_res::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  z-index: 1;
}
.contellation_match .analysis_res.active::after {
  display: none;
}
@media screen and (max-width: 700px) {
  .contellation_match h1 {
    font-size: 24px;
  }
  .contellation_match .contellation_match_box {
    margin-bottom: 20px;
  }
  .contellation_match .contellation_match_box .connection_cable {
    width: 10px;
    margin: 0 5px;
  }
  .contellation_match .contellation_match_box .contellation_box {
    border: 1px solid #f6e4d6;
    border-radius: 10px;
  }
  .contellation_match .contellation_match_box .contellation_box .has_img a {
    left: 20px;
    bottom: 20px;
  }
  .contellation_match .contellation_match_box .contellation_box .has_img a img {
    width: 40px;
  }
  .contellation_match .contellation_match_box .contellation_box .select_icon img {
    width: 40px;
  }
  .contellation_match .contellation_match_box .contellation_box .select_icon p {
    font-size: 14px;
  }
  .contellation_match .contellation_match_box .contellation_box .toggle_icon img {
    width: 20px;
  }
  .contellation_match .contellation_match_box .contellation_box .toggle_icon p {
    font-size: 14px;
    color: #f6e4d6;
    padding: 10px 20px 0;
  }
  .contellation_match .analysis {
    margin-bottom: 20px;
  }
  .contellation_match .analysis h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .contellation_match .analysis .analysis_box {
    border-radius: 10px;
    padding: 16px;
    font-size: 20px;
  }
}

.el-loading-spinner .circular .path {
  stroke: #f6e4d6 !important;
}

.el-loading-text {
  color: #f6e4d6 !important;
}

.ad_box {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 12px;
  margin-top: 20px;
}
.ad_box > p {
  width: 100%;
  text-align: center;
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.2) !important;
  line-height: 16px;
  margin-top: 4px;
  text-transform: lowercase;
}

#recommend {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 30px 0;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  position: relative;
}
#recommend > * {
  position: relative;
  z-index: 2;
}
#recommend::before {
  content: "";
  display: block;
  width: 246px;
  height: 246px;
  position: fixed;
  z-index: 0;
  opacity: 0.25;
  left: calc(50% - 123px);
  top: 50px;
  background: #a481ff;
  filter: blur(50px);
  z-index: 1;
}
#recommend h2 {
  font-size: 20px;
  text-align: center;
  color: #fff;
  margin-bottom: 24px;
  background-image: url("../img/recommend_title_tips.png");
  background-size: 48px 36px;
  background-repeat: no-repeat;
  background-position: right top;
  padding: 0 30px;
}
#recommend h2 span {
  color: #a481ff;
}
#recommend p {
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  padding: 0 20px;
  text-align: center;
  margin-bottom: 12px;
}
#recommend .swiper_box {
  width: 100%;
  margin-bottom: 20px;
  padding: 0 20px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}
#recommend .swiper_box a img {
  width: 100%;
}
#recommend .ads_top {
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 6px;
}
#recommend .ads_top span {
  display: flex;
  align-items: center;
  padding: 0 20px;
  justify-content: center;
  font-size: 12px;
  color: #fff;
}
#recommend .ads_top span::before, #recommend .ads_top span::after {
  content: "";
  flex: 1;
  min-width: 0;
  height: 1px;
  background-color: #d8d8d8;
  margin: 0 8px;
}
#recommend .has_bg {
  background-color: rgba(255, 255, 255, 0.1);
}
#recommend .constellation_list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 20px;
  gap: 15px;
  margin-bottom: 30px;
}
#recommend .constellation_list a img {
  width: 100%;
}
#recommend .constellation_intro {
  margin-top: 16px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 30px 20px 80px;
}
#recommend .constellation_intro ul li dl dt {
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
}
#recommend .constellation_intro ul li dl dd {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
#recommend .constellation_intro ul li + li {
  margin-top: 16px;
}/*# sourceMappingURL=main.css.map */