@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: 'song_semiBold';
  src: url('../font/SourceHanSerifCN-SemiBold-7.otf') 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: 'song_bold';
  src: url('../font/SourceHanSerifCN-Bold-2.woff2') format('woff2');
}
@font-face {
    font-family: 'song_heavy';
    src: url('../font/SourceHanSerifCN-Heavy-4.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,
body,
#app {
	width: 100vw;
	height: 100%;
	left:0;
	top:0;
    overflow: hidden;
	-webkit-user-select:none; 
	-moz-user-select:none; 
	-ms-user-select:none; 
	user-select:none;
	background-color: #fff;
	/* overflow: hidden; */
}
html{
	position:absolute;
}
html.ios{
	position:fixed;
}
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%;
}
img:not(.longpress) {
    -webkit-touch-callout: none;
}
.screen{
	position:absolute;
	width:100vw;
	height:calc(var(--vh) * 100);
	left:0;
	top:0
}
* {
	user-select: none;
    -webkit-tap-highlight-color:transparent;
    touch-action: manipulation;
}

.scale-wrapper{
    width: 750px;
	height:1333px;
    position: absolute;
	transform: translateX(-50%) scale(var(--ratio)) ;
	top:0;
	left:50%;
	transform-origin: center top;
    pointer-events: none;
}
.scale-wrapper > * {
    pointer-events: auto;
}

