@font-face {
  font-family: 'black_regular';
  src: url('../font/SourceHanSansCN-Regular.woff2') format('opentype');
}
@font-face {
  font-family: 'black_medium';
  src: url('../font/SourceHanSansCN-Medium.woff2') format('opentype');
}
/* @font-face {
  font-family: 'worldtext';
  src: url('../font/WorldText.otf') format('opentype');
} */
@font-face {
  font-family: 'black_bold';
  src: url('../font/SourceHanSansCN-Bold.woff2') format('opentype');
}
/* @font-face {
  font-family: 'normal';
  src: url('../font/fontNormal.woff2') format('opentype');
} */
@font-face {
  font-family: 'BaseBlod';
  src: url('../font/dengxianchangguiBlod.woff2') format('opentype');
}
@font-face {
   font-family: 'BaseREGULAR';
   src: url('../font/dengxianchangguiREGULAR.woff2') format('woff2');
}
@font-face {
    font-family: 'SourceHanSerifCNBold';
    src: url('../font/SourceHanSerifCN-Bold-2.woff2') format('woff2');
}
@font-face {
    font-family: 'SourceHanSerifCNHeavy';
    src: url('../font/SourceHanSerifCN-Heavy-4.woff2') format('woff2');
}
/* @font-face {
    font-family: 'SourceHanSerifCNBold';
    src: url('../font/SourceHanSerifCN-SemiBold-7.woff2') format('woff2');
} */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, select {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: 'black_medium';
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
html{
  overflow: hidden;
  width: 100%;
  height:100%;
}
body {
  line-height: 1;
  width: 100%;
  height:100%;
  overflow: hidden;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img, object, embed {
  max-width: 100%;
}
.screen{
	position:absolute;
	width:100vw;
	height:100vh;
	left:0;
	top:0
}
#app{
    width: 100%;
	height:100%;
}
* {
	user-select: none;
}

.scale-wrapper{
    width: 1920px;
	height:1080px;
    position: absolute;
	transform: translateX(-50%) scale(var(--ratio)) ;
	top:0;
	left:50%;
	transform-origin: center top;
}
.activity-loading-scale-wrapper{
    width: 1920px;
	height:1080px;
    position: absolute;
	transform: scale(var(--ratio)) ;
	bottom: 0;
	right:0;
	transform-origin: right bottom;
}

.loadingPage{
	width:100%;
	height:100%;
	position:relative;
	z-index:10;
}
:root{
  --defaultFont: "Helvetica Neue", Helvetica, "PingFang SC", Tahoma, Arial, sans-serif;
	/* --cursorDefault: url('/imgs/mouse/default.png') 7 7,auto!important;
	--cursorPointer: url('/imgs/mouse/pointer.png') 7 7,auto!important; */
	--cursorDefault: default;
	--cursorPointer: pointer;
}
.mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
  transition:all .3s;
  -webkit-transition:all .3s;
  opacity:0;
}
.mask.active{
	opacity:1;
	z-index: 2;
}
/* 滚动条的宽度 */
*::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* 滚动条的设置 */
*::-webkit-scrollbar-thumb {
  background-color: #dacbb6;
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
  background-clip: padding-box;
}

/* 滚动条鼠标移上去 */
*::-webkit-scrollbar-thumb:hover {
  background-color: #c0b29f;
}

.modal-leave-to,
.modal-enter-from{
	transform: scale(0.6);
	opacity: 0;
}
.modal-leave-from,
.modal-enter-to{
	transform: scale(1);
	opacity: 1;
}
.modal-leave-active,
.modal-enter-active{
	transition: transform 0.33s cubic-bezier(0, 1, 0.19, 1), opacity 0.1s linear;
	position: absolute;
	left: 0;
	top: 0;
	transform-origin: center center;
	width: 100%;
	height: 100%;
	z-index: 4;
}

.mask-leave-to,
.mask-enter-from{
	opacity: 0;
}
.mask-leave-from,
.mask-enter-to{
	opacity: 1;
}
.mask-leave-active,
.mask-enter-active{
	transition: opacity 0.1s linear;
}
.home-page{
    position: relative;
    height: 100%;
    width: 100%;
    z-index: -1;
    transform: translate3d(0, -100%, 0);
    transition: transform 0.6s;
}
.home-page.active{
    opacity: 1;
    z-index: 1;
    transform: translate3d(0, 0, 0);
}
.opacity{
	opacity:0;
	transition:all .6s;
	-webkit-transition:all .6s;
}
.opacity.active{
	opacity:1;
}
.tool-bar{
    position: absolute;
    display: flex;
    gap: 20px;
    align-items: center;
    right: 74px;
    top: 81px;
    z-index: 1;
}
.tool-bar .music{
    width: 50px;
    height: 47px;
    object-fit: contain;
}
.tool-bar .tool-item{
    cursor: var(--cursorPointer);
}
.tool-bar .desc{
    width: 37.5px;
    height: 37.5px;
}
.tool-bar .share{
    width: 44px;
    height: 46px;
}
.user-wrapper{
    position: relative;
}
.tool-bar .user{
    width: 47px;
    height: 46px;
}
.user-wrapper .user-content-wrapper{
    position: absolute;
    width: 188px;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 17.5px;
}
.user-wrapper .user-content{
    background-color: #333333;
    color: #fff;
    font-size: 15px;
    line-height: 20px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: var(--cursorPointer);
}
.user-wrapper .user-font{
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 34px;
    background-color: #5c5c5c;
    letter-spacing: 1px;
    padding-left: 1px;
    font-size: 15px;
	cursor: var(--cursorPointer);
}
.language-wrapper{
    position: relative;
}
.tool-bar .language{
    width: 48px;
    height: 47px;
}
.language-wrapper .language-content-wrapper{
    position: absolute;
    width: 148px;
    padding-top: 17.5px;
    left: 50%;
    transform: translateX(-50%);
}
.language-wrapper .language-content{
    background-color: #333333;
    color: #fff;
    line-height: 44px;
    text-align: center;
    display: flex;
    align-items: center;
    cursor: var(--cursorPointer);
}
.language-wrapper .language-content a{
	background-color: #333333;
	color: #fff;
	line-height: 44px;
	text-align: center;
	display: flex;
	align-items: center;
	text-decoration:none;
}
.language-wrapper .language-content-icon{
    width: 6px;
    display: block;
    margin: 0 7px;
    font-size: 12px;
    scale: 0.5;
    opacity: 0;
    margin-left: 15px;
    margin-right: 9px;
}
.language-content-active .language-content-icon, .language-content:hover .language-content-icon{
    opacity: 1;
}
.language-wrapper .language-content .language-font{
    color: #a1a1a1;
    text-align: center;
    letter-spacing: 1px;
    padding-left: 1px;
    font-size: 13px;
    white-space: nowrap;
    cursor: var(--cursorPointer);
}
.language-content-active .language-font, .language-content:hover .language-font {
    color: #ffffff !important;
}
.to-official-web{
    width: 233.5px;
    height: 42px;
    text-align: center;
    color: #3C2918;
    cursor: var(--cursorPointer);
    font-size:26px;
    line-height: 42px;
    background: #FFE9AD;
    border-radius: 21px;
    font-family: 'SourceHanSerifCNBold';
    font-weight: bold;
}
.logo{
    position: absolute;
    top: 61px;
    left: 75px;
    width: 205.5px;
}
.next-slide-wrapper{
    position: absolute;
    bottom: calc(var(--ratio) * 55px);
    left: 50%;
    transform: translateX(-50%) scale(var(--ratio));
    display: flex;
    align-items: center;
    gap: 17px;
    justify-content: center;
    width: 397.5px;
    height:32px;
    background: url(../images/home/slide-background.png) no-repeat;
    background-size: 100% 100%;
    cursor: var(--cursorPointer);
}
.next-slide-wrapper:hover{
    opacity: 0.9;
}
.next-slide-wrapper .next-slide-arrow{
    width: 23.5px;
    height: 22px;
}
.next-slide-wrapper .next-slide-text{
    font-size: 22px;
    line-height: 22px;
    color: #FEF5CF;
    margin-top: -3px;
    font-family: 'black_bold';
    /* -webkit-text-stroke: 3px transparent;
    background: linear-gradient(90deg, #754517, #754517, #754517, #754517, #754517, #754517, #754517) top left / 100% 100%;
    -webkit-background-clip: text; */
    -webkit-text-stroke: 3px #754517;
    letter-spacing: 1px;
}
.next-slide-wrapper .next-slide-text:before{
    content: '下滑参与抽奖';
    position:absolute;
    color: #FEF5CF;
    -webkit-text-stroke: 0.1px #754517;
}

