@charset "utf-8";

/* CSS Document */
body,
html {
	margin: 0;
	padding: 0;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font: 12px/2 微软雅黑, Verdana, Arial, Helvetica, sans-serif;
	position: relative;
}

p {
	margin: 0;
	padding: 0;
}

ul,
li {
	list-style: none;
}

img {
	border: 0;
}

.c-b,
.clear {
	clear: both;
}

a {
	text-decoration: none;
	color: #404040;
}

.hide {
	display: none !important;
}

.pointer-none {
	pointer-events: none;
}

*::-webkit-scrollbar {
	/*滚动条整体样式*/
	width: 4px;
	/*高宽分别对应横竖滚动条的尺寸*/
	height: 4px;
}

*::-webkit-scrollbar-thumb {
	/*滚动条里面小方块*/
	border-radius: 5px;
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
	background: rgba(0, 0, 0, 0.1);
}

*::-webkit-scrollbar-track {
	/*滚动条里面轨道*/
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	background: rgba(0, 0, 0, 0.1);
}

.flex-center {
	display: flex;
	justify-content: center;
}

.flex-start {
	display: flex;
	justify-content: start;
}

.flex-between {
	display: flex;
	justify-content: space-between;
}

.flex-around {
	display: flex;
	justify-content: space-around;
}

.flex-wrap {
	display: flex;
	flex-wrap: wrap;
}

.flex-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.flex-column {
	display: flex;
	flex-direction: column;
}

/*主体*/
.lg-wrap {
	min-height: 100vh;
}

.lg-background {
	width: 100%;
	min-height: 100vh;
	padding: 15px;
	display: flex;
	justify-content: center;
	background: #f6fbff;
	transition: all ease .2s;
	overflow: auto;
}

.lg-container {
	max-width: 700px;
	width: 100%;
	position: relative;
}

.lg-form-banner {
	width: 100%;
	min-height: 50px;
	border-radius: 10px 10px 0 0;
	overflow: hidden;
}

	.lg-form-banner img {
		width: 100%;
	}

.lg-form-head {
	background: #fff;
	box-shadow: 0 3px 10px rgba(0 0 0/10%);
	padding: 15px;
	margin-bottom: 15px;
}

.lg-form-head-title {
	margin-bottom: 15px;
}

	.lg-form-head-title span {
		font-size: 20px;
		font-weight: bold;
	}

	.lg-form-head-title input {
		border: 0;
		outline: none;
		font-size: 18px;
		font-weight: bold;
	}

.lg-form-head-intro {
	font-size: 15px;
	color: #999;
	line-height: 1.8;
}

	.lg-form-head-intro textarea {
		border: 0;
		outline: none;
		font-size: 14px;
		color: #999;
		width: 100%;
	}

		.lg-form-head-title input:focus,
		.lg-form-head-intro textarea:focus {
			border: 1px solid #d2d2d2;
		}


/*状态提示*/
.state-success {
	padding: 50px 0;
}

	.state-success span {
		display: block;
		margin-bottom: 10px;
		text-align: center;
		font-size: 18px;
	}

		.state-success span.fa {
			font-size: 100px;
			color: #02aa45;
			margin-bottom: 20px;
		}

		.state-success span.name {
		}

			.state-success span.name font {
				font-weight: bold;
			}

		.state-success span.cg {
			font-weight: bold;
			color: #02aa45;
		}

		.state-success span.tip {
			color: #999;
			font-size: 14px;
		}

@media screen and (max-width:600px) {
	.lg-background {
		padding: 0;
	}

	.lg-form-banner {
		border-radius: 0;
	}
}

.float-container {
	position: fixed;
	top: 0;
	right: calc((100% - 700px)/2 - 50px);
	height: 100vh;
}

.float-contact {
	position: sticky;
	top: 45%;
	cursor: pointer;
}

	.float-contact .item {
		padding: 10px 0;
		background: #fff;
		border-radius: 3px;
		box-shadow: 0 3px 6px rgba(0 0 0/10%);
	}

		.float-contact .item span {
			display: block;
			text-align: center;
		}

			.float-contact .item span.fa {
				margin-bottom: 5px;
				font-size: 18px;
			}

			.float-contact .item span.text {
				width: 30px;
				padding: 0 5px;
				font-size: 14px;
				line-height: 1.5;
			}

	.float-contact .block {
		width: 160px;
		position: absolute;
		left: -160px;
		top: 0;
		display: none;
		justify-content: center;
		align-items: center;
	}

	.float-contact .block-bg {
		background: #fff;
		border-radius: 10px;
		box-shadow: 0 0px 3px rgba(0 0 0/10%);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.float-contact .block .text {
		width: 150px;
		padding: 10px;
		display: flex;
		align-items: center;
	}

		.float-contact .block .text span {
			font-size: 14px;
		}

			.float-contact .block .text span.fa {
				font-size: 20px;
				margin-right: 5px;
			}

	.float-contact .block .img {
		width: 140px;
		padding: 10px;
		padding-top: 0;
		text-align: center;
	}

		.float-contact .block .img img {
			width: 100%;
		}

	.float-contact:hover .block {
		display: flex;
	}
