/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */
@import url(fonts/fonts-alibaba.css);
@import url(fonts/flaticon.css);
*::-moz-selection {
	background-color: #4D525A;
	color: #FFF;
}
*::selection {
	background-color: #4D525A;
	color: #FFF;
}
input[type="button"],
input[type="submit"],
input[type="reset"],
textarea{
	-webkit-appearance: none;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	/*font-style: normal;*/
}
body {
	line-height: 1;
}

blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: 400;
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}
h2,h3,h4 {
    font-weight: 500;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a:focus {
	/*outline: thin dotted;*/
	outline: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #ededed;
	background-color: rgba(0,0,0,0.1);
	border: 0;
	height: 1px;
	margin: 24px 0;
	margin-bottom: 1.714285714rem;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
	display: table;
	content: "";
}


/* =Repeatable patterns
-------------------------------------------------------------- */

/* Small headers */
.archive-title,
.widget-title {
	font-size: 16px;
	font-size: 1.225714286rem;
	line-height: 2.181818182;
	font-weight: normal;
	color: #636363;
}

/* Shared Post Format styling */
article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}

/* Form fields, general styles first */
button,
input,
select,
textarea {
	border: 1px solid #ddd;
	background-color: #fff;
	/*border: 1px solid rgba(0,0,0,0.4);*/
	border-radius: 0px;
	font-family: inherit;
	padding: 4px;
}
button,
input {
	line-height: normal;
}
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}
select{
	/*-webkit-appearance: none;
	background:url(images/arraw-select.png) no-repeat #fff;
	background-size: auto 40%;
	background-position: right center;*/
}
/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
	border: 0;
	border-radius: 0;
	padding: 0;
}

/* Buttons */
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
.bypostauthor cite span {
	padding: 4px 26px;
	font-size: 12px;
	font-size: 0.865714286rem;
	line-height: 1.628571429;
	font-weight: normal;
	border-radius: 3px;
	border:1px solid #03589e;
	color:#fff!important;
	background:#03589e;
	-webkit-transition:color 0.2s, background 0.2s;
	transition:color 0.2s, background 0.2s;
}
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
}
button[disabled],
input[disabled] {
	cursor: default;
}
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
	color:#fff!important;
	border:1px solid #002c48;
	background:#002c48;
}
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	color: #fff;
	background-color: #0a3e52;
}
.bypostauthor cite span {
	color: #fff;
	background-color: #21759b;
	background-image: none;
	border: 1px solid #1f6f93;
	border-radius: 2px;
	box-shadow: none;
	padding: 0;
}

.button,
.button1,
.button2,
.button3,
.button4{
	box-sizing: border-box;
	display: inline-block;
	color: #222a35;
	padding: 12px 14px;
	width: 156px;
	max-width: 100%;
	text-align: center;
	font-size: 16px;
	font-size: 1.14285714rem;
	text-decoration: none;
	border-radius: 0;
	text-transform: uppercase;
	line-height: 1.1;
	font-weight: 300;
	background-color: #89daff;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	-webkit-text-shadow: none;
	text-shadow: none;
	word-break: keep-all;
}
.button:hover{
	text-decoration: none;
}
.button1{
	border:1px solid #03589e;
	color:#fff!important;
	background:#03589e;
}
.button1:hover{
	color:#fff!important;
	border:1px solid #002c48;
	background:#002c48;
}
.button2 {
	background-color: transparent;
	color: #fff!important;
	border:1px solid #fff;
}
.button2:hover {
	background-color: #fff;
	border:1px solid #fff;
	color: #03589e!important;
}
.button-large{
	padding: 14px 21px;
	font-size: 21px;
	font-size: 1.5rem;
}
.button-small{
	padding: 6px 16px;
	width:auto;
	font-size: 14px;
	font-size: 1rem;
}

/* Responsive images */
.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	max-width: 100%;
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}


/* Make sure videos and embeds fit their containers */
embed,
iframe,
object,
video {
	width: 100%;
}
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important; /* Override the Twitter embed fixed width */
}


