.vwarp{
    width: 100%;
    display: none
}
.vwarp .vwarpview{
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
    background: rgba(0, 0, 0, 0.6);
    left: 0;
    top: 0
}
.vwarp .viewform{
    width: 1000px;
    min-height: 300px;
    background: #fff;
    border-radius: 5px;
    position: fixed;
    left: 50%;
    top: 18%; 
    z-index: 999;
    margin-left: -500px;
}
.vwarp .viewform .forview{
    width: 100%;
    position: relative;
    padding: 50px 3%;
    box-sizing: border-box;
    z-index: 999;
}
.vwarp .viewform .forview i{
    position: absolute;
    display: block;
    right: -30px;
    top: -30px;
    width: 30px;
    height: 30px;
    background: url('../images/close.png') no-repeat center top;
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
    cursor: pointer;
   
}
.vwarp .viewform .forview i:hover{
       transform: rotate(360deg);
       -webkit-transform: rotate(360deg);
}
.vwarp .viewform .forview input{
    width: 100%;
    font-size: 12px;
    line-height: 30px;
    background: #f1f1f1;
}
.vwarp .viewform .forview ul{
    width: 100%;
    padding: 0;
    margin: 0;
}
.vwarp .viewform .forview ul li{
    width: 32%;
    float: left;
    background: #f1f1f1;
    margin-right: 1.5%;
    box-sizing: border-box;
    padding: 10px 2%;
    list-style: none;
}
.vwarp .viewform .forview ul li:nth-of-type(3n){
    margin-right: 0;
}
.vwarp .viewform .forview  textarea{
    width: 100%;
    min-height: 200px;
    background: #f1f1f1;
    margin: 20px auto;
    box-sizing: border-box;
    padding: 18px 3%;
}
.vwarp .viewform .forview #submit{
    width: 100%;
    background: #828081;
    color: #fff;
    line-height: 50px;
}
.vwarp .viewform .forview #submit:hover{
    background: #000
}
@media screen and (max-width: 1600px) {
    .vwarp .viewform .forview textarea{
        min-height: 239px;
    }
}
@media screen and (max-width: 1300px) {
    .vwarp .viewform .forview ul li{
        width: 100%;
        margin-bottom: 20px;
    }
    .vwarp .viewform .forview textarea{
        width: 100%;
        min-height: 170px;
        background: #f1f1f1;
        margin: 2px auto;
        box-sizing: border-box;
        padding: 18px 3%;
    }
}
