@charset "UTF-8";

@font-face {
	font-family: "Poppins-Light";
	src: url("../fonts/poppins-light.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
html {
	font-family: "Poppins-Light", "微软雅黑", Microsoft Yahei, arial, serif;
	scroll-behavior: smooth;
}

.w102-pagination-links .current{
    color:#fff;
    background:#007bff;
    padding:4px 10px;
    border-radius:3px;
}

/*!- w102-header begin -*/
.w102-header {
	display: block;
	height: 72px;
}
.w102-header .w102-header-wrap {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	-webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05);
	background-color: #fff;
	height: 72px;
	transition: height 0.5s;
}
.w102-header .w102-header-content {
	display: flex;
}
.w102-header .w102-header-logo {
	flex: none;
	font-size: 0;
}
.w102-header .w102-header-logo a {
	display: inline-block;
	margin: 12px 0;
}
.w102-header .w102-header-logo h1 {
	text-indent: -9999px;
	height: 0;
}
.w102-header .w102-header-logo img {
	display: block;
	height: 48px;
	width: auto;
}
.w102-header .w102-header-search {
	display: none;
	flex: none;
	padding: 16px;
}
.w102-header .w102-header-search .search-bar {
	display: flex;
	border-radius: 4px;
	background-color: rgba(0, 0, 0, 0.05);
}
.w102-header .w102-header-search .search-bar > input {
	display: block;
	flex: 1;
	width: 100%;
	line-height: 40px;
	border: 0;
	background: none;
	padding: 0 16px;
	color: #333;
}
.w102-header .w102-header-search .search-bar > button {
	display: block;
	width: 40px;
	height: 40px;
	border: 0;
	background: none;
	text-align: center;
	color: #333;
}
.w102-header .w102-header-search .search-bar > button > i {
	font-size: 16px;
}
.w102-header .w102-header-nav {
	flex: 10 1;
}
.w102-header .w102-header-nav > ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.w102-header .w102-header-nav > ul > li {
	display: block;
	position: relative;
}
.w102-header .w102-header-nav > ul > li > a {
	display: block;
	position: relative;
	text-align: center;
	padding: 0 20px;
	line-height: 72px;
	text-transform: uppercase;
	font-size: 16px;
	color: #333;
	transition: color 0.4s;
	margin: 0 6px;
}
.w102-header .w102-header-nav > ul > li > a > i {
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -5px;
	right: 6px;
	width: 6px;
	height: 6px;
	border-bottom: 1px solid;
	border-right: 1px solid;
	transition: border-color 0.4s;
	transform: rotate(45deg);
}
.w102-header .w102-header-nav > ul > li:hover > a {
	color: #febc2a;
}
.w102-header .w102-header-nav > ul > li:hover > ul {
	display: block;
}
.w102-header .w102-header-nav > ul > li.active > a {
	background-color: #febc2a;
	color: #fff;
}
.w102-header .w102-header-nav > ul ul {
	display: none;
	position: absolute;
	background-color: #fff;
	-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
	left: 50%;
	transform: translateX(-50%);
}
.w102-header .w102-header-nav > ul ul li {
	position: relative;
}
.w102-header .w102-header-nav > ul ul li a {
	display: block;
	line-height: 40px;
	white-space: nowrap;
	word-break: keep-all;
	padding: 0 24px;
	text-align: center;
	position: relative;
	font-size: 14px;
	color: #666;
	transition: color 0.4s, background-color 0.4s;
}
.w102-header .w102-header-nav > ul ul li a > i {
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -3px;
	right: 8px;
	width: 6px;
	height: 6px;
	border-bottom: 1px solid;
	border-right: 1px solid;
	transform: rotate(-45deg);
	transition: border-color 0.4s;
}
.w102-header .w102-header-nav > ul ul li ul {
	transform: none;
	left: 100%;
	top: 0;
}
.w102-header .w102-header-nav > ul ul li:hover > a {
	background-color: #f5f5f5;
	color: #333;
}
.w102-header .w102-header-nav > ul ul li:hover > ul {
	display: block;
}
.w102-header .w102-header-menu {
	flex: none;
}
.w102-header .w102-header-menu > ul {
	display: flex;
	justify-content: right;
}
.w102-header .w102-header-menu > ul > li {
	display: block;
	position: relative;
}
.w102-header .w102-header-menu > ul > li:after {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -6px;
	content: "";
	width: 1px;
	height: 12px;
	background-color: #e6e6e6;
}
.w102-header .w102-header-menu > ul > li.toggle {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}
.w102-header .w102-header-menu > ul > li.toggle span {
	display: inline-block;
	position: relative;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	overflow: hidden;
}
.w102-header .w102-header-menu > ul > li.toggle span > i {
	display: block;
	position: absolute;
	width: 200%;
	height: 1px;
	left: -50%;
	background-color: #333;
	transition: all 0.3s;
}
.w102-header .w102-header-menu > ul > li.toggle span > i:nth-child(1) {
	top: 0;
}
.w102-header .w102-header-menu > ul > li.toggle span > i:nth-child(2) {
	top: 19px;
}
.w102-header .w102-header-menu > ul > li.toggle span > i:nth-child(3) {
	top: 9px;
}
.w102-header .w102-header-menu > ul > li.toggle.opened span > i:nth-child(1) {
	top: 9px;
	transform: rotate(45deg);
}
.w102-header .w102-header-menu > ul > li.toggle.opened span > i:nth-child(2) {
	top: 9px;
	transform: rotate(-45deg);
}
.w102-header .w102-header-menu > ul > li.toggle.opened span > i:nth-child(3) {
	opacity: 0;
}
.w102-header .w102-header-menu > ul > li > a {
	display: block;
	position: relative;
	text-align: center;
	padding: 0 24px;
	line-height: 72px;
	font-size: 0;
	color: #333;
	transition: color 0.4s, background-color 0.4s;
}
.w102-header .w102-header-menu > ul > li > a > img {
	display: inline-block;
	vertical-align: middle;
	height: 16px;
	width: auto;
}
.w102-header .w102-header-menu > ul > li > a > i {
	display: inline-block;
	vertical-align: middle;
	font-size: 20px;
}
.w102-header .w102-header-menu > ul > li:first-child:after {
	display: none;
}
.w102-header .w102-header-menu > ul > li:hover > a {
	color: #febc2a;
	background-color: #f5f5f5;
}
.w102-header .w102-header-menu > ul > li:hover > ul {
	display: block;
}
.w102-header .w102-header-menu > ul ul {
	display: none;
	position: absolute;
	background-color: #fff;
	-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
	right: 0;
	overflow-y: auto;
	max-height: 300px;
}
.w102-header .w102-header-menu > ul ul li > a {
	display: block;
	padding: 0 24px;
	line-height: 40px;
	white-space: nowrap;
	word-break: keep-all;
	font-size: 0;
	color: #666;
	transition: color 0.4s, background-color 0.4s;
}
.w102-header .w102-header-menu > ul ul li > a > img {
	display: inline-block;
	vertical-align: middle;
	height: 16px;
	width: auto;
	margin-right: 8px;
}
.w102-header .w102-header-menu > ul ul li > a > span {
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
}
.w102-header .w102-header-menu > ul ul li:hover > a {
	background-color: #f5f5f5;
	color: #333;
}
@media screen and (max-width: 1280px) {
	.w102-header .w102-header-nav > ul > li > a {
		padding: 0 12px;
		font-size: 14px;
	}
	.w102-header .w102-header-nav > ul > li > a > i {
		right: 2px;
	}
	.w102-header .w102-header-nav > ul ul li a {
		padding: 0 16px;
	}
	.w102-header .w102-header-nav > ul ul li a > i {
		right: 4px;
	}
	.w102-header .w102-header-menu > ul > li > a {
		padding: 0 16px;
	}
	.w102-header .w102-header-menu > ul ul li > a {
		padding: 0 16px;
	}
}
@media screen and (max-width: 992px) {
	.w102-header {
		height: 56px;
	}
	.w102-header .w102-header-wrap {
		background: #fff;
		height: 56px;
		overflow: hidden;
	}
	.w102-header .w102-header-content {
		flex-direction: column;
		padding: 0;
	}
	.w102-header .w102-header-logo {
		height: 56px;
		padding: 0 16px;
	}
	.w102-header .w102-header-logo a {
		margin: 8px 0;
	}
	.w102-header .w102-header-logo img {
		height: 40px;
	}
	.w102-header .w102-header-search {
		display: block;
	}
	.w102-header .w102-header-nav {
		order: 1;
	}
	.w102-header .w102-header-nav > ul {
		display: block;
		padding: 0 16px;
	}
	.w102-header .w102-header-nav > ul > li {
		border-top: 1px solid #e6e6e6;
	}
	.w102-header .w102-header-nav > ul > li > a {
		text-align: left;
		line-height: 44px;
		font-size: 14px;
		padding: 0;
		color: #333;
	}
	.w102-header .w102-header-nav > ul > li > a > i {
		display: block;
	}
	.w102-header .w102-header-nav > ul > li:hover > a {
		color: #333;
	}
	.w102-header .w102-header-nav > ul > li:hover > ul {
		display: block;
	}
	.w102-header .w102-header-nav > ul > li.active > a {
		background-color: transparent;
		color: #333;
	}
	.w102-header .w102-header-nav > ul ul {
		display: none;
	}
	.w102-header .w102-header-nav > ul ul {
    	display: none;
    	background-color: #fff;
    	position: relative;
    	-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
    	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
    	left: 50%;
    	transform: translateX(-50%);
    }
    .w102-header .w102-header-nav > ul ul li a { 
    	white-space: normal; 
    }
	.w102-header .w102-header-menu > ul {
		display: block;
	}
	.w102-header .w102-header-menu > ul > li:after {
		display: none;
	}
	.w102-header .w102-header-menu > ul > li > a {
		padding: 0 16px;
		color: #333;
	}
	.w102-header .w102-header-menu > ul > li:hover > a {
		color: #333;
		background-color: transparent;
	}
	.w102-header .w102-header-menu > ul > li:hover > ul {
		display: flex;
	}
	.w102-header .w102-header-menu > ul > li.search {
		display: none;
	}
	.w102-header .w102-header-menu > ul > li.language > a {
		display: none;
	}
	.w102-header .w102-header-menu > ul > li.toggle {
		display: block;
	}
	.w102-header .w102-header-menu > ul > li.toggle > a {
		line-height: 56px;
	}
	.w102-header .w102-header-menu > ul ul {
		display: flex;
		position: static;
		background-color: rgba(0, 0, 0, 0.05);
		-webkit-box-shadow: none;
		box-shadow: none;
		right: auto;
		overflow-x: auto;
	}
	.w102-header .w102-header-menu > ul ul li > a {
		padding: 0 16px;
		color: #333;
	}
	.w102-header.opened .w102-header-wrap {
		height: 100vh;
	}
}

/*!- w102-header end -*/
/*!- w102-wrapper begin -*/
.w102-wrapper {
	max-width: 1660px;
	margin: 0 auto;
	width: 100%;
	padding: 0 32px;
}
@media screen and (max-width: 1280px) {
	.w102-wrapper {
		padding: 0 24px;
	}
}
@media screen and (max-width: 992px) {
	.w102-wrapper {
		padding: 0 16px;
	}
}

/*!- w102-wrapper end -*/
/*!- w102-section begin -*/
.w102-section {
	padding: 64px 0;
}
@media screen and (max-width: 1280px) {
	.w102-section {
		padding: 32px 0;
	}
}
@media screen and (max-width: 992px) {
	.w102-section {
		padding: 16px 0;
	}
}
.w102-section.mm {
	padding: 0;
}
.w102-section.mb {
	padding-bottom: 0;
}
.w102-section.mt {
	padding-top: 0;
}

/*!- w102-section end -*/
/*!- w102-footer begin -*/
.w102-footer {
	background-color: #f5f5f5;
}
.w102-footer .w102-footer-content {
	padding: 48px 0;
}
.w102-footer .w102-footer-list {
	display: flex;
	justify-content: space-between;
	margin: -32px 0 0 -32px;
}
.w102-footer .w102-footer-item {
	display: block;
	max-width: 25%;
	min-width: 15%;
	padding: 32px 0 0 32px;
}
.w102-footer .w102-footer-item dl {
	line-height: 1.576;
}
.w102-footer .w102-footer-item dl dt {
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 12px;
	color: #333;
}
.w102-footer .w102-footer-item dl dt a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s;
}
.w102-footer .w102-footer-item dl dt:hover a {
	color: #febc2a;
}
.w102-footer .w102-footer-item dl dt.icon {
	font-size: 0;
}
.w102-footer .w102-footer-item dl dt.icon a {
	font-size: 0;
	margin-right: 8px;
}
.w102-footer .w102-footer-item dl dt.icon a:hover i {
	color: #e5a926;
}
.w102-footer .w102-footer-item dl dt.icon i {
	font-size: 32px;
	color: #febc2a;
	transition: color 0.3s;
}
.w102-footer .w102-footer-item dl dd {
	display: block;
	font-size: 16px;
	margin-bottom: 8px;
	color: #666;
}
.w102-footer .w102-footer-item dl dd a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s;
}
.w102-footer .w102-footer-item dl dd:hover a {
	color: #febc2a;
}
.w102-footer .w102-footer-external {
	display: block;
	text-align: center;
	line-height: 1.576;
	font-size: 14px;
	padding: 8px 16px 32px;
}
.w102-footer .w102-footer-external a {
	margin: 4px;
	color: #999;
}
.w102-footer .w102-footer-external a:hover {
	color: #febc2a;
}
.w102-footer .w102-footer-copyright {
	background-color: #333333;
	color: #fff;
	text-align: center;
	font-size: 14px;
	line-height: 1.576;
	padding: 16px;
}
.w102-footer .w102-footer-copyright a {
	color: inherit;
}
@media screen and (max-width: 1280px) {
	.w102-footer .w102-footer-content {
		padding: 32px 0;
	}
	.w102-footer .w102-footer-list {
		margin: -24px 0 0 -24px;
	}
	.w102-footer .w102-footer-item {
		padding: 24px 0 0 24px;
	}
	.w102-footer .w102-footer-item dl dt {
		font-size: 16px;
		margin-bottom: 8px;
	}
	.w102-footer .w102-footer-item dl dt.icon i {
		font-size: 32px;
	}
	.w102-footer .w102-footer-item dl dd {
		font-size: 14px;
	}
}
@media screen and (max-width: 992px) {
	.w102-footer .w102-footer-content {
		padding: 16px 0;
	}
	.w102-footer .w102-footer-list {
		margin: -16px 0 0 -16px;
		justify-content: center;
	}
	.w102-footer .w102-footer-item {
		padding: 16px 0 0 16px;
		display: none;
		max-width: none;
		text-align: center;
	}
	.w102-footer .w102-footer-item.alive {
		display: block;
	}
	.w102-footer .w102-footer-copyright {
		font-size: 12px;
	}
}

