@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale3d(0.6, 0.6, 0.6);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes zoomInUp {
  from {
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@keyframes zoomInDown {
  from {
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
  }
}

@keyframes zoomInLeft {
  from {
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
  }

  60% {
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
}

body #page_body_editor-wrapper {
  word-break: break-all;
  color: #777;
}

body #page_body_editor-wrapper .layout_group {
  /* add */
  /* Arrows */
  /* Dots */
}

body #page_body_editor-wrapper .layout_group tbody {
  vertical-align: top;
}

body #page_body_editor-wrapper .layout_group p {
  display: block;
  margin: 0;
}

body #page_body_editor-wrapper .layout_group h1 {
  font-size: 2em;
  font-weight: bold;
  display: block;
  margin: 0;
}

body #page_body_editor-wrapper .layout_group h2 {
  font-size: 1.5em;
  font-weight: bold;
  display: block;
  margin: 0;
}

body #page_body_editor-wrapper .layout_group h3 {
  font-size: 1.17em;
  font-weight: bold;
  display: block;
  margin: 0;
}

body #page_body_editor-wrapper .layout_group blockquote {
  font-style: italic;
  overflow: hidden;
  margin-top: 0.9em;
  margin-bottom: 0.9em;
  margin-left: 0;
  padding-right: 1.5em;
  padding-left: 1.5em;
  border-left: 5px solid #ccc;
}

body #page_body_editor-wrapper .layout_group figure {
  position: relative;
  margin: 0;
}

body #page_body_editor-wrapper .layout_group figure.table {
  margin: 0 auto;
}

body #page_body_editor-wrapper .layout_group table {
  border-spacing: 0;
  border-collapse: collapse;
  border: 1px double rgba(211, 211, 211, 0.4);
}

body #page_body_editor-wrapper .layout_group table td {
  border: 1px solid transparent;
}

body #page_body_editor-wrapper .layout_group table td,
body #page_body_editor-wrapper .layout_group table th {
  min-width: 2em;
  padding: 0.8em;
  border-color: rgba(211, 211, 211, 0.4);
}

body #page_body_editor-wrapper .layout_group img {
  max-width: 100%;
}

body #page_body_editor-wrapper .layout_group video,
body #page_body_editor-wrapper .layout_group iframe {
  vertical-align: top;
}

body #page_body_editor-wrapper .layout_group .hide {
  display: none;
}

body #page_body_editor-wrapper .layout_group figcaption {
  display: none !important;
}

body #page_body_editor-wrapper .layout_group table {
  margin: 0 auto;
}

body #page_body_editor-wrapper .layout_group .table table th {
  background-color: transparent;
}

body #page_body_editor-wrapper .layout_group .hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid rgba(211, 211, 211, 0.4);
}

body #page_body_editor-wrapper .layout_group .hr.dash {
  border-top: 1px dotted rgba(211, 211, 211, 0.4);
}

body #page_body_editor-wrapper .layout_group table,
body #page_body_editor-wrapper .layout_group .f_table {
  table-layout: fixed;
}

body #page_body_editor-wrapper .layout_group .f_table,
body #page_body_editor-wrapper .layout_group .table,
body #page_body_editor-wrapper .layout_group table {
  width: 100%;
}

body #page_body_editor-wrapper .layout_group .table[data-border=true] .f_table,
body #page_body_editor-wrapper .layout_group .table[data-border=true] table {
  border: none;
}

body #page_body_editor-wrapper .layout_group .table[data-border=true] .f_th,
body #page_body_editor-wrapper .layout_group .table[data-border=true] .f_td,
body #page_body_editor-wrapper .layout_group .table[data-border=true] th,
body #page_body_editor-wrapper .layout_group .table[data-border=true] td {
  border: none;
}

body #page_body_editor-wrapper .layout_group hr.blank_block {
  margin: 0;
  border: none;
}

body #page_body_editor-wrapper .layout_group .table {
  display: table;
  margin: 0;
}

body #page_body_editor-wrapper .layout_group .table table {
  border-spacing: 0;
  border-collapse: collapse;
  border: 1px double rgba(211, 211, 211, 0.4);
}

body #page_body_editor-wrapper .layout_group .table table td,
body #page_body_editor-wrapper .layout_group .table table th {
  min-width: 2em;
  padding: 0.8em;
  border-color: rgba(211, 211, 211, 0.4);
}

body #page_body_editor-wrapper .layout_group .table table th {
  font-weight: 700;
  background: #fafafa;
}

body #page_body_editor-wrapper .layout_group blockquote {
  font-style: italic;
  overflow: hidden;
  margin-left: 0;
  padding-right: 1.5em;
  padding-left: 1.5em;
  border-left: 5px solid #ccc;
}

body #page_body_editor-wrapper .layout_group .image.ck-appear {
  animation: fadeIn 0.7s;
}

body #page_body_editor-wrapper .layout_group .image .ck-progress-bar {
  width: 0;
  height: 2px;
  transition: width 0.1s;
  background: #6cb5f9;
}

body #page_body_editor-wrapper .layout_group .image-style-align-left,
body #page_body_editor-wrapper .layout_group .image-style-align-right,
body #page_body_editor-wrapper .layout_group .image-style-side {
  max-width: 50%;
}

body #page_body_editor-wrapper .layout_group .image-style-side {
  float: right;
  margin-left: 1.5em;
}

body #page_body_editor-wrapper .layout_group .image-style-align-left {
  float: left;
  margin-right: 1.5em;
}

body #page_body_editor-wrapper .layout_group .image-style-align-center {
  margin-right: auto;
  margin-left: auto;
}

body #page_body_editor-wrapper .layout_group .image-style-align-right {
  float: right;
  margin-left: 1.5em;
}

body #page_body_editor-wrapper .layout_group .image {
  clear: both;
  margin: 1em 0;
  text-align: center;
}

body #page_body_editor-wrapper .layout_group .image>img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

body #page_body_editor-wrapper .layout_group .image {
  position: relative;
  overflow: hidden;
  margin: 0;
}

body #page_body_editor-wrapper .layout_group .image.image-style-align-center {
  margin: auto;
}

body #page_body_editor-wrapper .layout_group .image .ck-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
}

body #page_body_editor-wrapper .layout_group .image>figcaption {
  font-size: 0.75em;
  display: none !important;
  padding: 0.6em;
  color: #333;
  outline-offset: -1px;
  background-color: #f7f7f7;
}

body #page_body_editor-wrapper .layout_group a,
body #page_body_editor-wrapper .layout_group .normal_link {
  width: auto;
  text-decoration: none;
  vertical-align: bottom;
  transition: color 0.26s ease, background-color 0.26s ease, border-color 0.26s ease;
}

body #page_body_editor-wrapper .layout_group a[data-layout="1"],
body #page_body_editor-wrapper .layout_group .normal_link[data-layout="1"] {
  display: inline-block;
  overflow: hidden;
  border-width: 2px;
  border-style: solid;
  line-height: 44px;
  border-color: transparent;
  height: 48px;
  box-sizing: border-box;
  min-width: 140px;
  padding: 0 35px;
  text-align: center;
  vertical-align: center;
  white-space: nowrap;
  text-decoration: none;
  text-overflow: ellipsis;
  color: #333;
  background: #f0f0f0;
}

body #page_body_editor-wrapper .layout_group a[data-layout="2"],
body #page_body_editor-wrapper .layout_group .normal_link[data-layout="2"] {
  display: inline-block;
  overflow: hidden;
  border-width: 2px;
  border-style: solid;
  line-height: 44px;
  height: 48px;
  border-color: transparent;
  box-sizing: border-box;
  min-width: 140px;
  padding: 0 35px;
  text-align: center;
  vertical-align: center;
  white-space: nowrap;
  text-decoration: none;
  text-overflow: ellipsis;
  color: #333;
  border-radius: 5px;
  background: #f0f0f0;
}