.loadingPage{
	width:100%;
	height:100%;
	background:#f4f6fa;
	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;
}
.mask .tip{
    position:absolute;
    font-size:22px;
    left:50%;
    transform: translateX(-50%);
    bottom:53px;
    color:#FEF5CF;
}
/* 滚动条的宽度 */
*::-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%;
    transform: translate3d(0, -100%, 0);
    transition: transform 0.6s;
}
.home-page.active{
    opacity: 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: 21px;
    align-items: center;
    right: 25px;
    top: 124px;
    z-index: 1;
}
.tool-bar .music{
    width: 45px;
    height: 43px;
}
.tool-bar .tool-item{
    cursor: var(--cursorPointer);
}
.tool-bar .share{
    width: 40px;
    height: 42px;
}
.user-wrapper{
    position: relative;
    display: flex;
    align-items: center;
}
.tool-bar .user{
    width: 44px;
    height: 44px;
}
.user-wrapper .user-content-wrapper{
    font-size: 25px;
    line-height: 25px;
    color: #F2DAA1;
    display:flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.user-wrapper .user-font{
    letter-spacing: 1px;
	cursor: var(--cursorPointer);
    padding-right: 13px;
    border-right: 1px solid #F2DAA1;
}
.to-official-web{
    position:absolute;
    top: 46px;
    right: 20px;
    width: 280px;
    height: 50px;
    text-align: center;
    color: #3C2918;
    cursor: var(--cursorPointer);
    font-size: 31px;
    line-height: 50px;
    background: #FFE9AD;
    border-radius: 25px;
    font-family: 'song_bold';
}
.logo{
    position: absolute;
    top: 29px;
    left: 35px;
    width: 200px;
}
.next-slide-wrapper{
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
    width: 381px;
    height:32px;
    background: url(../images_m/home/slide-background.png) no-repeat;
    background-size: 100% 100%;
    cursor: var(--cursorPointer);
    margin-top: 59px;
}
.next-slide-wrapper:hover{
    opacity: 0.9;
}
.next-slide-wrapper .next-slide-arrow{
    width: 18px;
    height: 17px;
}
.next-slide-wrapper .next-slide-text{
    font-size: 23px;
    line-height: 23px;
    color: #FEF5CF;
    margin-top: -2px;
    font-family: 'black_bold';
    letter-spacing: 1px;
}

.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;
    object-position: center top;
    transform-origin: center;
}
.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: 728px;
    transform: translateX(-50%);
	transition:all .6s;
	-webkit-transition:all .6s;
    display: flex;
    flex-direction: column;
    align-items: center;
	opacity:0;
}
.center.active{
	opacity:1;
}
.center .main-title{
    width: 750px;
    height: 215px;
    display: block;
    max-width: unset;
    margin: 0 auto;
    margin-bottom: 8px;
}
.center .btn-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.center .btn-wrapper .recruit{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.center .btn-wrapper .btn {
    background: url(../images_m/home/btn-background.png) no-repeat;
    background-position: center;
    background-size: 465px 93px;
    width: 465px;
    height: 93px;
    line-height: 93px;
    text-align: center;
    font-size: 38px;
    color: white;
    cursor: var(--cursorPointer);
}
.center .btn-wrapper .btn .text{
	font-family: 'song_heavy';
    color:#3C2918;
}
.center .btn-wrapper .recruit .tip{
    font-size: 22px;
    line-height: 22px;
    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;
    background: url(../images_m/activity/background.png) no-repeat;
    background-size: cover;
    background-position: center top;
}
.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 .rule-icon{
    position: absolute;
    width: 69px;
    height: 69px;
    left: 18px;
    top: 22px;
    z-index: 2;
}
.activity-page .main-title{
    position: absolute;
    width: 743px;
    height: 274px;
    left: 50%;
    transform: translateX(-50%);
    top: 98px;
    z-index: 2;
}
.activity-page .turntable-wrapper{
    position: absolute;
    left: 50%;
    top: 420px;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    width:608px;
    height:630px;
    justify-content: space-between;
    align-content: space-between;
}
.activity-page .turntable-wrapper .turntable-item{
    width: 191px;
    height: 191px;
    position: relative;
}
.activity-page .turntable-wrapper .turntable-item .turntable-item-active{
    position: absolute;
    width: 224px;
    height: 224px;
    left: -15px;
    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: 20px;
    text-align: center;
    width: 100%;
    color: #FEF5CF;
    font-size: 19px;
    line-height: 21px;
}
.activity-page .turntable-wrapper .turntable-item .turntable-item-text.single-line{
    bottom: 24px;
}
.activity-page .turntable-wrapper .turntable-center{
    width: 191px;
    height: 191px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -6px;
}
.activity-page .turntable-wrapper .turntable-center .draw-button{
    width: 174px;
    height: 165px;
    background: url(../images_m/activity/draw-button-bg.png) no-repeat;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    color: #3C2918;
    cursor: var(--cursorPointer);
    font-family: 'song_heavy';
    letter-spacing: 10px;
}
.activity-page .turntable-wrapper .turntable-center .draw-number{
    font-size: 19px;
    line-height: 19px;
    color: #EDD89D;
    margin-top:16px;
    display: flex;
    gap:8px;
    justify-content: center;
}
.activity-page .activity-btn-wrapper{
    position: absolute;
    left: 50%;
    top: 1092px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.activity-page .activity-btn-wrapper .activity-btn{
    width: 400px;
    height: 84px;
    background: url(../images_m/activity/btn-bg.png) no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: var(--cursorPointer);
}
.activity-page .activity-btn-wrapper .activity-btn .activity-btn-text{
    font-size: 33px;
    color: #3C2918;
    font-family: 'song_heavy';
    margin-top: -2px;
}

.rule-modal {
    position: absolute;
    width: 750px;
    height: 1333px;
    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: 735px;
    height: 938px;
    background: url(../images_m/common/background.png) no-repeat;
    background-size: 735px 938px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: all;
}
.rule-wrapper .main-title{
    position: absolute;
    left: 50%;
    top: 41px;
    transform: translateX(-50%);
}
.rule-wrapper .main-title .main-text{
    font-size: 40px;
    line-height: 40px;
    font-family: 'song_bold';
    background: url(../images_m/common/text-back.png) no-repeat;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: white;
    text-align: center;
    white-space: nowrap;
    background-size: cover;
    margin-top: -2px;
    letter-spacing: 4px;
}
.main-content{
    width: 554px;
    position: absolute;
    height: 682px;
    left: 92px;
    top: 160px;
    overflow: auto;
}
.rule-main{
    width: 535px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    box-sizing: border-box;
}
.rule-main .main-block{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.rule-main *{
    user-select: text;
}
.rule-main .rule-main-title{
    font-size: 29px;
    line-height: 29px;
    font-family: 'black_bold';
    position: relative;
    color: #5a4630;
    padding-left: 28px;
}
.rule-main .rule-main-title:before {
    content: '';
    width: 16px;
    height: 16px;
    display: block;
    background-image: url(../images_m/rule/block.png);
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.rule-main .rule-content-text{
    font-size: 22px;
    line-height: 33px;
    color: #5a4630;
}
.rule-main .main-block .main-block-content{
    display: flex;
    flex-direction: column;
}
.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_m/rule/tab-reward-inactive.png);
    margin-right: -28px;
}
.tab-wrapper .tab-item.active{
    color: white;
}
.tab-wrapper .tab-item.rule{
    background-image: url(../images_m/rule/tab-rule-inactive.png);
}
.tab-wrapper .tab-item.rule.active{
    background-image: url(../images_m/rule/tab-rule-active.png);
}
.tab-wrapper .tab-item.reward.active{
    z-index: 2;
    background-image: url(../images_m/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_m/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: 750px;
    height: 1333px;
    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: 561px;
    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: 861px;
    position: relative;
}
.share-wrapper .top .baseboard{
    width: 100%;
    height: 100%;
    display: block;
}
.share-wrapper .top .share-image-wrapper{
    width: 468px;
    height: 832px;
    display: block;
    position: absolute;
    left: 41px;
    top: 15px;
}
.share-wrapper .top .main-image{
    width: 100%;
    height: 100%;
    display: block;
}
.share-wrapper .bottom{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 8px;
}
.share-wrapper .bottom .copy-wrapper{
    width: 410px;
    height: 82px;
    background: url(../images_m/common/btn-background.png) no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: var(--cursorPointer);
}
.share-wrapper .bottom .copy-wrapper .copy-text{
    font-size: 33px;
    color: #3C2918;
    font-family: 'song_heavy';
}

.task-modal{
    position: absolute;
    width: 750px;
    height: 1333px;
    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(1);
	opacity:1;
}
.media-modal{
    position: absolute;
    width: 750px;
    height: 1333px;
    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,.task-modal .task-wrapper{
    width: 735px;
    height: 938px;
    background: url(../images_m/common/background.png) no-repeat;
    background-size: 735px 938px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: all;
}
.media-modal .task-wrapper .task-list-wrapper,.task-modal .task-wrapper .task-list-wrapper{
    position: absolute;
    top: 160px;
    width: 554px;
    margin-left: 96px;
    height: 698px;
    overflow-y: auto;
    padding-right: 18px;
    box-sizing: border-box;
}
.media-modal .task-wrapper .task-list-wrapper .task-item{
    display: flex;
    font-size: 29px;
    align-items: center;
    justify-content: space-between;
}
.task-modal .task-wrapper .task-list-wrapper .task-item{
    display: flex;
    font-size: 29px;
    align-items: center;
    justify-content: space-between;
    height: 43px;
}
.media-modal .task-wrapper .task-list-wrapper .task-item .task-content{
    flex: 1;
    min-width: 0;
	line-height: 29px;
    color: #5A4630;
}
.task-modal .task-wrapper .task-list-wrapper .task-item .task-content{
    flex: 1;
    min-width: 0;
	line-height: 38px;
    color: #5A4630;
}
.media-modal .task-wrapper .task-list-wrapper .task-status,.task-modal .task-wrapper .task-list-wrapper .task-status{
    width:218px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    cursor: var(--cursorPointer);
    background: #AE7432;
    border-radius: 22px;
    font-size: 27px;
    color: #F4EFE0;
}
.media-modal .task-wrapper .task-list-wrapper .task-item .task-status.completed,.task-modal .task-wrapper .task-list-wrapper .task-item .task-status.completed{
    background: #A28A6B;
}
.media-modal .task-wrapper .task-list-wrapper .task-status span,.task-modal .task-wrapper .task-list-wrapper .task-status span{
    font-family: 'song_bold';
}
.media-modal .task-wrapper .task-list-wrapper .task-item.completed .task-status,.task-modal .task-wrapper .task-list-wrapper .task-item.completed .task-status{
    background: #A28A6B;
}
.media-modal .task-wrapper .task-list-wrapper .task-line{
    width: 530px;
    height: 14px;
    position: relative;
    margin-bottom: 19px;
    margin-top: 18px;
    background: url(../images_m/task/divide.png) no-repeat;
	background-size:contain;
	background-position: center;
}
.task-modal .task-wrapper .task-list-wrapper .task-line{
    width: 530px;
    height: 14px;
    position: relative;
    margin-bottom: 43px;
    margin-top: 50px;
    background: url(../images_m/task/divide.png) no-repeat;
	background-size:contain;
	background-position: center;
}
.media-modal .task-wrapper .task-title-wrapper,.task-modal .task-wrapper .task-title-wrapper{
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.media-modal .task-wrapper .task-title-wrapper .task-title,.task-modal .task-wrapper .task-title-wrapper .task-title{
    font-size: 40px;
}
.media-modal .task-wrapper .task-title-wrapper .task-title span,.task-modal .task-wrapper .task-title-wrapper .task-title span{
	background: url(../images_m/common/text-back.png) no-repeat;
	background-position: center center;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family: 'song_bold';
    letter-spacing: 4px;
}

.backpack-modal{
    position: absolute;
    width: 750px;
    height: 1333px;
    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: 735px;
    height: 938px;
    background: url(../images_m/common/background.png) no-repeat;
    background-size: 735px 938px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: all;
}
.backpack-modal .backpack-wrapper .main-title{
    position: absolute;
    left: 50%;
    top: 41px;
    transform: translateX(-50%);
}
.backpack-modal .backpack-wrapper .main-title .main-text{
    font-size: 40px;
    line-height: 40px;
    font-family: 'song_bold';
    background: url(../images_m/common/text-back.png) no-repeat;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    letter-spacing: 4px;
}
.backpack-modal .backpack-wrapper .main-content{
    width: 533px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 160px;
    overflow: auto;
    box-sizing: border-box;
}
.backpack-modal .backpack-wrapper .main-content .backpack-desc{
    font-size: 22px;
    color: #5A4630;
    line-height: 33px;
}
.backpack-modal .backpack-wrapper .main-content .divide{
    width: 530px;
    height: 14px;
    margin-top: 45px;
    margin-bottom: 39px;
}
.backpack-modal .backpack-wrapper .main-content .backpack-item-wrapper{
    display: flex;
    gap: 46px;
    justify-content: center;
}
.backpack-modal .backpack-wrapper .main-content .backpack-item-wrapper .backpack-empty{
    font-size: 29px;
    color: #5A4630;
    line-height: 29px;
    margin-top: 111px;
}
.backpack-modal .backpack-wrapper .main-content .backpack-item-wrapper .backpack-item{
    width: 218px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.backpack-modal .backpack-wrapper .main-content .backpack-item-wrapper .backpack-item .backpack-item-img{
    width: 158px;
    height: 159px;
    margin-bottom: 4px;
}
.backpack-modal .backpack-wrapper .main-content .backpack-item-wrapper .backpack-item .backpack-item-name{
    font-size: 24px;
    color: #5A4630;
    line-height: 31px;
    height:62px;
    width: 100%;
    margin-bottom: 16px;
    text-align: center;
}
.backpack-modal .backpack-wrapper .main-content .backpack-item-wrapper .backpack-item .backpack-item-btn{
    width: 218px;;
    height: 43px;
    background: #AE7432;
    border-radius: 22px;
    font-size: 27px;
    color: #F4EFE0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: var(--cursorPointer);
    font-family: 'song_bold';
}
.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: 750px;
    height: 1333px;
    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: 735px;
    height: 938px;
    background: url(../images_m/common/background.png) no-repeat;
    background-size: 735px 938px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: all;
}
.address-modal .address-wrapper .main-title,.email-modal .address-wrapper .main-title{
    position: absolute;
    left: 50%;
    top: 41px;
    transform: translateX(-50%);
}
.address-modal .address-wrapper .main-title .main-text,.email-modal .address-wrapper .main-title .main-text{
    font-size: 40px;
    line-height: 40px;
    font-family: 'song_bold';
    background: url(../images_m/common/text-back.png) no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-position: center;
    letter-spacing: 4px;
}
.address-modal .address-wrapper .main-content,.email-modal .address-wrapper .main-content{
    width: 545px;
    position: absolute;
    left: 94px;
    top: 183px;
    overflow: auto;
    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: 50px;
}
.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: 125px;
    font-size: 29px;
    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: 45px;
    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:130px;
	height:45px;
	margin-left:11px;
    border: 1px solid #5A4630;
    position: relative;
    display: inline-block;
    box-sizing: border-box;
}
.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:130px;
	height:45px;
	font-size:29px;
	text-align: center;
    background-color: transparent;
    border: 0;
    color: #5A4630;
    padding-bottom: 4px;
    /* 隐藏原生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: 18px;
    height: 11px;
}
.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: 41px;
    font-size: 29px;
    padding: 0 6px;
    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: 156px;
    bottom: 90px;
    font-size: 18px;
    color: #5A4630;
    opacity: 0.6;
}
.address-modal .address-wrapper .submit-btn,.email-modal .address-wrapper .submit-btn{
    position: absolute;
    left: 227px;
    bottom: 124px;
    width: 282px;
    height: 43px;
    background: #AE7432;
    border-radius: 22px;
    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: 27px;
    color: #F4EFE0;
	font-family: 'song_bold';
}
.address-modal .back-btn,.email-modal .back-btn,.media-modal .back-btn, .share-modal .back-btn{
    position: absolute;
    left: 29px;
    top: 60px;
    display: flex;
    gap: 19px;
    align-items: center;
    color: #FEF5CF;
    cursor: var(--cursorPointer);
}
.address-modal .back-btn .back-icon,.email-modal .back-btn .back-icon, .media-modal .back-btn .back-icon, .share-modal .back-btn .back-icon{
    width: 14px;
	height:20px;
}
.address-modal .back-btn span,.email-modal .back-btn span,.media-modal .back-btn span, .share-modal .back-btn span{
    font-size: 37px;
    color: #FEF5CF;
    font-family: 'song_bold';
}
.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;
}
.login-modal * {
    font-family: 'black_regular';
}
#loginModal.active .login-modal{
	transform: translate(-50%, -50%) scale(1.2);
	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_m/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;
    display:flex;
}
.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;
    flex:1;
}
.login-modal .form-box .form-item input.form-item-phone{
	width:100%;
	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:100%;
	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_m/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-size:20px;
	color:#d6bb8a;
	text-align: center;
	line-height:61px;
	border-radius: 30px;
	cursor: var(--cursorPointer);
    font-family: 'song_bold';
}
.login-modal .login-btn.active{
	pointer-events: none;
}
.lottery-modal{
	position: absolute;
	width: 750px;
	height: 1333px;
	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: 850px;
    height: 561px;
    position: absolute;
    left: 50%;
    top: 341px;
    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: 595px;
    width: 427px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.icon-wrapper .icon-item{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.icon-wrapper .icon-item-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 427px;
    height:105px;
    background: url(../images_m/lottery/btn-bg.png) no-repeat;
    background-size: 100% 100%;
    cursor: var(--cursorPointer);
}
.icon-wrapper .icon-item-btn .icon-font{
	font-size: 33px;
    color: #3c2918;
    font-family: 'song_heavy';
}
.icon-wrapper .lottery-num{
    color: #FEF5CF;
    font-size: 22px;
    line-height: 22px;
    margin-top: -10px;
}

#ruleModal,#shareModal,#taskModal,#mediaModal,#backModal,#addressModal,#loginModal,#lotteryModal,.wxCode, .qywxCode,#emailModal,#appointModal,#appointSuccessModal,#shareImageModal{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity:0;
    pointer-events: none;
}
#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,#shareImageModal.active{
	opacity:1;
	z-index:3;
}
.rule-modal,.share-modal,.task-modal,.media-modal,.backpack-modal,.address-modal,.login-modal,.lottery-modal,.appoint-modal,.appoint-success-modal,.email-modal,.share-image-modal{
	pointer-events: none;
}
.rule-modal > *,.share-modal > *,.task-modal > *,.media-modal > *,.backpack-modal > *,.address-modal > *,.login-modal > *,.lottery-modal > *,.appoint-modal > *,.appoint-success-modal > *,.email-modal > *,.share-image-modal > *{
	pointer-events: auto;
}
.mask2{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.wxCode.active, .qywxCode.active{
    pointer-events: auto;
}
.wxCode img, .qywxCode img{
	display:block;
	width:220px;
	height:220px;
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	-webkit-transform:translate(-50%,-50%);
}
.successful-price{
	width:100%;
	position:absolute;
	left:0;
	top:130px;	
}
.successful-price.no-prize{
    top: 105px;
}
.successful-price img{
	display:block;
	width:130px;
	margin:0 auto 0;
}
.successful-price.no-prize img{
	width:159px;
}
.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:25px;
	line-height:40px;
	text-align:center;
	margin-top:9px;
}
#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_m/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;
}

.appoint-modal{
    position: absolute;
    width: 750px;
    height: 1333px;
    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: 731px;
    height: 793px;
    background: url(../images_m/appointment/appoint-background.png) no-repeat;
    background-size: 731px 793px;
    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: 482px;
    height: 161px;
    display: block;
    margin-top: 37px;
}
.appoint-modal .appoint-wrapper .appoint-form-wrapper{
    display: none;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
}
.appoint-modal .appoint-wrapper .appoint-form-wrapper.active{
    display: flex;
}
.appoint-modal .appoint-wrapper .appoint-form{
    width: 536px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.appoint-modal .appoint-wrapper .appoint-form .appoint-form-item{
    width: 100%;
    height: 81px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    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: 25px;
    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: 25px;
}
.appoint-modal .appoint-wrapper .appoint-form .appoint-form-item .appoint-form-item-code{
    width: 197px;
    height: 39px;
    background: #AE7432;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: var(--cursorPointer);
    font-size: 24px;
    color:#F4EFE0;
    font-family: song_bold;
}
.appoint-modal .appoint-wrapper .appoint-form .appoint-form-item .appoint-form-item-code.active{
    pointer-events: none;
}
.appoint-modal .appoint-wrapper .appoint-agree{
    width: 460px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 49px;
}
.appoint-modal .appoint-wrapper .appoint-agree .agree-checkbox-wrapper{
    width: 18px;
    height: 18px;
    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: 19px;
    line-height: 27px;
    color:#EDD89D;
    flex:1;
    min-width: 0;
    margin-top: -6px;
}
.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: 515px;
    height: 90px;
    background: url(../images_m/appointment/appoint-btn-bg.png) no-repeat;
    background-size: 515px 90px;
    cursor: var(--cursorPointer);
    margin-top: 70px;
    font-size: 37px;
    color: #3C2918;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'song_heavy';
}
.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: 305px;
    height: 285px;
    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: 42px;
}
.appoint-modal .appoint-wrapper .appoint-qualification{
    display: none;
    flex-direction: column;
    align-items: center;
    margin-top: 37px;
}
.appoint-modal .appoint-wrapper .appoint-qualification.active{
    display: flex;
}
.appoint-modal .appoint-wrapper .appoint-qualification .qualification-image{
    width: 234px;
    height: 295px;
    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: 41px;
}

.appoint-success-modal{
    position: absolute;
    width: 750px;
    height: 1333px;
    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: 731px;
    height: 793px;
    background: url(../images_m/appointment/appoint-background.png) no-repeat;
    background-size: 731px 793px;
    position: absolute;
    left: 19px;
    top: 50%;
    transform: translateY(-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: 47px;
} */
.appoint-success-modal .appoint-success-wrapper .appoint-success-content-wrapper .appoint-success-tip{
    font-size: 21px;
    color: #EDD89D;
    line-height: 30px;
    margin-top: 15px;
    text-align: center;
    width: 550px;
}
.appoint-success-modal .appoint-success-wrapper .appoint-success-content-wrapper .appoint-success-btn{
    width: 515px;
    height: 90px;
    background: url(../images_m/appointment/appoint-btn-bg.png) no-repeat;
    background-size: 515px 90px;
    cursor: var(--cursorPointer);
    margin-top: 20px;
    font-size: 37px;
    color: #3C2918;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'song_heavy';
}

.share-image-wrapper-hide{
    position: absolute;
    width: 720px;
    height: 1280px;
    left: -99999px;
    top: -99999px;
    background: url(../images_m/share/share-main-image.jpg) no-repeat;
    transform: scale(0.4);
    background-size: 100% 100%;
}
.share-image-wrapper-hide .share-image-qrcode-wrapper{
    position: absolute;
    right: 43px;
    top: 40px;
    width: 146px;
    height: 146px;
    display: block;
    padding: 8px;
    box-sizing: border-box;
    background: white;
}
.share-image-wrapper-hide .share-image-qrcode{
    width: 100%;
    height: 100%;
    display: block;
}
.share-image-wrapper-hide .share-qrcode-text{
    position: absolute;
    right: 43px;
    top: 194px;
    display: block;
    font-size: 20px;
    color: white;
    text-align: center;
    width: 146px;
    text-shadow: -1px -1px 0 #754517, 1px -1px 0 #754517, -1px 1px 0 #754517, 1px 1px 0 #754517;
}
#shareImageModal{
    pointer-events: auto;
}
#shareImageModal.active{
    z-index: 5;
}
.share-image-modal {
    position: absolute;
    width: 750px;
    height: 1333px;
    left: 0;
    top: 0;
    z-index: 4;
}
.share-save-image{
    width: 720px;
    height: 1280px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.shuTipsTc{
	width:100%;
	height:100%;
	position:fixed;
	left:0;
	top:0;
	z-index:10000;
	display: none;
}
.shuTips-wrapper{
    position:absolute;
    left:50%;
	top:50%;
	transform: translate(-50%,-50%) scale(var(--ratio));
}
.shuTipsTc .landscape-image{
	display:block;
	width: 161px;
	height:132px;
    margin: 0 auto;
}
.shuTipsTc .landscape-text{
	font-size:33px;
    line-height: 42px;
    margin-top: 33px;
    text-align: center;
    color: #FFE88F;
}