/*!- w102-footer end -*/
/*!- w102-sidebar begin -*/
.w102-sidebar .w102-sidebar-wrap {
	position: fixed;
	top: 50%;
	right: 0;
	z-index: 998;
}
.w102-sidebar .w102-sidebar-item {
	position: relative;
	height: 48px;
}
.w102-sidebar .w102-sidebar-item .wrap {
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.3s;
	transform: translateX(-48px);
}
.w102-sidebar .w102-sidebar-item .trigger {
	display: flex;
	color: #fff;
	background-color: #333333;
}
.w102-sidebar .w102-sidebar-item .trigger .icon {
	display: block;
	flex: none;
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
}
.w102-sidebar .w102-sidebar-item .trigger .icon i {
	font-size: 24px;
}
.w102-sidebar .w102-sidebar-item .trigger .text {
	display: block;
	font-size: 16px;
	line-height: 48px;
	padding: 0 16px 0 8px;
	white-space: nowrap;
	word-break: keep-all;
}
.w102-sidebar .w102-sidebar-item .popover {
	display: none;
	position: absolute;
	top: 0;
	right: 100%;
	padding: 0 12px 0 0;
}
.w102-sidebar .w102-sidebar-item .popover .popover-wrap {
	position: relative;
	background-color: #fff;
	border-radius: 2px;
	box-shadow: 0 6px 20px 2px rgba(0, 0, 0, 0.18);
	padding: 2px 0;
}
.w102-sidebar .w102-sidebar-item .popover .popover-wrap:after {
	display: block;
	content: "";
	position: absolute;
	z-index: 1;
	top: 20px;
	right: -8px;
	border-style: solid;
	border-width: 8px 0 8px 8px;
	border-color: transparent transparent transparent #fff;
}
.w102-sidebar .w102-sidebar-item .popover img {
	display: block;
	max-width: 128px;
	height: auto;
}
.w102-sidebar .w102-sidebar-item .popover ul li a {
	display: block;
	font-size: 14px;
	line-height: 40px;
	padding: 0 16px;
	min-width: 120px;
	white-space: nowrap;
	word-break: keep-all;
	color: #333;
}
.w102-sidebar .w102-sidebar-item .popover ul li a i {
	font-size: 20px;
	vertical-align: -0.1em;
}
.w102-sidebar .w102-sidebar-item .popover ul li a i[class*="icon-whatsapp"] {
	color: #25d366;
}
.w102-sidebar .w102-sidebar-item .popover ul li a i[class*="icon-skype"] {
	color: #00aef3;
}
.w102-sidebar .w102-sidebar-item .popover ul li a i[class*="icon-facebook"] {
	color: #235b9e;
}
.w102-sidebar .w102-sidebar-item .popover ul li a i[class*="icon-twitter"] {
	color: #00aced;
}
.w102-sidebar .w102-sidebar-item .popover ul li a i[class*="icon-messenger"] {
	color: #008aff;
}
.w102-sidebar .w102-sidebar-item .popover ul li a i[class*="icon-youtube"] {
	color: #ff0000;
}
.w102-sidebar .w102-sidebar-item .popover ul li a:hover {
	background-color: #fffcf4;
	color: #febc2a;
}
.w102-sidebar .w102-sidebar-item.top {
	display: none;
}
.w102-sidebar .w102-sidebar-item:hover .wrap {
	transform: translateX(-100%);
}
.w102-sidebar .w102-sidebar-item:hover .popover {
	display: block;
}
.w102-sidebar.scrolled .w102-sidebar-item.top {
	display: block;
}
@media screen and (max-width: 1280px) {
	.w102-sidebar .w102-sidebar-wrap {
		top: auto;
		bottom: 10%;
	}
}
@media screen and (max-width: 992px) {
	.w102-sidebar {
		height: 48px;
	}
	.w102-sidebar .w102-sidebar-wrap {
		top: auto;
		bottom: 0;
		left: 0;
	}
	.w102-sidebar .w102-sidebar-list {
		display: flex;
		background-color: #fff;
		box-shadow: 0 0 0 1px #d9d9d9;
	}
	.w102-sidebar .w102-sidebar-item {
		flex: 1;
		height: auto;
	}
	.w102-sidebar .w102-sidebar-item .wrap {
		position: relative;
		transform: translateX(0);
	}
	.w102-sidebar .w102-sidebar-item .trigger {
		justify-content: center;
		background-color: #fff;
		color: #333;
	}
	.w102-sidebar .w102-sidebar-item .trigger .icon {
		display: block;
		width: auto;
		height: 48px;
		line-height: 48px;
		text-align: center;
	}
	.w102-sidebar .w102-sidebar-item .trigger .text {
		display: none;
		font-size: 12px;
		padding-right: 0;
	}
	.w102-sidebar .w102-sidebar-item .popover {
		display: none;
		position: absolute;
		top: auto;
		left: 50%;
		bottom: 100%;
		right: auto;
		padding: 0 0 12px;
		transform: translateX(-50%);
	}
	.w102-sidebar .w102-sidebar-item .popover .popover-wrap {
		box-shadow: 6px 0 20px 2px rgba(0, 0, 0, 0.18);
	}
	.w102-sidebar .w102-sidebar-item .popover .popover-wrap:after {
		top: auto;
		right: auto;
		left: 50%;
		bottom: -8px;
		margin-left: -8px;
		border-width: 8px 8px 0 8px;
		border-color: #fff transparent transparent transparent;
	}
	.w102-sidebar .w102-sidebar-item.top {
		display: none;
	}
	.w102-sidebar .w102-sidebar-item.primary {
		flex: 2;
		order: 2;
	}
	.w102-sidebar .w102-sidebar-item.primary .trigger {
		background-color: #febc2a;
		color: #fff;
	}
	.w102-sidebar .w102-sidebar-item.primary .trigger .text {
		display: block;
	}
	.w102-sidebar .w102-sidebar-item:hover .wrap {
		transform: translateX(0);
	}
	.w102-sidebar .w102-sidebar-item:hover .popover {
		display: block;
	}
	.w102-sidebar.scrolled .w102-sidebar-item.top {
		display: none;
	}
}

/*!- w102-sidebar end -*/
/*!- w102-search begin -*/
.w102-search {
	display: none;
	position: fixed;
	z-index: 1002;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
}
.w102-search .w102-search-wrap {
	display: block;
	position: relative;
	width: 100%;
	min-height: 40%;
	background-color: #fff;
}
.w102-search .w102-search-close {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 56px;
	height: 56px;
	line-height: 56px;
	transition: color 0.3s;
	text-align: center;
}
.w102-search .w102-search-close i {
	font-size: 24px;
}
.w102-search .w102-search-close:hover {
	color: #febc2a;
}
.w102-search .w102-search-content {
	display: block;
	max-width: 768px;
	margin: 0 auto;
	padding: 10vh 16px;
}
.w102-search .search-bar .bar {
	display: block;
	position: relative;
}
.w102-search .search-bar input {
	display: block;
	width: 100%;
	border: 1px solid #d9d9d9;
	font-size: 16px;
	line-height: 46px;
	height: 48px;
	padding: 0 64px 0 16px;
	transition: all 0.3s;
	color: #333;
}
.w102-search .search-bar input:focus {
	border-color: #febc2a;
	box-shadow: 0 0 0 3px rgba(254, 188, 42, 0.2);
}
.w102-search .search-bar button {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 48px;
	height: 48px;
	background-color: transparent;
	cursor: pointer;
	border: 0;
	transition: color 0.3s;
	color: #333;
}
.w102-search .search-bar button i {
	font-size: 20px;
}
.w102-search .search-bar button:hover {
	color: #febc2a;
}
.w102-search .search-tip {
	display: block;
	font-size: 0;
	line-height: 1;
	margin-top: 16px;
}
.w102-search .search-tip a {
	display: inline-block;
	font-size: 14px;
	line-height: 32px;
	padding: 0 16px;
	text-align: center;
	background-color: #f5f5f5;
	color: #333;
	max-width: 180px;
	margin: 12px 12px 0 0;
	border-radius: 16px;
	transition: color 0.3s, background-color 0.3s;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: normal;
}
.w102-search .search-tip a:hover {
	background-color: #fffcf4;
	color: #febc2a;
}
.w102-search.opened {
	display: block;
}
.w102-search.opening {
	-webkit-animation: search-wrapper-in 0.4s both;
	animation: search-wrapper-in 0.4s both;
}
.w102-search.opening .w102-search-wrap {
	-webkit-animation: search-content-in 0.4s both;
	animation: search-content-in 0.4s both;
}
.w102-search.closing {
	-webkit-animation: search-wrapper-out 0.4s both;
	animation: search-wrapper-out 0.4s both;
}
.w102-search.closing .w102-search-wrap {
	-webkit-animation: search-content-out 0.4s both;
	animation: search-content-out 0.4s both;
}