body #page_body_editor-wrapper .layout_group a[data-layout="3"],
body #page_body_editor-wrapper .layout_group .normal_link[data-layout="3"] {
  display: inline-block;
  overflow: hidden;
  border-width: 2px;
  border-style: solid;
  line-height: 44px;
  height: 48px;
  box-sizing: border-box;
  border-color: transparent;
  min-width: 140px;
  padding: 0 35px;
  text-align: center;
  vertical-align: center;
  white-space: nowrap;
  text-decoration: none;
  text-overflow: ellipsis;
  color: #333;
  border-radius: 24px;
  background: #f0f0f0;
}

body #page_body_editor-wrapper .layout_group a[data-style=white],
body #page_body_editor-wrapper .layout_group .normal_link[data-style=white] {
  color: #333;
  background: #f0f0f0;
}

body #page_body_editor-wrapper .layout_group a[data-style=black],
body #page_body_editor-wrapper .layout_group .normal_link[data-style=black] {
  color: #fff;
  background: #333;
}

body #page_body_editor-wrapper .layout_group a[data-before-outline="1"],
body #page_body_editor-wrapper .layout_group .normal_link[data-before-outline="1"] {
  background-color: transparent;
}

body #page_body_editor-wrapper .layout_group .blank_block.small_blank {
  height: 20px;
}

body #page_body_editor-wrapper .layout_group .blank_block.normal_blank {
  height: 50px;
}

body #page_body_editor-wrapper .layout_group .blank_block.big_blank {
  height: 100px;
}

body #page_body_editor-wrapper .layout_group .slick-slide img {
  max-width: 100%;
  margin: 0 auto;
}

body #page_body_editor-wrapper .layout_group .slick-slide div {
  font-size: 0;
}

body #page_body_editor-wrapper .layout_group .slick-vertical .slick-slide {
  border: none;
}

body #page_body_editor-wrapper .layout_group .slick-prev,
body #page_body_editor-wrapper .layout_group .slick-next {
  font-size: 0;
  line-height: 23px;
  line-height: 36px;
  position: absolute;
  top: 50%;
  display: block;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 50px;
  outline: none;
  background-color: rgba(0, 0, 0, 0.4);
}

body #page_body_editor-wrapper .layout_group .slick-prev .fa,
body #page_body_editor-wrapper .layout_group .slick-next .fa {
  font-size: 20px;
  margin: 0;
  padding: 0;
}

body #page_body_editor-wrapper .layout_group .slick-prev {
  z-index: 1;
  left: 20px;
}

body #page_body_editor-wrapper .layout_group .slick-prev .fa {
  margin-top: -1px;
  margin-left: -3px;
}

body #page_body_editor-wrapper .layout_group .slick-next {
  right: 20px;
}

body #page_body_editor-wrapper .layout_group .slick-next .fa {
  margin-top: -1px;
  margin-right: -2px;
}

body #page_body_editor-wrapper .layout_group .slick-dotted.slick-slider {
  margin-bottom: 60px;
}

body #page_body_editor-wrapper .layout_group .slick-dots {
  position: absolute;
  bottom: -40px;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

body #page_body_editor-wrapper .layout_group .slick-dots li {
  position: relative;
  display: inline-block;
  width: 19px;
  height: 20px;
  margin: 0 0;
  padding: 0;
  cursor: pointer;
}

body #page_body_editor-wrapper .layout_group .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 5px;
  height: 5px;
  margin: 7px;
  padding: 0;
  cursor: pointer;
  transition: all 0.1s linear;
  color: transparent;
  border: 0;
  border-radius: 50%;
  outline: none;
  box-shadow: inset 0 0 0 5px rgba(107, 107, 107, 0.6);
}

body #page_body_editor-wrapper .layout_group .slick-dots li button:hover,
body #page_body_editor-wrapper .layout_group .slick-dots li button:focus {
  outline: none;
}

body #page_body_editor-wrapper .layout_group .slick-dots li button:hover:before,
body #page_body_editor-wrapper .layout_group .slick-dots li button:focus:before {
  opacity: 1;
}

body #page_body_editor-wrapper .layout_group .slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  text-align: center;
  opacity: 0.6;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body #page_body_editor-wrapper .layout_group .slick-dots li.slick-active button {
  transform: scale(2);
  background: none;
  box-shadow: inset 0 0 0 1px #6b6b6b;
}

#page_body_editor-wrapper {
  /* add */
  /* Arrows */
  /* Dots */
}

#page_body_editor-wrapper .fa {
  line-height: inherit;
}

#page_body_editor-wrapper .ck-content {
  position: relative;
  width: 100%;
}

#page_body_editor-wrapper .slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

#page_body_editor-wrapper .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

#page_body_editor-wrapper .slick-list:focus {
  outline: none;
}

#page_body_editor-wrapper .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

#page_body_editor-wrapper .slick-slider .slick-track,
#page_body_editor-wrapper .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#page_body_editor-wrapper .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

#page_body_editor-wrapper .slick-track:before,
#page_body_editor-wrapper .slick-track:after {
  display: table;
  content: "";
}

#page_body_editor-wrapper .slick-track:after {
  clear: both;
}

#page_body_editor-wrapper .slick-loading .slick-track {
  visibility: hidden;
}

#page_body_editor-wrapper .slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

#page_body_editor-wrapper [dir=rtl] .slick-slide {
  float: right;
}

#page_body_editor-wrapper .slick-slide img {
  display: block;
}

#page_body_editor-wrapper .slick-slide.slick-loading img {
  display: none;
}

#page_body_editor-wrapper .slick-slide.dragging img {
  pointer-events: none;
}

#page_body_editor-wrapper .slick-initialized .slick-slide {
  display: block;
}

#page_body_editor-wrapper .slick-loading .slick-slide {
  visibility: hidden;
}

#page_body_editor-wrapper .slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

#page_body_editor-wrapper .slick-arrow.slick-hidden {
  display: none;
}

#page_body_editor-wrapper .slick-slide div {
  font-size: 0;
}

#page_body_editor-wrapper .slick-vertical .slick-slide {
  border: none;
}

#page_body_editor-wrapper .slick-prev,
#page_body_editor-wrapper .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 52px;
  height: 52px;
  padding: 0;
  cursor: pointer;
  transform: translateY(-50%);
  color: #fff;
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0.6);
}

#page_body_editor-wrapper .slick-prev .fa,
#page_body_editor-wrapper .slick-next .fa {
  font-size: 30px;
  margin: 11px 21px;
}

#page_body_editor-wrapper .slick-prev {
  z-index: 1;
  left: 0;
}

#page_body_editor-wrapper .slick-next {
  right: 0;
}

#page_body_editor-wrapper .slick-dotted.slick-slider {
  margin-bottom: 60px;
}

#page_body_editor-wrapper .slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

#page_body_editor-wrapper .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

#page_body_editor-wrapper .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 5px;
  height: 5px;
  margin: 7px;
  cursor: pointer;
  transition: all 0.1s linear;
  color: transparent;
  border: 0;
  border-radius: 100px;
  outline: none;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.5);
}

#page_body_editor-wrapper .slick-dots li button:hover,
#page_body_editor-wrapper .slick-dots li button:focus {
  outline: none;
}

