/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 0. sassCore's style
 */

html {
	font-family: sans-serif;
	/* 1 */
	-ms-text-size-adjust: 100%;
	/* 2 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
	overflow-y: scroll;
	/* 0 */
	-webkit-overflow-scrolling: touch
		/* 0 */
}


/**
 * 1. Remove default margin
 * 0. sassCore's style.
 */

body {
	margin: 0;
	/* 1 */
	font-size: 12px;
	/* 0 */
	line-height: 2;
	/* 0 */
	color: #333;
	/* 0 */
	background-color: #fff
		/* 0 */
}


/* HTML5 display definitions
   ========================================================================== */


/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
	display: block;
}


/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 * 3. Correct `inline-block` display in IE 6/7.
 */

audio,
canvas,
progress,
video {
	display: inline-block;
	/* 1 */
	vertical-align: baseline;
	/* 2 */
	*display: inline;
	/* 3 */
	*zoom: 1
		/* 3 */
}


/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
	display: none;
	height: 0;
}


/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

[hidden],
template {
	display: none;
}


/* Links
   ========================================================================== */


/**
 * 1. Remove the gray background color from active links in IE 10.
 * 2. Improve readability when focused and also mouse hovered in all browsers.
 * 0. sassCore's style.
 */

a {
	background: transparent;
	/* 1 */
	/* 0 */
	text-decoration: none;
	color: #08c;
}

a:active,
a:hover {
	outline: 0
		/* 2 */
}

a:hover {
	color: #006699;
}


/* Text-level semantics
   ========================================================================== */


/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
	border-bottom: 1px dotted;
}


/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
	font-weight: bold;
}


/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
	font-style: italic;
}


/**
 * Address styling not present in IE 8/9.
 */

mark {
	background: #ff0;
	color: #000;
}


/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
	font-size: 80%;
}


/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}


/* Embedded content
   ========================================================================== */


/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improve image quality when scaled in IE 7.
 * 0. sassCore's style.
 */

img {
	border: 0;
	/* 1 */
	vertical-align: middle;
	/* 0 */
	-ms-interpolation-mode: bicubic
		/* 2 */
}


/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
	overflow: hidden;
}


/* Grouping content
   ========================================================================== */


/**
 * Address differences between Firefox and other browsers.
 */

hr {
	box-sizing: content-box;
	height: 0;
}


/**
 * 1. Contain overflow in all browsers.
 * 2. Improve readability of pre-formatted text in all browsers.
 */

pre {
	overflow: auto;
	/* 1 */
	white-space: pre;
	/* 2 */
	white-space: pre-wrap;
	/* 2 */
	word-wrap: break-word
		/* 2 */
}


/**
 * 1. Address odd `em`-unit font size rendering in all browsers.
 * 2. Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	/* 1 */
	_font-family: 'courier new', monospace;
	/* 1 */
	font-size: 1em
		/* 2 */
}


/* Forms
   ========================================================================== */


/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */


/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	/* 1 */
	font: inherit;
	/* 2 */
	margin: 0
		/* 3 */
}


/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
	overflow: visible;
}


/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
	text-transform: none;
}


/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	/* 2 */
	cursor: pointer;
	/* 3 */
	*overflow: visible
		/* 4 */
}


/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
	cursor: default;
}


/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

textarea:focus,
input:focus {
	outline: none;
}


/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
	line-height: normal;
}


/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
	*height: 13px;
	/* 3 */
	*width: 13px
		/* 3 */
}


/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}


/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	/* 2 */
	box-sizing: content-box;
}


/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="text"] {
	-webkit-appearance: none;
}


/**
 * Define consistent border, margin, and padding.
 */

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}


/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */

legend {
	border: 0;
	/* 1 */
	padding: 0;
	/* 2 */
	*margin-left: -7px
		/* 3 */
}


/**
 * 1. Remove default vertical scrollbar in IE 8/9/10/11.
 * 0. sassCore's style
 */

textarea {
	overflow: auto;
	/* 1 */
	resize: vertical
		/* 0 */
}


/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
	font-weight: bold;
}


/* Tables
   ========================================================================== */


/**
 * Remove most spacing between table cells.
 */

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}


/**
 * Address CSS quotes not supported in IE 6/7.
 */

q {
	quotes: none;
}

html,
button,
input,
select,
textarea {
	font-family: Arial, "Helvetica Neue", Helvetica, Tahoma, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
form,
blockquote {
	margin: 0;
}

ul,
ol,
li,
dl,
dd {
	margin: 0;
	padding: 0;
}

ul,
ol {
	list-style: none outside none;
}

h1,
h2,
h3 {
	line-height: 2;
	font-weight: normal;
}

h1 {
	font-size: 18px;
}

h2 {
	font-size: 15.6px;
}

h3 {
	font-size: 14.04px;
}

h4 {
	font-size: 12px;
}

h5,
h6 {
	font-size: 10.2px;
	text-transform: uppercase;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	color: #ccc;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	color: #ccc;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #ccc;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #ccc;
}

.clear {
	clear: both;
}

.f-cb {
	zoom: 1;
}

.f-cb:after {
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	overflow: hidden;
	content: ".";
}

.fl {
	float: left;
	display: inline;
}

.fr {
	float: right;
	display: inline;
}

.por {
	position: relative;
}

.poa {
	position: absolute;
}

.pof {
	position: fixed;
}

.poa-f,
nav .subnav li,
.index-wrap .ban li,
.insban .image,
.assemble-main .tab li .sign::before,
.news-main .list li>a {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.ovh {
	overflow: hidden;
}

.noselect {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.z1 {
	z-index: 1;
}

.z2 {
	z-index: 2;
}

.z3 {
	z-index: 3;
}

.dn {
	display: none;
}

.dib {
	display: inline-block;
}

.w-f {
	width: 100%;
}

.h-f {
	height: 100%;
}

.fwn {
	font-weight: normal;
}

.tac {
	text-align: center;
}

.t-f {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.t-c {
	-webkit-transition: color 0.5s;
	transition: color 0.5s;
}

.t-bg {
	-webkit-transition: background 0.5s;
	transition: background 0.5s;
}

.loader {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	font-size: 10px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	border-right: 1px solid rgba(0, 0, 0, 0.08);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	border-left: 1px solid rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	-webkit-animation: spinner 700ms infinite linear;
	animation: spinner 700ms infinite linear;
}

.loader.white {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	border-left: 1px solid rgba(255, 255, 255, 0.5);
}

@-webkit-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.citizen-main>.mw .box:first-child .detail::after,
.citizen-main>.mw .box:last-child .detail::before {
	content: "";
	height: 0;
	width: 0;
	overflow: hidden;
}

.m {
	display: none;
}

@media screen and (max-width: 1023px) {
	.pc {
		display: none !important;
	}

	.m {
		display: block !important;
	}
}

#newhead .pcwidth {
	align-items: center;
	max-width: 1620px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

#newhead .pcnav ul {
	display: flex;
}

#newhead .pcnav ul li {
	position: relative;
}

#newhead .pcnav ul li a {
	font-size: 16px;
	padding: 36px 28px;
	display: block;
	transition: all 0.3s;
	color: #333;
}

#newhead .pcnav ul li:hover>a,
#newhead .pcnav ul .cur>a {
	background: #0054a7;
	color: #fff
}

#newhead .pcnav ul li:hover .snav {
	opacity: 1;
	height: auto;
}

#newhead .pcnav ul li .snav {
	transition: all 0.5s;
	position: absolute;
	z-index: 3;
	width: 100%;
	background: #fff;
	opacity: 0;
	height: 0;
	overflow: auto;
}

#newhead .pcnav ul li .snav a {
	font-size: 14px;
	padding: 0;
	text-align: center;
	border-bottom: 2px solid #fff;
	padding: 8px 0;
	box-sizing: border-box;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#newhead .pcnav ul li .snav a:hover {
	border-bottom: 2px solid #0054a7;
}

#newhead form {
	display: flex;
	background: #f2f2f2;
	border-radius: 8px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

#newhead form input {
	width: 185px;
	height: 36px;
	padding: 0;
	padding-left: 15px;
	border: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	background: none;
	font-size: 12px;
	line-height: 36px;
	color: #999;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

#newhead form input[type='submit'] {
	width: 50px;
	padding: 0;
	border: 0;
	background: url(../image/bg_btn01.png) no-repeat center #0054a7;
	border-radius: 0 8px 8px 0;
}

#newhead form:hover {
	border-color: #fff;
}

#newhead form:hover input[type='text'] {
	border-right-color: #fff;
}

@media screen and (max-width: 1550px) {
	#newhead .logo img {
		width: 20vw;
	}

	#newhead .search {
		display: none;
	}
}

@media screen and (max-width: 1023px) {
	#newhead {
		display: none;
	}
}

header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 15;
	width: 678px;
	height: 88px;
	background-color: #364a59;
	-webkit-perspective: 5000px;
	perspective: 5000px;
	display: none;
}

header .navbtn {
	float: right;
	position: relative;
	width: 88px;
	height: 88px;
	background-color: #2e3c46;
	cursor: pointer;
}

