﻿body {
    margin: 0;
    width:100%;
    height:100%;
}



.content_div {
    margin-top: 65%;
    position: absolute;
    width: 100%;
}

.card {
    background-color: #e06f61;
    border-radius: 10px;
    height: 150px;
    margin-left: 5%;
    width: 90%;
    flex-direction: column;
    justify-content: center;
    display: flex;
    box-shadow: #e06f61 0px 0px 0px 2px;
}

.number {
    font-size: 40px;
    color: #ffffff;
    font-weight: bold;
}

.number_div {
    display: flex;
    align-items: flex-end;
    padding-left: 30px;
}

.number_div {
    padding-left: 30px;
}

.number_tips {
    font-size: 25px;
    color: #ffffff;
    font-weight: bold;
}

.form-button {
    width: 90%;
    padding: 13px;
    border: none;
    outline: none;
    margin-left: 5%;
    margin-right: 5%;
    border-radius: 100px;
    font-size: 22px;
    margin-top: 7%;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(to bottom, #F4D01F, #EB9404);
    animation: zooming 2s infinite;
}


.web_button {
    margin-top: 5%;
    background: linear-gradient(to bottom, #599bec, #38688a);
}

.warring_tips_view {
    text-align: center;
    margin-left: 25%;
    margin-right: 25%;
    margin-top: 15%;
}

.warring_tips {
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
}



@keyframes zooming {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -webkit-transform: scale(.92);
        transform: scale(.92);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    75% {
        -webkit-transform: scale(.92);
        transform: scale(.92);
    }
}

.message {
    margin: 15px 0 0;
    color: #FFFFFF;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}




.wxtip {
    background: rgba(0,0,0,0.8);
    text-align: center;
    position: fixed;
    left: 0;
    top: 0;
    font-size: larger;
    width: 100%;
    height: 100%;
    z-index: 998;
}

.wxtip-icon {
    width: 63pt;
    height: 75pt;
    background: url('../img/weixin-tip.png');
    display: block;
    background-size: cover;
    position: absolute;
    right: 27pt;
    top: 20pt;
}

.wxtip-txt {
    margin-top: 103pt;
    color: #fff;
    font-size: 15pt;
    line-height: 1.5;
}