#page_body_editor-wrapper .slick-dots li button:hover:before,
#page_body_editor-wrapper .slick-dots li button:focus:before {
  opacity: 1;
}

#page_body_editor-wrapper .slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  text-align: center;
  opacity: 0.6;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#page_body_editor-wrapper .slick-dots li.slick-active button {
  transform: scale(1.5);
  background: none;
  box-shadow: inset 0 0 0 1px #fff;
}

#page_body_editor-wrapper {
  color: #777;
}

#page_body_editor-wrapper .layout_group {
  font-size: 14px;
  line-height: 24px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

#page_body_editor-wrapper .layout_group[data-window_width=true] {
  width: 100vw !important;
  max-width: none;
  margin-left: calc(50% - 50vw);
}

#page_body_editor-wrapper .layout_group[data-limit_width=true]>.layout_limit_wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

#page_body_editor-wrapper .layout_group[data-window_height=true] .layout_container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

#page_body_editor-wrapper .layout_group[data-window_height=true] .layout_container .layout_body {
  flex: 1 1 auto;
}

#page_body_editor-wrapper .layout_group[data-window_height=true] .layout_container .layout_footer,
#page_body_editor-wrapper .layout_group[data-window_height=true] .layout_container .layout_header {
  flex: 0 0 auto;
}

#page_body_editor-wrapper .layout_group[data-window_height=true][data-module_center=true] .layout_container {
  justify-content: center;
}

#page_body_editor-wrapper .layout_group[data-window_height=true][data-module_center=true] .layout_container .layout_body {
  flex: 0 0 auto;
}

#page_body_editor-wrapper .layout_group[data-window_height=true][data-module_center=true] .layout_container .layout_footer,
#page_body_editor-wrapper .layout_group[data-window_height=true][data-module_center=true] .layout_container .layout_header {
  flex: 0 0 auto;
}

#page_body_editor-wrapper .layout_group .layout_slider {
  width: 100%;
}

#page_body_editor-wrapper .layout_group .layout_slider[data-theme=white] .slick-prev,
#page_body_editor-wrapper .layout_group .layout_slider[data-theme=white] .slick-next {
  background-color: rgba(140, 140, 140, 0.4);
}

#page_body_editor-wrapper .layout_group .row {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  box-sizing: border-box;
}

#page_body_editor-wrapper .layout_group .row .col:first-child {
  margin-left: 0 !important;
}

#page_body_editor-wrapper .layout_group .row [class*=col-] {
  padding: 0;
}

#page_body_editor-wrapper .layout_group .col {
  display: flex;
  box-sizing: border-box;
}

#page_body_editor-wrapper .layout_group .col_space {
  display: block;
  flex: 0 0 auto;
}

#page_body_editor-wrapper .layout_group .col-20 {
  width: 20%;
}

#page_body_editor-wrapper .layout_group .col-25 {
  width: 25%;
}

#page_body_editor-wrapper .layout_group .col-30 {
  width: 30%;
}

#page_body_editor-wrapper .layout_group .col-33 {
  width: 33.3333333%;
}

#page_body_editor-wrapper .layout_group .col-40 {
  width: 40%;
}

#page_body_editor-wrapper .layout_group .col-50 {
  width: 50%;
}

#page_body_editor-wrapper .layout_group .col-60 {
  width: 60%;
}

#page_body_editor-wrapper .layout_group .col-66 {
  width: 66.6666666%;
}

#page_body_editor-wrapper .layout_group .col-70 {
  width: 70%;
}

#page_body_editor-wrapper .layout_group .col-100 {
  width: 100%;
}

#page_body_editor-wrapper .layout_group .space-3>* {
  margin-right: 3px;
}

#page_body_editor-wrapper .layout_group .space-3>*:last-child {
  margin: 0;
}

#page_body_editor-wrapper .layout_group .space-10 {
  margin-right: -10px;
}

#page_body_editor-wrapper .layout_group .space-10>* {
  padding-right: 10px;
}

#page_body_editor-wrapper .layout_group .space-20 {
  margin-right: -20px;
}

#page_body_editor-wrapper .layout_group .space-20>* {
  padding-right: 20px;
}

#page_body_editor-wrapper .layout_group .flex {
  display: flex;
}

#page_body_editor-wrapper .layout_group .flex-elastic {
  flex: 1 1 auto;
}

#page_body_editor-wrapper .layout_group .flex-yc {
  display: flex;
  align-items: center;
}

#page_body_editor-wrapper .layout_group .layout_bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 200vh;
  background-repeat: no-repeat;
}

#page_body_editor-wrapper .layout_group .layout_bg .layout_bg-mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#page_body_editor-wrapper .layout_group .layout_bg[data-effect=fixed] {
  background-attachment: fixed;
}

#page_body_editor-wrapper .layout_group .layout_bg[data-effect=normal] {
  height: 100%;
}

#page_body_editor-wrapper .layout_group .layout_bg[data-size=contain] {
  background-size: 100% auto;
}

#page_body_editor-wrapper .layout_group .layout_bg[data-size=repeat] {
  background-repeat: repeat;
}

#page_body_editor-wrapper .layout_group .layout_bg[data-pos=tl] {
  background-position: top left;
}

#page_body_editor-wrapper .layout_group .layout_bg[data-pos=tc] {
  background-position: top center;
}

#page_body_editor-wrapper .layout_group .layout_bg[data-pos=tr] {
  background-position: top right;
}

#page_body_editor-wrapper .layout_group .layout_bg[data-pos=cl] {
  background-position: center left;
}

#page_body_editor-wrapper .layout_group .layout_bg[data-pos=cc] {
  background-position: center center;
}

#page_body_editor-wrapper .layout_group .layout_bg[data-pos=cr] {
  background-position: center right;
}

#page_body_editor-wrapper .layout_group .layout_bg[data-pos=bl] {
  background-position: bottom left;
}

#page_body_editor-wrapper .layout_group .layout_bg[data-pos=bc] {
  background-position: bottom center;
}

#page_body_editor-wrapper .layout_group .layout_bg[data-pos=br] {
  background-position: bottom right;
}

#page_body_editor-wrapper .layout_group .layout_bg_mo {
  display: none;
}

#page_body_editor-wrapper .layout_group .layout_bg_pc {
  display: block;
}

#page_body_editor-wrapper .layout:after {
  display: block;
  clear: both;
  content: "";
}

#page_body_editor-wrapper .layout .row {
  max-width: 100%;
}

#page_body_editor-wrapper .layout .row[data-animate] .col:not(.animated) {
  animation-name: none;
}

#page_body_editor-wrapper .layout .row[data-animate] .col.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}


#page_body_editor-wrapper .layout .row[data-animate="0"] .col {
  animation-name: none !important;
}

#page_body_editor-wrapper .layout .row[data-animate="1"] .col:nth-of-type(1),
#page_body_editor-wrapper .layout .row[data-animate="3"] .col:nth-of-type(1),
#page_body_editor-wrapper .layout .row[data-animate="4"] .col:nth-of-type(1) {
  animation-delay: 0.1s;
}

#page_body_editor-wrapper .layout .row[data-animate="1"] .col:nth-of-type(2),
#page_body_editor-wrapper .layout .row[data-animate="3"] .col:nth-of-type(2),
#page_body_editor-wrapper .layout .row[data-animate="4"] .col:nth-of-type(2) {
  animation-delay: 0.2s;
}

#page_body_editor-wrapper .layout .row[data-animate="1"] .col:nth-of-type(3),
#page_body_editor-wrapper .layout .row[data-animate="3"] .col:nth-of-type(3),
#page_body_editor-wrapper .layout .row[data-animate="4"] .col:nth-of-type(3) {
  animation-delay: 0.3s;
}

