*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}
@font-face {
    font-family: "zt";
    src: url("../fonts/zt.ttf") format("opentype");
}
@font-face {
    font-family: "syst";
    src: url("../fonts/syst.OTF") format("opentype");
    font-display: swap;
}
body {
    font-family: "zt", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
}
/* 弹窗进出场动画：补齐 syalert 缺失的 zoomIn/zoomOut 关键帧，避免打开/关闭生硬 */
@-webkit-keyframes zoomIn {
    from { opacity: 0; -webkit-transform: scale3d(0.6, 0.6, 0.6); transform: scale3d(0.6, 0.6, 0.6); }
    to   { opacity: 1; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); }
}
@keyframes zoomIn {
    from { opacity: 0; -webkit-transform: scale3d(0.6, 0.6, 0.6); transform: scale3d(0.6, 0.6, 0.6); }
    to   { opacity: 1; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); }
}
@-webkit-keyframes zoomOut {
    from { opacity: 1; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); }
    to   { opacity: 0; -webkit-transform: scale3d(0.6, 0.6, 0.6); transform: scale3d(0.6, 0.6, 0.6); }
}
@keyframes zoomOut {
    from { opacity: 1; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); }
    to   { opacity: 0; -webkit-transform: scale3d(0.6, 0.6, 0.6); transform: scale3d(0.6, 0.6, 0.6); }
}
.sy-alert.zoomIn  { -webkit-animation-name: zoomIn;  animation-name: zoomIn;  -webkit-animation-fill-mode: both; animation-fill-mode: both; }
.sy-alert.zoomOut { -webkit-animation-name: zoomOut; animation-name: zoomOut; -webkit-animation-fill-mode: both; animation-fill-mode: both; }

::-webkit-scrollbar{
    width:0.05rem;
    height:0.1rem;
}

::-webkit-scrollbar-track{
    border-radius:5px;
    background:#fff;
}

::-webkit-scrollbar-thumb{
    border-radius:5px;
    background:rgba(0,0,0,0.4);
}
/* 为了更好的浏览器兼容性，使用带有浏览器前缀的样式 */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #A99372;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #A99372;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #A99372;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #A99372;
}
* img{
    display: block;
    width: 100%;
}

.wrap{
    width: 7.5rem;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
}
.active_guide{
    width: 0.54rem;
    height: 1.4rem;
    position: fixed;
    top: 4rem;
    /* 贴 .wrap(7.5rem 居中) 右边缘，而非视口右边缘 */
    right: calc(50% - 3.73rem);
    z-index: 2;
}
.gride_lists{
    width: 0.54rem;
    height: 1.4rem;
    position: fixed;
    top: 5.6rem;
    right: calc(50% - 3.73rem);
    z-index: 2;
}
.floor1{
    width: 100%;
    height: 13rem;
    background: url(../img/page1_bg.jpg) no-repeat top center;
    background-size: 100% 13rem;
    overflow: hidden;
    display: block;
    margin-bottom: -1px;
}
.f1_top{
    width: 100%;
    height: 1rem;
    overflow: hidden;
    font-family: "syst", "Source Han Serif SC", "Noto Serif CJK SC", "STSong", "SimSun", serif;
}
.login{
    display: block;
    width: auto;
    float: right;
    font-size: 0.3rem;
    color: #000;
    margin: 0.35rem 0.35rem 0 0;
    text-decoration: underline;
    cursor: pointer;
}
.logInfo{
    display: none;
    width: auto;
    height: 1rem;
    float: right;
    padding-right: 0.2rem;
    box-sizing: border-box;
    white-space: nowrap;
    font-size: 0;
}
.logInfo p{
    display: inline-block;
    vertical-align: middle;
    height: 1rem;
    font-size: 0.28rem;
    line-height: 1rem;
    color: #000;
    margin-left: 0.1rem;
    cursor: pointer;
}
.slogan{
    width: 7.5rem;
    height: 4.19rem;
    margin: 0.3rem auto 0;
    position: relative;
}
.sheep_box{
    width: 6.2rem;
    height: 3.9rem;
    margin: 0.4rem auto 0;
    cursor: pointer;
    transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}
