* {
	margin: 0;
	padding: 0;
	outline: none;
	box-sizing: border-box;
}

/* animation: headanim 0.5s ease 0s infinite; */
/* 手机icon动画 */
/* animation: moveNext 1s linear infinite; */
/* banner上下动画 */

@font-face {
	font-family: 'gilroy_bold';
	src: url('../fonts/gilroy-bold-4.otf') format('truetype');
}

@font-face {
	font-family: 'gilroy_light';
	src: url('../fonts/Gilroy-Light-11.otf') format('truetype');
}

@font-face {
	font-family: 'gilroy_Medium';
	src: url('../fonts/Gilroy-Medium-2.otf') format('truetype');
}

@font-face {
	font-family: 'gilroy_regular';
	src: url('../fonts/gilroy-regular-3.otf') format('truetype');
}

html {
	font-size: calc(100vw/19.2);
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media (min-width: 1901px) {
	html {
		/* font-size: calc(100vw/19.2); */
		font-size: 100px;
	}
}

@media (max-width: 1580px) {
	html {
		font-size: 66px;
	}
}

@media (max-width: 767px) {
	html {
		font-size: calc(100vw / 7.7);
	}
}

/* 中文默认字体 Arial  */
/* 英文默认字体 gilroy_regular */

body {
	min-height: 100%;
	font-size: 16px;
	line-height: 1.5;
	color: #000000;
}
.lang_zh{
	font-family: 'Arial', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI' !important;
	text-align: justify;
}
.lang_en{
	font-family: 'gilroy_regular', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI' !important;
}

a{
	display: inline-block;
}

@media (max-width: 1580px) {
	body {
		font-size: 14px;
	}
}

@media (max-width: 767px) {
	body {
		font-size: 0.28rem;
	}
}

.VisualEditing {
	font-size: 14px;
	cursor: pointer;
}

.h1 {
	z-index: -999;
	pointer-events: none;
	user-select: none;
	position: fixed;
	bottom: 0;
	right: 0;
	height: 0;
	opacity: 0;
}

.wow {
	visibility: hidden;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img,
video {
	border: 0;
	vertical-align: middle;
	max-width: 100%;
	object-fit: cover;
}


svg {
	vertical-align: middle;
	/* transform: translateY(-2px); */
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
	font-style: normal;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: inherit;
	font-style: inherit;
	font-size: inherit;
	font-weight: normal;
}

a,
input,
button,
select,
textarea {
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border-radius: 0;
	line-height: normal;
	text-decoration: none;
	color: #333;
}

abbr,
acronym {
	border: 0;
}

.flexBetween {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flexStart {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flexCenter {
	display: -webkit-flex;
	/* Safari */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flexEnd {
	display: -webkit-flex;
	/* Safari */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}


.ellipsis {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-justify: distribute-all-lines;
}

.ellipsis2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-justify: distribute-all-lines;
}

.ellipsis3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-justify: distribute-all-lines;
}

.ellipsis4 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	text-justify: distribute-all-lines;
}

.ellipsis5 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
	text-justify: distribute-all-lines;
}

/* 视频弹窗 */
.layerVideo {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	background: rgba(0, 0, 0, 0.5);
	display: none;
}

.layerVideo .box {
	width: min(12rem, 80vw);
	position: absolute;
	top: 50%;
	left: 50%;
	max-height: 80vh;
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
}

.layerVideo .box video {
	width: 100%;
}

.layerVideo .box iframe {
	width: 90%;
	min-height: 70vh;
	margin: auto;
	display: block;
}

.layerVideo .box span {
	position: absolute;
	right: -32px;
	top: -32px;
	color: #fff;
	font-size: 32px;
	font-weight: bold;
	display: block;
	cursor: pointer;
	transition: .4s;
}

.layerVideo .box span:hover {
	transform: rotate(180deg);
}

/* 视频弹窗 End*/

/* 图片弹框 */

.layerImg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 10;
	display: none;
}

.layerImg .close {
	position: absolute;
	right: 5vw;
	top: 0.5rem;
}

.layerImg .close i {
	color: #fff;
	cursor: pointer;
	font-size: 0.24rem;
	transition: 0.4s;
	display: inline-block;
}

.layerImg .close i:hover {
	transform: rotate(180deg);
}

.layerImg .box {
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(12rem, 80vw);
	transform: translate(-50%, -50%);
	display: flex;
	height: 80vh;
}