#page_body_editor-wrapper .layout .row[data-animate="1"] .col:nth-of-type(4),
#page_body_editor-wrapper .layout .row[data-animate="3"] .col:nth-of-type(4),
#page_body_editor-wrapper .layout .row[data-animate="4"] .col:nth-of-type(4) {
  animation-delay: 0.4s;
}

#page_body_editor-wrapper .layout .row[data-animate="1"] .col:nth-of-type(5),
#page_body_editor-wrapper .layout .row[data-animate="3"] .col:nth-of-type(5),
#page_body_editor-wrapper .layout .row[data-animate="4"] .col:nth-of-type(5) {
  animation-delay: 0.5s;
}

#page_body_editor-wrapper .layout .row[data-animate="1"] .col:nth-of-type(6),
#page_body_editor-wrapper .layout .row[data-animate="3"] .col:nth-of-type(6),
#page_body_editor-wrapper .layout .row[data-animate="4"] .col:nth-of-type(6) {
  animation-delay: 0.6s;
}

#page_body_editor-wrapper .layout .row[data-animate="1"] .col:nth-of-type(7),
#page_body_editor-wrapper .layout .row[data-animate="3"] .col:nth-of-type(7),
#page_body_editor-wrapper .layout .row[data-animate="4"] .col:nth-of-type(7) {
  animation-delay: 0.7s;
}

#page_body_editor-wrapper .layout .row[data-animate="1"] .col:nth-of-type(8),
#page_body_editor-wrapper .layout .row[data-animate="3"] .col:nth-of-type(8),
#page_body_editor-wrapper .layout .row[data-animate="4"] .col:nth-of-type(8) {
  animation-delay: 0.8s;
}

#page_body_editor-wrapper .layout .row[data-animate="1"] .col:nth-of-type(9),
#page_body_editor-wrapper .layout .row[data-animate="3"] .col:nth-of-type(9),
#page_body_editor-wrapper .layout .row[data-animate="4"] .col:nth-of-type(9) {
  animation-delay: 0.9s;
}

#page_body_editor-wrapper .layout .row[data-animate="1"] .col:nth-of-type(10),
#page_body_editor-wrapper .layout .row[data-animate="3"] .col:nth-of-type(10),
#page_body_editor-wrapper .layout .row[data-animate="4"] .col:nth-of-type(10) {
  animation-delay: 1s;
}

#page_body_editor-wrapper .layout .row[data-animate="5"] .col {
  animation-name: fadeIn;
}

#page_body_editor-wrapper .layout .row[data-animate="6"] .col {
  animation-name: rotateInUpRight;
}

#page_body_editor-wrapper .layout .row[data-animate="7"] .col {
  animation-name: rotateInUpLeft;
}

#page_body_editor-wrapper .layout .row[data-animate="8"] .col {
  animation-name: zoomInUp;
}

#page_body_editor-wrapper .layout .row[data-animate="9"] .col {
  animation-name: zoomInDown;
}

#page_body_editor-wrapper .layout .row[data-animate="4"] .col {
  animation-name: zoomIn;
}

#page_body_editor-wrapper .layout .row[data-animate="3"] .col {
  animation-name: fadeInRight;
}

#page_body_editor-wrapper .layout .row[data-animate="2"] .col {
  animation-name: fadeInLeft;
}

#page_body_editor-wrapper .layout .row[data-animate="1"] .col {
  animation-name: fadeInUp;
}

#page_body_editor-wrapper .layout .slider_item {
  box-sizing: border-box;
}

#page_body_editor-wrapper .layout .layout_block {
  width: 100%;
  min-height: 1px;
  transition: 0.36s ease;
  position: relative;
  box-sizing: border-box;
}

#page_body_editor-wrapper .layout .layout_block .layout_block_line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border: 1px solid #878787;
  border-width: 1px 0 0;
}

#page_body_editor-wrapper .layout .layout_block .layout_block_line[data-line-type=solid] {
  border-style: solid;
}

#page_body_editor-wrapper .layout .layout_block .layout_block_line[data-line-type=dashed] {
  border-style: dashed;
}

#page_body_editor-wrapper .layout .layout_block .layout_block_line[data-line-type=dotted] {
  border-style: dotted;
}

#page_body_editor-wrapper .layout .layout_block[data-size=line] {
  height: 1px;
}

#page_body_editor-wrapper .layout .layout_block[data-size=small] {
  height: 20px;
}

#page_body_editor-wrapper .layout .layout_block[data-size=medium] {
  height: 30px;
}

#page_body_editor-wrapper .layout .layout_block[data-size=big] {
  height: 50px;
}

#page_body_editor-wrapper .layout[data-justify_center=center] .row {
  margin: 0 auto;
}

#page_body_editor-wrapper .layout[data-justify_center=right] .row {
  float: right;
}

#page_body_editor-wrapper .layout[data-align_center=center] .col {
  align-items: center;
}

#page_body_editor-wrapper .layout[data-align_center=bottom] .col {
  align-items: flex-end;
}

#page_body_editor-wrapper .layout-margin_placeholder_bottom,
#page_body_editor-wrapper .layout-margin_placeholder_top {
  clear: both;
}

.agent_pc #page_body_editor-wrapper .layout_bg_mo,
.body_container[data-agent=pc] #page_body_editor-wrapper .layout_bg_mo {
  display: none;
}

.agent_pc #page_body_editor-wrapper .layout_bg_pc,
.body_container[data-agent=pc] #page_body_editor-wrapper .layout_bg_pc {
  display: block;
}

.agent_pc #page_body_editor-wrapper .slider_item,
.body_container[data-agent=pc] #page_body_editor-wrapper .slider_item {
  box-sizing: border-box;
}

.agent_pc #page_body_editor-wrapper .layout_slider[data-margin-size=small] .slick-list,
.body_container[data-agent=pc] #page_body_editor-wrapper .layout_slider[data-margin-size=small] .slick-list {
  margin-right: -10px;
}

.agent_pc #page_body_editor-wrapper .layout_slider[data-margin-size=small] .slick-slide,
.body_container[data-agent=pc] #page_body_editor-wrapper .layout_slider[data-margin-size=small] .slick-slide {
  margin-right: 10px;
}

.agent_pc #page_body_editor-wrapper .layout_slider[data-margin-size=middle] .slick-list,
.body_container[data-agent=pc] #page_body_editor-wrapper .layout_slider[data-margin-size=middle] .slick-list {
  margin-right: -20px;
}

.agent_pc #page_body_editor-wrapper .layout_slider[data-margin-size=middle] .slick-slide,
.body_container[data-agent=pc] #page_body_editor-wrapper .layout_slider[data-margin-size=middle] .slick-slide {
  margin-right: 20px;
}

.agent_pc #page_body_editor-wrapper .layout_slider[data-margin-size=big] .slick-list,
.body_container[data-agent=pc] #page_body_editor-wrapper .layout_slider[data-margin-size=big] .slick-list {
  margin-right: -30px;
}

.agent_pc #page_body_editor-wrapper .layout_slider[data-margin-size=big] .slick-slide,
.body_container[data-agent=pc] #page_body_editor-wrapper .layout_slider[data-margin-size=big] .slick-slide {
  margin-right: 30px;
}

.agent-mobile #page_body_editor-wrapper .text-40,
.agent-mobile #page_body_editor-wrapper .text-60,
.agent-mobile #page_body_editor-wrapper .text-72,
.body_container[data-agent=mo] #page_body_editor-wrapper .text-40,
.body_container[data-agent=mo] #page_body_editor-wrapper .text-60,
.body_container[data-agent=mo] #page_body_editor-wrapper .text-72 {
  font-size: 38px !important;
}

