@charset "utf-8";
.inquiry-form-wrap {
	box-shadow: 0 0 10px rgb(0, 0, 0, .1);
	height:auto;
	padding-bottom:34px;
}
.inquiry-form-wrap .title {
	background: #013e5a;
	width: 100%;
	height: 55px;
	line-height: 55px;
	color: #fff;
	margin: 0;
	padding: 0;
	font-size: 16px;
	padding: 0 20px;
	font-weight: normal;
}
.inquiry-form-wrap ul {
	padding: 20px 20px 5px;
}
.inquiry-form-wrap ul li {
	margin: 0 0 14px;
	display: flex;
	min-height: auto;
	line-height: 40px;
}
.inquiry-form-wrap ul li .forme_bit {
	border: 1px solid #eee;
	border-left: 3px solid #013e5a;
	height: 39px;
	padding: 0 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	position: relative;
	width: 100%;
	flex:1;
}
.inquiry-form-wrap ul li .textarea_q {
	border: 1px solid #eee;
	border-left: 3px solid #013e5a;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	flex:1;
	height: 95px;
	padding: 10px;
	resize: none;
}
.inquiry-form-wrap ul li .forme_bit::-webkit-input-placeholder, .inquiry-form-wrap ul li .textarea_q {
color:#666;
}

.inquiry-form-wrap button{
	width: 100%;
	height: 33px;
	line-height:33px;
	text-align:center;
	color: #fff;
	background: #ff6f00;
	border: none;
	cursor: pointer;
}
.inquiry-form-wrap button:hover {
	background: #013e5a;
}

.inquiry-form-wrap ul li .send {
	width: 100%;
	height: 33px;
	line-height:33px;
	text-align:center;
	color: #fff;
	background: #ff6f00;
	border: none;
	cursor: pointer;
}
.inquiry-form-wrap ul li .send:hover {
	background: #013e5a;
}
.inquiry-form-wrap ul li:last-child {
	margin-bottom:0px;
}

@media screen and (max-width:600px){
	.inquiry-form-wrap ul li{ margin-bottom:20px;}
	.inquiry-form-wrap ul li .send{background: #013e5a;}
}

/*popup弹窗*/
html.hide{
	height:100%;
	overflow:hidden;
}

.popup-custom-shadow{
	background: rgba(0, 0, 0, .7);
	position:fixed;
	top:0;
	left:0;
	height:100%;
	width:100%;
	z-index:9999998;
	transition:all .4s;
	-webkit-transition:all .4s;
	opacity:0;
	visibility:hidden;
}
.popup-custom{
	position:fixed;
	top:50%;
	left:50%;
	transform:translate(-50%,-100%);
	-webkit-transform:translate(-50%,-100%);
	width:min(90%,550px);
	transition:none;
	-webkit-transition:none;
	opacity:0;
	visibility:hidden;
	z-index:9999999;
}

.popup-custom-shadow.show{
	opacity:1;
	visibility:visible;
}

.popup-custom.show{
	transform:translate(-50%,-50%);
	-webkit-transform:translate(-50%,-50%);
	opacity:1;
	visibility:visible;
	transition:all .4s;
	-webkit-transition:all .4s;
}

.popup-custom .popup-container{
	background-color:#fff;
	padding:22px;
	width:min(90%,550px);
	box-sizing:border-box;
	position:relative;
}

.popup-custom .popup-container .closeButton{
	position: absolute;
    right: 0px;
    top: 0px;
    cursor: pointer;
    z-index: 1;
	transform:translate(10px,-10px);
	-webkit-transform:translate(10px,-10px);
}

.popup-custom .popup-container .closeButton img{width:100%; height:auto;}

.popup-custom .popup-content{
	box-shadow: 0 0 10px rgb(0, 0, 0, .1);
}