.layerImg .box img {
	max-width: 100%;
	max-height: 100%;
	margin: auto;
}

/* 图片弹框 End */


/* 头部手机图标动画 */
@keyframes headanim {
	0% {
		transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
	}

	25% {
		transform: rotate(10deg);
		-webkit-transform: rotate(10deg);
		-moz-transform: rotate(10deg);
		-o-transform: rotate(10deg);
	}

	100% {
		transform: rotate(-10deg);
		-webkit-transform: rotate(-10deg);
		-moz-transform: rotate(-10deg);
		-o-transform: rotate(-10deg);
	}
}

@-webkit-keyframes headanim {
	0% {
		transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
	}

	25% {
		transform: rotate(10deg);
		-webkit-transform: rotate(10deg);
		-moz-transform: rotate(10deg);
		-o-transform: rotate(10deg);
	}

	100% {
		transform: rotate(-10deg);
		-webkit-transform: rotate(-10deg);
		-moz-transform: rotate(-10deg);
		-o-transform: rotate(-10deg);
	}
}

@-moz-keyframes headanim {
	0% {
		transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
	}

	25% {
		transform: rotate(10deg);
		-webkit-transform: rotate(10deg);
		-moz-transform: rotate(10deg);
		-o-transform: rotate(10deg);
	}

	100% {
		transform: rotate(-10deg);
		-webkit-transform: rotate(-10deg);
		-moz-transform: rotate(-10deg);
		-o-transform: rotate(-10deg);
	}
}

@-o-keyframes headanim {
	0% {
		transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
	}

	25% {
		transform: rotate(10deg);
		-webkit-transform: rotate(10deg);
		-moz-transform: rotate(10deg);
		-o-transform: rotate(10deg);
	}

	100% {
		transform: rotate(-10deg);
		-webkit-transform: rotate(-10deg);
		-moz-transform: rotate(-10deg);
		-o-transform: rotate(-10deg);
	}
}

/* 头部手机图标动画END */

/* 手机导航 */
.MobileMain {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 8;
	width: 100%;
	background: #fff;
	display: none;
}

.MobileMain .HeaderMobile {
	height: var(--nav_height);
	box-shadow: 0px 0px 0px 1px #eee;
}

.MobileMain .HeaderMobile .box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 10px 5vw;
}