.sheep_box img{
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}
.sheep_box.shaking{
    animation: sheepShake 0.45s ease-in-out;
    -webkit-animation: sheepShake 0.45s ease-in-out;
}
@keyframes sheepShake{
    0%   { transform: rotate(0); }
    20%  { transform: rotate(-4deg); }
    40%  { transform: rotate(3deg); }
    60%  { transform: rotate(-2deg); }
    80%  { transform: rotate(1deg); }
    100% { transform: rotate(0); }
}
@-webkit-keyframes sheepShake{
    0%   { -webkit-transform: rotate(0); }
    20%  { -webkit-transform: rotate(-4deg); }
    40%  { -webkit-transform: rotate(3deg); }
    60%  { -webkit-transform: rotate(-2deg); }
    80%  { -webkit-transform: rotate(1deg); }
    100% { -webkit-transform: rotate(0); }
}
.plus_one{
    position: fixed;
    margin-left: -0.3rem;
    margin-top: -0.25rem;
    color: #784d12;
    font-size: 0.5rem;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0 0 0.04rem #fff, 0 0 0.04rem #fff, 0 0.02rem 0.06rem rgba(0,0,0,0.2);
    pointer-events: none;
    z-index: 9999;
    animation: floatUp 1.2s ease-out forwards;
    -webkit-animation: floatUp 1.2s ease-out forwards;
}
@keyframes floatUp{
    0%{ opacity: 0; transform: translateY(0) scale(0.7); }
    15%{ opacity: 1; transform: translateY(-0.15rem) scale(1.05); }
    100%{ opacity: 0; transform: translateY(-0.9rem) scale(0.9); }
}
@-webkit-keyframes floatUp{
    0%{ opacity: 0; -webkit-transform: translateY(0) scale(0.7); }
    15%{ opacity: 1; -webkit-transform: translateY(-0.15rem) scale(1.05); }
    100%{ opacity: 0; -webkit-transform: translateY(-0.9rem) scale(0.9); }
}
.wool_count_all{
    position: absolute;
    top: 3.52rem;
    left: 1.3rem;
    display: block;
    width: 4.82rem;
    height: 0.54rem;
    color: #7a884b;
    text-align: center;
    line-height: 0.54rem;
    font-size: 0.32rem;
}
.wool_btn{
    width: 4.13rem;
    height: 1.16rem;
    margin: 0.2rem auto;
    background: url(../img/page1_btn.png) no-repeat top center;
    background-size: 100%;
    font-size: 0;
}
.wool_count_personal{
    display: block;
    width: 100%;
    text-align: center;
    margin: 0.8rem auto 0;
    color: #784d12;
    font-size: 0.28rem;
    text-shadow: 0 0 0.04rem #fff, 0 0 0.04rem #fff, 0 0 0.04rem #fff, 0 0 0.04rem #fff;
}
.sheep_schedule{
    position: relative;
    width: 6.83rem;
    height: 1.33rem;
    margin: 0.3rem auto 0;
    background: url(../img/page1_barbg.png) no-repeat top center;
    background-size: 100% 100%;
}
.sheep_schedule.lv1{ background-image: url(../img/page1_barbg1.png); }
.sheep_schedule.lv2{ background-image: url(../img/page1_barbg2.png); }
.sheep_schedule.lv3{ background-image: url(../img/page1_barbg3.png); }
.schedule_node{
    position: absolute;
    width: 0.88rem;
    height: 0.81rem;
    margin-top: -0.405rem;
    margin-left: -0.44rem;
    background: url(../img/page1_bar1.png) no-repeat center;
    background-size: 100% 100%;
}
.schedule_node.reached{
    background-image: url(../img/page1_bar.png);
}
.schedule_node_label{
    position: absolute;
    top: 0.7rem;
    left: 50%;
    margin-top: 0.05rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    font-size: 0.22rem;
    color: #784d12;
    line-height: 1;
    white-space: nowrap;
}