@-webkit-keyframes search-wrapper-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes search-wrapper-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes search-content-in {
	0% {
		transform: translateY(-100%);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}
@keyframes search-content-in {
	0% {
		transform: translateY(-100%);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}
@-webkit-keyframes search-wrapper-out {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes search-wrapper-out {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@-webkit-keyframes search-content-out {
	0% {
		transform: translateY(0);
		opacity: 1;
	}
	100% {
		transform: translateY(-100%);
		opacity: 0;
	}
}
@keyframes search-content-out {
	0% {
		transform: translateY(0);
		opacity: 1;
	}
	100% {
		transform: translateY(-100%);
		opacity: 0;
	}
}
/*!- w102-search end -*/
/*!- w102-inner-backing begin -*/
.w102-inner-backing .w102-inner-backing-wrap {
	position: relative;
	width: 100%;
}
.w102-inner-backing .w102-inner-backing-wrap > img {
	display: block;
	height: 0;
	width: 100%;
	padding-bottom: 16.6666666667%;
}
.w102-inner-backing .w102-inner-backing-wrap > img.loaded {
	width: 100%;
	height: auto;
	padding-right: 0;
	padding-bottom: 0;
}
.w102-inner-backing .w102-inner-backing-wrap .mask {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.4);
}

/*!- w102-inner-backing end -*/
/*!- w102-crumb begin -*/
.w102-crumb {
	background-color: #f5f5f5;
}
.w102-crumb .w102-crumb-list {
	font-size: 0;
}
.w102-crumb .w102-crumb-list .w102-crumb-item {
	display: inline-block;
	vertical-align: middle;
	font-size: 16px;
	line-height: 40px;
	margin-right: 12px;
	color: #333;
	transition: color 0.5s;
}
.w102-crumb .w102-crumb-list .w102-crumb-item:hover {
	color: #febc2a;
}
.w102-crumb .w102-crumb-list .w102-crumb-item:nth-child(even),
.w102-crumb .w102-crumb-list .w102-crumb-item.separator {
	color: #999;
	pointer-events: none;
}
.w102-crumb .w102-crumb-list .w102-crumb-item:last-child.separator {
	display: none;
}
@media screen and (max-width: 1280px) {
	.w102-crumb .w102-crumb-list .w102-crumb-item {
		font-size: 14px;
		line-height: 36px;
		margin-right: 8px;
	}
}
@media screen and (max-width: 992px) {
	.w102-crumb .w102-crumb-list .w102-crumb-item {
		font-size: 14px;
		line-height: 32px;
	}
}

/*!- w102-crumb end -*/
/*!- w102-inquiry begin -*/
.w102-inquiry .w102-inquiry-alert {
	font-size: 16px;
	line-height: 1.576;
	border-left: 4px solid #febc2a;
	color: #febc2a;
	padding: 16px 20px;
	margin-bottom: 32px;
	font-weight: 700;
	background-color: #fffcf4;
}
.w102-inquiry .w102-inquiry-form ul {
	display: flex;
	flex-wrap: wrap;
	margin: -32px 0 0 -32px;
}
.w102-inquiry .w102-inquiry-form ul li {
	display: block;
	width: 100%;
	padding: 32px 0 0 32px;
	position: relative;
}
.w102-inquiry .w102-inquiry-form ul li.col-1-2 {
	width: 50%;
}
.w102-inquiry .w102-inquiry-form ul li.col-1-3 {
	width: 33.3333%;
}
.w102-inquiry .w102-inquiry-form ul li.error input[type="text"] {
	border-color: #fe5050;
}
.w102-inquiry .w102-inquiry-form ul li.error input[type="text"]:focus {
	border-color: #fe5050;
	box-shadow: 0 0 0 3px rgba(254, 80, 80, 0.2);
}
.w102-inquiry .w102-inquiry-form ul li.error textarea {
	border-color: #fe5050;
}
.w102-inquiry .w102-inquiry-form ul li.error textarea:focus {
	border-color: #fe5050;
	box-shadow: 0 0 0 3px rgba(254, 80, 80, 0.2);
}
.w102-inquiry .w102-inquiry-form ul li.error .tips {
	display: block;
}
.w102-inquiry .label {
	display: block;
	font-size: 16px;
	line-height: 1;
	padding-bottom: 8px;
	color: #333;
}
.w102-inquiry .label > em {
	color: red;
	margin-right: 8px;
}
.w102-inquiry input[type="text"] {
	display: block;
	width: 100%;
	font-size: 16px;
	font-family: inherit;
	height: 40px;
	padding: 0 12px;
	border: 1px solid #d9d9d9;
	transition: border 0.5s, box-shadow 0.5s;
	color: #333;
}
.w102-inquiry input[type="text"]:hover {
	border-color: #febc2a;
}
.w102-inquiry input[type="text"]:focus {
	border-color: #febc2a;
	box-shadow: 0 0 0 3px rgba(254, 188, 42, 0.2);
}
.w102-inquiry textarea {
	display: block;
	outline: none;
	width: 100%;
	font-size: 16px;
	line-height: 1.576;
	padding: 8px 12px;
	transition: border 0.5s, box-shadow 0.5s;
	font-family: inherit;
	resize: none;
	border: 1px solid #d9d9d9;
	color: #333;
}
.w102-inquiry textarea:hover {
	border-color: #febc2a;
}
.w102-inquiry textarea:focus {
	border-color: #febc2a;
	box-shadow: 0 0 0 3px rgba(254, 188, 42, 0.2);
}
.w102-inquiry button {
	display: inline-block;
	vertical-align: middle;
	font-size: 16px;
	font-family: inherit;
	outline: none;
	border: 0;
	background-color: #febc2a;
	color: #fff;
	height: 40px;
	padding: 0 24px;
	transition: background-color 0.5s;
	cursor: pointer;
	overflow: hidden;
	position: relative;
}
.w102-inquiry button:hover {
	background-color: #e5a926;
}
.w102-inquiry button:disabled,
.w102-inquiry button.disabled {
	cursor: not-allowed;
	background-color: #ffde95;
}
.w102-inquiry .checkbox {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	font-size: 0;
	margin-left: 8px;
}
.w102-inquiry .checkbox > span {
	display: block;
	position: relative;
	font-size: 14px;
	padding-left: 24px;
	line-height: 40px;
	cursor: pointer;
	color: #333;
}
.w102-inquiry .checkbox > span:before,
.w102-inquiry .checkbox > span:after {
	display: block;
	position: absolute;
	content: "";
	transition: all 0.5s;
}
.w102-inquiry .checkbox > span:before {
	top: 50%;
	left: 0;
	width: 18px;
	height: 18px;
	background-color: #fff;
	border: 1px solid #d9d9d9;
	margin-top: -9px;
}
.w102-inquiry .checkbox > span:after {
	width: 9px;
	height: 6px;
	border-width: 0 0 2px 2px;
	border-color: transparent;
	border-style: solid;
	top: 50%;
	left: 4px;
	margin-top: -5px;
	transform: rotate(-45deg);
}
.w102-inquiry .checkbox > span a {
	color: #febc2a;
}
.w102-inquiry .checkbox > input[type="checkbox"] {
	display: block;
	position: relative;
	vertical-align: middle;
	margin-right: 24px;
	width: 0;
	height: 0;
	cursor: pointer;
}
.w102-inquiry .checkbox > input[type="checkbox"]:checked + span:before {
	border-color: #febc2a;
	background-color: #febc2a;
}
.w102-inquiry .checkbox > input[type="checkbox"]:checked + span:after {
	border-color: #fff;
}
.w102-inquiry .checkbox > input[type="checkbox"]:checked:disabled + span:after {
	border-color: #d9d9d9;
}
.w102-inquiry .checkbox > input[type="checkbox"]:disabled {
	cursor: not-allowed;
}
.w102-inquiry .checkbox > input[type="checkbox"]:disabled + span {
	color: #999;
	cursor: not-allowed;
}
.w102-inquiry .checkbox > input[type="checkbox"]:disabled + span:before {
	border-color: #d9d9d9;
	background-color: #f5f5f5;
}
.w102-inquiry .tips {
	display: none;
	position: absolute;
	left: 32px;
	font-size: 14px;
	line-height: 32px;
	color: #fe5050;
}
.w102-inquiry.light .w102-inquiry-alert {
	background-color: rgba(254, 188, 42, 0.1);
}
.w102-inquiry.light .label {
	color: #fff;
}
.w102-inquiry.light input[type="text"] {
	color: #fff;
	background-color: rgba(255, 255, 255, 0.1);
}
.w102-inquiry.light input[type="text"]::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.45);
}
.w102-inquiry.light textarea {
	color: #fff;
	background-color: rgba(255, 255, 255, 0.1);
}
.w102-inquiry.light textarea::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.45);
}
.w102-inquiry.light .checkbox > span {
	color: #fff;
}
.w102-inquiry.light .checkbox > input[type="checkbox"]:disabled + span {
	color: rgba(255, 255, 255, 0.45);
}
.w102-inquiry.light .checkbox > input[type="checkbox"]:disabled + span:before {
	background-color: #f5f5f5;
}
@media screen and (max-width: 1280px) {
	.w102-inquiry .w102-inquiry-alert {
		padding: 12px 16px;
		margin-bottom: 24px;
	}
	.w102-inquiry .w102-inquiry-form {
		padding-bottom: 24px;
	}
	.w102-inquiry .w102-inquiry-form ul {
		margin: -24px 0 0 -24px;
	}
	.w102-inquiry .w102-inquiry-form ul li {
		padding: 24px 0 0 24px;
	}
	.w102-inquiry input[type="text"] {
		font-size: 16px;
		height: 36px;
		padding: 0 10px;
	}
	.w102-inquiry textarea {
		font-size: 16px;
		padding: 6px 12px;
	}
	.w102-inquiry button {
		height: 36px;
		padding: 0 16px;
	}
	.w102-inquiry .tips {
		left: 24px;
		line-height: 24px;
	}
}
@media screen and (max-width: 992px) {
	.w102-inquiry .w102-inquiry-alert {
		padding: 8px 12px;
		margin-bottom: 16px;
	}
	.w102-inquiry .w102-inquiry-form {
		padding-bottom: 16px;
	}
	.w102-inquiry .w102-inquiry-form ul {
		margin: -16px 0 0 -16px;
	}
	.w102-inquiry .w102-inquiry-form ul li {
		padding: 16px 0 0 16px;
	}
	.w102-inquiry .w102-inquiry-form ul li.col-1-2 {
		width: 100%;
	}
	.w102-inquiry .w102-inquiry-form ul li.col-1-3 {
		width: 100%;
	}
	.w102-inquiry input[type="text"] {
		font-size: 14px;
		height: 32px;
		padding: 0 8px;
	}
	.w102-inquiry textarea {
		font-size: 14px;
		padding: 4px 8px;
	}
	.w102-inquiry button {
		height: 32px;
		padding: 0 12px;
		font-size: 14px;
	}
	.w102-inquiry .tips {
		left: 16px;
		font-size: 12px;
		line-height: 16px;
	}
}

/*!- w102-inquiry end -*/
/*!- w102-pagination begin -*/
.w102-pagination .w102-pagination-links {
	margin: -16px 0 0 -16px;
	line-height: 1;
	font-size: 0;
}
.w102-pagination .w102-pagination-links a {
	display: inline-block;
	line-height: 40px;
	min-width: 40px;
	text-align: center;
	font-size: 14px;
	margin: 16px 0 0 16px;
	padding: 0 16px;
	border-radius: 20px;
	background-color: #f5f5f5;
	color: #333;
	transition: background-color 0.4s, color 0.4s;
}
.w102-pagination .w102-pagination-links a:hover {
	background-color: #fffcf4;
	color: #febc2a;
}
.w102-pagination .w102-pagination-links a.current {
	background-color: #febc2a;
	color: #fff;
}
.w102-pagination .w102-pagination-links.center {
	text-align: center;
}
.w102-pagination .w102-pagination-links.right {
	text-align: right;
}
@media screen and (max-width: 1280px) {
	.w102-pagination .w102-pagination-links {
		margin: -12px 0 0 -12px;
	}
	.w102-pagination .w102-pagination-links a {
		line-height: 36px;
		min-width: 36px;
		margin: 12px 0 0 12px;
		padding: 0 12px;
		border-radius: 18px;
	}
}
@media screen and (max-width: 992px) {
	.w102-pagination .w102-pagination-links {
		margin: -8px 0 0 -8px;
	}
	.w102-pagination .w102-pagination-links a {
		line-height: 32px;
		min-width: 32px;
		font-size: 12px;
		margin: 8px 0 0 8px;
		padding: 0 8px;
		border-radius: 16px;
	}
}

/*!- w102-pagination end -*/
/*!- w102-tabs begin -*/
.w102-tabs {
	display: block;
	position: sticky;
	z-index: 997;
	top: 72px;
	left: 0;
	right: 0;
	background-color: #fff;
	box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05);
}
.w102-tabs .w102-tabs-wrap {
	padding: 0;
}
.w102-tabs .w102-tabs-content ul {
	display: flex;
	justify-content: center;
	overflow-x: auto;
	padding: 0 16px;
}
.w102-tabs .w102-tabs-content ul li {
	margin: 0 16px;
}
.w102-tabs .w102-tabs-content ul li a {
	display: block;
	line-height: 56px;
	font-size: 16px;
	color: #333;
	max-width: 200px;
	border-bottom: 1px solid transparent;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: normal;
}
.w102-tabs .w102-tabs-content ul li.active a {
	color: #febc2a;
	border-color: #febc2a;
}
.w102-tabs.auto-hide {
	display: none;
}
@media screen and (max-width: 1280px) {
	.w102-tabs .w102-tabs-content ul li {
		margin: 0 12px;
	}
}
@media screen and (max-width: 992px) {
	.w102-tabs {
		top: 56px;
	}
	.w102-tabs .w102-tabs-content ul {
		justify-content: left;
		padding: 0 16px;
	}
	.w102-tabs .w102-tabs-content ul li {
		margin: 0 16px 0 0;
	}
	.w102-tabs .w102-tabs-content ul li a {
		line-height: 40px;
		font-size: 14px;
	}
	.w102-tabs.auto-hide {
		display: block;
	}
}

/*!- w102-tabs end -*/
/*!- w102-banner begin -*/
.w102-banner .w102-banner-wrap:nth-child(1) .w102-banner-item > img,
.w102-banner .w102-banner-wrap.banner-pc .w102-banner-item > img {
	height: 0;
	width: 100%;
	padding-bottom: 40%;
}
.w102-banner .w102-banner-wrap:nth-child(1) .w102-banner-item > img.loaded,
.w102-banner .w102-banner-wrap.banner-pc .w102-banner-item > img.loaded {
	width: 100%;
	height: auto;
	padding-right: 0;
	padding-bottom: 0;
}
.w102-banner .w102-banner-wrap:nth-child(2),
.w102-banner .w102-banner-wrap.banner-h5 {
	display: none;
}
.w102-banner .w102-banner-wrap:nth-child(2) .w102-banner-item > img,
.w102-banner .w102-banner-wrap.banner-h5 .w102-banner-item > img {
	height: 0;
	width: 100%;
	padding-bottom: 50%;
}
.w102-banner .w102-banner-wrap:nth-child(2) .w102-banner-item > img.loaded,
.w102-banner .w102-banner-wrap.banner-h5 .w102-banner-item > img.loaded {
	width: 100%;
	height: auto;
	padding-right: 0;
	padding-bottom: 0;
}
.w102-banner .w102-banner-item {
	display: block;
}
.w102-banner .w102-banner-item > img {
	display: block;
}
.w102-banner .swiper-button-prev,
.w102-banner .swiper-container-rtl .swiper-button-next {
	left: 5%;
}
.w102-banner .swiper-button-next,
.w102-banner .swiper-container-rtl .swiper-button-prev {
	right: 5%;
}
@media screen and (max-width: 992px) {
	.w102-banner.has-mobile .w102-banner-wrap:nth-child(1),
	.w102-banner.has-mobile .w102-banner-wrap.banner-pc {
		display: none;
	}
	.w102-banner.has-mobile .w102-banner-wrap:nth-child(2),
	.w102-banner.has-mobile .w102-banner-wrap.banner-h5 {
		display: block;
	}
}

