/**
 * Swiper 4.1.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 11, 2018
 */
  .swiper-container {
  	margin: 0 auto;
  	position: relative;
  	overflow: hidden;
  	list-style: none;
  	padding: 0;
  	z-index: 1
  }

  .swiper-container-no-flexbox .swiper-slide {
  	float: left
  }

  .swiper-container-vertical>.swiper-wrapper {
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-webkit-flex-direction: column;
  	-ms-flex-direction: column;
  	flex-direction: column
  }

  .swiper-wrapper {
  	position: relative;
  	width: 100%;
  	height: 100%;
  	z-index: 1;
  	display: -webkit-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-transition-property: -webkit-transform;
  	transition-property: -webkit-transform;
  	-o-transition-property: transform;
  	transition-property: transform;
  	transition-property: transform, -webkit-transform;
  	-webkit-box-sizing: content-box;
  	box-sizing: content-box
  }

  .swiper-container-android .swiper-slide,
  .swiper-wrapper {
  	-webkit-transform: translate3d(0, 0, 0);
  	transform: translate3d(0, 0, 0)
  }

  .swiper-container-multirow>.swiper-wrapper {
  	-webkit-flex-wrap: wrap;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap
  }

  .swiper-container-free-mode>.swiper-wrapper {
  	-webkit-transition-timing-function: ease-out;
  	-o-transition-timing-function: ease-out;
  	transition-timing-function: ease-out;
  	margin: 0 auto
  }

  .swiper-slide {
  	-webkit-flex-shrink: 0;
  	-ms-flex-negative: 0;
  	flex-shrink: 0;
  	width: 100%;
  	height: 100%;
  	position: relative;
  	-webkit-transition-property: -webkit-transform;
  	transition-property: -webkit-transform;
  	-o-transition-property: transform;
  	transition-property: transform;
  	transition-property: transform, -webkit-transform
  }

  .swiper-invisible-blank-slide {
  	visibility: hidden
  }

  .swiper-container-autoheight,
  .swiper-container-autoheight .swiper-slide {
  	height: auto
  }

  .swiper-container-autoheight .swiper-wrapper {
  	-webkit-box-align: start;
  	-webkit-align-items: flex-start;
  	-ms-flex-align: start;
  	align-items: flex-start;
  	-webkit-transition-property: height, -webkit-transform;
  	transition-property: height, -webkit-transform;
  	-o-transition-property: transform, height;
  	transition-property: transform, height;
  	transition-property: transform, height, -webkit-transform
  }

  .swiper-container-3d {
  	-webkit-perspective: 1200px;
  	perspective: 1200px
  }

  .swiper-container-3d .swiper-cube-shadow,
  .swiper-container-3d .swiper-slide,
  .swiper-container-3d .swiper-slide-shadow-bottom,
  .swiper-container-3d .swiper-slide-shadow-left,
  .swiper-container-3d .swiper-slide-shadow-right,
  .swiper-container-3d .swiper-slide-shadow-top,
  .swiper-container-3d .swiper-wrapper {
  	-webkit-transform-style: preserve-3d;
  	transform-style: preserve-3d
  }

  .swiper-container-3d .swiper-slide-shadow-bottom,
  .swiper-container-3d .swiper-slide-shadow-left,
  .swiper-container-3d .swiper-slide-shadow-right,
  .swiper-container-3d .swiper-slide-shadow-top {
  	position: absolute;
  	left: 0;
  	top: 0;
  	width: 100%;
  	height: 100%;
  	pointer-events: none;
  	z-index: 10
  }

  .swiper-container-3d .swiper-slide-shadow-left {
  	background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
  	background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  	background-image: -o-linear-gradient(right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  	background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
  }

  .swiper-container-3d .swiper-slide-shadow-right {
  	background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
  	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  	background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  	background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
  }

  .swiper-container-3d .swiper-slide-shadow-top {
  	background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
  	background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  	background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  	background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
  }

  .swiper-container-3d .swiper-slide-shadow-bottom {
  	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
  	background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  	background-image: -o-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
  	background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
  }

  .swiper-container-wp8-horizontal,
  .swiper-container-wp8-horizontal>.swiper-wrapper {
  	-ms-touch-action: pan-y;
  	touch-action: pan-y
  }

  .swiper-container-wp8-vertical,
  .swiper-container-wp8-vertical>.swiper-wrapper {
  	-ms-touch-action: pan-x;
  	touch-action: pan-x
  }

  .swiper-button-next,
  .swiper-button-prev {
  	position: absolute;
  	top: 50%;
  	width: 27px;
  	height: 44px;
  	margin-top: -22px;
  	z-index: 10;
  	cursor: pointer;
  	background-size: 27px 44px;
  	background-position: center;
  	background-repeat: no-repeat
  }

  .swiper-button-next.swiper-button-disabled,
  .swiper-button-prev.swiper-button-disabled {
  	opacity: .35;
  	cursor: auto;
  	pointer-events: none
  }

  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
  	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  	left: 10px;
  	right: auto
  }

  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
  	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  	right: 10px;
  	left: auto
  }

  .swiper-button-prev.swiper-button-white,
  .swiper-container-rtl .swiper-button-next.swiper-button-white {
  	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
  }

  .swiper-button-next.swiper-button-white,
  .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
  }

  .swiper-button-prev.swiper-button-black,
  .swiper-container-rtl .swiper-button-next.swiper-button-black {
  	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
  }

  .swiper-button-next.swiper-button-black,
  .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
  }

  .swiper-button-lock {
  	display: none
  }

  .swiper-pagination {
  	position: absolute;
  	text-align: center;
  	-webkit-transition: .3s opacity;
  	-o-transition: .3s opacity;
  	transition: .3s opacity;
  	-webkit-transform: translate3d(0, 0, 0);
  	transform: translate3d(0, 0, 0);
  	z-index: 10
  }

  .swiper-pagination.swiper-pagination-hidden {
  	opacity: 0
  }

  .swiper-container-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
  	bottom: 10px;
  	left: 0;
  	width: 100%
  }

  .swiper-pagination-bullets-dynamic {
  	overflow: hidden;
  	font-size: 0
  }

  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  	-webkit-transform: scale(.33);
  	-ms-transform: scale(.33);
  	transform: scale(.33);
  	position: relative
  }

  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  	-webkit-transform: scale(1);
  	-ms-transform: scale(1);
  	transform: scale(1)
  }

  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  	-webkit-transform: scale(1);
  	-ms-transform: scale(1);
  	transform: scale(1)
  }

  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  	-webkit-transform: scale(.66);
  	-ms-transform: scale(.66);
  	transform: scale(.66)
  }

  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  	-webkit-transform: scale(.33);
  	-ms-transform: scale(.33);
  	transform: scale(.33)
  }

  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  	-webkit-transform: scale(.66);
  	-ms-transform: scale(.66);
  	transform: scale(.66)
  }

  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  	-webkit-transform: scale(.33);
  	-ms-transform: scale(.33);
  	transform: scale(.33)
  }

  .swiper-pagination-bullet {
  	width: 8px;
  	height: 8px;
  	display: inline-block;
  	border-radius: 100%;
  	background: #000;
  	opacity: .2
  }

  button.swiper-pagination-bullet {
  	border: none;
  	margin: 0;
  	padding: 0;
  	-webkit-box-shadow: none;
  	box-shadow: none;
  	-webkit-appearance: none;
  	-moz-appearance: none;
  	appearance: none
  }

  .swiper-pagination-clickable .swiper-pagination-bullet {
  	cursor: pointer
  }

  .swiper-pagination-bullet-active {
  	opacity: 1;
  	background: #007aff
  }

  .swiper-container-vertical>.swiper-pagination-bullets {
  	right: 10px;
  	top: 50%;
  	-webkit-transform: translate3d(0, -50%, 0);
  	transform: translate3d(0, -50%, 0)
  }

  .swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  	margin: 6px 0;
  	display: block
  }

  .swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  	top: 50%;
  	-webkit-transform: translateY(-50%);
  	-ms-transform: translateY(-50%);
  	transform: translateY(-50%);
  	width: 8px
  }

  .swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  	display: inline-block;
  	-webkit-transition: .2s top, .2s -webkit-transform;
  	transition: .2s top, .2s -webkit-transform;
  	-o-transition: .2s transform, .2s top;
  	transition: .2s transform, .2s top;
  	transition: .2s transform, .2s top, .2s -webkit-transform
  }

  .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  	margin: 0 4px
  }

  .swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  	left: 50%;
  	-webkit-transform: translateX(-50%);
  	-ms-transform: translateX(-50%);
  	transform: translateX(-50%);
  	white-space: nowrap
  }

  .swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  	-webkit-transition: .2s left, .2s -webkit-transform;
  	transition: .2s left, .2s -webkit-transform;
  	-o-transition: .2s transform, .2s left;
  	transition: .2s transform, .2s left;
  	transition: .2s transform, .2s left, .2s -webkit-transform
  }

  .swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  	-webkit-transition: .2s right, .2s -webkit-transform;
  	transition: .2s right, .2s -webkit-transform;
  	-o-transition: .2s transform, .2s right;
  	transition: .2s transform, .2s right;
  	transition: .2s transform, .2s right, .2s -webkit-transform
  }

  .swiper-pagination-progressbar {
  	background: rgba(0, 0, 0, .25);
  	position: absolute
  }

  .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  	background: #007aff;
  	position: absolute;
  	left: 0;
  	top: 0;
  	width: 100%;
  	height: 100%;
  	-webkit-transform: scale(0);
  	-ms-transform: scale(0);
  	transform: scale(0);
  	-webkit-transform-origin: left top;
  	-ms-transform-origin: left top;
  	transform-origin: left top
  }

  .swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  	-webkit-transform-origin: right top;
  	-ms-transform-origin: right top;
  	transform-origin: right top
  }

  .swiper-container-horizontal>.swiper-pagination-progressbar {
  	width: 100%;
  	height: 4px;
  	left: 0;
  	top: 0
  }

  .swiper-container-vertical>.swiper-pagination-progressbar {
  	width: 4px;
  	height: 100%;
  	left: 0;
  	top: 0
  }

  .swiper-pagination-white .swiper-pagination-bullet-active {
  	background: #fff
  }

  .swiper-pagination-progressbar.swiper-pagination-white {
  	background: rgba(255, 255, 255, .25)
  }

  .swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  	background: #fff
  }

  .swiper-pagination-black .swiper-pagination-bullet-active {
  	background: #000
  }

  .swiper-pagination-progressbar.swiper-pagination-black {
  	background: rgba(0, 0, 0, .25)
  }

  .swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  	background: #000
  }

  .swiper-pagination-lock {
  	display: none
  }

  .swiper-scrollbar {
  	border-radius: 10px;
  	position: relative;
  	-ms-touch-action: none;
  	background: rgba(0, 0, 0, .1)
  }

  .swiper-container-horizontal>.swiper-scrollbar {
  	position: absolute;
  	left: 1%;
  	bottom: 3px;
  	z-index: 50;
  	height: 5px;
  	width: 98%
  }

  .swiper-container-vertical>.swiper-scrollbar {
  	position: absolute;
  	right: 3px;
  	top: 1%;
  	z-index: 50;
  	width: 5px;
  	height: 98%
  }

  .swiper-scrollbar-drag {
  	height: 100%;
  	width: 100%;
  	position: relative;
  	background: rgba(0, 0, 0, .5);
  	border-radius: 10px;
  	left: 0;
  	top: 0
  }

  .swiper-scrollbar-cursor-drag {
  	cursor: move
  }

  .swiper-scrollbar-lock {
  	display: none
  }

  .swiper-zoom-container {
  	width: 100%;
  	height: 100%;
  	display: -webkit-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
  	display: flex;
  	-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;
  	text-align: center
  }

  .swiper-zoom-container>canvas,
  .swiper-zoom-container>img,
  .swiper-zoom-container>svg {
  	max-width: 100%;
  	max-height: 100%;
  	-o-object-fit: contain;
  	object-fit: contain
  }

  .swiper-slide-zoomed {
  	cursor: move
  }

  .swiper-lazy-preloader {
  	width: 42px;
  	height: 42px;
  	position: absolute;
  	left: 50%;
  	top: 50%;
  	margin-left: -21px;
  	margin-top: -21px;
  	z-index: 10;
  	-webkit-transform-origin: 50%;
  	-ms-transform-origin: 50%;
  	transform-origin: 50%;
  	-webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  	animation: swiper-preloader-spin 1s steps(12, end) infinite
  }

  .swiper-lazy-preloader:after {
  	display: block;
  	content: '';
  	width: 100%;
  	height: 100%;
  	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  	background-position: 50%;
  	background-size: 100%;
  	background-repeat: no-repeat
  }

  .swiper-lazy-preloader-white:after {
  	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
  }

  @-webkit-keyframes swiper-preloader-spin {
  	100% {
  		-webkit-transform: rotate(360deg);
  		transform: rotate(360deg)
  	}
  }

  @keyframes swiper-preloader-spin {
  	100% {
  		-webkit-transform: rotate(360deg);
  		transform: rotate(360deg)
  	}
  }

  .swiper-container .swiper-notification {
  	position: absolute;
  	left: 0;
  	top: 0;
  	pointer-events: none;
  	opacity: 0;
  	z-index: -1000
  }

  .swiper-container-fade.swiper-container-free-mode .swiper-slide {
  	-webkit-transition-timing-function: ease-out;
  	-o-transition-timing-function: ease-out;
  	transition-timing-function: ease-out
  }

  .swiper-container-fade .swiper-slide {
  	pointer-events: none;
  	-webkit-transition-property: opacity;
  	-o-transition-property: opacity;
  	transition-property: opacity
  }

  .swiper-container-fade .swiper-slide .swiper-slide {
  	pointer-events: none
  }

  .swiper-container-fade .swiper-slide-active,
  .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  	pointer-events: auto
  }

  .swiper-container-cube {
  	overflow: visible
  }

  .swiper-container-cube .swiper-slide {
  	pointer-events: none;
  	-webkit-backface-visibility: hidden;
  	backface-visibility: hidden;
  	z-index: 1;
  	visibility: hidden;
  	-webkit-transform-origin: 0 0;
  	-ms-transform-origin: 0 0;
  	transform-origin: 0 0;
  	width: 100%;
  	height: 100%
  }

  .swiper-container-cube .swiper-slide .swiper-slide {
  	pointer-events: none
  }

  .swiper-container-cube.swiper-container-rtl .swiper-slide {
  	-webkit-transform-origin: 100% 0;
  	-ms-transform-origin: 100% 0;
  	transform-origin: 100% 0
  }

  .swiper-container-cube .swiper-slide-active,
  .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  	pointer-events: auto
  }

  .swiper-container-cube .swiper-slide-active,
  .swiper-container-cube .swiper-slide-next,
  .swiper-container-cube .swiper-slide-next+.swiper-slide,
  .swiper-container-cube .swiper-slide-prev {
  	pointer-events: auto;
  	visibility: visible
  }

  .swiper-container-cube .swiper-slide-shadow-bottom,
  .swiper-container-cube .swiper-slide-shadow-left,
  .swiper-container-cube .swiper-slide-shadow-right,
  .swiper-container-cube .swiper-slide-shadow-top {
  	z-index: 0;
  	-webkit-backface-visibility: hidden;
  	backface-visibility: hidden
  }

  .swiper-container-cube .swiper-cube-shadow {
  	position: absolute;
  	left: 0;
  	bottom: 0;
  	width: 100%;
  	height: 100%;
  	background: #000;
  	opacity: .6;
  	-webkit-filter: blur(50px);
  	filter: blur(50px);
  	z-index: 0
  }

  .swiper-container-flip {
  	overflow: visible
  }

  .swiper-container-flip .swiper-slide {
  	pointer-events: none;
  	-webkit-backface-visibility: hidden;
  	backface-visibility: hidden;
  	z-index: 1
  }

  .swiper-container-flip .swiper-slide .swiper-slide {
  	pointer-events: none
  }

  .swiper-container-flip .swiper-slide-active,
  .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  	pointer-events: auto
  }

  .swiper-container-flip .swiper-slide-shadow-bottom,
  .swiper-container-flip .swiper-slide-shadow-left,
  .swiper-container-flip .swiper-slide-shadow-right,
  .swiper-container-flip .swiper-slide-shadow-top {
  	z-index: 0;
  	-webkit-backface-visibility: hidden;
  	backface-visibility: hidden
  }

  .swiper-container-coverflow .swiper-wrapper {
  	-ms-perspective: 1200px
  }

  .form_box {
  	width: 100%;
  	background-size: cover;
  	background-repeat: no-repeat;
  	background-position: center;
  	padding: 10px 0 35px
  }

  .wp {
  	margin: 0 auto;
  	padding: 0 15px
  }

  .form_box .form {
  	background-color: #9f805c;
  	border-radius: 10px;
  	color: #fff;
  	margin-top: 25px;
  	padding-bottom: 20px
  }

  .form_box .form ul {
  	padding: 30px 20px 0
  }

  .form_box .form .li_gender {
  	margin-bottom: 18px;
  	text-align: center;
  	font-size: 0
  }

  .form_box .form .li_gender label.m {
  	background-image: url("../images/ico-hm-1.png")
  }

  .form_box .form .li_gender label {
  	position: relative;
  	margin: 0 21px;
  	display: inline-block;
  	width: 60px;
  	height: 80px;
  	background-position: center center;
  	background-repeat: no-repeat;
  	cursor: pointer;
  	-webkit-background-size: 55px auto;
  	background-size: 55px auto
  }

  .form_box .form .li_gender em {
  	position: absolute;
  	right: 2px;
  	bottom: 0;
  	display: none;
  	width: 17px;
  	height: 17px;
  	background: url(../images/ico-checked-1.png) center center no-repeat;
  	-webkit-background-size: 100% 100%;
  	background-size: 100% 100%
  }

  .form_box .form .li_gender input {
  	display: none
  }

  .form_box .form .li_gender label.f {
  	background-image: url("../images/ico-hm-2.png")
  }

  .form_box .form .li_items {
  	border: 1px solid #b69978;
  	margin-bottom: 10px
  }

  .form_box .form .d1 {
  	float: left;
  	width: 114px;
  	height: 36px;
  	line-height: 36px;
  	text-align: center;
  	font-size: 14px;
  	border-right: 1px solid #b69978;
  	color: #fff
  }

  .form_box .form .d1 em {
  	color: #f0ac27
  }

  .form_box .form .d2 {
  	margin-left: 115px;
  	padding: 0 13px 0 20px
  }

  .form_box .form .inp-form {
  	display: block;
  	width: 100%;
  	height: 36px;
  	line-height: 36px;
  	border: 0;
  	font-size: 14px;
  	background-color: #9f805c;
  	border-radius: 10px;
  	color: #fff
  }

  .form_box .form .inp-form::-webkit-input-placeholder {
  	color: white
  }

  .form_box .form .btn-form {
  	border-radius: 9px;
  	margin: 20px auto 0;
  	display: block;
  	width: 140px;
  	height: 36px;
  	line-height: 36px;
  	color: #fff;
  	font-size: 14px;
  	text-align: center;
  	background-color: #dca436;
  	border: 0;
  	cursor: pointer
  }

  .d2 select {
  	background: 0;
  	border: 0;
  	font-size: 14px;
  	color: #d3c4b4;
  	height: 36px;
  	line-height: 36px
  }

  .li_gender .checked em {
  	display: block !important
  }

  .record {
  	width: 100%;
  	text-align: center;
  	line-height: 25px;
  	font-size: 12px;
  	color: #666;
  	border-top: 1px solid #ccc;
  	padding: 2% 0;
  	margin-bottom: 52px
  }

  .form .select .s-list {
  	background-color: #9f805c;
  	border: 1px solid #b69978
  }

  .form .select .cur {
  	position: relative;
  	display: block;
  	color: #fff
  }

  .form .select .cur:after {
  	position: absolute;
  	right: 0;
  	top: 16px;
  	content: "";
  	width: 0;
  	height: 0;
  	border-width: 6px;
  	border-style: solid;
  	border-color: #fff #9f805c #9f805c #9f805c
  }

  .form .select .s-list {
  	position: absolute;
  	top: 37px;
  	left: -21px;
  	right: -14px;
  	display: none;
  	z-index: 2
  }

  .form .select .s-list a {
  	color: #fff
  }

  .form .select .s-list a {
  	padding: 0 13px 4px 20px;
  	display: block;
  	height: 23px;
  	line-height: 23px;
  	font-size: 14px
  }

  .footM {
  	padding: 10px 15px 36px;
  	background: #fff;
  	border-bottom: 52px solid transparent
  }

  .footM ul {
  	width: 183px;
  	margin: 10px auto 10px
  }

  .footM ul li {
  	border-right: 1px solid #b1abaa;
  	text-align: center;
  	width: 60px;
  	font-size: 14px;
  	float: left
  }

  .footM ul li a {
  	display: block;
  	text-align: center;
  	color: #000
  }

  .footM ul:after {
  	content: '';
  	display: table;
  	clear: both
  }

  .footM p {
  	font-size: 12px;
  	color: #000;
  	line-height: 20px;
  	text-align: center;
  	margin-bottom: 5px
  }

  .g1 {
  	margin-bottom: 5px
  }

  .g1 h2,
  .g1 h3,
  .g1 h4 {
  	font-weight: normal;
  	text-align: center;
  	color: #ad7440;
  	margin-top: 5px;
  	margin-bottom: 5px
  }

  .g1 ul li {
  	float: left;
  	box-sizing: content-box
  }

  .g1 ul li>a img {
  	max-width: 100%;
  	padding: 0
  }

  .g1>img {
  	width: 100%;
  	height: auto;
  	margin: 0 auto;
  	max-width: 100%
  }

  .fl-right {
  	position: fixed;
  	width: 48px;
  	height: 48px;
  	right: 2%;
  	top: 80%;
  	z-index: 1003
  }

  .right_zhibo_button {
  	display: block;
  	right: 0;
  	width: 60px
  }

  .zb_btn {
  	width: 60px;
  	cursor: pointer
  }

  .zb_btn img {
  	display: block;
  	width: 100%
  }

  .zb_btn .red_box {
  	width: 100%;
  	height: 25px;
  	line-height: 25px;
  	background: #ec2055;
  	position: relative;
  	border-radius: 5px 0 0 5px
  }

  .zb_btn .red_box p {
  	color: #fff;
  	text-align: right;
  	font-size: 12px
  }

  .zb_btn .red_box ul {
  	position: absolute;
  	top: 50%;
  	left: 14%
  }

  .zb_btn .red_box ul li {
  	float: left;
  	width: 3px;
  	height: 6px;
  	border-radius: 6px;
  	margin-right: 3px;
  	background-color: #fff
  }

  .zb_btn .red_box ul li:nth-child(1) {
  	animation: love1 2s infinite
  }

  .zb_btn .red_box ul li:nth-child(2) {
  	animation: love2 2s infinite;
  	animation-delay: .15s
  }

  .zb_btn .red_box ul li:nth-child(3) {
  	animation: love3 2s infinite;
  	animation-delay: .3s
  }

  @keyframes love1 {

  	30%,
  	50% {
  		height: 14px;
  		transform: translateY(-9px)
  	}

  	75%,
  	100% {
  		height: 8px;
  		transform: translateY(0)
  	}
  }

  @keyframes love2 {

  	30%,
  	50% {
  		height: 16px;
  		transform: translateY(-11px)
  	}

  	75%,
  	100% {
  		height: 8px;
  		transform: translateY(0)
  	}
  }

  @keyframes love3 {

  	30%,
  	50% {
  		height: 14px;
  		transform: translateY(-9px)
  	}

  	75%,
  	100% {
  		height: 8px;
  		transform: translateY(0)
  	}
  }

  .zxk .lzxk {
  	width: 60px;
  	border-top: 1px solid #e3e3e3;
  	border-right: 1px solid #e3e3e3;
  	position: absolute;
  	bottom: 0;
  	right: 0;
  	z-index: 9;
  	background: rgba(255, 255, 255, .8)
  }

  .n-xd-ys ul li p {
  	display: block
  }

  .zhibo_close {
  	position: absolute;
  	top: -14px;
  	right: -14px;
  	cursor: pointer;
  	height: 35px;
  	width: 35px;
  	background: #3c3636;
  	border: 2px solid #fff;
  	border-radius: 50%;
  	text-align: center;
  	line-height: 35px;
  	font-size: 38px;
  	color: #fff
  }

  .xf19_tc_bg {
  	position: fixed;
  	background: rgba(0, 0, 0, .6);
  	width: 100%;
  	height: 100%;
  	top: 0;
  	left: 0;
  	z-index: 9999;
  	display: none
  }

  .xf19_tc {
  	width: 80%;
  	position: fixed;
  	left: 10%;
  	bottom: 23%;
  	border-radius: 10px;
  	background: #fff;
  	box-shadow: 0 10px 80px 1px #333;
  	z-index: 102;
  	display: none;
  	z-index: 11112
  }

  .xd19_gbimg {
  	position: absolute;
  	width: 50px !important;
  	right: -17px;
  	top: -17px;
  	padding: 5px;
  	box-sizing: border-box
  }

  .xf19_tc h2 {
  	margin-left: 5%;
  	font-size: 15px;
  	line-height: 32px;
  	color: #333
  }

  .xf19_tc div li {
  	width: 21%;
  	float: left;
  	border: 1px solid #dcdcdc;
  	margin: 0 0 2% 3%;
  	text-align: center;
  	border-radius: 5px;
  	font-size: .24rem
  }

  .xf19_tc div .xd19_tcli {
  	background-color: #333 !important;
  	color: #fff !important
  }

  .xf19_tc .xf19dh_box {
  	border: 1px solid #dcdcdc;
  	margin-left: 3%;
  	width: 42%;
  	height: 35px;
  	line-height: 35px;
  	margin-bottom: 10px;
  	font-size: 13px;
  	padding-left: 6px;
  	box-sizing: border-box;
  	border-radius: 5px
  }

  .xf19_tc img {
  	width: initial;
  }

  .xf19_submit {
  	display: block;
  	width: 92.5%;
  	margin: 3% auto 5%;
  	margin-top: 0;
  	background-color: #eb6100;
  	color: #fff;
  	line-height: 40px;
  	font-size: 16px;
  	border: 0;
  	text-align: center;
  	border-radius: 5px;
  	letter-spacing: 2px;
  	font-weight: 700
  }

  .fl-right {
  	display: none
  }

  .right_zhibo_button {
  	display: block;
  	right: 0;
  	width: 60px
  }

  .lxbclick {
  	position: relative;
  	text-align: center
  }

  .lxbclick a {
  	display: block;
  	position: fixed;
  	top: 55%;
  	right: 4px;
  	z-index: 999;
  	border-radius: 5px;
  	padding: 2px 1px;
  	color: #f8f8f8;
  	font-size: 13px
  }

  .lxbclick a img {
  	width: 50px;
  	height: 50px
  }

  .lxbcon {
  	width: 310px;
  	position: fixed;
  	border: 2px solid #0b7bd2;
  	top: 35%;
  	left: 50%;
  	display: none;
  	margin-left: -155px;
  	background: #fff;
  	box-shadow: 3px 0 8px #ccc;
  	z-index: 9999;
  	border-radius: .3rem;
  	-webkit-border-radius: 5px;
  	-moz-border-radius: 5px;
  	-ms-border-radius: 5px
  }

  .lxbclose {
  	width: 100%;
  	position: relative
  }

  .lxbclose span {
  	position: absolute;
  	background: rgba(0, 0, 0, 0) url(../images/lxbclose.png) repeat scroll -40px 0;
  	height: 30px;
  	left: -15px;
  	top: -15px;
  	width: 30px;
  	text-indent: -999em
  }

  .lxbclose span a {
  	display: block
  }

  .lxbform {
  	overflow: hidden;
  	zoom: 1;
  	padding: 10px 10px 0 10px
  }

  .lxbform .lxbput {
  	width: 77%;
  	float: left
  }

  .lxbform .lxbput .lxbipt {
  	width: 96%;
  	height: 40px;
  	line-height: 40px;
  	font-size: 14px;
  	padding: 0 1%;
  	background: #fff;
  	border: 1px solid #ccc;
  	border-radius: 10px
  }

  .lxbform .lxbsub {
  	width: 23%;
  	float: right
  }

  .lxbform .lxbsub .lxbtn {
  	width: 100%;
  	height: 40px;
  	background: #2590e2;
  	color: #fff;
  	font-size: 14px;
  	border: 0;
  	border-radius: 8px
  }

  .lxbtxt {
  	padding: 5px 10px;
  	font-size: 16px;
  	line-height: 25px;
  	color: #2d85d5
  }

  .icon-dianhua2 {
  	font-size: 13px !important;
  	width: 20px;
  	height: 20px;
  	background: url(../images/dianhua.png) no-repeat center center;
  	display: inline-block;
  	background-size: cover
  }

  input.hidefocus::-moz-focus-inner {
  	border: 0
  }

  input[type="button"],
  input[type="submit"],
  input[type="reset"] {
  	-webkit-appearance: none
  }

  input[type="text"],
  input[type="password"] {
  	-webkit-appearance: none
  }

  textarea {
  	-webkit-appearance: none
  }

  .quanping {
  	position: fixed;
  	left: 0;
  	top: 0;
  	z-index: 11111111;
  	width: 100%;
  	height: 100%;
  	background: rgba(0, 0, 0, 0.8);
  	transition: linear .8s;
  	transform: scale(0);
  	-webkit-transform: scale(0);
  	-moz-transform: scale(0);
  	-ms-transform: scale(0);
  	-o-transform: scale(0)
  }

  .omqcenterboxd_qp {
  	transform: scale(1);
  	-webkit-transform: scale(1);
  	-moz-transform: scale(1);
  	-ms-transform: scale(1);
  	-o-transform: scale(1)
  }

  .quanping .alert_box {
  	position: relative;
  	width: 100%;
  	height: 100%;
  	overflow: hidden
  }

  .quanping .alert_box img {
  	width: 100%
  }

  .quanping .close_btn {
  	width: 20px;
  	height: 20px;
  	float: right;
  	overflow: hidden;
  	margin-top: 50px;
  	margin-right: 20px
  }

  .quanping .slogen {
  	width: 220px;
  	overflow: hidden;
  	position: absolute;
  	bottom: 47%;
  	margin-left: -110px;
  	left: 50%
  }

  .quanping .btn-group {
  	position: absolute;
  	left: 0;
  	bottom: 8%;
  	width: 100%;
  	text-align: center;
  	line-height: 300%
  }

  .quanping .btn-group a {
  	display: block;
  	margin: 0 auto;
  	width: 256px;
  	height: 45px;
  	line-height: 45px;
  	font-size: 20px;
  	color: #fff;
  	border-radius: 6px;
  	letter-spacing: 5px;
  	margin-top: 0;
  	font-weight: 700;
  	text-decoration: none;
  	padding-left: 25px
  }

  .quanping .btn-group .ask_teach {
  	background: url(../images/icon-1.png) no-repeat 40px center #36bafe;
  	background-size: 20px 25px
  }

  .quanping .btn-group .ask_pay {
  	background: url(../images/icon-2.png) no-repeat 40px center #e85166;
  	background-size: 25px 25px;
  	margin-top: 20px
  }

  .quanping .btn-group .get_count {
  	background: url(../images/icon-3.png) no-repeat 40px center #fec036;
  	margin-top: 20px;
  	background-size: 25px 30px
  }

  body {
  	margin: 0 auto
  }

  img {
  	list-style: none
  }

  p {
  	margin: 0
  }

  .coolbg1 {
  	width: 90%;
  	height: 35px;
  	background: red;
  	display: block;
  	text-align: center;
  	-moz-border-radius: 5px;
  	-webkit-border-radius: 5px;
  	border-radius: 15px;
  	box-shadow: 2px 2px 10px #ccc;
  	color: #dcdcdc;
  	line-height: 35px;
  	font-size: 16px;
  	letter-spacing: 2px;
  	margin: 20 auto;
  	box-shadow: 0 0 1px #000 inset
  }

  .form_box1 {
  	width: 100%;
  	background-size: cover;
  	background-repeat: no-repeat;
  	background-position: center;
  	padding: 0 0 35px;
  	background: url('../images/img-ninem-2.jpg') no-repeat;
  	max-width: 640px
  }

  .form_box1 .form {
  	border-radius: 10px;
  	color: #fff;
  	padding-top: 10px
  }

  .form_box1 .form ul {
  	padding: 17px 20px 0
  }

  .form_box1 .form .li_items {
  	border: 1px solid #666;
  	margin-bottom: 10px;
  	border-radius: 10px
  }

  .form_box1 .form .d2 {
  	padding: 0 13px 0 20px;
  	box-shadow: 0 0 1px #000 inset;
  	border-radius: 10px
  }

  .form_box1 .form .inp-form {
  	display: block;
  	width: 100%;
  	height: 30px;
  	line-height: 30px;
  	border: 0;
  	font-size: 14px;
  	border-radius: 10px;
  	color: #666;
  	font-weight: bold;
  	background-color: #f8f8f8
  }

  .tc {
  	width: 90%;
  	max-width: 320px;
  	height: 500px;
  	margin: 0 auto;
  	margin-top: 15px;
  	position: relative;
  	z-index: 10;
  	opacity: 1;
  	background: #f0f0f0
  }

  .tc .xx {
  	width: 25px;
  	height: 25px;
  	border: 1px solid #f44336;
  	border-radius: 20px;
  	position: absolute;
  	top: -8px;
  	right: -8px;
  	background-color: #dcdcdc
  }

  .tc01 {
  	opacity: 1;
  	width: 100%;
  	height: 530px;
  	z-index: 999;
  	position: fixed;
  	top: 11%;
  	left: 0;
  	border-radius: 15px;
  	-webkit-border-radius: 15px;
  	-moz-border-radius: 15px;
  	transition: linear .5s;
  	transform: scale(0);
  	-webkit-transform: scale(0);
  	-moz-transform: scale(0);
  	-ms-transform: scale(0);
  	-o-transform: scale(0)
  }

  .tc001 {
  	-webkit-transform: scale(1);
  	background: rgba(0, 0, 0, .5)
  }

  .tc .xx .xx1 {
  	font-size: 20px;
  	color: #f44336;
  	width: 100%;
  	display: block;
  	text-align: center;
  	line-height: 25px
  }

  .tc img {
  	width: 100%
  }

  .tc label {
  	display: block;
  	border: 1px solid #e0e0e0;
  	cursor: pointer;
  	position: relative;
  	height: 28px;
  	line-height: 28px;
  	margin-right: 36px;
  	text-align: center;
  	margin: 0 0 0 15px;
  	font-size: 13px;
  	width: 25%;
  	float: left;
  	color: #000
  }

  .tc .label {
  	background-color: red;
  	color: #fff
  }

  .tc label input {
  	opacity: 0;
  	position: absolute
  }

  .tc p {
  	color: #000;
  	width: 100%;
  	display: block;
  	font-size: 14px;
  	text-align: left
  }

  .tada {
  	-webkit-animation-name: tada;
  	animation-name: tada
  }

  .xd18_tcxs {
  	position: fixed;
  	width: 28px;
  	line-height: 18px;
  	z-index: 999;
  	right: 0;
  	bottom: 40%;
  	font-size: 16px;
  	background: red;
  	text-align: center;
  	padding: 5px 0;
  	color: #fff;
  	border-radius: 8px
  }

  .xf_th {
  	z-index: 999;
  	position: fixed;
  	top: 37%;
  	right: 88;
  	background-color: #323232;
  	color: #fff;
  	border-radius: 5px;
  	padding: 6px 4px;
  	font-size: 13px
  }

  .xf01 {
  	display: none
  }

  .xf a,
  .xf_th a {
  	width: 100%;
  	text-align: center;
  	display: block;
  	color: #fff;
  	margin: 0 5px 5px 0;
  	line-height: 16px;
  	font-size: 12px
  }

  .xf a img {
  	width: 15px;
  	vertical-align: middle
  }

  .xfbjon {
  	color: #fff;
  	border-color: #e11616;
  	background-color: #e11616
  }

  .hslxftc2 label {
  	display: block;
  	border: 1px solid #e0e0e0;
  	cursor: pointer;
  	position: relative;
  	height: 3rem;
  	line-height: 3rem;
  	margin-right: 1rem;
  	text-align: center;
  	margin-bottom: .5rem;
  	font-size: 1.2rem;
  	width: 28%;
  	float: left
  }

  .hslxftc2 label input {
  	opacity: 0;
  	position: absolute
  }

  .hslxftcbox1,
  .hslxftcbox2,
  .hslxftcbox3 {
  	height: auto;
  	padding-top: .5rem
  }

  .hslxftc1 img {
  	width: 100%
  }

  .hslxftc0 {
  	background-color: rgba(0, 0, 0, .5);
  	width: 100%;
  	height: 100%;
  	position: fixed;
  	top: 0;
  	left: 0;
  	z-index: 999;
  	display: none
  }

  .hslxftc2 {
  	width: 86%;
  	height: 90%;
  	background-color: #fff;
  	position: fixed;
  	left: 7%;
  	z-index: 9999;
  	top: 5%;
  	display: none
  }

  .hslxftc3 {
  	padding: 1rem 0 1rem 1rem
  }

  .hslxftc2 p {
  	margin: 0;
  	padding: 0;
  	font-size: 1.3rem;
  	line-height: 1.6rem;
  	color: #333;
  	font-weight: bold
  }

  .hsljg {
  	border-color: #e11616;
  	color: #fff;
  	font-size: 1.5rem;
  	background-color: #e11616
  }

  .hslxftcbox5 {
  	margin: .5rem 1rem 1rem 0
  }

  .hslxftcbox5 input {
  	height: 3rem;
  	line-height: 3rem;
  	width: 100%;
  	margin-bottom: 1rem
  }

  .hslsj {
  	border: 1px solid #999;
  	background-color: #fff;
  	color: #333;
  	font-size: 1.3rem;
  	text-indent: 1rem
  }

  .hslxftcimgclose {
  	position: absolute;
  	width: 2.6rem;
  	line-height: 2.6rem;
  	height: 2.6rem;
  	right: .5rem;
  	top: .5rem;
  	border: 1px solid #333;
  	border-radius: 3rem;
  	text-align: center
  }

  .hslxftcr {
  	position: fixed;
  	right: -5rem;
  	width: 5rem;
  	height: 5rem;
  	background-color: #005982;
  	color: #fff;
  	line-height: 2rem;
  	text-align: center;
  	font-size: 1.4rem;
  	padding: .5rem;
  	display: block;
  	top: 50%;
  	margin-top: -7rem;
  	z-index: 999
  }

  @media(min-width:375px) and (max-width:413px) {
  	.tc {
  		width: 90%;
  		max-width: 540px;
  		height: auto;
  		margin: 0 auto;
  		margin-top: 15px;
  		position: relative;
  		z-index: 10;
  		opacity: 1;
  		background: #fff
  	}
  }

  @media(min-width:414px) and (max-width:1024px) {
  	.tc {
  		width: 90%;
  		max-width: 540px;
  		height: auto;
  		margin: 0 auto;
  		margin-top: 15px;
  		position: relative;
  		z-index: 10;
  		opacity: 1;
  		background: #fff
  	}
  }

  .kuang-tel {
  	display: block;
  	position: absolute;
  	width: 50%;
  	height: 50px;
  	float: left;
  	background-color: #f18d00;
  	border-radius: 0 0 0 15px;
  	-webkit-border-radius: 0 0 0 15px;
  	-moz-border-radius: 0 0 0 15px;
  	text-align: center;
  	bottom: 0;
  	left: 0;
  	line-height: 50px
  }

  .kuang-swt {
  	background-color: #323232;
  	border-radius: 0 0 15px 0;
  	-webkit-border-radius: 0 0 15px 0;
  	-moz-border-radius: 0 0 15px 0;
  	display: block;
  	position: absolute;
  	width: 50%;
  	height: 50px;
  	float: left;
  	text-align: center;
  	bottom: 0;
  	right: 0;
  	line-height: 50px
  }

  .kuang-swt em,
  .kuang-tel em,
  .kuang-tel i {
  	color: #fff;
  	vertical-align: middle
  }

  .kuang-chata {
  	top: 50%;
  	margin-left: -50px;
  	width: 27px;
  	height: 24px;
  	margin-top: -23px;
  	font-size: 24px
  }

  .kuang-chata,
  .kuang-chatb,
  .kuang-swt em,
  .kuang-swt i {
  	display: block;
  	position: absolute;
  	left: 50%;
  	color: #fff;
  	font-style: normal;
  	text-decoration: none;
  	font-size: 16px
  }

  .kuang-chatb {
  	margin-left: -15px
  }

  .kuang-chata,
  .kuang-chatb,
  .kuang-swt em,
  .kuang-swt i {
  	display: block;
  	position: absolute;
  	left: 50%;
  	color: #fff;
  	font-style: normal;
  	text-decoration: none;
  	font-size: 16px
  }

  .r-lxb {
  	position: fixed;
  	right: 2%;
  	top: 42%;
  	z-index: 103;
  	width: 48px;
  	height: 48px;
  	color: #fff;
  	text-align: center;
  	font-size: 13px;
  	line-height: 17px;
  	background: #ee7800;
  	border-radius: 48px;
  	box-shadow: 0 0 10px 1px #727272;
  	animation-name: tada;
  	animation-duration: 1s;
  	animation-iteration-count: infinite;
  	animation-fill-mode: both;
  	padding: 7px 0;
  	box-sizing: border-box;
  	font-weight: bold
  }

  @keyframes tada {
  	from {
  		-webkit-transform: scale3d(1, 1, 1);
  		transform: scale3d(1, 1, 1)
  	}

  	10%,
  	20% {
  		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
  	}

  	30%,
  	50%,
  	70%,
  	90% {
  		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
  	}

  	40%,
  	60%,
  	80% {
  		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
  	}

  	to {
  		-webkit-transform: scale3d(1, 1, 1);
  		transform: scale3d(1, 1, 1)
  	}
  }

  .db_wx_tc {
  	transform: scale(0);
  	-webkit-transform: scale(0);
  	-moz-transform: scale(0);
  	-ms-transform: scale(0);
  	-o-transform: scale(0);
  	width: 275px;
  	height: 261px;
  	position: fixed;
  	left: 50%;
  	top: 50%;
  	margin-left: -137.5px;
  	margin-top: -130.5px;
  	transition: linear .5s;
  	z-index: 102;
  	border-radius: 15px;
  	text-align: center;
  	background: #fff;
  	box-shadow: 0 0 12px #795548
  }

  .db_wx_tc h2 {
  	margin-top: 30px;
  	font-weight: 700;
  	font-size: 22px;
  	color: #e17919;
  	letter-spacing: 2px
  }

  .db_wx_tc p {
  	color: #252525;
  	letter-spacing: .8px;
  	line-height: 20px;
  	font-size: 12px
  }

  .db_wx_tc .dh_tc_p1 {
  	margin-top: 10px;
  	padding: 0 30px
  }

  .db_wx_tc input[type='text'] {
  	margin-top: 13px;
  	border-radius: 5px;
  	background: 0;
  	height: 30px;
  	border: solid 1px #876b6b;
  	width: 200px;
  	padding: 3px 0;
  	color: #0a0a0a;
  	text-align: center;
  	font-size: 16px
  }

  .db_wx_tc input[type='button'] {
  	margin-top: 10px;
  	border-radius: 5px;
  	width: 120px;
  	height: 30px;
  	border: 0;
  	background: #d7a746;
  	color: #fff;
  	font-size: 18px
  }

  .db_wx_tc .db_wx_tc_close {
  	position: absolute;
  	top: -14px;
  	right: -14px;
  	cursor: pointer
  }

  .phone-footer {
  	position: fixed;
  	bottom: 56px;
  	width: 100%;
  	z-index: 100
  }

  .phone-footer a {
  	width: 100%;
  	height: 34px;
  	line-height: 34px;
  	text-align: center;
  	display: block;
  	background-color: #dd9536;
  	color: #fff;
  	font-size: 13px
  }

  .tanchuang,
  .tanchuang11 {
  	width: 360px;
  	height: 546px;
  	position: fixed;
  	top: 50%;
  	left: 50%;
  	z-index: 999995;
  	margin-left: -180px;
  	margin-top: -273px;
  	display: none
  }

  .tanchuang_close,
  .tanchuang_close11 {
  	position: absolute;
  	top: -14px;
  	right: -14px;
  	cursor: pointer;
  	height: 35px;
  	width: 35px;
  	background: #3c3636;
  	border: 2px solid #fff;
  	border-radius: 50%;
  	text-align: center;
  	line-height: 35px;
  	font-size: 38px;
  	color: #fff
  }

  .tanchuang_top img {
  	width: 100%;
  	display: block
  }

  .tanchuang_down {
  	padding: 10px 10px;
  	background: #fff;
  	border-bottom-left-radius: 15px;
  	border-bottom-right-radius: 15px
  }

  .tanchuang_down li {
  	margin-bottom: 15px
  }

  .tanchuang_down li:last-child {
  	margin-bottom: 0
  }

  .tanchuang_down li p {
  	font-size: 12px;
  	font-weight: 800
  }

  .tanchuang_down li .you {
  	font-size: 12px;
  	text-align: center;
  	color: red
  }

  .tanchuang_down li input {
  	width: 318px;
  	border: 1px solid #333;
  	height: 35px;
  	line-height: 35px;
  	font-size: 14px;
  	padding: 0 10px;
  	border-radius: 5px
  }

  .tanchuang_down li div {
  	display: flex;
  	flex-flow: row nowrap;
  	justify-content: space-between
  }

  .tanchuang_down li div span {
  	padding: 2%;
  	border: 1px solid #333;
  	font-size: 14px;
  	border-radius: 5px;
  	cursor: pointer
  }

  .tanchuang_down li div span.on {
  	border: 1px solid #f00;
  	color: #f00
  }

  .tanchuang_down li button {
  	padding: 3% 2%;
  	background: #f00;
  	width: 96%;
  	text-align: center;
  	margin: 0 auto;
  	display: block;
  	border: 0;
  	color: #fff;
  	letter-spacing: 5px;
  	margin-top: 11px;
  	border-radius: 5px
  }

  .tanchuangbg,
  .tanchuangbg11 {
  	background: rgba(0, 0, 0, 0.66);
  	width: 100%;
  	height: 100%;
  	position: fixed;
  	top: 0;
  	left: 0;
  	z-index: 999994;
  	display: none
  }

  @media screen and (max-width:640px) {
  	.tanchuang {
  		width: 280px;
  		height: 546px;
  		margin-left: -140px;
  		margin-top: -255px
  	}

  	.tanchuang11 {
  		width: 280px;
  		height: 546px;
  		margin-left: -140px;
  		margin-top: -255px
  	}

  	.tanchuang_down li input {
  		width: 238px
  	}

  	.tanchuang_down li div span {
  		font-size: 12px
  	}
  }

  @font-face {
  	font-family: "iconfont";
  	src: url('iconfont.eot?t=1607589454576');
  	src: url('../fonts/iconfont.eot') format('embedded-opentype'), url('../fonts/03b0285b4559458bb1ca7888b4de7e17.woff') format('woff2'), url('../fonts/iconfont.woff') format('woff'), url('../fonts/iconfont.ttf') format('truetype'), url('../fonts/iconfont.svg#iconfont') format('svg')
  }

  .iconfont {
  	font-family: "iconfont" !important;
  	font-size: 16px;
  	font-style: normal;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale
  }

  .newfooter {
  	position: fixed;
  	bottom: 0;
  	width: 100%;
  	z-index: 100
  }

  .nfa1 {
  	display: block;
  	width: 100%;
  	height: 45px;
  	line-height: 45px;
  	text-align: center;
  	background: #c7a75c;
  	font-size: .3rem;
  	color: #fff
  }

  .nfa2 {
  	display: block;
  	width: 33.33333333333333%;
  	height: 45px;
  	line-height: 45px;
  	text-align: center;
  	float: left;
  	background: #65b8ca;
  	color: #fff;
  	font-size: 18px
  }

  .nfa2 i {
  	font-size: 25px
  }

  .n-footer-zxkf-r {
  	position: absolute;
  	left: 30px;
  	top: 3px;
  	padding: 0 4px;
  	text-align: center;
  	line-height: 17px;
  	color: #fff;
  	background-color: #f90000;
  	font-size: 12px;
  	border-radius: 50%
  }

  .mzq li {
  	float: left;
  	width: 33.3%
  }

  .mzq div {
  	position: absolute;
  	top: 10%;
  	left: 5%
  }

  .mzq b {
  	display: block
  }

  .x-dh-bj {
  	display: none
  }

  .hslwxzt {
  	position: fixed;
  	width: 100%;
  	top: -75px;
  	left: 0;
  	z-index: 99999999
  }

  .hslwxzt0 {
  	background-color: #fff;
  	height: 55px;
  	overflow: hidden;
  	margin: 6px;
  	box-shadow: 0 0 6px rgba(0, 0, 0, .25);
  	border-radius: 6px
  }

  .hslwxzt1 {
  	width: 33px;
  	margin-left: 11px;
  	float: left
  }

  .hslwxzt2 {
  	height: 33px;
  	padding-left: 20px;
  	margin-top: -20px;
  	float: left
  }

  .hslwxzt2 b {
  	font-size: 14px;
  	color: #333
  }

  .hslclear {
  	width: 40px;
  	color: #999;
  	font-size: 12px;
  	font-weight: lighter;
  	float: right;
  	margin: 10px
  }

  .hslwxzt2 p {
  	font-size: 12px;
  	color: #999;
  	margin-top: 0
  }

  .rg_sx {
  	position: absolute;
  	background: #f09f10;
  	left: 76%;
  	padding: 0 1em;
  	font-size: .2em !important;
  	border-radius: 5px;
  	color: white !important;
  	text-align: center;
  	line-height: .6rem !important;
  	width: 1.6rem;
  	margin-top: .15rem;
  	font-size: .25rem !important
  }

  .ui-dialog.show {
  	display: -webkit-box;
  	display: box
  }

  #m-bmnr {
  	text-align: center
  }

  .ui-dialog {
  	position: fixed;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	z-index: 999999999;
  	display: -webkit-box;
  	-webkit-box-orient: horizontal;
  	-webkit-box-pack: center;
  	-webkit-box-align: center;
  	background: rgba(0, 0, 0, .4);
  	display: none
  }

  .ui-dialog-cnt {
  	border-radius: 13px;
  	width: 270px;
  	-webkit-background-clip: padding-box;
  	background-clip: padding-box;
  	pointer-events: auto;
  	background-color: rgba(253, 253, 253, .95);
  	position: relative;
  	font-size: 16px
  }

  .ui-dialog-hd {
  	height: 48px;
  	line-height: 48px;
  	text-align: center;
  	position: relative
  }

  .ui-dialog-hd h3 {
  	margin: 0;
  	padding: 0
  }

  .ui-dialog-bd {
  	min-height: 12px;
  	border-top-left-radius: 6px;
  	border-top-right-radius: 6px;
  	padding: 18px;
  	display: -webkit-box;
  	display: box;
  	-webkit-box-pack: center;
  	-webkit-box-align: center;
  	-webkit-box-orient: vertical
  }

  .ui-dialog-bd>div,
  .ui-dialog-bd>ul {
  	width: 100%
  }

  @media screen and (-webkit-min-device-pixel-ratio:2) .ui-dialog-ft {
  	position: relative;
  	border: 0;
  	background-position: left top;
  	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.5, transparent), color-stop(0.5, #e0e0e0), to(#e0e0e0));
  	background-repeat: repeat-x;
  	-webkit-background-size: 100% 1px
  }

  .ui-dialog-ft {
  	border-top: 1px solid #eaeaea;
  	color: #2584d8;
  	width: 100%;
  	font-size: 18px;
  	padding: 2% 0;
  	letter-spacing: 3px;
  	font-weight: bolder;
  	text-align: center
  }

  @media screen and (-webkit-min-device-pixel-ratio:2) .ui-dialog-ft button:last-child {
  	background: 0
  }

  .ui-dialog-ft button:last-child {
  	border-right: 0;
  	border-bottom-right-radius: 6px
  }

  .ui-dialog-ft button:first-child {
  	border-bottom-left-radius: 6px
  }

  @media screen and (-webkit-min-device-pixel-ratio:2) .ui-dialog-ft button {
  	border-right: 0;
  	background-position: right top;
  	background-image: -webkit-gradient(linear, left top, right top, color-stop(0.5, transparent), color-stop(0.5, #e0e0e0), to(#e0e0e0));
  	background-repeat: repeat-y;
  	-webkit-background-size: 1px 100%
  }

  .ui-dialog-ft button {
  	color: #000;
  	text-align: center;
  	border-right: 1px #e0e0e0 solid;
  	width: 100%;
  	line-height: 42px;
  	display: block;
  	margin: 0 !important;
  	-webkit-box-flex: 1;
  	-webkit-appearance: none;
  	border: 0;
  	background: 0
  }