.home-page .background{
    position: absolute;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%) scale(1.44);
    transform: translate(-50%,-50%) scale(1.44);
    pointer-events: none;
	transition:all .6s;
	-webkit-transition:all .6s;
    object-fit: cover;
    transform-origin: center;
	/* opacity: 0; */
}
.home-page .background.active{
	-webkit-transform: translate(-50%,-50%) scale(1);
	transform: translate(-50%,-50%) scale(1);
	/* opacity:1; */
}

.center{
    position: absolute;
    left: 50%;
    top: 385px;
    transform: translateX(-50%);
	transition:all .6s;
	-webkit-transition:all .6s;
	opacity:0;
}
.center.active{
	opacity:1;
}
.center .main-title{
    width: 1788px;
    height: 511px;
    display: block;
    max-width: unset;
    margin: 0 auto;
    /* margin-bottom: 49px; */
}
.center .btn-wrapper{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    margin-top: -73px;
}
.center .btn-wrapper .recruit{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.center .btn-wrapper .btn {
    background: url(../images/home/btn-background.png) no-repeat;
    background-position: center;
    background-size: 424.5px 84px;
    width: 424.5px;
    height: 84px;
    line-height: 84px;
    text-align: center;
    font-size: 35px;
    color: white;
    cursor: var(--cursorPointer);
}
.center .btn-wrapper .btn .text{
	font-family: 'SourceHanSerifCNHeavy';
    color:#3C2918;
    font-weight: bold;
}
.center .btn-wrapper .recruit .tip{
    font-size: 18.6px;
    line-height: 18px;
    color: #FEF5CF;
    align-self: center;
}

.activity-page{
    position: absolute;
    left:0;
    top:0;
    height: 100%;
    width: 100%;
    transform: translate3d(0, 100%, 0);
    transition: transform 0.6s;
}
.activity-page.active{
    transform: translate3d(0, 0, 0);
}
.activity-page .background{
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height:100%;
    object-fit: cover;
}
.activity-page .main-title{
    position: absolute;
    width: 1840px;
    height: 241px;
    left: 50%;
    transform: translateX(-50%);
    top: 33px;
    z-index: 2;
}
.activity-page .turntable-wrapper{
    position: absolute;
    left: 207px;
    top: 349px;
    display: flex;
    flex-wrap: wrap;
    width:570px;
    height:586px;
    justify-content: space-between;
    align-content: space-between;
}
.activity-page .turntable-wrapper .turntable-item{
    width: 179px;
    height: 179px;
    position: relative;
}
.activity-page .turntable-wrapper .turntable-item .turntable-item-active{
    position: absolute;
    width: 210px;
    height: 210px;
    left: -16px;
    top: -15px;
    max-width: unset;
    display: none;
}
.activity-page .turntable-wrapper .turntable-item .turntable-item-image{
    position: absolute;
    width: 100%;
    height: 100%;
}
.activity-page .turntable-wrapper .turntable-item .turntable-item-text{
    position: absolute;
    bottom: 18px;
    text-align: center;
    width: 100%;
    color: #FEF5CF;
    font-size: 17px;
    line-height: 20px;
}
.activity-page .turntable-wrapper .turntable-item .turntable-item-text.single-line{
    bottom: 22px;
}
.activity-page .turntable-wrapper .turntable-center{
    width: 179px;
    height: 179px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -6px;
}
.activity-page .turntable-wrapper .turntable-center .draw-button{
    width: 161px;
    height: 153px;
    background: url(../images/activity/draw-button-bg.png) no-repeat;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: var(--cursorPointer);
    position:relative;
}
.activity-page .turntable-wrapper .turntable-center .draw-button .draw-button-text{
    position: relative;
    font-size: 33px;
    color: #3C2918;
    font-family: 'SourceHanSerifCNHeavy';
    letter-spacing: 10px;
    margin-left: 10px;
    z-index: 2;
}
.activity-page .turntable-wrapper .turntable-center .draw-button .draw-button-overlay{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-52%,-50%);
    width: 256px;
    height: 256px;
    max-width: unset;
    position: absolute;
    animation: pulse 4s infinite;
    pointer-events: none;
}
@keyframes pulse {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
}
.activity-page .turntable-wrapper .turntable-center .draw-button .draw-button-star{
    position: absolute;
    width: 55px;
    height: 54px;
    animation: drawTwinkle 1.5s cubic-bezier(0.32, 0.07, 0.65, 0.96) infinite;
    transform-origin: center;
    pointer-events: none;
}
.activity-page .turntable-wrapper .turntable-center .draw-button .draw-button-star.draw-button-star1{
    top: -4px;
    left: 106px;
}
.activity-page .turntable-wrapper .turntable-center .draw-button .draw-button-star.draw-button-star2{
    bottom: -10px;
    left: 99px;
    animation-delay: -0.6s;
}
.activity-page .turntable-wrapper .turntable-center .draw-button .draw-button-star.draw-button-star3{
    bottom: -3px;
    left: -6px;
    animation-delay: -0.3s;
}
.activity-page .turntable-wrapper .turntable-center .draw-button .draw-button-star.draw-button-star4{
    top: 0;
    left: -8px;
    animation-delay: -0.9s;
}
@keyframes drawTwinkle {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
.activity-page .turntable-wrapper .turntable-center .draw-number{
    font-size: 17px;
    line-height: 17px;
    color: #EDD89D;
    margin-top:12px;
    display: flex;
    gap:8px;
    justify-content: center;
}
.activity-page .activity-task-wrapper{
    position: absolute;
    left: 819px;
    top: 316px;
}
.activity-page .activity-task-wrapper .activity-task-main-title-wrapper{
    width: 908px;
    height:127px;
    background: url(../images/activity/task-title-bg.png) no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.activity-page .activity-task-wrapper .activity-task-main-title-wrapper .activity-task-main-title{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}
.activity-page .activity-task-wrapper .activity-task-main-title-wrapper .activity-task-main-title .activity-task-title-icon{
    width: 19px;
    height: 19px;
    display: block;
}
.activity-page .activity-task-wrapper .activity-task-main-title-wrapper .activity-task-main-title .activity-task-title{
    font-size: 37px;
    line-height: 37px;
    font-family: 'SourceHanSerifCNBold';
    background: url(../images_m/common/text-back.png) no-repeat;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}
.activity-page .activity-task-wrapper .activity-task-main-title-wrapper .activity-task-sub-title{
    font-size: 19px;
    line-height: 24px;
    color: #D1BD80;
    margin-top: 10px;
}
.activity-page .activity-task-wrapper .activity-task-list .activity-task-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 907px;
    height: 84.5px;
    padding: 0 29px;
    box-sizing: border-box;
}
.activity-page .activity-task-wrapper .activity-task-list .activity-task-item.stripe{
    background: rgba(229, 193, 122, 0.15);
}
.activity-page .activity-task-wrapper .activity-task-list .activity-task-item .activity-task-item-title{
    font-size: 26px;
    line-height: 26px;
    color: #FEF5CF;
}
.activity-page .activity-task-wrapper .activity-task-list .activity-task-item .activity-task-item-btn{
    width: 235px;
    height: 39px;
    background: #F2DA9F;
    border-radius: 19px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: var(--cursorPointer);
    font-family: 'SourceHanSerifCNBold';
    color: #3C2918;
}
.activity-page .activity-task-wrapper .activity-task-list .activity-task-item.completed .activity-task-item-btn{
    background: #6A3D0A;
    color: #F2D89F;
}
.activity-page .activity-task-wrapper .activity-task-btn-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 29px;
    margin-top: 12.5px;
}
.activity-page .activity-task-wrapper .activity-task-btn-wrapper .activity-task-btn{
    width: 333px;
    height: 70px;
    background: url(../images/activity/btn-bg.png) no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: var(--cursorPointer);
    font-size: 27px;
    line-height: 27px;
    color: #3C2918;
}
.activity-page .activity-task-wrapper .activity-task-btn-wrapper .activity-task-btn .activity-task-btn-text{
    font-family: 'SourceHanSerifCNHeavy';
    margin-top: -2px;
}
.particle-bg-wrapper{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    pointer-events: none;
}
.bottom-particle-image{
    position: absolute;
    left:0;
    bottom: 0;
    width: 100%;
    display: none;
}
.bottom-particle-image.active{
    display: block;
}

