/**
 * Swiper 3.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2017, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: March 10, 2017
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  touch-action: pan-y;
}
.swiper-wp8-vertical {
  touch-action: pan-x;
}
/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  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-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.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-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-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-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-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-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");
}
/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
/* Progress */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}
.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}
.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}
/* 3D Container */
.swiper-container-3d {
  -o-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.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-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.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-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-right {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-top {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Cube */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  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-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 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, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  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);
}
}
@keyframes swiper-preloader-spin {
100% {
    transform: rotate(360deg);
}
}

.content_box {
  width: 100%;
  margin: 0 auto;
}
.theme_color {
  color: #FF6800 !important;
}
.pointer {
  cursor: pointer;
}
.row_flex {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
}
.column_flex {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ant-popover-inner-content {
  padding: 0 !important;
}
.one_level_title {
  width: 100%;
  height: 48px;
  background: #ffffff;
  margin: 10px 0;
  padding: 0 15px;
  box-sizing: border-box;
  position: relative;
  font-size: 16px;
  color: #FF6800;
  font-weight: bold;
  line-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.one_level_title::before {
  content: "";
  width: 4px;
  height: 22px;
  background: #FF6800;
  border-radius: 0 3px 3px 0;
  position: absolute;
  left: 8px;
  top: 13px;
}
.one_level_title .more {
  font-size: 10px;
  color: #FF6800;
  font-weight: normal;
  cursor: pointer;
}
.one_level_title.border {
  border-bottom: 1px solid #F0F0F0;
}
.two_level_title {
  width: 100%;
  height: 38px;
  background: #ffffff;
  padding: 0 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #666666;
  font-weight: bold;
}
.two_level_title .more {
  transform: scale(0.83);
  color: #FF6800;
  font-weight: normal;
  cursor: pointer;
}
.two_level_title.border {
  border-bottom: 1px solid #F0F0F0;
}
.filter__row {
  display: flex;
}
.filter__row .filter__label {
  width: 80px;
  line-height: 30px;
  color: #999999;
  font-size: 12px;
}
.filter__row .filter__con {
  flex: 1;
  overflow: hidden;
  padding: 0 20px;
  box-sizing: border-box;
}
.filter__row .filter__con > li {
  float: left;
  margin-right: 30px;
  font-size: 12px;
  color: #333333;
  line-height: 30px;
  cursor: pointer;
}
.filter__row .filter__con > li.active {
  color: #FF6800;
}
.map_mark_icon {
  display: inline-block;
  width: auto;
  height: auto;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.map_mark_icon .mark_icon {
  display: inline-block;
  width: 38px;
  height: 51px;
  position: relative;
  font-size: 0;
}
.map_mark_icon .mark_icon .circle {
  border-radius: 50%;
}
.map_mark_icon .mark_icon .circle:nth-child(1) {
  width: 38px;
  height: 38px;
  background: #ff6800;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.map_mark_icon .mark_icon .circle:nth-child(2) {
  width: 32px;
  height: 32px;
  background: #FFDD02;
  position: absolute;
  left: 3px;
  top: 3px;
  z-index: 2;
}
.map_mark_icon .mark_icon .circle:nth-child(3) {
  width: 26px;
  height: 26px;
  background: #39A2FF;
  position: absolute;
  left: 6px;
  top: 6px;
  z-index: 3;
}
.map_mark_icon .mark_icon .circle:nth-child(4) {
  width: 20px;
  height: 20px;
  background: #7938FF;
  position: absolute;
  left: 9px;
  top: 9px;
  z-index: 4;
}
.map_mark_icon .mark_icon .circle:nth-child(5) {
  width: 15px;
  height: 15px;
  background: #7938FF;
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 5;
}
.map_mark_icon .mark_icon .triangle {
  width: 0;
  height: 0;
  border-top: 17px solid #ff6800;
  border-left: 13px transparent solid;
  border-right: 13px transparent solid;
  border-bottom: 17px transparent solid;
  position: absolute;
  left: 6px;
  bottom: -15px;
}
.map_mark_icon .mark_icon > .num {
  position: absolute;
  left: 50%;
  top: 5px;
  color: #ffffff;
  z-index: 10;
  font-size: 18px;
  margin-left: -4px;
  margin-bottom: 0;
  text-shadow: 1px 1px 1px #000000;
}
.map_mark_icon > .name {
  font-size: 12px;
  color: #751313;
  font-weight: bold;
  margin-bottom: 0;
  white-space: nowrap;
}
.wangEditor {
  font-size: 16px;
  color: #333333;
  word-wrap: break-word;
  /* table 样式 */
  /* blockquote 样式 */
  /* code 样式 */
  /* ul ol 样式 */
}
.wangEditor table {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.wangEditor table td,
.wangEditor table th {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 3px 5px;
  height: 30px;
}
.wangEditor table th {
  border-bottom: 2px solid #ccc;
  text-align: center;
  background-color: #f1f1f1;
}
.wangEditor blockquote {
  display: block;
  border-left: 8px solid #d0e5f2;
  padding: 5px 10px;
  margin: 10px 0;
  line-height: 1.4;
  font-size: 100%;
  background-color: #f1f1f1;
}
.wangEditor code {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  background-color: #f1f1f1;
  border-radius: 3px;
  padding: 3px 5px;
  margin: 0 3px;
}
.wangEditor pre code {
  display: block;
}
.wangEditor ul,
.wangEditor ol {
  margin: 10px 0 10px 20px;
}
.wangEditor img {
  max-width: 100%;
}
.default_page {
  height: 100%;
  min-height: 500px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.default_page img {
  width: 124px;
  margin-bottom: 25px;
}
.default_page p {
  font-size: 16px;
  line-height: 22px;
  color: #666666;
  text-align: center;
  margin: 0;
  font-weight: bold;
}
.breadcrumb_box .ant-breadcrumb-link {
  cursor: pointer;
}
.select-company-popover .ant-popover-arrow {
  display: none;
}
.select-company-popover .company {
  min-width: 100px;
  max-height: 200px;
  overflow: auto;
}
.select-company-popover .company .company-box {
  margin: 0;
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.65);
  font-weight: normal;
  font-size: 14px;
  cursor: pointer;
}
.select-company-popover .company .company-box:hover {
  background-color: #fff4e6;
}
.select-company-popover .blank-is-replaced {
  height: 32px;
}
.select-company-popover .log-out {
  width: 100%;
  position: absolute;
  bottom: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border-radius: 5px;
}
.select-company-popover .log-out:hover {
  background-color: #fff4e6;
}
.school .swiper-scrollbar {
  height: 5px;
}
.school .swiper-scrollbar-drag {
  background-color: #ff6800;
}
.school .fl {
  float: left;
}
.school .fr {
  float: right;
}
.school .banner {
  width: 100%;
  height: 500px;
  margin-bottom: 20px;
  position: relative;
}
.school .banner .bgimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  -webkit-filter: blur(2px);
}
.school .banner .clearfix::after {
  content: ".";
  /**/
  /*内容为“.”就是一个英文的句号而已。也可以不写。*/
  display: block;
  /**/
  /*加入的这个元素转换为块级元素。*/
  clear: both;
  /**/
  /*清除左右两边浮动。*/
  visibility: hidden;
  /**/
  /*可见度设为隐藏。注意它和display:none;是有区别的。visibility:hidden;仍然占据空间，只是看不到而已；*/
  line-height: 0;
  /**/
  /*行高为0；*/
  height: 0;
  /**/
  /*高度为0；*/
  font-size: 0;
  /**/
  /*字体大小为0；*/
}
.school .banner .clearfix {
  *zoom: 1;
}
.school .banner .content_box {
  position: absolute;
  left: 50%;
  top: 0;
  height: 500px;
  margin-left: -600px;
}
.school .banner .content_box .banner_left {
  width: 890px;
  height: 500px;
}
.school .banner .content_box .banner_left .play_container {
  position: relative;
  width: 890px;
  height: 500px;
}
.school .banner .content_box .banner_left .play_container .vedio_play {
  width: 890px;
  height: 500px;
  margin: auto;
}
.school .banner .content_box .banner_left .play_container .vedio_play video {
  -o-object-fit: revert;
     object-fit: revert;
}
.school .banner .content_box .banner_left .play_container .vjs-big-play-button {
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
}
.school .banner .content_box .banner_left .play_container .vjs-has-started .vjs-control-bar {
  z-index: 999999;
}
.school .banner .content_box .banner_left .play_container .moreCourse {
  position: absolute;
  z-index: 9;
  left: 32px;
  bottom: 45px;
  width: 164px;
  height: 48px;
  background: #ff6800;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  line-height: 48px;
  cursor: pointer;
}
.school .banner .content_box .banner_left img {
  width: 890px;
  height: 500px;
}
.school .banner .content_box .banner_right ul {
  width: 310px;
}
.school .banner .content_box .banner_right ul li {
  cursor: pointer;
  background-color: #fff;
  display: flex;
}
.school .banner .content_box .banner_right ul li .left {
  flex: 1;
  width: 0;
  padding: 23px 24px;
  box-sizing: border-box;
}
.school .banner .content_box .banner_right ul li .left .course_title {
  font-size: 16px;
  line-height: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.school .banner .content_box .banner_right ul li .left .course_desc {
  font-size: 15px;
  line-height: 22px;
  color: #999999;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.school .banner .content_box .banner_right ul li .right {
  padding: 38px 24px 38px 0;
  display: flex;
  align-items: center;
}
.school .banner .content_box .banner_right ul .active {
  background-color: #ff6800;
  color: #fff;
}
.school .banner .content_box .banner_right ul .active .left .course_title {
  color: #fff;
}
.school .banner .content_box .banner_right ul .active .left .course_desc {
  color: #fff;
}
.school .content_box {
  padding-bottom: 20px;
}
.school .content_box .recommend {
  margin-bottom: 10px;
  padding-left: 24px;
  background-color: #fff;
}
.school .content_box .recommend .swiper-container {
  padding-top: 10px;
}
.school .content_box .recommend .rec_top {
  border-bottom: 1px solid #f0f0f0;
}
.school .content_box .recommend .rec_top .rec_topf {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.school .content_box .recommend .rec_top .rec_tops {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6px;
  max-height: 25px;
}
.school .content_box .recommend .rec_top .rec_tops .rec_topl {
  /*> span {*/
  /*  margin-right: 40px;*/
  /*  font-weight: bold;*/
  /*}*/
  margin-bottom: 0;
}
.school .content_box .recommend .rec_top .rec_tops .rec_topl li {
  float: left;
  margin-right: 40px;
  line-height: 22px;
  font-size: 10px;
  color: #333333;
  position: relative;
  cursor: pointer;
}
.school .content_box .recommend .rec_top .rec_tops .rec_topl li.active {
  color: #FF6800;
}
.school .content_box .recommend .rec_top .rec_topl p {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  font-weight: bold;
  color: #333;
  display: inline-block;
  padding: 20px 0 20px 8px;
}
.school .content_box .recommend .rec_top .rec_topl img {
  width: 17px;
  height: 18px;
  vertical-align: text-bottom;
}
.school .content_box .recommend .rec_top .rec_topr .more {
  cursor: pointer;
  font-size: 10px;
  line-height: 22px;
  color: #ff6800;
  padding-right: 15px;
}
.school .content_box .recommend .rec_top .rec_topr .more .iconfont {
  font-size: 8px;
}
.school .content_box .recommend .rec_bottom ul {
  width: 100%;
  overflow: hidden;
}
.school .content_box .recommend .rec_bottom ul li {
  float: left;
  width: 210px;
  background-color: #fff;
  cursor: pointer;
}
.school .content_box .recommend .rec_bottom ul li .course_image {
  width: 100%;
  height: 118px;
}
.school .content_box .recommend .rec_bottom ul li .course_title {
  font-size: 14px;
  font-weight: bold;
  color: #333333;
  line-height: 20px;
  padding: 12px 0 7px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.school .content_box .recommend .rec_bottom ul li .course_desc {
  font-size: 12px;
  line-height: 17px;
  color: #999999;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.school .content_box .recommend .rec_bottom ul li .course_price {
  padding: 10px 0 20px;
  color: #ff6800;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
}
.school .content_box .recommend .rec_bottom ul li .course_price span {
  font-size: 10px;
}
.school .content_box .bottom {
  display: grid;
  grid-template-columns: 80% auto;
}
.school .content_box .bottom .bot_r {
  padding-left: 10px;
}
.school .content_box .bottom .bot_r .bot_rtop {
  margin-bottom: 10px;
  background-color: #fff;
  height: auto;
}
.school .content_box .bottom .bot_r .bot_rtop .bot_rtop_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #f0f0f0;
}
.school .content_box .bottom .bot_r .bot_rtop .bot_rtop_head .flag {
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  color: #666666;
  padding-left: 10px;
}
.school .content_box .bottom .bot_r .bot_rtop .bot_rtop_head .more {
  font-size: 10px;
  line-height: 14px;
  color: #ff6800;
  padding-right: 15px;
}
.school .content_box .bottom .bot_r .bot_rtop .bot_rtop_head .more .iconfont {
  font-size: 8px;
}
.school .content_box .bottom .bot_r .bot_rtop .bot_rtop_list {
  padding-left: 10px;
  padding-right: 15px;
}
.school .content_box .bottom .bot_r .bot_rtop .bot_rtop_list ul li {
  padding-top: 10px;
  padding-bottom: 11px;
}
.school .content_box .bottom .bot_r .bot_rtop .bot_rtop_list ul li a {
  font-size: 12px;
  line-height: 17px;
  color: #333333;
  display: flex;
  justify-content: space-between;
}
.school .content_box .bottom .bot_r .bot_rtop .bot_rtop_list ul li a .bot_rtop_list_l {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.school .content_box .bottom .bot_r .bot_rtop .bot_rtop_list ul li a span {
  font-weight: bold;
}
.school .content_box .bottom .bot_r .bot_rtop .bot_rtop_list ul li a:hover .bot_rtop_list_l {
  color: #ff6800;
}
.school .content_box .bottom .bot_r .bot_rtop .bot_rtop_list ul .change a .bot_rtop_list_l {
  color: #ff6800;
}
.school .content_box .bottom .bot_r .bot_rbot {
  background-color: #fff;
  height: auto;
  overflow: hidden;
}
.school .content_box .bottom .bot_r .bot_rbot .bot_rtop_head {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #f0f0f0;
}
.school .content_box .bottom .bot_r .bot_rbot .bot_rtop_head .flag {
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  color: #666666;
  padding-left: 10px;
}
.school .content_box .bottom .bot_r .bot_rbot ul li {
  padding: 11px 21px 0px 10px;
  display: flex;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
}
.school .content_box .bottom .bot_r .bot_rbot ul li .rank-img {
  padding-right: 10px;
}
.school .content_box .bottom .bot_r .bot_rbot ul li .rank-img img {
  width: 100px;
  height: 76px;
}
.school .content_box .bottom .bot_r .bot_rbot ul li .conner {
  position: absolute;
  top: 10px;
  left: 10px;
  text-align: center;
  line-height: 15px;
  width: 25px;
  height: 15px;
  background: #e50113;
  border-radius: 0px 0px 6px 0px;
  font-size: 10px;
  font-family: PingFangSC, PingFangSC-Semibold;
  font-weight: 600;
  color: #ffffff;
}
.school .content_box .bottom .bot_r .bot_rbot ul li .conner1 {
  position: absolute;
  top: 10px;
  left: 10px;
  text-align: center;
  line-height: 15px;
  width: 25px;
  height: 15px;
  background: #ff6700;
  border-radius: 0px 0px 6px 0px;
  font-size: 10px;
  font-family: PingFangSC, PingFangSC-Semibold;
  font-weight: 600;
  color: #ffffff;
}
.school .content_box .bottom .bot_r .bot_rbot ul li .conner2 {
  position: absolute;
  top: 10px;
  left: 10px;
  text-align: center;
  line-height: 15px;
  width: 25px;
  height: 15px;
  background: #ffaf00;
  border-radius: 0px 0px 6px 0px;
  font-size: 10px;
  font-family: PingFangSC, PingFangSC-Semibold;
  font-weight: 600;
  color: #ffffff;
}
.school .content_box .bottom .bot_r .bot_rbot ul li .conner3 {
  position: absolute;
  top: 10px;
  left: 10px;
  text-align: center;
  line-height: 15px;
  width: 25px;
  height: 15px;
  background: #666666;
  border-radius: 0px 0px 6px 0px;
  font-size: 10px;
  font-family: PingFangSC, PingFangSC-Semibold;
  font-weight: 600;
  color: #ffffff;
}
.school .content_box .bottom .bot_r .bot_rbot ul li .conner4 {
  position: absolute;
  top: 10px;
  left: 10px;
  text-align: center;
  line-height: 15px;
  width: 25px;
  height: 15px;
  background: #666666;
  border-radius: 0px 0px 6px 0px;
  font-size: 10px;
  font-family: PingFangSC, PingFangSC-Semibold;
  font-weight: 600;
  color: #ffffff;
}
.school .content_box .bottom .bot_r .bot_rbot ul li .rank-desc {
  position: relative;
  width: 140px;
}
.school .content_box .bottom .bot_r .bot_rbot ul li .rank-desc .rank-desc_t {
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  color: #333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.school .content_box .bottom .bot_r .bot_rbot ul li .rank-desc .rank-desc_b {
  white-space: nowrap;
  font-size: 10px;
  line-height: 14px;
  color: #999999;
  padding-bottom: 10px;
  position: absolute;
  bottom: 10px;
}
.school .content_box .bottom .bot_r .bot_rbot ul li .rank-desc .rank-desc_b span {
  color: #ef8200;
}

