
.feedbackForm {
    padding: 16px 16px 20px 16px; /*整个表单边距20px为下边距*/
}

.feedbackForm .line {
    margin-bottom: 16px;
}

.feedbackForm textarea {
    resize: none; /*禁止用户调整表单框大小*/
    height: 98px; /*留言框高度*/
    line-height: 20px; /*留言文字顶距*/
	background-repeat:no-repeat; 
	background-position:center center; 
	overflow:auto; 
	resize:none; 
	background-image:url(../image/form_logo.gif);} /*留言板内的背景图*/
}

.feedbackForm .line input {
	resize: none; /*禁止用户调整表单框大小*/
    height: 40px; /*邮箱表单高度*/
    line-height: 40px; /*邮箱表单文字高度*/
}

.feedbackForm .bmit { /*原色绿★★*/
    background: #18c139; /*表单按钮绿色*/
    border-radius: 4px; /*表单四个角羽化*/
    width: 49%; /*发送按钮表单宽度*/
    box-sizing: border-box;
    border: none;
    height: 40px; /*发送按钮表单高度*/
    line-height: 40px; /*发送按钮文字高度*/
	font-size: 18px; /*发送按钮文字大小*/
    color: #ffffff; /*发送按钮文字颜色*/
    cursor: pointer;
}
.feedbackForm .bmit:hover { /*变色蓝★★*/
    background-color: #2563eb;/*按钮变换蓝色*/
	transform: translateY(-1px); /*按钮浮动幅度*/
        }