/*text color*/
.txt-red{color:#ff534e!important}
.txt-blue{color:#03589e!important}
.txt-green{color:green!important}
.txt-orinage{color:#ffa836!important}
.txt-white{color:#fff!important}
.txt-black{color:#000!important}
.txt-gray{color: #aaa!important}
/*grids*/
.col-raw{
	margin:0 -28px 0 -28px;
	overflow: hidden;
}
.col-raw.col-narrow{
	margin-left: -8px;
	margin-right: -8px;
}
.col-raw.col-medium{
	margin-left: -16px;
	margin-right: -16px;
}
.col-n{
	box-sizing: border-box;
	padding-left: 28px;
	padding-right: 28px;
}
.col-narrow .col-n{
	padding-left: 8px;
	padding-right: 8px;
}
.col-medium .col-n{
	padding-left: 16px;
	padding-right: 16px;
}
@media screen and (max-width: 767px){
	.col-n-mb{
		float: left;
	}
	.col-2-mb{
		width:16.66%;
	}
	.col-3-mb{
		width:25%;
	}
	.col-4-mb{
		width:33.33%;
	}
	.col-5-mb{
		width:41.66%;
	}
	.col-6-mb{
		width:50%;
	}
	.col-7-mb{
		width:58.33%;
	}
	.col-8-mb{
		width:66.66%;
	}
	.col-9-mb{
		width:75%;
	}
	.col-10-mb{
		width:83.33%;
	}
	.col-11-mb{
		width:91.66%;
	}
	.col-12-mb{
		width:100%;
	}
	.hide-mb{
		display: none;
	}
	.col-raw.col-medium{
		margin-left: -12px;
		margin-right: -12px;
	}
	.col-medium .col-n{
		padding-left: 12px;
		padding-right: 12px;
	}
}
@media screen and (min-width: 768px){
	.col-n{
		float: left;
	}
	.col-2{
		width:16.66%;
	}
	.col-1-8{
		width:12.5%;
	}
	.col-1-5{
		width:20%;
	}
	.col-2-5{
		width:40%;
	}
	.col-3-5{
		width:60%;
	}
	.col-4-5{
		width:80%;
	}
	.col-3{
		width:25%;
	}
	.col-4{
		width:33.33%;
	}
	.col-5{
		width:41.66%;
	}
	.col-6{
		width:50%;
	}
	.col-7{
		width:58.33%;
	}
	.col-8{
		width:66.66%;
	}
	.col-9{
		width:75%;
	}
	.col-10{
		width:83.33%;
	}
	.col-11{
		width:91.66%;
	}
	.col-12{
		width:100%;
	}
	.hide-pc{
		display: none;
	}
	.col-flex{
		display: flex;
		flex-direction: row;
		align-items: center;
		flex-wrap: nowrap;
	}
	.col-inlineblock{
		font-size: 0;
		text-align: left;
	}
	.col-inlineblock .col-n{
		display: inline-block;
		float: none;
		vertical-align: top;
	}
}
/*responsive table*/
.table-responsive{
	width: 100%;
	overflow-y: auto;
	_overflow: auto;
	margin: 0 0 1em;
}
.table-responsive::-webkit-scrollbar{
	-webkit-appearance: none;
	width: 14px;
	height: 14px;
}
.table-responsive::-webkit-scrollbar-thumb{
	border-radius: 8px;
	border: 3px solid #fff;
	background-color: rgba(0, 0, 0, .3);
}
.table-responsive table{
	/*min-width: 400px;*/
}
.txt-left{
	text-align: left!important;
}
.txt-right{
	text-align: right!important;
}
.txt-center{
	text-align: center!important;
}

/* Images */
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {

}
.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}
img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.entry-content dl.gallery-item {
	margin: 0;
}
.gallery-item a,
.gallery-caption {
	width: 90%;
}
.gallery-item a {
	display: block;
}
.gallery-caption a {
	display: inline;
}
.gallery-columns-1 .gallery-item a {
	max-width: 100%;
	width: auto;
}
.gallery .gallery-icon img {
	height: auto;
	max-width: 90%;
	padding: 5%;
}
.gallery-columns-1 .gallery-icon img {
	padding: 3%;
}

/* Navigation */
.site-content nav {
	clear: both;
	line-height: 2;
	overflow: hidden;
}
#nav-above {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous,
.previous-image {
	float: left;
	width: 50%;
}

.nav-next,
.next-image {
	float: right;
	text-align: right;
	width: 50%;
}
.nav-previous,
.nav-next {
	line-height: 1.5;
	width: 47%;
}
.nav-previous a,
.nav-next a{
	text-decoration: none;
	display: block;
	padding: 8px;
	border: 1px solid rgba(0, 0, 0, 0.1);
}
.nav-previous { border-left: 6px solid #03589e; padding: 0!important}
.nav-next { border-right: 6px solid #03589e; padding: 0!important}
.nav-previous a{ border-left: none; }
.nav-next a{ border-right: none; }
.nav-previous a:hover,
.nav-next a:hover{
	background-color: #eee;
	text-decoration: none;
}
.nav-previous a .meta-nav,
.nav-next a .meta-nav{ display: none;}

.nav-single,
#comment-nav-above {
	margin: 48px 0;
	margin: 3.428571429rem 0;
}

/* Author profiles */
.author .archive-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.author-info {
	border-top: 1px solid #ededed;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	overflow: hidden;
}
.author-description p {
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.author.archive .author-info {
	border-top: 0;
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
}
.author.archive .author-avatar {
	margin-top: 0;
}


/* =Basic structure
-------------------------------------------------------------- */

/* Body, links, basics */
html {
	font-size: 87.5%;
}
body {
	font-size: 14px;
	font-size: 1rem;
	font-family: 'Alibaba PuhuiTi', '微软雅黑',  Helvetica, Arial, sans-serif;
	font-weight: 400;
	text-rendering: optimizeLegibility;
	color: #555;
}

a {
	outline: none;
	color: #000;
	text-decoration: none;
}
a:hover {
	color: #333;
	text-decoration: underline;
}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}
.main-navigation .assistive-text:focus {
	background: #fff;
	border: 2px solid #333;
	border-radius: 3px;
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 12px;
	padding: 12px;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 100000; /* Above WP toolbar */
}

/* Page structure */
hgroup {
	overflow: hidden;
	margin: 0 auto;
	max-width: 1200px;
	max-width: 85.71428571rem;
	position: relative;
	width: 100%;
	box-sizing: border-box;
	background: #03589e;
}
.site,
.site-width {
	box-sizing: border-box;
	padding: 0 28px;
	padding: 0 2rem;
}
hr.block-separator{
	margin: 40px 0 50px 0;
	height: 1px;
	background: #035ea4;
	border: 0;
}
@media screen and (min-width: 1024px){
	.site,
	.site-width {
		padding: 0 56px;
		padding: 0 4rem;
	}
	hr.block-separator{
		margin: 42px 0 56px 0;
		margin: 3rem 0 4rem 0;
	}
}
@media screen and (min-width: 1600px){
	.site,
	.site-width {
		padding: 0 28px;
		padding: 0 2rem;
	}
}
.site-content {
	margin: 21px 0 0;
	margin: 1.5rem 0 0;
}
.widget-area {
	margin: 21px 0 0;
	margin: 1.5rem 0 0;
}

/* Header */
.site-header {
	padding: 0;
	width:100%;
	background-color:#0a3e52;
	/*padding-top: 1px;*/
	padding-top: 0;
}
.site-header h1,
.site-header h2 {
	text-align: center;
	display: none;
}
.site-header h1 a,
.site-header h2 a {
	color: #515151;
	display: inline-block;
	text-decoration: none;
}
.site-header h1 a:hover,
.site-header h2 a:hover {
	color: #21759b;
}
.site-header h1 {
	font-size: 24px;
	font-size: 1.714285714rem;
	line-height: 1.285714286;
	margin-bottom: 2px;
	margin-bottom: 0.15rem;
}
.site-header h2 {
	font-weight: normal;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.header-image {
	margin-top: 24px;
	margin-top: 1.714285714rem;
}


/* Navigation Menu */
.main-navigation {
	margin-top: 7px;
	margin-top: 0.5rem;
	text-align: center;
	/*overflow: hidden;*/
	clear:both;
	/*background-color:#333;*/
}
.main-navigation li {
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 2.6;
}
.main-navigation a {
	color: #fff;
	text-decoration: none;
	display: block;
	font-family: 'Alibaba PuhuiTi', '微软雅黑', serif;
}
.main-navigation a:hover,
.main-navigation a:focus {
	/*background: #fafafa;*/
	color:#0a3e52;
}
.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
	display: none;
	width:100%;
	font-size: 0;

}
.main-navigation ul.nav-menu.toggled-on { display: inline-block; }

.menu-header-menu-container { 
	line-height: 0;
}
.main-navigation ul.nav-menu {
	height:0;
	overflow:hidden; 
	display: inline-block;
	-webkit-transition: height 0.5s; 
	-moz-transition: height 0.5s; 
	transition: height 0.5s;
}
.main-navigation ul.nav-menu li {
	border-top:1px solid rgba(255,255,255,0.2);
}
.main-navigation ul.nav-menu.toggled-on {
	/*height:336px;*/
}
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a,
.main-navigation .current_page_item > a,
.main-navigation .current_page_ancestor > a {
	/*background: transparent;*/
	color:#89daff;
}

/* Banner */
section[role="banner"] {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
}

/* Sidebar */
.widget-area .widget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	margin-bottom: 24px;
	margin-bottom: 1.714571429rem;
	padding-bottom: 24px;
	padding-bottom: 1.714571429rem;
	border-bottom:1px solid #EDEDED;
	word-wrap: break-word;
}
.widget-area .widget h3 {
	margin-bottom: 10px;
	margin-bottom: 1rem;
}
.widget-area .widget p,
.widget-area .widget li,
.widget-area .widget .textwidget {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.646153846;
}
.widget-area .widget li { margin-bottom:10px;}
.widget-area .widget p {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .textwidget ul {
	list-style: disc outside;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
.widget-area .textwidget li {
	margin-left: 36px;
	margin-left: 2.571428571rem;
}
.widget-area .widget a {
	color: #757575;
	text-decoration:none;
}
.widget-area .widget a:hover {
	color: #21759b;
	text-decoration:underline;
}
.widget-area .widget a:visited {
	color: #5789a0;
}
.widget-area #s {
	width: 45%;
	width: -webkit-calc(100% - 65px);
	width: calc(100% - 65px); /* define a width to avoid dropping a wider submit button */
}

/* Footer */
footer[role="contentinfo"] {
	clear: both;
	line-height: 1.6;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	padding-top: 50px;
	position: relative;
	background-color: #03589e;
	color: #fff;
	max-width: 100%;
}
footer[role="contentinfo"] .entry-content{
	font-size: 14px;
	font-size: 1rem;
}
footer[role="contentinfo"] a {
	color: #fff;
	transition: all 0.2s;
}
footer[role="contentinfo"] a:hover {
	color: #rgba(255,255,255,0.8);
}
footer[role="contentinfo"] h3{
	font-size: 15px;
	font-weight: 500;
	margin-top: 0;
	margin-bottom: 10px;
	color: #fff;
}
footer[role="contentinfo"] strong{
	font-size: 14px;
	font-size: 1rem;
	font-weight: 400;
}
footer[role="contentinfo"] .col-n{
	padding-top: 14px;
	padding-top: 1rem;
	padding-bottom: 14px;
	padding-bottom: 1rem;
}
footer[role="contentinfo"] p,
footer[role="contentinfo"] li{
	font-size: 14px;
	font-size: 1rem;
}
.logo-footer{
	width: 66px;
	height: auto;
}
.footer-left p{
	max-width: 350px;
	margin: 14px 0!important;;
}
footer[role="contentinfo"] .footer-menu{
	/*min-height: 178px;*/
	margin-bottom: 0;
}
footer[role="contentinfo"] .footer-menu li{
	list-style: none;
	margin-left: 0;
}
.footer-bottom{
	border-top: 1px solid rgba(255,255,255,0.3);
	line-height: 1.6;
}
html[lang="en-US"] .footer-menu a{
	font-size: 13px;
}
.footer-right .col-n{
	min-height: 170px;
}
#footer-social a{
	display: inline-block;
	font-size: 18px;
	width: 26px;
	height: 26px;
	text-align: center;
	line-height: 26px;
	background-color: #fff;
	border-radius: 50%;
	color: #03589e;
	margin:0 5px 0 0;
}
@media screen and (min-width: 1024px){
	.footer-bottom{
		text-align: center;
	}
	.footer-bottom br{
		display: none;
	}
	html[lang="ja"] .footer-left{
		width: 35%;
	}
	html[lang="ja"] .footer-right{
		width: 65%;
	}
	#footer-social{
		float: right;
		text-align: right;
	}
	#footer-social a{
		margin:0 0 0 5px;
	}
}
/* =Main content and comment content
-------------------------------------------------------------- */

.entry-meta {
	clear: both;
}
.entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header img.wp-post-image {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header .entry-title{
	line-height: 1.2;
	padding-bottom: 10px;
	padding-top: 2px;
	color:#333;
	border-bottom: 1px solid rgba(0,0,0,0.1);;
	font-size: 21px;
	font-size: 1.5rem;
	font-weight: 600;
}
.entry-header .entry-title a {
	text-decoration: none;
}
.entry-header .entry-format {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-weight: normal;
}
.comments-link {
	margin-top: 14px;
	margin-top: 1rem;
	margin-bottom: 42px;
	margin-bottom: 3rem;
	text-align: center;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #999;
}

.comments-link a,
.entry-meta a {
	color: #757575;
}
.comments-link a:hover,
.entry-meta a:hover {
	color: #21759b;
}
article.sticky .featured-post {
	border-top: 4px double #ededed;
	border-bottom: 4px double #ededed;
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 3.692307692;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	text-align: center;
}
.entry-content,
.entry-summary,
.mu_register {
	line-height: 1.8;
	font-size: 16px;
	font-size: 1.14258571rem;
}
.entry-content h1,
.comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
	margin: 24px 0;
	margin: 1.714285714rem 0;
	line-height: 1.714285714;
	font-weight: 400;
}
.entry-content h1,
.comment-content h1 {
	font-size: 28px;
	font-size: 2rem;
	line-height: 1.5;
}
.entry-content h2,
.comment-content h2,
.mu_register h2,
.site-blocks .entry-content h2{
	font-size: 21px;
	font-size: 1.5rem;
	line-height: 1.6;
	color:#0a3e52;
	font-weight: 500;
	text-align: left;

}
.entry-content h3,
.comment-content h3 {
	font-size: 19px;
	line-height: 1.846153846;
	color: #03589e;
}
.entry-content h4,
.comment-content h4 {
	font-size: 16px;
	font-size: 1.14258571rem;
	line-height: 1.846153846;
}
.entry-content h5,
.comment-content h5 {
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.846153846;
}
.entry-content h6,
.comment-content h6 {
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.846153846;
}
.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.65;
	font-size: 15px;
	font-size: 1.0714258rem;
}
.entry-content a,
.comment-content a {
	/*color: #FF8288;*/
	color: #000;
	/*font-size: 16px;
	font-size: 1.14258571rem;*/
}
.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.8;
	font-size: 16px;
	font-size: 1.14258571rem;
}
.entry-content ul ul,
.comment-content ul ul,
.entry-content ol ol,
.comment-content ol ol,
.entry-content ul ol,
.comment-content ul ol,
.entry-content ol ul,
.comment-content ol ul {
	margin-bottom: 0;
}
.entry-content ul,
.comment-content ul,
.mu_register ul {
	list-style: disc outside;
}
.entry-content ol,
.comment-content ol {
	list-style: decimal outside;
}
.entry-content li,
.comment-content li,
.mu_register li {
	margin: 0 0 0 21px;
	margin: 0 0 0 1.5rem;
	line-height: 1.8;
}
.entry-content blockquote,
.comment-content blockquote {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	padding: 24px;
	padding: 1.714285714rem;
	font-style: italic;
}
.entry-content blockquote p:last-child,
.comment-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code,
.comment-content code {
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.8;
}
.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #666;
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	overflow: auto;
	padding: 8px 16px;
	padding: 0.5714285713rem 1.142885714rem;
}
.entry-content pre:hover,
.comment-content pre:hover { 
	background-color:#fafafa;
}
.entry-content pre code,
.comment-content pre code {
	display: block;
}
.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn,
.entry-content acronym,
.comment-content acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
.entry-content address,
.comment-content address {
	display: block;
	line-height: 1.714285714;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
img.alignleft,
.wp-caption.alignleft {
	margin: 7px 28px 28px 0;
	margin: 0.5rem 2rem 2rem 0;
}
img.alignright,
.wp-caption.alignright {
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}
img.aligncenter,
.wp-caption.aligncenter {
	clear: both;
	margin-top: 12px;
	margin-top: 0.857142857rem;
	margin-bottom: 12px;
	margin-bottom: 0.857142857rem;
}
.entry-content embed,
.entry-content iframe,
.entry-content object,
.entry-content video {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	margin-left: auto;
	margin-right: auto;
}
.wp-video{
	margin-left: auto;
	margin-right: auto;
	max-width: 320px!important;
}
.wp-video-shortcode{
	max-width: 320px!important;
}
.entry-content dl,
.comment-content dl {
	margin: 0 24px;
	margin: 0 1.714285714rem;
}
.entry-content dt,
.comment-content dt {
	font-weight: 500;
	line-height: 1.714285714;
}
.entry-content dd,
.comment-content dd {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content table,
.comment-content table {
	border-bottom: 1px solid #ededed;
	color: #757575;
	font-size: 16px;
	font-size: 1.14258571rem;
	line-height: 2;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	width: 100%;
}
.entry-content table thead td,
.comment-content table thead td{
	font-weight: bolder;
}
.entry-content table caption,
.comment-content table caption {
	font-size: 16px;
	font-size: 1.142857143rem;
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.entry-content td,
.comment-content td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 10px;
}
.site-content article {
	border-bottom: 1px solid #ededed;
	margin-bottom: 45px;
	margin-bottom: 3.042857143rem;
	padding-bottom: 45px;
	padding-bottom: 3.042857143rem;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}
article.error404 { border-bottom: none}
.page-links {
	clear: both;
	line-height: 1.714285714;
}
footer.entry-meta {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.single-author .entry-meta .by-author {
	display: none;
}
.mu_register h2 {
	color: #757575;
	font-weight: normal;
}


/* =Archives
-------------------------------------------------------------- */

.archive-header,
.page-header {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	padding-bottom: 22px;
	padding-bottom: 1.571428571rem;
	border-bottom: 1px solid #ededed;
}
.archive-meta {
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin-top: 0;
}

/* =Single audio/video attachment view
-------------------------------------------------------------- */

.attachment .entry-content .mejs-audio {
	max-width: 400px;
}

.attachment .entry-content .mejs-container {
	margin-bottom: 24px;
}


/* =Single image attachment view
-------------------------------------------------------------- */

.article.attachment {
	overflow: hidden;
}
.image-attachment div.attachment {
	text-align: center;
}
.image-attachment div.attachment p {
	text-align: center;
}
.image-attachment div.attachment img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}
.image-attachment .entry-caption {
	margin-top: 8px;
	margin-top: 0.571428571rem;
}


/* =Aside post format
-------------------------------------------------------------- */

article.format-aside h1 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
article.format-aside h1 a {
	text-decoration: none;
	color: #4d525a;
}
article.format-aside h1 a:hover {
	color: #2e3542;
}
article.format-aside .aside {
	padding: 24px 24px 0;
	padding: 1.714285714rem;
	background: #d2e0f9;
	border-left: 22px solid #a8bfe8;
}
article.format-aside p {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #4a5466;
}
article.format-aside blockquote:last-child,
article.format-aside p:last-child {
	margin-bottom: 0;
}


/* =Post formats
-------------------------------------------------------------- */

/* Image posts */
article.format-image footer h1 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	font-weight: normal;
}
article.format-image footer h2 {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}
article.format-image footer a h2 {
	font-weight: normal;
}

/* Link posts */
article.format-link header {
	padding: 0 10px;
	padding: 0 0.714285714rem;
	float: right;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: 500;
	font-style: italic;
	text-transform: uppercase;
	color: #848484;
	background-color: #ebebeb;
	border-radius: 3px;
}
article.format-link .entry-content {
	max-width: 80%;
	float: left;
}
article.format-link .entry-content a {
	font-size: 22px;
	font-size: 1.571428571rem;
	line-height: 1.090909091;
	text-decoration: none;
}

/* Quote posts */
article.format-quote .entry-content p {
	margin: 0;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
}
article.format-quote .entry-content blockquote {
	display: block;
	padding: 24px 24px 0;
	padding: 1.714285714rem 1.714285714rem 0;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.6;
	font-style: normal;
	color: #6a6a6a;
	background: #efefef;
}

/* Status posts */
.format-status .entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.format-status .entry-header header {
	display: inline-block;
}
.format-status .entry-header h1 {
	font-size: 15px;
	font-size: 1.071428571rem;
	font-weight: normal;
	line-height: 1.6;
	margin: 0;
}
.format-status .entry-header h2 {
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	line-height: 2;
	margin: 0;
}
.format-status .entry-header header a {
	color: #757575;
}
.format-status .entry-header header a:hover {
	color: #21759b;
}
.format-status .entry-header img {
	float: left;
	margin-right: 21px;
	margin-right: 1.5rem;
}


/* =Comments
-------------------------------------------------------------- */

.comments-title {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
	font-weight: normal;
}
.comments-area article {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.comments-area article header {
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
	overflow: hidden;
	position: relative;
}
.comments-area article header img {
	float: left;
	padding: 0;
	line-height: 0;
}
.comments-area article header cite,
.comments-area article header time {
	display: block;
	margin-left: 85px;
	margin-left: 6.071428571rem;
}
.comments-area article header cite {
	font-style: normal;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.42857143;
}
.comments-area cite b {
	font-weight: normal;
}
.comments-area article header time {
	line-height: 1.714285714;
	text-decoration: none;
	font-size: 12px;
	font-size: 0.857142857rem;
	color: #5e5e5e;
}
.comments-area article header a {
	text-decoration: none;
	color: #5e5e5e;
}
.comments-area article header a:hover {
	color: #21759b;
}
.comments-area article header cite a {
	color: #444;
}
.comments-area article header cite a:hover {
	text-decoration: underline;
}
.comments-area article header h4 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px 12px;
	padding: 0.428571429rem 0.857142857rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	color: #fff;
	background-color: #0088d0;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #009cee, #0088d0);
	background-image: -ms-linear-gradient(top, #009cee, #0088d0);
	background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
	background-image: -o-linear-gradient(top, #009cee, #0088d0);
	background-image: linear-gradient(top, #009cee, #0088d0);
	border-radius: 3px;
	border: 1px solid #007cbd;
}
.comments-area .bypostauthor cite span {
	position: absolute;
	margin-left: 5px;
	margin-left: 0.357142857rem;
	padding: 2px 5px;
	padding: 0.142857143rem 0.357142857rem;
	font-size: 10px;
	font-size: 0.714285714rem;
}
.comments-area .bypostauthor cite b {
	font-weight: 500;
}
a.comment-reply-link,
a.comment-edit-link {
	color: #686868;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
a.comment-reply-link:hover,
a.comment-edit-link:hover {
	color: #21759b;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {
	margin-top: 48px;
	margin-top: 3.428571429rem;
}
#respond h3#reply-title {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
}
#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	margin-left: 0.714285714rem;
	font-weight: normal;
	font-size: 12px;
	font-size: 0.857142857rem;
}
#respond form {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
#respond form p {
	margin: 11px 0;
	margin: 0.785714286rem 0;
}
#respond form p.logged-in-as {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
#respond form label {
	display: block;
	line-height: 1.714285714;
}
#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	padding: 10px;
	padding: 0.714285714rem;
	width: 100%;
}
#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #5e5e5e;
}
.required {
	color: red;
}


/* =Front page template
-------------------------------------------------------------- */

