*{font-family:"微软雅黑","宋体",Arial;margin: 0;padding: 0;}
body{
    display: flex;
	overflow: hidden;
    justify-content: center;
    align-items: center;
    height: 100vh;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center top;
	} 
textarea,input,button{
	border-radius:3px;
	font:13px/1.14 Arial,\5b8b\4f53;
	color:#333;outline:0;
	} /*表单及按钮内字体控制*/

.feedback {
    width: 328px;
    position: fixed;
    right: 20px; /*留言板靠右屏边距*/
    bottom: -9999px;
    box-shadow: 0 20px 40px 8px rgba(0, 0, 0, 0.25);
    font-size: 14px; /*非表单字体大小*/
    border-radius: 10px 10px 0 0;
}

.feedback .feedbackHeader {
    height: 40px; /*顶部黑条高度*/
    line-height: 40px; /*顶部黑条文字高度*/
    border-radius: 10px 10px 0 0;
    color: #ffffff; /*顶部黑条文字颜色*/
	font-size: 16px; /*顶部黑条文字大小*/
    text-indent: 50px; /*顶部黑条上的文字左距*/
    font-weight: normal;
    cursor: pointer;
}

.feedback .eMailIco {
    background: url("../image/emailIco.png") 16px center no-repeat #252c33;
    background-size: 21px auto;
}

.feedback .closeBtn {
    width: 328px; /*关闭留言板的点击范围宽度*/
    height: 28px; /*关闭留言板的点击范围高度*/
    background-size: 28px 28px;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    display: none;
}

.feedbackForm {
    padding: 1px 1px 1px 1px; /*整个表单边距-上左下右*/
}

/*深色背景使用*/
.tips{color:#f1d955;text-align:left;} /*浅黄-首显表单提示的文字属性*/
.Validform_wrong{color:#ff6600;} /*棕色-表单验证错误的显示文字属性*/
.Validform_right{color:#fcff00;} /*亮黄-表单验证通过的显示文字属性*/
/* 浅色背景使用
.feedback .tips{color:#1677ff;} /*蓝色-首显表单提示的文字属性
.Validform_wrong{color:#F00;} /*红色-表单验证错误的显示文字属性
.Validform_right{color:#090;} /*绿色-表单验证通过的显示文字属性
*/

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

.feedbackForm .line input, .feedbackForm .line textarea {
    width: 100%;
    box-sizing: border-box;
    border-radius: 4px; /*表单四个角羽化*/
    display: block;
	padding: 10px; /*表单四个方向的内边距*/
	font-size: 15px; /*表单内文字大小*/
	border:1px solid #DADADA; /*表单轮廓线*/
	color:#C0C0C0;  /*未触发表单内文字颜色*/
	outline:0 none; /*0不显示点击表单后轮廓线*/
	box-shadow:inset 0 1px 4px #ECECEC;
	-moz-box-shadow:inset 0 1px 4px #ECECEC;
	-webkit-box-shadow:inset 0 1px 4px #ECECEC;
}

.feedbackForm textarea {
    resize: none; /*禁止用户调整表单框大小*/
    height: 200px; /*留言框高度*/
    line-height: 10px; /*留言文字顶距*/
	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 { /*原btn*/
    background: #18c139;
    border-radius: 4px; /*表单四个角羽化*/
    width: 100px; /*发送按钮表单宽度*/
    box-sizing: border-box;
    border: none;
    height: 38px; /*发送按钮表单高度*/
    line-height: 38px; /*发送按钮文字高度*/
	font-size: 16px; /*发送按钮文字大小*/
    color: #ffffff; /*发送按钮文字颜色*/
    cursor: pointer;
}

.feedbackForm .bmit:hover { /*变色蓝★★*/
    background-color: #2563eb;/*按钮变换蓝色*/
	transform: translateY(-1px); /*按钮浮动幅度*/
}