/*-----------固定------------*/
.zk-body-wrap{
    min-height: 100%;
    height: auto;
}
.zk-main-wrap{
    padding-bottom:141px;
}
.zk-footer-wrap{
    height:141px;
    margin-top:-141px;
}
.zk-wrap{
    width:1100px;
    margin:0 auto;
}
/* ------------------------- form表单 --------------------------------- */
/* placeholder */
input.zk-form-control::-webkit-input-placeholder,
textarea.zk-form-control::-webkit-input-placeholder {
    /* WebKit browsers */
    font-size: 18px;
    color: #999;
}
input.zk-form-control:-moz-placeholder,
textarea.zk-form-control:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    font-size: 18px;
    color: #999;
}
input.zk-form-control::-moz-placeholder,
textarea.zk-form-control::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    font-size: 18px;
    color: #999;
}
input.zk-form-control:-ms-input-placeholder,
textarea.zk-form-control:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    font-size: 18px;
    color: #999;
}

input[type="textarea"] {
    padding: 10px;
    font-size: 1.3rem;
    line-height: 18px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

input[type="text"][disabled] {
    color: #999;
    background-color: #f9f9f9;
}

.zk-form-control-wrap {
    position: relative;
}
.zk-form-control {
    width: 420px;
    height: 60px;
    padding: 10px 20px;
    font-size: 18px;
    line-height: 40px;
    border: 1px solid #fff;
    color:#999;
    background-color:#fff;
}
.zk-form-control:focus,
.zk-form-control.data-pt-plugin-hidelayer-active,
.zk-form-control.data-pt-plugin-hidelayer-active:hover {
    border-color: #add4e8;
}
.zk-app-user-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 36px;
    height: 38px;
    background: url(../styles/imgs/user.png) center center no-repeat;
    background-size: 100% 100%;
}
.zk-app-phone-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 27px;
    height:39px;
    background: url(../styles/imgs/phone.png) center center no-repeat;
    background-size: 100% 100%;
}
/*------------zk-btn--------------*/
.zk-btn{
    display: block;
    width:800px;
    height: 66px;
    line-height: 66px;
    padding: 0px 10px;
    font-size: 28px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    background:-webkit-linear-gradient(left,#f66830, #f64d30);
    background:linear-gradient(left,#f66830, #f64d30);
    box-shadow: 0 2px 5px rgba(246,102,76,.46);
    -webkit-box-shadow: 0 2px 5px rgba(246,102,76,.46);
    border-radius: 50px;
    -webkit-transition: .2s ease-out;
    -moz-transition: .2s ease-out;
    -o-transition: .2s ease-out;
    transition: .2s ease-out;
}
.zk-btn:hover{
    background:-webkit-linear-gradient(left,#f64d30, #f66830);
    background:linear-gradient(left,#f64d30, #f66830);
}
.zk-btn.btn-blue{
    background:-webkit-linear-gradient(left,#4943bb, #413ba8);
    background:linear-gradient(left,#4943bb, #413ba8);
    box-shadow: 0 2px 5px rgba(65,59,168,.46);
    -webkit-box-shadow: 0 2px 5px rgba(65,59,168,.46);
}
.zk-btn.btn-blue:hover{
    background:-webkit-linear-gradient(left,#4943bb, #413ba8);
    background:linear-gradient(left,#4943bb, #413ba8);
    box-shadow: 0 2px 5px rgba(65,59,168,.46);
    -webkit-box-shadow: 0 2px 5px rgba(65,59,168,.46);
}
.zk-btn.w240{
    width:240px;
    border-radius: 0;
    height: 60px;
    line-height: 60px;
}
.zk-btn.w280{
    width:280px;
    border-radius: 4px;
    height: 60px;
    line-height: 60px;
    font-size:24px;
}