.entry-page-image {
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.template-front-page .site-content article {
	border: 0;
	margin-bottom: 0;
}
.template-front-page .widget-area {
	clear: both;
	float: none;
	width: auto;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	border-top: 1px solid #ededed;
}
.template-front-page .widget-area .widget li {
	margin: 8px 0 0;
	margin: 0.571428571rem 0 0;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.714285714;
	list-style-type: square;
	list-style-position: inside;
}
.template-front-page .widget-area .widget li a {
	color: #757575;
}
.template-front-page .widget-area .widget li a:hover {
	color: #21759b;
}
.template-front-page .widget-area .widget_text img {
	float: left;
	margin: 8px 24px 8px 0;
	margin: 0.571428571rem 1.714285714rem 0.571428571rem 0;
}


/* =Widgets
-------------------------------------------------------------- */

.widget-area .widget ul ul {
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
.widget_rss li {
	margin: 12px 0;
	margin: 0.857142857rem 0;
}
.widget_recent_entries .post-date,
.widget_rss .rss-date {
	color: #aaa;
	font-size: 11px;
	font-size: 0.785714286rem;
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
#wp-calendar {
	margin: 0;
	width: 100%;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #686868;
}
#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
	text-align: left;
}
#wp-calendar #next {
	padding-right: 24px;
	padding-right: 1.714285714rem;
	text-align: right;
}
.widget_search label {
	display: block;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget_twitter li {
	list-style-type: none;
}
.widget_twitter .timesince {
	display: block;
	text-align: right;
}
#searchsubmit { padding:4px 8px;}
.search-header{
	margin-bottom: 35px;
	margin-bottom: 2.5rem;
}
h1.search-title{
	margin-bottom: 0;
	color: #000;
}
.site-info { text-align: center}
.site-logo {
	width:61px;/* height:46px;*/
	max-width:98%;
	display:block; float:none; margin:1.5rem auto 0 auto; overflow: hidden;
}
.site-logo img {width:100%; height:auto}
.site-title,
.site-description { clear:right;}
.tagcloud { overflow:hidden;}
.tagcloud a {padding:3px; float:left; display:inline-block; 
	-webkit-transition: background 0.2s ease;
	transition: background 0.2s ease;}
.tagcloud a:hover { text-decoration: none!important; background-color:#333; color: #fff!important }


/* =Plugins
----------------------------------------------- */

img#wpstats {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.714285714rem;
}
/*wp-pagenavi*/
.wp-pagenavi {
	clear: both;
	text-align: center;
	margin: 3rem auto;
}
.wp-pagenavi a,
.wp-pagenavi span {
	border:none;
	min-width: 30px;
	height: 30px;
	padding: 0 12px!important;
	display: inline-block;
	line-height: 30px;
	border-radius: 4px;
	vertical-align: middle;
	box-sizing: border-box;
}
.wp-pagenavi span.pages{
	width:auto;
	margin-right:10px;
}
.wp-pagenavi a{
	text-decoration: none;
	color:#4f4f4f;
	padding: 6px 12px;
	background-image:none;
	background-color:#f5f4f2;
	border:none;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	font-size:15px;
	font-size:1.07142857rem;
	display: inline-block;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
	color:#fff;
	background-image:none;
	background-color:#0a3e52;
	text-decoration: none;
	font-weight: normal;
}
.wp-pagenavi span.pages {
	border: none;
}

/*gravity forms*/
.gform_wrapper.gf_browser_chrome .gform_body {
	width: 100%;
}
body .gform_wrapper .gform_validation_errors{
	padding-top: 6px;
	padding-bottom: 6px;
	border-radius: 0;
	box-shadow: none;
}
body .gform_wrapper .gfield_error [aria-invalid=true] {
	border: 1px solid #03589e;
}
body .gform_wrapper.gravity-theme .gfield_description{
	padding-top: 2px;
	padding-bottom: 2px;
}
body .gform_wrapper .top_label .gfield_label,
body .gform_wrapper .left_label .gfield_label {
	font-weight: normal;
	font-size: 14px;
	font-size: 1rem;
}
.gform_wrapper li.gfield.gfield_error,
.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
	background-color: #ffe6b1!important;
	border-top: 1px solid #b78123!important;
	border-bottom: 1px solid #b78123!important;
}
.gform_wrapper div.validation_error {
	color: #b78123!important;
}
.gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer input[type=submit] {
	margin: 0;
	font-size: 16px!important;
}
.gform_wrapper .left_label .gfield_label {
	width: 30%!important;
	margin: 0!important;
}
.gform_wrapper form .gform_body .left_label li.gfield_html_formatted,
.gform_wrapper form .gform_body .right_label li.gfield_html_formatted{
	margin-left: 0%!important;
	width: 100%;
}
.gform_wrapper .ginput_complex label {
	padding: .625em 0 1em;
}
.gform_confirmation_message{
	line-height: 1.6;
	font-size: 16px;
	color: #03589e;
	font-weight: 500;
	text-align: center;
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]){
	padding: 6px 6px;
}
body .gform_wrapper .top_label div.ginput_container{
	margin-top: 2px!important;
}
@media screen and (min-width: 768px) {
	.gform_wrapper .left_label div.ginput_complex,
	.gform_wrapper .right_label div.ginput_complex {
		width: 35.5%!important;
	}
}
/*baidu map*/
.iw_poi_title {color:#e83c16;font-size:14px;font-weight:bold;overflow:hidden;padding-right:13px;white-space:nowrap}
.iw_poi_content {font:12px arial,sans-serif;overflow:visible;padding-top:4px;white-space:-moz-pre-wrap;word-wrap:break-word}


/* =Media queries
-------------------------------------------------------------- */
@-ms-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}
/* Minimum width of 768 pixels. */
@media screen and (min-width: 768px) {
	hgroup{
		overflow: visible;
	}
	.author-avatar {
		float: left;
		margin-top: 8px;
		margin-top: 0.571428571rem;
	}
	.author-description {
		float: right;
		width: 80%;
	}
	.site,
	.site-width {
		margin: 0 auto;
		max-width: 1280px;
		/*overflow: hidden;*/
	}
	hgroup.site{
		/*max-width: 100%;*/
	}
	.site-narrow{
		max-width: 1024px;
	}
	.site-logo{

	}
	.site-content {
		float: left;
		/*width: 65.104166667%;*/
		width: 76%;
	}
	body.template-front-page .site-content,
	body.attachment .site-content,
	body.full-width .site-content,
	div.full-width,
	section.full-width {
		width: 100%;
	}
	.widget-area {
		float: right;
		/*width: 26.041666667%;*/
		width: 20%;
	}
	
	#respond form input[type="text"] {
		width: 46.333333333%;
	}
	#respond form textarea.blog-textarea {
		width: 79.666666667%;
	}
	.template-front-page .site-content,
	.template-front-page article {
		overflow: hidden;
	}
	.template-front-page.has-post-thumbnail article {
		float: left;
		width: 47.916666667%;
	}
	.entry-page-image {
		float: right;
		margin-bottom: 0;
		width: 47.916666667%;
	}
	.template-front-page .widget-area .widget,
	.template-front-page.two-sidebars .widget-area .front-widgets {
		float: left;
		width: 51.875%;
		margin-bottom: 24px;
		margin-bottom: 1.714285714rem;
	}
	.template-front-page .widget-area .widget:nth-child(odd) {
		clear: right;
	}
	.template-front-page .widget-area .widget:nth-child(even),
	.template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
		float: right;
		width: 39.0625%;
		margin: 0 0 24px;
		margin: 0 0 1.714285714rem;
	}
	.template-front-page.two-sidebars .widget,
	.template-front-page.two-sidebars .widget:nth-child(even) {
		float: none;
		width: auto;
	}
	.commentlist .children {
		margin-left: 48px;
		margin-left: 3.428571429rem;
	}
	.footer-left {
		text-align: left;
	}
	.footer-left p{
		max-width: 350px;
	}
	.footer-menu {
		display: block;
		/*margin-bottom: 14px;
		margin-bottom: 1rem;*/
	}

}

/* Minimum width of 1024 pixels. */
@media screen and (min-width: 1024px) {
	.site-header {
		/*min-height: 91px;*/
	}
	.site-header h1,
	.site-header h2 {
		/*text-align: left;
		float:left;
		width: 80%;
		width:-webkit-calc(100% - 95px);
		width:calc(100% - 95px);*/
	}
	.site-header h1 {
		font-size: 26px;
		font-size: 1.857142857rem;
		line-height: 1.546153846;
		margin-bottom: 0;
	}
	.main-navigation {
		
	}
	.main-navigation ul.nav-menu{
		overflow: visible;
	}
	.main-navigation ul.nav-menu.toggled-on {
		margin-top: 0;
		margin-bottom: 0
	}
	.main-navigation ul.nav-menu li {
		border-top:none;
	}
	.main-navigation ul.nav-menu,
	.main-navigation div.nav-menu > ul {
		height:auto!important;
		display: inline-block !important;
		text-align: center;
		width: 100%;
	}
	.main-navigation ul {
		margin: 0;
		text-indent: 0;
	}
	.main-navigation li {
		padding:0;
	}
	.main-navigation li a,
	.main-navigation li {
		display: inline-block;
		text-decoration: none;
		font-size: 15px;
		font-size: 1.071428571rem;
	}
	.main-navigation li a {
		padding:0 21px;
		padding:0 1.5rem;
		display: block;
		color: #fff;
		line-height: 3;
		/*text-transform: uppercase;*/
		white-space: nowrap;
		-webkit-transition:0.2s all;
		transition:0.2s all;
	}

	.main-navigation .current-menu-item a:hover,
	.main-navigation .current-menu-ancestor a:hover,
	.main-navigation .current_page_item a:hover,
	.main-navigation .current_page_ancestor a:hover,
	.main-navigation a:hover,
	.main-navigation a:focus{
		color: #89daff;
		/*background-color: #fff;*/
	}
	.main-navigation .current-menu-item > a,
	.main-navigation .current-menu-ancestor > a,
	.main-navigation .current_page_item > a,
	.main-navigation .current_page_ancestor > a  {
		color: #89daff;
		/*background-color: #fff;
		/*font-weight: bolder;*/
		/*background-image: url(images/bg_nav_current.png);
		background-repeat: repeat-x;*/
	}
	.main-navigation .nav-menu > .current-menu-item,
	.main-navigation .nav-menu > .current-menu-ancestor,
	.main-navigation .nav-menu > .current_page_item,
	.main-navigation .nav-menu > .current_page_ancestor{
		position: relative;
	}
	/*
	.main-navigation .nav-menu > .current-menu-item:after,
	.main-navigation .nav-menu > .current-menu-ancestor:after,
	.main-navigation .nav-menu > .current_page_item:after,
	.main-navigation .nav-menu > .current_page_ancestor:after{
		position: absolute;
		content:"";
		width:calc(100% - 42px);
		height:2px;
		background-color:#89daff;
		left:21px;
		top: 43px;
	}*/
	.main-navigation li {
		position: relative;
	}
	.main-navigation li ul {
		margin: 0;
		padding: 0;
		position: absolute;
		top: 100%;
		z-index: 50;
		height: 1px;
		width: 1px;
		overflow: hidden;
		clip: rect(1px, 1px, 1px, 1px);
		left:-webkit-calc(50% - 96px);
		left:calc(50% - 96px);
	}
	.main-navigation li ul ul {
		top: 0;
		left: 100%;
	}
	.main-navigation ul li:hover > ul,
	.main-navigation ul li:focus > ul,
	.main-navigation .focus > ul {
		/*border-left: 0;
		clip: inherit;
		overflow: inherit;
		height: inherit;
		width: inherit;*/
	}
	.main-navigation li ul li a {
		background: #0a3e52;
		background: rgba(10,62,82,0.5);
		text-align: center;
		border-top: 1px solid rgba(255,255,255,0.2);
		display: block;
		line-height: 3;
		padding:0;
		/*font-size: 11px;
		font-size: 0.785714286rem;*/
		/*line-height: 2.181818182;*/
		/*padding: 8px 10px;
		padding: 0.571428571rem 0.714285714rem;*/
		width: 200px;
		white-space: normal;
	}
	.main-navigation li ul li a:hover,
	.main-navigation li ul li a:focus {
		background: #0a3e52;
		color: #89daff;
	}


	body.custom-background-empty {
		background-color: #fff;
	}
	body.custom-background-empty .site,
	body.custom-background-white .site {
		padding: 0;
		margin-top: 0;
		margin-bottom: 0;
		box-shadow: none;
	}
	.site-logo{
		float:left;
		margin:9px;
		margin-left:0;
	}
	.main-navigation {
		/*float: left;*/
		clear: none;
		width: 50%;
		width: -webkit-calc(100% - 70px);
		width: calc(100% - 70px);
		margin-top: 27px;
		display: inline-block;
	}
	.main-navigation ul.nav-menu,
	.main-navigation div.nav-menu > ul {
		text-align: center;
	}
	.main-navigation li a{
		padding: 0 21px;
	}
	.site-header{
		position: fixed;
		z-index: 99;
		top:0;
		background-color: #03589e;
	}
	.site-logo{
		width:61px;
		height:46px;
	}
	.admin-bar .site-header{
		top:32px;
	}
	.main-navigation {
		width: -webkit-calc(100% - 350px);
		width: calc(100% - 350px);
		margin-top: 0;
	}
	.main-navigation li {
		padding: 0 0;
		padding: 0 0;
	}
	.main-navigation li a {
		background-color: transparent;
		padding: 0 28px;
		padding: 0 2rem;
		line-height: 4.3;
	}
	.main-navigation li ul {
		left:-webkit-calc(50% - 100px);
		left:calc(50% - 100px);
	}
	.main-navigation .nav-menu > .current-menu-item:after,
	.main-navigation .nav-menu > .current-menu-ancestor:after,
	.main-navigation .nav-menu > .current_page_item:after,
	.main-navigation .nav-menu > .current_page_ancestor:after{
		/*width:calc(100% - 56px);
		left:28px;
		top: 55px;*/
	}
	/* dynamic floating nav bar */
	.site-header{
		-webkit-transition: all 0.2s; 
		-moz-transition: all 0.2s; 
		transition: all 0.2s;
	}
	.site-header * {
		-webkit-transition: all 0.2s; 
		-moz-transition: all 0.2s; 
		transition: all 0.2s;
	}
	.site-header.scroll {
		min-height: 0;
		/*position: fixed;
		z-index: 10;
		top: 0;
		background-color: #0a3e52;*/
		text-shadow: none;
	}
	.site-header.scroll hgroup{
		box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
	}
	.site-header.scroll .main-navigation {
		/*margin-top:8px;*/
	}
	.site-header.scroll .main-navigation li a {
		line-height: 3.55;
		/*color: #333;*/
	}
	.site-header.scroll .main-navigation li ul a {
		background: #0a3e52;
	}	
	.site-header.scroll .main-navigation .current-menu-item > a,
	.site-header.scroll .main-navigation .current-menu-ancestor > a,
	.site-header.scroll .main-navigation .current_page_item > a,
	.site-header.scroll .main-navigation .current_page_ancestor > a,
	.site-header.scroll .main-navigation a:hover,
	.site-header.scroll .main-navigation a:focus{
		/*color: #0a3e52;*/
		/*background-color: #000;*/
	}
	.site-header.scroll .main-navigation .nav-menu > .current-menu-item:after,
	.site-header.scroll .main-navigation .nav-menu > .current-menu-ancestor:after,
	.site-header.scroll .main-navigation .nav-menu > .current_page_item:after,
	.site-header.scroll .main-navigation .nav-menu > .current_page_ancestor:after {
		/*top: 46px;*/
	}
	.site-header.scroll .site-logo {
		margin-top:3px;
		margin-bottom:3px;
		width: 61px;
		height: 46px;
	}
}