.rule-modal {
    position: absolute;
    width: 1920px;
    height: 1080px;
    left: 50%;
    top: 50%;
    transform-origin: center center;
    z-index: 4;
    pointer-events: none;
	transform: translate(-50%, -50%) scale(0.6);
	opacity:0;
	transition:all .3s;
	-webkit-transition:all .3s;
}
#ruleModal.active .rule-modal{
	transform: translate(-50%, -50%) scale(1);
	opacity:1;
}
.rule-wrapper{
    width: 1252px;
    height: 798px;
    background: url(../images/common/background.png) no-repeat;
    background-size: 1252px 798px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: all;
}
.rule-wrapper .main-title{
    position: absolute;
    height: 40px;
    left: 50%;
    top: 35.5px;
    transform: translateX(-50%);
}
.rule-wrapper .main-title .main-text{
    font-size: 40px;
    line-height: 40px;
    font-family: 'SourceHanSerifCNBold';
    background: url(../images/common/text-back.png) no-repeat;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: white;
    text-align: center;
    letter-spacing: 10px;
    white-space: nowrap;
    background-size: cover;
    margin-top: -5px;
}
/* .rule-wrapper .main-title .back-text{
    color: #a79a83;
    font-family: 'worldtext';
    font-size: 17px;
    line-height: 17px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, calc(-50% + 5px));
    opacity: 0.3;
    letter-spacing: 15px;
    text-indent: 15px;
    white-space: nowrap;
    text-transform: uppercase;
    z-index: -1;
} */
.rule-modal .close{
    position: absolute;
    width: 39px;
    height: 40px;
    top: 65px;
    left: 1244px;
    cursor: var(--cursorPointer);
}
.main-content{
    width: 1150px;
    position: absolute;
    height: 560px;
    left: 0;
    top: 155px;
    overflow: auto;
}
.rule-main{
    width: 1110px;
    display: flex;
    flex-direction: column;
    gap: 34px;
    padding-left: 138px;
    box-sizing: border-box;
}
.rule-main .main-block{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.rule-main *{
    user-select: text;
}
.rule-main .rule-main-title{
    font-size: 29px;
    line-height: 29px;
    font-family: 'black_bold';
    font-weight: bold;
    position: relative;
    color: #5a4630;
}
.rule-main .rule-main-title:before {
    content: '';
    width: 15px;
    height: 16px;
    display: block;
    background-image: url(../images/rule/block.png);
    background-repeat: no-repeat;
    background-size: 15px 16px;
    background-position: center;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}
.rule-main .rule-content-text{
    font-size: 20px;
    line-height: 30px;
    color: #5a4630;
}
.rule-main .rule-sub-title{
    font-size: 20px;
    line-height: 45px;
    font-family: 'black_bold';
    color: #a79a83;
    font-weight: bold;
}
.rule-main .main-block .main-block-content{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.rule-main .rule-tip{
    font-size: 20px;
    line-height: 30px;
    color: #797979;
}
.tab-wrapper{
    position: absolute;
    right: 0;
    bottom: -40px;
}
.tab-wrapper .tab-item {
    display: inline-block;
    position: relative;
    width: 259.5px;
    height: 41px;
    background-size: 259.5px 41px;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    line-height: 38px;
    font-size: 21px;
    color: black;
    cursor: var(--cursorPointer);
    white-space: nowrap;
}
.tab-wrapper .tab-item.reward {
    background-image: url(../images/rule/tab-reward-inactive.png);
    margin-right: -28px;
}
.tab-wrapper .tab-item.active{
    color: white;
}
.tab-wrapper .tab-item.rule{
    background-image: url(../images/rule/tab-rule-inactive.png);
}
.tab-wrapper .tab-item.rule.active{
    background-image: url(../images/rule/tab-rule-active.png);
}
.tab-wrapper .tab-item.reward.active{
    z-index: 2;
    background-image: url(../images/rule/tab-reward-active.png);
}
.reward-main{
    width: 1026.5px;
    padding-left: 42.5px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    box-sizing: border-box;
}
.reward-main .main-block{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.reward-main .reward-title{
    line-height: 40.5px;
    background: url(../images/rule/reward-title-background.png) no-repeat;
    background-size: 1026.5px 40.5px;
    background-position: center;
    padding-left: 55px;
    font-size: 22px;
    font-family: 'black_medium';
    color: black;
}
.reward-main .reward-list{
    display: flex;
    padding: 0 55px;
    flex-wrap: wrap;
    gap: 45px;
}
.reward-main .reward-list .reward-item{
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 138.5px;
}
.reward-main .reward-list .reward-item .item-image{
    width: 138.5px;
    height: 138.5px;
    display: block;
}
.reward-main .reward-list .reward-item .item-text{
    width: 100%;
    text-align: center;
    font-size: 17px;
    line-height: 17px;
    color: #252525;
    font-family: 'black_medium';
}
.share-modal{
    position: absolute;
    width: 1920px;
    height: 1080px;
    left: 50%;
    top: 50%;
    transform-origin: center center;
    z-index: 4;
    pointer-events: none;
	transform: translate(-50%, -50%) scale(0.6);
	opacity:0;
	transition:all .3s;
	-webkit-transition:all .3s;
}
#shareModal.active .share-modal{
	transform: translate(-50%, -50%) scale(1);
	opacity:1;
}
.share-wrapper{
    width: 1135px;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: all;
}
.share-wrapper .close{
    position: absolute;
    width: 40px;
    height: 40px;
    top: 32px;
    left: 1100px;
    cursor: var(--cursorPointer);
    z-index: 2;
}
.share-wrapper .top{
    height: 648px;
    position: relative;
}
.share-wrapper .top .baseboard{
    width: 100%;
    height: 100%;
    display: block;
}
.share-wrapper .top .main-image{
    width: 1046px;
    height: 588px;
    display: block;
    position: absolute;
    left: 36px;
    top: 28px;
}
.share-wrapper .bottom{
    width: 1046px;
    height: 38px;
    display: flex;
    gap: 15px;
    margin-top: -19px;
    margin-left: 36px;
    position: relative;
    z-index: 2;
}
.share-wrapper .bottom .link-wrapper{
    width: 694px;
    height: 38px;
    line-height: 38px;
    background: url(../images/share/share-link-background.png) no-repeat;
    background-size: 100% 100%;
    padding: 0 16px 0 20px;
    font-size: 19px;
    color: #3C2918;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    user-select: text;
}
.share-wrapper .bottom .copy-wrapper{
    width: 224.5px;
    height: 38px;
    background: #F2DA9F;
    border-radius: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: var(--cursorPointer);
}
.share-wrapper .bottom .copy-wrapper .copy-text{
    font-size: 23px;
    color: #3C2918;
    line-height: 38px;
    font-family: 'SourceHanSerifCNBold';
}
.share-wrapper .bottom .copy-image-wrapper{
    width: 98.5px;
    height: 37px;
    background: #F2DA9F;
    border-radius: 18.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: var(--cursorPointer);
}
.share-wrapper .bottom .copy-image-wrapper .copy-image{
    width: 38px;
    height: 28px;
    display: block;
}

.task-modal{
    position: absolute;
    width: 1920px;
    height: 1080px;
    left: 50%;
    top: 50%;
    transform-origin: center center;
    z-index: 4;
    pointer-events: none;
	transform: translate(-50%, -50%) scale(0.6);
	opacity:0;
	transition:all .3s;
	-webkit-transition:all .3s;
}
#taskModal.active .task-modal{
	transform: translate(-50%, -50%) scale(0.862037);
	opacity:1;
}
.media-modal{
    position: absolute;
    width: 1920px;
    height: 1080px;
    left: 50%;
    top: 50%;
    transform-origin: center center;
    z-index: 4;
    pointer-events: none;
	transform: translate(-50%, -50%) scale(0.6);
	opacity:0;
	transition:all .3s;
	-webkit-transition:all .3s;
}
#mediaModal.active .media-modal{
	transform: translate(-50%, -50%) scale(1);
	opacity:1;
}
.media-modal .task-wrapper{
    width: 1252px;
    height: 798px;
    background: url(../images/common/background.png) no-repeat;
    background-size: 1252px 798px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: all;
}
.media-modal .task-wrapper .close{
    position: absolute;
    width: 39px;
    height: 40px;
    top: 65px;
    left: 1244px;
    cursor: var(--cursorPointer);
}
.media-modal .task-wrapper .task-list-wrapper{
    position: absolute;
    top: 156px;
    width: 914px;
    margin-left: 160px;
    height: 534px;
    overflow-y: auto;
    padding-right: 76px;
}
.media-modal .task-wrapper .task-list-wrapper .task-item{
    display: flex;
    font-size: 29px;
    align-items: center;
    justify-content: space-between;
}
.media-modal .task-wrapper .task-list-wrapper .task-item .task-content{
    flex: 1;
    min-width: 0;
	line-height: 29px;
    color: #5A4630;
}
.media-modal .task-wrapper .task-list-wrapper .task-status{
    width: 242px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    cursor: var(--cursorPointer);
    background: #AE7432;
    border-radius: 20px;
    font-size: 25px;
    color: #F4EFE0;
}
.media-modal .task-wrapper .task-list-wrapper .task-status span{
    font-family: 'SourceHanSerifCNBold';
}
.media-modal .task-wrapper .task-list-wrapper .task-item.completed .task-status{
    background: #A28A6B;
}
.media-modal .task-wrapper .task-list-wrapper .task-line{
    width: 914px;
    height: 14px;
    position: relative;
    margin-bottom: 32px;
    margin-top: 27px;
    background: url(../images/task/divide.png) no-repeat;
	background-size:contain;
	background-position: center;
}
.media-modal .task-wrapper .task-title-wrapper{
    position: absolute;
    top: 33px;
    left: 50%;
    transform: translateX(-50%);
}
.media-modal .task-wrapper .task-title-wrapper .task-title{
    font-size: 40px;
}
.media-modal .task-wrapper .task-title-wrapper .task-title span{
	background: url(../images/common/text-back.png) no-repeat;
	background-position: center center;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family: 'SourceHanSerifCNBold';
    letter-spacing: 7px;
}
.media-modal .task-wrapper .task-title-wrapper .task-title.task-title-en span{
	letter-spacing: 1px;
}
/* .task-title-wrapper .task-sub-title{
    font-size: 14px;
    font-family: 'worldtext';
    letter-spacing: 8px;
    padding-left: -8px;
    color: #d5bf99;
} */