.MobileMain .HeaderMobile .box .logo {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.MobileMain .HeaderMobile .box .logo a {
	display: block;
}

.MobileMain .HeaderMobile .box .logo a img {
	height: 32px;
}

.MobileMain .HeaderMobile .box .button {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.MobileMain .HeaderMobile .box .button .Language a {
	font-size: 18px;
	color: #000;
	display: block;
	line-height: 0.45rem;
	border-radius: 0.25rem;
}

@media screen and (max-width: 699px) {
	.MobileMain .HeaderMobile .box .button .Language a {
		font-size: 14px;
	}
}

.MobileMain .HeaderMobile .box .button .search div {
	width: 30px;
	text-align: center;
}

.MobileMain .HeaderMobile .box .button .search p svg {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.MobileMain .HeaderMobile .box .button .search .Close {
	display: none;
}

.MobileMain .HeaderMobile .box .button .search .active .Show {
	display: none;
}

.MobileMain .HeaderMobile .box .button .search .active .Close {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	color: var(--color);
}

.MobileMain .HeaderMobile .box .button .search .active .Close i {
	font-size: 0.4rem;
	font-weight: bold;
}

.MobileMain .HeaderMobile .box .button .search .active .btn {
	display: none;
}

.MobileMain .HeaderMobile .box .button .word {
	font-size: 14px;
	font-weight: bold;
}

.MobileMain .HeaderMobile .box .button .word a {
	color: var(--color);
	text-decoration: none;
}

.MobileMain .HeaderMobile .box .button .word a svg {
	display: inline-block;
	vertical-align: sub;
	animation: CallUp 0.5s ease 0s infinite;
	-webkit-animation: CallUp 0.5s ease 0s infinite;
	-moz-animation: CallUp 0.5s ease 0s infinite;
	-o-animation: CallUp 0.5s ease 0s infinite;
}

.MobileMain .HeaderMobile .box .button .word a img {
	position: relative;
}

.MobileMain .HeaderMobile .box .button .call a {
	color: #000;
	font-size: 16px;
}

.MobileMain .HeaderMobile .box .button .search {
	margin-left: 0.5rem;
}

.MobileMain .HeaderMobile .box .button .search .icon2 {
	display: none;
}

.MobileMain .HeaderMobile .box .button .search.active .icon1 {
	display: none;
}

.MobileMain .HeaderMobile .box .button .search.active .icon2 {
	display: block;
}


.MobileMain .HeaderMobile .box .button .menu {
	margin-left: 0.5rem;
}

.MobileMain .HeaderMobile .box .button .menu .menu_btn p {
	position: relative;
}

.MobileMain .HeaderMobile .box .button .menu .menu_btn p span {
	display: block;
	width: 30px;
	height: 2px;
	background: var(--color);
	margin: 8px 0;
}

.MobileMain .HeaderMobile .box .button .menu .menu_btn p span:nth-child(1) {
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.MobileMain .HeaderMobile .box .button .menu .menu_btn p span:nth-child(2) {
	opacity: 0;
}

.MobileMain .HeaderMobile .box .button .menu .menu_btn p span:nth-child(3) {
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.MobileMain .HeaderMobile .box .button .menu .menu_btn p::before {
	content: '';
	position: absolute;
	top: 0;
	width: 100%;
	height: 2px;
	background: var(--color);
	top: 50%;
	margin-top: -1px;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.MobileMain .HeaderMobile .box .button .menu .menu_btn p::after {
	content: '';
	position: absolute;
	top: 0;
	width: 100%;
	height: 2px;
	background: var(--color);
	top: 50%;
	margin-top: -1px;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.MobileMain .HeaderMobile .box .button .menu .menu_btn.active p span {
	opacity: 0;
}

.MobileMain .HeaderMobile .box .button .menu .menu_btn.active p::before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.MobileMain .HeaderMobile .box .button .menu .menu_btn.active p::after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.MobileNavigation {
	position: absolute;
	z-index: 3;
	top: var(--nav_height);
	background: #fff;
	left: 0;
	width: 100%;
	z-index: 7;
	height: calc(100vh - var(--nav_height));
	display: none;
}

.MobileNavigation .box_scroll {
	max-height: 90%;
	padding: 0.5rem 5vw;
	box-sizing: border-box;
	overflow: scroll;
	-ms-scroll-chaining: none;
	overscroll-behavior: contain;
}

.MobileNavigation .box_scroll .box .item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.MobileNavigation .box_scroll .box .item a {
	line-height: 50px;
	display: flex;
	font-size: 16px;
	color: #333;
	justify-content: space-between;
}

.MobileNavigation .box_scroll .box .item a i {
	color: #666;
	font-size: 16px;
}

.MobileNavigation .box_scroll .box .item a p {
	display: flex;
	align-items: center;
}

.MobileNavigation .box_scroll .box .item a p span {
	display: block;
	width: 15px;
	height: 1px;
	background: #666;
	position: relative;
}

.MobileNavigation .box_scroll .box .item a p span::after {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	background: #666;
	transform: rotate(90deg);
	transition: 0.4s;
}

.MobileNavigation .box_scroll .box .item .active p span::after {
	transform: rotate(180deg);
}

.MobileNavigation .box_scroll .box .item .twoSelect {
	padding-left: 16px;
	display: none;
}

.MobileNavigation .box_scroll .box .item .twoSelect .twoSelectItem a {
	font-size: 15px;
}

.MobileNavigation .box_scroll .box .item .threeSelect {
	padding-left: 16px;
	display: none;
}

.MobileNavigation .box_scroll .box .item .threeSelect .threeSelectItem a {
	font-size: 15px;
}

.MobileNavigation .box_scroll .box .item .fourSelect {
	padding-left: 16px;
	display: none;
}

.MobileNavigation .box_scroll .box .item .fourSelect .fourSelectItem a {
	font-size: 15px;
}

.MobileNavigation .box_scroll .box .item .fiveSelect {
	padding-left: 16px;
	display: none;
}

.MobileNavigation .box_scroll .box .item .sixSelect {
	padding-left: 16px;
	display: none;
}


.Nav_height {
	height: var(--nav_height);
}


/* 手机导航 End */

/* banner 下一屏动画 */
@-webkit-keyframes moveNext {
	0% {
		-webkit-transform: translateY(.1rem);
		transform: translateY(.1rem);
	}

	50% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(.1rem);
		transform: translateY(.1rem);
	}
}

@keyframes moveNext {
	0% {
		-webkit-transform: translateY(.1rem);
		transform: translateY(.1rem);
	}

	50% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(.1rem);
		transform: translateY(.1rem);
	}
}

/* banner 下一屏动画END */


/* cookie */



.Cookie_Container {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 10;
	padding: 0.34rem 0;
	border-top: 1px solid #eee;
}

.Cookie_Container .box .boxLeft {
	max-width: 60%;
}

.Cookie_Container .box .boxLeft .top {
	font-family: 'gilroy_bold';
	font-size: var(--f22);
}

.Cookie_Container .box .boxLeft .bot {
	font-size: var(--f16);
	font-family: 'gilroy_regular';
	color: #666;
	line-height: 1.7;
	margin-top: 0.1rem;
}

.Cookie_Container .box .boxLeft .bot a {
	color: var(--color);
}

.Cookie_Container .box .boxRight {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.Cookie_Container .box .boxRight .btn1 {
	width: 1.68rem;
	height: 0.5rem;
	background: var(--color);
	border-radius: 0.4rem;
	border: 0;
	color: #fff;
	font-family: 'gilroy_bold';
	font-size: var(--f18);
	cursor: pointer;
}

.Cookie_Container .box .boxRight .btn2 {
	margin-left: 0.3rem;
	width: 1.68rem;
	height: 0.5rem;
	border-radius: 0.4rem;
	border: 1px solid #ccc;
	color: #000;
	font-family: 'gilroy_bold';
	background: none;
	font-size: var(--f18);
	cursor: pointer;
	transition: .4s;
}

.Cookie_Container .box .boxRight .btn2:hover {
	color: var(--color);
	border-color: var(--color);
}

/* cookie  End */


/* 搜索框 */

.mobile_search {
	display: none;
	z-index: 4;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	padding: 0.7rem 0;
	background: #fff;
	border-bottom: 1px solid #eee;
  }
  .mobile_search .close {
	position: absolute;
	right: var(--interval);
	top: 0.15rem;
	font-weight: bold;
	cursor: pointer;
  }
  .mobile_search .close i {
	font-size: 0.24rem;
	display: inline-block;
	transition: 0.4s;
	color: #999;
  }
  .mobile_search .close:hover i {
	transform: rotate(180deg);
	color: var(--color);
  }
  .mobile_search form {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: min(7rem, 90%);
	margin: 0 auto;
	background: #f5f5f5;
	border-radius: 12px;
  }
  .mobile_search .input {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
  }
  .mobile_search .input input {
	width: 100%;
	border: none;
	min-height: 60px;
	padding-left: 20px;
	background: none;
	color: #333;
  }
  .mobile_search .label .btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: 60px;
	height: 100%;
	border-radius: 12px;
	background: var(--color);
	cursor: pointer;
  }



/* 搜索框End */

@media screen and (max-width:1200px) {
	.MobileMain {
		display: block;
	}

	.Nav_height {
		height: var(--nav_height);
	}

	.Cookie_Container .box .boxLeft {
		max-width: 100%;
		width: 100%;
		margin-bottom: 0.3rem;
	}

	.Cookie_Container .box .boxLeft .top {
		font-size: var(--f24);
	}

	.Cookie_Container .box .boxLeft .bot {
		font-size: var(--f20);
		margin-top: .2rem;
	}

	.Cookie_Container .box .boxRight .btn1,
	.Cookie_Container .box .boxRight .btn2 {
		width: 1.8rem;
		height: .6rem;
	}

}

@media screen and (min-width: 669px) {
	.MobileNavigation .box_scroll .box .item a {
		line-height: 70px;
		font-size: 20px;
	}

	.MobileNavigation .box_scroll .box .item .twoSelect .twoSelectItem a {
		font-size: 18px;
	}

}

@media screen and (max-width: 669px) {

	.Cookie_Container .box .boxRight .btn1,
	.Cookie_Container .box .boxRight .btn2 {
		width: 2rem;
		height: 0.7rem;
	}
}
/*!
 * Viewer.js v1.5.0
 * https://fengyuanchen.github.io/viewerjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2019-11-23T05:10:21.757Z
 */

 .viewer-zoom-in::before,
 .viewer-zoom-out::before,
 .viewer-one-to-one::before,
 .viewer-reset::before,
 .viewer-prev::before,
 .viewer-play::before,
 .viewer-next::before,
 .viewer-rotate-left::before,
 .viewer-rotate-right::before,
 .viewer-flip-horizontal::before,
 .viewer-flip-vertical::before,
 .viewer-fullscreen::before,
 .viewer-fullscreen-exit::before,
 .viewer-close::before {
   background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARgAAAAUCAYAAABWOyJDAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAQPSURBVHic7Zs/iFxVFMa/0U2UaJGksUgnIVhYxVhpjDbZCBmLdAYECxsRFBTUamcXUiSNncgKQbSxsxH8gzAP3FU2jY0kKKJNiiiIghFlccnP4p3nPCdv3p9778vsLOcHB2bfveeb7955c3jvvNkBIMdxnD64a94GHMfZu3iBcRynN7zAOI7TG15gHCeeNUkr8zaxG2lbYDYsdgMbktBsP03jdQwljSXdtBhLOmtjowC9Mg9L+knSlcD8TNKpSA9lBpK2JF2VdDSR5n5J64m0qli399hNFMUlpshQii5jbXTbHGviB0nLNeNDSd9VO4A2UdB2fp+x0eCnaXxWXGA2X0au/3HgN9P4LFCjIANOJdrLr0zzZ+BEpNYDwKbpnQMeAw4m8HjQtM6Z9qa917zPQwFr3M5KgA6J5rTJCdFZJj9/lyvGhsDvwFNVuV2MhhjrK6b9bFiE+j1r87eBl4HDwCF7/U/k+ofAX5b/EXBv5JoLMuILzf3Ap6Z3EzgdqHMCuF7hcQf4HDgeoHnccncqdK/TvSDWffFXI/exICY/xZyqc6XLWF1UFZna4gJ7q8BsRvgd2/xXpo6P+D9dfT7PpECtA3cnWPM0GXGFZh/wgWltA+cDNC7X+AP4GzjZQe+k5dRxuYPeiuXU7e1qwLpDz7dFjXKRaSwuMLvAlG8zZlG+YmiK1HoFqT7wP2z+4Q45TfEGcMt01xLoNZEBTwRqD4BLpnMLeC1A41UmVxsXgXeBayV/Wx20rpTyrpnWRft7p6O/FdqzGrDukPNtkaMoMo3FBdBSQMOnYBCReyf05s126fU9ytfX98+mY54Kxnp7S9K3kj6U9KYdG0h6UdLbkh7poFXMfUnSOyVvL0h6VtIXHbS6nOP+s/Zm9mvyXW1uuC9ohZ72E9uDmXWLJOB1GxsH+DxPftsB8B6wlGDN02TAkxG6+4D3TWsbeC5CS8CDFce+AW500LhhOW2020TRjK3b21HEmgti9m0RonxbdMZeVzV+/4tF3cBpP7E9mKHNL5q8h5g0eYsCMQz0epq8gQrwMXAgcs0FGXGFRcB9wCemF9PkbYqM/Bas7fxLwNeJPdTdpo4itQti8lPMqTpXuozVRVXPpbHI3KkNTB1NfkL81j2mvhDp91HgV9MKuRIqrykj3WPq4rHyL+axj8/qGPmTqi6F9YDlHOvJU6oYcTsh/TYSzWmTE6JT19CtLTJt32D6CmHe0eQn1O8z5AXgT4sx4Vcu0/EQecMydB8z0hUWkTd2t4CrwNEePqMBcAR4mrBbwyXLPWJa8zrXmmLEhNBmfpkuY2102xxrih+pb+ieAb6vGhuA97UcJ5KR8gZ77K+99xxeYBzH6Q3/Z0fHcXrDC4zjOL3hBcZxnN74F+zlvXFWXF9PAAAAAElFTkSuQmCC');
   background-repeat: no-repeat;
   background-size: 280px;
   color: transparent;
   display: block;
   font-size: 0;
   height: 20px;
   line-height: 0;
   width: 20px;
 }
 
 .viewer-zoom-in::before {
   background-position: 0 0;
   content: 'Zoom In';
 }
 
 .viewer-zoom-out::before {
   background-position: -20px 0;
   content: 'Zoom Out';
 }
 
 .viewer-one-to-one::before {
   background-position: -40px 0;
   content: 'One to One';
 }
 
 .viewer-reset::before {
   background-position: -60px 0;
   content: 'Reset';
 }
 
 .viewer-prev::before {
   background-position: -80px 0;
   content: 'Previous';
 }
 
 .viewer-play::before {
   background-position: -100px 0;
   content: 'Play';
 }
 
 .viewer-next::before {
   background-position: -120px 0;
   content: 'Next';
 }
 
 .viewer-rotate-left::before {
   background-position: -140px 0;
   content: 'Rotate Left';
 }
 
 .viewer-rotate-right::before {
   background-position: -160px 0;
   content: 'Rotate Right';
 }
 
 .viewer-flip-horizontal::before {
   background-position: -180px 0;
   content: 'Flip Horizontal';
 }
 
 .viewer-flip-vertical::before {
   background-position: -200px 0;
   content: 'Flip Vertical';
 }
 
 .viewer-fullscreen::before {
   background-position: -220px 0;
   content: 'Enter Full Screen';
 }
 
 .viewer-fullscreen-exit::before {
   background-position: -240px 0;
   content: 'Exit Full Screen';
 }
 
 .viewer-close::before {
   background-position: -260px 0;
   content: 'Close';
 }
 
 .viewer-container {
   bottom: 0;
   direction: ltr;
   font-size: 0;
   left: 0;
   line-height: 0;
   overflow: hidden;
   position: absolute;
   right: 0;
   -webkit-tap-highlight-color: transparent;
   top: 0;
   -ms-touch-action: none;
   touch-action: none;
   -webkit-touch-callout: none;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
 }
 
 .viewer-container::-moz-selection,
 .viewer-container *::-moz-selection {
   background-color: transparent;
 }
 
 .viewer-container::selection,
 .viewer-container *::selection {
   background-color: transparent;
 }
 
 .viewer-container img {
   display: block;
   height: auto;
   max-height: none !important;
   max-width: none !important;
   min-height: 0 !important;
   min-width: 0 !important;
   width: 100%;
 }
 
 .viewer-canvas {
   bottom: 0;
   left: 0;
   overflow: hidden;
   position: absolute;
   right: 0;
   top: 0;
 }
 
 .viewer-canvas > img {
   height: auto;
   margin: 15px auto;
   max-width: 90% !important;
   width: auto;
 }
 
 .viewer-footer {
   bottom: 0;
   left: 0;
   overflow: hidden;
   position: absolute;
   right: 0;
   text-align: center;
 }
 
 .viewer-navbar {
   background-color: rgba(0, 0, 0, 0.5);
   overflow: hidden;
 }
 
 .viewer-list {
   -webkit-box-sizing: content-box;
   box-sizing: content-box;
   height: 50px;
   margin: 0;
   overflow: hidden;
   padding: 1px 0;
 }
 
 .viewer-list > li {
   color: transparent;
   cursor: pointer;
   float: left;
   font-size: 0;
   height: 50px;
   line-height: 0;
   opacity: 0.5;
   overflow: hidden;
   -webkit-transition: opacity 0.15s;
   transition: opacity 0.15s;
   width: 30px;
 }
 
 .viewer-list > li:hover {
   opacity: 0.75;
 }
 
 .viewer-list > li + li {
   margin-left: 1px;
 }
 
 .viewer-list > .viewer-loading {
   position: relative;
 }
 
 .viewer-list > .viewer-loading::after {
   border-width: 2px;
   height: 20px;
   margin-left: -10px;
   margin-top: -10px;
   width: 20px;
 }
 
 .viewer-list > .viewer-active,
 .viewer-list > .viewer-active:hover {
   opacity: 1;
 }
 
 .viewer-player {
   background-color: #000;
   bottom: 0;
   cursor: none;
   display: none;
   left: 0;
   position: absolute;
   right: 0;
   top: 0;
 }
 
 .viewer-player > img {
   left: 0;
   position: absolute;
   top: 0;
 }
 
 .viewer-toolbar > ul {
   display: inline-block;
   margin: 0 auto 5px;
   overflow: hidden;
   padding: 3px 0;
 }
 
 .viewer-toolbar > ul > li {
   background-color: rgba(0, 0, 0, 0.5);
   border-radius: 50%;
   cursor: pointer;
   float: left;
   height: 24px;
   overflow: hidden;
   -webkit-transition: background-color 0.15s;
   transition: background-color 0.15s;
   width: 24px;
 }
 
 .viewer-toolbar > ul > li:hover {
   background-color: rgba(0, 0, 0, 0.8);
 }
 
 .viewer-toolbar > ul > li::before {
   margin: 2px;
 }
 
 .viewer-toolbar > ul > li + li {
   margin-left: 1px;
 }
 
 .viewer-toolbar > ul > .viewer-small {
   height: 18px;
   margin-bottom: 3px;
   margin-top: 3px;
   width: 18px;
 }
 
 .viewer-toolbar > ul > .viewer-small::before {
   margin: -1px;
 }
 
 .viewer-toolbar > ul > .viewer-large {
   height: 30px;
   margin-bottom: -3px;
   margin-top: -3px;
   width: 30px;
 }
 
 .viewer-toolbar > ul > .viewer-large::before {
   margin: 5px;
 }
 
 .viewer-tooltip {
   background-color: rgba(0, 0, 0, 0.8);
   border-radius: 10px;
   color: #fff;
   display: none;
   font-size: 12px;
   height: 20px;
   left: 50%;
   line-height: 20px;
   margin-left: -25px;
   margin-top: -10px;
   position: absolute;
   text-align: center;
   top: 50%;
   width: 50px;
 }
 
 .viewer-title {
   color: #ccc;
   display: inline-block;
   font-size: 12px;
   line-height: 1;
   margin: 0 5% 5px;
   max-width: 90%;
   opacity: 0.8;
   overflow: hidden;
   text-overflow: ellipsis;
   -webkit-transition: opacity 0.15s;
   transition: opacity 0.15s;
   white-space: nowrap;
 }
 
 .viewer-title:hover {
   opacity: 1;
 }
 
 .viewer-button {
   background-color: rgba(0, 0, 0, 0.5);
   border-radius: 50%;
   cursor: pointer;
   height: 80px;
   overflow: hidden;
   position: absolute;
   right: -40px;
   top: -40px;
   -webkit-transition: background-color 0.15s;
   transition: background-color 0.15s;
   width: 80px;
 }
 
 .viewer-button:focus,
 .viewer-button:hover {
   background-color: rgba(0, 0, 0, 0.8);
 }
 
 .viewer-button::before {
   bottom: 15px;
   left: 15px;
   position: absolute;
 }
 
 .viewer-fixed {
   position: fixed;
 }
 
 .viewer-open {
   overflow: hidden;
 }
 
 .viewer-show {
   display: block;
 }
 
 .viewer-hide {
   display: none;
 }
 
 .viewer-backdrop {
   background-color: rgba(0, 0, 0, 0.5);
 }
 
 .viewer-invisible {
   visibility: hidden;
 }
 
 .viewer-move {
   cursor: move;
   cursor: -webkit-grab;
   cursor: grab;
 }
 
 .viewer-fade {
   opacity: 0;
 }
 
 .viewer-in {
   opacity: 1;
 }
 
 .viewer-transition {
   -webkit-transition: all 0.3s;
   transition: all 0.3s;
 }
 
 @-webkit-keyframes viewer-spinner {
   0% {
	 -webkit-transform: rotate(0deg);
	 transform: rotate(0deg);
   }
 
   100% {
	 -webkit-transform: rotate(360deg);
	 transform: rotate(360deg);
   }
 }
 
 @keyframes viewer-spinner {
   0% {
	 -webkit-transform: rotate(0deg);
	 transform: rotate(0deg);
   }
 
   100% {
	 -webkit-transform: rotate(360deg);
	 transform: rotate(360deg);
   }
 }
 
 .viewer-loading::after {
   -webkit-animation: viewer-spinner 1s linear infinite;
   animation: viewer-spinner 1s linear infinite;
   border: 4px solid rgba(255, 255, 255, 0.1);
   border-left-color: rgba(255, 255, 255, 0.5);
   border-radius: 50%;
   content: '';
   display: inline-block;
   height: 40px;
   left: 50%;
   margin-left: -20px;
   margin-top: -20px;
   position: absolute;
   top: 50%;
   width: 40px;
   z-index: 1;
 }
 
 @media (max-width: 767px) {
   .viewer-hide-xs-down {
	 display: none;
   }
 }
 
 @media (max-width: 991px) {
   .viewer-hide-sm-down {
	 display: none;
   }
 }
 
 @media (max-width: 1199px) {
   .viewer-hide-md-down {
	 display: none;
   }
 }