/*return Top button*/
.btn-float{
	position:fixed;
	line-height:50px;
	z-index: 6;
	border-radius: 5px 0 0 5px;
	background-color:#03589e;
	background-size: 50% 50%;
	background-position: center center;
	background-repeat: no-repeat;
	color:#fff;
	width:40px;
	height:40px;
	display:block;
	right:0;
	bottom:20px;
	text-align: center;
	line-height: 40px;
	border: 1px solid #fff;
    border-right: 0;
	-webkit-opacity:1;
	-moz-opacity:1;
	opacity:1;
	-webkit-transition: background 0.2s, -webkit-opacity 0.2s; 
	-moz-transition: background 0.2s, -moz-opacity 0.2s; 
	transition: background 0.2s, opacity 0.2s;
}
.btn-float:hover{
	background-color:#002c48;
	color: #fff;
}
.btn-float i{
	font-size: 18px;
}
#btn-float-returnTop.hide{
	-webkit-opacity:0;
	-moz-opacity:0;
	opacity:0;
	pointer-events: none;
}
#btn-float-contact{
	bottom: 61px;
}
/*QR Code button*/
#btn-float-qrCode {
	background-image:url(images/icon_qrcode.gif);
	display: none;
}
#qrCode_cont {
	position: absolute;
	bottom: 0;
	right: 50px;
	background:no-repeat #fff;
	overflow: hidden;
	height:0;
	width: 0;
	border:none;
	-webkit-transition: height 0.2s, width 0.2s;
	-moz-transition: height 0.2s, width 0.2s;
	transition: height 0.2s, width 0.2s;
}
#btn-float-qrCode:hover #qrCode_cont{
	text-align: center;
	height:176px;
	width: 147px;
	padding:5px;
	border:1px solid #f2f2f2;
	line-height: 1;
}
#btn-float-qrCode #qrCode_cont img {
	display: inline-block;
	width: 100%;
}
#btn-float-qrCode #qrCode_cont span {
	display: inline-block;
	color:#333;
	font-size: 12px;
}
/* Minimum width of 600 pixels. */
@media screen and (min-width: 600px) {
	html[lang="zh-hans"] #btn-float-qrCode{
		display:block;
	}
	#btn-float-returnTop {
	    bottom:102px;
	}
}
/*arrow on top nav*/
.flaticon-down-arrow:after {
	font-size:12px;
}
@media screen and (max-width: 767px) {
	.main-navigation .flaticon-down-arrow:after,
	#mobileMenu .flaticon-down-arrow:after{
		display: none;
	}
}
@media screen and (min-width: 1360px) {
	/*.btn-float{
		right: auto;
		left: calc(50% + 640px);
		border-radius: 0 5px 5px 0;
	}*/
}


/*main menu for mobile side*/
#topFloatBar {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	padding: 0;
	background: url(/wp-content/uploads/2024/03/1711595995-weichi-logo.png) no-repeat 16px 10px #03589e;
	background-size: 47px auto;
	z-index: 10;
}
body.admin-bar #topFloatBar {
	/*top:32px;*/
}
#topFloatBar_l,
#topFloatBar_r {
	height: 56px;
	width: 56px;
	line-height: 56px;
	min-height: 56px;
	font-size: 21px;
	text-align: center;
}
#topFloatBar a,
#topFloatBar_l a,
#topFloatBar_r a{
	color: #fff;
}
#topFloatBar_m {
	display: block;
	height: 56px;
	width: 25%;
	/* width: calc(100% - 100px); */
	margin-left: 0;
	float: left;
}
#topFloatBar_l:hover,
#topFloatBar_r:hover {
	background-color: rgba(255,255,255,0.1);
}
#topFloatBar_l {
	float: left;
	background-position: left
}
#topFloatBar_r {
	float: right;
	background-position: 5px center
}
#topFloatBar #mobileMenu {
	margin-top: 46px;
	display: block;
	top: 46px;
	left: 0;
	width: 100%;
	/*box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);*/
	/*opacity:0;*/
	height: 0;
	overflow: hidden;
	-webkit-transition: top 0.2s, display 0.2s, -webkit-opacity 0.2s, height 0.2s;
	-moz-transition: top 0.2s, display 0.2s, -moz-opacity 0.2s, height 0.2s;
	transition: top 0.2s, display 0.2s, opacity 0.2s, height 0.2s;
}
#topFloatBar.toggled-on {
	height: auto;
	width: 100%;
}
#topFloatBar.toggled-on #mobileMenu {
	top: 56px;
	/*opacity:1;*/
	height: 318px;
	/*many need to chage to fit the mobile menu height*/
	overflow: visible;
}
#topFloatBar #mobileMenu a {
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 0 15px;
	height: 42px;
	line-height: 42px;
	border-bottom: 1px solid transparent;
	border-top: 1px solid rgba(255,255,255,0.1);
	font-size: 16px;
	font-size: 1.142857rem;
}
#topFloatBar #mobileMenu ul li.current_page_item>a,
#topFloatBar #mobileMenu ul li.current-menu-item>a,
#topFloatBar #mobileMenu ul li ul li.current-page-ancestor a,
#topFloatBar #mobileMenu ul li a:hover {
	/*color:#000;*/
	background-color: rgba(255,255,255,0.1);
	border-top: 1px solid rgba(255,255,255,0.1);
}
#topFloatBar #mobileMenu li a {
	padding-left: 25px;
}
#topFloatBar #mobileMenu ul li ul.sub-menu > li > a {
	padding-left: 58px;
}
#topFloatBar #mobileMenu ul li ul.sub-menu > li.menu-item-has-children > a {
	padding-left: 40px;
	width: -webkit-calc(100% - 80px);
	width: calc(100% - 80px);
}
#topFloatBar #mobileMenu ul li a {
	/*background: #222a35;*/
	box-sizing: border-box;
}
#topFloatBar #mobileMenu ul li.menu-item-has-children > a {
	padding-right: 0;
	width: 90%;
	width: -webkit-calc(100% - 40px);
	width: calc(100% - 40px);
	display: inline-block;
	vertical-align: middle;
}
#topFloatBar #mobileMenu li a.menu-item-switch,
#topFloatBar #mobileMenu li a.menu-item-switch:hover {
	background-image: url(images/icons_menu_2.png);
	background-position: 0 0!important;
	width: 40px!important;
	display: inline-block!important;
	padding: 0!important;
	height: 42px;
	vertical-align: middle;
}
#topFloatBar #mobileMenu li.on>a.menu-item-switch {
	background-position: 0 100%!important;
	vertical-align: middle;
}
#topFloatBar #mobileMenu li ul.sub-menu li {
	height: 0;
	overflow: hidden;
}
#topFloatBar #mobileMenu li.on ul.sub-menu li {
	/*height: 36px;*/
	height:auto;
}
#topFloatBar #mobileMenu li.off ul.sub-menu li {
	height: 0!important;
}
#masthead{
	display: none;
}
@media screen and (min-width:1024px){
	#topFloatBar {
		display: none;
	}
	#masthead{
		display: block;
	}
}
.full-padding {
	padding-left:0;
	padding-right:0;
}
.full-padding img {
	max-width: 100%;
}
.category-title {
	margin-bottom: 8px;
	margin-top: 21px;
}
.site-blocks p,
.site-blocks ul {
	margin: 14px 0 21px 0;
	margin: 1rem 0 1.5rem 0;
	font-size: 15px;
	font-size: 1.07147285rem;
	line-height: 1.65;
}
.site-blocks h1 {
	color: #001f34;
	font-weight: 600;
	font-size:21px;
	font-size:1.5rem;
	margin:21px 0 21px 0;
	margin:1.5rem 0 1.5rem 0;
	line-height: 1.5;
}
.site-blocks h2 {
	line-height: 1.6;
	font-size: 21px;
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 9px;
	color: #001f34;
}
.site-blocks h2.title-section{
	position: relative;
	color: #001f34;
	text-align: left;
	box-sizing: border-box;
	padding-left: 20px;
	margin: 0 0 7px 0;
	line-height: 1.3;
}
.site-blocks h2.title-section:before{
	content: "";
	display: block;
	position: absolute;
	background-color: #035ea4;
	width: 6px;
	height: 22px;
	left: 0;
	top: 3px;
}
.site-blocks h3{
	font-size: 19px;
	font-weight: 500;
	line-height: 1.846153846;
	color: #03589e;
}
p.title-section-sub{
	text-align: left;
	color: #0567aa;
	box-sizing: border-box;
	padding-left: 20px;
	margin: 0 0 28px 0;
}

.site-blocks .entry-content h2 {
    margin: 24px 0;
    margin: 1.714285714rem 0;
}
.site-blocks .entry-content h2:first-child,
.site-blocks .entry-content h3:first-child,
.site-blocks .entry-content p:first-child,
.site-blocks .entry-content ul:first-child,
.site-blocks .entry-content ol:first-child{
	margin-top: 0;
}
.site-blocks .entry-content h2:last-child,
.site-blocks .entry-content h3:last-child,
.site-blocks .entry-content p:last-child,
.site-blocks .entry-content ul:last-child,
.site-blocks .entry-content ol:last-child{
	margin-bottom: 0;
}
.site-blocks .site{
	overflow: hidden;
	margin:56px auto;
	margin:4rem auto;
}
.site-blocks .sub-title{
	display: block;
	text-align: center;
	color: #999;
	font-size: 10px;
    font-family: Arial;
    text-transform: uppercase;
	margin-bottom: 21px;
	margin-top: 0;
}
.site-width,
.site-blocks{
	width: 100%;
	max-width: 1280px;
	box-sizing: border-box;
	margin: 0 auto;
	background-color: #fff;
}
.footerSubscriber {
	width:90%;
	max-width:300px;
	margin:0 auto;
}
.footerSubscriber form{
	margin-top:7px;
	margin-top:0.5rem;
}
.footerSubscriber #mail{
	width: -webkit-calc(100% - 105px);
	width: calc(100% - 105px);
	line-height: 2.1;
	border-radius: 15px;
	padding: 0;
	padding-left: 15px;
	border-width: 0;
	outline: none;
	height:30px;
}
.footerSubscriber #subscribe{
	width:80px;
	padding: 6px 0;
	font-weight: 400;
	border-radius: 15px;
	outline: none;
}
.footerSubscriber p{
	margin:21px 0;
	margin:1.5rem 0;
}
.footerSubscriber p a{
	display: inline-block;
	vertical-align: middle;
	margin-left: 6px;
	font-size: 0;
}
.footerLink {
	text-align: center;
	font-size: 13px;
	font-size: 0.928571429rem;
	padding-bottom: 14px;
	padding-bottom: 1rem;
	padding-top: 14px;
	padding-top: 1rem;
	line-height: 1.6;
}
.copyright{
	margin-top:14px;
	margin-top:1rem;
	margin-bottom:14px;
	margin-bottom:1rem;
	font-weight:400;
}
footer .site-info {
	margin:0 auto;
	padding-top: 35px;
	padding-bottom: 35px;
}
@media screen and (min-width: 768px){
	.site-blocks h2 {
		font-size: 28px;
		font-size: 2rem;
	}
	.site-blocks h2.title-section:before{
		top: 8px;
	}
}

