*{padding:0px;margin:0px;}
ul,ol,li{list-style: none;}
:root {
    --color-main-background: #191919;
    --color-font-warning:#f25e3f;
    --color-font-success:#000;
    --color-font-error:#a0470f;
    --box-shadow-1: -5px 5px 5px #395797, 5px -5px 5px #395797;
    --box-shadow-2: -5px 5px 5px #919739, 5px -5px 5px #919739;
    --text-shadow-1: -5px 10px 15px #f8fded, 5px -10px 15px #46600f;
}
body {
    background-color: var(--color-main-background);
    font-family: "Noto Sanc SC", 'PingFang SC', 'Helvetica Neue', 'Helvetica', 'STHeitiSC-Light', "Microsoft YaHei", 'Arial', sans-serif;
}
body.pc {
    width: 100%;
    height: 100%;
}
.show {display:block;}
.hide {display: none;}
.show_border {border: #3b9efe dashed thin;}
.wrap{width: 750px;height: auto;background: #b0b1b3; margin: 0 auto;}
input[type=text], input[type=tel] {
    border-radius: 5px;
    border: #878b7e solid thin;
    height: 40px;
    font-size: 20px;
    color: #46600f;
    margin-bottom: 5px;
}
input[type=text]:focus,input[type=tel]:focus{
   border: #cf5d5d solid thin;
}
.flex{display: flex; flex-wrap: wrap; justify-content: space-around;}
.flex-col {flex-direction: column;}
.flex-row{flex-direction: row;}
.in-center{text-align: center;}
.slice{position: relative;}

.btn {
    width: 200px;
    height: 45px;
    margin: 0 auto;
    /* border:#3b9efe double thin;  */
    /* border-radius: 5px; */
    cursor: pointer;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}
.btn:hover{
    border-color: #a39553;
    transform: scale(1.02);
    filter: brightness(1.1) grayscale(0);
}   

.warning {
    text-align: center;
    font-size: 18px;
    color: var(--color-font-warning);
    font-weight: bold;
}
.popmsgarea .title {
    font-size: 30px;
    color: black;
    line-height: 60px;
    font-weight: bolder;text-align: center;
}
.popmsgarea p {
    font-size: 26px;
    line-height: 60px;
}

.pop .close_popmsg,.pop .close_pop{
    position: absolute;
    cursor: pointer;
    height: 30px;
    width: 30px;
    float: right;
    margin: 10px 10px;
    font-size: 20px;
    left: unset;
    right: 10px;
    clear: both;
    color: #3f391e;
}
.pop .close_popmsg:hover,.pop .close_pop:hover{
    font-size: 24px;
    color: #e8eaf0;
}
.user-info{font-size: 24px; font-weight: bolder; top: 30px; left: 50px;}

.logo {width: 121px; height:138px; background: url(../../images/logo.png) no-repeat;}

/* foot*/
.footer {
    font-size: 12px;    
    color: aliceblue;
    text-align: center;
}

.footer .logo {
    position: absolute;
    bottom: 0px;
    left: 10px;
}
.footer .text {
    width: 68%;
    margin-left: 160px;
    font-size: 12px;
}


.share-tips{
    display: none;
    position: fixed;
    background-color: #faf9f900;
    top: 0px;
    z-index: 2000;
}
.share-tips .tips{
    width: 733px;
    height: 410px;
    background: url(../img/bg-share-tips.png) no-repeat;
}
.share-tips .close-pop.flg-close {
    float: left;
}

.bind-role{
    width: 458px;
    height: 408px;
    background: url(../img/bg-pop.png) no-repeat top center;
   z-index: 1100;    
   position: fixed;
   border-radius: 5px;
}
.bind-role .title {
    text-align: center;
    font-size: 30px;
}

.bind-role .contents {
    width: 80%;
    margin: 0 auto;
    margin-top: 50px;
}

.btn-bind:hover{
    filter: brightness(1.2);
    transform: scale(1.02);
}
.pop.popmsg{
    width: 458px;
    height: 408px;
    background: url(../img/bg-pop.png) no-repeat top center;
}
.pop .role {
    cursor: pointer;
    background-color: antiquewhite;
    border-radius: 5px;
    margin-top: 5px;
}
.pop .role:hover{
    background-color: #e1e4db;
}
.pop .sel-roles {
    width: 50%;
    height: 150px;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    color: #845926;
    font-weight: bold;
    margin: 20px auto;
    justify-content: start;
}
.pop input.role-name {
    line-height: 15px;
}
.pop .role-name.selected::after {
    content: "\2713";
    color: #be9c9c;
    font-weight: bolder;
    margin-left: 20px;
    font-size: 20px;
    display: inline-block;
}
.pop .btn-bind {
    width: 289px;
    height: 98px;
    margin: 0 auto;
    background: url(../img/btn-bind-role.png) no-repeat 5px 0px;;
}



.heartbeat {
    opacity: 1;
    overflow: hidden;
    -webkit-animation-name: HeartBeat;
    -moz-animation-name: HeartBeat;
    -o-animation-name: HeartBeat;
    animation-name: HeartBeat;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}



@keyframes HeartBeat {
    from {
        transform: rotate(0deg) scale(0.8, 0.8);
    }
    50% {
        transform: rotate(0deg) scale(1, 1);
    }
    to {
        transform: rotate(0deg) scale(0.8, 0.8);
    }
}

@-webkit-keyframes HeartBeat {
    from {
        transform: rotate(0deg) scale(0.8, 0.8);
    }
    50% {
        transform: rotate(0deg) scale(1, 1);
    }
    to {
        transform: rotate(0deg) scale(0.8, 0.8);
    }
}

.breath-light {
    opacity: 0.1;
    overflow: hidden;
    -webkit-animation-name: BreathLight;
    -moz-animation-name: BreathLight;
    -o-animation-name: BreathLight;
    animation-name: BreathLight;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}


@keyframes BreathLight {
    from {
        opacity: 0.5;
    }
    25% {
        opacity: 0.75;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 0.75;
    }
    to {
        opacity: 0.5;
    }
}

@-webkit-keyframes BreathLight {
    from {
        opacity: 0.5;
    }
    25% {
        opacity: 0.75;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 0.75;
    }
    to {
        opacity: 0.5;
    }
}