.floor2{
    width: 100%;
    height: 13rem;
    background: url(../img/page2_bg.jpg) no-repeat top center;
    background-size: 100% 13rem;
    overflow: hidden;
    display: block;
    margin-bottom: -1px;
    position: relative;
}
.rank_count_personal{
    display: block;
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 1.5rem;
    text-align: center;
    font-size: 0.26rem;
    z-index: 2;
    color: #784d12;
    text-shadow: 0 0 0.04rem #fff, 0 0 0.04rem #fff, 0 0 0.04rem #fff, 0 0 0.04rem #fff;
}
.tab_nav{
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: flex-end;
    -webkit-align-items: flex-end;
    width: 7rem;
    height: 1.24rem;
    margin: 0.2rem auto 0;
}
.tab_btn{
    width: 2.07rem;
    height: 1.24rem;
    margin: 0 0.1rem;
    opacity: 0.55;
    filter: grayscale(40%);
    -webkit-filter: grayscale(40%);
    transform: translateY(0.1rem);
    -webkit-transform: translateY(0.1rem);
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    cursor: pointer;
}
.tab_btn.active{
    opacity: 1;
    filter: none;
    -webkit-filter: none;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}
.tab_box{
    position: relative;
    width: 7.5rem;
    height: auto;
    margin: -0.1rem auto 0;
    overflow: hidden;
}
.tab_panel:nth-child(1){
    width: 100%;
    height: 10.85rem;
    background: url(../img/page2_tab1_box.webp) no-repeat top center;
    background-size: 100% 100%;
}
.tab_panel:nth-child(2){
    width: 100%;
    height: 8.03rem;
    background: url(../img/page2_tab1_box.webp) no-repeat top center;
    background-size: 100% 100%;
    padding-left: 0;
    padding-right: 0;
}
.tab2_swiper{
    width: 6.2rem;
    padding: 1rem 0;
    overflow: hidden;
}
.tab2_swiper .swiper-slide{
    width: 3.89rem;
    height: 4.6rem;
    background: url(../img/page2_tab2_icon.png) no-repeat top center;
    background-size: 3.89rem 3.84rem;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}
