/* 清除内外边距 */
body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,
/* structural elements 结构元素 */
dl,dt,dd,ul,ol,li,
/* list elements 列表元素 */
pre,
/* text formatting elements 文本格式元素 */
fieldset,lengend,button,input,textarea,
/* form elements 表单元素 */
div,span,input,
/* */
th,td {
	/* table elements 表格元素 */
	margin: 0;
	padding: 0;
}

/* 设置默认字体 */
body,
button,
input,
select,
textarea {
	/* for ie */
	/*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/
	font: 12px/1 Tahoma, Helvetica, Arial, "\9ED1\4F53", sans-serif;
	/* 用 ascii 字符表示，使得在任何编码下都无问题 */
}

h1 {
	font-size: 18px;
	/* 18px / 12px = 1.5 */
}

h2 {
	font-size: 16px;
}

h3 {
	font-size: 14px;
}

h4,
h5,
h6 {
	font-size: 100%;
}

address,
cite,
dfn,
em,
var {
	font-style: normal;
}

/* 将斜体扶正 */
code,
kbd,
pre,
samp,
tt {
	font-family: "Courier New", Courier, monospace;
}

/* 统一等宽字体 */
small {
	font-size: 12px;
}

/* 小于 12px 的中文很难阅读，让 small 正常化 */

/* 重置列表元素 */
ul,
ol {
	list-style: none;
}

/* 重置文本格式元素 */
a {
	text-decoration: none;
	cursor: pointer;
}

a:hover {
	text-decoration: none;
}

abbr[title],
acronym[title] {
	/* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */
	border-bottom: 1px dotted;
	cursor: help;
}

q:before,
q:after {
	content: '';
}

/* 重置表单元素 */
legend {
	color: #000;
}

/* for ie6 */
fieldset,
img {
	border: none;
}

/* img 搭车：让链接里的 img 无边框 */
/* 注：optgroup 无法扶正 */
button,
input,
select,
textarea {
	font-size: 100%;
	/* 使得表单元素在 ie 下能继承字体大小 */
}

/* 重置表格元素 */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* 重置 hr */
hr {
	border: none;
	height: 1px;
}

@font-face {
	font-family: PingFang;
	src: url('../font/PingFang_Regular.ttf');
}

body {
	font-family: SimHei;
}

.container {
	display: flex;
	background-color: #F4F4F4;
	flex-direction: column;
}

.head {
	background: url(../img/head.jpg) no-repeat;
	height: 390px;
	background-size: 100% 100%;
}

.head2 {
	background: url(../img/head2.png) no-repeat;
	background-size: 100% 100%;
	height: 470px;
}

.head-nav {
	background-color: #FFFFFF;
	height: 80px;
}

.logo {
	display: inline-block;
	height: 80px;
	width: 220px;
	background: url(../img/logo.png) no-repeat center center;
}

.head-wrap {
	width: 1200px;
	margin: 0 auto;
}

.head-title {
	background: url(../img/head-transparent.png) no-repeat center center;
	width: 1200px;
	height: 390px;
	margin: 0 auto;
}

.head-title2 {
	background: url(../img/head-transparent2.png) no-repeat center center;
	width: 1200px;
	height: 200px;
	margin: 0 auto;
}

.head-title3 {
	background: url(../img/head-transparent2.png) no-repeat center center;
	width: 1200px;
	height: 200px;
	margin: 0 auto;
	margin-bottom: 160px;
}

.head-menu {
	float: right;
	display: flex;
	flex-direction: row;
}