.backpack-modal{
    position: absolute;
    width: 1920px;
    height: 1080px;
    left: 50%;
    top: 50%;
    transform-origin: center center;
    z-index: 4;
    pointer-events: none;
	transform: translate(-50%, -50%) scale(0.6);
	opacity:0;
	transition:all .3s;
	-webkit-transition:all .3s;
}
#backModal.active .backpack-modal{
	transform: translate(-50%, -50%) scale(1);
	opacity:1;
}
.backpack-modal .backpack-wrapper{
    width: 1252px;
    height: 798px;
    background: url(../images/common/background.png) no-repeat;
    background-size: 1252px 798px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: all;
}
.backpack-modal .backpack-wrapper .close{
    position: absolute;
    width: 39px;
    height: 40px;
    top: 65px;
    left: 1244px;
    cursor: var(--cursorPointer);
}
.backpack-modal .backpack-wrapper .main-title{
    position: absolute;
    left: 50%;
    top: 34px;
    transform: translateX(-50%);
}
.backpack-modal .backpack-wrapper .main-title .main-text{
    font-size: 38px;
    line-height: 38px;
    font-family: 'SourceHanSerifCNBold';
    background: url(../images/common/text-back.png) no-repeat;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    letter-spacing: 10px;
}
/* .backpack-modal .backpack-wrapper .main-title .back-text{
    color: #a79a83;
    font-family: 'worldtext';
    font-size: 17px;
    line-height: 17px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, calc(-50% + 5px));
    opacity: 0.3;
    letter-spacing: 15px;
    text-indent: 15px;
    white-space: nowrap;
    text-transform: uppercase;
    z-index: -1;
} */
.backpack-modal .backpack-wrapper .main-content{
    width: 998px;
    position: absolute;
    height: 560px;
    left: 50%;
    transform: translateX(-50%);
    top: 171px;
    overflow: auto;
    box-sizing: border-box;
}
.backpack-modal .backpack-wrapper .main-content .backpack-desc{
    font-size: 20px;
    color: #5A4630;
    line-height: 30px;
}
.backpack-modal .backpack-wrapper .main-content .divide{
    width: 998px;
    height: 14px;
    margin-top: 34px;
    margin-bottom: 37px;
}
.backpack-modal .backpack-wrapper .main-content .backpack-item-wrapper{
    display: flex;
    gap: 20px;
    justify-content: center;
}
.backpack-modal .backpack-wrapper .main-content .backpack-item-wrapper .backpack-empty{
    font-size: 25px;
    color: #5A4630;
    line-height: 25px;
    margin-top: 106px;
}
.backpack-modal .backpack-wrapper .main-content .backpack-item-wrapper .backpack-item{
    width: 242px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.backpack-modal .backpack-wrapper .main-content .backpack-item-wrapper .backpack-item .backpack-item-img{
    width: 155px;
    height: 156px;
    margin-bottom: 17px;
}
.backpack-modal .backpack-wrapper .main-content .backpack-item-wrapper .backpack-item .backpack-item-name{
    font-size: 19px;
    color: #5A4630;
    line-height: 26px;
    height:52px;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}
.backpack-modal .backpack-wrapper .main-content .backpack-item-wrapper .backpack-item .backpack-item-btn{
    width: 242px;;
    height: 40px;
    background: #AE7432;
    border-radius: 20px;
    font-size: 25px;
    color: #F4EFE0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: var(--cursorPointer);
    font-family: 'SourceHanSerifCNBold';
}
.backpack-modal .backpack-wrapper .main-content .backpack-item-wrapper .backpack-item .backpack-item-btn.received{
    background: #A28A6B;
    color: #F4EFE0;
}

.address-modal,.email-modal{
    position: absolute;
    width: 1920px;
    height: 1080px;
    left: 50%;
    top: 50%;
    transform-origin: center center;
    z-index: 4;
    pointer-events: none;
	transform: translate(-50%, -50%) scale(0.6);
	opacity:0;
	transition:all .3s;
	-webkit-transition:all .3s;
}
#emailModal.active .email-modal{
	transform: translate(-50%, -50%) scale(1);
	opacity:1;
}
#addressModal.active .address-modal{
	transform: translate(-50%, -50%) scale(1);
	opacity:1;
}
.address-modal .address-wrapper,.email-modal .address-wrapper {
    width: 1252px;
    height: 798px;
    background: url(../images/common/background.png) no-repeat;
    background-size: 1252px 798px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: all;
}
.address-modal .address-wrapper .close,.email-modal .address-wrapper .close{
    position: absolute;
    width: 39px;
    height: 40px;
    top: 65px;
    left: 1244px;
    cursor: var(--cursorPointer);
}
.address-modal .address-wrapper .main-title,.email-modal .address-wrapper .main-title{
    position: absolute;
    left: 50%;
    top: 34px;
    transform: translateX(-50%);
}
.address-modal .address-wrapper .main-title .main-text,.email-modal .address-wrapper .main-title .main-text{
    font-size: 38px;
    line-height: 38px;
    font-family: 'SourceHanSerifCNBold';
    background: url(../images/common/text-back.png) no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-position: center;
    margin-top: -5px;
    letter-spacing: 10px;
}
.address-modal .address-wrapper .main-content,.email-modal .address-wrapper .main-content{
    width: 980px;
    position: absolute;
    left: 168px;
    top: 157px;
    overflow: auto;
    padding-right: 75px;
    padding-top: 52px;
    box-sizing: border-box;
}
.address-modal .address-wrapper .main-content .form-wrapper,.email-modal .address-wrapper .main-content .form-wrapper{
    display: flex;
    flex-direction: column;
    gap: 47px;
}
.address-modal .address-wrapper .main-content .form-wrapper .form-item,.email-modal .address-wrapper .main-content .form-wrapper .form-item{
    display: flex;
    align-items: center;
}
.address-modal .address-wrapper .main-content .form-wrapper .form-item .form-item-label,.email-modal .address-wrapper .main-content .form-wrapper .form-item .form-item-label{
    width: 153px;
    font-size: 26px;
    color: #5A4630;
}
.address-modal .address-wrapper .main-content .form-wrapper .form-item .form-item-input,.email-modal .address-wrapper .main-content .form-wrapper .form-item .form-item-input{
    flex: 1;
    min-width: 0;
    position: relative;
    min-height: 43px;
    border: 1px solid #5A4630;
}
.address-modal .address-wrapper .main-content .form-wrapper .form-item .form-item-input.no-border,.email-modal .address-wrapper .main-content .form-wrapper .form-item .form-item-input.no-border{
    border: 0;
}
.address-modal .address-wrapper .main-content .form-wrapper .form-item .select-wrapper, .email-modal .address-wrapper .main-content .form-wrapper .form-item .select-wrapper{
    width:162px;
	height:43px;
    margin-left:20px;
    border: 1px solid #5A4630;
    position: relative;
    display: inline-block;
}
.address-modal .address-wrapper .main-content .form-wrapper .form-item .form-item-input .select-wrapper:nth-child(1){
	margin-left:0;
}
.address-modal .address-wrapper .main-content .form-wrapper .form-item .form-item-input select{
	width:162px;
	height:43px;
	font-size:26px;
	text-align: center;
    background-color: transparent;
    color: #5a4630;
    border: 0;
    /* 隐藏原生select的下拉箭头 */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 20px; /* 确保有足够的空间显示自定义箭头 */
}
.address-modal .address-wrapper .main-content .form-wrapper .form-item .form-item-input select[readonly="readonly"]{
    pointer-events: none;
}
.address-modal .address-wrapper .main-content .form-wrapper .form-item .form-item-input .select-wrapper .arrow-down, .email-modal .address-wrapper .main-content .form-wrapper .form-item .form-item-input .select-wrapper .arrow-down {
    position: absolute;
    right: 10px;
    top: 17px;
    pointer-events: none;
    width: 16px;
    height: 9px;
}
.address-modal .address-wrapper .main-content .form-wrapper .form-item .form-item-input input,.email-modal .address-wrapper .main-content .form-wrapper .form-item .form-item-input input{
    width: 100%;
    height: 40px;
    font-size: 26px;
    padding: 0 12px;
    outline: none;
    box-sizing: border-box;
    background-color: transparent;
    border: 0;
    color: #5a4630;
}
.address-modal .address-wrapper .main-content .form-wrapper .form-item .form-item-input input::placeholder,.email-modal .address-wrapper .main-content .form-wrapper .form-item .form-item-input input::placeholder{
    color: #5a4630;
    opacity: 0.6;
}
.address-modal .address-wrapper .tip,.email-modal .address-wrapper .tip{
    position: absolute;
    left: 412px;
    bottom: 86px;
    font-size: 18px;
    color: #5A4630;
    opacity: 0.6;
}
.address-modal .address-wrapper .submit-btn,.email-modal .address-wrapper .submit-btn{
    position: absolute;
    left: 463px;
    bottom: 119px;
    width: 309px;
    height: 42px;
    background: #AE7432;
    border-radius: 21px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: var(--cursorPointer);
}
.address-modal .address-wrapper .submit-btn .text,.email-modal .address-wrapper .submit-btn .text{
    font-size: 26px;
    color: #F4EFE0;
	font-family: 'SourceHanSerifCNBold';
}
.address-modal .address-wrapper .back-btn,.email-modal .address-wrapper .back-btn,.media-modal .task-wrapper .back-btn{
    position: absolute;
    left: 106px;
    bottom: 88px;
    display: flex;
    gap: 14px;
    align-items: center;
    color: #777777;
    cursor: var(--cursorPointer);
    opacity: 0.6;
}
.media-modal .task-wrapper .back-btn .back-icon{
	height:18px;
	margin-top:3px;
}
.address-modal .address-wrapper .back-btn .back-icon,.email-modal .address-wrapper .back-btn .back-icon{
	height:18px;
	margin-top:3px;
}
.address-modal .address-wrapper .back-btn span,.email-modal .address-wrapper .back-btn span,.media-modal .task-wrapper .back-btn span{
    font-size: 29px;
    color: #5A4630;
    font-family: 'SourceHanSerifCNBold';
}
.login-modal * {
    font-family: 'black_regular';
}
.login-modal{
	width: 470px;
	border-radius: 6px;
	background: white;
	padding: 0 25px 27px;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(.6);
	z-index: 50;
	opacity:0;
	transition:all .3s;
	-webkit-transition:all .3s;
}
#loginModal.active .login-modal{
	transform: translate(-50%, -50%) scale(1);
	opacity:1;
}
.login-modal .hero-logo{
    display: block;
    height: 56px;
    width: 200px;
    object-fit: contain;
    margin: 35px auto 13px;
}
.login-modal .close{
	position: absolute;
	right: 20px;
	top: 19.5px;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 19px;
	height: 19px;
	background-image: url(../images/home/hero-close.png);
	cursor: var(--cursorPointer);
}
.login-modal .form-box{
	width:450px;
	overflow: hidden;
	position:relative;
	margin:0 auto 0;
}
.login-modal .form-box .form-item{
	width:448px;
	height:51px;
	border:1px solid #e8e8e8;
	position:relative;
	margin-top:14px;
}
.login-modal .form-box .form-item .phone-icon{
	display: block;
    width: 34px;
    height: 100%;
    float: left;
    margin: 0px 0 0 14px;
    position: relative;
    color: #585858;
    font-size: 22px;
    line-height: 50px;
}
.login-modal .form-box .form-item .phone-icon:after{
	display:block;
	content:'';
	width:1px;
	height:24px;
	background:#e8e8e8;
	position:absolute;
	right:-12px;
	top:50%;
	margin-top:-12px;
}
.login-modal .form-box .form-item input{
	background:none;
	outline:none;
	border:none;
}
.login-modal .form-box .form-item input.form-item-phone{
	width:374px;
	height:100%;
	margin-left:20px;
	font-size:18px;
	color:#585858;
	line-height:51px;
	float:left;
}
.login-modal .form-box .form-item input.form-item-yzm{
	width:315px;
	height:100%;
	font-size:18px;
	color:#585858;
	line-height:51px;
	float:left;
	text-indent:14px;
}
.login-modal .form-box .form-item .captcha{
	width:125px;
	height:100%;
	float:right;
	font-size:20px;
	color:#c9b89a;
	line-height:51px;
	text-align: center;
	position:relative;
	cursor: var(--cursorPointer);
}
.login-modal .form-box .form-item .captcha.active{
	pointer-events: none;
}
.login-modal .form-box .form-item .captcha:before{
	display:block;
	content:'';
	width:1px;
	height:24px;
	background:#e8e8e8;
	position:absolute;
	left:0;
	top:50%;
	margin-top:-12px;
}
/*input placeholder样式修改*/
.login-modal .form-box .form-item input::-webkit-input-placeholder {    /* Chrome/Opera/Safari */
	/*text-align: center;*/
	color:#b3b3b3;
}
.login-modal .form-box .form-item input::-moz-placeholder { /* Firefox 19+ */  
	/*text-align: center;*/
	color:#b3b3b3;
}	
.login-modal .form-box .form-item input:-ms-input-placeholder { /* IE 10+ */
	/*text-align: center;*/
	color:#b3b3b3;
}
.login-modal .form-box .form-item input:-moz-placeholder { /* Firefox 18- */
	/*text-align: center;*/
	color:#b3b3b3;
}
.agree-box{
	width:400px;
	margin:34px auto 0;
	font-size:16px;
	color:#7f7f7f;
	overflow: hidden;
	display: flex;
	display: -webkit-flex;
}
.agree-box .agree-checkbox{
	width:15px;
	height:15px;
	position:relative;
	border:1px solid #bcbcbc;
	cursor: var(--cursorPointer);
	position:relative;
	margin-right:8px;
	margin-top:4px;
}
.agree-box .agree-checkbox.active:after{
	display:block;
	content:'';
	width:19px;
	height:14px;
	background:url(../images/home/gou.png) no-repeat center;
	background-size:cover;
	position:absolute;
	left:0;
	top:0;
}
.agree-box .agree-txt{
	width:375px;
	overflow: hidden;
	line-height:21px;
}
.agree-box .agree-txt a{
	color:#d6bb8a;
	text-decoration: none;
}
.agree-box .agree-txt a:hover{
	text-decoration: underline;
}
.agree-box .agree-txt span{
	/* font-family: 'normal'; */
}
.login-modal .login-btn{
	width:448px;
	height:61px;
	background:#353535;
	position:relative;
	margin:10px auto 0;
	font-family: 'SourceHanSerifCNBold';
	font-size:20px;
	color:#d6bb8a;
	text-align: center;
	line-height:61px;
	border-radius: 30px;
	cursor: var(--cursorPointer);
}
.login-modal .login-btn.active{
	pointer-events: none;
}
.lottery-modal{
	position: absolute;
	width: 1920px;
	height: 1080px;
	left: 50%;
	top: 50%;
	transform-origin: center center;
	z-index: 4;
	pointer-events: none;
	transform: translate(-50%, -50%) scale(0.6);
	opacity:0;
	transition:all .3s;
	-webkit-transition:all .3s;
}
#lotteryModal.active .lottery-modal{
	transform: translate(-50%, -50%) scale(1);
	opacity:1;
} 
.lottery-modal .lottery-wrapper{
    width: 1175.5px;
    height: 655px;
    position: absolute;
    left: 50%;
    top: 190px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    pointer-events: all;
}
.successful .successful-image{
	opacity:0;
	position:absolute;
	left:50%;
	top:45%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
}
.successful .successful-image.active{
	opacity:1;
}
.icon-wrapper{
    position: absolute;
    top: 568px;
    width: 1061px;
    display: flex;
    align-items: flex-start;
    text-align: center;
	justify-content: space-between;
}
.icon-wrapper .icon-item{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
.icon-wrapper .icon-item-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 333px;
    height:70px;
    background: url(../images/lottery/btn-bg.png) no-repeat;
    background-size: 100% 100%;
    cursor: var(--cursorPointer);
}
.icon-wrapper .icon-item-btn .icon-font{
	font-size: 28px;
    color: #3c2918;
    font-family: 'SourceHanSerifCNHeavy';
}
.icon-wrapper .lottery-num{
    color: #b09d6f;
    font-size: 20px;
    line-height: 26px;
}