.tab2_swiper .swiper-slide.locked{
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    opacity: 0.55;
}
.tab2_swiper .swiper-slide-active{
    transform: scale(1);
    z-index: 2;
}
.tab2_slide_inner{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 3.89rem;
    height: 3.84rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tab2_slide_inner img{
    max-width: 100%;
    max-height: 100%;
}
.tab2_slide_name{
    position: absolute;
    top: 3.95rem;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.32rem;
    line-height: 0.4rem;
    color: #784D12;
    font-weight: bold;
}
.tab_panel:nth-child(3){
    width: 100%;
    height: 9.31rem;
    background: url(../img/page2_tab1_box.webp) no-repeat top center;
    background-size: 100% 100%;
}
.tab_panel{
    display: none;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 0.6rem 0.44rem 0.4rem;
    overflow-y: auto;
}
.tab_panel.active{
    display: block;
}
.sticker_list{
    width: 100%;
    margin-top: 0.4rem;
}
.sticker_list li{
    font-size: 0;
    width: 6.04rem;
    height: 1.23rem;
    margin: 0 auto 0.2rem;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% 100%;
    position: relative;
}
.sticker_list li:last-child{
    margin-bottom: 0;
}
.sticker_list li:nth-child(1){ background-image: url(../img/page2_tab1_activity1.png); }
.sticker_list li:nth-child(2){ background-image: url(../img/page2_tab1_activity2.png); }
.sticker_list li:nth-child(3){ background-image: url(../img/page2_tab1_activity3.png); }
.sticker_list li:nth-child(4){ background-image: url(../img/page2_tab1_activity4.png); }
.sticker_list li:nth-child(5){ background-image: url(../img/page2_tab1_activity5.png); }
.sticker_list li:nth-child(6){ background-image: url(../img/page2_tab1_activity6.png); }
.sticker_list li p{
    font-size: 0;
    display: block;
    width: 1.68rem;
    height: 0.64rem;
    position: absolute;
    top: 0.29rem;
    right: 0.3rem;
}
.sticker_list li:nth-child(-n+4) p{
    background: url(../img/page2_tab1_follow.png) no-repeat top center;
    background-size: 100% 100%;
}
.sticker_list li:nth-child(-n+4).active p{
    background: url(../img/page2_tab1_followed.png) no-repeat top center;
    background-size: 100% 100%;
}
.sticker_list li:nth-child(5) p{
    background: url(../img/page2_tab1_share.png) no-repeat top center;
    background-size: 100% 100%;
}
.sticker_list li:nth-child(5).active p{
    background: url(../img/page2_tab_share.png) no-repeat top center;
    background-size: 100% 100%;
}
.sticker_list li:nth-child(6) p{
    background: url(../img/page2_tab1_claim.png) no-repeat top center;
    background-size: 100% 100%;
    filter: grayscale(100%);
}
.sticker_list li:nth-child(6).active p{
    background: url(../img/page2_tab1_claim.png) no-repeat top center;
    background-size: 100% 100%;
    filter: grayscale(0);
}
.sticker_list li:nth-child(6).done p{
    background: url(../img/page2_tab1_claimed.png) no-repeat top center;
    background-size: 100% 100%;
    filter: grayscale(0);
}
.sticker_list li:nth-child(6).disabled p{
    filter: grayscale(100%);
    pointer-events: none;
    cursor: not-allowed;
}
.exchange_list{
    width: 100%;
    margin-top: 0.4rem;
}
.exchange_list li{
    font-size: 0;
    width: 6.04rem;
    height: 1.23rem;
    margin: 0 auto 0.2rem;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% 100%;
    position: relative;
}
.exchange_list li p{
    pointer-events: none;
    filter: grayscale(100%);
}
.exchange_list li.active p{
    filter: grayscale(0);
    pointer-events: unset;
}
.exchange_list li.done p{
    pointer-events: none;
    filter: grayscale(0);
    background: url(../img/page2_tab1_claimed.png) no-repeat top center;
    background-size: 100% 100%;
}
.exchange_list li:last-child{
    margin-bottom: 0;
}
.exchange_list li:nth-child(1){ background-image: url(../img/page2_tab3_activity1.png); }
.exchange_list li:nth-child(2){ background-image: url(../img/page2_tab3_activity2.png); }
.exchange_list li:nth-child(3){ background-image: url(../img/page2_tab3_activity3.png); }
.exchange_list li:nth-child(4){ background-image: url(../img/page2_tab3_activity4.png); }
.exchange_list li:nth-child(5){ background-image: url(../img/page2_tab3_activity5.png); }
.exchange_list li p{
    font-size: 0;
    display: block;
    width: 1.68rem;
    height: 0.64rem;
    position: absolute;
    top: 0.29rem;
    right: 0.3rem;
    background: url(../img/page2_tab3_unlock.png) no-repeat top center;
    background-size: 100% 100%;
}
.rule_content{
    width: 100%;
    padding: 0 0.1rem;
    box-sizing: border-box;
}
.rule_content p{
    font-size: 0.28rem;
    line-height: 0.48rem;
    color: #5a3a2a;
    margin-bottom: 0.18rem;
    text-align: justify;
}
.loginPopBox.sy-alert{
    width: 7.5rem;
    height: 7.5rem;
    background: url(../img/pop/pop_lognbox.webp) no-repeat top center;
    background-size: 100% 6.5rem;
}
.loginPopBox.sy-alert.bind_mode{
    background-image: url(../img/pop/pop_bindbox.webp);
}
.loginPopBox .sy-content{
    width: 5.4rem;
    margin: 2.3rem auto 0;
}
.loginPopClose{
    position: absolute;
    bottom: 0.2rem;
    left: 50%;
    width: 0.64rem;
    height: 0.64rem;
    background: url(../img/pop/pop_close.png) no-repeat top center;
    background-size: 100% 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.loginPop_row{
    position: relative;
    width: 100%;
    height: 0.62rem;
    margin-bottom: 0.3rem;
}
.loginPop_row span{
    display: block;
    float: left;
    font-size: 0.3rem;
    color: #73432c;
    line-height: 0.62rem;
}
.account{
    letter-spacing: 0.2rem;
}
.phone_input,.code_input{
    display: block;
    width: 4.3rem;
    height: 0.62rem;
    line-height: 0.62rem;
    padding: 0 0.32rem;
    box-sizing: border-box;
    border: none;
    border-radius: 0.31rem;
    background: #fee6e2;
    font-size: 0.3rem;
    color: #c97f74;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    float: right;
}
.code_input{
    width: 2.6rem;
    float: left;
    margin-left: 0.25rem;
}
.send_code_btn{
    width: 1.46rem;
    height: 0.62rem;
    line-height: 0.62rem;
    text-align: center;
    background: url(../img/pop/pop_code1.png) no-repeat top center;
    background-size: 100% 100%;
    color: #fff7e0;
    font-size: 0.22rem;
    user-select: none;
    -webkit-user-select: none;
    float: right;
}
.send_code_btn.disabled{
    color: #fff;
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
}
.loginPop_submit{
    display: none;
    width: 2.87rem;
    height: 1.05rem;
    margin: 1rem auto 0;
    background: url(../img/pop/pop_logn.png) no-repeat top center;
    background-size: 100% 100%;
    font-size: 0;

}
.bindPop_submit{
    display: block;
    width: 2.87rem;
    height: 1.05rem;
    margin: 1rem auto 0;
    background: url(../img/pop/pop_bind.png) no-repeat top center;
    background-size: 100% 100%;
    font-size: 0;

}
.shareBox.sy-alert{
    width: 7.5rem;
    height: 8.78rem;
    overflow: hidden;
}
.shareBox .sy-content{
    width: 7.5rem;
    margin: 0 auto;
}
.shareClose{
    position: absolute;
    bottom: 0.2rem;
    left: 50%;
    width: 0.64rem;
    height: 0.64rem;
    background: url(../img/pop/pop_close.png) no-repeat top center;
    background-size: 100% 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.shareBox .sy-content img{
    display: block;
    width: 7.08rem;
    height: 7.78rem;
    margin: 0 0 0 0.21rem;
}

.easterEggBox.sy-alert{
    width: 7.5rem;
    height: 9.92rem;
    background: url(../img/pop/pop_egg.webp) no-repeat top center;
    background-size: 100% 8.92rem;
    overflow: hidden;
}
.easterEggBox .sy-content{
    width: 7.5rem;
    margin: 2.2rem auto 0;
}
.easterEggBox .sy-content .egg_box{
    display: block;
    width: 3.89rem;
    height: 3.84rem;
    background: url(../img/page2_tab2_icon.png) no-repeat top center;
    background-size: 100% 100%;
    margin: 0 auto;
}
.easterEggBox .sy-content .egg_box img{
    display: block;
    width: 100%;
}
.easterEggBox .sy-content p{
    width: 100%;
    text-align: center;
    font-size: 0.32rem;
    line-height: 0.4rem;
    color: #784D12;
    font-weight: bold;
}
.easterEggBox .sy-content .easterBtn{
    width: 2.87rem;
    height: 1.05rem;
    margin: 0.8rem auto 0;
    cursor: pointer;
}
.easterEggBox .sy-content .easterBtn img{
    display: block;
    width: 100%;
    height: 100%;
}
.bindGameBox.sy-alert{
    width: 7.5rem;
    height: 7.5rem;
    background: url(../img/pop/pop_bindbox1.webp) no-repeat top center;
    background-size: 100% 6.5rem;
}
.bindGameBox .sy-content{
    width: 5.4rem;
    margin: 2.3rem auto 0;
    position: relative;
}
.bind_row{
    position: relative;
    width: 100%;
    height: 0.62rem;
    margin-bottom: 0.3rem;
}
.bind_row span{
    display: block;
    float: left;
    font-size: 0.3rem;
    color: #73432c;
    line-height: 0.62rem;
    font-weight: bold;
}
.pin_input{
    display: block;
    width: 3.7rem;
    height: 0.62rem;
    line-height: 0.62rem;
    padding: 0 0.32rem;
    box-sizing: border-box;
    border: none;
    border-radius: 0.31rem;
    background: #fee6e2;
    font-size: 0.22rem;
    color: #c97f74;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    float: right;
}
.bindGameBox .sy-content p{
    display: block;
    width: 100%;
    font-size: 0.22rem;
    color: #424240;
}
.bindGameBox .bind_submit{
    width: 2.87rem;
    height: 1.05rem;
    background: url(../img/pop/pop_bind.png) no-repeat top center;
    background-size: 100% 100%;
    font-size: 0;
    position: absolute;
    top: 2.4rem;
    right: -0.2rem;
}
.bindGameBox .switchAccount_submit{
    position: absolute;
    width: 2.87rem;
    height: 1.05rem;
    background: url(../img/pop/pop_bind2.png) no-repeat top center;
    background-size: 100% 100%;
    top: 2.4rem;
    left: -0.2rem;
    font-size: 0;
    cursor: pointer;
}
.mailPopBox.sy-alert{
    width: 7.5rem;
    height: 8.92rem;
    background: url(../img/pop/pop_egg.webp) no-repeat top center;
    background-size: 100% 7.92rem;
}
.mailPopBox .sy-content{
    width: 5.8rem;
    height: 4.9rem;
    margin: 1.6rem auto 0;
}
.mailPopClose{
    position: absolute;
    bottom: 0.2rem;
    left: 50%;
    width: 0.64rem;
    height: 0.64rem;
    background: url(../img/pop/pop_close.png) no-repeat top center;
    background-size: 100% 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
}
.mailPopBox p{
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.28rem;
    color: #784c32;
    font-weight: bold;
    margin-bottom: 0.1rem;
}
.mailPopBox p span{
    color: #fb5454;
}
.mail_row{
    position: relative;
    width: 100%;
    margin-bottom: 0.12rem;
    overflow: hidden;
}
.mail_row span{
    display: block;
    float: left;
    width: 2rem;
    font-size: 0.24rem;
    color: #73432c;
    line-height: 0.5rem;
    font-weight: bold;
    text-align: right;
}
.mail_input{
    display: block;
    width: 3.8rem;
    height: 0.5rem;
    line-height: 0.5rem;
    padding: 0 0.24rem;
    box-sizing: border-box;
    border: none;
    border-radius: 0.12rem;
    background: #fee6e2;
    font-size: 0.24rem;
    color: #c97f74;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    float: right;
}
.mailPopBox .mail_submit{
    width: 2.87rem;
    height: 1.05rem;
    margin: 0.42rem auto 0;
    background: url(../img/pop/pop_submit.png) no-repeat center top;
    background-size: 100% 100%;
    cursor: pointer;
}
.rulePopBox.sy-alert{
    width: 7.5rem;
    height: 10.2rem;
    background: url(../img/pop/pop_role.png) no-repeat top center;
    background-size: 100% 9.2rem;
}
.gradePopBox.sy-alert{
    width: 7.5rem;
    height: 8.92rem;
    background: url(../img/pop/pop_win.webp) no-repeat top center;
    background-size: 100% 7.92rem;
}
.rulePopBox .sy-content,
.gradePopBox .sy-content{
    width: 100%;
    position: relative;
}
.rulePopClose,
.gradePopClose{
    position: absolute;
    bottom: 0.2rem;
    left: 50%;
    width: 0.64rem;
    height: 0.64rem;
    background: url(../img/pop/pop_close.png) no-repeat top center;
    background-size: 100% 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
}
.rule_title{
    text-align: center;
    font-size: 0.36rem;
    color: #73432c;
    font-weight: bold;
    margin: 0 0 0.3rem;
}
.rule_content{
    width: 5.8rem;
    max-height: 6.2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.6rem auto 0;
}
.grade_content{
    width: 5.8rem;
    max-height: 4.4rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem auto 0;
}
.rule_content{
    width: 6rem;
    margin: 1.8rem auto 0;
}
.rule_content p{
    font-size: 0.26rem;
    color: #73432c;
    line-height: 0.42rem;
    margin-bottom: 0.18rem;
}
.grade_list{
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.grade_list li{
    width: 33.33%;
    box-sizing: border-box;
    padding: 0.16rem 0.05rem;
    text-align: center;
    font-size: 0.26rem;
    color: #73432c;
}
.grade_phone{
    font-weight: bold;
}
.grade_btn{
    display: none;
    width: 2.87rem;
    height: 1.06rem;
    margin: 0.52rem auto 0;
}
.errorPopBox.sy-alert{
    width: 7.5rem;
    height: 5.2rem;
    background: url(../img/pop/pop_error.webp) no-repeat top center;
    background-size: 100% 4.45rem;
}
.errorPopClose{
    position: absolute;
    bottom: 0.2rem;
    left: 50%;
    width: 0.64rem;
    height: 0.64rem;
    background: url(../img/pop/pop_close.png) no-repeat top center;
    background-size: 100% 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
}
.errorPopBox .sy-content{
    width: 5.4rem;
    height: 1.7rem;
    margin: 1.8rem auto 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.errorPopBox .sy-content .error_msg{
    width: 100%;
    text-align: center;
    font-size: 0.3rem;
    line-height: 0.44rem;
    color: #784D12;
    font-weight: bold;
}
.bindSureBox.sy-alert{
    width: 7.5rem;
    height: 7.5rem;
    background: url(../img/pop/pop_bindbox1.webp) no-repeat top center;
    background-size: 100% 6.5rem;
}
.bindSureBox .sy-content{
    width: 5.4rem;
    margin: 2rem auto 0;
    position: relative;
}
.bindSureBox .bindSure_row{
    width: 100%;
    height: auto;
    margin-bottom: 0.24rem;
    padding: 0.16rem 0.24rem;
    background: #fee6e2;
    border-radius: 0.12rem;
    box-sizing: border-box;
}
.bindSureBox .bindSure_row p{
    display: block;
    width: 100%;
    font-size: 0.26rem;
    line-height: 0.5rem;
    color: #16110e;
    letter-spacing: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bindSureBox .bindSure_row p span{
    color: #c0392b;
    font-weight: bold;
    margin-left: 0.04rem;
}
.bindSureBox .bindSure_submit{
    width: 2.87rem;
    height: 1.05rem;
    background: url(../img/pop/pop_bind.png) no-repeat top center;
    background-size: 100% 100%;
    font-size: 0;
    cursor: pointer;
    float: right;
    margin: 1.1rem -0.2rem 0 0;
}
.bindSureBox .bindSureNo_submit{
    width: 2.87rem;
    height: 1.05rem;
    background: url(../img/pop/pop_bind1.png) no-repeat top center;
    background-size: 100% 100%;
    font-size: 0;
    cursor: pointer;
    float: left;
    margin: 1.1rem 0 0 -0.2rem;
}