.feedback {
	margin: 0 auto;
	max-width: 1920px;
	padding: 20px 0;
}

.feedback .feedbackContent {
	width: 1200px;
	margin: 0 auto;
}

.feedback .feedbackContent div.ncontent {
	padding: 0;
}

.feedback .feedbackContent div.ncontent img {
	max-width: 100%;
}

.feedback .feedbackContent div.ncontent .inputH {
	width: 100%;
	float: left;
	outline: none;
}

.feedback .feedbackContent div.ncontent .inputH .inputTxt {
	width: 570PX;
	height: 40px;
	line-height: 40px;
	letter-spacing: 1px;
	font-size: 14px;
	padding: 0 10px;
	margin-bottom: 10px;
	outline: none;
	border: solid 1px #8F8F8F;
	/* -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s*/
}

.feedback .feedbackContent div.ncontent .inputH .inputTxt:focus,.feedback .feedbackContent div.ncontent .inputTextarea:focus {
	border: solid 1px #d0a20b;
	/*-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(231, 177, 1, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(231, 177, 1, .6)*/
}

.feedback .feedbackContent div.ncontent .inputH .L {
	float: left;
}

.feedback .feedbackContent div.ncontent .inputH .R {
	float: right;
}

.feedback .feedbackContent div.ncontent .inputTextarea {
	width: 1178px;
	height: 120px;
	letter-spacing: 1px;
	font-size: 14px;
	padding: 10px;
	margin-bottom: 10px;
	resize: none;
	outline: none;
	border: solid 1px #8F8F8F;
}

a.commonBtn {
	color: #fff;
	border: none;
	position: relative;
	font-size: 15px;
	cursor: pointer;
	transition: 800ms ease all;
	outline: none;
	text-transform: uppercase;
	line-height: 70px;
	margin-right: 10px;
	display: inline-block;
	width: 70px;
	height: 70px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.btnDiv {
	text-align: center;
}

a.submitBtn1 {
	background: #d0a20b;
}

a.submitBtn1:hover {
	background: #e7b101;
	-webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, .2);
	box-shadow: inset 0 3px 8px rgba(0, 0, 0, .2);
}

a.resetBtn1 {
	background: #9F9F9F;
}

a.resetBtn1:hover {
	background: #6F6F6F;
	-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .2);
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, .2);
}


/****toast****/

#toastTip {
	display: none;
	max-width: 50%;
	padding: 20px 40px;
	position: fixed;
	top: 40%;
	left: 45%;
	z-index: 5000;
	opacity: 0.9;
	background-position: initial initial;
	background-repeat: initial initial;
	color: #FFFFFF;
	border-radius: 3px;
	font-size: 13px;
	opacity: 0.8;
	-moz-opacity: 0.8;
	filter: alpha(opacity=80);
	text-align: center;
}

.toastTip-bgcolor-success {
	background: #d0a20b;
}

.toastTip-bgcolor-error {
	background: #000000;
}


/****toast******/


/**loading**/

#progress {
	display: none;
	position: fixed;
	height: 2px;
	background: #d0a20b;
	transition: opacity 500ms linear;
	z-index: 9999;
	top: 0
}

#progress.show {
	display: block;
	opacity: 1;
	width: 0;
}

#progress.done {
	opacity: 0
}

#progress span {
	position: absolute;
	height: 2px;
	-webkit-box-shadow: #d0a20b 1px 0 6px 1px;
	-webkit-border-radius: 100%;
	opacity: 1;
	width: 150px;
	right: -10px;
	-webkit-animation: pulse 2s ease-out 0s infinite;
}

@-webkit-keyframes pulse {
	30% {
		opacity: .6
	}
	60% {
		opacity: 0;
	}
	100% {
		opacity: .6
	}
}

#bg {
	display: none;
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 150%;
	background-color: #A0A0A0;
	z-index: 1001;
	-moz-opacity: 0.1;
	opacity: 0.1;
	filter: alpha(opacity=10);
}


/**loading**/