.agent-mobile #page_body_editor-wrapper .blank_block.big_blank,
.body_container[data-agent=mo] #page_body_editor-wrapper .blank_block.big_blank {
  height: 50px;
}

.agent-mobile #page_body_editor-wrapper .blank_block.normal_blank,
.body_container[data-agent=mo] #page_body_editor-wrapper .blank_block.normal_blank {
  height: 25px;
}

.agent-mobile #page_body_editor-wrapper .blank_block.small_blank,
.body_container[data-agent=mo] #page_body_editor-wrapper .blank_block.small_blank {
  height: 10px;
}

.agent-mobile #page_body_editor-wrapper .layout_bg_mo,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout_bg_mo {
  display: block;
}

.agent-mobile #page_body_editor-wrapper .layout_bg_pc,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout_bg_pc {
  display: none;
}

.agent-mobile #page_body_editor-wrapper .row,
.body_container[data-agent=mo] #page_body_editor-wrapper .row {
  flex-wrap: wrap;
}

.agent-mobile #page_body_editor-wrapper .row[data-animate="2"] .col,
.body_container[data-agent=mo] #page_body_editor-wrapper .row[data-animate="2"] .col {
  animation-name: fadeInRight;
}

.agent-mobile #page_body_editor-wrapper .layout_group[data-limit_width=true]>.layout_limit_wrapper,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout_group[data-limit_width=true]>.layout_limit_wrapper {
  box-sizing: border-box;
  max-width: none;
  padding: 0 20px;
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="50_50"] .col,
.agent-mobile #page_body_editor-wrapper .layout .row[data-col="70_30"] .col,
.agent-mobile #page_body_editor-wrapper .layout .row[data-col="30_70"] .col,
.agent-mobile #page_body_editor-wrapper .layout .row[data-col="25_50_25"] .col,
.agent-mobile #page_body_editor-wrapper .layout .row[data-col="33_33_33"] .col,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="50_50"] .col,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="70_30"] .col,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="30_70"] .col,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="25_50_25"] .col,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="33_33_33"] .col {
  flex: 0 0 100%;
  width: 100%;
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="50_50"] .col_space,
.agent-mobile #page_body_editor-wrapper .layout .row[data-col="70_30"] .col_space,
.agent-mobile #page_body_editor-wrapper .layout .row[data-col="30_70"] .col_space,
.agent-mobile #page_body_editor-wrapper .layout .row[data-col="25_50_25"] .col_space,
.agent-mobile #page_body_editor-wrapper .layout .row[data-col="33_33_33"] .col_space,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="50_50"] .col_space,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="70_30"] .col_space,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="30_70"] .col_space,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="25_50_25"] .col_space,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="33_33_33"] .col_space {
  overflow: hidden;
  max-height: 20px;
  margin-right: 100%;
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="50_50"] .col_space:after,
.agent-mobile #page_body_editor-wrapper .layout .row[data-col="70_30"] .col_space:after,
.agent-mobile #page_body_editor-wrapper .layout .row[data-col="30_70"] .col_space:after,
.agent-mobile #page_body_editor-wrapper .layout .row[data-col="25_50_25"] .col_space:after,
.agent-mobile #page_body_editor-wrapper .layout .row[data-col="33_33_33"] .col_space:after,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="50_50"] .col_space:after,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="70_30"] .col_space:after,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="30_70"] .col_space:after,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="25_50_25"] .col_space:after,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="33_33_33"] .col_space:after {
  display: block;
  padding-top: 100%;
  content: "";
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="50_25_25"] .col-50,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="50_25_25"] .col-50 {
  flex: 0 0 100%;
  width: 100%;
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="50_25_25"] .col-25,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="50_25_25"] .col-25 {
  flex: 1 0 auto;
  width: 34%;
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="50_25_25"] .col-25+.col_space,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="50_25_25"] .col-25+.col_space {
  max-width: 32%;
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="50_25_25"] .col:first-child+.col_space,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="50_25_25"] .col:first-child+.col_space {
  overflow: hidden;
  max-height: 20px;
  margin-right: 100%;
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="50_25_25"] .col:first-child+.col_space:after,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="50_25_25"] .col:first-child+.col_space:after {
  display: block;
  padding-top: 100%;
  content: "";
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="25_25_50"] .col-50,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="25_25_50"] .col-50 {
  flex: 0 0 100%;
  width: 100%;
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="25_25_50"] .col-25,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="25_25_50"] .col-25 {
  flex: 1 0 auto;
  width: 34%;
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="25_25_50"] .col-25+.col_space,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="25_25_50"] .col-25+.col_space {
  max-width: 32%;
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="25_25_50"] .col-25:nth-of-type(2n)+.col_space,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="25_25_50"] .col-25:nth-of-type(2n)+.col_space {
  overflow: hidden;
  max-height: 20px;
  margin-right: 100%;
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="25_25_50"] .col-25:nth-of-type(2n)+.col_space:after,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="25_25_50"] .col-25:nth-of-type(2n)+.col_space:after {
  display: block;
  padding-top: 100%;
  content: "";
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="25_25_25_25"] .col-25,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="25_25_25_25"] .col-25 {
  flex: 1 0 auto;
  width: 34%;
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="25_25_25_25"] .col-25+.col_space,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="25_25_25_25"] .col-25+.col_space {
  max-width: 32%;
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="25_25_25_25"] .col-25:nth-of-type(2n)+.col_space,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="25_25_25_25"] .col-25:nth-of-type(2n)+.col_space {
  overflow: hidden;
  max-height: 20px;
  margin-right: 100%;
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="25_25_25_25"] .col-25:nth-of-type(2n)+.col_space:after,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="25_25_25_25"] .col-25:nth-of-type(2n)+.col_space:after {
  display: block;
  padding-top: 100%;
  content: "";
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="20_20_20_20_20"] .col-20,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="20_20_20_20_20"] .col-20 {
  flex: 1 0 auto;
  width: 34%;
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="20_20_20_20_20"] .col-20+.col_space,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="20_20_20_20_20"] .col-20+.col_space {
  max-width: 32%;
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="20_20_20_20_20"] .col-20:nth-of-type(2n)+.col_space,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="20_20_20_20_20"] .col-20:nth-of-type(2n)+.col_space {
  overflow: hidden;
  max-height: 20px;
  margin-right: 100%;
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="20_20_20_20_20"] .col-20:nth-of-type(2n)+.col_space:after,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="20_20_20_20_20"] .col-20:nth-of-type(2n)+.col_space:after {
  display: block;
  padding-top: 100%;
  content: "";
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="20_20_20_20_20"] .col-20:nth-of-type(5n),
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="20_20_20_20_20"] .col-20:nth-of-type(5n) {
  flex: 0 0 100%;
  width: 100%;
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="20_20_20_20_20"] .col_space:last-child,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout .row[data-col="20_20_20_20_20"] .col_space:last-child {
  width: 100%;
  height: 0;
}

.agent-mobile #page_body_editor-wrapper .layout_slider[data-margin-size=small] .slick-list,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout_slider[data-margin-size=small] .slick-list {
  margin-right: -5px;
}

.agent-mobile #page_body_editor-wrapper .layout_slider[data-margin-size=small] .slick-slide,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout_slider[data-margin-size=small] .slick-slide {
  margin-right: 5px;
}

.agent-mobile #page_body_editor-wrapper .layout_slider[data-margin-size=middle] .slick-list,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout_slider[data-margin-size=middle] .slick-list {
  margin-right: -10px;
}