/*homepage*/
.kv-holder{
	width: 100%;
	height: auto;
	min-height: 280px;
}
#home-headimage{
	position: relative;
	/*background: #012a4d center;*/
	/*background: #a0a3a6 center;*/
	padding: 0;
}
#home-headimage .swiper-slide{
	position: relative;
}
#home-headimage a.link-img{
	display: block;
	text-align: center;
	font-size: 0;
}
#home-headimage a.link-img img{
	width: 100%;
	max-width: 3640px;
}
.kv-img{
	position: absolute;
	right: 10%;
	top: 0;
	height: 100%;
	width: auto;
}
.kv-txt{
	position: absolute;
	left: 18.5%;
	height: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #fff;
	text-align: left;
}
.kv-txt a{
	color: #fff;
}
.kv-txt a:hover{
	text-decoration: none;
	color: #89daff;
}
.kv-title-small{
	font-size: 16px;
	margin-bottom:21px;
}
.kv-title-big{
	font-size: 28px;
	font-weight: 600;
	font-style: italic;
	margin-bottom:21px;
}
.swiper-bg-kv{
	background-image: url(images/bg-kv-parallax.jpg);
	background-size: cover;
	background-position: center center;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.swiper-pagination-kv .swiper-pagination-bullet{
	background: #035ea4;
	border-radius: 0;
	width: 18px;
    height: 4px;
    transition: 0.2s all;
	border-radius: 4px;
	border-bottom: 1px solid #000;
}
.swiper-pagination-kv .swiper-pagination-bullet.swiper-pagination-bullet-active{
	width: 36px;
}
.anchor-position{
	/*transform: translate(0,-60px);*/
	height: 85px;
	margin-top: -85px;
	display: block;
	width: 1px;
	visibility: hidden;
}
.product-cat-item{
	display: block;
	background: #e4e5e9;
	position: relative;
	height: auto;
	overflow: hidden;
	margin-bottom: 28px;
	font-size: 0;
}
.product-cat-item img{
	position: relative;
	z-index: 0;
	width: 100%;
	height: auto;
	transition: 0.2s all;
}
.product-cat-item:hover img{
	transform: scale(1.05);
}
.product-cat-item-title{
	/*background: url(images/bg-title-category.png) no-repeat;*/
	background: url(images/bg-title-category-2.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	width: 100%;
	/*height: 110px;*/
	height: 60px;
	color: #fff;
	text-align: center;
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.product-cat-item-title h3{
	display: inline-block;
	width: auto;
	color: #fff;
	font-size: 22px;
	font-weight: 500;
}
.product-video-poster{
	width: 100%;
	height: auto;
}
.customer-item{
	box-sizing: border-box;
	border: 1px solid #e0e0e0;
	text-align: center;
	padding: 0;
	margin: 8px auto;
	font-size: 0;
}
.customer-txt-item{
	position: relative;
	overflow: hidden;
	display: block;
	text-align: center;
	box-sizing: border-box;
	padding: 14px 0;
	background: #f4f4f4;
	margin-bottom: 10px;
	font-size: 16px;
	color: #0567aa;
	/*border-bottom: 1px solid #0567aa;*/
}
.customer-txt-item:after{
	content: "";
	position: absolute;
	right: -12px;
	top: -12px;
	width: 20px;
	height: 20px;
	background-color: #0567aa;
	transform: rotate(45deg);
}
.arraw-effect-1-l,
.arraw-effect-1-r {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 20px;
	vertical-align: middle;
}
.arraw-effect-1-l span,
.arraw-effect-1-r span{
	position: absolute;
	left: 0;
	top: 0;
	width: 19px;
	height: 20px;
	background-image: url(images/arrow-1.png);
	background-repeat: no-repeat;
	background-size: auto 100%;
	display: inline-block;
}
.arraw-effect-1-r span{
	left: auto;
	right: 0;
}
.arraw-effect-1-l span{
	background-position: left;
}
.arraw-effect-1-r span{
	background-position: right;
}
.product-cat-item:hover .arraw-effect-1-l span{
	animation: arrawEffectLeft infinite 1s linear;
}
	@keyframes arrawEffectLeft{
		from {opacity: 1; transform: scale(1) translate(0,0);}
		to {opacity: 0; transform: scale(0.6) translate(-45px,0);}
	}
.product-cat-item:hover .arraw-effect-1-r span{
	animation: arrawEffectRight infinite 1s linear;
}
	@keyframes arrawEffectRight{
		from {opacity: 1; transform: scale(1) translate(0,0);}
		to {opacity: 0; transform: scale(0.6) translate(45px,0);}
	}
.product-cat-item:hover .arraw-effect-1-l span:first-child,
.product-cat-item:hover .arraw-effect-1-r span:first-child{
	animation-delay: .5s;
}
.advantage-item img,
.customer-item img{
	max-width: 100%;
	height: auto;
}
.advantage-item{
	display: block;
	position: relative;
	box-sizing: border-box;
	text-align: center;
	margin-bottom: 28px;
	font-size: 0;
	overflow: hidden;
}
.advantage-item img{
	position: relative;
	z-index: 0;
	transition: all 0.3s;
}
.advantage-item-txt{
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: #fff;
	transition: all 0.3s;
	background: transparent;
}
.advantage-item-txt .advantage-item-en{
	font-size: 21px;
	width: 100%;
	height: 50px;
	text-align: justify;
	text-align-last: justify;
	margin: 0;
	color: rgba(255,255,255,0.5);
	font-weight: 600;
	font-style: italic;
	line-height: 1;
	padding: 10px 15px;
    box-sizing: border-box;
    margin-bottom: -20px;
    transition: all 0.3s;
}
.advantage-item-txt .advantage-item-en:after{/*ios*/
	display: inline-block;
	content: '';
	width: 100%;
	height: 0;
	visibility: hidden;
}
.advantage-item-txt h3{
	color: #fff;
	font-size: 42px;
	font-size: 3rem;
	text-align: center;
	font-weight: 600;
	line-height: 1;
	transition: 0.3s all;
}
html[lang="en-US"] .advantage-item-txt h3{
	font-size: 28px;
	font-size: 2rem;
}
.advantage-item-txt .advantage-item-desc{
	font-size: 13px;
	margin: 0 auto 15px auto;
	line-height: 1.25;
	padding-bottom: 5px;
}
.advantage-item-txt .advantage-item-desc span{
	display: inline-block;
	padding: 0 20px;
}
html[lang="en-US"] .advantage-item-txt .advantage-item-desc span{
	padding: 0 4px;
}
.advantage-item:hover .advantage-item-txt{
	background: rgba(0,0,0,0.5);
}
.advantage-item:hover .advantage-item-txt h3{
	transform: scale(0.85);
}
.advantage-item:hover img{
	transform: scale(1.05);
}
.advantage-item:hover .advantage-item-en{
	/*padding-left: 100px;
	padding-right: 100px;*/
	transform: translate(0, 20%) scale(0.7);
}
.advantage-item.advantage-item-inner{
	margin-bottom: 0;
}
.advantage-item-detail{
	box-sizing: border-box;
	padding: 21px;
	border: 1px solid #dcdcdc;
	border-top: 0;
	text-align: left;
	margin: 0 0 21px 0!important;
	min-height: 170px;
}
.application-item{
	display: block;
	overflow: hidden;
	position: relative;
	font-size: 0;
	margin-bottom: 28px;
}
.application-item img{
	position: relative;
	z-index: 0;
	width: 100%;
	height: auto;
	transition: 0.3s all;
}
.application-item-txt{
	position: relative;
	z-index: 1;
	background-color: #fff;
	box-sizing: border-box;
	border: 1px solid #e0e0e0;
	border-top: 0;
	text-align: center;
	padding: 14px 0;
	transition: 0.3s all;
}
.application-item-txt h3{
	color: #000;
	font-size: 16px;
	font-weight: 400;
	transition: 0.3s all;
	line-height: 1.25;
}
html[lang="en-US"] .application-item-txt h3{
	min-height: 40px;
}
.application-item:hover .application-item-txt h3{
	color: #035ea4;
}
.application-item:hover img{
	transform: scale(1.05);
}
.application-item:hover{
	text-decoration: none;
}
.application-item:hover .application-item-txt{
	background: #efefef;
	border-color:#efefef;
}
.application-list{
	margin-top: 30px;
}
.video-icon-play{
	position: relative;
	display: block;
}
.video-icon-play:after{
	position: absolute;
	width: 100%;
	height: 100%;
	line-height:56px;
	font-size:56px;
	color: #fff;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	font-family: FontAwesome;
	content:"\f144";
	transition: all 0.2s;
	opacity: 0.75;
}
.video-icon-play:hover:after{
	opacity: 0.95;
	transform: translate(0,-5px);
}
@media screen and (min-width: 768px){
	.kv-title-small{
		font-size: 21px;
	}
	.kv-title-big{
		font-size: 35px;
	}

}
@media screen and (min-width: 1200px){
	
	.advantage-item-txt .advantage-item-en{
		font-size: 35px;
	}
	.advantage-item-txt h3{
		font-size: 56px;
		font-size: 4rem;
	}
	html[lang="en-US"] .advantage-item-txt h3{
		font-size: 42px;
		font-size: 3rem;
	}
	.advantage-item-txt .advantage-item-desc{
		font-size: 14px;
		font-size: 1rem;
	}
}
a.more {
	color: #035ea4;
	display: inline-block;
	font-size: 15px;
	font-size: 1.071428rem;
}
a.more i{
	transition: all 0.2s;
}
a.more:hover {
	color:#002c48;
	text-decoration: none;
}
a.more:hover i{
	-webkit-transform:translate(5px,0);
	transform:translate(5px,0);
}

/*inner pages*/
div#content {
	min-height: 150px;
}
.top-image {
	background-position: center top;
	background-repeat: no-repeat;
	height: 70px;
	background-size:auto 100%;
	width:100%;
}
#top-inner {
	padding: 0;
	position: relative;
	width: 100%;
	overflow: hidden;
	background-image: url(images/applications-top.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-color: #03589e;
    background-size: cover;
   	height:220px;
	color: #fff;
	max-width: 100%;
	/*display: flex;
	flex-direction: column;
	justify-content: center;*/
}
#top-inner .entry-title{
	color: #fff;
	font-size: 28px;
	font-size:2rem;
	letter-spacing: 4px;
	font-weight: 500;
}
#top-inner .entry-title-sub{
	margin-top: 14px;
	color: #fff;
	font-size: 21px;
	font-size:1.5rem;
	font-weight: 300;
	line-height: 1.2;
}
.block-page{
	min-height: 250px;
}
#top-inner-txt{
	pointer-events: none;
	background: transparent;
	/*position: absolute;*/
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	left: 0;
	top: 0;
	z-index: 10;
}
.top-inner-swiper #top-inner-txt{
	position: absolute;
	left: 0;
}
@media screen and (min-width: 1280px){
	.top-inner-swiper #top-inner-txt{
		left: calc(50% - 640px);
	}
}
h1.title-page{
	font-size: 21px;
	font-size: 1.5rem;
}
h2.title-section-inner{
	position: relative;
	font-weight: 500;
	color: #001f34;
	text-align: left;
	box-sizing: border-box;
	padding-left: 20px;
	margin: 0 0 7px 0;
	line-height: 1.4!important;
	font-size: 21px;
	font-size: 1.5rem;
}
h2.title-section-inner:before{
	content: "";
	display: block;
	position: absolute;
	background-color: #035ea4;
	width: 6px;
	height: 22px;
	left: 0;
	top: 3px;
}
.asside{
	position: relative;
}
.asside .button{
	width: 100%;
	margin-bottom: 15px;
}
@media screen and (max-width: 767px){
	.asside .button{
		margin-top: 15px;
		margin-bottom: 0;
	}
}
i.icn-btn{
	vertical-align: middle;
	margin-bottom: 3px;
	width: 20px;
	height: 20px;
	display: inline-block;
	background: url(images/icons-button.png) center top;
	background-size: 100% auto;
}
i.icn-btn.icn-btn-doc{ background-position: 0 0; }
i.icn-btn.icn-btn-download{ background-position: 0 100%; }
@media screen and (min-width:1024px){
	#top-inner .entry-title{
		margin-top: 60px;
	}
	#top-inner {
		background-position: center bottom;
		height: 320px;
	}
	.top-image {
		height: 150px;
		background-size:auto 100%;
	}
	h1.title-page{
		font-size: 24px;
	}

}
@media screen and (min-width:1200px){
	#home-headimage {
		margin-top: 64px;

	}
	#top-inner {
		height:400px;
	}
	#top-inner .entry-title{
		
	}
}
.popup-layer{
	position: fixed;
	height: 100vh;
	width: 100vw;
	background: rgba(0,0,0,0.8);
	z-index: 100;
	top: 0;
	left: 0;
	transition: 0.3s all;
	opacity: 0;
	pointer-events: none;
}
.popup-layer-close{
	display: block;
	position: absolute;
	right: 40px;
	top: 40px;
	z-index: 2;
	height: 27px;
	width:27px;
	background: url(images/close.svg);
	background-size: 100% 100%;
	transition: 0.2s all;
}
.popup-layer-content{
	position: relative;
	z-index: 1;
	transition: 0.2s all;
	transform: translate(0,40px);
	text-align: center;
}
.popup-layer.stay .popup-layer-content{
	transform: translate(0,0);
}
.popup-layer-touch{
	position: absolute;
	z-index: 0;
	width: 100%;
	top: 0;
	left: 0;
	height: 100%;
}
.popup-layer-close:hover{
	transform: rotate(90deg);
}
.popup-layer.stay{
	opacity: 1;
	pointer-events: auto;
}
#popupVideo{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#popupVideo video{
	margin: auto;
	height: auto;
	/*min-width: 480px;*/
	max-width: 98%;
	max-height: 96vh;
}
.home #popupVideo video{
	width: 480px;
}
/*product pages*/
#top-kv{
	width: 100%;
	height: 100%;
}
#top-kv img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.list-product{
	margin-bottom: 50px;
}
.list-product-item{
	margin-top:35px;
	margin-bottom:35px;
}
.list-product-thumbnail{
	/*border: 1px solid #dcdcdc;*/
	background-color: #f6f6f6;
}
.list-product-item h3{
	margin: 0 0 0 0;
	font-size: 18px;
	color: #000;
	font-weight: 600;
}
.list-product-item p{
	margin: 0;
}
.list-product-desc{
	padding-bottom: 20px;
	font-size: 90%;
}
.list-product-item a.button{
	/*padding-left: 0;
	padding-right: 0;*/
}
ul.list-product-item-features{
	margin: 0;
	color: #001f34;
	list-style: disc;
}
ul.list-product-item-features li{
	padding-bottom: 10px;
}
.list-product-item a.more{
	margin-top: 21px;
}
.list-product-item .col-4,
.list-product-item .col-3{
/*	padding-top: 14px;*/
}
.list-product-item-meters span{
	display: block;
	padding-bottom: 10px;
}
.list-product-item-meters,
.list-product-item-features{
	min-height: 120px;
}
#product-category-list{
	position: relative;
	top: 70px;
	width: 100%;
	margin: 0;
}
ul.product-category-list{
	list-style: none;
}
ul.product-category-list li{
	padding-left: 20px;
	position: relative;
	padding-bottom: 14px;
}
ul.product-category-list a{
	color: #035ea4;
}
ul.product-category-list a:hover{
	color: #002c48;
	text-decoration: none;
}
ul.product-category-list li:before{
	position: absolute;
	left: 0;
	top: 12px;
	content: "";
	width: 12px;
	height: 1px;
	background: #dcdcdc;
	vertical-align: middle;
	display: inline-block;
}
.entry-content-product{
	padding-top: 28px;
	padding-top: 2rem;
	margin-bottom: 28px;
}
.product-feature-item{
	text-align: center;
	margin-bottom: 21px;
	margin-bottom: 1.5rem;
}
.icon-product-feature{
	display: block;
	margin: 14px auto 14px auto;
}
.product-feature-item h3{
	color: #03589e;
	font-size: 18px;
	line-height: 1.45;
}
ul.feature-list-more{
	list-style: none;
	font-size: 0;
}
ul.feature-list-more li{
	position: relative;
	display: inline-block;
	box-sizing: border-box;
	vertical-align: top;
	width: 50%;
	font-size: 14px;
	font-size: 1rem;
	margin-bottom: 14px;
	margin-bottom: 1rem;
	padding-left: 30px;
	padding-top: 2px;
	line-height: 1.5;
}
ul.feature-list-more li:before{
	position: absolute;
	content: "";
	width: 21px;
	height: 25px;
	left: 0;
	top: 0;
	margin-right: 6px;
	background: url(images/icon-feature.png) no-repeat;
	background-size: 100% auto;
	display: inline-block;
	vertical-align: middle;
}
ul.feature-list-more li.non-icon{
	display: block;
	width: 100%;
}
ul.feature-list-more li.non-icon:before{
	display: none;
}
#block-products-1 .tablepress{
	margin-top: 28px;
}
.tablepress{
	border-left: 1px solid #eee!important;
	border-bottom: 1px solid #eee!important;
}
.tablepress tfoot th,.tablepress thead th{
	background-color: #035ea4!important;
	color: #fff;
}
.tablepress td,
.tablepress th{
	padding: 12px 8px!important;
	line-height: 1.25;
	border-width: 0!important;
	color: #035ea4;
	vertical-align: middle;
	/*min-width: 110px;*/
	min-width: 80px;
	box-sizing: border-box;
	border-right: 1px solid #eee!important;
}
.tablepress td.column-1 b{
	color: #035ea4;
	font-weight: 600;
}
.tablepress tr:nth-child(even){
	background-color: #f4f6f7;
}
.tablepress tbody td.column-1,
.tablepress.table-download tbody td.column-2{
	color: #000;
	font-weight: 500;
	vertical-align: middle;
}
.tablepress thead th[colspan="8"],
.tablepress thead th[colspan="7"],
.tablepress thead th[colspan="6"],
.tablepress thead th[colspan="5"],
.tablepress thead th[colspan="4"],
.tablepress thead th[colspan="3"],
.tablepress tbody td[colspan="8"],
.tablepress tbody td[colspan="7"],
.tablepress tbody td[colspan="6"],
.tablepress tbody td[colspan="5"],
.tablepress tbody td[colspan="4"],
.tablepress tbody td[colspan="3"]{
	text-align: center;
}
.table-download a{
	display: block;
	padding: 4px 0;
}
.table-download a i{
	color: #035ea4;
}
.table-download-thumb{
	width: 180px;
	height: 180px;
}
.crx-agency-item i.fa{
	width: 18px;
	margin-right: 5px;
	color: #03589e;
}
.crx-agency-item{
	box-sizing: border-box;
	padding: 28px;
	margin-bottom: 14px;
	background-color:#f6f6f6 ;
}
.crx-agency-item h3{
	margin-bottom: 10px;
}
@media screen and (max-width:767px){
	.table-download td.column-0{
		width: 60px;
		min-width: 60px;
	}
	.table-download-thumb{
		width: 60px;
		height: 60px;
	}
	.table-download a{
		font-size: 12px;
	}
	.list-product-thumbnail{
		margin-bottom: 21px;
		margin-bottom: 1.5rem;
	}
}
.table-download td.column-0{
	vertical-align: middle;
	padding-left: 0!important;
}
.table-download td.column-1,
.table-download td.column-2{
	width: 50%;
	font-size: 15px;
}
#product-application-list{
	margin-top: 28px;
}
.product-application-item{
	margin-bottom: 28px;
}
.product-application-item a{
	display: block;
}
.product-application-item a:hover{
	text-decoration: none;
}
.product-application-item img{
	width: 100%;
	height: auto;
}
.product-application-item h3{
	font-weight: 500;
	color: #000;
	margin: 7px 0 7px 0;
	line-height: 1.3;
}
.product-application-item p{
	margin: 0;
	margin-bottom: 7px;
	font-size: 14px;
	line-height: 1.5;
}
.product-mire-item{
	margin-bottom: 28px;
	text-align: center;
	box-sizing: border-box;
	padding: 28px 40px;
	border: 1px solid #d5d5d5;
}
.product-mire-item .button{
	margin: 0 auto;
	display: inline-block;
}
.product-mire-item h3{
	color: #000;
	font-weight: 500;
}
.product-mire-item p{
	margin: 14px 0;
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.5;
}
#block-applications p{
	max-width: 870px;
}
.application-usage-list{
	text-align: center;
	font-size: 0;
}
.application-industry-item{
	margin-bottom: 28px;
}
.application-industry-item a{
	display: block;
	transition: 0.2s all;
	padding-bottom: 10px;
}
.application-industry-item a:hover  {
    
    .product-center-title {
    text-decoration: none;
	background-color: #e5eef5;
	
}
    .product-center-title h3 {
    text-decoration: none;
	
}
}
.application-industry-item h3{
	text-align: center;
	color: #000;
	font-weight: 500;
	margin-top: 0;
	margin-bottom: 0;
	font-size: 14px;
}
.application-industry-item img{
	width: 100%;
	height: auto;
}
a.application-usage-item{
	text-align: center;
	color: #03589e;
	width: 25%;
	display: inline-block;
	margin:5px 0;
	filter: grayscale(100%);
	opacity: 0.7;
	vertical-align: top;
}
.list-out a.application-usage-item,
a.application-usage-item.current{
	filter: none;
	opacity: 1;
}
a.application-usage-item:hover{
	text-decoration: none;
}
.application-usage-item span{
	text-align: center;
	display: block;
	font-size: 15px;
	line-height: 1.2;
	padding-top: 5px;
}
.application-usage-icon{
	display: block;
	margin: 5px auto;
	width: 62px;
	height: 55.5px;
	background: url(images/icons-applications.png) no-repeat center top;
	background-size: 100% auto;
}
.application-usage-icon-1,
.application-usage-icon-grabbing,
.application-usage-icon-grabbing-en,
.application-usage-icon-grabbing-ja{background-position: 0 0;}
.application-usage-icon-2,
.application-usage-icon-clamping,
.application-usage-icon-clamping-en,
.application-usage-icon-clamping-ja{background-position: 0 14.28%;}
.application-usage-icon-3,
.application-usage-icon-counterpoint,
.application-usage-icon-counterpoint-en,
.application-usage-icon-counterpoint-ja{background-position: 0 28.57%;}
.application-usage-icon-4,
.application-usage-icon-transport,
.application-usage-icon-transport-en,
.application-usage-icon-transport-ja{background-position: 0 42.85%;}
.application-usage-icon-5,
.application-usage-icon-rotation,
.application-usage-icon-rotation-en,
.application-usage-icon-rotation-ja{background-position: 0 57.14%;}
.application-usage-icon-6,
.application-usage-icon-assembly,
.application-usage-icon-assembly-en,
.application-usage-icon-assembly-ja{background-position: 0 71.42%;}
.application-usage-icon-7,
.application-usage-icon-loading-and-unloading,
.application-usage-icon-loading-and-unloading-en,
.application-usage-icon-loading-and-unloading-ja{background-position: 0 85.71%;}
.application-usage-icon-8,
.application-usage-icon-opening-and-closing-lid,
.application-usage-icon-opening-and-closing-lid-en,
.application-usage-icon-opening-and-closing-lid-ja{background-position: 0 100%;}