/*!- w102-banner end -*/
/*!- w102-catalog begin -*/
.w102-catalog .w102-catalog-list {
	display: flex;
	margin: -32px 0 0 -32px;
}
.w102-catalog .w102-catalog-item {
	display: block;
	width: 16.6666%;
	padding: 32px 0 0 32px;
}
.w102-catalog .w102-catalog-item .wrap {
	display: block;
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 100%;
}
.w102-catalog .w102-catalog-item .wrap > a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 16px;
	border: 1px solid #d9d9d9;
	color: #333;
	transition: all 0.3s;
}
.w102-catalog .w102-catalog-item .wrap > a > img {
	display: block;
	max-height: 120px;
	max-width: 100%;
	object-fit: contain;
	object-position: center;
	height: 90%;
	width: 0;
	padding-right: 90%;
}
.w102-catalog .w102-catalog-item .wrap > a > img.loaded {
	width: auto;
	height: 90%;
	padding-right: 0;
	padding-bottom: 0;
}
.w102-catalog .w102-catalog-item .wrap > a > span {
	display: block;
	font-size: 16px;
	line-height: 1.576;
	margin-top: 8px;
}
.w102-catalog .w102-catalog-item .wrap > a:hover {
	border-color: #febc2a;
	color: #febc2a;
	background-color: #fffcf4;
}
@media screen and (max-width: 1280px) {
	.w102-catalog .w102-catalog-list {
		margin: -24px 0 0 -24px;
	}
	.w102-catalog .w102-catalog-item {
		width: 16.6666%;
		padding: 24px 0 0 24px;
	}
	.w102-catalog .w102-catalog-item .wrap > a {
		padding: 8px;
	}
	.w102-catalog .w102-catalog-item .wrap > a > img.loaded {
		width: auto;
		height: 70%;
		padding-right: 0;
		padding-bottom: 0;
	}
	.w102-catalog .w102-catalog-item .wrap > a > span {
		font-size: 14px;
		margin-top: 4px;
	}
}
@media screen and (max-width: 992px) {
	.w102-catalog .w102-catalog-list {
		margin: -16px 0 0 -16px;
		flex-wrap: wrap;
	}
	.w102-catalog .w102-catalog-item {
		width: 33.3333%;
		padding: 16px 0 0 16px;
	}
	.w102-catalog .w102-catalog-item .wrap > a {
		padding: 4px;
	}
	.w102-catalog .w102-catalog-item .wrap > a > img.loaded {
		width: auto;
		height: 50%;
		padding-right: 0;
		padding-bottom: 0;
	}
}

/*!- w102-catalog end -*/
/*!- w102-product begin -*/
.w102-product .w102-product-title > h3 {
	font-size: 48px;
	font-weight: lighter;
	text-align: center;
	text-transform: uppercase;
	font-family: "Times New Roman", serif;
	color: #333;
	margin-bottom: 48px;
}
.w102-product .w102-product-list {
	display: flex;
	margin: -32px 0 0 -32px;
	flex-wrap: wrap;
}
.w102-product .w102-nav-item {
	display: block;
	width: 16.6666%!important;
	padding: 32px 0 0 32px;
}
.w102-product .w102-product-item {
	display: block;
	width: 25%;
	padding: 32px 0 0 32px;
}

.w102-product .w102-product-item > a {
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: column;
}
.w102-product .w102-product-item > a:hover .cover {
	opacity: 0.6;
}
.w102-product .w102-product-item > a:hover .intro {
	color: #febc2a;
}
.w102-product .w102-product-item .cover {
	width: 100%;
	height: 100%;
	position: relative;
	box-shadow: 0 0 0 1px #d9d9d9;
	transition: opacity 0.3s;
}
.w102-product .w102-product-item .cover > img {
	display: block;
	object-position: center;
	object-fit: contain;
	height: auto;
	width: 100%;
	padding-bottom: 100%;
}
.w102-product .w102-product-item .cover > img.loaded {
	width: 100%;
	height: auto;
	padding-right: 0;
	padding-bottom: 0;
}
.w102-product .w102-product-item .intro {
	font-size: 16px;
	line-height: 1.576;
	text-align: center;
	margin-top: 16px;
	height: 24px;
	color: #333;
	transition: color 0.3s;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: normal;
}
@media screen and (max-width: 1280px) {
	.w102-product .w102-product-title > h3 {
		font-size: 32px;
		margin-bottom: 32px;
	}
	.w102-product .w102-product-list {
		margin: -24px 0 0 -24px;
	}
	.w102-product .w102-product-item {
		padding: 24px 0 0 24px;
	}
	.w102-product .w102-product-item .intro {
		font-size: 14px;
		margin-top: 12px;
	}
}
@media screen and (max-width: 992px) {
	.w102-product .w102-product-title > h3 {
		font-size: 24px;
		margin-bottom: 24px;
	}
	.w102-product .w102-product-list {
		margin: -16px 0 0 -16px;
		flex-wrap: wrap;
	}
	.w102-product .w102-product-item {
		width: 50%;
		padding: 16px 0 0 16px;
	}
	.w102-product .w102-product-item .cover > img.loaded{
	    height: 191px;
	}
	.w102-product .w102-product-item .intro {
		font-size: 14px;
		margin-top: 8px;
	}
	
}

@media screen and (max-width: 992px) {
    .w102-product .w102-product-item .cover > img.loaded{
	    height: 191px;
	}
}