.agent-mobile #page_body_editor-wrapper .layout_slider[data-margin-size=middle] .slick-slide,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout_slider[data-margin-size=middle] .slick-slide {
  margin-right: 10px;
}

.agent-mobile #page_body_editor-wrapper .layout_slider[data-margin-size=big] .slick-list,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout_slider[data-margin-size=big] .slick-list {
  margin-right: -15px;
}

.agent-mobile #page_body_editor-wrapper .layout_slider[data-margin-size=big] .slick-slide,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout_slider[data-margin-size=big] .slick-slide {
  margin-right: 15px;
}

.agent-mobile #page_body_editor-wrapper .layout_block,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout_block {
  width: 100%;
  min-height: 1px;
  transition: 0.36s ease;
}

.agent-mobile #page_body_editor-wrapper .layout_block[data-size=line],
.body_container[data-agent=mo] #page_body_editor-wrapper .layout_block[data-size=line] {
  height: 1px;
}

.agent-mobile #page_body_editor-wrapper .layout_block[data-size=small],
.body_container[data-agent=mo] #page_body_editor-wrapper .layout_block[data-size=small] {
  height: 10px;
}

.agent-mobile #page_body_editor-wrapper .layout_block[data-size=medium],
.body_container[data-agent=mo] #page_body_editor-wrapper .layout_block[data-size=medium] {
  height: 15px;
}

.agent-mobile #page_body_editor-wrapper .layout_block[data-size=big],
.body_container[data-agent=mo] #page_body_editor-wrapper .layout_block[data-size=big] {
  height: 20px;
}

.agent-mobile #page_body_editor-wrapper .layout_group .slick-prev,
.agent-mobile #page_body_editor-wrapper .layout_group .slick-next,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout_group .slick-prev,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout_group .slick-next {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.agent-mobile #page_body_editor-wrapper .layout_group .slick-dots,
.body_container[data-agent=mo] #page_body_editor-wrapper .layout_group .slick-dots {
  bottom: -30px;
}

#page_body_preview .layout_group {
  overflow: hidden;
}

#page_body_editor-wrapper .layout_group .text-26 {
  line-height: 36px;
}

#page_body_editor-wrapper .layout_group .text-30 {
  line-height: 40px;
}

#page_body_editor-wrapper .layout_group .text-36 {
  line-height: 48px;
}

#page_body_editor-wrapper .layout_group .text-40 {
  line-height: 50px;
}

#page_body_editor-wrapper .layout_group .text-60 {
  line-height: 70px;
}

#page_body_editor-wrapper .layout_group .text-72 {
  line-height: 80px;
}

#page_body_editor-wrapper .layout_group .text-94 {
  line-height: 108px;
}

#page_body_editor-wrapper .layout_group .text-128 {
  line-height: 138px;
}

.agent-mobile #page_body_editor-wrapper .text-30 {
  font-size: 28px !important;
  line-height: 32px;
}

.agent-mobile #page_body_editor-wrapper .text-36 {
  font-size: 30px !important;
  line-height: 36px;
}

.agent-mobile #page_body_editor-wrapper .text-40 {
  font-size: 34px !important;
  line-height: 40px;
}

.agent-mobile #page_body_editor-wrapper .text-60 {
  font-size: 40px !important;
  line-height: 46px;
}

.agent-mobile #page_body_editor-wrapper .text-72 {
  font-size: 46px !important;
  line-height: 52px;
}

.agent-mobile #page_body_editor-wrapper .text-94 {
  font-size: 52px !important;
  line-height: 60px;
}

.agent-mobile #page_body_editor-wrapper .text-128 {
  font-size: 60px !important;
  line-height: 66px;
}

#page_body_editor-wrapper .ck_share .ck-media__wrapper {
  overflow: hidden;
  margin: 0;
}

#page_body_editor-wrapper .ck_share.ck_share_pos_left {
  display: flex;
  justify-content: flex-start;
}

#page_body_editor-wrapper .ck_share.ck_share_pos_right {
  display: flex;
  justify-content: flex-end;
}

#page_body_editor-wrapper .ck_share.ck_share_pos_center {
  display: flex;
  justify-content: center;
}

#page_body_editor-wrapper .ck_share .ck-share-container {
  margin-right: -8px;
  margin-bottom: -8px;
}

#page_body_editor-wrapper .ck_share .ck-share-item {
  display: inline-block;
  overflow: hidden;
  width: 50px;
  margin-right: 8px;
  margin-bottom: 8px;
  text-align: center;
  vertical-align: top;
  white-space: nowrap;
  text-decoration: none;
  text-overflow: ellipsis;
  background: transparent;
}

#page_body_editor-wrapper .ck_share .ck-share-item .ifont {
  font-size: 23px;
  line-height: 38px;
  display: block;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  transition: 0.36s ease;
  color: #9e9e9e;
  border: 1px solid rgba(150, 150, 150, 0);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}

#page_body_editor-wrapper .ck_share .ck-editor-name {
  font-size: 12px;
  line-height: 26px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #999;
}

#page_body_editor-wrapper .ck_share_style_one.ck_share_theme_white .ck-share-item .ifont {
  color: #fff;
  background: rgba(105, 105, 105, 0.77);
}

#page_body_editor-wrapper .ck_share_style_one.ck_share_theme_white .ck-share-item:hover .ifont {
  background: rgba(150, 150, 150, 0.77);
}

#page_body_editor-wrapper .ck_share_style_one.ck_share_theme_black .ck-share-item .ifont {
  color: #fff;
  background: rgba(105, 105, 105, 0.3);
}

#page_body_editor-wrapper .ck_share_style_one.ck_share_theme_black .ck-share-item:hover .ifont {
  background: rgba(105, 105, 105, 0.77);
}

#page_body_editor-wrapper .ck_share_style_two.ck_share_theme_white .ck-share-item .ifont {
  width: 30px;
  height: 30px;
  line-height: 28px;
  color: #dcdcdc;
}

#page_body_editor-wrapper .ck_share_style_two.ck_share_theme_white .ck-share-item:hover .ifont {
  color: #fff;
  background: transparent;
}

#page_body_editor-wrapper .ck_share_style_two.ck_share_theme_black .ck-share-item .ifont {
  width: 30px;
  height: 30px;
  color: #999;
}

#page_body_editor-wrapper .ck_share_style_two.ck_share_theme_black .ck-share-item:hover .ifont {
  color: #666;
  background: transparent;
}

#page_body_editor-wrapper .ck_share_style_three.ck_share_theme_white .ck-share-item .ifont {
  color: #dcdcdc;
  border-color: rgba(170, 170, 170, 0.3);
}

#page_body_editor-wrapper .ck_share_style_three.ck_share_theme_white .ck-share-item:hover .ifont {
  color: #fff;
  border-color: rgba(170, 170, 170, 0.8);
}

#page_body_editor-wrapper .ck_share_style_three.ck_share_theme_black .ck-share-item .ifont {
  color: #999;
  border-color: rgba(170, 170, 170, 0.3);
}

#page_body_editor-wrapper .ck_share_style_three.ck_share_theme_black .ck-share-item:hover .ifont {
  color: #666;
  border-color: rgba(170, 170, 170, 0.8);
}

#page_body_editor-wrapper .ck_share_style_four.ck_share_theme_white .ck-share-item .ifont {
  color: #fff;
  border-radius: 0;
  background-color: rgba(170, 170, 170, 0.3);
}

#page_body_editor-wrapper .ck_share_style_four.ck_share_theme_white .ck-share-item:hover .ifont {
  color: #fff;
  background-color: rgba(170, 170, 170, 0.8);
}

