* {
    /*页面点击链接时，会出现高亮框，用此代码解决*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /*在谷歌里面小于12号的字，都会显示12号字，此代码解决此问题*/
    -webkit-text-size-adjust: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body,
html,
div,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
dt,
dd,
li,
p {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    color: #666;
}
.clear:after {
    content: "";
    display: block;
    clear: both;
    overflow: hidden;
    height: 0;
    visibility: hidden;
}
.clear {
    zoom: 1;
}
input:focus {
    outline: none;
}
input::-webkit-input-placeholder {
    color: #666;
}
ul,
ol {
    list-style: none;
}
img {
    vertical-align: top;
    border: 0;
}

html {
    font-size: calc(100vw/7.5);
}
.page {
    width: 100%;
}

.view {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.view .pic {
    width: 100%;
    display: block;
}

.view .absoluteBtnBox {
    position: absolute;
    z-index: 2;
    text-align: center;
    width: 100%;
    top: 0;
    left: 0;
}

.view .absoluteBtnBox .btnImg {
    height: 1.31rem;
    margin: 0 auto;
    animation: zoom 1.5s linear infinite alternate;
    -ms-animation: zoom 1.5s linear infinite alternate;
    -moz-animation: zoom 1.5s linear infinite alternate;
    -webkit-animation: zoom 1.5s linear infinite alternate;
    -o-animation: zoom 1.5s linear infinite alternate;
}

@keyframes zoom {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(0.8, 0.8);
    }
    100% {
        transform: scale(1, 1);
    }
}

@-moz-keyframes zoom {
    0% {
        -moz-transform: scale(1, 1);
    }
    50% {
        -moz-transform: scale(0.8, 0.8);
    }
    100% {
        -moz-transform: scale(1, 1);
    }
}

@-webkit-keyframes zoom {
    0% {
        -webkit-transform: scale(1, 1);
    }
    50% {
        -webkit-transform: scale(0.8, 0.8);
    }
    100% {
        -webkit-transform: scale(1, 1);
    }
}

@-o-keyframes zoom {
    0% {
        -o-transform: scale(1, 1);
    }
    50% {
        -o-transform: scale(0.8, 0.8);
    }
    100% {
        -o-transform: scale(1, 1);
    }
}

.copyright {
    width: 100%;
    height: 1.25rem;
    background-color: rgb(47, 114, 195);
    font-size: 0.35rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.25rem;
}

.notes {
    width: 100%;
    height: 2rem;
    padding-top: 0.2rem;
}

.notes p {
    width: 100%;
    height: 0.4rem;
    text-align: center;
    line-height: 0.4rem;
    color: #666;
    font-size: 0.2rem;
    font-weight: 600;
    white-space: nowrap;
}

.infos {
    width: 100%;
    padding: 0 0.3rem;
}

.infos .inp {
    display: block;
    width: 100%;
    height: 0.9rem;
    border: 0.02rem solid #999;
    box-sizing: border-box;
    outline: none;
    border-radius: 0.1rem;
    margin: 0 auto;
    text-indent: 0.2rem;
    margin-top: 1.8rem;
}

.infos .codeLine {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
}

.infos .code {
    width: 60%;
    height: 0.9rem;
    border: 0.02rem solid #999;
    box-sizing: border-box;
    outline: none;
    border-radius: 0.1rem;
    text-indent: 0.2rem;
}

.infos .btn {
    display: inline-block;
    width: 35%;
    height: 0.9rem;
    font-size: 0.3rem;
    text-align: center;
    line-height: 0.9rem;
    background-color: rgb(223, 86, 76);
    border-radius: 0.1rem;
    color: #fff;
}

.infos .btn:active {
    background-color: rgb(197, 43, 32);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0.8;
}

.infos .submit {
    width: 100%;
    height: 0.9rem;
    font-size: 0.3rem;
    text-align: center;
    line-height: 0.9rem;
    background-color: rgb(223, 86, 76);
    border-radius: 0.4rem;
    color: #fff;
}

.infos .submit:active {
    background-color: rgb(197, 43, 32);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0.8;
}

.infos-blue .btn {
    background-color: #164462;
}

.infos-blue .btn:active {
    background-color: #09324e;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0.8;
}

.infos-blue .submit {
    background-color: #164462;
    border-radius: 0.1rem;
}

.infos-blue .submit:active {
    background-color: #09324e;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0.8;
}

.popup {
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.popup .close {
    width: 0.6rem;
    height: 0.6rem;
    border: 0.02rem solid #fff;
    box-sizing: border-box;
    border-radius: 50%;
    text-align: center;
    line-height: 0.5rem;
    position: absolute;
    right: 0rem;
    top: 0rem;
    z-index: 101;
    font-size: 0.5rem;
    color: #000;
}

.popup .center {
    width: 6rem;
    height: 6rem;
    background: url(../images/pop.png) no-repeat center center;
    background-size: 100%;
    border-radius: 0.3rem;
    text-align: center;
    position: absolute;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup .center .tips {
    font-size: 0.2rem;
    color: #164462;
    margin-top: 0.1rem;
}

.diagnosis1 {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    margin-top: 0.5rem;
    width: 100%;
}

.diagnosis2 {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    margin-top: 0.3rem;
    width: 100%;
}

.diagnosis1 .box {
    width: 5.8rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.diagnosis2 .box {
    width: 5.8rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.diagnosis1 .product {
    display: block;
    background: #ffffff;
    border: none;
    border-radius: 0.1rem;
    width: 5.8rem;
    height: 0.82rem;
    text-indent: 1em;
    font-size: 0.3rem;
    color: #333;
    margin-bottom: 0.3rem;
}

.diagnosis2 .product {
    display: block;
    background: #ffffff;
    border: none;
    border-radius: 0.1rem;
    width: 5.8rem;
    height: 0.82rem;
    text-indent: 1em;
    font-size: 0.3rem;
    color: #333;
    margin-bottom: 0.2rem;
}

.diagnosis1.product::-webkit-input-placeholder {
    font-size: 0.3rem;
}

.diagnosis1 .product::-moz-placeholder {
    font-size: 0.3rem;
}

.diagnosis1 .product:-ms-input-placeholder {
    font-size: 0.3rem;
}

.diagnosis2.product::-webkit-input-placeholder {
    font-size: 0.3rem;
}

.diagnosis2 .product::-moz-placeholder {
    font-size: 0.3rem;
}

.diagnosis2 .product:-ms-input-placeholder {
    font-size: 0.3rem;
}

.diagnosis1 .btn {
    display: block;
    margin: 0 auto;
    cursor: pointer;
    font-size: 0.32rem;
    width: 5.5rem;
    height: 0.86rem;
    border: none;
    border-radius: 0.02rem;
    text-align: center;
    font-weight: 700;
    color: #2e3045;
    background: #e6bb77;
    -webkit-animation: zoom 1.4s linear infinite;
    animation: zoom 1.4s linear infinite;
}

.diagnosis2 .btn {
    display: block;
    margin: 0 auto;
    cursor: pointer;
    font-size: 0.32rem;
    width: 5.5rem;
    height: 0.86rem;
    border: none;
    border-radius: 0.02rem;
    text-align: center;
    font-weight: 700;
    color: #2e3045;
    background: #e6bb77;
    -webkit-animation: zoom 1.4s linear infinite;
    animation: zoom 1.4s linear infinite;
    margin-bottom: 0.1rem;
}

.diagnosis2 .tips {
    text-align: center;
    font-size: 0.18rem;
    color: #fff;
}

@keyframes zoom {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(0.8, 0.8);
    }
    100% {
        transform: scale(1, 1);
    }
}

@-moz-keyframes zoom {
    0% {
        -moz-transform: scale(1.2, 1.2);
    }
    50% {
        -moz-transform: scale(0.8, 0.8);
    }
    100% {
        -moz-transform: scale(1.2, 1.2);
    }
}

@-webkit-keyframes zoom {
    0% {
        -webkit-transform: scale(1.2, 1.2);
    }
    50% {
        -webkit-transform: scale(0.8, 0.8);
    }
    100% {
        -webkit-transform: scale(1.2, 1.2);
    }
}

@-o-keyframes zoom {
    0% {
        -o-transform: scale(1.2, 1.2);
    }
    50% {
        -o-transform: scale(0.8, 0.8);
    }
    100% {
        -o-transform: scale(1.2, 1.2);
    }
}

.diagnosis1 ul.chooses {
    width: 100%;
    position: absolute;
    z-index: 2;
    top: 0.9rem;
    left: 0;
    background-color: #fff;
}

.diagnosis1 ul.chooses li {
    width: 100%;
    font-size: 0.22rem;
    line-height: 0.6rem;
    font-weight: bold;
    text-align: center;
    color: #d98000;
}

.diagnosis1 ul.chooses li:first-child {
    background: #d98000;
    font-size: 0.22rem;
    color: #ffffff;
}

.diagnosis2 ul.chooses {
    width: 100%;
    position: absolute;
    z-index: 2;
    top: 0.9rem;
    left: 0;
    background-color: #fff;
}

.diagnosis2 ul.chooses li {
    width: 100%;
    font-size: 0.22rem;
    line-height: 0.6rem;
    font-weight: bold;
    text-align: center;
    color: #d98000;
}

.diagnosis2 ul.chooses li:first-child {
    background: #d98000;
    font-size: 0.22rem;
    color: #ffffff;
}

.rolling {
    color: #ffffff;
    font-size: 0.12rem;
    width: 5.8rem;
    height: 1.6rem;
    border-radius: 0.1rem;
    background-color: #c1c1d3;
    overflow: hidden;
    position: absolute;
    left: 50%;
    bottom: 0.4rem;
    transform: translate(-50%, 0);
}

.rolling ul {
    width: 100%;
}

.rolling ul li {
    height: 0.5rem;
    line-height: 0.5rem;
    overflow: hidden;
    padding: 0 0.25rem;
    box-sizing: border-box;
    font-size: 0.22rem;
    color: #4d4f63;
}

.cut {
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.cut .box {
    width: 6.8rem;
    height: 3.93rem;
    background: url(../image/future/cut.png) center no-repeat;
    background-size: 100%;
    overflow: hidden;
    position: absolute;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes translation {
    0% {
        left: 0;
    }
    100% {
        left: 5.4rem;
    }
}

@-moz-keyframes translation {
    0% {
        left: 0;
    }
    100% {
        left: 5.4rem;
    }
}

@-webkit-keyframes translation {
    0% {
        left: 0;
    }
    100% {
        left: 5.4rem;
    }
}

@-o-keyframes translation {
    0% {
        left: 0;
    }
    100% {
        left: 5.4rem;
    }
}

.cut .translation {
    width: 0.97rem;
    height: 1.32rem;
    margin: 1.62rem 0 0 0.2rem;
    position: absolute;
    top: 0;
    animation: translation 2s linear infinite;
    background: url(../image/future/cut-translation.png) center no-repeat;
    background-size: 100%;
}

.retain {
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.retain .box {
    width: 6.9rem;
    height: 3.45rem;
    background: url(../image/future/detainment.png) center no-repeat;
    background-size: 100%;
    position: absolute;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.retain .yes,
.retain .no {
    z-index: 2;
    width: 1.6rem;
    height: 0.55rem;
}

.retain .no {
    position: absolute;
    bottom: 0.8rem;
    left: 0.3rem;
}

.retain .yes {
    position: absolute;
    bottom: 0.8rem;
    left: 2.1rem;
}

.successBox {
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.successBox .box {
    width: 6.9rem;
    height: 3.45rem;
    background: url(../image/future/know.png) center no-repeat;
    background-size: 100%;
    position: absolute;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.successBox .confirm {
    position: absolute;
    width: 3.4rem;
    height: 0.6rem;
    bottom: 0.55rem;
    left: 0.5rem;
    z-index: 2;
}

.img_point {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.img_point .pic {
    width: 100%;
    display: block;
}

.img_point .round {
    width: 4.36rem;
    height: 4.36rem;
    position: absolute;
    z-index: 2;
    top: 6.02rem;
    left: 50%;
    /* width: 53.2%; */
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    animation: xuzh 7s linear infinite;
    -webkit-animation: xuzh 7s linear infinite;
}

@keyframes xuzh {
    from {
        transform: translate(-50%, -50%) rotate(0);
        -webkit-transform: translate(-50%, -50%) rotate(0);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes xuzh {
    from {
        transform: translate(-50%, -50%) rotate(0);
        -webkit-transform: translate(-50%, -50%) rotate(0);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
    }
}

::placeholder {
    font-style: italic;
    /* 使用 skewX() 方法倾斜文本 */
}


/* 兼容性样式，部分浏览器需要添加 */

 :-ms-input-placeholder {
    /* Internet Explorer 10+ */
    font-style: italic;
}

 ::-ms-input-placeholder {
    /* Microsoft Edge */
    font-style: italic;
}
.warm-tips {
    padding: 4.846vw 4.846vw;
    color: #ffffff;
    font-size: .28rem;
    background-color: #000f3a;
}
.warm-tips .warm-tips-content {
    text-align: justify;
    font-size: .2rem;
    line-height: 5.128vw;
    white-space: pre-line
}
.user {
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}
.user .box {
    width: 6.8rem;
    height: auto;
    background-color: #ffffff;
    position: absolute;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    border-radius: 10px;
    padding: .4rem;
}
.login-user-info{
    margin-top: -.9rem;
}
.login-user-info .recom-span{
    width: 1.12rem;height: 1.12rem;
    display: block;
    border-radius: 50%;
    overflow: hidden;
    margin: 5px auto 2px;
    position: relative;
    border: 3px solid #ffffff;
}
.login-user-info .recom-span img{
    width: 100%;
    height: 100%;
}
.login-user-info .info-name{
    font-size: 13px;
    margin-bottom: 5px;
    text-align: center;
    color: #666666;
}
.msg-flag{
    font-size: .28rem;
    color: #333333;
    text-align: center;
    padding: .25rem 0;
    line-height: .44rem;
}
.msg-flag img{
    width: .28rem;
    position: relative;
    top: .06rem;
    margin-right: .05rem;
}
.opening-wx-btn{
    background-color: #00B057;
    color: #ffffff;
    text-align: center;
    height: 45px;line-height: 45px;
    width: 86%;border-radius: 5px;
    margin: 8px auto 13px;
    font-size: 15px;
    position: relative;
}
.note-msg{
    color: #868686;
    font-size: 12px;margin-top: 15px;
    text-align: center;
    width: 104%;
}
.we-close{
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    right: 10px;
    top: 10px;z-index: 3;
    text-align: center;
    line-height: 20px;
    background: url('../image/share/bottom-close.png') no-repeat center;
    background-size: 13px 13px;
}