/*!- w102-product end -*/
/*!- w102-about begin -*/
.w102-about .w102-about-wrap {
	display: flex;
}
.w102-about .w102-about-intro {
	width: 50%;
	height: 420px;
	background-color: #f5f5f5;
}
.w102-about .w102-about-intro .wrap {
	max-width: 830px;
	margin-left: auto;
	padding: 5% 32px 32px 16px;
}
.w102-about .w102-about-intro .wrap h3 {
	font-size: 48px;
	font-weight: lighter;
	text-transform: uppercase;
	font-family: "Times New Roman", serif;
	color: #333;
	margin-bottom: 48px;
	position: relative;
}
.w102-about .w102-about-intro .wrap h3:after {
	display: block;
	content: "";
	position: absolute;
	bottom: -16px;
	left: 0;
	width: 64px;
	height: 1px;
	background-color: #333;
}
.w102-about .w102-about-intro .wrap p {
	font-size: 16px;
	line-height: 2;
	margin-bottom: 20px;
	color: #666;
}
.w102-about .w102-about-intro .wrap div {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
.w102-about .w102-about-intro .wrap div img {
	height: 0;
	width: 48%;
	padding-bottom: 48%;
	display: block;
	object-position: center;
	object-fit: contain;
}
.w102-about .w102-about-intro .wrap div img:first-child {
	margin-right: 4%;
}
.w102-about .w102-about-intro .wrap div img.loaded {
	width: 48%;
	height: auto;
	padding-right: 0;
	padding-bottom: 0;
}
.w102-about .w102-about-cover {
	width: 50%;
	height: 750px;
}
.w102-about .w102-about-cover img {
    height: 100%;
}
.w102-about .w102-about-cover .video {
	display: block;
	position: relative;
	height: 100%;
}
.w102-about .w102-about-cover .video .video-cover {
	height: 100%;
}
.w102-about .w102-about-cover .video .video-cover > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.w102-about .w102-about-cover .video .video-mask {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	color: #fff;
	transition: color 0.5s;
}
.w102-about .w102-about-cover .video .video-mask .w102-iconfont {
	font-size: 64px;
}
.w102-about .w102-about-cover .video .video-mask:hover {
	color: #febc2a;
}
@media screen and (max-width: 1280px) {
	.w102-about .w102-about-intro .wrap {
		padding: 5% 24px 24px 16px;
	}
	.w102-about .w102-about-intro .wrap h3 {
		font-size: 32px;
		margin-bottom: 32px;
	}
	.w102-about .w102-about-intro .wrap h3:after {
		bottom: -12px;
	}
	.w102-about .w102-about-intro .wrap p {
		font-size: 14px;
	}
	.w102-about .w102-about-cover .video .video-mask .w102-iconfont {
		font-size: 48px;
	}
}
@media screen and (max-width: 992px) {
	.w102-about .w102-about-wrap {
		flex-wrap: wrap;
		padding: 16px 0;
	}
	.w102-about .w102-about-intro {
		width: 100%;
		height: auto;
		background-color: transparent;
	}
	.w102-about .w102-about-intro .wrap {
		max-width: none;
		padding: 0 16px 16px;
	}
	.w102-about .w102-about-intro .wrap h3 {
		font-size: 24px;
		margin-bottom: 24px;
		text-align: center;
	}
	.w102-about .w102-about-intro .wrap h3:after {
		display: none;
	}
	.w102-about .w102-about-intro .wrap p {
		font-size: 14px;
		line-height: 1.576;
		margin-bottom: 16px;
	}
	.w102-about .w102-about-cover {
		width: 100%;
		height: auto;
	}
	.w102-about .w102-about-cover .video .video-mask .w102-iconfont {
		font-size: 32px;
	}
}

/*!- w102-about end -*/
/*!- w102-about-detail begin -*/
.w102-about-detail {
	background-color: #f5f5f5;
	padding: 64px 0;
}
.w102-about-detail .w102-about-detail-title > h3 {
	font-size: 48px;
	font-weight: lighter;
	text-align: center;
	text-transform: uppercase;
	font-family: "Times New Roman", serif;
	color: #333;
	margin-bottom: 32px;
}
@media screen and (max-width: 1280px) {
	.w102-about-detail {
		padding: 32px 0;
	}
	.w102-about-detail .w102-about-detail-title > h3 {
		font-size: 32px;
		margin-bottom: 24px;
	}
}
@media screen and (max-width: 992px) {
	.w102-about-detail {
		padding: 24px 0;
	}
	.w102-about-detail .w102-about-detail-title > h3 {
		font-size: 24px;
		margin-bottom: 16px;
	}
}

/*!- w102-about-detail end -*/
/*!- w102-meta begin -*/
.w102-meta .w102-meta-list {
	display: flex;
}
.w102-meta .w102-meta-item {
	display: block;
	width: 25%;
	padding: 16px;
	text-align: center;
}
.w102-meta .w102-meta-item > img {
	display: block;
	margin: 0 auto;
	height: 72px;
	width: 0;
	padding-right: 72px;
}
.w102-meta .w102-meta-item > img.loaded {
	width: auto;
	height: 72px;
	padding-right: 0;
	padding-bottom: 0;
}
.w102-meta .w102-meta-item > h3 {
	font-size: 32px;
	font-weight: 500;
	line-height: 2;
	color: #333;
}
.w102-meta .w102-meta-item > p {
	font-size: 16px;
	color: #999;
}
@media screen and (max-width: 1280px) {
	.w102-meta .w102-meta-item {
		padding: 12px;
	}
	.w102-meta .w102-meta-item > img.loaded {
		width: auto;
		height: 64px;
		padding-right: 0;
		padding-bottom: 0;
	}
	.w102-meta .w102-meta-item > h3 {
		font-size: 28px;
	}
	.w102-meta .w102-meta-item > p {
		font-size: 14px;
	}
}
@media screen and (max-width: 992px) {
	.w102-meta .w102-meta-list {
		flex-wrap: wrap;
	}
	.w102-meta .w102-meta-item {
		width: 50%;
		padding: 16px 8px;
	}
	.w102-meta .w102-meta-item > img.loaded {
		width: auto;
		height: 48px;
		padding-right: 0;
		padding-bottom: 0;
	}
	.w102-meta .w102-meta-item > h3 {
		font-size: 24px;
	}
}

/*!- w102-meta end -*/
/*!- w102-news begin -*/
.w102-news .w102-news-wrap {
	display: flex;
	position: relative;
}
.w102-news .w102-news-cover {
	width: 50%;
	flex: none;
}
.w102-news .w102-news-intro {
	width: 50%;
	background-color: #f5f5f5;
}
.w102-news .w102-news-intro .wrap {
	max-width: 830px;
	margin-right: auto;
	padding: 5% 16px 0 32px;
}
.w102-news .w102-news-intro h3 {
	font-size: 48px;
	font-weight: lighter;
	text-transform: uppercase;
	font-family: "Times New Roman", serif;
	color: #333;
	margin-bottom: 48px;
	position: relative;
}
.w102-news .w102-news-intro h3:after {
	display: block;
	content: "";
	position: absolute;
	bottom: -16px;
	left: 0;
	width: 64px;
	height: 1px;
	background-color: #333;
}
.w102-news .w102-news-intro ul {
	display: flex;
	padding: 5% 0 10%;
}
.w102-news .w102-news-intro li {
	display: block;
	width: 48%;
}
.w102-news .w102-news-intro li:nth-child(1) {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.w102-news .w102-news-intro li:nth-child(1) > a {
	height: 100%;
}
.w102-news .w102-news-intro li:nth-child(1) > a img {
	height: 100%!important;
	object-fit: cover;
}
.w102-news .w102-news-intro li:nth-child(1) > a div {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 10% 16px 16px;
	background-color: rgba(255, 255, 255, 0.8);
	background: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
	background: -o-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
	background: -moz-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
	background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.w102-news .w102-news-intro li:nth-child(1) > a h4 {
	font-size: 20px;
}
.w102-news .w102-news-intro li:nth-child(1) > a:hover h4 {
	color: #333;
}
.w102-news .w102-news-intro li:nth-child(1) > a:hover div {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.w102-news .w102-news-intro li:nth-child(2) {
	margin-right: 4%;
}
.w102-news .w102-news-intro li > a {
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}
.w102-news .w102-news-intro li > a img {
	display: block;
	object-position: center;
	object-fit: contain;
	height: 0;
	width: 100%;
	padding-bottom: 75%;
}
.w102-news .w102-news-intro li > a img.loaded {
	width: 100%;
	height: 100%;
	padding-right: 0;
	padding-bottom: 0;
}
.w102-news .w102-news-intro li > a h4 {
	font-size: 18px;
	margin: 16px 0;
	font-weight: normal;
	line-height: 24px;
	height: 48px;
	color: #333;
	transition: color 0.3s;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	word-break: break-word;
	white-space: normal;
	-webkit-line-clamp: 2;
}
.w102-news .w102-news-intro li > a p {
	font-size: 16px;
	color: #999;
}
.w102-news .w102-news-intro li > a:hover h4 {
	color: #febc2a;
}
@media screen and (max-width: 1280px) {
	.w102-news .w102-news-intro .wrap {
		padding: 5% 16px 0 24px;
	}
	.w102-news .w102-news-intro h3 {
		font-size: 32px;
		margin-bottom: 32px;
	}
	.w102-news .w102-news-intro h3:after {
		bottom: -12px;
	}
	.w102-news .w102-news-intro ul {
		padding: 5% 0 10%;
	}
	.w102-news .w102-news-intro li:nth-child(1) > a div {
		padding: 8px;
	}
	.w102-news .w102-news-intro li:nth-child(1) > a img {
		object-fit: contain;
	}
	.w102-news .w102-news-intro li:nth-child(1) > a h4 {
		font-size: 16px;
	}
	.w102-news .w102-news-intro li > a h4 {
		font-size: 16px;
		margin: 8px 0;
		line-height: 20px;
		height: 40px;
	}
	.w102-news .w102-news-intro li > a p {
		font-size: 14px;
	}
}
@media screen and (max-width: 992px) {
	.w102-news .w102-news-cover {
		display: none;
	}
	.w102-news .w102-news-intro {
		width: 100%;
		background-color: transparent;
	}
	.w102-news .w102-news-intro .wrap {
		max-width: none;
		margin-right: 0;
		padding: 16px 0;
	}
	.w102-news .w102-news-intro h3 {
		font-size: 24px;
		margin-bottom: 24px;
		text-align: center;
	}
	.w102-news .w102-news-intro h3:after {
		display: none;
	}
	.w102-news .w102-news-intro ul {
		padding: 0 0 16px 16px;
		overflow-x: auto;
	}
	.w102-news .w102-news-intro li {
		width: 75%;
		margin-right: 16px;
		flex: none;
	}
	.w102-news .w102-news-intro li:nth-child(1) {
		width: 75%;
		height: auto;
		position: static;
	}
	.w102-news .w102-news-intro li:nth-child(1) > a {
		height: auto;
	}
	.w102-news .w102-news-intro li:nth-child(1) > a img {
		height: 100%;
	}
	.w102-news .w102-news-intro li:nth-child(1) > a div {
		position: static;
		padding: 0;
		background: transparent;
		-webkit-transform: none;
		transform: none;
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
	}
	.w102-news .w102-news-intro li:nth-child(1) > a h4 {
		font-size: 14px;
	}
	.w102-news .w102-news-intro li:nth-child(1) > a:hover div {
		-webkit-transform: none;
		transform: none;
	}
	.w102-news .w102-news-intro li:nth-child(2) {
		margin-right: 16px;
	}
	.w102-news .w102-news-intro li > a h4 {
		font-size: 14px;
		margin: 8px 0;
	}
	.w102-news .w102-news-intro li > a p {
		font-size: 12px;
	}
}

/*!- w102-news end -*/
/*!- w102-advantage begin -*/
.w102-advantage .w102-advantage-title > h3 {
	font-size: 48px;
	font-weight: lighter;
	text-align: center;
	text-transform: uppercase;
	font-family: "Times New Roman", serif;
	color: #333;
	margin-bottom: 32px;
}
.w102-advantage .w102-advantage-list {
	display: flex;
	flex-wrap: wrap;
}
.w102-advantage .w102-advantage-item {
	width: 33.3%;
	display: flex;
	padding: 32px;
	align-items: center;
	justify-content: center;
}
.w102-advantage .w102-advantage-item .cover {
	flex: none;
	margin-right: 32px;
	width: 96px;
}
.w102-advantage .w102-advantage-item .cover > img {
	display: flex;
	height: 0;
	width: 100%;
	padding-bottom: 100%;
}
.w102-advantage .w102-advantage-item .cover > img.loaded {
	width: 100%;
	height: auto;
	padding-right: 0;
	padding-bottom: 0;
}
.w102-advantage .w102-advantage-item .intro {
	flex: auto;
	width: 100%;
}
.w102-advantage .w102-advantage-item .intro > h4 {
	font-size: 18px;
	line-height: 1.576;
	font-weight: normal;
	color: #333;
}
.w102-advantage .w102-advantage-item .intro > p {
	font-size: 14px;
	line-height: 1.576;
	color: #999;
	text-align: justify;
	width: 100%;
}
@media screen and (max-width: 1280px) {
	.w102-advantage .w102-advantage-title > h3 {
		font-size: 32px;
		margin-bottom: 24px;
	}
	.w102-advantage .w102-advantage-item {
		padding: 16px;
		flex-direction: column;
	}
	.w102-advantage .w102-advantage-item .cover {
		margin-right: 0;
		margin-bottom: 16px;
		width: 72px;
	}
	.w102-advantage .w102-advantage-item .intro > h4 {
		text-align: center;
		margin-bottom: 8px;
	}
	.w102-advantage .w102-advantage-item .intro > p {
		text-align: center;
	}
}
@media screen and (max-width: 992px) {
	.w102-advantage .w102-advantage-title > h3 {
		font-size: 24px;
		margin-bottom: 16px;
	}
	.w102-advantage .w102-advantage-item {
		width: 50%;
		padding: 8px;
	}
	.w102-advantage .w102-advantage-item .cover {
		margin-bottom: 8px;
		width: 56px;
	}
	.w102-advantage .w102-advantage-item .intro > h4 {
		font-size: 16px;
	}
	.w102-advantage .w102-advantage-item .intro > p {
		font-size: 12px;
	}
}

/*!- w102-advantage end -*/
/*!- w102-case begin -*/
.w102-case .w102-case-wrap {
	display: flex;
	position: relative;
}
.w102-case .w102-case-cover {
	width: 50%;
	flex: none;
}


.w102-case .w102-case-intro {
	width: 50%;
	background-color: #f5f5f5;
}

.w102-case .w102-case-intro li:nth-child(3) {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.w102-case .w102-case-intro li:nth-child(3) > a {
  height: 100%;
}
.w102-case .w102-case-intro li:nth-child(3) > a img {
  height: 100%!important;
  object-fit: cover;
}
.w102-case .w102-case-intro li:nth-child(3) > a div {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10% 16px 16px;
  background-color: rgba(255, 255, 255, 0.8);
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
  background: -o-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
  background: -moz-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all .5s;
  transition: all .5s;
}
.w102-case .w102-case-intro li:nth-child(3) > a h4 {
  font-size: 20px;
}
.w102-case .w102-case-intro li:nth-child(3) > a:hover h4 {
  color: #333;
}
.w102-case .w102-case-intro li:nth-child(3) > a:hover div {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
 

.w102-case .w102-case-intro .wrap {
	max-width: 830px;
	margin-left: auto;
	padding: 5% 32px 0 16px;
}
.w102-case .w102-case-intro h3 {
	font-size: 48px;
	font-weight: lighter;
	text-transform: uppercase;
	font-family: "Times New Roman", serif;
	color: #333;
	margin-bottom: 48px;
	position: relative;
}
.w102-case .w102-case-intro h3:after {
	display: block;
	content: "";
	position: absolute;
	bottom: -16px;
	left: 0;
	width: 64px;
	height: 1px;
	background-color: #333;
}
.w102-case .w102-case-intro ul {
	display: flex;
	padding: 5% 0 10%;
}
.w102-case .w102-case-intro li {
	display: block;
	width: 50%;
}



.w102-case .w102-case-intro li:nth-child(1) {
	margin-right: 4%;
}
.w102-case .w102-case-intro li > a {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
}
.w102-case .w102-case-intro li > a img {
	display: block;
	object-position: center;
	object-fit: contain;
	height: 0;
	width: 100%;
	padding-bottom: 75%;
}
.w102-case .w102-case-intro li > a img.loaded {
	width: 100%;
	height: 322px;
	padding-right: 0;
	padding-bottom: 0;
}
.w102-case .w102-case-intro li > a h4 {
	font-size: 18px;
	margin: 16px 0;
	font-weight: normal;
	line-height: 24px;
	height: 48px;
	color: #333;
	transition: color 0.3s;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	word-break: break-word;
	white-space: normal;
	-webkit-line-clamp: 2;
}
.w102-case .w102-case-intro li > a p {
	font-size: 16px;
	color: #999;
}
.w102-case .w102-case-intro li > a:hover h4 {
	color: #febc2a;
}
@media screen and (max-width: 1280px) {
	.w102-case .w102-case-intro .wrap {
		padding: 5% 24px 0 16px;
	}
	.w102-case .w102-case-intro h3 {
		font-size: 32px;
		margin-bottom: 32px;
	}
	.w102-case .w102-case-intro h3:after {
		bottom: -12px;
	}
	.w102-case .w102-case-intro ul {
		padding: 5% 0 10%;
	}
	.w102-case .w102-case-intro li:nth-child(3) > a div {
		padding: 8px;
	}
	.w102-case .w102-case-intro li:nth-child(3) > a img {
		object-fit: cover;
	}
	.w102-case .w102-case-intro li:nth-child(3) > a h4 {
		font-size: 16px;
	}
	.w102-case .w102-case-intro li > a h4 {
		font-size: 16px;
		margin: 8px 0;
		line-height: 20px;
		height: 40px;
	}
	.w102-case .w102-case-intro li > a p {
		font-size: 14px;
	}
}
@media screen and (max-width: 992px) {
	.w102-case .w102-case-cover {
		display: none;
	}
	.w102-case .w102-case-intro {
		width: 100%;
		background-color: transparent;
	}
	.w102-case .w102-case-intro .wrap {
		max-width: none;
		margin-left: 0;
		padding: 16px 0;
	}
	.w102-case .w102-case-intro h3 {
		font-size: 24px;
		margin-bottom: 24px;
		text-align: center;
	}
	.w102-case .w102-case-intro h3:after {
		display: none;
	}
	.w102-case .w102-case-intro ul {
		padding: 0 0 16px 16px;
		overflow-x: auto;
	}
	.w102-case .w102-case-intro li {
		width: 95%;
		margin-right: 16px;
		flex: none;
	}
	.w102-case .w102-case-intro li:nth-child(3) {
		width: 95%;
		height: auto;
		position: static;
	}
	.w102-case .w102-case-intro li:nth-child(3) > a {
		height: auto;
	}
	.w102-case .w102-case-intro li:nth-child(3) > a img {
		height: 322px!important;
	}
	.w102-case .w102-case-intro li:nth-child(3) > a div {
		position: static;
		padding: 0;
		background: transparent;
		-webkit-transform: none;
		transform: none;
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
	}
	.w102-case .w102-case-intro li:nth-child(3) > a h4 {
		font-size: 14px;
	}
	.w102-case .w102-case-intro li:nth-child(3) > a:hover div {
		-webkit-transform: none;
		transform: none;
	}
	.w102-case .w102-case-intro li:nth-child(1) {
		margin-right: 16px;
	}
	.w102-case .w102-case-intro li > a h4 {
		font-size: 14px;
		margin: 8px 0;
	}
	.w102-case .w102-case-intro li > a p {
		font-size: 12px;
	} 
	.w102-case .w102-case-intro li > a img { 
    	object-fit: cover; 
    }
}

/*!- w102-case end -*/
/*!- w102-trade begin -*/
.w102-trade .w102-trade-wrap {
	max-width: 1660px;
	padding: 16px;
	margin: 0 auto;
}
.w102-trade .w102-trade-title > h3 {
	font-size: 48px;
	font-weight: lighter;
	text-align: center;
	text-transform: uppercase;
	font-family: "Times New Roman", serif;
	color: #333;
	margin-bottom: 48px;
}
.w102-trade .w102-trade-list {
	display: flex;
}
.w102-trade .w102-trade-item {
	width: 33.33%;
}
.w102-trade .w102-trade-item .wrap {
	display: flex;
	flex-direction: column;
}
.w102-trade .w102-trade-item .cover {
	display: block;
	width: 100%;
	height: 0;
	padding-bottom: 66.66%;
	position: relative;
}
.w102-trade .w102-trade-item .cover .cover-wrap {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.w102-trade .w102-trade-item .cover .cover-wrap > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: all 0.3s;
}
.w102-trade .w102-trade-item .intro {
	display: block;
	width: 100%;
	height: 0;
	padding-bottom: 66.66%;
	position: relative;
	background-color: #f5f5f5;
	transition: background-color 0.3s;
}
.w102-trade .w102-trade-item .intro .intro-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 32px;
	text-align: center;
	line-height: 1.576;
}
.w102-trade .w102-trade-item .intro .intro-wrap > h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 16px;
	color: #333;
}
.w102-trade .w102-trade-item .intro .intro-wrap > p {
	font-size: 14px;
	color: #999;
	width: 100%;
}
.w102-trade .w102-trade-item:hover .cover .cover-wrap > img {
	transform: scale(1.1);
}
.w102-trade .w102-trade-item:hover .intro {
	background-color: #fffcf4;
}
.w102-trade .w102-trade-item:nth-child(even) .cover {
	order: 2;
}
@media screen and (max-width: 1280px) {
	.w102-trade .w102-trade-title > h3 {
		font-size: 32px;
		margin-bottom: 32px;
	}
	.w102-trade .w102-trade-item .intro .intro-wrap {
		padding: 24px;
	}
	.w102-trade .w102-trade-item .intro .intro-wrap > h4 {
		font-size: 16px;
		margin-bottom: 12px;
	}
}
@media screen and (max-width: 992px) {
	.w102-trade .w102-trade-wrap {
		padding: 0;
	}
	.w102-trade .w102-trade-title > h3 {
		font-size: 24px;
		margin-bottom: 24px;
	}
	.w102-trade .w102-trade-list {
		overflow-x: auto;
		padding: 0 0 16px 16px;
	}
	.w102-trade .w102-trade-item {
		width: 75%;
		flex: none;
		margin-right: 16px;
	}
	.w102-trade .w102-trade-item .intro {
		width: 100%;
		height: auto;
		padding-bottom: 0;
	}
	.w102-trade .w102-trade-item .intro .intro-wrap {
		position: static;
		padding: 16px;
	}
	.w102-trade .w102-trade-item .intro .intro-wrap > h4 {
		margin-bottom: 8px;
	}
	.w102-trade .w102-trade-item:nth-child(even) .cover {
		order: 0;
	}
}

/*!- w102-trade end -*/
/*!- w102-partner begin -*/
.w102-partner .w102-partner-title > h3 {
	font-size: 48px;
	font-weight: lighter;
	text-align: center;
	text-transform: uppercase;
	font-family: "Times New Roman", serif;
	color: #333;
	margin-bottom: 48px;
}
.w102-partner .w102-partner-list {
	display: flex;
	margin: -32px 0 0 -32px;
}
.w102-partner .w102-partner-item {
	width: 16.66%;
	padding: 32px 0 0 32px;
}
.w102-partner .w102-partner-item .wrap {
	width: 100%;
	height: 100%;
	position: relative;
	box-shadow: 0 0 0 1px #d9d9d9;
}
.w102-partner .w102-partner-item .wrap img {
	display: block;
	object-position: center;
	object-fit: contain;
	height: 0;
	width: 100%;
	padding-bottom: 100%;
}
.w102-partner .w102-partner-item .wrap img.loaded {
	width: 100%;
	height: 100%;
	padding-right: 0;
	padding-bottom: 0;
}
@media screen and (max-width: 1280px) {
	.w102-partner .w102-partner-title > h3 {
		font-size: 32px;
		margin-bottom: 32px;
	}
	.w102-partner .w102-partner-list {
		margin: -24px 0 0 -24px;
	}
	.w102-partner .w102-partner-item {
		width: 16.66%;
		padding: 24px 0 0 24px;
	}
}
@media screen and (max-width: 992px) {
	.w102-partner .w102-partner-title > h3 {
		font-size: 24px;
		margin-bottom: 24px;
	}
	.w102-partner .w102-partner-list {
		flex-wrap: wrap;
		margin: -16px 0 0 -16px;
	}
	.w102-partner .w102-partner-item {
		width: 33.33%;
		padding: 16px 0 0 16px;
	}
}

/*!- w102-partner end -*/
/*!- w102-about-gallery begin -*/
.w102-about-gallery .w102-about-gallery-item {
	display: block;
	width: 100%;
}
.w102-about-gallery .w102-about-gallery-item > img {
	display: block;
	height: 0;
	width: 100%;
	padding-bottom: 100%;
}
.w102-about-gallery .w102-about-gallery-item > img.loaded {
	width: 100%;
	height: auto;
	padding-right: 0;
	padding-bottom: 0;
}

/*!- w102-about-gallery end -*/
/*!- w102-cert begin -*/
.w102-cert .w102-cert-content {
	background-color: #f5f5f5;
	padding: 32px;
}
.w102-cert .w102-cert-item {
	display: block;
	position: relative;
	height: 0;
	width: 100%;
	padding-bottom: 75%;
}
.w102-cert .w102-cert-item > img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
@media screen and (max-width: 1280px) {
	.w102-cert .w102-cert-content {
		padding: 24px;
	}
}
@media screen and (max-width: 992px) {
	.w102-cert .w102-cert-content {
		padding: 16px;
	}
}

/*!- w102-cert end -*/
/*!- w102-news-grid begin -*/
.w102-news-grid .w102-news-grid-content ul {
	display: flex;
	flex-wrap: wrap;
	margin: -32px 0 0 -32px;
}
.w102-news-grid .w102-news-grid-content ul li {
	display: block;
	width: 33.33%;
	padding: 32px 0 0 32px;
}
.w102-news-grid .w102-news-grid-content ul li a {
	display: flex;
	flex-direction: column;
}
.w102-news-grid .w102-news-grid-content ul li a:hover h3 {
	color: #febc2a;
}
.w102-news-grid .w102-news-grid-content ul li img {
	display: block;
	flex: auto;
	object-position: center;
	object-fit: contain;
	height: 0;
	width: 100%;
	padding-bottom: 66.6666666667%;
}
.w102-news-grid .w102-news-grid-content ul li img.loaded {
	width: 100%;
	height: 288px;
	padding-right: 0;
	padding-bottom: 0;
}
.w102-news-grid .w102-news-grid-content ul li .meta {
	display: block;
	flex: none;
	font-size: 14px;
	line-height: 40px;
	height: 32px;
	color: #999;
}
.w102-news-grid .w102-news-grid-content ul li h3 {
	flex: none;
	font-size: 16px;
	line-height: 20px;
	padding-top: 8px;
	height: 48px;
	font-weight: normal;
	color: #333;
	transition: color 0.4s;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	word-break: break-word;
	white-space: normal;
	-webkit-line-clamp: 2;
}
@media screen and (max-width: 1280px) {
	.w102-news-grid .w102-news-grid-content ul {
		margin: -24px 0 0 -24px;
	}
	.w102-news-grid .w102-news-grid-content ul li {
		width: 33.33%;
		padding: 24px 0 0 24px;
	}
	.w102-news-grid .w102-news-grid-content ul li .meta {
		line-height: 32px;
		height: 28px;
	}
}
@media screen and (max-width: 992px) {
	.w102-news-grid .w102-news-grid-content ul {
		margin: -16px 0 0 -16px;
	}
	.w102-news-grid .w102-news-grid-content ul li {
		width: 50%;
		padding: 16px 0 0 16px;
	}
	.w102-news-grid .w102-news-grid-content ul li img.loaded { 
    	height: 130px; 
    }
	.w102-news-grid .w102-news-grid-content ul li .meta {
		font-size: 12px;
		line-height: 28px;
		height: 24px;
	}
	.w102-news-grid .w102-news-grid-content ul li h3 {
		font-size: 14px;
	}
}

/*!- w102-news-grid end -*/
/*!- w102-faq-list begin -*/
.w102-faq-list .w102-faq-list-content ul li {
	position: relative;
	padding: 32px 0 32px 16px;
	border-bottom: 1px solid #e6e6e6;
}
.w102-faq-list .w102-faq-list-content ul li > span {
	display: block;
	position: absolute;
	top: 16px;
	left: 0;
	font-size: 36px;
	line-height: 1.5;
	font-weight: 900;
	z-index: -1;
	color: #fff2d4;
}
.w102-faq-list .w102-faq-list-content ul li > h3 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.576;
	color: #333;
	word-wrap: break-word;
}
.w102-faq-list .w102-faq-list-content ul li > p {
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	word-wrap: break-word;
}
@media screen and (max-width: 1280px) {
	.w102-faq-list .w102-faq-list-content ul li {
		padding: 24px 0 24px 12px;
	}
	.w102-faq-list .w102-faq-list-content ul li > span {
		top: 12px;
		font-size: 28px;
	}
	.w102-faq-list .w102-faq-list-content ul li > h3 {
		font-size: 16px;
	}
	.w102-faq-list .w102-faq-list-content ul li > p {
		font-size: 14px;
	}
}
@media screen and (max-width: 992px) {
	.w102-faq-list .w102-faq-list-content ul li {
		padding: 16px 0 16px 36px;
	}
	.w102-faq-list .w102-faq-list-content ul li > span {
		top: 8px;
		font-size: 24px;
	}
	.w102-faq-list .w102-faq-list-content ul li > h3 {
		font-size: 16px;
	}
	.w102-faq-list .w102-faq-list-content ul li > p {
		font-size: 14px;
	}
}

/*!- w102-faq-list end -*/
/*!- w102-sitemap begin -*/
.w102-sitemap .w102-sitemap-content ul {
	padding-top: 1px;
}
.w102-sitemap .w102-sitemap-content ul li {
	display: block;
	border: 1px solid #d9d9d9;
	margin-top: -1px;
}
.w102-sitemap .w102-sitemap-content ul li a {
	color: #333;
	transition: color 0.5s;
}
.w102-sitemap .w102-sitemap-content ul li a:hover {
	color: #febc2a;
}
.w102-sitemap .w102-sitemap-content ul li > h3 {
	display: block;
	font-size: 20px;
	line-height: 1.576;
	padding: 16px 24px;
	font-weight: normal;
	color: #333;
	background-color: #f5f5f5;
	border-bottom: 1px solid #d9d9d9;
}
.w102-sitemap .w102-sitemap-content ul li > dl {
	display: flex;
	flex-wrap: wrap;
	padding: 16px 0;
}
.w102-sitemap .w102-sitemap-content ul li > dl > dt {
	display: block;
	width: 100%;
	font-size: 18px;
	line-height: 1.576;
	padding: 4px 24px;
}
.w102-sitemap .w102-sitemap-content ul li > dl > dd {
	display: block;
	width: 20%;
	font-size: 16px;
	line-height: 1.576;
	padding: 4px 24px;
	color: #333;
}
@media screen and (max-width: 1280px) {
	.w102-sitemap .w102-sitemap-content ul li > h3 {
		font-size: 18px;
		padding: 12px 20px;
	}
	.w102-sitemap .w102-sitemap-content ul li > dl {
		padding: 12px 0;
	}
	.w102-sitemap .w102-sitemap-content ul li > dl > dt {
		font-size: 16px;
		padding: 2px 20px;
	}
	.w102-sitemap .w102-sitemap-content ul li > dl > dd {
		width: 25%;
		font-size: 14px;
		padding: 2px 20px;
	}
}
@media screen and (max-width: 992px) {
	.w102-sitemap .w102-sitemap-content ul li > h3 {
		padding: 8px 16px;
	}
	.w102-sitemap .w102-sitemap-content ul li > dl {
		padding: 8px 0;
	}
	.w102-sitemap .w102-sitemap-content ul li > dl > dt {
		padding: 0 16px;
	}
	.w102-sitemap .w102-sitemap-content ul li > dl > dd {
		width: 50%;
		padding: 0 16px;
	}
}

/*!- w102-sitemap end -*/
/*!- w102-product-grid begin -*/
.w102-product-grid .w102-product-grid-wrap {
	display: flex;
}
.w102-product-grid .w102-product-grid-sidebar {
	width: 20%;
	max-width: 200px;
	margin-right: 32px;
}
.w102-product-grid .w102-product-grid-sidebar ul {
	position: sticky;
	top: 72px;
	left: 0;
	padding: 24px 0;
}
.w102-product-grid .w102-product-grid-sidebar ul li a {
	display: block;
	position: relative;
	line-height: 40px;
	font-size: 16px;
	padding: 0 16px;
	color: #333;
	transition: color 0.4s;
	border-radius: 6px;
	border: 1px solid transparent;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: normal;
}
.w102-product-grid .w102-product-grid-sidebar ul li a:before,
.w102-product-grid .w102-product-grid-sidebar ul li a:after {
	display: block;
	position: absolute;
	content: "";
	top: 50%;
	right: 10px;
	width: 5px;
	height: 0;
	border-top: 1px solid;
}
.w102-product-grid .w102-product-grid-sidebar ul li a:before {
	margin-top: -2px;
	transform: rotate(45deg);
}
.w102-product-grid .w102-product-grid-sidebar ul li a:after {
	margin-top: 2px;
	transform: rotate(-45deg);
}
.w102-product-grid .w102-product-grid-sidebar ul li a:hover {
	color: #febc2a;
}
.w102-product-grid .w102-product-grid-sidebar ul li.active a {
	color: #febc2a;
	border-color: #febc2a;
	background-color: #fffcf4;
}
.w102-product-grid .w102-product-grid-content {
	flex: auto;
	width: 100%;
}
.w102-product-grid .w102-product-grid-content .hd {
	position: sticky;
	top: 72px;
	left: 0;
	z-index: 997;
	background-color: #fff;
	padding: 24px 0;
}
.w102-product-grid .w102-product-grid-content .hd h2 {
	font-size: 24px;
	line-height: 1.5;
	text-transform: uppercase;
	color: #333;
}
.w102-product-grid .w102-product-grid-content .hd h2 i {
	vertical-align: 0.2em;
}
.w102-product-grid .w102-product-grid-content .hd p {
	font-size: 16px;
	line-height: 1.8;
	margin: 0;
	color: #999;
}
.w102-product-grid .w102-product-grid-content ul {
	display: flex;
	flex-wrap: wrap;
	margin: -32px 0 0 -32px;
}
.w102-product-grid .w102-product-grid-content ul li {
	display: block;
	width: 25%;
	padding: 32px 0 0 32px;
}
.w102-product-grid .w102-product-grid-content ul li a {
	display: flex;
	flex-direction: column;
}
.w102-product-grid .w102-product-grid-content ul li a:hover h3 {
	color: #febc2a;
}
.w102-product-grid .w102-product-grid-content ul li img {
	display: block;
	flex: auto;
	object-position: center;
	object-fit: contain;
	height: 0;
	width: 100%;
	padding-bottom: 100%;
}
.w102-product-grid .w102-product-grid-content ul li img.loaded {
	width: 100%;
	height: 100%;
	padding-right: 0;
	padding-bottom: 0;
}
.w102-product-grid .w102-product-grid-content ul li h3 {
	flex: none;
	font-size: 16px;
	line-height: 20px;
	padding-top: 8px;
	height: 48px;
	font-weight: normal;
	color: #333;
	transition: color 0.4s;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	word-break: break-word;
	white-space: normal;
	-webkit-line-clamp: 2;
}
@media screen and (max-width: 1280px) {
	.w102-product-grid .w102-product-grid-sidebar {
		margin-right: 24px;
	}
	.w102-product-grid .w102-product-grid-sidebar ul {
		padding: 16px 0;
	}
	.w102-product-grid .w102-product-grid-content .hd {
		padding: 16px 0;
	}
	.w102-product-grid .w102-product-grid-content .hd h2 {
		font-size: 20px;
	}
	.w102-product-grid .w102-product-grid-content .hd p {
		font-size: 14px;
	}
	.w102-product-grid .w102-product-grid-content ul {
		margin: -24px 0 0 -24px;
	}
	.w102-product-grid .w102-product-grid-content ul li {
		width: 33.33%;
		padding: 24px 0 0 24px;
	}
}
@media screen and (max-width: 992px) {
	.w102-product-grid .w102-product-grid-wrap {
		flex-direction: column;
	}
	.w102-product-grid .w102-product-grid-sidebar {
		display: none;
	}
	.w102-product-grid .w102-product-grid-content .hd {
		position: static;
		padding: 8px 0 24px;
	}
	.w102-product-grid .w102-product-grid-content .hd h2 {
		font-size: 18px;
	}
	.w102-product-grid .w102-product-grid-content ul {
		margin: -16px 0 0 -16px;
	}
	.w102-product-grid .w102-product-grid-content ul li {
		width: 50%;
		padding: 16px 0 0 16px;
	}
	.w102-product-grid .w102-product-grid-content ul li img.loaded{
	    height: 100%!important;
	}
	.w102-product-grid .w102-product-grid-content ul li h3 {
		font-size: 14px;
	}
}

/*!- w102-product-grid end -*/
/*!- w102-cert-grid begin -*/
.w102-cert-grid .w102-cert-grid-content ul {
	display: flex;
	flex-wrap: wrap;
	margin: -32px 0 0 -32px;
}
.w102-cert-grid .w102-cert-grid-content ul li {
	display: block;
	width: 25%;
	padding: 32px 0 0 32px;
}
.w102-cert-grid .w102-cert-grid-content ul li a {
	display: flex;
	flex-direction: column;
}
.w102-cert-grid .w102-cert-grid-content ul li a:hover h3 {
	color: #febc2a;
}
.w102-cert-grid .w102-cert-grid-content ul li img {
	display: block;
	flex: auto;
	object-position: center;
	object-fit: contain;
	background-color: #f5f5f5;
	height: 0;
	width: 100%;
	padding-bottom: 66.6666666667%;
}
.w102-cert-grid .w102-cert-grid-content ul li img.loaded {
	width: 100%;
	height: 100%;
	padding-right: 0;
	padding-bottom: 0;
}
.w102-cert-grid .w102-cert-grid-content ul li h3 {
	flex: none;
	font-size: 16px;
	line-height: 20px;
	padding-top: 8px;
	height: 48px;
	font-weight: normal;
	color: #333;
	transition: color 0.4s;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	word-break: break-word;
	white-space: normal;
	-webkit-line-clamp: 2;
}
@media screen and (max-width: 1280px) {
	.w102-cert-grid .w102-cert-grid-content ul {
		margin: -24px 0 0 -24px;
	}
	.w102-cert-grid .w102-cert-grid-content ul li {
		width: 33.33%;
		padding: 24px 0 0 24px;
	}
}
@media screen and (max-width: 992px) {
	.w102-cert-grid .w102-cert-grid-content ul {
		margin: -16px 0 0 -16px;
	}
	.w102-cert-grid .w102-cert-grid-content ul li {
		width: 50%;
		padding: 16px 0 0 16px;
	}
	.w102-cert-grid .w102-cert-grid-content ul li h3 {
		font-size: 14px;
	}
}

/*!- w102-cert-grid end -*/
/*!- w102-case-grid begin -*/
.w102-case-grid .w102-case-grid-content ul {
	display: flex;
	flex-wrap: wrap;
	margin: -32px 0 0 -32px;
}
.w102-case-grid .w102-case-grid-content ul li {
	display: block;
	width: 25%;
	padding: 32px 0 0 32px;
}
.w102-case-grid .w102-case-grid-content ul li a {
	display: flex;
	flex-direction: column;
}
.w102-case-grid .w102-case-grid-content ul li a:hover h3 {
	color: #febc2a;
}
.w102-case-grid .w102-case-grid-content ul li img {
	display: block;
	flex: auto;
	object-position: center;
	object-fit: contain;
	height: 0;
	width: 100%;
	padding-bottom: 66.6666666667%;
}
.w102-case-grid .w102-case-grid-content ul li img.loaded {
	width: 100%;
	height: 316px;
	padding-right: 0;
	padding-bottom: 0;
}
.w102-case-grid .w102-case-grid-content ul li h3 {
	flex: none;
	font-size: 16px;
	line-height: 20px;
	padding-top: 8px;
	height: 48px;
	font-weight: normal;
	color: #333;
	transition: color 0.4s;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	word-break: break-word;
	white-space: normal;
	-webkit-line-clamp: 2;
}
@media screen and (max-width: 1280px) {
	.w102-case-grid .w102-case-grid-content ul {
		margin: -24px 0 0 -24px;
	}
	.w102-case-grid .w102-case-grid-content ul li {
		width: 33.33%;
		padding: 24px 0 0 24px;
	}
}
@media screen and (max-width: 992px) {
	.w102-case-grid .w102-case-grid-content ul {
		margin: -16px 0 0 -16px;
	}
	.w102-case-grid .w102-case-grid-content ul li {
		width: 50%;
		padding: 16px 0 0 16px;
	}
	.w102-case-grid .w102-case-grid-content ul li h3 {
		font-size: 14px;
	}	
	.w102-case-grid .w102-case-grid-content ul li img.loaded { 
    	height: auto; 
    }

}

/*!- w102-case-grid end -*/
/*!- w102-detail begin -*/
.w102-detail .w102-detail-wrap {
	display: flex;
}
.w102-detail .w102-detail-content {
	flex: auto;
	width: 100%;
	background-color: #fff;
	border: 1px solid #e6e6e6;
}
.w102-detail .w102-detail-sidebar {
	flex: auto;
	width: 100%;
	max-width: 480px;
	margin: 0 0 0 32px;
}
.w102-detail .reader {
	padding: 32px;
}
.w102-detail .reader .hd {
	text-align: center;
	padding-bottom: 32px;
	margin-bottom: 32px;
	border-bottom: 1px solid #e6e6e6;
}
.w102-detail .reader .hd h2 {
	font-size: 24px;
	color: #333;
}
.w102-detail .reader .hd p {
	font-size: 16px;
	color: #999;
}
.w102-detail .reader .ft {
	padding-top: 32px;
	margin-top: 32px;
	border-top: 1px solid #e6e6e6;
}
.w102-detail .reader .ft:before,
.w102-detail .reader .ft:after {
	display: table;
	content: "";
	width: 100%;
}
.w102-detail .reader .ft:after {
	clear: both;
}
.w102-detail .reader .ft .pager {
	font-size: 14px;
	line-height: 24px;
	text-transform: uppercase;
	color: #333;
	transition: color 0.5s;
}
.w102-detail .reader .ft .pager:hover {
	color: #febc2a;
}
.w102-detail .reader .ft .prev {
	float: left;
}
.w102-detail .reader .ft .next {
	float: right;
}
.w102-detail .wrapper .hd {
	display: flex;
	align-items: center;
	margin-bottom: 32px;
	text-transform: uppercase;
}
.w102-detail .wrapper .hd h3 {
	flex: auto;
	font-size: 24px;
	line-height: 32px;
	color: #333;
}
.w102-detail .wrapper .hd a {
	line-height: 32px;
	font-size: 14px;
	color: #999;
	transition: color 0.5s;
}
.w102-detail .wrapper .hd a:hover {
	color: #febc2a;
}
.w102-detail .wrapper .bd ul {
	display: flex;
	flex-wrap: wrap;
	margin: -32px 0 0 -32px;
}
.w102-detail .wrapper .bd ul li {
	width: 100%;
	padding: 32px 0 0 32px;
}
.w102-detail .wrapper .bd ul li > a {
	display: flex;
}
.w102-detail .wrapper .bd ul li > a:hover .intro h3 {
	color: #febc2a;
}
.w102-detail .wrapper .bd ul li .cover {
	width: 100%;
	max-width: 160px;
	flex: none;
}
.w102-detail .wrapper .bd ul li .cover img {
	display: block;
	object-position: center;
	object-fit: contain;
	height: 0;
	width: 100%;
	padding-bottom: 100%;
}
.w102-detail .wrapper .bd ul li .cover img.loaded {
	width: 100%;
	height: 100%;
	padding-right: 0;
	padding-bottom: 0;
}
.w102-detail .wrapper .bd ul li .intro {
	width: 0;
	flex: auto;
	padding: 16px;
}
.w102-detail .wrapper .bd ul li .intro h3 {
	font-size: 16px;
	line-height: 32px;
	height: 32px;
	color: #333;
	transition: color 0.5s;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: normal;
}
.w102-detail .wrapper .bd ul li .intro p {
	font-size: 14px;
	line-height: 24px;
	height: 72px;
	color: #999;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	word-break: break-word;
	white-space: normal;
	-webkit-line-clamp: 3;
}
@media screen and (max-width: 1280px) {
	.w102-detail .w102-detail-wrap {
		flex-wrap: wrap;
	}
	.w102-detail .w102-detail-sidebar {
		max-width: none;
		margin: 24px 0 0;
	}
	.w102-detail .reader {
		padding: 24px;
	}
	.w102-detail .reader .hd {
		padding-bottom: 24px;
		margin-bottom: 24px;
	}
	.w102-detail .reader .hd h2 {
		font-size: 20px;
	}
	.w102-detail .reader .hd p {
		font-size: 14px;
	}
	.w102-detail .reader .ft {
		padding-top: 24px;
		margin-top: 24px;
	}
	.w102-detail .wrapper .hd {
		margin-bottom: 24px;
	}
	.w102-detail .wrapper .hd h3 {
		font-size: 20px;
		line-height: 24px;
	}
	.w102-detail .wrapper .hd a {
		line-height: 24px;
		font-size: 14px;
	}
	.w102-detail .wrapper .bd ul {
		margin: -24px 0 0 -24px;
	}
	.w102-detail .wrapper .bd ul li {
		width: 25%;
		padding: 24px 0 0 24px;
	}
	.w102-detail .wrapper .bd ul li > a {
		flex-direction: column;
	}
	.w102-detail .wrapper .bd ul li .cover {
		flex: auto;
		max-width: none;
	}
	.w102-detail .wrapper .bd ul li .intro {
		width: auto;
		padding: 8px 0;
	}
	.w102-detail .wrapper .bd ul li .intro h3 {
		font-size: 16px;
		line-height: 32px;
	}
	.w102-detail .wrapper .bd ul li .intro p {
		font-size: 14px;
		line-height: 24px;
		height: 72px;
	}
}
@media screen and (max-width: 992px) {
	.w102-detail .w102-detail-sidebar {
		margin: 16px 0 0;
	}
	.w102-detail .reader {
		padding: 16px;
	}
	.w102-detail .reader .hd {
		padding-bottom: 16px;
		margin-bottom: 16px;
	}
	.w102-detail .reader .hd h2 {
		font-size: 18px;
	}
	.w102-detail .reader .ft {
		padding-top: 16px;
		margin-top: 16px;
	}
	.w102-detail .wrapper .hd {
		margin: 16px 0;
	}
	.w102-detail .wrapper .hd h3 {
		font-size: 16px;
	}
	.w102-detail .wrapper .bd ul {
		margin: -16px 0 0 -16px;
	}
	.w102-detail .wrapper .bd ul li {
		width: 50%;
		padding: 16px 0 0 16px;
	}
	.w102-detail .wrapper .bd ul li .intro {
		padding: 8px 0;
	}
	.w102-detail .wrapper .bd ul li .intro h3 {
		font-size: 14px;
		line-height: 24px;
		height: 24px;
	}
	.w102-detail .wrapper .bd ul li .intro p {
		font-size: 12px;
		line-height: 20px;
		height: 60px;
	}
}

/*!- w102-detail end -*/
/*!- w102-contact begin -*/
.w102-contact .w102-contact-wrap {
	display: flex;
}
.w102-contact .w102-contact-content {
	flex: auto;
	width: 100%;
	background-color: #fff;
	border: 1px solid #e6e6e6;
	padding: 32px;
}
.w102-contact .w102-contact-content dl dt {
	font-size: 18px;
	line-height: 32px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #333;
}
.w102-contact .w102-contact-content dl dd label {
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	line-height: 1.576;
	min-width: 6em;
	color: #999;
}
.w102-contact .w102-contact-content dl dd a,
.w102-contact .w102-contact-content dl dd span {
	display: inline-block;
	vertical-align: top;
	line-height: 1.576;
	font-size: 16px;
	color: #333;
	word-break: break-word;
}
.w102-contact .w102-contact-content dl dd a {
	text-decoration: none;
}
.w102-contact .w102-contact-content dl dd a:hover {
	text-decoration: underline;
}
.w102-contact .w102-contact-content .company {
	border-bottom: 1px solid #e6e6e6;
	margin-bottom: 32px;
}
.w102-contact .w102-contact-content .company ul li {
	margin-bottom: 32px;
}
.w102-contact .w102-contact-content .company ul li dl dt {
	color: #febc2a;
}
.w102-contact .w102-contact-content .liaison ul li {
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px dotted #e6e6e6;
}
.w102-contact .w102-contact-content .liaison ul li dl {
	display: flex;
	flex-wrap: wrap;
}
.w102-contact .w102-contact-content .liaison ul li dl dt {
	width: 100%;
}
.w102-contact .w102-contact-content .liaison ul li dl dd {
	width: 50%;
}
.w102-contact .w102-contact-content .liaison ul li:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}
.w102-contact .w102-contact-sidebar {
	flex: auto;
	width: 100%;
	max-width: 640px;
	background-color: #333333;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center right;
}
.w102-contact .w102-contact-sidebar .wrapper {
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	padding: 48px 32px;
}
@media screen and (max-width: 1280px) {
	.w102-contact .w102-contact-wrap {
		flex-wrap: wrap;
	}
	.w102-contact .w102-contact-content {
		padding: 24px;
	}
	.w102-contact .w102-contact-content dl dd label {
		font-size: 16px;
		min-width: 4em;
	}
	.w102-contact .w102-contact-content dl dd a,
	.w102-contact .w102-contact-content dl dd span {
		font-size: 16px;
	}
	.w102-contact .w102-contact-content .company {
		margin-bottom: 24px;
	}
	.w102-contact .w102-contact-content .company ul li {
		margin-bottom: 24px;
	}
	.w102-contact .w102-contact-content .liaison ul li {
		margin-bottom: 12px;
		padding-bottom: 12px;
	}
	.w102-contact .w102-contact-sidebar {
		max-width: none;
		background-position: top center;
	}
	.w102-contact .w102-contact-sidebar .wrapper {
		padding: 32px 24px;
	}
}
@media screen and (max-width: 992px) {
	.w102-contact .w102-contact-content {
		padding: 16px;
	}
	.w102-contact .w102-contact-content dl dt {
		font-size: 16px;
	}
	.w102-contact .w102-contact-content dl dd label {
		display: inline;
		font-size: 14px;
		min-width: 0;
	}
	.w102-contact .w102-contact-content dl dd a,
	.w102-contact .w102-contact-content dl dd span {
		display: inline;
		font-size: 14px;
	}
	.w102-contact .w102-contact-content .company {
		margin-bottom: 16px;
	}
	.w102-contact .w102-contact-content .company ul li {
		margin-bottom: 16px;
	}
	.w102-contact .w102-contact-content .liaison ul li {
		margin-bottom: 8px;
		padding-bottom: 8px;
	}
	.w102-contact .w102-contact-content .liaison ul li dl dd {
		width: 100%;
	}
	.w102-contact .w102-contact-sidebar .wrapper {
		padding: 24px 16px;
	}
}

/*!- w102-contact end -*/
/*!- w102-product-detail begin -*/
.w102-product-detail .w102-product-detail-hd {
	display: flex;
	align-items: center;
	padding-bottom: 32px;
	border-bottom: 1px solid #e6e6e6;
}
.w102-product-detail .w102-product-detail-hd .profile {
	flex: auto;
	width: 55%;
	padding: 32px 5% 5% 0;
}
.w102-product-detail .w102-product-detail-hd .profile .title {
	font-size: 36px;
	line-height: 1.2;
	margin-bottom: 32px;
	font-family: "Times New Roman", serif;
}
.w102-product-detail .w102-product-detail-hd .profile .desc {
	font-size: 18px;
	line-height: 1.6;
	margin: 32px 0;
}
.w102-product-detail .w102-product-detail-hd .profile .meta {
	display: flex;
	flex-wrap: wrap;
	margin: -8px 0 0 -8px;
}
.w102-product-detail .w102-product-detail-hd .profile .meta li {
	padding: 8px 0 0 8px;
	width: 33.33%;
}
.w102-product-detail .w102-product-detail-hd .profile .meta li label {
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	line-height: 24px;
	min-width: 4em;
	color: #999;
}
.w102-product-detail .w102-product-detail-hd .profile .meta li span {
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	line-height: 24px;
	color: #333;
}
.w102-product-detail .w102-product-detail-hd .profile .tags {
	font-size: 0;
	line-height: 1;
}
.w102-product-detail .w102-product-detail-hd .profile .tags li {
	display: inline-block;
	vertical-align: top;
	margin: 0 16px 16px 0;
}
.w102-product-detail .w102-product-detail-hd .profile .tags li a {
	display: block;
	font-size: 14px;
	line-height: 32px;
	background-color: #f5f5f5;
	padding: 0 24px;
	border-radius: 16px;
	text-align: center;
	transition: color 0.5s, background-color 0.5s;
	max-width: 160px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: normal;
}
.w102-product-detail .w102-product-detail-hd .profile .tags li a:hover {
	background-color: #fffcf4;
	color: #febc2a;
}
.w102-product-detail .w102-product-detail-hd .profile .attrs {
	margin-top: 32px;
}
.w102-product-detail .w102-product-detail-hd .profile .attrs ul li {
	margin-bottom: 16px;
	font-size: 16px;
	color: #666;
}
.w102-product-detail .w102-product-detail-hd .profile .attrs ul li a:hover {
	color: #333;
	text-decoration: underline;
}
.w102-product-detail .w102-product-detail-hd .profile .actions {
	margin-top: 32px;
	font-size: 18px;
	color: #333;
	line-height: 32px;
	font-weight: 700;
}
.w102-product-detail .w102-product-detail-hd .profile .actions a {
	color: #febc2a;
}
.w102-product-detail .w102-product-detail-hd .profile .actions a:hover {
	text-decoration: underline;
}
.w102-product-detail .w102-product-detail-hd .gallery {
	flex: auto;
	width: 45%;
	max-width: 800px;
}
.w102-product-detail .w102-product-detail-hd .gallery .gallery-item {
	display: block;
	padding: 32px 0;
}
.w102-product-detail .w102-product-detail-hd .gallery .gallery-item .wrap {
	display: block;
	position: relative;
	height: 0;
	width: 100%;
	padding-bottom: 100%;
}
.w102-product-detail .w102-product-detail-hd .gallery .gallery-item .wrap img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.w102-product-detail .w102-product-detail-hd .gallery .swiper-pagination {
	bottom: 0;
	text-align: right;
}
.w102-product-detail .w102-product-detail-hd .gallery .swiper-pagination .swiper-pagination-bullet {
	background-color: #d9d9d9;
}
.w102-product-detail .w102-product-detail-hd .gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #333333;
}
.w102-product-detail .w102-product-detail-bd {
	padding: 32px 0;
	display: flex;
	align-items: flex-start;
}
.w102-product-detail .w102-product-detail-bd .sidebar {
	flex: auto;
	max-width: 320px;
	margin-right: 32px;
	position: sticky;
	top: 100px;
	left: 0;
}
.w102-product-detail .w102-product-detail-bd .sidebar dl {
	margin-bottom: 32px;
}
.w102-product-detail .w102-product-detail-bd .sidebar dl dt {
	font-size: 18px;
	line-height: 32px;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #e6e6e6;
}
.w102-product-detail .w102-product-detail-bd .sidebar dl dd {
	margin-bottom: 8px;
}
.w102-product-detail .w102-product-detail-bd .sidebar dl dd a {
	display: block;
	font-size: 16px;
	line-height: 1.576;
	color: #666;
}
.w102-product-detail .w102-product-detail-bd .sidebar dl dd a:hover {
	color: #febc2a;
}
.w102-product-detail .w102-product-detail-bd .sidebar dl dd img {
	display: block;
	object-position: center;
	object-fit: contain;
	height: 0;
	width: 100%;
	padding-bottom: 100%;
}
.w102-product-detail .w102-product-detail-bd .sidebar dl dd img.loaded {
	width: 100%;
	height: auto;
	padding-right: 0;
	padding-bottom: 0;
}
.w102-product-detail .w102-product-detail-bd .sidebar dl dd h3 {
	font-weight: normal;
	font-size: 14px;
	line-height: 32px;
	height: 32px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: normal;
}
.w102-product-detail .w102-product-detail-bd .wrapper {
	width: 100%;
	flex: auto;
	max-width: 992px;
	margin: 0 auto;
}
@media screen and (max-width: 1280px) {
	.w102-product-detail .w102-product-detail-hd {
		padding-bottom: 24px;
	}
	.w102-product-detail .w102-product-detail-hd .profile {
		padding: 24px 24px 24px 0;
	}
	.w102-product-detail .w102-product-detail-hd .profile .title {
		font-size: 28px;
		margin-bottom: 24px;
	}
	.w102-product-detail .w102-product-detail-hd .profile .desc {
		font-size: 16px;
		line-height: 1.5;
		margin: 16px 0;
	}
	.w102-product-detail .w102-product-detail-hd .profile .meta {
		margin: -4px 0 0 -4px;
	}
	.w102-product-detail .w102-product-detail-hd .profile .meta li {
		padding: 4px 0 0 4px;
		width: 50%;
	}
	.w102-product-detail .w102-product-detail-hd .profile .meta li label {
		font-size: 14px;
		min-width: 4em;
	}
	.w102-product-detail .w102-product-detail-hd .profile .meta li span {
		font-size: 14px;
	}
	.w102-product-detail .w102-product-detail-hd .profile .tags li {
		margin: 0 12px 12px 0;
	}
	.w102-product-detail .w102-product-detail-hd .profile .tags li a {
		padding: 0 16px;
	}
	.w102-product-detail .w102-product-detail-hd .profile .attrs {
		margin-top: 24px;
	}
	.w102-product-detail .w102-product-detail-hd .profile .attrs ul li {
		margin-bottom: 8px;
		font-size: 14px;
	}
	.w102-product-detail .w102-product-detail-hd .profile .actions {
		margin-top: 24px;
		font-size: 16px;
	}
	.w102-product-detail .w102-product-detail-hd .gallery .gallery-item {
		padding: 24px 0;
	}
	.w102-product-detail .w102-product-detail-bd {
		padding: 24px 0;
	}
	.w102-product-detail .w102-product-detail-bd .sidebar {
		margin-right: 24px;
	}
	.w102-product-detail .w102-product-detail-bd .sidebar dl {
		margin-bottom: 24px;
	}
	.w102-product-detail .w102-product-detail-bd .sidebar dl dt {
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 12px;
		padding-bottom: 12px;
	}
	.w102-product-detail .w102-product-detail-bd .sidebar dl dd {
		margin-bottom: 4px;
	}
	.w102-product-detail .w102-product-detail-bd .sidebar dl dd a {
		font-size: 14px;
	}
}
@media screen and (max-width: 992px) {
	.w102-product-detail .w102-product-detail-hd {
		flex-direction: column;
		padding-bottom: 16px;
	}
	.w102-product-detail .w102-product-detail-hd .profile {
		width: 100%;
		padding: 16px 0 0;
		order: 2;
	}
	.w102-product-detail .w102-product-detail-hd .profile .title {
		font-size: 24px;
		margin-bottom: 16px;
	}
	.w102-product-detail .w102-product-detail-hd .profile .desc {
		font-size: 14px;
		margin: 16px 0;
	}
	.w102-product-detail .w102-product-detail-hd .profile .meta {
		margin: -4px 0 0 -4px;
	}
	.w102-product-detail .w102-product-detail-hd .profile .meta li {
		padding: 4px 0 0 4px;
		width: 100%;
	}
	.w102-product-detail .w102-product-detail-hd .profile .meta li label {
		min-width: 0;
	}
	.w102-product-detail .w102-product-detail-hd .profile .tags li {
		margin: 0 8px 8px 0;
	}
	.w102-product-detail .w102-product-detail-hd .profile .tags li a {
		line-height: 28px;
		font-size: 12px;
		border-radius: 14px;
	}
	.w102-product-detail .w102-product-detail-hd .profile .attrs {
		margin-top: 16px;
	}
	.w102-product-detail .w102-product-detail-hd .profile .actions {
		margin-top: 16px;
		font-size: 14px;
	}
	.w102-product-detail .w102-product-detail-hd .gallery {
		width: 100%;
		max-width: none;
		padding: 16px 0 0;
	}
	.w102-product-detail .w102-product-detail-hd .gallery .gallery-item {
		padding: 0 0 32px;
	}
	.w102-product-detail .w102-product-detail-hd .gallery .swiper-pagination {
		bottom: 0;
		text-align: center;
	}
	.w102-product-detail .w102-product-detail-bd {
		padding: 16px 0;
		flex-direction: column;
	}
	.w102-product-detail .w102-product-detail-bd .sidebar {
		order: 2;
		max-width: none;
		margin-right: 0;
	}
	.w102-product-detail .w102-product-detail-bd .sidebar dl {
		margin-bottom: 16px;
	}
	.w102-product-detail .w102-product-detail-bd .sidebar dl dt {
		font-size: 14px;
		margin-bottom: 8px;
		padding-bottom: 8px;
	}
	.w102-product-detail .w102-product-detail-bd .sidebar .catalog {
		display: none;
	}
	.w102-product-detail .w102-product-detail-bd .sidebar .related dl {
		display: flex;
		flex-wrap: wrap;
		margin: -16px 0 0 -16px;
	}
	.w102-product-detail .w102-product-detail-bd .sidebar .related dl dt {
		width: 100%;
		margin: 16px 0 0 16px;
	}
	.w102-product-detail .w102-product-detail-bd .sidebar .related dl dd {
		width: 50%;
		padding: 16px 0 0 16px;
	}
	.w102-product-detail .w102-product-detail-bd .wrapper {
		max-width: none;
	}
}

/*!- w102-product-detail end -*/