#ruleModal,#shareModal,#taskModal,#mediaModal,#backModal,#addressModal,#loginModal,#lotteryModal,.wxCode, .qywxCode,#emailModal,#appointModal,#appointSuccessModal{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity:0;
}
#ruleModal.active,#shareModal.active,#taskModal.active,#mediaModal.active,#backModal.active,#addressModal.active,#loginModal.active,#lotteryModal.active,.wxCode.active,.qywxCode.active,#emailModal.active,#appointModal.active,#appointSuccessModal.active{
	opacity:1;
	z-index:3;
}
.mask2{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.wxCode .close2, .qywxCode .close2{
	position: absolute;
    left: 1203px;
    top: 345px;
    width: 50px;
    height: 50px;
    cursor: var(--cursorPointer);
}
.wxCode img, .qywxCode img{
	display:block;
	width: 380px;
    height: 380px;
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	-webkit-transform:translate(-50%,-50%);
}
.outPrice{
	width:100%;
	position:absolute;
	left:0;
	text-align:center;
	top:250px;
	color:#fff;
	-webkit-text-stroke:4px transparent;
	background:linear-gradient(90deg,black,black,black,black,black,black,black) top left / 100% 100%;
	-webkit-background-clip: text;
	font-size:27px;
	height:40px;
}
.successful-price{
	width:100%;
	position:absolute;
	left:0;
	top:144px;	
}
.successful-price img{
	display:block;
	width:155px;
	margin:0 auto 0;
}
.successful-price img.no-prize{
	width:185px;
}
.successful-price p{
	color:#fff;
	-webkit-text-stroke:3px transparent;
	background:linear-gradient(90deg,black,black,black,black,black,black,black) top left / 100% 100%;
	-webkit-background-clip: text;
	font-size:22px;
	height:40px;
	text-align:center;
	margin-top:15px;
}
#loginModal .user-info{
    width: 470px;
    border-radius: 6px;
    background: white;
    padding: 0 35px 27px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 50;
}
#loginModal .user-info .cht-logo{
    display: block;
    height: 78px;
    width: 148px;
    object-fit: contain;
    margin: 35px auto 20px;
    position: relative;
    top: -5px;
}
#loginModal .user-info .close{
    position: absolute;
    right: 20px;
    top: 19.5px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 19px;
    height: 19px;
    background-image: url(../images/icon/hero-close.png);
    cursor: var(--cursorPointer);
}
#loginModal .user-info .form-box {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#loginModal .user-info .input-item{
    position: relative;
    border: 1px solid rgba(0,0,0,.1);
    width: 100%;
    display: flex;
    align-items: center;
    height: 53px;
}
#loginModal .user-info .input-item .prefix-wrapper{
    width: 18px;
    padding-left: 16px;
    display: flex;
    justify-content: center;
}
#loginModal .user-info .input-item .prefix-icon{
    display: block;
}
#loginModal .user-info .input-item .form-box-input{
    padding-left: 13px;
    border: 0;
    box-sizing: border-box;
    font-size: 20px;
    color: #585858;
    outline: none;
    flex: 1;
    min-width: 0;
    font-family: BaseBlod;
}
#loginModal .user-info.big-padding .form-box-input{
    padding-left: 15px;
}
#loginModal .user-info .input-item .verification{
    color: #c9b89a;
    font-size: 20px;
    padding: 0 20px;
    margin-left: 10px;
    position: relative;
    cursor: var(--cursorPointer);
	font-family: BaseREGULAR;
}
#loginModal .user-info .input-item .verification:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    border-left: 1px solid #e6e6e6;
}
#loginModal .user-info .input-item .tip-wrapper{
    border: 0;
    margin: -40px 0;
    min-height: 53px;
    height: inherit;
}
#loginModal .user-info .input-item .tip{
    padding-left: 13px;
    font-size: 12px;
    font-family: BaseBlod;
    color: #858585;
    line-height: 20px;
}
#loginModal .agree{
    display: flex;
    width: 100%;
    color: #858585;
    font-size: 16px;
    line-height: 22px;
    align-items: center;
    padding-left: 30px;
    margin-bottom: 40px;
}
#loginModal .agree .agree-checkbox{
    height: 14px;
    width: 14px;
    margin-right: 7px;
    border: 1px solid #bbbbbb;
    position: relative;
    cursor: var(--cursorPointer);
}
#loginModal .agree span {
    font-family: BaseBlod;
}
#loginModal .agree .agree-link {
    color: #cab99b;
    text-decoration: none;
    cursor: var(--cursorPointer);
}
#loginModal .agree .agree-link {
    font-family: BaseBlod;
}

