
/**
弹窗样式
 */
.pop{
    display: none;
    position: fixed;
    z-index: 20;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.64);
    overflow: hidden;
}
.pop-form{
    position: relative;
    top:20%;
    padding:0.64rem 0.32rem;
    margin: 0 auto;
    width: 7rem;
    max-width: 95%;
    height: auto;
    border-radius: 16px;
    background-color: #FFF;
    box-shadow: 0px 32px 88px 0px rgba(0, 0, 0, 0.24);
    text-align: center;
}
.popForm{
    width: 400px;
    margin: auto;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
}
.pop_item{
    position: relative;
    padding-bottom: 8px;
}
.pop_item .input {
    font-size: 16px;
    color: #000;
    padding-left: 72px;
    width: 100%;
    height: 64px;
    line-height: 64px;
    border: 1px solid #14bf57;
    border-radius: 8px;
}

.pop_item .tips_info {
    position: relative;
    visibility: hidden;
    width: 100%;
    height: auto;
    margin: 0;
    font-size: 14px;
    /*color: #fff;*/
    color: rgb(253, 135, 31);
    margin-top: 2px;
}
.pop_item .tips_false {
    width: 100%;
    line-height: 24px;
    font-style: normal;
    overflow: hidden;
    /*color: #FFF;*/
    color: rgb(253, 135, 31);
    float:left;
}

.pop_item  .tips_false .icon_false {
    display: block;
    display: inline-block;
    margin-right: 5px;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    background: transparent url(../images/shiyong_icon_tips_false.png) no-repeat center center;
}
.cancel_free_trial{
    position: absolute;
    right:5px;
    top: 5px;
    width: 45px;
}
.cancel_free_trial img{
    width: 100%;
}

.pop-form .form_submit {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    cursor: pointer;
    font-size: 24px;
    color: #FFF;
    width: 99%;
    height: 72px;
    color: #FFF;
    /*background-color: #156a35;*/
    background-color: #14bf57;
    background-image: -webkit-linear-gradient( 180deg, rgb(58,196,124) 0%, rgb(0,184,49) 100%);
    /*background-image: -moz-linear-gradient( 180deg, rgb(16,94,45) 0%, rgb(32,134,72) 100%);*/
    /*background-image: -webkit-linear-gradient( 180deg, rgb(16,94,45) 0%, rgb(32,134,72) 100%);*/
    /*background-image: -ms-linear-gradient( 180deg, rgb(16,94,45) 0%, rgb(32,134,72) 100%);*/
    box-shadow: 0px 16px 24px 0px rgba(7, 179, 65, 0.24);
    -webkit-border-radius: 64px;
    -moz-border-radius: 64px;
    border-radius: 64px;
}