#page_body_editor-wrapper .ck_share_style_four.ck_share_theme_black .ck-share-item .ifont {
  color: #fff;
  border-radius: 0;
  background-color: rgba(170, 170, 170, 0.3);
}

#page_body_editor-wrapper .ck_share_style_four.ck_share_theme_black .ck-share-item:hover .ifont {
  color: #fff;
  background-color: rgba(170, 170, 170, 0.8);
}

.new_img_preview_dom {
  line-height: 100vh;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.8);
  align-items: center;
  justify-content: center;
}

.new_img_preview_dom>img {
  max-width: 96vw;
  max-height: 96vh;
  vertical-align: middle;
}

#page_body_editor-wrapper .plyr--full-ui input[type=range] {
  display: block;
  width: 100%;
  height: 19px;
  margin: 0;
  padding: 0;
  transition: box-shadow 0.3s ease;
  color: #fff;
  border: 0;
  border-radius: 26px;
  background: 0 0;
  -webkit-appearance: none;
}

#page_body_editor-wrapper .plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  height: 3px;
  -webkit-user-select: none;
  user-select: none;
  transition: box-shadow 0.3s ease;
  border: 0;
  border-radius: 2.5px;
  background: 0 0;
  background-image: linear-gradient(to right, currentColor var(--value, 0), transparent var(--value, 0));
}

#page_body_editor-wrapper .plyr--full-ui input[type=range]::-webkit-slider-thumb {
  position: relative;
  width: 13px;
  height: 13px;
  margin-top: -5px;
  transition: all 0.2s ease;
  border: 0;
  border-radius: 100%;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
  -webkit-appearance: none;
}

#page_body_editor-wrapper .plyr--full-ui input[type=range]::-moz-range-track {
  height: 3px;
  -moz-user-select: none;
  user-select: none;
  transition: box-shadow 0.3s ease;
  border: 0;
  border-radius: 2.5px;
  background: 0 0;
}

#page_body_editor-wrapper .plyr--full-ui input[type=range]::-moz-range-thumb {
  position: relative;
  width: 13px;
  height: 13px;
  transition: all 0.2s ease;
  border: 0;
  border-radius: 100%;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
}

#page_body_editor-wrapper .plyr--full-ui input[type=range]::-moz-range-progress {
  height: 3px;
  border-radius: 2.5px;
  background: currentColor;
}

#page_body_editor-wrapper .plyr--full-ui input[type=range]::-ms-track {
  height: 3px;
  -ms-user-select: none;
  user-select: none;
  transition: box-shadow 0.3s ease;
  color: transparent;
  border: 0;
  border-radius: 2.5px;
  background: 0 0;
}

#page_body_editor-wrapper .plyr--full-ui input[type=range]::-ms-fill-upper {
  height: 3px;
  -ms-user-select: none;
  user-select: none;
  transition: box-shadow 0.3s ease;
  border: 0;
  border-radius: 2.5px;
  background: 0 0;
}

#page_body_editor-wrapper .plyr--full-ui input[type=range]::-ms-fill-lower {
  height: 3px;
  -ms-user-select: none;
  user-select: none;
  transition: box-shadow 0.3s ease;
  border: 0;
  border-radius: 2.5px;
  background: 0 0;
  background: currentColor;
}

#page_body_editor-wrapper .plyr--full-ui input[type=range]::-ms-thumb {
  position: relative;
  width: 13px;
  height: 13px;
  margin-top: 0;
  transition: all 0.2s ease;
  border: 0;
  border-radius: 100%;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
}

#page_body_editor-wrapper .plyr--full-ui input[type=range]::-ms-tooltip {
  display: none;
}

#page_body_editor-wrapper .plyr--full-ui input[type=range]:focus {
  outline: 0;
}

#page_body_editor-wrapper .plyr--full-ui input[type=range]::-moz-focus-outer {
  border: 0;
}

#page_body_editor-wrapper .plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track {
  outline: 0;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5);
}

#page_body_editor-wrapper .plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track {
  outline: 0;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5);
}

#page_body_editor-wrapper .plyr--full-ui input[type=range].plyr__tab-focus::-ms-track {
  outline: 0;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5);
}

#page_body_editor-wrapper .plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(255, 255, 255, 0.25);
}

#page_body_editor-wrapper .plyr--full-ui.plyr--video input[type=range]::-moz-range-track {
  background-color: rgba(255, 255, 255, 0.25);
}

#page_body_editor-wrapper .plyr--full-ui.plyr--video input[type=range]::-ms-track {
  background-color: rgba(255, 255, 255, 0.25);
}

#page_body_editor-wrapper .plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

#page_body_editor-wrapper .plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

#page_body_editor-wrapper .plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

#page_body_editor-wrapper .plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(193, 201, 209, 0.66);
}

#page_body_editor-wrapper .plyr--full-ui.plyr--audio input[type=range]::-moz-range-track {
  background-color: rgba(193, 201, 209, 0.66);
}

#page_body_editor-wrapper .plyr--full-ui.plyr--audio input[type=range]::-ms-track {
  background-color: rgba(193, 201, 209, 0.66);
}

#page_body_editor-wrapper .plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

#page_body_editor-wrapper .plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

#page_body_editor-wrapper .plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

#page_body_editor-wrapper .plyr__progress input[type=range],
#page_body_editor-wrapper .plyr__progress__buffer {
  width: calc(100% + 13px);
  margin-right: -6.5px;
  margin-left: -6.5px;
}

#page_body_editor-wrapper .plyr__progress input[type=range] {
  position: relative;
  z-index: 2;
}

#page_body_editor-wrapper .plyr__volume input[type=range] {
  position: relative;
  z-index: 2;
  margin-left: 5px;
}

#page_body_editor-wrapper .plyr--video {
  background: transparent;
}

#page_body_editor-wrapper .plyr__video-wrapper {
  background: rgba(95, 95, 95, 0.1);
}

#page_body_editor-wrapper .plyr__poster {
  background-color: transparent;
}

#page_body_editor-wrapper .plyr--full-ui input[type=range] {
  color: #fff;
}

#page_body_editor-wrapper .plyr--video .plyr__control.plyr__tab-focus,
#page_body_editor-wrapper .plyr--video .plyr__control:hover,
#page_body_editor-wrapper .plyr--video .plyr__control[aria-expanded=true] {
  background: transparent;
}

#page_body_editor-wrapper .plyr__control.plyr__tab-focus {
  box-shadow: none;
}

#page_body_editor-wrapper .plyr__control--overlaid {
  background: transparent;
}

#page_body_editor-wrapper .plyr--stopped.plyr__poster-enabled .plyr__poster {
  background-size: cover;
}

#page_body_editor-wrapper .plyr__progress__buffer {
  height: 3px;
}

#page_body_editor-wrapper .plyr__control {
  padding: 7px 4px;
}

#page_body_editor-wrapper .plyr__control svg {
  transform: scale(0.85);
}

#page_body_editor-wrapper .plyr--full-ui.plyr--video .plyr__control--overlaid {
  transform: scale(4);
  margin-left: -23px;
}

#page_body_editor-wrapper .plyr--video.plyr--paused .plyr__video-wrapper:after,
#page_body_editor-wrapper .plyr--video:hover .plyr__video-wrapper:after {
  opacity: 1;
}

#page_body_editor-wrapper .plyr__video-wrapper:after {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: 0.86s ease;
  opacity: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.55));
}