ul.tab-list,
ul.industry-list{
	list-style: none;
	font-size: 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap ;
}
ul.tab-list li,
ul.industry-list li{
	list-style: none;
	margin: 5px 0;
	display: inline-block;
	width: 49%;
	text-align: center;
}
ul.tab-list li a,
ul.industry-list li a{
	font-size: 15px;
	display: block;
	box-sizing: border-box;
	padding: 12px 2px;
	border: 1px solid #03589e;
	line-height: 1.3;
	transition: all 0.2s;
	margin:0;
	color: #03589e;
	background: transparent;
	min-width: 120px;
	white-space: nowrap;
	overflow: hidden;
}
ul.tab-list li.current a,
ul.tab-list li a:hover,
ul.industry-list li.current a,
ul.industry-list li a:hover{
	color: #fff;
	background: #03589e;
	text-decoration: none;
}
.industry-banner{
	margin: 21px auto 42px auto;
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	width: 100%;
	min-height: 360px;
	box-sizing: border-box;
	padding: 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #fff;
}
.industry-banner h2{
	color: #fff!important
}
.industry-banner p{
	margin: 0 0 14px 0;
	width: 630px;
	max-width: 100%!important;
	line-height: 1.45;
}
.industry-banner .button{
	margin-top: 30px;
}
#block-industry hr.block-separator {
	background: #ddd;
}
.list-application-industry-item h3{
	color: #000;
	line-height: 1.3;
	margin-bottom: 21px;
}
.list-application-industry-item h4{
	color: #03589e;
	margin-bottom: 14px;
}
.industry-product-item{
	width: 100%;
	box-sizing: border-box;
	padding: 15px;
	margin-bottom: 21px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	transition: all 0.2s;
	background: #f4f4f4;
}
.industry-product-item p{
	margin: 0;
}
.industry-product-item img{
	max-width: 45%;
	width: 130px;
	height: auto;
}
.industry-product-item:hover{
	text-decoration: none;
	background: #e5eef5;
}
.case-video-item,
.case-img-item{
	text-align: center;
	margin-bottom: 21px;
}
.case-video-item a,
.case-img-item a{
	display: block;
	transition: 0.2s all;
	overflow: hidden;
	padding-bottom: 10px;
	background: #f4f4f4;
}
.case-video-item a:hover,
.case-img-item a:hover{
	text-decoration: none;
	background:#e5eef5;
}
.case-video-item p,
.case-img-item p{
	margin:0;
	color: #000;
}
.case-other-item{
	text-align: center;
	overflow: hidden;
	display: block;
	border: 1px solid #03589e;
	transition: 0.2s all;
	font-size: 0;
	padding: 5px 15px;
	box-sizing: border-box;
	margin-bottom: 21px;
}
.case-other-item:hover{
	background-color: #03589e;
}
.case-other-item img{
	max-width: 100%;
	width: 180px;
}
.case-other-item:hover img{
	filter: brightness(100);
}
.application-case-item{
	overflow: hidden;
	display: block;
	margin-bottom: 21px;
	font-size: 0;
	text-align: center;
}
.application-case-logo{
	position: relative;
	z-index: 1;
	background: #03589e;
	box-sizing: border-box;
	padding: 5px 30px;
}
.application-case-item:hover{
	text-decoration: none;
}
.application-case-logo h2,
.application-case-item:hover h2{
	font-size: 16px!important;
	color: #fff!important;
	text-align: center!important;
	text-decoration: none!important;
	margin: 0!important;
}
.application-case-thumbnail{
	transition: 0.2s all;
}
.application-case-item:hover .application-case-thumbnail{
	transform: scale(1.05);
}
.application-case-logo img{
	max-width: 120px;
	width: 100%;
	filter: brightness(999);
}
@media screen and (max-width: 767px){
	#top-inner.top-case{
		height: 180px;
	}
}
@media screen and (min-width: 768px){
	ul.feature-list-more li{
		width: 25%;
		margin-bottom: 14px;
		margin-bottom: 1rem;
	}
	.product-mire-item{
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		height: 200px;
	}
	.application-usage-item{
		width: 25%;
	}
	.application-usage-icon{
		width: 100px;
		height: 88px;
	}
	ul.industry-list li{
		width: 22%;
	}
	.industry-banner{
		padding: 0 40px;
	}
	.case-other-item{
		padding: 5px 40px;
	}
	.application-case-logo{
		padding: 5px 40px;
	}
}
@media screen and (min-width: 1024px){
	ul.feature-list-more li{
		font-size: 16px;
		width: 16.66%;
		padding-left: 35px;
		padding-top: 5px;
	}
	ul.feature-list-more li:before{
		width: 29px;
		height: 35px;
	}
}
@media screen and (min-width: 1280px){
	ul.feature-list-more{
		display: flex;
		flex-direction: row;
		/*justify-content: space-between;*/
		flex-wrap: wrap;
	}
	ul.feature-list-more li{
		width: auto;
		white-space: nowrap;
		padding-right: 28px;
	}
	ul.feature-list-more li.non-icon{
		display: inline-block;
		width: auto;
	}
	.application-usage-list{
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}
	.application-usage-item{
		width: 124px;
	}
	ul.industry-list li{
		width: 12.2%;;
	}
}