#loginModal .user-info .input-item .form-box-input::placeholder {
    color: #cacaca;
    font-family: 'BaseREGULAR';
    font-size: 20px;
}
#loginModal .user-info .input-item .prefix-icon.lock{
    width: 16px;
}
#loginModal .user-info .tools{
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
#loginModal .user-info .tools .tool-item{
    font-size: 16px;
    font-family: BaseBlod;
    color: #b9a789;
    cursor: var(--cursorPointer);
}
#loginModal .button{
    transform-origin: center;
}
#loginModal .user-info .btn.black{
    background: #353535;
    border: 0;
}
#loginModal .user-info .btn{
    width: 100%;
    height: 60px;
    border-radius: 30px;
    border: 1px solid #d7bd8d;
    color: #d6bb8a;
    font-family: BaseBlod;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: var(--cursorPointer);
    box-sizing: border-box;
}
#loginModal .user-info .btn:hover {
    opacity: .9!important;
}
#loginModal .user-info.big-padding{
    padding: 60px 35px 50px;
}
#loginModal .user-info .form-box.big-gap{
    gap: 40px;
}
#loginModal .user-info .back-icon{
    position: absolute;
    width: 11px;
    display: block;
    left: 26px;
    top: 20px;
    transform: rotate(180deg);
    transform-origin: center center;
    cursor: var(--cursorPointer);
}
#loginModal .user-info .title{
    font-size: 28px;
    font-family: BaseBlod;
    color: #858585;
    margin-bottom: 39px;
    text-align: center;
}
#loginModal .user-info .form-box.big-margin{
    margin-bottom: 50px;
}
#loginModal .user-info .success-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 60px 0;
}
#loginModal .user-info .success-wrapper .success-icon{
    width: 59px;
    display: block;
}
#loginModal .user-info .success-wrapper .success-text{
    font-size: 23px;
    color: #858585;
    font-family: BaseBlod;
}