header .navbtn .line {
	position: absolute;
	left: 29px;
	width: 30px;
	height: 3px;
	background-color: #fff;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

header .navbtn .line:nth-child(1) {
	top: 33px;
}

header .navbtn .line:nth-child(2) {
	top: 43px;
}

header .navbtn .line:nth-child(3) {
	top: 53px;
}

header .navbtn .line:nth-child(1) {
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
}

header .navbtn .line:nth-child(3) {
	-webkit-transform-origin: left bottom;
	-ms-transform-origin: left bottom;
	transform-origin: left bottom;
}

header .navbtn.cur .line:nth-child(1) {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

header .navbtn.cur .line:nth-child(2) {
	width: 0;
	opacity: 0;
}

header .navbtn.cur .line:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

header a.logo {
	display: inline-block;
	float: left;
	height: 88px;
}

header a.language {
	display: inline-block;
	float: right;
	width: 88px;
	height: 88px;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

header a.language img {
	opacity: .5;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

header a.language:hover img {
	opacity: 1;
}

nav {
	position: absolute;
	left: 0;
	top: 100%;
	width: 86%;
	padding: 19% 0 24.1% 14%;
	background-color: rgba(100, 162, 209, 0.95);
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: rotateY(-90deg);
	transform: rotateY(-90deg);
	opacity: 0;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

nav.show {
	-webkit-transform: rotateY(0);
	transform: rotateY(0);
	opacity: 1;
}

nav>ul {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

nav>ul.out {
	-webkit-transform: translateY(20%);
	-ms-transform: translateY(20%);
	transform: translateY(20%);
	opacity: 0;
}

nav>ul>li {
	position: relative;
	margin-bottom: 6%;
}

nav>ul>li::after {
	content: "";
	display: inline-block;
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	width: 102%;
	height: 100%;
	background-color: #aacf56;
	-webkit-transform: translate(5%, 15%);
	-ms-transform: translate(5%, 15%);
	transform: translate(5%, 15%);
	opacity: 0;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

nav>ul>li a {
	display: inline-block;
	position: relative;
	z-index: 2;
	padding-left: 20px;
	font-size: 20px;
	line-height: 50px;
	color: #fff;
	text-transform: uppercase;
}

@media screen and (max-width: 1500px) {
	header {
		width: auto;
		height: 66px;
	}

	header .navbtn {
		width: 66px;
		height: 66px;
	}

	header .navbtn .line {
		left: 18px;
	}

	header .navbtn .line:nth-child(1) {
		top: 22px;
	}

	header .navbtn .line:nth-child(2) {
		top: 32px;
	}

	header .navbtn .line:nth-child(3) {
		top: 42px;
	}

	header a.logo {
		height: 66px;
	}

	header form {
		margin: 15px;
		margin-bottom: 0;
	}

	header a.language {
		width: 44px;
		height: 44px;
	}

	nav {
		padding: 10% 0 5% 14%;
	}
}

@media screen and (max-width: 1023px) {
	header {
		display: block;
		position: relative;
		width: 100%;
		height: 44px;
	}

	header .navbtn {
		width: 44px;
		height: 44px;
	}

	header .navbtn .line {
		left: 10px;
		width: 24px;
	}

	header .navbtn .line:nth-child(1) {
		top: 14px;
	}

	header .navbtn .line:nth-child(2) {
		top: 22px;
	}

	header .navbtn .line:nth-child(3) {
		top: 30px;
	}

	header .navbtn.cur .line {
		left: 14px;
	}

	header a.logo {
		height: 44px;
	}

	header form {
		margin: 3px 0 0 15px;
	}
}

@media screen and (max-width: 374px) {
	header form {
		width: 145px;
	}

	header form input {
		width: 85px;
	}
}

@media screen and (max-height: 700px) {
	nav {
		padding: 5% 0 1% 14%;
	}
}

@media screen and (max-width: 1023px) {
	nav>ul>li a {
		font-size: 16px;
		line-height: 46px;
	}
}

nav>ul>li a::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 5px;
	bottom: 0;
	width: 155%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.2);
}

nav>ul>li a::after {
	content: "";
	display: inline-block;
	position: absolute;
	right: -55%;
	top: 50%;
	width: 8px;
	height: 17px;
	background: url(../image/bg_sign18.png) no-repeat center;
	margin-top: -9px;
}

nav>ul>li a:hover {
	color: #fff;
}

nav>ul>li:hover::after {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
	opacity: 1;
}

nav>ul>li:hover a {
	width: calc(100% - 20px);
}

nav>ul>li:hover a::before {
	opacity: 0;
}

nav>ul>li:hover a::after {
	right: 10%;
}

@media screen and (max-width: 1023px) {
	nav {
		overflow: hidden;
		width: 90%;
		padding: 12% 0;
		padding-left: 10%;
	}
}

nav .subnav li {
	z-index: 1;
	background-color: rgba(82, 102, 116, 0.95);
	-webkit-transform: translateY(15%);
	-ms-transform: translateY(15%);
	transform: translateY(15%);
	opacity: 0;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

nav .subnav li h2 {
	position: relative;
	padding-left: 50px;
	border-bottom: 2px solid #71828d;
	background: url(../image/bg_sign19.png) no-repeat right 38px center;
	font-size: 20px;
	line-height: 94px;
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

nav .subnav li h2:hover {
	background-position: right 55px center;
}

@media screen and (max-width: 1023px) {
	nav .subnav li h2 {
		font-size: 18px;
		line-height: 60px;
	}
}

nav .subnav li a {
	display: inline-block;
	width: calc(100% - 50px);
	padding-left: 50px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 16px;
	line-height: 56px;
	color: #ccc;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

@media screen and (max-width: 1023px) {
	nav .subnav li a {
		font-size: 14px;
		line-height: 46px;
	}
}

nav .subnav li a:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: #aacf56;
}

nav .subnav li.show {
	z-index: 2;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

footer {
	position: relative;
	z-index: 10;
	border-top: 1px solid #f0f0f0;
	background-color: #fff;
}

footer .list {
	width: 96.25%;
	padding: 3% 0 4%;
	margin: 0 auto;
}

@media screen and (max-width: 1023px) {
	footer .list {
		width: 90%;
	}
}

footer .list li {
	float: left;
	width: calc(16% - 1px);
	min-height: 212px;
	padding: 8px 2% 10px;
	border-right: 1px solid #eaeaea;
}

footer .list li:last-child {
	text-align: center;
	border-right: 0;
}

footer .list li a {
	display: inline-block;
	width: 100%;
	font-size: 14px;
	line-height: 2;
	color: #999;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

footer .list li a.tit {
	padding: 4px 0;
	margin-bottom: 12px;
	font-weight: bold;
	font-size: 16px;
	line-height: 1.5;
	color: #666;
}

footer .list li a:hover {
	color: #0054a7;
}

@media screen and (max-width: 1023px) {
	footer .list li {
		width: 100%;
		min-height: 0;
		padding: 0;
		border-right: 0;
	}

	footer .list li a {
		display: none;
		text-align: left !important;
	}

	footer .list li a.tit {
		border-bottom: 1px solid #eaeaea;
		display: block;
		line-height: 2;
		margin-bottom: 0;
	}
}

footer .detail {
	padding: 2% 0;
	background-color: #2e3c46;
}

footer .detail .main {
	width: 84%;
	margin: 0 auto;
}

@media screen and (max-width: 1023px) {
	footer .detail .main {
		width: 90%;
	}
}

footer .detail .main li {
	float: left;
	font-size: 12px;
	color: #ddd;
}

footer .detail .main li:nth-child(2) {
	float: right;
}

footer .detail .main li p.fz16 {
	margin-bottom: 4px;
	font-size: 16px;
	line-height: 2;
	color: #ccc;
}

footer .detail .main li span {
	padding: 6px 0 0 42px;
	color: #0054a7;
	opacity: .5;
}

footer .detail .main li .tel {
	padding: 10px 0 10px 42px;
	background: url(../image/bg_sign03.png) no-repeat left 26%;
	font-size: 24px;
	line-height: 1.5;
	color: #0054a7;
}

@media screen and (max-width: 1023px) {
	footer .detail .main li {
		width: 100%;
		min-height: 0;
		border-right: 0;
		border-bottom: 1px solid #444f57;
	}

	footer .detail .main li:nth-child(2),
	footer .detail .main li:nth-child(3) {
		width: 100%;
		padding-left: 0;
	}

	footer .detail .main li:nth-child(3) {
		border-bottom: 0;
	}

	footer .detail .main li p.tel {
		font-size: 20px;
		line-height: 2;
	}
}

footer img.backtop {
	position: absolute;
	right: 4.5%;
	top: 47%;
	border-radius: 50%;
	cursor: pointer;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

footer img.backtop:hover {
	box-shadow: 0 0 10px rgba(100, 162, 209, 0.8);
}

@media screen and (max-width: 1023px) {
	footer img.backtop {
		top: 1.5%;
	}
}

a.main-btn {
	display: inline-block;
	width: 108px;
	height: 32px;
	border: 1px solid #0054a7;
	background-color: #0054a7;
	font-size: 12px;
	line-height: 32px;
	color: #fff;
	text-align: center;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

a.main-btn:hover {
	background: none;
	color: #0054a7;
}

.index-wrap .ban {
	position: relative;
}

.index-wrap .ban li {
	display: none;
}

.index-wrap .ban li .tips {
	position: absolute;
	z-index: 2;
}

.index-wrap .ban li .tips .btns {
	margin-top: 10px;
}

.index-wrap .ban li .tips .btns a {
	display: inline-block;
	margin-right: 20px;
	font-weight: bold;
	font-size: 14px;
	line-height: 24px;
	color: #0054a7;
	text-transform: uppercase;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.index-wrap .ban li .tips .btns a:hover {
	color: #0054a7;
}

.index-wrap .ban li .tips .detail {
	font-size: 14px;
	line-height: 24px;
	color: rgba(153, 153, 153, 0.8);
}

.index-wrap .ban li:nth-child(1) .tips {
	left: 13.5%;
	top: 31%;
}

.index-wrap .ban li:nth-child(1) .tips>* {
	position: relative;
	opacity: 0;
	top: 5%;
}

.index-wrap .ban li:nth-child(1) .tips h2 {
	font: 80px/86px Arial;
	color: #333;
	text-transform: uppercase;
}

.index-wrap .ban li:nth-child(1) .tips h2 span {
	color: #0054a7;
}

.index-wrap .ban li:nth-child(1) .tips h3 {
	font: 48px/64px Arial;
	color: #fff;
	text-transform: uppercase;
}

@media screen and (max-width: 1679px) {
	.index-wrap .ban li:nth-child(1) .tips h2 {
		font-size: 60px;
		line-height: 1.2;
	}

	.index-wrap .ban li:nth-child(1) .tips h3 {
		font-size: 36px;
		line-height: 1.5;
	}
}

@media screen and (max-width: 1279px) {
	.index-wrap .ban li:nth-child(1) .tips h2 {
		font-size: 48px;
	}

	.index-wrap .ban li:nth-child(1) .tips h3 {
		font-size: 28px;
	}
}

.index-wrap .ban li:nth-child(1) .tips .detail {
	width: 64%;
	margin-top: 3%;
}

.index-wrap .ban li:nth-child(1) .tips .detail a {
	margin-top: 3%;
}

.index-wrap .ban li:nth-child(1) .signs {
	position: absolute;
	left: 62.34%;
	top: 27%;
	width: 11.45%;
	cursor: pointer;
}

.index-wrap .ban li:nth-child(1) .signs::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 97.3%;
	top: 97.4%;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #fff;
	opacity: .3;
	-webkit-animation: light 1s linear infinite;
	animation: light 1s linear infinite;
}

@-webkit-keyframes light {
	0% {
		opacity: .3;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: .3;
	}
}

@keyframes light {
	0% {
		opacity: .3;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: .3;
	}
}

.index-wrap .ban li:nth-child(1) .signs img {
	position: relative;
	z-index: 2;
	-webkit-transform-origin: right bottom;
	-ms-transform-origin: right bottom;
	transform-origin: right bottom;
	-webkit-transform: translate(15%, 15%) scale(0.2);
	-ms-transform: translate(15%, 15%) scale(0.2);
	transform: translate(15%, 15%) scale(0.2);
	opacity: 0;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.index-wrap .ban li:nth-child(1) .signs img.show {
	-webkit-transform: translate(0, 0) scale(1);
	-ms-transform: translate(0, 0) scale(1);
	transform: translate(0, 0) scale(1);
	opacity: 1;
}

.index-wrap .ban li:nth-child(1) .signs .box {
	position: absolute;
	right: 0;
	top: 102.5%;
	overflow: hidden;
	width: 0;
	height: 66px;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	-webkit-transition: all 1s;
	transition: all 1s;
}

.index-wrap .ban li:nth-child(1) .signs .box.show {
	width: 150px;
}

.index-wrap .ban li:nth-child(1) .signs .box .line {
	position: absolute;
	right: 0;
	top: 0;
	width: 150px;
	height: 42px;
	background: url(../image/bg_line01.png) no-repeat right center;
}

.index-wrap .ban li:nth-child(1) .signs .box p {
	position: absolute;
	left: 0;
	top: 42px;
	width: 100%;
}

.index-wrap .ban li:nth-child(3) .tips {
	left: 0;
	top: 31.4%;
	width: 100%;
	text-align: center;
}

.index-wrap .ban li:nth-child(3) .tips>* {
	position: relative;
	opacity: 0;
	top: 15%;
}

.index-wrap .ban li:nth-child(3) .tips h2 {
	font-weight: bold;
	font-size: 80px;
	line-height: 86px;
	color: #0054a7;
	text-transform: uppercase;
}

.index-wrap .ban li:nth-child(3) .tips h3 {
	font-size: 60px;
	line-height: 90px;
	color: #fff;
	text-transform: uppercase;
}

.index-wrap .ban li:nth-child(3) .tips h3 span {
	display: inline-block;
	font-size: 48px;
	line-height: 66px;
	color: #ccd0d4;
}

@media screen and (max-width: 1679px) {
	.index-wrap .ban li:nth-child(3) .tips {
		top: 35%;
	}

	.index-wrap .ban li:nth-child(3) .tips h2 {
		font-size: 40px;
		line-height: 1.2;
	}

	.index-wrap .ban li:nth-child(3) .tips h3 {
		font-size: 30px;
		line-height: 1.5;
	}

	.index-wrap .ban li:nth-child(3) .tips h3 span {
		font-size: 24px;
		line-height: 1.5;
	}
}

.index-wrap .ban li:nth-child(3) .detail,
.index-wrap .ban li:nth-child(3) .btns {
	width: 30%;
	margin: 0 auto;
}

@media screen and (max-width: 1439px) {

	.index-wrap .ban li:nth-child(3) .detail,
	.index-wrap .ban li:nth-child(3) .btns {
		width: 80%;
	}
}

.index-wrap .ban li:nth-child(3) .btns {
	margin-bottom: 2.5%;
}

.index-wrap .ban li:nth-child(2) .image {
	position: absolute;
	left: 50%;
	top: 29%;
	width: 1420px;
	height: 300px;
	margin-left: -710px;
}

.index-wrap .ban li:nth-child(2) .image img {
	position: absolute;
	top: 0;
	z-index: 1;
	height: 300px;
	-webkit-transition: all 0.8s;
	transition: all 0.8s;
}

.index-wrap .ban li:nth-child(2) .image img:nth-child(1) {
	left: 64px;
}

.index-wrap .ban li:nth-child(2) .image img:nth-child(2) {
	left: 121px;
}

.index-wrap .ban li:nth-child(2) .image img:nth-child(3) {
	left: 191px;
}

.index-wrap .ban li:nth-child(2) .image img:nth-child(4) {
	left: 393px;
}

.index-wrap .ban li:nth-child(2) .image img:nth-child(5) {
	left: 597px;
}

.index-wrap .ban li:nth-child(2) .image img:nth-child(6) {
	left: 754px;
}

.index-wrap .ban li:nth-child(2) .image img:nth-child(7) {
	left: 947px;
}

.index-wrap .ban li:nth-child(2) .image img:nth-child(8) {
	left: 735px;
}

.index-wrap .ban li:nth-child(2) .image img:nth-child(9) {
	left: 1116px;
}

.index-wrap .ban li:nth-child(2) .image img:nth-child(10) {
	left: 1296px;
}

.index-wrap .ban li:nth-child(2) .image img:nth-child(11) {
	left: 1330px;
}

.index-wrap .ban li:nth-child(2) .image img:nth-child(12) {
	left: 1405px;
}

.index-wrap .ban li:nth-child(2) .image img:nth-child(3),
.index-wrap .ban li:nth-child(2) .image img:nth-child(5),
.index-wrap .ban li:nth-child(2) .image img:nth-child(6),
.index-wrap .ban li:nth-child(2) .image img:nth-child(7),
.index-wrap .ban li:nth-child(2) .image img:nth-child(10) {
	z-index: 2;
}

.index-wrap .ban li:nth-child(2) .image img:nth-child(9) {
	z-index: 3;
}

.index-wrap .ban li:nth-child(2) .image img:nth-child(1),
.index-wrap .ban li:nth-child(2) .image img:nth-child(2) {
	z-index: 4;
}

.index-wrap .ban li:nth-child(2) .image.show img:nth-child(5) {
	-webkit-transform: translateX(285px);
	-ms-transform: translateX(285px);
	transform: translateX(285px);
}

.index-wrap .ban li:nth-child(2) .image.show img:nth-child(6) {
	-webkit-transform: translateX(120px);
	-ms-transform: translateX(120px);
	transform: translateX(120px);
}

.index-wrap .ban li:nth-child(2) .image.show img:nth-child(7) {
	-webkit-transform: translateX(-73px);
	-ms-transform: translateX(-73px);
	transform: translateX(-73px);
}

.index-wrap .ban li:nth-child(2) .image.show img:nth-child(9) {
	-webkit-transform: translateX(-259px);
	-ms-transform: translateX(-259px);
	transform: translateX(-259px);
}

.index-wrap .ban li:nth-child(2) .image.show img:nth-child(10) {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
	-webkit-transform: translateX(-298px);
	-ms-transform: translateX(-298px);
	transform: translateX(-298px);
}

.index-wrap .ban li:nth-child(2) .image.show img:nth-child(11) {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
	-webkit-transform: translateX(-346px);
	-ms-transform: translateX(-346px);
	transform: translateX(-346px);
}

.index-wrap .ban li:nth-child(2) .image.show img:nth-child(12) {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
	-webkit-transform: translateX(-392px);
	-ms-transform: translateX(-392px);
	transform: translateX(-392px);
}

.index-wrap .ban li:nth-child(2) .image.show img:nth-child(1) {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
	-webkit-transform: translateX(229px);
	-ms-transform: translateX(229px);
	transform: translateX(229px);
}

.index-wrap .ban li:nth-child(2) .image.show img:nth-child(2) {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
	-webkit-transform: translateX(216px);
	-ms-transform: translateX(216px);
	transform: translateX(216px);
}

.index-wrap .ban li:nth-child(2) .image.show img:nth-child(3) {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
	-webkit-transform: translateX(38px);
	-ms-transform: translateX(38px);
	transform: translateX(38px);
}

.index-wrap .ban li:nth-child(2) .image.show img:nth-child(4) {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
	-webkit-transform: translateX(-160px);
	-ms-transform: translateX(-160px);
	transform: translateX(-160px);
}

.index-wrap .ban li:nth-child(2) .image.show-se img:nth-child(1) {
	-webkit-transform: translateX(520px);
	-ms-transform: translateX(520px);
	transform: translateX(520px);
}

.index-wrap .ban li:nth-child(2) .image.show-se img:nth-child(2) {
	-webkit-transform: translateX(507px);
	-ms-transform: translateX(507px);
	transform: translateX(507px);
}

.index-wrap .ban li:nth-child(2) .image.show-se img:nth-child(3) {
	-webkit-transform: translateX(331px);
	-ms-transform: translateX(331px);
	transform: translateX(331px);
}

.index-wrap .ban li:nth-child(2) .image.show-se img:nth-child(4) {
	-webkit-transform: translateX(132px);
	-ms-transform: translateX(132px);
	transform: translateX(132px);
}

.index-wrap .ban li:nth-child(2) .image.show-se img:nth-child(5) {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

.index-wrap .ban li:nth-child(2) .image.show-se img:nth-child(6) {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
	-webkit-transform: translate(-44px, 15px);
	-ms-transform: translate(-44px, 15px);
	transform: translate(-44px, 15px);
}

.index-wrap .ban li:nth-child(2) .image.show-se img:nth-child(7) {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
	-webkit-transform: translateX(-238px);
	-ms-transform: translateX(-238px);
	transform: translateX(-238px);
}

.index-wrap .ban li:nth-child(2) .image.show-se img:nth-child(8) {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
	-webkit-transform: translateX(-150px);
	-ms-transform: translateX(-150px);
	transform: translateX(-150px);
}

.index-wrap .ban li:nth-child(2) .image.show-se img:nth-child(9) {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
	-webkit-transform: translateX(-430px);
	-ms-transform: translateX(-430px);
	transform: translateX(-430px);
}

.index-wrap .ban li:nth-child(2) .image.show-se img:nth-child(10) {
	-webkit-transform: translate(-467px, 20px);
	-ms-transform: translate(-467px, 20px);
	transform: translate(-467px, 20px);
}

.index-wrap .ban li:nth-child(2) .image.show-se img:nth-child(11) {
	-webkit-transform: translateX(-500px);
	-ms-transform: translateX(-500px);
	transform: translateX(-500px);
}

.index-wrap .ban li:nth-child(2) .image.show-se img:nth-child(12) {
	-webkit-transform: translateX(-558px);
	-ms-transform: translateX(-558px);
	transform: translateX(-558px);
}

@media screen and (max-width: 1850px) {
	.index-wrap .ban li:nth-child(2) .image {
		top: 19%;
	}
}

@media screen and (max-width: 1640px) {
	.index-wrap .ban li:nth-child(2) .image {
		top: 10%;
	}
}

.index-wrap .ban li:nth-child(2) .detail {
	position: absolute;
	left: 0;
	top: calc(29% + 310px);
	width: 100%;
	text-align: center;
}

.index-wrap .ban li:nth-child(2) .detail h2 {
	margin-top: 1.5%;
	font-size: 48px;
	line-height: 66px;
	color: #fff;
	text-transform: uppercase;
}

.index-wrap .ban li:nth-child(2) .detail h2 span {
	color: #0054a7;
}

.index-wrap .ban li:nth-child(2) .detail h2 span.g {
	color: #0054a7;
}

@media screen and (max-width: 1440px) {
	.index-wrap .ban li:nth-child(2) .detail h2 {
		font-size: 36px;
		line-height: 1.5;
	}
}

.index-wrap .ban li:nth-child(2) .detail h3 {
	font-size: 24px;
	line-height: 50px;
	color: #ccc;
	text-transform: uppercase;
}

@media screen and (max-width: 1440px) {
	.index-wrap .ban li:nth-child(2) .detail h3 {
		font-size: 20px;
		line-height: 1.5;
	}
}

@media screen and (max-width: 1850px) {
	.index-wrap .ban li:nth-child(2) .detail {
		top: calc(19% + 310px);
	}
}

@media screen and (max-width: 1640px) {
	.index-wrap .ban li:nth-child(2) .detail {
		top: calc(10% + 310px);
	}
}

@media screen and (max-width: 1279px) {
	.index-wrap .ban li:nth-child(2) .detail {
		top: calc(10% + 250px);
	}
}

.index-wrap .ban .scrollbtn {
	position: absolute;
	left: 50%;
	bottom: 65px;
	width: 26px;
	margin-left: -13px;
	opacity: 0;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.index-wrap .ban .scrollbtn.show {
	opacity: 1;
}

.index-wrap .ban .scrollbtn::after {
	content: "";
	display: inline-block;
	position: absolute;
	left: -1px;
	top: 40px;
	width: 28px;
	height: 31px;
	background: url(../image/bg_sign01.png) no-repeat center;
	-webkit-animation: Scroll 1.5s linear infinite;
	animation: Scroll 1.5s linear infinite;
}

@-webkit-keyframes Scroll {
	0% {
		-webkit-transform: translateY(-9px);
		transform: translateY(-9px);
		opacity: 1;
	}

	100% {
		-webkit-transform: translateY(31px);
		transform: translateY(31px);
		opacity: 0;
	}
}

@keyframes Scroll {
	0% {
		-webkit-transform: translateY(-9px);
		transform: translateY(-9px);
		opacity: 1;
	}

	100% {
		-webkit-transform: translateY(31px);
		transform: translateY(31px);
		opacity: 0;
	}
}

@media screen and (max-width: 1366px) {
	.index-wrap .ban .scrollbtn {
		display: none;
	}
}

.index-wrap .ban>.btns {
	position: absolute;
	left: 50%;
	bottom: 120px;
	height: 12px;
	margin-left: -30px;
	text-align: center;
	opacity: 0;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.index-wrap .ban>.btns.show {
	opacity: 1;
}

.index-wrap .ban>.btns span {
	display: inline-block;
	float: left;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #fff;
	margin: 0 4px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	cursor: pointer;
}

.index-wrap .ban>.btns span:hover,
.index-wrap .ban>.btns span.cur {
	background-color: #0054a7;
}

@media screen and (max-width: 1366px) {
	.index-wrap .ban>.btns {
		bottom: 20px;
	}
}

.index-wrap .index-tips {
	font-size: 14px;
	line-height: 24px;
	color: #999;
	text-align: center;
}

.index-wrap .index-tips h2 {
	font-size: 36px;
	line-height: 66px;
	color: #364a59;
	text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
	.index-wrap .index-tips h2 {
		font-size: 24px;
		line-height: 1.5;
	}
}

.index-wrap .index-tips a {
	margin-top: 3%;
}

.index-wrap .index-tips>* {
	position: relative;
	opacity: 0;
	top: 10%;
}

.index-wrap .pd {
	padding: 3.5% 0 2.8%;
}

@media screen and (max-width: 1023px) {
	.index-wrap .pd {
		padding: 6% 0;
	}
}

.index-wrap .pd .main {
	width: 1144px;
	margin: 0 auto;
}

.index-wrap .pd .main .tabs {
	margin: 4.4% 0 6.8%;
	text-align: center;
}

.index-wrap .pd .main .tabs a {
	display: inline-block;
	width: 144px;
	border: 1px solid #c7c6c6;
	border-radius: 20px;
	font-size: 14px;
	line-height: 38px;
	color: #364a59;
	margin: 0 12px 12px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.index-wrap .pd .main .tabs a:hover,
.index-wrap .pd .main .tabs a.cur {
	background-color: #0054a7;
	border-color: #0054a7;
	color: #fff;
}

.index-wrap .pd .main .box {
	margin-bottom: 4.4%;
}

.index-wrap .pd .main .box .qiehuan {
	display: none;
}

.index-wrap .pd .main .box .qiehuan.cur {
	display: block;
}

.index-wrap .pd .main .box .tips {
	float: left;
	width: 43.7%;
	padding-top: 4.5%;
	font-size: 14px;
	line-height: 24px;
	color: #666;
}

.index-wrap .pd .main .box .tips h2 {
	font-weight: bold;
	font-size: 28px;
	line-height: 2;
	color: #364a59;
	text-transform: uppercase;
}

.index-wrap .pd .main .box .tips h3 {
	font-weight: bold;
	font-size: 16px;
	line-height: 28px;
	color: #0054a7;
}

.index-wrap .pd .main .box .tips .in {
	margin: 8% 0 7.2%;
}

.index-wrap .pd .main .box .tips a.contact {
	display: inline-block;
	padding-right: 20px;
	background: url(../image/bg_sign02.png) no-repeat right 4px center;
	margin-left: 20px;
	font-size: 14px;
	line-height: 34px;
	color: #364a59;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.index-wrap .pd .main .box .tips a.contact:hover {
	color: #0054a7;
	background-position: right center;
}

.index-wrap .pd .main .box .qiehuan>img {
	float: right;
	width: 42.8%;
	margin-right: 3.6%;
}

@media screen and (max-width: 1023px) {

	.index-wrap .pd .main .box .tips,
	.index-wrap .pd .main .box .qiehuan>img {
		float: none;
		width: 100%;
	}

	.index-wrap .pd .main .box .qiehuan>img {
		margin: 5% 0;
	}

	.index-wrap .pd .main .tabs a {
		margin: 0 6px 12px;
	}
}

.index-wrap .pd .main .btns {
	height: 13px;
	text-align: center;
}

.index-wrap .pd .main .btns span {
	display: inline-block;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background-color: #ccc;
	margin: 0 6px;
	cursor: pointer;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.index-wrap .pd .main .btns span:hover,
.index-wrap .pd .main .btns span.cur {
	background-color: #d71618;
}

@media screen and (max-width: 1279px) {
	.index-wrap .pd .main {
		width: 90%;
	}

	.index-wrap .pd .main .tabs {
		margin-bottom: 4.4%;
	}
}

.index-wrap .solution {
	position: relative;
	overflow: hidden;
	padding: 5% 0 8.5%;
	background-color: #e2ebf2;
}

.index-wrap .solution .main {
	width: 1200px;
	margin: 0 auto;
}

@media screen and (max-width: 1279px) {
	.index-wrap .solution .main {
		width: 90%;
	}
}

.index-wrap .solution .index-tips {
	width: 48%;
	margin: 0 auto;
}

@media screen and (max-width: 1023px) {
	.index-wrap .solution .index-tips {
		width: 100%;
	}
}

.index-wrap .solution .scroll {
	position: relative;
	margin-top: 4.8%;
}

.index-wrap .solution .scroll .list {
	position: relative;
	overflow: hidden;
	max-height: 360px;
}

.index-wrap .solution .scroll .list li {
	float: left;
	width: 23.3%;
	background-color: #fff;
	margin-right: 2.26%;
}

.index-wrap .solution .scroll .list li img {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.index-wrap .solution .scroll .list li a {
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
}

.index-wrap .solution .scroll .list li a:hover img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}

.index-wrap .solution .scroll .list li p {
	padding: 6.9% 5%;
	font-size: 18px;
	line-height: 2;
	color: #364a59;
	text-align: center;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.index-wrap .solution .scroll .list li:hover {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	background-color: #0054a7;
}

.index-wrap .solution .scroll .list li:hover p {
	color: #fff;
}

@media screen and (max-width: 1023px) {
	.index-wrap .solution .scroll .list li {
		width: 48%;
		margin-right: 2%;
	}
}

.index-wrap .solution .scroll .btn {
	position: absolute;
	top: 50%;
	font-size: 12px;
	line-height: 2;
	color: #364a59;
	margin-top: -12px;
	opacity: .5;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	cursor: pointer;
}

.index-wrap .solution .scroll .btn.prev {
	left: -117px;
	padding-right: 32px;
	background: url(../image/prev01.png) no-repeat right center;
}

.index-wrap .solution .scroll .btn.next {
	right: -130px;
	padding-left: 32px;
	background: url(../image/next01.png) no-repeat left center;
	text-align: right;
}

.index-wrap .solution .scroll .btn:hover {
	opacity: 1;
}

.index-wrap .solution .scroll .btn:hover.prev {
	background-position: right 4px center;
}

.index-wrap .solution .scroll .btn:hover.next {
	background-position: 4px center;
}

@media screen and (max-width: 1279px) {
	.index-wrap .solution .scroll .btn.prev {
		left: -107px;
	}

	.index-wrap .solution .scroll .btn.next {
		right: -120px;
	}
}

.index-wrap .news {
	padding: 2.5% 0 5.2%;
}

.index-wrap .news .main {
	width: 1200px;
	margin: 0 auto;
}

@media screen and (max-width: 1279px) {
	.index-wrap .news .main {
		width: 90%;
	}
}

.index-wrap .news .index-tips {
	margin-bottom: 2.4%;
}

.index-wrap .news .index-tips a {
	margin-top: 1.5%;
}

.index-wrap .news .newsbox {
	float: left;
	width: 32.5%;
}

.index-wrap .news .newsbox a {
	display: block;
	position: relative;
	overflow: hidden;
}

.index-wrap .news .newsbox img {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.index-wrap .news .newsbox img:hover {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}

.index-wrap .news .newsbox:nth-child(2) {
	margin: 0 1.25%;
}

.index-wrap .news .newsbox .tips {
	padding: 8.2% 5% 10.25%;
}

.index-wrap .news .newsbox .tips.pb0 {
	padding-bottom: 0;
}

.index-wrap .news .newsbox .tips.pt6 {
	padding-top: 6%;
}

.index-wrap .news .newsbox .tips a {
	display: inline-block;
	font-size: 12px;
	line-height: 18px;
	color: #999;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.index-wrap .news .newsbox .tips a.tit {
	font-size: 16px;
	line-height: 24px;
	color: #333;
}

.index-wrap .news .newsbox .tips a:hover {
	color: #0054a7;
}

.index-wrap .news .newsbox .tips span {
	font-size: 16px;
	line-height: 24px;
	color: #0054a7;
}

.index-wrap .news .newsbox .tips>p {
	margin: 5px 0 10px;
}

.index-wrap .news .newsbox .textbox {
	padding: 7% 10.25% 7%;
	background-color: #0054a7;
	text-align: center;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.index-wrap .news .newsbox .textbox:hover {
	background-color: rgba(143, 184, 50, .8);
}

.index-wrap .news .newsbox .textbox.bgblue {
	background-color: #0054a7;
	margin-bottom: 4%;
}

.index-wrap .news .newsbox .textbox.bgblue:hover {
	background-color: rgba(100, 162, 209, .8);
}

.index-wrap .news .newsbox .textbox a {
	display: inline-block;
	font-size: 12px;
	line-height: 18px;
	color: #fff;
}

.index-wrap .news .newsbox .textbox a.tit {
	margin-bottom: 5%;
	font-size: 16px;
	line-height: 22px;
}

@media screen and (max-width: 1023px) {
	.index-wrap .news .newsbox {
		float: none;
		width: 100%;
		margin-bottom: 5%;
	}

	.index-wrap .news .newsbox:nth-child(2) {
		margin: 0;
		margin-bottom: 5%;
	}
}

.index-wrap .coo {
	padding: 4.2% 0 2.6%;
	background-color: #f8f8f8;
}

.index-wrap .coo .main {
	width: 1200px;
	margin: 0 auto;
}

@media screen and (max-width: 1279px) {
	.index-wrap .coo .main {
		width: 90%;
	}
}

.index-wrap .coo .scroll {
	margin-top: 5.25%;
}

.index-wrap .coo .scroll .list {
	position: relative;
	overflow: hidden;
}

.index-wrap .coo .scroll .list ul {
	float: left;
}

.index-wrap .coo .scroll .list li {
	float: left;
	width: calc(18.8% - 2px);
	border: 1px solid #dfdfdf;
	border-radius: 8px;
	margin: 0 1.5% 1.5% 0;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	cursor: pointer;
}

.index-wrap .coo .scroll .list li:nth-child(5n) {
	margin-right: 0;
}

.index-wrap .coo .scroll .list li img {
	border-radius: 8px;
}

.index-wrap .coo .scroll .list li:hover {
	border-color: #d3e2b3;
}

.index-wrap .coo .scroll .list li:hover img {
	filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/></filter></svg>#grayscale");
	-webkit-filter: grayscale(0%);
}

@media screen and (max-width: 1023px) {
	.index-wrap .coo .scroll .list li {
		width: calc(48% - 2px);
		margin-right: 0;
	}

	.index-wrap .coo .scroll .list li:nth-child(5n) {
		margin-right: 0;
	}

	.index-wrap .coo .scroll .list li:nth-child(2n) {
		float: right;
	}
}

.index-wrap .coo .scroll .btns {
	height: 13px;
	margin-top: 1%;
	text-align: center;
}

.index-wrap .coo .scroll .btns span {
	display: inline-block;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background-color: #ccc;
	margin: 0 .5%;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	cursor: pointer;
}

.index-wrap .coo .scroll .btns span:hover,
.index-wrap .coo .scroll .btns span.cur {
	background-color: #0054a7;
}

.insban {
	position: relative;
	overflow: hidden;
	background-color: #2e3c46;
}

.insban .image {
	z-index: 1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0;
	-webkit-transition: all 1.5s;
	transition: all 1.5s;
}

.insban .ovbox {
	position: relative;
	left: 50%;
	overflow: hidden;
	width: 0;
	padding: 9.8% 0;
	-webkit-transition: all 3s;
	transition: all 3s;
}

@media screen and (max-width: 1023px) {
	.insban .ovbox {
		-webkit-transition: all 0s;
		transition: all 0s;
		padding: 12% 0;
	}
}

.insban .tips {
	position: relative;
	z-index: 2;
	width: 554px;
	padding: 26px 42px;
	background-color: rgba(0, 84, 167, 0.6);
	margin: 0 auto;
	font-size: 40px;
	line-height: 48px;
	color: #fff;
	text-transform: uppercase;
}

.insban .tips span {
	display: block;
	font-size: 30px;
	line-height: 36px;
}

.insban .tips::before,
.insban .tips::after {
	content: "";
	display: inline-block;
	position: absolute;
	left: 50%;
	top: -1px;
	width: 1920px;
	height: 1px;
	background-color: #2e3c46;
	margin-left: -960px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.insban .tips::after {
	top: 100%;
}

.insban .tips .in::before,
.insban .tips .in::after {
	content: "";
	display: inline-block;
	position: absolute;
	left: -1px;
	top: 50%;
	width: 1px;
	height: 564px;
	background-color: #2e3c46;
	margin-top: -282px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.insban .tips .in::after {
	left: 100%;
}

@media screen and (max-width: 1023px) {
	.insban .tips {
		width: 78%;
		padding: 3.5% 5.5%;
		font-size: 22px;
		line-height: 1.5;
	}

	.insban .tips span {
		font-size: 18px;
		line-height: 1.2;
	}
}

.insban.show .image {
	opacity: 1;
}

.insban.show .ovbox {
	left: 0;
	width: 100%;
}

.insban.show .tips::before,
.insban.show .tips::after,
.insban.show .tips .in::before,
.insban.show .tips .in::after {
	background-color: rgba(255, 255, 255, 0.1);
}

.sidemenu {
	position: absolute;
	left: 0;
	top: 0;
	width: 288px;
	padding-top: 35px;
}

.sidemenu li {
	position: relative;
}

.sidemenu li::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 11px;
	height: 0;
	background-color: #0054a7;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.sidemenu li::after {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 53px;
	height: 1px;
	background-color: #969da2;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.sidemenu li a {
	display: inline-block;
	padding: 15px 0;
	padding-left: 38px;
	font-size: 16px;
	line-height: 1.5;
	color: #2e3c46;
}

.sidemenu li:hover::before,
.sidemenu li.cur::before {
	height: 47px;
}

.sidemenu li:hover::after,
.sidemenu li.cur::after {
	width: 103px;
	background-color: #0054a7;
}

.sidemenu li:hover a,
.sidemenu li.cur a {
	font-weight: bold;
	color: #0054a7;
}

.sidemenu.posf {
	position: fixed;
	left: 0;
	top: 88px;
	padding-top: 0;
}

@media screen and (max-width: 1776px) {
	.sidemenu {
		width: 15%;
	}
}

@media screen and (max-width: 1023px) {
	.sidemenu {
		position: relative;
		width: 100%;
		padding: 0 0 2.5%;
		margin-bottom: 5%;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	}

	.sidemenu li {
		float: left;
		width: 50%;
	}

	.sidemenu li a {
		padding: 8px 0 8px 20px;
	}

	.sidemenu li:hover::before,
	.sidemenu li.cur::before {
		height: 100%;
	}

	.sidemenu li:hover::after,
	.sidemenu li.cur::after {
		width: 55%;
	}
}

.mw {
	width: 1200px;
	margin: 0 auto;
}

@media screen and (max-width: 1279px) {
	.mw {
		width: 90%;
	}
}

@media screen and (max-width: 1776px) {
	.inscontent {
		float: right;
		width: 80%;
		margin-right: 2.5%;
	}
}

@media screen and (max-width: 1023px) {
	.inscontent {
		float: none;
		width: 90%;
		margin: 0 auto;
	}
}

.institle {
	position: relative;
	padding: 38px 0 34px;
	text-align: center;
}

.institle::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 0;
	z-index: 1;
	width: 1px;
	height: 0;
	background-color: #cbced1;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.institle::after {
	content: "";
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 75%;
	width: 16px;
	height: 16px;
	border: 1px solid #37444e;
	border-radius: 50%;
	margin-left: -9px;
	opacity: 0;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
}

.institle h2 {
	position: relative;
	z-index: 2;
	font-size: 30px;
	line-height: 2;
	color: #2e3c46;
	text-transform: uppercase;
	-webkit-transform: translateY(15%);
	-ms-transform: translateY(15%);
	transform: translateY(15%);
	opacity: 0;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.institle.show::before {
	height: 100%;
}

.institle.show::after {
	top: 70%;
	opacity: 1;
}

.institle.show h2 {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

@media screen and (max-width: 1023px) {
	.institle {
		padding: 3% 0 8%;
	}

	.institle h2 {
		font-size: 24px;
	}
}

.products-wrap .repair-main {
	padding-top: 4%;
}

.products-wrap .repair-main h2 {
	font-size: 60px;
	line-height: 72px;
	color: #364a59;
	text-transform: uppercase;
}

.products-wrap .repair-main .detail {
	margin: 2.5% 0 9%;
	font-size: 14px;
	line-height: 24px;
	color: #666;
}

.products-wrap .repair-main .detail .tips {
	float: left;
	width: 30%;
	min-height: 200px;
	padding-right: 2.75%;
	border-right: 1px solid #0054a7;
}

.products-wrap .repair-main .detail .tips p.fz18 {
	font-size: 18px;
	line-height: 24px;
	color: #0054a7;
}

.products-wrap .repair-main .detail .box {
	float: right;
	width: 62.5%;
}

.products-wrap .repair-main .detail .box img {
	display: block;
	margin-bottom: 8%;
}

@media screen and (max-width: 1023px) {
	.products-wrap .repair-main {
		padding-top: 8%;
	}

	.products-wrap .repair-main h2 {
		font-size: 30px;
		line-height: 1.5;
	}

	.products-wrap .repair-main .detail {
		margin: 10% 0;
	}

	.products-wrap .repair-main .detail .tips {
		float: none;
		width: 100%;
		min-height: 0;
		padding-bottom: 5%;
		border-right: 0;
		border-bottom: 1px solid #0054a7;
	}

	.products-wrap .repair-main .detail .box {
		float: none;
		width: 100%;
		margin-top: 5%;
	}
}

.products-wrap .repair-teams {
	padding: 2.5% 0 4%;
	background-color: #ebebeb;
}

.products-wrap .repair-teams h2 {
	margin-bottom: 20px;
	font-size: 48px;
	line-height: 2;
	color: #364a59;
	text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
	.products-wrap .repair-teams h2 {
		margin-bottom: 0;
		font-size: 24px;
	}
}

.products-wrap .repair-teams li {
	float: left;
	width: 49.8%;
	background-color: #0054a7;
	margin-bottom: 4px;
	font-size: 14px;
	line-height: 22px;
	color: #fff;
}

.products-wrap .repair-teams li:nth-child(2n) {
	float: right;
}

.products-wrap .repair-teams li .tips {
	float: left;
	width: 36.28%;
	padding: 5% 0 0 5%;
}

.products-wrap .repair-teams li .tips p {
	height: 132px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
}

.products-wrap .repair-teams li .tips p.fz20 {
	height: 48px;
	margin-bottom: 5%;
	font-size: 20px;
	line-height: 24px;
	color: #fff;
	-webkit-line-clamp: 2;
}

.products-wrap .repair-teams li img {
	float: right;
	width: 53.34%;
	border-left: 2px solid #ebebeb;
}

.products-wrap .repair-teams li:last-child {
	width: 100%;
}

.products-wrap .repair-teams li:last-child .tips {
	width: 42.5%;
	padding: 2.5% 0 0 2.5%;
}

.products-wrap .repair-teams li:last-child img {
	width: 49.8%;
	border-left-width: 4px;
}

.products-wrap .repair-teams li:nth-child(1) {
	background-color: #0054a7;
}

.products-wrap .repair-teams li:nth-child(2) {
	background-color: #4c8bbb;
}

.products-wrap .repair-teams li:nth-child(3) {
	background-color: #80a9c9;
}

.products-wrap .repair-teams li:nth-child(4) {
	background-color: #0054a7;
}

.products-wrap .repair-teams li:nth-child(5) {
	background-color: #5f6e79;
}

.products-wrap .repair-teams li:nth-child(6) {
	background-color: #5f6e79;
}

.products-wrap .repair-teams li:nth-child(7) {
	background-color: #364a59;
}

@media screen and (max-width: 1279px) {
	.products-wrap .repair-teams li {
		width: 100%;
	}

	.products-wrap .repair-teams li .tips {
		width: 42.5%;
		padding: 2.5% 0 0 2.5%;
	}

	.products-wrap .repair-teams li img {
		width: 49.8%;
		border-left-width: 4px;
	}
}

@media screen and (max-width: 1023px) {
	.products-wrap .repair-teams li {
		margin-bottom: 5%;
	}

	.products-wrap .repair-teams li .tips {
		float: none;
		width: 90%;
		padding: 5%;
	}

	.products-wrap .repair-teams li .tips p {
		height: auto;
	}

	.products-wrap .repair-teams li img {
		float: none;
		width: 100%;
		border: 0;
		border-top: 2px solid #ebebeb;
	}

	.products-wrap .repair-teams li:last-child {
		width: 100%;
	}

	.products-wrap .repair-teams li:last-child .tips {
		float: none;
		width: 90%;
		padding: 5%;
	}

	.products-wrap .repair-teams li:last-child .tips p {
		height: auto;
	}

	.products-wrap .repair-teams li:last-child img {
		float: none;
		width: 100%;
		border: 0;
		border-top: 2px solid #ebebeb;
	}
}

@media screen and (max-width: 1776px) {
	.products-wrap .repair-teams .mw {
		float: right;
		width: 80%;
		margin-right: 2.5%;
	}
}

@media screen and (max-width: 1023px) {
	.products-wrap .repair-teams .mw {
		float: none;
		width: 90%;
		margin: 0 auto;
	}
}

.products-wrap .spare-main {
	padding: 4.3% 0 2%;
}

.products-wrap .spare-main.pb {
	padding: 4.3% 0;
}

@media screen and (max-width: 1023px) {
	.products-wrap .spare-main {
		padding: 8% 0;
	}
}

.products-wrap .spare-main .tips {
	float: left;
	position: relative;
	width: 50%;
	padding-right: 3.75%;
	font-size: 14px;
	line-height: 24px;
	color: #999;
}

.products-wrap .spare-main .tips::after {
	content: "";
	display: inline-block;
	position: absolute;
	right: 0;
	top: 5px;
	width: 1px;
	height: 55%;
	background-color: #0054a7;
}

.products-wrap .spare-main .tips h2 {
	margin-bottom: 3%;
	font-size: 60px;
	line-height: 66px;
	color: #364a59;
	text-transform: uppercase;
}

.products-wrap .spare-main .tips h3 {
	margin-bottom: 3%;
	font-size: 24px;
	line-height: 2;
	color: #333;
	text-transform: uppercase;
}

.products-wrap .spare-main .tips p.fz16 {
	margin-top: 10%;
	font-size: 16px;
	line-height: 24px;
	color: #666;
}

.products-wrap .spare-main .tips p span {
	display: inline-block;
	margin-top: 2%;
	font-size: 16px;
	line-height: 24px;
	color: #0054a7;
}

@media screen and (max-width: 1023px) {
	.products-wrap .spare-main .tips {
		float: none;
		width: 100%;
		padding-right: 0;
		padding-bottom: 5%;
	}

	.products-wrap .spare-main .tips::after {
		display: none;
	}

	.products-wrap .spare-main .tips h2 {
		font-size: 30px;
		line-height: 1.5;
	}

	.products-wrap .spare-main .tips h3 {
		font-size: 18px;
		line-height: 1.5;
	}
}

.products-wrap .spare-main img {
	float: right;
	width: 41.8%;
}

@media screen and (max-width: 1023px) {
	.products-wrap .spare-main img {
		float: none;
		width: 100%;
	}
}

.products-wrap .spare-main .detail {
	padding-top: 2%;
	font-size: 14px;
	line-height: 24px;
	color: #999;
}

.products-wrap .spare-main .detail h2 {
	padding: 6px 0;
	font-size: 24px;
	line-height: 1.5;
	color: #0054a7;
}

@media screen and (max-width: 1023px) {
	.products-wrap .spare-main .detail h2 {
		font-size: 20px;
		line-height: 1.2;
	}
}

.products-wrap .spare-main .detail .box {
	float: left;
	width: 42%;
	margin: 1.5% 0 0 1.5%;
}

.products-wrap .spare-main .detail .box:last-child {
	float: right;
}

.products-wrap .spare-main .detail .box p {
	padding: 6px 0 6px 18px;
	background: url(../image/bg_sign06.png) no-repeat left top;
	font-size: 16px;
	line-height: 1.5;
	color: #a0c358;
}

@media screen and (max-width: 1023px) {
	.products-wrap .spare-main .detail .box {
		float: none;
		width: 100%;
		margin-left: 0;
	}
}

.products-wrap .spare-detail {
	padding: 3.5% 0 2.2%;
	background-color: #ebebeb;
}

.products-wrap .spare-detail img {
	float: left;
	width: 39.2%;
	margin-top: 1%;
}

.products-wrap .spare-detail .detail {
	float: right;
	width: 57.3%;
	font-size: 14px;
	line-height: 24px;
	color: #666;
}

.products-wrap .spare-detail .detail h2 {
	font-size: 24px;
	line-height: 2;
	color: #333;
	text-transform: uppercase;
}

.products-wrap .spare-detail .detail h3 {
	margin: 4.8% 0 0.2%;
	padding: 6px 0;
	font-size: 18px;
	line-height: 1.5;
	color: #333;
}

@media screen and (max-width: 1776px) {
	.products-wrap .spare-detail {
		padding: 5% 0;
	}

	.products-wrap .spare-detail .mw {
		float: right;
		width: 80%;
		margin-right: 2.5%;
	}
}

@media screen and (max-width: 1023px) {
	.products-wrap .spare-detail .mw {
		float: none;
		width: 90%;
		margin: 0 auto;
	}

	.products-wrap .spare-detail img {
		float: none;
		width: 100%;
		margin-bottom: 5%;
	}

	.products-wrap .spare-detail .detail {
		float: none;
		width: 100%;
	}
}

.products-wrap .exchange-main {
	padding: 7% 0 6.4%;
}

.products-wrap .exchange-main .detail {
	float: left;
	width: 62.5%;
	font-size: 14px;
	line-height: 24px;
	color: #999;
}

.products-wrap .exchange-main .detail h2 {
	margin-bottom: 7%;
	font-size: 60px;
	line-height: 1;
	color: #364a59;
	text-transform: uppercase;
}

.products-wrap .exchange-main .detail h3 {
	margin: 2.6% 0 8%;
	padding: 5px 0;
	font-size: 18px;
	line-height: 1.5;
	color: #333;
}

.products-wrap .exchange-main>img {
	float: right;
	width: 32.75%;
}

@media screen and (max-width: 1023px) {
	.products-wrap .exchange-main {
		padding: 10% 0;
	}

	.products-wrap .exchange-main .detail {
		float: none;
		width: 100%;
	}

	.products-wrap .exchange-main .detail h2 {
		font-size: 30px;
	}

	.products-wrap .exchange-main>img {
		float: none;
		width: 100%;
		margin-top: 5%;
	}
}

.products-wrap .inspection-main {
	padding-top: 6.5%;
	font-size: 14px;
	line-height: 24px;
	color: #999;
}

.products-wrap .inspection-main .detail-top {
	padding-bottom: 3.5%;
}

.products-wrap .inspection-main .detail-top .tips {
	float: left;
	width: 55%;
}

.products-wrap .inspection-main .detail-top .tips h2 {
	margin-bottom: 7%;
	font-size: 60px;
	line-height: 1.2;
	color: #364a59;
	text-transform: uppercase;
}

.products-wrap .inspection-main .detail-top .tips h3 {
	margin-bottom: 6px;
	font-size: 24px;
	line-height: 2;
	color: #364a59;
	text-transform: uppercase;
}

.products-wrap .inspection-main .detail-top .tips .in {
	width: 95%;
}

.products-wrap .inspection-main .detail-top .tips .in img {
	width: 100%;
}

@media screen and (max-width: 1023px) {
	.products-wrap .inspection-main .detail-top .tips {
		float: none;
		width: 100%;
	}

	.products-wrap .inspection-main .detail-top .tips h2 {
		margin-bottom: 3.5%;
		font-size: 30px;
	}

	.products-wrap .inspection-main .detail-top .tips h3 {
		font-size: 18px;
	}

	.products-wrap .inspection-main .detail-top .tips .in {
		width: 100%;
	}
}

.products-wrap .inspection-main .detail-top img {
	display: block;
	float: right;
	width: 37.25%;
	margin: 15px 5.8% 0 0;
}

@media screen and (max-width: 1023px) {
	.products-wrap .inspection-main .detail-top img {
		float: none;
		width: 100%;
		margin-right: 0;
	}
}

.products-wrap .inspection-main .images {
	padding: 2% 3% 2.75%;
	border: 1px solid #e5e5e5;
	background-color: #f8f8f8;
	margin-bottom: 2.5%;
}

.products-wrap .inspection-main .images h3 {
	margin-bottom: 14px;
	font-size: 18px;
	line-height: 2;
	color: #666;
}

.products-wrap .inspection-main .images li {
	float: left;
	width: 29.4%;
}

.products-wrap .inspection-main .images li:nth-child(3n-1) {
	margin: 0 5.9%;
}

@media screen and (max-width: 1023px) {
	.products-wrap .inspection-main .images {
		margin-bottom: 5%;
	}

	.products-wrap .inspection-main .images h3 {
		margin-bottom: 8px;
		font-size: 16px;
	}

	.products-wrap .inspection-main .images li {
		width: 48%;
		margin-bottom: 5%;
	}

	.products-wrap .inspection-main .images li:nth-child(3n-1) {
		margin: 0;
		margin-bottom: 5%;
	}

	.products-wrap .inspection-main .images li:nth-child(2n) {
		float: right;
	}
}

.products-wrap .inspection-main .detail {
	font-size: 14px;
	line-height: 24px;
	color: #999;
}

.products-wrap .inspection-main .detail h3 {
	margin-bottom: 8px;
	font-size: 18px;
	line-height: 2;
	color: #666;
}

.products-wrap .inspection-main .detail img {
	max-width: 100%;
}

.products-wrap .parts-main {
	padding: 7% 0;
}

.products-wrap .parts-main .tips {
	position: relative;
	float: left;
	width: 48%;
	padding-right: 3%;
	font-size: 14px;
	line-height: 24px;
	color: #999;
}

.products-wrap .parts-main .tips::after {
	content: "";
	display: inline-block;
	position: absolute;
	right: 0;
	top: 13%;
	width: 1px;
	height: 28%;
	background-color: #0054a7;
}

.products-wrap .parts-main .tips h2 {
	margin-bottom: 6%;
	font-size: 60px;
	line-height: 1;
	color: #364a59;
	text-transform: uppercase;
}

.products-wrap .parts-main .tips ul {
	margin-top: 8%;
}

.products-wrap .parts-main .tips ul li {
	padding-bottom: 2%;
	border-bottom: 1px solid #ebebeb;
	margin-bottom: 2%;
}

.products-wrap .parts-main .tips ul li:last-child {
	border-bottom: 0;
}

.products-wrap .parts-main .tips ul li h3 {
	margin-bottom: 1%;
	font-size: 18px;
	line-height: 2;
	color: #333;
}

.products-wrap .parts-main>img {
	float: right;
	width: 37%;
	margin: 7.2% 5% 0 0;
}

@media screen and (max-width: 1023px) {
	.products-wrap .parts-main {
		padding: 10% 0;
	}

	.products-wrap .parts-main .tips {
		float: none;
		width: 100%;
		padding-right: 0;
	}

	.products-wrap .parts-main .tips::after {
		display: none;
	}

	.products-wrap .parts-main .tips h2 {
		font-size: 30px;
	}

	.products-wrap .parts-main .tips ul li:last-child {
		border-bottom: 1px solid #ebebeb;
	}

	.products-wrap .parts-main>img {
		display: block;
		float: none;
		width: 100%;
		margin-right: 0;
	}
}

.solution-wrap .part1 {
	padding: 3.6% 0;
}

.solution-wrap .part1 h2 {
	margin-bottom: 7%;
	font-size: 24px;
	line-height: 2;
	color: #364a59;
	text-align: center;
}

.solution-wrap .part1 .scroll {
	position: relative;
	overflow: hidden;
	height: 235px;
}

.solution-wrap .part1 .scroll .btn {
	float: left;
	box-sizing: border-box;
	width: 116px;
	height: 24px;
	margin-top: 102px;
	font-size: 12px;
	line-height: 2;
	color: #364a59;
	cursor: pointer;
	opacity: .5;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.solution-wrap .part1 .scroll .btn.prev {
	padding-right: 31px;
	background: url(../image/prev01.png) no-repeat right center;
	text-align: right;
}

.solution-wrap .part1 .scroll .btn.next {
	padding-left: 31px;
	background: url(../image/next01.png) no-repeat left center;
}

.solution-wrap .part1 .scroll .btn:hover {
	opacity: .9;
}

.solution-wrap .part1 .scroll .list {
	float: left;
	position: relative;
	overflow: hidden;
	width: 913px;
	height: 235px;
	margin: 0 27.5px;
}

.solution-wrap .part1 .scroll .list li {
	float: left;
	width: 133px;
	height: 66px;
	padding: 33.5px 0;
	border: 1px solid #e5e5e5;
	border-radius: 50%;
	background-color: #e8f1f8;
	margin: 50px 15px;
	font-size: 40px;
	line-height: 44px;
	color: #364a59;
	text-align: center;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	cursor: pointer;
}

.solution-wrap .part1 .scroll .list li span {
	display: block;
	font-size: 14px;
	line-height: 22px;
	color: #364a59;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.solution-wrap .part1 .scroll .list li.cur {
	width: 233px;
	height: 128px;
	padding: 68px 0 37px;
	border-color: #0054a7;
	background: #0054a7 url(../image/bg_sign07.png) no-repeat center;
	margin: 0 9px;
	font-size: 72px;
	line-height: 84px;
	color: #fff;
}

.solution-wrap .part1 .scroll .list li.cur span {
	font-size: 18px;
	line-height: 44px;
	color: #fff;
}

@media screen and (max-width: 1279px) {
	.solution-wrap .part1 .scroll {
		width: 870px;
		margin: 0 auto;
	}

	.solution-wrap .part1 .scroll .list {
		width: 583px;
	}
}

@media screen and (max-width: 1023px) {
	.solution-wrap .part1 {
		padding: 10% 0;
	}

	.solution-wrap .part1 .scroll {
		width: 100%;
	}

	.solution-wrap .part1 .scroll .btn.prev {
		position: absolute;
		left: 0;
		top: 0;
		margin-left: -98px;
	}

	.solution-wrap .part1 .scroll .btn.next {
		position: absolute;
		right: 0;
		top: 0;
		margin-right: -98px;
	}

	.solution-wrap .part1 .scroll .list {
		float: none;
		width: 253px;
		margin: 0 auto;
	}

	.solution-wrap .part1 h2 {
		line-height: 1.5;
	}
}

.solution-wrap .part2 {
	padding: 2.7% 0 3.6%;
	background-color: #e8f1f8;
}

.solution-wrap .part2 .tips {
	margin-bottom: 4%;
	font-size: 14px;
	line-height: 24px;
	color: #999;
	text-align: center;
}

.solution-wrap .part2 .tips h2 {
	margin-bottom: 6px;
	font-size: 24px;
	line-height: 2;
	color: #364a59;
}

.solution-wrap .part2 .tips h3 {
	font-size: 18px;
	line-height: 30px;
	color: #0054a7;
}

@media screen and (max-width: 1023px) {
	.solution-wrap .part2 .tips h2 {
		font-size: 18px;
		line-height: 1.5;
	}
}

.solution-wrap .part2 .tabs {
	padding-bottom: 15px;
	border-bottom: 1px solid #c3cdd4;
}

.solution-wrap .part2 .tabs span {
	float: left;
	display: inline-block;
	width: 16.8%;
	margin: 0 4% 25px 0;
	background-color: #fff;
	font-size: 18px;
	line-height: 60px;
	color: #2e3c46;
	text-align: center;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	cursor: pointer;
}

.solution-wrap .part2 .tabs span:nth-child(5n) {
	margin-right: 0;
}

.solution-wrap .part2 .tabs span:hover,
.solution-wrap .part2 .tabs span.cur {
	background-color: #0054a7;
	color: #fff;
}

@media screen and (max-width: 1023px) {
	.solution-wrap .part2 .tabs span {
		width: 30%;
		margin: 0 5% 15px 0;
		line-height: 2.5;
	}

	.solution-wrap .part2 .tabs span:nth-child(5n) {
		margin-right: 5%;
	}

	.solution-wrap .part2 .tabs span:nth-child(3n) {
		margin-right: 0;
	}
}

.solution-wrap .part2 .box {
	padding: 13px 1.5% 23px;
	border-bottom: 1px solid #c3cdd4;
}

.solution-wrap .part2 .box h3 {
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 2;
	color: #0054a7;
}

.solution-wrap .part2 .box .in {
	text-align: center;
}

.solution-wrap .part2 .box .in span {
	display: inline-block;
	width: 144px;
	border: 1px solid #bac1c6;
	border-radius: 20px;
	margin: 0 13px 13px;
	font-size: 14px;
	line-height: 38px;
	color: #364a59;
	cursor: pointer;
	position: relative;
	opacity: 0;
	left: 5%;
}

.solution-wrap .part2 .box .in span:hover,
.solution-wrap .part2 .box .in span.cur {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	border-color: #0054a7;
	background-color: #0054a7;
	color: #fff;
}

@media screen and (max-width: 1023px) {
	.solution-wrap .part2 .box .in span {
		width: calc(40% - 2px);
		margin: 0 4% 10px;
	}
}

.solution-wrap .part2 .btn {
	margin-top: 4%;
	text-align: center;
}

@media screen and (max-width: 1023px) {
	.solution-wrap .part2 .btn {
		margin-top: 8%;
	}
}

.solution-wrap .part2 .btn a {
	display: inline-block;
	width: 233px;
	border: 1px solid #0054a7;
	background-color: #0054a7;
	font-size: 16px;
	line-height: 44px;
	color: #fff;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.solution-wrap .part2 .btn a:hover {
	background: none;
	color: #0054a7;
}

@media screen and (max-width: 1023px) {
	.solution-wrap .part2 {
		padding: 8% 0;
	}
}

.solution-wrap .info-main {
	padding: 20px 0 2.6%;
}

.solution-wrap .info-main h3 {
	font-size: 24px;
	line-height: 2;
	color: #364a59;
	text-align: center;
}

@media screen and (max-width: 1023px) {
	.solution-wrap .info-main h3 {
		line-height: 1.2;
	}
}

.solution-wrap .info-main .tips {
	padding: 16px 0;
	border-top: 1px solid #e0e2e3;
	border-bottom: 1px solid #e0e2e3;
	margin: 14px 0 28px;
	font-size: 14px;
	line-height: 24px;
	color: #999;
	text-align: center;
}

.solution-wrap .info-main .tips p.fz18 {
	font-size: 18px;
	line-height: 24px;
	color: #0054a7;
}

@media screen and (max-width: 1023px) {
	.solution-wrap .info-main .tips p.fz18 {
		margin-bottom: 2%;
	}
}

.solution-wrap .info-main .tips span {
	color: #2e3c46;
}

@media screen and (max-width: 1023px) {
	.solution-wrap .info-main .tips {
		padding: 5px 0;
	}
}

.solution-wrap .info-main .list {
	padding-bottom: 4%;
	border-bottom: 1px solid #e0e2e3;
}

.solution-wrap .info-main .list li {
	margin-bottom: 10px;
}

.solution-wrap .info-main .list li a {
	position: relative;
	display: inline-block;
	width: calc(95% - 2px);
	padding: 0 2.5%;
	border: 1px solid #e5e5e5;
	border-radius: 30px;
	background-color: #f7f7f7;
	font-size: 18px;
	line-height: 58px;
	color: #364a59;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.solution-wrap .info-main .list li a::after {
	content: "";
	display: inline-block;
	position: absolute;
	right: 2.5%;
	top: 50%;
	width: 20px;
	height: 12px;
	margin-top: -6px;
	background: url(../image/bg_sign08.png) no-repeat center top;
}

.solution-wrap .info-main .list li a:hover {
	background-color: #0054a7;
	color: #fff;
}

.solution-wrap .info-main .list li a:hover::after {
	background-position: center bottom;
}

@media screen and (max-width: 1023px) {
	.solution-wrap .info-main .list li a {
		font-size: 14px;
		line-height: 36px;
	}
}

.solution-wrap .info-main .list a.btn {
	display: block;
	margin: 4% auto 0;
	width: 233px;
	border: 1px solid #0054a7;
	background-color: #0054a7;
	font-size: 16px;
	line-height: 40px;
	color: #fff;
	text-align: center;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.solution-wrap .info-main .list a.btn:hover {
	background: none;
	color: #0054a7;
}

@media screen and (max-width: 1023px) {
	.solution-wrap .info-main .list a.btn {
		margin-top: 8%;
		width: 108px;
		line-height: 2;
	}
}

.solution-wrap .info-main .rec-list {
	padding-bottom: 4%;
}

.solution-wrap .info-main .rec-list h2 {
	padding-left: 46px;
	background: url(../image/bg_sign09.png) no-repeat left center;
	font-size: 18px;
	line-height: 58px;
	color: #333;
	text-transform: uppercase;
}

.solution-wrap .info-main .rec-list .scroll {
	padding: 4% 1.5% 1.5%;
	border-top: 1px solid #e0e2e3;
	border-bottom: 1px solid #e0e2e3;
	background-color: #f4f5f6;
}

@media screen and (max-width: 1023px) {
	.solution-wrap .info-main .rec-list .scroll {
		padding: 5% 2.5%;
	}
}

.solution-wrap .info-main .rec-list .scroll .in {
	position: relative;
	overflow: hidden;
}

.solution-wrap .info-main .rec-list .scroll .in li {
	float: left;
	width: 22.75%;
	margin: 0 1.125%;
}

.solution-wrap .info-main .rec-list .scroll .in li a {
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
}

.solution-wrap .info-main .rec-list .scroll .in li img {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.solution-wrap .info-main .rec-list .scroll .in li a:hover img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}

.solution-wrap .info-main .rec-list .scroll .in li p {
	height: 48px;
	margin: 13px 0 5px;
	font-size: 16px;
	line-height: 24px;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.solution-wrap .info-main .rec-list .scroll .in li span {
	font-size: 14px;
	line-height: 2;
	color: #0054a7;
}

.solution-wrap .info-main .rec-list .scroll .in li:hover p {
	color: #0054a7;
}

@media screen and (max-width: 1279px) {
	.solution-wrap .info-main .rec-list .scroll .in li {
		width: 30.33%;
		margin: 0 1.5%;
	}
}

@media screen and (max-width: 1023px) {
	.solution-wrap .info-main .rec-list .scroll .in li {
		width: 96%;
		margin: 0 2%;
	}
}

.solution-wrap .info-main .rec-list .scroll .btns {
	height: 12px;
	margin-top: 2.5%;
	text-align: center;
}

.solution-wrap .info-main .rec-list .scroll .btns span {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #c4c5c5;
	margin: 0 4px;
	cursor: pointer;
}

.solution-wrap .info-main .rec-list .scroll .btns span:hover,
.solution-wrap .info-main .rec-list .scroll .btns span.cur {
	background-color: #78a6cc;
}

.reverse-main {
	padding: 7% 0;
}

.reverse-main img {
	max-width: 100%;
}

.reverse-main h2 {
	font-size: 60px;
	line-height: 1.2;
	color: #364a59;
	text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
	.reverse-main h2 {
		font-size: 30px;
	}
}

.reverse-main .detail {
	position: relative;
	margin: 7% 0 3.5%;
	padding-left: 2.5%;
	font-size: 14px;
	line-height: 24px;
	color: #999;
}

.reverse-main .detail::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 5px;
	width: 1px;
	height: 90px;
	background-color: #0054a7;
}

@media screen and (max-width: 1023px) {
	.reverse-main .detail {
		padding-left: 0;
	}

	.reverse-main .detail::before {
		display: none;
	}
}

.design-main,
.assemble-main,
.loading-main,
.analysis-main {
	padding: 6.5% 0 5%;
}

.design-main .top,
.assemble-main .top,
.loading-main .top,
.analysis-main .top {
	padding-bottom: 2.5%;
	border-bottom: 2px solid #e0e0e0;
}

.design-main .top h2,
.assemble-main .top h2,
.loading-main .top h2,
.analysis-main .top h2 {
	float: left;
	width: 266px;
	font-size: 60px;
	line-height: 1.2;
	color: #364a59;
	text-transform: uppercase;
}

.design-main .top h2 span,
.assemble-main .top h2 span,
.loading-main .top h2 span,
.analysis-main .top h2 span {
	display: inline-block;
	float: left;
	margin-top: 12px;
	font-size: 18px;
	line-height: 2;
	color: #0054a7;
	text-transform: none;
}

.design-main .top .tips,
.assemble-main .top .tips,
.loading-main .top .tips,
.analysis-main .top .tips {
	float: right;
	box-sizing: border-box;
	position: relative;
	width: calc(100% - 266px);
	padding: 10px 0 0 6%;
	font-size: 14px;
	line-height: 24px;
	color: #999;
}

.design-main .top .tips::before,
.assemble-main .top .tips::before,
.loading-main .top .tips::before,
.analysis-main .top .tips::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 15px;
	width: 1px;
	height: 88px;
	background-color: #0054a7;
}

@media screen and (max-width: 1023px) {

	.design-main .top,
	.assemble-main .top,
	.loading-main .top,
	.analysis-main .top {
		padding-bottom: 5%;
	}

	.design-main .top h2,
	.assemble-main .top h2,
	.loading-main .top h2,
	.analysis-main .top h2 {
		float: none;
		width: 100%;
		font-size: 30px;
	}

	.design-main .top h2 span,
	.assemble-main .top h2 span,
	.loading-main .top h2 span,
	.analysis-main .top h2 span {
		margin-top: 0;
		font-size: 14px;
		line-height: 1.5;
	}

	.design-main .top .tips,
	.assemble-main .top .tips,
	.loading-main .top .tips,
	.analysis-main .top .tips {
		float: none;
		width: 100%;
		padding-left: 0;
	}

	.design-main .top .tips::before,
	.assemble-main .top .tips::before,
	.loading-main .top .tips::before,
	.analysis-main .top .tips::before {
		display: none;
	}
}

.design-main .list,
.assemble-main .list,
.loading-main .list,
.analysis-main .list {
	padding: 2% 0 4.5%;
	border-bottom: 1px solid #e1e1e1;
}

.design-main .list li,
.assemble-main .list li,
.loading-main .list li,
.analysis-main .list li {
	float: left;
	box-sizing: border-box;
	width: calc(25% - 1px);
	padding: 0 1.6%;
	border-right: 1px solid #e0e0e0;
}

.design-main .list li:last-child,
.assemble-main .list li:last-child,
.loading-main .list li:last-child,
.analysis-main .list li:last-child {
	border-right: 0;
}

.design-main .list li .box,
.assemble-main .list li .box,
.loading-main .list li .box,
.analysis-main .list li .box {
	font-size: 14px;
	line-height: 24px;
	color: #999;
}

.design-main .list li .box h3,
.assemble-main .list li .box h3,
.loading-main .list li .box h3,
.analysis-main .list li .box h3 {
	margin-bottom: 12px;
	font-size: 20px;
	line-height: 30px;
	color: #333;
}

.design-main .list li span,
.assemble-main .list li span,
.loading-main .list li span,
.analysis-main .list li span {
	display: inline-block;
	margin-top: 25px;
	font-size: 16px;
	line-height: 30px;
	color: #0054a7;
}

.design-main .list li p.c,
.assemble-main .list li p.c,
.loading-main .list li p.c,
.analysis-main .list li p.c {
	color: #0054a7;
}

.design-main .list li img,
.assemble-main .list li img,
.loading-main .list li img,
.analysis-main .list li img {
	display: block;
	width: calc(100% - 2px);
	border: 1px solid #e5e5e5;
	margin-top: 10%;
}

@media screen and (max-width: 1023px) {

	.design-main .list,
	.assemble-main .list,
	.loading-main .list,
	.analysis-main .list {
		padding: 5% 0 8%;
	}

	.design-main .list li,
	.assemble-main .list li,
	.loading-main .list li,
	.analysis-main .list li {
		width: 100%;
		padding: 0 0 5%;
		border-right: 0;
		border-bottom: 1px solid #e0e0e0;
		margin-bottom: 2.5%;
	}
}

.design-main .boxs,
.assemble-main .boxs,
.loading-main .boxs,
.analysis-main .boxs {
	padding: 3% 0;
	border-bottom: 1px solid #e3e3e3;
	font-size: 14px;
	line-height: 24px;
	color: #666;
}

.design-main .boxs .box,
.assemble-main .boxs .box,
.loading-main .boxs .box,
.analysis-main .boxs .box {
	float: left;
	width: 46%;
	padding-right: 4%;
}

.design-main .boxs .box h3,
.assemble-main .boxs .box h3,
.loading-main .boxs .box h3,
.analysis-main .boxs .box h3 {
	margin-bottom: 18px;
	font-size: 20px;
	line-height: 2;
	color: #333;
}

@media screen and (max-width: 1023px) {

	.design-main .boxs,
	.assemble-main .boxs,
	.loading-main .boxs,
	.analysis-main .boxs {
		padding: 5% 0;
	}

	.design-main .boxs .box,
	.assemble-main .boxs .box,
	.loading-main .boxs .box,
	.analysis-main .boxs .box {
		float: none;
		width: 100%;
		padding: 0 0 5%;
	}

	.design-main .boxs .box h3,
	.assemble-main .boxs .box h3,
	.loading-main .boxs .box h3,
	.analysis-main .boxs .box h3 {
		margin-bottom: 8px;
	}
}

.design-main .boxs-bottom,
.assemble-main .boxs-bottom,
.loading-main .boxs-bottom,
.analysis-main .boxs-bottom {
	padding-top: 2%;
}

.design-main .boxs-bottom h2,
.assemble-main .boxs-bottom h2,
.loading-main .boxs-bottom h2,
.analysis-main .boxs-bottom h2 {
	margin-bottom: 15px;
	font-size: 20px;
	line-height: 2;
	color: #333;
}

.design-main .boxs-bottom .box,
.assemble-main .boxs-bottom .box,
.loading-main .boxs-bottom .box,
.analysis-main .boxs-bottom .box {
	float: left;
	width: 46%;
	padding-right: 4%;
	font-size: 14px;
	line-height: 24px;
	color: #a0c358;
}

.design-main .boxs-bottom .box h3,
.assemble-main .boxs-bottom .box h3,
.loading-main .boxs-bottom .box h3,
.analysis-main .boxs-bottom .box h3 {
	font-size: 24px;
	line-height: 2;
	color: #a0c358;
}

@media screen and (max-width: 1023px) {

	.design-main .boxs-bottom,
	.assemble-main .boxs-bottom,
	.loading-main .boxs-bottom,
	.analysis-main .boxs-bottom {
		padding-top: 5%;
	}

	.design-main .boxs-bottom h2,
	.assemble-main .boxs-bottom h2,
	.loading-main .boxs-bottom h2,
	.analysis-main .boxs-bottom h2 {
		line-height: 1.2;
	}

	.design-main .boxs-bottom .box,
	.assemble-main .boxs-bottom .box,
	.loading-main .boxs-bottom .box,
	.analysis-main .boxs-bottom .box {
		float: none;
		width: 100%;
		padding: 0 0 5%;
	}

	.design-main .boxs-bottom .box h3,
	.assemble-main .boxs-bottom .box h3,
	.loading-main .boxs-bottom .box h3,
	.analysis-main .boxs-bottom .box h3 {
		margin-bottom: 8px;
	}
}

.assemble-main .top {
	padding-bottom: 3.5%;
	border-bottom: 0;
}

.assemble-main .top h2 {
	width: 400px;
}

.assemble-main .top .tips {
	width: calc(100% - 400px);
}

@media screen and (max-width: 1023px) {

	.assemble-main .top h2,
	.assemble-main .top .tips {
		width: 100%;
	}
}

.assemble-main .tab {
	position: relative;
	padding: 4.4% 0 3.3%;
	border-bottom: 2px solid #e0e0e0;
}

@media screen and (max-width: 1023px) {
	.assemble-main .tab {
		padding: 8% 0;
	}
}

.assemble-main .tab::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 58%;
	background-color: #e2ebf2;
}

.assemble-main .tab .main {
	position: relative;
	z-index: 2;
	width: 85.5%;
	margin: 0 auto;
}

@media screen and (max-width: 1023px) {
	.assemble-main .tab .main {
		width: 100%;
	}
}

.assemble-main .tab li {
	position: relative;
	float: left;
	width: 16.8%;
	margin: 0 8%;
	font-size: 18px;
	line-height: 1.2;
	color: #333;
	text-align: center;
	cursor: pointer;
}

.assemble-main .tab li::after {
	content: "";
	display: inline-block;
	position: absolute;
	right: -100%;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(../image/bg_sign11.png) no-repeat center 60%/100% auto;
}

.assemble-main .tab li:last-child::after {
	display: none;
}

.assemble-main .tab li p {
	padding-top: 5px;
	height: 54px;
}

.assemble-main .tab li .sign {
	position: relative;
	width: 100%;
	padding-bottom: 9.8%;
}

.assemble-main .tab li .sign::before {
	content: "";
	display: inline-block;
	background: url(../image/bg_sign10.png) no-repeat center top/100% auto;
}

.assemble-main .tab li .sign img {
	position: relative;
	z-index: 2;
}

.assemble-main .tab li:hover,
.assemble-main .tab li.cur {
	color: #0054a7;
}

.assemble-main .tab li:hover .sign::before,
.assemble-main .tab li.cur .sign::before {
	background-position: center bottom;
}

@media screen and (max-width: 1023px) {
	.assemble-main .tab li {
		width: 27%;
		margin: 0 2.5%;
	}
}

.assemble-main .detail {
	padding-top: 20px;
}

.assemble-main .detail .detail-box {
	display: none;
}

.assemble-main .detail .detail-box:first-child {
	display: block;
}

.assemble-main .detail .detail-in {
	float: left;
	width: 45.8%;
	padding: 10px 0 0 6px;
	font-size: 14px;
	line-height: 24px;
	color: #999;
}

.assemble-main .detail .detail-in h2 {
	margin-bottom: 15px;
	font-size: 18px;
	line-height: 2;
	color: #333;
}

.assemble-main .detail img {
	float: right;
	width: 43%;
}

@media screen and (max-width: 1023px) {
	.assemble-main .detail .detail-in {
		float: none;
		width: 100%;
		padding-left: 0;
	}

	.assemble-main .detail img {
		float: none;
		width: 100%;
		margin-top: 5%;
	}
}

.loading-main .top {
	padding-bottom: 4%;
}

.loading-main .top h2 {
	width: 512px;
}

.loading-main .top .tips {
	width: calc(100% - 512px);
}

@media screen and (max-width: 1023px) {

	.loading-main .top h2,
	.loading-main .top .tips {
		width: 100%;
	}
}

.loading-main .loading-list {
	padding-top: 2.5%;
}

.loading-main .loading-list li {
	float: left;
	width: 29%;
	padding: 0 2.1%;
	border-right: 1px solid #d6d6d6;
	font-size: 14px;
	line-height: 24px;
	color: #999;
}

.loading-main .loading-list li:last-child {
	border-right: 0;
}

.loading-main .loading-list li h3 {
	margin-bottom: 22px;
	font-size: 18px;
	line-height: 22px;
	color: #333;
}

.loading-main .loading-list li img {
	margin-top: 20.5%;
}

@media screen and (max-width: 1023px) {
	.loading-main .loading-list {
		padding-top: 5%;
	}

	.loading-main .loading-list li {
		float: none;
		width: 95%;
		padding: 0 2.5% 5%;
		border-right: 0;
		border-bottom: 1px solid #d6d6d6;
		margin-bottom: 5%;
	}

	.loading-main .loading-list li:last-child {
		border-bottom: 0;
	}

	.loading-main .loading-list li h3 {
		margin-bottom: 2.5%;
	}

	.loading-main .loading-list li img {
		margin-top: 5%;
	}
}

.analysis-main .top {
	padding-bottom: 4%;
}

.analysis-main .top h2 {
	width: 395px;
}

.analysis-main .top .tips {
	width: calc(100% - 395px);
}

@media screen and (max-width: 1023px) {

	.analysis-main .top h2,
	.analysis-main .top .tips {
		width: 100%;
	}
}

.analysis-main .tab-list {
	position: relative;
	padding: 3% 1.4% 0;
}

.analysis-main .tab-list::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 42%;
	background-color: #e2ebf2;
}

.analysis-main .tab-list h2 {
	margin-bottom: 15px;
}

.analysis-main .tab-list ul {
	position: relative;
	z-index: 2;
}

.analysis-main .tab-list li {
	position: relative;
	float: left;
	width: 15%;
	padding-bottom: 2.5%;
	margin: 0 2.5%;
	font-size: 14px;
	line-height: 20px;
	color: #999;
	text-align: center;
}

.analysis-main .tab-list li .circle {
	position: relative;
	margin-bottom: 20px;
}

.analysis-main .tab-list li .circle .text {
	display: table;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
}

.analysis-main .tab-list li .circle span {
	display: table-cell;
	font-size: 20px;
	line-height: 30px;
	color: #fff;
	vertical-align: middle;
}

@media screen and (max-width: 1279px) {
	.analysis-main .tab-list li .circle span {
		font-size: 16px;
		line-height: 1.5;
	}
}

.analysis-main .tab-list li .circle::after {
	content: "";
	display: inline-block;
	position: absolute;
	right: -35%;
	top: 0;
	width: 35%;
	height: 100%;
	background: url(../image/bg_sign12.png) no-repeat center/cover;
}

.analysis-main .tab-list li:last-child .circle::after {
	display: none;
}

@media screen and (max-width: 1023px) {
	.analysis-main .tab-list li {
		width: 45%;
		padding: 0;
		margin: 0 2.5% 5%;
	}

	.analysis-main .tab-list li .circle::after {
		display: none;
	}
}

.analysis-main .image {
	border-top: 2px solid #e0e0e0;
}

.analysis-main .image .tips {
	padding: 1.5% 3%;
	background-color: #f7f7f7;
	margin-bottom: 3%;
	font-size: 18px;
	line-height: 32px;
	color: #666;
}

.analysis-main .image .tips h2 {
	font-size: 20px;
	line-height: 36px;
	color: #333;
	text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
	.analysis-main .image .tips {
		font-size: 16px;
		line-height: 1.5;
	}

	.analysis-main .image .tips h2 {
		padding: 10px 0;
		line-height: 1.2;
	}
}

.citizen-tips {
	padding: 3% 0 12.5%;
	background: url(../image/bg_sign13.png) no-repeat center/auto 100%;
	font-size: 18px;
	line-height: 30px;
	color: #666;
	text-align: center;
}

@media screen and (max-width: 1023px) {
	.citizen-tips {
		font-size: 14px;
		line-height: 24px;
	}
}

.citizen-tips h2 {
	margin-bottom: 3%;
	font-size: 60px;
	line-height: 1.2;
	color: #364a59;
	text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
	.citizen-tips h2 {
		font-size: 30px;
		line-height: 1.5;
	}
}

.citizen-main .top {
	background: url(../image/bg_bg02.jpg) no-repeat center right/auto 100%;
}

.citizen-main .top .in {
	width: 23%;
	padding: 5% 4.5% 5% 22.5%;
	background: url(../image/bg_bg01.jpg) no-repeat center/cover;
	font-size: 16px;
	line-height: 30px;
	color: #fff;
}

.citizen-main .top .in h3 {
	margin-bottom: 3%;
	font-size: 24px;
	line-height: 1.5;
	color: #fff;
	text-transform: uppercase;
}

@media screen and (max-width: 1279px) {
	.citizen-main .top .in {
		width: 33%;
		padding-left: 10%;
	}
}

@media screen and (max-width: 1023px) {
	.citizen-main .top .in {
		width: 90%;
		padding: 10% 5%;
		line-height: 24px;
	}
}

.citizen-main>.mw {
	padding: 2.6% 0;
}

@media screen and (max-width: 1023px) {
	.citizen-main>.mw {
		padding: 8% 0;
	}
}

.citizen-main>.mw .box {
	float: left;
	width: 50%;
	font-size: 16px;
	line-height: 24px;
	color: #666;
}

.citizen-main>.mw .box .detail {
	position: relative;
	width: 77.5%;
	padding: 2% 11.25% 0;
	margin: 0 auto;
}

.citizen-main>.mw .box .detail h3 {
	margin-bottom: 5%;
	font-size: 24px;
	line-height: 1.5;
	color: #0054a7;
	text-transform: uppercase;
}

.citizen-main>.mw .box .detail p {
	text-align: justify;
}

.citizen-main>.mw .box:first-child .detail {
	padding-bottom: 26.7%;
}

.citizen-main>.mw .box:first-child .detail::before {
	content: "";
	display: inline-block;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 1px;
	height: 17%;
	background-color: #0054a7;
}

.citizen-main>.mw .box:first-child .detail::after {
	content: "";
	display: inline-block;
	position: absolute;
	right: 15%;
	bottom: 12%;
	border-top: 6px solid #0054a7;
	border-left: 6px dashed transparent;
	border-right: 6px dashed transparent;
}

.citizen-main>.mw .box:last-child .detail {
	margin-top: 7.8%;
}

.citizen-main>.mw .box:last-child .detail::before {
	content: "";
	display: inline-block;
	position: absolute;
	right: 11.25%;
	top: 8%;
	border-bottom: 6px solid #0054a7;
	border-left: 6px dashed transparent;
	border-right: 6px dashed transparent;
}

@media screen and (max-width: 1023px) {
	.citizen-main>.mw .box {
		float: none;
		width: 100%;
		font-size: 14px;
	}

	.citizen-main>.mw .box .detail {
		width: 90%;
		padding: 5% 0 0;
	}

	.citizen-main>.mw .box .detail::before,
	.citizen-main>.mw .box .detail::after {
		display: none !important;
	}

	.citizen-main>.mw .box .detail:first-child {
		padding-bottom: 10%;
	}
}

.citizen-main .image {
	background: url(../image/bg_bg03.jpg) no-repeat center/cover;
}

.citizen-main .image .in {
	float: right;
	box-sizing: border-box;
	width: 50%;
	padding: 2.8% 22% 4% 3%;
	background: rgba(143, 184, 50, 0.9);
	font-size: 16px;
	line-height: 30px;
	color: #fff;
}

.citizen-main .image .in h3 {
	margin-bottom: 20px;
	font-size: 24px;
	line-height: 2;
	color: #fff;
	text-transform: uppercase;
}

@media screen and (max-width: 1279px) {
	.citizen-main .image .in {
		padding-right: 10%;
	}
}

@media screen and (max-width: 1023px) {
	.citizen-main .image .in {
		width: 100%;
		padding: 5%;
	}
}

.citizen-main .other {
	padding: 4% 0 7%;
	background: url(../image/bg_bg04.jpg) no-repeat center bottom/100% auto;
}

@media screen and (max-width: 1023px) {
	.citizen-main .other {
		padding: 8% 0;
	}
}

.citizen-main .other .in {
	width: 740px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 30px;
	color: #666;
	text-align: center;
}

@media screen and (max-width: 1023px) {
	.citizen-main .other .in {
		width: 90%;
		font-size: 14px;
		line-height: 24px;
	}
}

.corporate-main,
.sunny-tips {
	padding: 3% 0 6%;
	background: url(../image/bg_sign14.png) no-repeat center top/100% auto;
	font-size: 16px;
	line-height: 24px;
	color: #666;
}

.corporate-main h2,
.sunny-tips h2 {
	margin-bottom: 3%;
	font-size: 60px;
	line-height: 1.2;
	color: #364a59;
	text-transform: uppercase;
	text-align: center;
}

.corporate-main h3,
.sunny-tips h3 {
	width: 86%;
	margin: 0 auto 5.5%;
	font-size: 18px;
	line-height: 30px;
	color: #86ae31;
	text-align: center;
}

@media screen and (max-width: 1023px) {

	.corporate-main,
	.sunny-tips {
		padding: 8% 0;
		font-size: 14px;
	}

	.corporate-main h2,
	.sunny-tips h2 {
		font-size: 30px;
	}

	.corporate-main h3,
	.sunny-tips h3 {
		width: 100%;
		font-size: 16px;
		line-height: 1.5;
	}
}

.corporate-image {
	background: url(../image/bg_bg05.jpg) no-repeat center/cover;
}

.corporate-image .in {
	float: right;
	box-sizing: border-box;
	width: 50%;
	padding: 2% 22% 13% 3%;
	background-color: rgba(100, 162, 209, 0.9);
	font-size: 16px;
	line-height: 30px;
	color: #fff;
}

@media screen and (max-width: 1279px) {
	.corporate-image .in {
		padding-right: 10%;
	}
}

@media screen and (max-width: 1023px) {
	.corporate-image .in {
		width: 100%;
		padding: 5% 5% 10%;
	}
}

.sunny-tips {
	padding: 2% 0;
}

@media screen and (max-width: 1023px) {
	.sunny-tips {
		padding: 8% 0;
	}
}

.sunny-tips .in {
	width: 86%;
	margin: 0 auto;
	line-height: 30px;
	text-align: center;
}

.sunny-tips .in h3 {
	width: 100%;
	margin-bottom: 2.5%;
	font-size: 24px;
	line-height: 30px;
	color: #86ae31;
	text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
	.sunny-tips .in {
		width: 100%;
		line-height: 1.5;
	}

	.sunny-tips .in h3 {
		margin-bottom: 5%;
		font-size: 20px;
	}
}

.sunny-main .image {
	background: url(../image/bg_bg06.jpg) no-repeat center/cover;
}

.sunny-main .image .in {
	box-sizing: border-box;
	width: 50%;
	padding: 3% 4.5% 4.3% 22%;
	background-color: rgba(100, 162, 209, 0.9);
	font-size: 16px;
	line-height: 30px;
	color: #fff;
}

@media screen and (max-width: 1279px) {
	.sunny-main .image .in {
		padding-left: 10%;
	}
}

@media screen and (max-width: 1023px) {
	.sunny-main .image .in {
		width: 100%;
		padding: 10% 5%;
	}
}

.sunny-main .list {
	padding: 2% 0;
}

.sunny-main .list h3 {
	margin-bottom: 3%;
	font-size: 24px;
	line-height: 2;
	color: #0054a7;
	text-transform: uppercase;
}

.sunny-main .list li {
	float: left;
	width: 24.0845%;
	margin-bottom: 3%;
	font-size: 16px;
	line-height: 24px;
	color: #333;
	margin-right: 1%;
	border:1px solid #ccc;
}

.sunny-main .list li span {
	display: block;
	position: relative;
	overflow: hidden;
	background: #d9d9d9;
}

.sunny-main .list li img {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.sunny-main .list li p {
	min-height: 48px;
	padding: 4% 1% 0;
	color: #333;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	text-align: center;
}

.sunny-main .list li a:hover p {
	color: #0054a7;
}

.sunny-main .list li a:hover img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}

.sunny-main .list li:nth-child(4n) {
	margin-right: 0;
}

@media screen and (max-width: 1023px) {
	.sunny-main .list li {
		width: 100%;
		margin: 0 0 5% !important;
	}
}

.about-main {
	padding: 12px 0 3%;
}

.about-main h2 {
	font-size: 60px;
	line-height: 1.2;
	color: #364a59;
	text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
	.about-main h2 {
		font-size: 30px;
	}
}

.about-main h3 {
	margin-top: 15px;
	font-size: 18px;
	line-height: 30px;
	color: #666;
}

.about-main .box {
	font-size: 14px;
	line-height: 24px;
	color: #999;
}

.about-main .box:nth-child(3) .detail {
	float: left;
	position: relative;
	width: 51%;
	padding: 4% 0 4% 2%;
}

.about-main .box:nth-child(3) .detail::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 12.8%;
	width: 1px;
	height: 46%;
	background-color: #0054a7;
}

.about-main .box:nth-child(3) img {
	float: right;
	width: 43%;
}

.about-main .box:last-child img {
	float: left;
	width: 43%;
}

.about-main .box:last-child .detail {
	float: right;
	width: 51%;
	padding-top: 5%;
}

@media screen and (max-width: 1023px) {

	.about-main .box:nth-child(3) .detail,
	.about-main .box:last-child .detail {
		float: none;
		width: 100%;
		padding: 0;
		margin-bottom: 5%;
	}

	.about-main .box:nth-child(3) .detail::before,
	.about-main .box:last-child .detail::before {
		display: none;
	}

	.about-main .box:nth-child(3) img,
	.about-main .box:last-child img {
		float: none;
		width: 100%;
		margin-bottom: 5%;
	}
}

.about-list {
	background-color: #0054a7;
}

.about-list .name {
	float: left;
	width: 38.5%;
	padding: 5.6% 0 9.4% 1px;
	background: url(../image/bg_sign15.png) no-repeat center/cover;
}

.about-list .name h2 {
	margin-bottom: 14px;
	font-size: 60px;
	line-height: 1.2;
	color: #fff;
	text-transform: uppercase;
}

.about-list .name h3 {
	font-size: 18px;
	line-height: 30px;
	color: #fff;
}

.about-list .list {
	float: right;
	width: 55%;
	padding: 6% 0 4%;
}

.about-list .list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 12px;
	font-size: 14px;
	line-height: 2;
	color: #fff;
}

.about-list .list li::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 8px;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: #fff;
}

@media screen and (max-width: 1023px) {
	.about-list .name {
		float: none;
		width: 100%;
		padding: 10% 0 5%;
	}

	.about-list .name h2 {
		font-size: 30px;
	}

	.about-list .list {
		float: none;
		width: 100%;
		padding: 5% 0 10%;
	}

	.about-list .list li {
		margin-bottom: 2%;
		line-height: 1.5;
	}

	.about-list .list li::before {
		top: 5px;
	}
}

.culture-main,
.contact-main {
	padding: 12px 0 3.6%;
}

.culture-main h2,
.contact-main h2 {
	font-size: 60px;
	line-height: 1.2;
	color: #364a59;
	text-transform: uppercase;
}

@media screen and (max-width: 1023px) {

	.culture-main h2,
	.contact-main h2 {
		font-size: 30px;
	}
}

.culture-main h3,
.contact-main h3 {
	margin: 14px 0 24px;
	font-size: 18px;
	line-height: 30px;
	color: #666;
}

.culture-main .list,
.contact-main .list {
	border-bottom: 1px solid #ebebeb;
}

.culture-main .list li,
.contact-main .list li {
	float: left;
	width: 33.33%;
}

.culture-main .list li .tips,
.contact-main .list li .tips {
	min-height: 255px;
	padding: 11.75% 9% 5%;
	background-color: #a0c358;
	font-size: 14px;
	line-height: 24px;
	color: #fff;
}

.culture-main .list li .tips h3,
.contact-main .list li .tips h3 {
	margin: 0;
	margin-bottom: 1.2%;
	font-size: 24px;
	line-height: 1.5;
	color: #fff;
	text-transform: uppercase;
}

.culture-main .list li .img,
.contact-main .list li .img {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.culture-main .list li:nth-child(2) .tips,
.contact-main .list li:nth-child(2) .tips {
	background-color: #ececec;
	color: #5d5d5d;
}

.culture-main .list li:nth-child(2) .tips h3,
.contact-main .list li:nth-child(2) .tips h3 {
	color: #5d5d5d;
}

@media screen and (max-width: 1023px) {

	.culture-main .list li,
	.contact-main .list li {
		float: none;
		width: 100%;
	}

	.culture-main .list li .tips,
	.contact-main .list li .tips {
		padding-top: 8%;
	}
}

.culture-main .list .box,
.contact-main .list .box {
	padding-left: 33.33%;
	background: url(../image/bg_sign16.jpg) no-repeat center/cover;
}

.culture-main .list .box .in,
.contact-main .list .box .in {
	padding: 7% 4.4% 7.5% 5.5%;
	background-color: #0054a7;
	font-size: 14px;
	line-height: 24px;
	color: #fff;
}

.culture-main .list .box .in h3,
.contact-main .list .box .in h3 {
	margin-bottom: 8px;
	font-size: 24px;
	line-height: 2;
	color: #fff;
	text-transform: uppercase;
}

@media screen and (max-width: 1023px) {

	.culture-main .list .box,
	.contact-main .list .box {
		padding-left: 0;
	}

	.culture-main .list .box .in,
	.contact-main .list .box .in {
		padding: 7% 5%;
	}
}

.contact-main .tips {
	margin-bottom: 3.75%;
}

.contact-main .tips .box {
	float: left;
	position: relative;
	width: 39.5%;
	padding: 0 5.5% 0 2.25%;
	font-size: 18px;
	line-height: 2;
	color: #999;
}

.contact-main .tips .box::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 16%;
	width: 1px;
	height: 76%;
	background-color: #0054a7;
}

.contact-main .tips .box h2 {
	padding: 6px 0;
	font-size: 24px;
	line-height: 1.5;
	color: #86ae31;
}

.contact-main .tips .tel {
	float: right;
	width: 49%;
	padding-left: 3.3%;
	border-left: 1px solid #ebebeb;
}

.contact-main .tips .tel span {
	display: inline-block;
	padding-left: 40px;
	font-size: 12px;
	line-height: 48px;
	color: #666;
}

.contact-main .tips .tel p:last-child {
	padding-left: 40px;
	background: url(../image/bg_sign17.png) no-repeat left 17%;
	font-size: 24px;
	line-height: 36px;
	color: #0054a7;
}

@media screen and (max-width: 1023px) {
	.contact-main .tips {
		margin-bottom: 5%;
	}

	.contact-main .tips .box {
		float: none;
		width: 100%;
		padding: 0;
		margin-bottom: 5%;
		font-size: 14px;
		line-height: 24px;
	}

	.contact-main .tips .box::before {
		display: none;
	}

	.contact-main .tips .box h2 {
		font-size: 18px;
	}

	.contact-main .tips .tel {
		float: none;
		width: 100%;
		padding: 0;
		border-left: 0;
	}
}

.news-main {
	padding: 12px 0 5%;
}

.news-main h2 {
	margin-bottom: 2%;
	font-size: 60px;
	line-height: 1.2;
	color: #364a59;
	text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
	.news-main h2 {
		font-size: 30px;
		margin-bottom: 5%;
	}
}

.news-main .tags {
	margin-bottom: 3%;
}

.news-main .tags a {
	display: inline-block;
	width: 144px;
	border: 1px solid #ccc;
	border-radius: 20px;
	margin-right: 2%;
	font-size: 14px;
	line-height: 38px;
	color: #364a59;
	text-align: center;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.news-main .tags a:hover,
.news-main .tags a.cur {
	border-color: #0054a7;
	background-color: #0054a7;
	color: #fff;
}

@media screen and (max-width: 1023px) {
	.news-main .tags {
		margin-bottom: 10%;
	}

	.news-main .tags a {
		display: inline-block;
		width: calc(45% - 2px);
		border-radius: 18px;
		line-height: 36px;
	}
}

.news-main .list li {
	position: relative;
	margin-bottom: 20px;
}

.news-main .list li>a {
	display: inline-block;
	width: 21%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.news-main .list li>a:hover {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}

.news-main .list li .tips {
	float: right;
	width: 74%;
	padding: 0 3% 2.5% 0;
	border-bottom: 1px solid #e0e0e0;
}

.news-main .list li .tips a {
	display: inline-block;
	width: 100%;
	font-size: 14px;
	line-height: 20px;
	color: #999;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.news-main .list li .tips a.tit {
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 24px;
	color: #333;
}

.news-main .list li .tips a:hover {
	color: #0054a7;
}

.news-main .list li .tips span {
	display: inline-block;
	padding-top: 2.5%;
	font-size: 14px;
	line-height: 2;
	color: #0054a7;
}

@media screen and (max-width: 1023px) {
	.news-main .list li>a {
		position: relative;
		width: 100%;
		background: none;
	}

	.news-main .list li .tips {
		float: none;
		width: 100%;
	}
}

.news-main .list .page {
	margin-top: 2.5%;
}

.news-detail {
	padding: 5% 0;
}

.news-detail.pt0 {
	padding-top: 0;
}

.news-detail h2 {
	margin-bottom: 0;
	font-size: 30px;
	line-height: 1.5;
	color: #364a59;
	text-transform: uppercase;
	text-align: center;
}

.news-detail img {
	max-width: 100%;
}

@media screen and (max-width: 1023px) {
	.news-detail h2 {
		font-size: 20px;
	}
}

.news-detail .time {
	margin-bottom: 5%;
	font-size: 16px;
	line-height: 1.5;
	color: #333;
	text-align: center;
}

@media screen and (max-width: 1023px) {
	.news-detail .time {
		font-size: 14px;
	}
}

.news-detail .detail {
	font-size: 14px;
	line-height: 24px;
	color: #666;
}

.news-detail .turn {
	position: relative;
	border-top: 1px solid #999;
	margin-top: 5%;
	padding-top: 2.5%;
	font-size: 14px;
	line-height: 24px;
	color: 3333;
}

.news-detail .turn p {
	max-width: 90%;
}

.news-detail .turn a {
	color: #333;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.news-detail .turn a.back {
	position: absolute;
	right: 0;
	top: 30%;
}

.news-detail .turn a:hover {
	color: #0054a7;
}

.career-main {
	padding: 25px 0 9%;
}

.career-main .top {
	margin-bottom: 4%;
}

.career-main .top h2 {
	float: left;
	font-size: 60px;
	line-height: 1.2;
	color: #364a59;
	text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
	.career-main .top h2 {
		float: none;
		font-size: 30px;
	}
}

.career-main .top .box {
	float: right;
	position: relative;
	width: calc(90% - 250px);
	padding-left: 2.25%;
	font-size: 16px;
	line-height: 28px;
	color: #666;
}

.career-main .top .box::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 5px;
	width: 1px;
	height: 80%;
	background-color: #0054a7;
}

.career-main .top .box a {
	color: #666;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.career-main .top .box a:hover {
	color: #316db5;
}

.career-main .top .box span {
	display: block;
	font-size: 14px;
	line-height: 24px;
	color: #316db5;
}

.career-main .top .box form {
	margin-top: 20px;
}

.career-main .top .box form input {
	float: left;
	width: 65%;
	height: 42px;
	padding: 0 20px 0 10px;
	border: 1px solid #ccc;
	border-radius: 10px;
	background-color: #f7f7f7;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

.career-main .top .box form input[type='submit'] {
	width: 150px;
	height: 44px;
	padding: 0 0 0 50px;
	border-color: #316db5;
	background: #316db5 url(../image/bg_btn02.png) no-repeat 24px center;
	margin-left: -20px;
	font-size: 16px;
	line-height: 42px;
	color: #fff;
}

@media screen and (max-width: 1023px) {
	.career-main .top .box {
		float: none;
		width: 100%;
		padding-left: 0;
	}

	.career-main .top .box::before {
		display: none;
	}

	.career-main .top .box form input {
		width: 55%;
	}

	.career-main .top .box form input[type='submit'] {
		width: 125px;
		padding-left: 25px;
		background-position: 12px center;
	}
}

.career-main .list li {
	margin-bottom: 20px;
	border: 1px solid #ccc;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.career-main .list li .tips {
	float: left;
	width: calc(77.5% - 1px);
	padding: 1.5% 3.5%;
	border-right: 1px solid #ccc;
}

.career-main .list li .tips .name {
	margin-bottom: 10px;
}

.career-main .list li .tips .name h3 {
	float: left;
	font-size: 24px;
	line-height: 2;
	color: #316db5;
}

.career-main .list li .tips .name span {
	display: block;
	float: left;
	padding: 0 3.5%;
	font-size: 14px;
	line-height: 48px;
	color: #999;
}

.career-main .list li .tips .name span:nth-child(2) {
	position: relative;
	margin-left: 7%;
}

.career-main .list li .tips .name span:nth-child(2)::before,
.career-main .list li .tips .name span:nth-child(2)::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	width: 1px;
	height: 15px;
	margin-top: -7.5px;
	background-color: #d0d0d0;
}

.career-main .list li .tips .name span:nth-child(2)::before {
	left: 0;
}

.career-main .list li .tips .name span:nth-child(2)::after {
	right: 0;
}

.career-main .list li .tips table {
	font-size: 16px;
	line-height: 30px;
	color: #666;
}

@media screen and (max-width: 1023px) {
	.career-main .list li .tips {
		float: none;
		width: 93%;
		border-right: 0;
	}

	.career-main .list li .tips .name h3 {
		float: none;
	}

	.career-main .list li .tips .name span {
		font-size: 12px;
		line-height: 30px;
	}

	.career-main .list li .tips .name span:nth-child(2) {
		padding-left: 0;
		margin-left: 0;
	}

	.career-main .list li .tips .name span:nth-child(2)::before {
		display: none;
	}

	.career-main .list li .tips table {
		font-size: 14px;
		line-height: 36px;
	}

	.career-main .list li .tips table td {
		float: left;
		width: 100%;
	}
}

.career-main .list li .btn {
	position: absolute;
	right: 0;
	top: 0;
	width: 15.5%;
	height: 100%;
	cursor: pointer;
}

.career-main .list li .btn span {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	padding-top: 30px;
	background: url(../image/bg_btn03.png) no-repeat center top;
	margin-top: -27px;
	font-size: 12px;
	line-height: 2;
	color: #999;
	text-align: center;
}

.career-main .list li .btn span::after {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 54px;
	background: #f7f7f7 url(../image/bg_btn04.png) no-repeat center;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	opacity: 0;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

@media screen and (max-width: 1023px) {
	.career-main .list li .btn {
		position: relative;
		width: 100%;
		height: 100px;
	}
}

.career-main .list li.show {
	background-color: #f7f7f7;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.career-main .list li.show .btn span::after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.career-main .list li .detail {
	display: none;
	position: relative;
	border-top: 1px solid #ccc;
	padding: 1.5% 3.6% 2.6%;
	font-size: 14px;
	line-height: 24px;
	color: #999;
}

.career-main .list li .detail h3 {
	margin-bottom: 1.5%;
	font-size: 16px;
	line-height: 2;
	color: #666;
	text-transform: uppercase;
}

.career-main .list li .detail .in {
	float: left;
	width: calc(100% - 200px);
}

.career-main .list li .detail a {
	position: absolute;
	right: 3%;
	bottom: 10%;
	display: inline-block;
	width: 142px;
	padding-left: 58px;
	border-radius: 10px;
	background: #86ae31 url(../image/bg_btn05.png) no-repeat left center;
	font-size: 16px;
	line-height: 44px;
	color: #fff;
	text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
	.career-main .list li .detail {
		padding: 3% 5%;
	}

	.career-main .list li .detail .in {
		float: none;
		width: 100%;
	}

	.career-main .list li .detail a {
		position: relative;
		right: 0;
		bottom: 0;
		float: right;
		margin-top: 5%;
	}
}

.sideshare {
	position: fixed;
	right: 0;
	top: 30%;
	width: 60px;
	z-index: 5;
}

.sideshare a {
	position: relative;
	overflow: hidden;
	display: inline-block;
	float: left;
	width: 60px;
	height: 60px;
	margin-bottom: 2px;
	cursor: pointer;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.sideshare a:nth-child(1) {
	background: rgba(46, 60, 70, 0.85) url(../image/signf.png) no-repeat center;
}

.sideshare a:nth-child(2) {
	background: rgba(46, 60, 70, 0.85) url(../image/signt.png) no-repeat center;
}

.sideshare a:nth-child(3) {
	background: rgba(46, 60, 70, 0.85) url(http://cnjdxs.com/static/home/images/signi.png) no-repeat center;
}

.sideshare a span {
	-webkit-transform: translateY(-60px);
	-ms-transform: translateY(-60px);
	transform: translateY(-60px);
}

.sideshare a:hover {
	background-color: rgba(46, 60, 70, 0.95);
}

table {
	margin-bottom: 10px;
	border-collapse: collapse;
	display: table;
}

.ue-table-interlace-color-single {
	background-color: #fcfcfc;
}

td,
th {
	padding: 5px 10px;
	border: 1px solid #DDD;
}

.ue-table-interlace-color-double {
	background-color: #f7faff;
}


.adddd img {
	max-width: 100%
}