#page_body_editor-wrapper .plyr--video .plyr__controls {
  background: none;
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="1--6_5--6"] .col,
.agent-mobile #page_body_editor-wrapper .layout .row[data-col="2--6_4--6"] .col,
.agent-mobile #page_body_editor-wrapper .layout .row[data-col="3--6_3--6"] .col,
.agent-mobile #page_body_editor-wrapper .layout .row[data-col="4--6_2--6"] .col,
.agent-mobile #page_body_editor-wrapper .layout .row[data-col="5--6_1--6"] .col {
  flex: 0 0 100%;
  width: 100%;
}

.agent-mobile #page_body_editor-wrapper .layout .row[data-col="1--6_5--6"] .col_space,
.agent-mobile #page_body_editor-wrapper .layout .row[data-col="2--6_4--6"] .col_space,
.agent-mobile #page_body_editor-wrapper .layout .row[data-col="3--6_3--6"] .col_space,
.agent-mobile #page_body_editor-wrapper .layout .row[data-col="4--6_2--6"] .col_space,
.agent-mobile #page_body_editor-wrapper .layout .row[data-col="5--6_1--6"] .col_space {
  overflow: hidden;
  max-height: 20px;
  margin-right: 100%;
}

.iframe_map {
  display: flex;
}

.iframe_map.pos-left {
  justify-content: flex-start;
}

.iframe_map.pos-right {
  justify-content: flex-end;
}

.iframe_map.pos-center {
  justify-content: center;
}

.iframe_map .iframe_wrapper-map {
  position: relative;
}

.iframe_map .iframe_wrapper-map iframe {
  position: absolute;
  top: 0;
  left: 0;
}

.iframe_map .iframe_wrapper-map.can_drag-off:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.iframe_map .iframe_wrapper-map.ratio-16-9:after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}

.iframe_map .iframe_wrapper-map.ratio-9-16:after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 177.7777777778%;
}

.iframe_map .iframe_wrapper-map.ratio-4-3:after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 75%;
}

.iframe_map .iframe_wrapper-map.ratio-3-4:after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 133.3333333333%;
}

.iframe_map .iframe_wrapper-map.ratio-1-1:after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}

/* 补充 */

#page_body_preview .layout_group {
  overflow: hidden;
}

#page_body_editor-wrapper .editor.ck-content {
  position: relative;
  width: 100%;
}



#page_body_editor-wrapper .layout_group .layout_bg {
  overflow: hidden;
}

#page_body_editor-wrapper .layout,
#page_body_editor-wrapper .layout_group {
  overflow: hidden
}

#page_body_editor-wrapper p {

  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-size: 14px;
  line-height: 24px;

}



#page_body_editor-wrapper {
  color: #666
}

#page_body_editor-wrapper .row {
  max-width: 100%;

}

#page_body_editor-wrapper {
  color: #777;
}

@font-face {
  font-family: "ifont";

  src: url('data:application/x-font-woff2;charset=utf-8;base64,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') format('woff2')
    /* iOS 4.1- */
}

.ifont {
  font-family: "ifont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ifont-185037browserstreamlinewindow:before {
  content: "\e608";
}

.ifont-icpreview:before {
  content: "\e644";
}

.ifont-weixin:before {
  content: "\e65d";
}

.ifont-iphone:before {
  content: "\e620";
}

.ifont-facebook:before {
  content: "\e621";
}

.ifont-close:before {
  content: "\e60e";
}

.ifont-weibo:before {
  content: "\e699";
}

.ifont-MacBookPro:before {
  content: "\e739";
}

.ifont-iPhoneX:before {
  content: "\e604";
}

.ifont-behance:before {
  content: "\e725";
}

.ifont-qq:before {
  content: "\e605";
}

.ifont-call:before {
  content: "\e6de";
}

.ifont-zcool-fill:before {
  content: "\e6cf";
}

.ifont-instagram:before {
  content: "\e815";
}

.ifont-twitter_icon2:before {
  content: "\e83f";
}

.ifont-full-screen:before {
  content: "\e83a";
}

.ifont-twitter_icon:before {
  content: "\e6b7";
}

.ifont-download:before {
  content: "\e6b2";
}

.ifont-right:before {
  content: "\e68b";
}


#page_body_editor-wrapper .fa {
  line-height: inherit;
}

#page_body_editor-wrapper .layout_group .layout_bg[data-effect="normal"] {
  height: 100%;
}

#page_body_editor-wrapper .layout-margin_placeholder_bottom,
#page_body_editor-wrapper .layout-margin_placeholder_top {
  clear: both;
}

#page_body_editor-wrapper .layout:after,
#page_body_editor-wrapper .row:after {
  content: "";
  clear: both;
  display: block;

}



/* 补充 */

body #page_body_editor-wrapper .layout_group a {
    color: inherit;
}
#page_body_editor-wrapper img {
  width: auto;
}

.page_body_editor-imgGallery img {
  width: auto;
}

body {


  min-width: auto;
}

#page_body_editor-wrapper a {

  text-decoration: none;
}

#page_body_editor-wrapper .layout_group .layout_bg[data-size=cover] {
  background-size: cover;
}




/* .imgGallery.center */
.layout_group[data-img_gallery] img {
  cursor: zoom-in;
}

.agent_pc .page_body_editor-imgGallery:hover .page_body_editor-imgGallery_next,
.agent_pc .page_body_editor-imgGallery:hover .page_body_editor-imgGallery_prev {
  opacity: 1;
  visibility: visible;

}

.agent-mobile .page_body_editor-imgGallery.center .page_body_editor-imgGallery_next,
.agent-mobile .page_body_editor-imgGallery.center .page_body_editor-imgGallery_prev {
  opacity: 1;
  visibility: visible;
}

.page_body_editor-imgGallery {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%
}

.page_body_editor-imgGallery.open {
  visibility: visible;
  transition: 1s ease
}

.page_body_editor-imgGallery.open img {
  transition: .5s ease, width 1s ease, height 1s ease
}

.agent-mobile .page_body_editor-imgGallery_wrapper {
  font-size: 30px;
}

.agent-mobile .page_body_editor-imgGallery_next,
.agent-mobile .page_body_editor-imgGallery_prev {
  color: #666 !important;
}

.page_body_editor-imgGallery_wrapper {
  font-size: 50px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  box-sizing: border-box;
  height: 100%;
  padding: 0 60px;
  cursor: pointer;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.page_body_editor-imgGallery_next,
.page_body_editor-imgGallery_prev {
  visibility: hidden;
  transition: .36s ease;
  opacity: 0;
  color: #666;
  position: relative;
  z-index: 10;
}

.page_body_editor-imgGallery_next:hover,
.page_body_editor-imgGallery_prev:hover {
  color: #fff
}

.page_body_editor-imgGallery img {
  position: absolute
}

.page_body_editor-imgGallery.center {
  background: rgba(24, 24, 24, .9)
}

.page_body_editor-imgGallery.center img {
  top: 50% !important;
  left: 50% !important;
  max-width: 80%;
  max-height: 80%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  box-shadow: 0 0 30px rgba(0, 0, 0, .52)
}

.page_body_editor-imgGallery.center img.w {
  width: 80% !important;
  height: auto !important
}

.page_body_editor-imgGallery.center img.h {
  width: auto !important;
  height: 80% !important
}

.page_body_editor-imgGallery.center .page_body_editor-imgGallery_wrapper ._next,
.page_body_editor-imgGallery.center .page_body_editor-imgGallery_wrapper ._prev {
  visibility: visible;
  opacity: 1;
  padding: 0 20px
}



.layout_body [data-key="price"] tr:nth-child(2n){background:rgb(248, 248, 248)}