.main {
	width: 1200px;
	margin: 0 auto;
	background-color: #ffffff;
	margin-top: 40px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.main-box {
	width: 33.33%;
	position: relative;
}

.main-name {
	font-size: 18px;
	line-height: 80px;
	position: relative;
	margin-left: 62px;
	font-weight: bold;
}

.main-name a {
	color: #333333;
}

.main-name:hover {
	color: #2270f2;
	cursor: pointer;
}

.main-name:hover a {
	color: #2270f2;
	cursor: pointer;
}

.main-name a:hover {
	color: #2270f2;
	cursor: pointer;
}

.main-name a:active {
	color: #333333;
}

.main-name:hover:after {
	content: '';
	position: absolute;
	width: 100px;
	height: 4px;
	background: linear-gradient(to right, #2270f2, transparent);
	bottom: 22px;
	left: 2px;
}

.main-box.brand {
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.main-box:before {
	content: '';
	width: 100%;
	border-bottom: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

.main-box.no-brand:before {
	height: 120px;
}

.main-box.brand:before {
	height: 400px;
}

.enter {
	color: #2270f2;
	font-size: 20px;
	position: absolute;
	bottom: 41px;
	left: 160px;
}

.brand-icon {
	height: 100px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand-text-bold {
	font-size: 20px;
	color: #333333;
	font-weight: bold;
}

.brand-text-grey {
	color: #999999;
	font-size: 16px;
}

.brand-text {
	text-align: center;
	line-height: 36px;
}

.brand-flex {
	position: relative;
	z-index: 1;
}

.b-nss {
	width: 88px;
	height: 35px;

	background: url(../img/brand.png) no-repeat -28px -83px;
	display: inline-block;
}

.b-gcs {
	width: 95px;
	height: 35px;

	background: url(../img/brand.png) no-repeat -166px -83px;
	display: inline-block;
}

.b-imw {
	width: 95px;
	height: 52px;

	background: url(../img/brand.png) no-repeat -314px -74px;
	display: inline-block;
}

.b-weschain {
	width: 191px;
	height: 34px;

	background: url(../img/brand.png) no-repeat -7px -187px;
	display: inline-block;
}

.b-notary {
	width: 97px;
	height: 97px;

	background: url(../img/brand.png) no-repeat -251px -148px;
	display: inline-block;
}

.main-box.brand:hover {
	background-color: #2270f2;
	cursor: default;
}

.main-box.brand:hover .brand-text-bold,
.main-box.brand:hover .brand-text-grey {
	color: #FFFFFF;
}

.main-box.brand:hover .enter {
	color: #FFFFFF;
}

.main-box.brand:hover .b-nss {
	background: url(../img/brand.png) no-repeat -28px -20px;
}

.main-box.brand:hover .b-gcs {
	background: url(../img/brand.png) no-repeat -166px -20px;
}

.main-box.brand:hover .b-imw {
	background: url(../img/brand.png) no-repeat -314px -11px;
}

.main-box.brand:hover .b-weschain {
	background: url(../img/brand.png) no-repeat -7px -292px;
}

.main-box.brand:hover .b-notary {
	background: url(../img/brand.png) no-repeat -251px -253px;
}

.main-box.brand:hover .brand-1 {
	display: none;
}

.main-box.brand .brand-2 {
	display: none;
	position: relative;
	z-index: 1;
}

.main-box.brand .brand-1 {
	position: relative;
	z-index: 1;
	font-size: 20px;
}

.main-box.brand:hover .brand-2 {
	display: block;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 20px;
	line-height: 36px;
}

.footer {
	text-align: center;
	margin-top: 40px;
	font-size: 16px;
	color: #666666;
	padding-bottom: 40px;
}

.footer a {
	color: #333333;
	vertical-align: middle;
	margin-top: 20px;
	display: inline-block;
	font-size: 14px;
}

.footer img {
	vertical-align: middle;
}


/* songchuang  */
.btn {
	background-color: #2270F2;
	min-width: 80px;
	height: 40px;
	border-radius: 2px;
	color: #ffffff;
	font-size: 14px;
	border: 0 none;
	outline: none;
	cursor: pointer;
}

.btn:active {
	opacity: 0.88;
}

.upload-box {
	background-color: rgba(255, 255, 255, 0.3);
	display: flex;
	flex-direction: row;
	width: 600px;
	height: 100px;
	margin: 0 auto;
	align-items: center;
	justify-content: center
}

.upload-button {
	height: 40px;
	width: 350px;
	line-height: 40px;
}

.but {
	height: 40px;
	width: 100%;
	padding: 4px 10px;
	position: relative;
}

.change {
	position: absolute;
	overflow: hidden;
	right: 0;
	top: 0;
	opacity: 0;
}

.but-word {
	padding-left: 5px;
	line-height: 22px;
}

.click {
	height: 40px;
	width: 80px;
	margin-left: 20px;
}

.head2-word {
	color: #FFFFFF;
	padding-bottom: 60px;
	padding-top: 20px;
	width: 600px;
	margin: 0 auto;
	font-size: 12px;
	line-height: 20px;
}

.wrap {
	padding-top: 30px;
	width: 1200px;
	margin: 0 auto;
	background-color: #ffffff;
	margin-top: 40px;
	flex-wrap: wrap;
	padding-bottom: 40px;
}

.wrap.mt {
	margin-top: -250px;
}

.subtitle {
	text-align: center;
}

.show-area {
	display: flex;
	flex-direction: row;
	width: 1100px;
	height: 360px;
	margin: 0 auto;
	padding-top: 50px;

}

.show-box1 {
	padding-left: 30px;
	padding-right: 20px;
}

.show-box2 {
	padding-left: 50px;
}

.show-img {
	border: 1px solid #C0BFC4;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

.st {
	font-size: 21px;
	font-weight: bold;
}

.show-va {
	width: 500px;
	height: 280px;
	background-color: #F5F6F7;
	border: 1px solid #DDDDDD;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
	border-radius: 2px;
	overflow: hidden;
}

.show-va img {
	width: 100%;
}

.show-word {
	padding-bottom: 20px;
}

.bottom {
	width: 1050px;
	height: 360px;
	margin: 0 auto;

}

.question {
	background-color: #F5F6F7;
	width: 1060px;
	height: 40px;
	line-height: 40px;
	margin-bottom: 10px;
	margin-top: 30px;
	border-left: 6px solid #0033ff;
	text-indent: 1em;
	font-size: 18px;
	font-weight: bold;
}

.answer {
	line-height: 24px;
	font-size: 16px;
	color: #666666;
}




/*      */
.show {
	width: 1200px;
	text-align: center;
}

.pass-img {}

.pass-text {
	font-size: 20px;
	font-weight: 550;
	padding-top: 10px;
	padding-bottom: 20px;
	font-weight: bold;
}

.noti {
	font-size: 15px;
	line-height: 20px;
	padding-bottom: 10px;
}

.in {
	color: #999999;
	padding-bottom: 30px;
}

.in-word {
	padding-left: 5px;
}

.bac {
	margin: 0 auto;
}

.table-a {
	padding-left: 290px;
	padding-bottom: 20px;
	padding-top: 10px;
}

.table-a table {
	border: 1px solid #EAEAEA;

}

.table-a table td {
	border: 1px solid #EAEAEA;
}

.table-a table tr td:first-child {
	background-color: #F7F7F7;
}

.td-word {
	font-size: 14px;
	color: #666666;
	font-weight: 500;
	line-height: 35px;
}

.tr-word {
	font-size: 14px;
	font-weight: 550;
}

.ta-wrap {
	display: flex;
	flex-direction: column;
}

.zi {
	font-size: 16px;
	font-weight: 550;
	padding-right: 450px;
}

.may {
	display: contents;
	width: 800px;
	height: 300px;
	margin: 0 auto;
}

.maybe {
	font-size: 15px;
	font-weight: 500;
	padding-bottom: 10px;
	padding-right: 180px;
}

.maybe-cont {
	color: #999999;
	padding-bottom: 50px;
	line-height: 20px;
	font-size: 14px;
}

.maybe-word {
	padding-left: 210px;
}

.maybe-cha {
	padding-left: 65px;
}

.im {
	color: #000000;
	font-weight: 550;
}




.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	display: inline-block;
}

.clearfix {
	display: block;
}

@media only screen and (max-width: 1200px) {
	.head {
		min-width: 960px;
	}

	.head-wrap {
		width: 960px;
		background-size: 100% auto;
	}

	.main {
		width: 960px;
	}

	.enter {
		left: 120px;
	}

	.head-title {
		width: 960px;
	}

	.head-nav {
		min-width: 960px;
	}

	.head2 {
		min-width: 960px;
	}

	.head-title2 {
		width: 960px;
	}

	.head-title3 {
		width: 960px;
	}

	.wrap1 {
		width: 960px;
		background-size: 100% auto;
	}
}