.share-link-wrapper{
    position:absolute;
    left: 75px;
    bottom: 55px;
    display: flex;
    gap: 30px;
    align-items: center;
    pointer-events: auto;
}
.share-link-wrapper .share-link-item{
    position: relative;
}
.share-link-wrapper .share-link-item .share-item-hover{
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -100%);
    width: 200px;
    height: 200px;
    padding-bottom: 20px;
    display: none;
}
.share-link-wrapper .share-link-item:hover .share-item-hover{
    display: block;
}
.share-link-wrapper .share-link-icon{
    display: block;
    cursor: var(--cursorPointer);
    opacity: 0.9;
}
.share-link-wrapper .share-link-icon:hover{
    opacity: 1;
}

.appoint-modal{
    position: absolute;
    width: 1920px;
    height: 1080px;
    left: 50%;
    top: 50%;
    transform-origin: center center;
    z-index: 4;
	transform: translate(-50%, -50%) scale(0.6);
	opacity:0;
	transition:all .3s;
	-webkit-transition:all .3s;
}
#appointModal.active .appoint-modal{
	transform: translate(-50%, -50%) scale(1);
	opacity:1;
}
.appoint-modal .appoint-wrapper{
    width: 679px;
    height: 733px;
    background: url(../images/appointment/appoint-background.png) no-repeat;
    background-size: 679px 733px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.appoint-modal .appoint-wrapper .close{
    position: absolute;
    width: 39px;
    height: 40px;
    top: 0px;
    left: 657px;
    cursor: var(--cursorPointer);
}
.appoint-modal .appoint-wrapper .main-title{
    width: 446px;
    height: 149px;
    display: block;
    margin-top: 34px;
}
.appoint-modal .appoint-wrapper .appoint-form-wrapper{
    display: none;
    flex-direction: column;
    align-items: center;
    margin-top: 56px;
}
.appoint-modal .appoint-wrapper .appoint-form-wrapper.active{
    display: flex;
}
.appoint-modal .appoint-wrapper .appoint-form{
    width: 495.5px;
    display: flex;
    flex-direction: column;
    gap: 43px;
}
.appoint-modal .appoint-wrapper .appoint-form .appoint-form-item{
    width: 100%;
    height: 75.1px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 10px;
    background: #F4EFE0;
    box-sizing: border-box;
}
.appoint-modal .appoint-wrapper .appoint-form .appoint-form-item .appoint-form-item-input{
    flex:1;
    min-width: 0;
    font-size: 23px;
    border: 0;
    outline: none;
    padding:0;
    background: transparent;
    color:#5A4630;
}
.appoint-modal .appoint-wrapper .appoint-form .appoint-form-item .appoint-form-item-input::placeholder{
    color: rgba(90, 70, 48, 0.6);
    font-size: 23px;
}
.appoint-modal .appoint-wrapper .appoint-form .appoint-form-item .appoint-form-item-code{
    width: 182.5px;
    height: 35.8px;
    background: #AE7432;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: var(--cursorPointer);
    font-size: 22px;
    color:#F4EFE0;
    font-family: SourceHanSerifCNBold;
}
.appoint-modal .appoint-wrapper .appoint-form .appoint-form-item .appoint-form-item-code.active{
    pointer-events: none;
}
.appoint-modal .appoint-wrapper .appoint-agree{
    width: 430px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 45px;
}
.appoint-modal .appoint-wrapper .appoint-agree .agree-checkbox-wrapper{
    width: 16.3px;
    height: 16.3px;
    border: 1px solid #EDD89D;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: var(--cursorPointer);
}
.appoint-modal .appoint-wrapper .appoint-agree .agree-checkbox-wrapper .check-icon{
    width: 14px;
    height: 9px;
    display: none;
}
.appoint-modal .appoint-wrapper .appoint-agree .agree-checkbox-wrapper.active .check-icon{
    display: block;
}
.appoint-modal .appoint-wrapper .appoint-agree .agree-text{
    font-size: 17px;
    line-height: 25px;
    color:#EDD89D;
    flex:1;
    min-width: 0;
    margin-top: -5px;
}
.appoint-modal .appoint-wrapper .appoint-agree .agree-text a{
    color:#FEF5CF;
    cursor: var(--cursorPointer);
    outline: none;
    text-decoration: none;
}
.appoint-modal .appoint-wrapper .appoint-agree .agree-text a:hover{
    text-decoration: underline;
}
.appoint-modal .appoint-wrapper .appoint-button{
    width: 477px;
    height: 83px;
    background: url(../images/appointment/appoint-btn-bg.png) no-repeat;
    background-size: 477px 83px;
    cursor: var(--cursorPointer);
    margin-top: 68px;
    font-size: 34px;
    color: #3C2918;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'SourceHanSerifCNHeavy';
    font-weight: bold;
}
.appoint-modal .appoint-wrapper .appoint-button.active{
    pointer-events: none;
}
.appoint-modal .appoint-wrapper .appoint-no-qualification{
    display: none;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}
.appoint-modal .appoint-wrapper .appoint-no-qualification.active{
    display: flex;
}
.appoint-modal .appoint-wrapper .appoint-no-qualification .no-qualification-image{
    width: 282px;
    height: 263px;
    display: block;
}
.appoint-modal .appoint-wrapper .appoint-no-qualification .qualification-text{
    font-size: 21px;
    color: #EDD89D;
    line-height: 30px;
    margin-top: 27px;
    text-align: center;
}
.appoint-modal .appoint-wrapper .appoint-no-qualification .appoint-button{
    margin-top: 34px;
}
.appoint-modal .appoint-wrapper .appoint-qualification{
    display: none;
    flex-direction: column;
    align-items: center;
    margin-top: 26px;
}
.appoint-modal .appoint-wrapper .appoint-qualification.active{
    display: flex;
}
.appoint-modal .appoint-wrapper .appoint-qualification .qualification-image{
    width: 216px;
    height: 273px;
    display: block;
}
.appoint-modal .appoint-wrapper .appoint-qualification .qualification-text{
    font-size: 21px;
    color: #EDD89D;
    line-height: 30px;
    margin-top: 21px;
    text-align: center;
}
.appoint-modal .appoint-wrapper .appoint-qualification .appoint-button{
    margin-top: 34px;
}

.appoint-success-modal{
    position: absolute;
    width: 1920px;
    height: 1080px;
    left: 50%;
    top: 50%;
    transform-origin: center center;
    z-index: 4;
	transform: translate(-50%, -50%) scale(0.6);
	opacity:0;
	transition:all .3s;
	-webkit-transition:all .3s;
}
#appointSuccessModal.active .appoint-success-modal{
	transform: translate(-50%, -50%) scale(1);
	opacity:1;
}
.appoint-success-modal .appoint-success-wrapper{
    width: 679px;
    height: 733px;
    background: url(../images/appointment/appoint-background.png) no-repeat;
    background-size: 679px 733px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.appoint-success-modal .appoint-success-wrapper .close{
    position: absolute;
    width: 39px;
    height: 40px;
    top: 0px;
    left: 657px;
    cursor: var(--cursorPointer);
}
.appoint-success-modal .appoint-success-wrapper .appoint-success-title{
    width: 344px;
    height: 149px;
    margin-top: 34px;
}
.appoint-success-modal .appoint-success-wrapper .appoint-success-content-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}
.appoint-success-modal .appoint-success-wrapper .appoint-success-content-wrapper .wechat-qrcode{
    width: 350px;
    height: 350px;
    display: block;
}
.appoint-success-modal .appoint-success-wrapper .appoint-success-content-wrapper .line{
    width: 417px;
    height: 14px;
    display: block;
    margin-top: 15px;
}
.appoint-success-modal .appoint-success-wrapper .appoint-success-content-wrapper .appoint-success-tip{
    font-size: 28px;
    color: #EDD89D;
    line-height: 34px;
    margin-top: 32px;
    text-align: center;
    width: 550px;
}

.share-image-wrapper{
    position: absolute;
    width: 1920px;
    height: 1079px;
    left: -99999px;
    top: -99999px;
    background: url(../images/share/share-main-image.jpg) no-repeat;
    background-size: 100% 100%;
}
.share-image-wrapper .share-image-qrcode-wrapper{
    position: absolute;
    left: 82px;
    top: 75px;
    width: 200px;
    height: 200px;
    display: block;
    padding: 10px;
    box-sizing: border-box;
    background: white;
}
.share-image-wrapper .share-image-qrcode{
    width: 100%;
    height: 100%;
    display: block;
}
.share-image-wrapper .share-qrcode-text{
    position: absolute;
    left: 82px;
    top: 280px;
    display: block;
    font-size: 28px;
    color: white;
    text-align: center;
    width: 200px;
    -webkit-text-stroke: 0.3px #efc859;
}