/*service pages*/
#block-service h2.title-section-inner{
	margin-bottom: 28px;
}
.service-item{
	margin: 0 0 45px 0;
	overflow: hidden;
}
.service-item a.service-item-img{
	display: block;
	font-size: 0;
	margin-bottom: 21px;
}
.service-item a.service-item-img img{
	width: 100%;
	height: auto;
}
.service-item .service-item-txt{
	display: block;
	font-size: 0;
}
.service-item p{
	font-size: 14px;
	font-size: 1rem;
	margin: 10px 0;
}
.service-item h3{
	line-height: 1.3;
	font-size: 16px;
}
.tech-banner{
	margin-top: 0;
	padding-top: 30px;
	padding-bottom: 30px;
	background-image: url(images/tech-content.jpg);
	min-height: 300px;
}
.tech-banner p{
	width: 800px;
}
.tech-banner p:last-child{
	margin-bottom: 0;
}
.pic-group img{
	margin-bottom: 7px;
	margin-bottom: 1rem;
	object-fit: cover;
}
.video-container-whide{
	background: #000;
	text-align: center;
}
.video-container-whide video{
	margin: 0 auto;
	font-size: 0;
}
.list-blue{
	box-sizing: border-box;
	padding: 14px;
	margin: 21px 0;
	background: #e5eef5;
}
.list-blue li{
	color: #035ea4;
}
.download-item{
	margin: 0 0 45px 0;
	overflow: hidden;
}
.download-item a.download-item-img{
	position: relative;
	display: block;
	font-size: 0;
	margin-bottom: 21px;
}
.download-item-icon{
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	transition: all 0.2s;
	transform: scale(0.75);
}
a.download-item-img:hover .download-item-icon{
	transform: scale(1);
}
.download-item a.download-item-img img{
	width: 100%;
	height: auto;
}
.download-item .download-item-txt{
	display: block;
	font-size: 0;
}
.download-item p{
	font-size: 14px;
	font-size: 1rem;
	margin: 10px 0;
}
.download-item h3{
	line-height: 1.3;
	font-size: 16px;
}
.qa-item{
	background: #fff;
	border-radius: 0;
	overflow: hidden;
	margin-bottom: 28px;
}
.qa-item-q{
	cursor: pointer;
	position: relative;
	box-sizing: border-box;
	height:auto;
	padding: 15px 40px 15px 90px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: all 0.2s;
}
.qa-item-q:hover{
	background: #e5eef5;
}
.qa-item-q:before{
	position: absolute;
	left: 0;
	top: 0;
	content: "Q";
	color: #fff;
	font-weight: 800;
	background: #035ea4;
	height: 100%;
	width: 60px;
	text-align: center;
	line-height: 1;
	font-size: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.qa-item-q p{
	margin: 0;
	color: #000;
	font-size: 15px;
	line-height: 1.4;
	font-weight: 400;
}
.qa-item-a{
	position: relative;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-top: 1px solid #f7f5f8;
	overflow: hidden;
	transition: 0.2s all;
	padding: 0 15px 0 90px;
	height: 0;
}
.qa-item.current .qa-item-a{
	padding: 15px 15px 15px 90px;
}
.qa-item-a:before{
	position: absolute;
	left: 0;
	top: 0;
	content: "A";
	color: #035ea4;
	font-weight: 800;
	background: #e5eef5;
	height: 100%;
	width: 60px;
	text-align: center;
	line-height: 1;
	font-size: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.qa-item-q:after{
	position: absolute;
	content: "";
	right: 18px;
	top: calc(50% - 6px);
	width: 15px;
	height: 13px;
	background: url(images/qa-delta.png) no-repeat;
	background-size: 100% auto;
	transition: 0.2s;
}
.qa-item.current .qa-item-q:after{
	transform: rotate(180deg);
}
.qa-item-a p{
	margin: 10px 0;
}
@media screen and (max-width: 1024px){
	.qa-item-q:before,
	.qa-item-a:before{
		width: 40px;
		font-size: 21px;
	}
	.qa-item-q,
	.qa-item-a,
	.qa-item.current .qa-item-a{
		padding-left: 60px;
	}
	.qa-item-q p{
		font-size: 14px;
		font-size: 1rem;
	}
	.qa-item-a p{
		font-size: 14px;
		font-size: 1rem;
	}
}
@media screen and (min-width: 768px){
	.service-item a.service-item-img{
		float: left;
		width: 40%;
		margin-right: 30px;
		margin-bottom: 0;
	}
	.service-item .service-item-txt{
		float: left;
		width: calc(60% - 30px);
	}
	.download-item a.download-item-img{
		float: left;
		width: 35%;
		margin-right: 20px;
		margin-bottom: 0;
	}
	.download-item .download-item-txt{
		float: left;
		width: calc(65% - 20px);
	}
}
@media screen and (min-width: 1280px){
	.service-item a.service-item-img{
		width: 280px;
	}
	.service-item .service-item-txt{
		width: calc(100% - 310px);
	}
	.service-item p{
		font-size: 15px;
		margin: 20px 0;
	}
	.service-item h3{
		font-size: 19px;
	}
	.download-item a.download-item-img{
		width: 220px;
	}
	.download-item .download-item-txt{
		width: calc(100% - 240px);
	}
	.download-item p{
		font-size: 15px;
		margin: 20px 0;
	}
	.download-item h3{
		font-size: 19px;
	}
}

/*about / contact page*/
.about-content .col-n{
	padding-bottom: 28px;
}
.customer-list .col-n{
	padding-bottom: 0;
}
.form-container{
	margin: 0 auto;
	max-width: 100%;
	width: 700px;
}
#block-contact-1 .entry-content{
	padding-bottom: 50px;
}

/*news pages*/
#block-news-list .site{
	/*margin-top: 0;*/
}
.inner-menu-sub{
	padding: 50px 0;
	text-align: left;
}
.menu-sub{
	text-align: center;
	margin-bottom: 50px!important;
}
.menu-sub .cat-item{
	font-size: 16px;
	width: auto;
	display: inline-block;
	padding: 4px 21px;
	line-height: 1.5;
}
.menu-sub .cat-item a{
	display: block;
	color: #000;
	font-weight: 500;
	border-bottom: 2px solid transparent;
}
.menu-sub .cat-item.current-cat a{
	pointer-events: none;
	border-bottom: 2px solid #000;
}
.menu-sub .cat-item a:hover{
	text-decoration: none;
}
.panel-post-container{
	position: relative;
	overflow:hidden;
	/*margin:21px 0;*/
	margin-bottom: 35px;
	margin-bottom: 2.5rem;
	padding:0;
	background:#fff;
	color: #666;
	text-align: left;
	/*min-height: 395px;*/
	min-height: 300px;
}
.panel-post-container i{
	color: #777;
	font-size: 14px;
}
.panel-post-container:last-child{
	border-bottom: 0;
}
.panel-post-thumbnail:hover img {
	/*-webkit-transform: scale(1.03,1.03);
	transform: scale(1.03,1.03);*/
}
.panel-post-thumbnail img{
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	/*width: 100%;*/
	width: calc(100% - 2px);
	border: 1px solid #f2f2f2;
}
.panel-post-thumbnail{
	overflow: hidden;
	vertical-align: top;
	margin:0;
	display: inline-block;
	font-size: 0;
	width: 100%;
}
.panel-post-txt{
	vertical-align: top;
	box-sizing: border-box;
	line-height: 1.5;
	padding:21px 0;
}
a.panel-post-title{
	color:#333;
	text-decoration: none;
	font-size:18px;
	font-size:1.1rem;
	margin-bottom: 7px;
	margin-top: 4px;
	display: block;
	line-height: 1.5;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}
a.panel-post-title:hover{
	text-decoration: none;
}
.panel-post-sub{
	margin-bottom: 10px;
	margin-top: 20px;
	display: block;
	font-size: 12px;
}
.panel-post-sub a{
	text-decoration: none;
}
.panel-post-tags{
	display: block;
}
a[rel="tag"]{
	display: inline-block;
	margin-right: 6px;
	margin-top: 6px;
	box-sizing: border-box;
	padding: 0px 6px;
	background: transparent;
	color: #cc0900;
	font-size: 11px;
	border: 1px solid #cc0900;
	border-radius: 3px;
	transition: 0.2s all;
}
a[rel="tag"]:before{
	content: "# ";
}
a[rel="tag"]:hover{
	background: #cc0900;
	color: #fff;
	text-decoration: none;
}
.panel-post-content{
	line-height: 1.7;
	font-size: 14px;
	font-size: 1rem;
	padding-bottom: 10px;
	margin-bottom: 0;
}
.list-newsroom{
	font-size: 0;
}
.list-newsroom .col-n{
	float: none;
	vertical-align: top;
	display: inline-block;
}
@media screen and (max-width: 767px){
	#search-post{
		margin: 20px auto;
		max-width: 80%!important;
		text-align: center;
	}
}
@media screen and (min-width: 768px){
	.panel-post-txt{
		min-height: 390px;
	}
	.inner-menu-sub{
		padding: 80px 0;
	}
	.menu-sub{
		text-align: left;
	}
	.menu-sub .cat-item{
		padding-left: 0;
		margin-right: 40px;
	}
	.panel-post-container-2{
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}
	.panel-post-container-2 .panel-post-thumbnail{
		width: 30%;
	}
	.panel-post-container-2 .panel-post-txt{
		margin-left: 32px;
		width: calc(70% - 32px);
		padding: 0;
		min-height: auto;
	}
	.panel-post-container-2 a.panel-post-title{
		height: auto;
	}
	.panel-post-container-2{
		min-height: auto;
		margin-bottom: 54px;
	}

}
@media screen and (min-width: 1024px){
	.panel-post-txt{
		min-height: 350px;
	}
	#block-news-1 h1.page-title{
		text-align: center;
	}
}
@media screen and (min-width: 1200px){
	#block-news-1 .site{
		margin-top: 56px;
		margin-top: 4rem;
	}

	#block-news-1 h2{
		margin-bottom: 42px;
		margin-bottom: 3rem;
	}
	.panel-post-content{
		/*min-height: 103px;*/
	}
	
	.panel-post-txt{
		min-height: unset;
	}
}

/*WPML plug css moveing here*/
.wpml-ls-legacy-list-horizontal{border:1px solid transparent;padding:7px;clear:both}
.wpml-ls-legacy-list-horizontal>ul{padding:0;margin:0 !important;list-style-type:none}
.wpml-ls-legacy-list-horizontal .wpml-ls-item{padding:0;margin:0;list-style-type:none;display:inline-block}
.wpml-ls-legacy-list-horizontal a{display:block;text-decoration:none;padding:5px 10px 6px;line-height:1}
.wpml-ls-legacy-list-horizontal a span{vertical-align:middle;line-height: 13px;}
.wpml-ls-legacy-list-horizontal a span.wpml-ls-bracket{vertical-align:unset}
.wpml-ls-legacy-list-horizontal .wpml-ls-flag{display:inline;vertical-align:middle}
.wpml-ls-legacy-list-horizontal .wpml-ls-flag+span{margin-left:.4em}
.rtl .wpml-ls-legacy-list-horizontal .wpml-ls-flag+span{margin-left:0;margin-right:.4em}
.wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer{margin-bottom:30px}
.wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer>ul{text-align:center}


.site-header .wpml-ls-legacy-list-horizontal{
	display: inline-block;
	vertical-align: middle;
	border: 0;
	padding: 0;
	margin: 0 8px;
	display: inline-block;
}
.site-header .wpml-ls-legacy-list-horizontal ul{
	background: rgba(0,0,0,0.1);
	padding: 3px;
	border-radius: 10px;
}
.site-header .wpml-ls-legacy-list-horizontal a{
	font-size: 14px!important;
	font-size: 1rem!important;
	margin: 0!important;
	padding: 0 6px;
	color: #fff;
	/*line-height: 52px!important;*/
}
.site-header .wpml-ls-current-language a{
	color: #89daff;
}
.site-header.scroll #header-toolbar .wpml-ls-current-language a,
body.light-nav #header-toolbar .wpml-ls-current-language a{
	color: #3d93fe;
}
.site-header.scroll .wpml-ls-legacy-list-horizontal a{
	/*line-height: 40px!important;*/
}
#topFloatBar .wpml-ls-legacy-list-horizontal{
	padding: 0 15px 0 15px;
	line-height: 40px;
	overflow: hidden;
	height: 0;
}
#topFloatBar .wpml-ls-legacy-list-horizontal a:hover{
	text-decoration:none;
	color: #89daff;
}
#topFloatBar .wpml-ls-legacy-list-horizontal.toggled-on{
	border-top: 1px solid rgba(0,0,0,0.05);
	height: 80px;
}

/*dropdown menu*/
.col-4-9{
	width: 44.44%;
}
.col-6-9{
	width: 66.66%;
}
.col-2-9{
	width: 22.22%;
}
.col-8-9{
	width: 88.88%;
}
.col-1-9{
	width: 11.11%;
}
.menu-dropdown{
	box-sizing: border-box;
	width: 100%;
	display: block;
	height: auto;
	color: #000;
	background-color: #fff;
	/*max-width: 1280px;*/
	margin: 0 auto;
	font-size: 0;
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
	overflow: hidden;
	transition: 0.2s all;
	opacity: 0;
	pointer-events: none;
	padding-top: 30px;
	padding-bottom: 30px;
	height: 0;
	display: none;
}
.menu-dropdown.stay{
	display: block;
	pointer-events: auto;
	height: auto;
	opacity: 1;
}
.menu-dropdown .site{
	transition: 0.2s all;
	opacity: 0;
	transform: translate(0,-40px);
}
.menu-dropdown.stay .site{
	opacity: 1;
	transform: translate(0,0);
}
.menu-dropdown h3{
	color: #000;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 20px;
}
.menu-dropdown h3 a{
	font-size: 16px;
	color: #000;
	font-weight: 400;
}
.menu-dropdown h3 a:hover{
	text-decoration: none;
	color: #03589e;
}
.menu-dropdown h4{
	font-size: 14px;
	font-size: 1rem;
	margin-bottom: 7px;
}
.menu-dropdown p{
	color: #aaa;
	line-height: 1.35;
    font-size: 13px;
}
.menu-dropdown a{
	font-size: 14px;
	font-size: 1rem;
	color: #035ea4;;
}
.menu-dropdown-product{
	display: inline-block;
	overflow: hidden;
	width: 16.66%;
	box-sizing: border-box;
	padding: 5px 20px 15px 0;
	vertical-align: top;
}
html[lang="zh-hans"] .menu-dropdown-product h4{
	margin-top: 10px;
}
.col-2-9 .menu-dropdown-product{
	width: 100%;
}
.col-4-9 .menu-dropdown-product{
	width: 50%;
}
.menu-dropdownn-product-thumbnail{
	display: block;
	height: auto;
	margin-right: 12px;
	background: #f2f2f2;
	padding-bottom:10px;
	float: left;
}
.menu-dropdownn-product-thumbnail h4:hover {
	text-decoration: none;
}
.menu-dropdownn-product-thumbnail img{
	width: 100%;
	height: auto;
}
.menu-dropdownn-product-txt{
	width: calc(100% - 112x);
	text-align:center;
	min-height:80px !important;
	display:flex;
	margin:auto;
	justify-content:center;
	align-items:center;
	padding:3px;
}
.menu-dropdownn-product-txt h4{
		margin-top:10px;
		line-height: 1.35;
}
.menu-dropdown-link{
	display: block;
	margin-bottom: 21px;
}
.menu-dropdown-item{
	box-sizing: border-box;
	width: 33.33%;
	display: inline-block;
	padding-bottom: 28px;
	vertical-align: top;
	border-right: 1px solid #eee;
}
.menu-dropdown-item:nth-child(3n){
	border-right: 0 solid #eee;
}
.dropdown-1.stay:after,.dropdown-2.stay:after,.dropdown-3.stay:after,.dropdown-4.stay:after,.dropdown-5.stay:after{
	position: absolute;
	bottom: -4px;
	left: calc(50% - 6px);
	width: 8px;
	height: 8px;
	background-color: #fff;
	transform: rotate(45deg);
	display: block;
	content: "";
}
#menu-dropdown-1{
	padding-bottom: 0;
}
#menu-dropdown-1 .col-n{
	margin-bottom: 20px;
}
@media screen and (min-width: 1024px){
	.site-header {
		pointer-events: none;
	}
	.site-header hgroup,
	.site-header .menu-dropdown{
		pointer-events: auto;
	}
}

