* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    max-width: 540px;
    margin: 0 auto;
}

img {
    width: 100%;
    height: auto;
}

#app {
    margin: 0 auto;
    background-color: rgba(44, 175, 144);
    font-size: 0.35rem;
    position: relative;
}

.top {
    position: relative;
}

.tel {
    position: absolute;
    top: 0.3rem;
    right: 0.6rem;
    color: #FFFFFF;
    font-size: 0.4rem;
    animation: move 1s infinite;
}

.tel img {
    vertical-align: middle;
    width: 0.7rem;
}

.tel a {
    color: #FFFFFF;
    text-decoration: underline;
}

.tel1 {
    width: 1.6rem;
    position: fixed;
    top: 12.6rem;
    right: 0.1rem;
    text-align: center;
    display: block;
    animation: move 0.7s infinite;
    color: white;
    font-size: 0.35rem;
    font-weight: bold;
}

.tel1 img {
    width: 1.25rem;
    background-color: #ff850e;
    border-radius: 50%;
}

.tel1 div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 横向轮播 */
.x-scroll {
    font-size: 0.3rem;
    width: 100%;
    margin: 0 auto;
    height: 0.75rem;
    line-height: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    /*position: absolute;*/
    /*left: 0;*/
    /*right: 0;*/
    /*bottom: 0;*/
}

.x-scroll-inner {
    animation: scroll 10s infinite linear;
    position: absolute;
    left: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.x-scroll-inner div {
    text-align: center;
    padding: 0 .3rem;
    margin: 0 .1rem;
    border-radius: .5rem;
    display: inline-block;
    color: #fff;
    background: rgba(0, 0, 0, .44);
}

/* 表单 */
.form {
    width: 100%;
    margin: 0.5rem auto 0;
}

.form .item-box, .isOk-main .item-box {
    margin: 0 auto 0.4rem;
    position: relative;
    width: 80%;
}

.form input, .isOk-main .item-box input {
    width: 100%;
    outline: none;
    height: 1.2rem;
    line-height: 1.2rem;
    border-radius: 1.2rem;
    padding: 0 0.45rem;
    border: 1px solid #e6e6e6;
    /*border: none;*/
    /*background: #f0f4ff;*/
    font-size: 0.4rem;
    font-weight: 300;
}

.form input::-webkit-input-placeholder {
    color: #9c9ca2;
    /*color: rgba(100,98,98);*/
}

#getCode {
    position: absolute;
    right: 0;
    top: 0;
    color: #ff7900;
    /*font-weight: bold;*/
    font-size: 0.4rem;
    padding: 0 0.5rem;
    height: 100%;
    border-radius: 0 1.2rem 1.2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#toApply {
    animation: move 1s infinite;
}

@keyframes move {
    from {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
    to {
        transform: scale(1);
    }
}

.bottom-btn {
    position: fixed !important;
    bottom: 5.2rem;
    left: 50%;
    transform: translateX(-50%);
}

/* 协议 */
.agreement {
    color: #FFFFFF;
    text-align: center;
    font-size: 0.35rem;
}

.agreement .remark {
    line-height: 1.5;
    margin: 0.2rem 0 0.3rem;
}

.agreement .remark a {
    color: #FFFFFF;
    text-decoration: underline;
}

/* 自定义checkbox样式-图片 */
.agreement input {
    display: none;
}

.agreement input + label {
    background: url(../img/check-white-no.png) left center no-repeat;
    background-size: 0.4rem 0.4rem;
    padding-left: 0.5rem;
}

.agreement input:checked + label {
    background-image: url(../img/check-white.png);
}

/*协议弹框*/
.protocol {
    width: 84%;
    height: 70%;
    background: #fff;
    color: #646566;
    border-radius: 12px;
    position: fixed;
    top: 15%;
    left: 8%;
    font-size: 0.37rem;
}

.protocol .protocol-title {
    height: 1.5rem;
    line-height: 1.5rem;
    font-size: 0.45rem;
    text-align: center;
}

.protocol .protocol-close {
    color: #ee0a24;
    font-size: 0.45rem;
    text-align: center;
    height: 1.25rem;
    line-height: 1.25rem;
}

.protocol .protocol-main {
    width: 98%;
    height: calc(95% - 2rem);
    margin: auto;
    overflow-y: scroll;
    padding: 0 5%;
    line-height: 0.5rem;
    white-space: pre-line;
    font-weight: bold;
}

/* 活动说明 */
.explain {
    width: 90%;
    padding-bottom: 2.8rem;
    margin: 0.5rem auto 0;
}

.explain-title {
    margin-top: 0.5rem;
    color: #eee;
    font-size: 0.43rem;
    font-weight: bold;
    text-align: center;
}

.explain-main {
    color: rgba(5, 66, 57);
    border-radius: 0.3rem;
    line-height: 1.6;
    white-space: pre-line;
    border: solid 0.06rem rgba(5, 66, 57);
    background-color: #FFFFFF;
    padding: 0 0.3rem 0.35rem;
    font-weight: bold;
}

/*二次确认弹框*/
.isOk-main {
    width: 8.5rem;
    height: 15rem;
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.45rem;
    background: linear-gradient(#afe9dc, rgba(44, 175, 144) 25%);
    border-radius: 0.4rem;
}

.isOk-main .title {
    text-align: center;
    height: 1.3rem;
    line-height: 1.3rem;
    color: #016f5d;
    font-weight: bold;
}

.isOk-main .main {
    width: 90%;
    height: 65%;
    margin: 0 auto;
    /*border: solid 0.06rem rgba(5,66,57);*/
    background-color: #FFFFFF;
    color: rgba(5, 66, 57);
    overflow-y: scroll;
    font-size: 13px;
    padding: 0.3rem;
    line-height: 1.6;
    border-radius: 10px;
}

.isOk-main .main > div {
    display: flex;
}

.isOk-main .main > div > div:first-child {
    width: 75px;
    /*border-bottom: dashed 1px #eee;*/
    /*border-right: dashed 1px #eee;*/
}

.isOk-main .main > div > div:last-of-type {
    width: calc(100% - 75px);
    /*border-bottom: dashed 1px #eee;*/
    padding: 0 0.2rem;
    font-weight: bold;
}

.isOk-main .checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    padding: 5px;
}

.isOk-main .checkbox input {
    margin-right: 5px;
    background-color: #fff;
    color: #fff;
}

.isOk-btn {
    width: 100%;
    position: absolute;
    bottom: 0.4rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.isOk-btn .isOk-cancel {
    background: none;
    color: #f97158;
    margin-right: 0.3rem;
}

.isOk-btn .isOk-confirm {
    width: 3.8rem;
    animation: move 1s infinite;
    font-weight: bold;
}