/*页面遮盖层*/
.coverThePage{
	width:100vw;
	height:100vh;
	background:rgba(0,0,0,0.5);
	position: fixed;
	top:0;
	left:0;
	display: none;
	z-index: 10;
}
.coverThePage.stay{
	display: block;
}
.popup-form-container{
	pointer-events: none;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 3px;
	padding:28px;
	position: fixed;
	left:40%;
	left:-webkit-calc(50% - 250px);
	left:calc(50% - 250px);
	top: -webkit-calc(50vh - 200px);
	top: calc(50vh - 200px);
	text-align: left;
	width:500px;
	height: 660px;
	max-height: calc(100vh - 120px);
	font-size: 14px;
	font-size: 1rem;
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.2);
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
	z-index: 101;
	-webkit-opacity: 0;
	opacity: 0;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	line-height: 1.5;
	overflow: hidden;
	overflow-y: auto;
	display: block
}
.popup-form-container.stay{
	pointer-events: auto;
	/*top:36px;*/
	top: -webkit-calc(50vh - 330px);
	top: calc(50vh - 330px);
	-webkit-opacity: 1;
	opacity: 1;
}
.popup-form-container h2{
	color:#035ea4;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 15px;
}
.popup-form-container small{
	text-align:center;
	color:#8f0909;
	display: block;
}
.popup-form-container .gform_wrapper ul.gform_fields li.gfield {
    padding-right: 0;
}
.popup-form-container .gform_wrapper.gf_browser_chrome select,
.popup-form-container .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]){
    padding: 6px 8px;
}
.popup-form-container .gform_wrapper .gform_footer input.button,
.popup-form-container .gform_wrapper .gform_footer input[type=submit],
.popup-form-container .gform_wrapper .gform_page_footer input.button,
.popup-form-container .gform_wrapper .gform_page_footer input[type=submit]{
	width: inherit;
}
.popup-form-container .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
    max-width: 100%!important;
}
.popup-form-container .gform_wrapper .field_description_below .gfield_description {
	padding-top: 2px;
	padding-bottom: 2px;
	font-size: 12px;
}
.popup-form-container .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
    margin-top: 0;
}
.popup-form-container .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container {
	margin-top: 6px;
}
.popup-form-container .gform_wrapper .gform_footer{
	text-align: center;
}
.popup-form-container .gform_confirmation_message {
	margin: 50px 0;
	text-align: center;
	font-size: 18px;
	color: #03589e;
}
.closeLayer{
	width:30px;
	height:30px;
	position: absolute;
	top:8px;
	right:8px;
	background:url(images/close.svg) no-repeat;
	background-size: 100% auto;
	cursor: pointer;
	transition: 0.2s all;
}
.closeLayer:hover{
	transform: rotate(90deg);
}
@media screen and (max-width: 450px){
	.popup-form-container{
		width: 100%;
		left:0;
		top:0;
		height: 100vh;
		max-height: 100vh;
	}
	.popup-form-container.stay{
		left:0;
		top:0;
		height: 100vh;
	}
	.closeLayer{
		position: fixed;
	}
}


/********** 关于炜驰  ***********/
.standard-picture-container {
	display:flex;
	flex-direction: row;
	align-items: flex-start;
}
.standard-picture {
	text-align: center;
	font-size:12px;
	
}
.standard-picture img {
	border-style:solid;
	border-width: 2px;
	border-color:#035EA4;
	border-radius: 5px;
}

.standard-title {
	font-size:12px !important;
}
/********** Footer  ***********/
.narrow-hr {
    border: none;
    background-color: #ffffff; /* 白色 */
    height: 1px; /* 高度为1像素 */
    width: 50px; /* 宽度为页面的50%，或者您想要的任何宽度 */
    margin-top: 10px; 
	margin-bottom:10px;
	margin-left:0px;
}
.footer-contact {
	margin-top:20px;
	margin-bottom:20px;
}

@media screen and (max-width: 450px){
.contact-form-title {
	display: flex; 
	justify-content: center;
}
.contact-form-description {
	display: flex; 
	justify-content: center;
}
}
.contact-form-description {
	display: flex; 
	justify-content: right;
}

/********  新闻页  *********/
@media screen and (min-width: 1024px){
.blog-post-breadcrumb {
	margin-top:60px !important;
}
}
#block-news-1 h1.page-title {
	text-align:center;
}
/********  页脚前的24热线 *********/
.footer-contact-24 {
	
	margin:0px;
	visibility: visible;
    animation-name: fadeInUp;
	text-align:center;
}
.footer-contact-24 h3 {
	font-size:30px;
	font-weight:700;
	letter-spacing: 1px;
}
.hotline-content {
	font-size:15px;
	line-height:26px;
	letter-spacing: 1px;
	text-align:center;
	max-width:800px;
	margin:20px auto;
}
.pt-100 {
	padding-top:100px;
}
.pb-80 {
	padding-bottom:80px;
}
@media screen and (max-width:400px) {
	.pt-100 {
		padding-top:50px !important;
	}
	.pb-80 {
		padding-bottom:40px !important;
	}
}
/* 产品页 */
.product-center-title {
	background-color: #f4f4f4;
	padding:15px 20px;
	display:flex;
	justify-content: center;
	align-items: center;
	text-decoration: none !important;
}
.img-fluid {
	width: 100%;
	height: auto;
}

.table-responsive table .column-1 {
    min-width: 150px; /* 设置最小宽度 */
}
.product-options ol {
	line-height:1.65;
}
.product-advantages ol {
	line-height: 1.65;
}
.product-advantages {
	margin-left:28px;
	margin-right:28px;
}
@media screen and (max-width: 450px){
.product-item h3 {
	font-size:13px;
}
}
#tablepress-10 column-1 {
	width:50%;
}
/* 首页 */
#slider {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
#slider video{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;	
}
@media screen and (max-width:400px) {
	#slider video{
		display:none !important;
	}
}

#slider .video-text {
	position: absolute;
	top: 60%;
	left: 0;
	width: 100%;
	display: flex;
	display: -webkit-flex;
	-webkit-flex-flow: column;
	flex-flow: column;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	z-index: 1;
	padding-left: 20px;
	padding-right: 20px;
}
#slider-mb .video-text-mb {
	position: relative;
	margin-top:-100px;
	width: 100%;
	display: flex;
	display: -webkit-flex;
	-webkit-flex-flow: column;
	flex-flow: column;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;		
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	z-index: 1;
	padding: auto;
}
#slider .video-text h2 {
	font-size: 40px;
	font-weight: normal;
	color: #FFFFFF;
	line-height: 1.42;
	text-align: center;
	max-width: 60%;
	text-shadow: 0px 4px 8px rgb(0 0 0 / 30%);
}
#slider .video-text p {
	font-size: 32px;
	color: #FFFFFF;
	line-height: 1.42;
	text-shadow: 0px 4px 8px rgb(0 0 0 / 30%);
	font-weight: normal;
}
#slider-mb .video-text-mb h2 {
	font-size: 18px;
	font-weight: normal;
	color: #FFFFFF;
	line-height: 1.42;
	text-align: center;
	max-width: 90%;
	text-shadow: 0px 4px 8px rgb(0 0 0 / 30%);
}
#slider-mb .video-text-mb p {
	font-size: 18px;
	color: #FFFFFF;
	line-height: 1.42;
	text-shadow: 0px 4px 8px rgb(0 0 0 / 30%);
	font-weight: normal;
}
.c-btn {
	margin-top:30px;
	margin-left:10px;
	margin-right:10px;
}


@media screen and (max-width:767px) {
	.factory-advantages i {
	}
	.factory-advantages h3 {
		font-size: 14px !important;
		font-weight:500;
		line-height:25px;
	}
	.factory-advantages  {
		margin-bottom:30px;		
	}
	.advantage-list {
		margin-top:30px;
	}
	.factory-advantages .col-3 {
	    margin-top:30px;
	}
}


@media screen and (min-width:767px) {
    .factory-advantages i {
	
	margin-bottom:10px;
}
    .factory-advantages {
       
    }
    .factory-advantages h3 {
	font-size: 3rem;
	font-weight:500px !important;
	margin-bottom:0.5rem;
	color:#333;
}
	 .factory-advantages span {
	font-size:1.5rem;
	font-weight:400px !important;
	color:#333;
}
}
.factory-advantages i {
	color:#03589e;
	margin-bottom:10px;
}

.home-about-us {
	max-width:1280px;
	margin:auto;
	padding:auto;
}
.home-about-us p{
	margin-top:30px;
	line-height: 1.65;	

}
.full-width-container {
	background-image: url(/wp-content/uploads/2024/03/1711612685-about-us-background.jpg);
	background-size: cover;
	background-position: center center;	
    position: relative;
    width: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-color: #03589e;
    color: #fff;
    max-width: 100%;
}
.container {
    max-width: 1140px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
	
}
.home-about-title  {
	font-size: 24px !important;
	font-weight: 500 !important;
	margin-bottom: 20px;
	padding-left:10px;
	padding-right:10px;
}
.home-about {
	font-size:16px;
	line-height:1.65;
	padding-left:10px;
	padding-right:10px;
}
@media only screen and (min-width: 768px) {
	.home-about {
		width:70%;
	}
}
.mt-4 {
	margin-top:4rem;
}
.mb-4 {
	margin-bottom:4rem;
}
@media only screen and (max-width:768px) {
    .mt-4 {
        margin-top: 0rem;
    }
	.mb-4 {
		margin-bottom:0rem;
	}
	.mt-2 {
		margin-top:2rem;
	}
}
.home-hot-products .panel-post-title {
	text-align:center;
}
/*why choose us的调整*/
.why-choose-us-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* 在每行之间平均分布 */
}

.col-4 {
    width: calc(33.33% - 10px); /* 每行三个，间距为10px */
    margin-bottom: 20px; /* 间距设置为20px，可以根据需要调整 */
}

@media screen and (max-width: 767px) {
    .col-4 {
        width: calc(100% - 10px); /* 在手机端每行一个，间距为10px */
    }
}
/*why choose us的调整结束*/
@media  screen and (max-width: 767px) {
	.panel-post-txt {
		text-align:center;
	}
	.why-choose-us h2{
		font-size:24px !important;
	}	
	.why-choose-us .col-4 {
	    margin-top:20px;
	}
	.why-choose-us p {
	    text-align: left !important;
	}

}

.why-choose-us h2{
	font-size:32px;
	font-weight:500 !important;
	text-align:left;
	margin-bottom:20px;
}
.why-choose-us p{
	font-size:14px;
	color:#333;
	line-height:1.65;
}
.why-choose-us-list h3 {
	font-size:20px !important;
	color:#03589e !important;
	margin-bottom:20px;
}
.why-choose-us-list p {
	font-size:14px !important;
	color:#333 !important;

}

/* Define the container as a flex container */
#hot-sale {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
}



/* Adjustments for mobile devices */
@media (max-width: 767px) {
    #hot-sale .col-3 {
        max-width: 100%; /* Full width on mobile */
    }
	/* Ensure each col-3 takes equal space */
	#hot-sale .col-3 {
    flex: 1 1 50%; /* Equal width for each col-3 */
    max-width: 50%; /* Maximum width of 50% */
}
	a.panel-post-title {
		font-size:1rem!important;
	}
}
/* Home Product Application Section */
.home-product-applications h2{
	font-size:32px;
	text-align:left;
	margin-bottom:20px;
}
.home-product-applications p{
	font-size:18px;
	color:#333;
	line-height:1.65;
	text-align:left;
}
.col-row {
	padding-left:15px;
	padding-right:15px;
}
.product-card {
    position: relative;
    min-height:300px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
    padding-left:0px;
    padding-right:0px;
	  text-align:left;
}
.wp-block-group h4 {
	font-size:24px;
	margin-bottom:10px !important;
	
}
.wp-block-group span {
	font-size:15px;
	color:#FFF !important;
	line-height: 1.65;
}
.product-card .wp-block-group {
    transform: translate(0px, 40px);
    opacity: 1;
    height:95PX;
    transition: 0.6s;
    background-color: #035EA4DE;
    padding:20px;
    position: relative;
    bottom:0px;
    color:#FFF !important;
}

.product-card:hover .wp-block-group{
    opacity: 1;
    transform: translate(0px, 0px);  
    height:60%;
    border-radius: 10px;
     
}

@media screen and (max-width: 768px) {
    .product-card .wp-block-group {  
       transform: none;
       opacity: 1;
       height: inherit;
       transition: none;  
    }
    .product-card:hover .wp-block-group{
       opacity: 1;
       transform: none;  
       height: inherit;
 }
}

h2.home-partner-title {
	font-size: 32px !important;
	text-align:left;
	font-weight: 500;
	margin-bottom: 20px;
	padding-left:10px;
	padding-right:10px;
	color:#333;
}
p.home-partner-content {
	font-size:14px;
	line-height: 1.65;
	color:#333;
	padding-left:10px;
	padding-right:10px;
}
.full-width-container-partners {
	background-image: url(/wp-content/uploads/2024/03/1711612685-about-us-background.jpg);
	background-size: cover;
	background-position: center center;	
    position: relative;
    width: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-color: #03589e;
    color: #fff;
    max-width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.mt-6 {
	margin-top:60px !important;
}
@media screen and (max-width:400px) {
	.mt-6 {
		margin-top:30px !important;
	}
}
.home-news {
	display:flex;
	flex-direction: column;
	align-items: center;
}
h2.home-news-title {
	color:#333;
	font-size:32px;
	text-align:left;
}

@media screen and (min-width:768px){
	.footer-product-menu {
		padding-left:60px !important;
	}
}
.footer-copyright {
	padding-top:10px;
	padding-bottom:10px;
}
@media screen and (min-width:1040px) {
	.product-top-banner {
		margin-top:60px !important;
	}

}
	.customer-list-8 {
	padding-left:18px;
	padding-right:18px;
}
.customer-list-8 h3{
	    font-size: 20px !important;
    color: #03589e !important;
	margin-top:20px;
    margin-bottom: 20px;
}
.owl-nav button span {
	font-size: 25px;
	height: 100%;
	display: block;
	width: 100%;
	color:#03589e !important;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
	z-index: 1;
	width: 30px !important;
	height: 30px;
	background-color: #ffffffd4 !important;
	border-radius: 50%;
	position: absolute;
	top: 50%;	
	transform: translatey(-50%);
}
.owl-carousel .owl-nav button.owl-prev {
	position:absolute;
	left: 0;
}
.owl-carousel .owl-nav button.owl-next {
	position:absolute;
	right: 0;
}
.owl-carousel .owl-nav {
	margin: 0;
}
#product-video-1 {
	width:100%;
}
