@charset "UTF-8";
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

.btn {
  position: relative;
  cursor: pointer;
  box-shadow: 0;
  border-radius: 0;
  padding: 0;
  border: 0;
  text-align: center;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
.btn.disabled {
  color: #565570;
  background: #353451;
  pointer-events: none;
}

.btn-primary {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  padding: 0;
  width: 100%;
  border-radius: 10px;
  color: #fff;
  background-color: #05A1AE;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.btn-primary:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .btn-primary:hover {
    filter: brightness(1.1);
  }
}

.btn-secondary {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  padding: 0;
  width: 100%;
  border-radius: 10px;
  color: #fff;
  background-color: #C4C4C4;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.btn-secondary:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .btn-secondary:hover {
    filter: brightness(1.1);
  }
}

.icon {
  width: 24px;
  height: 24px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

html {
  min-width: 100%;
}

body {
  font: 1em/1.6 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  min-width: 320px;
  overflow-x: hidden;
  color: #333;
  -webkit-text-size-adjust: 100%;
  image-rendering: -webkit-optimize-contrast;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  outline: none;
  behavior: expression(this.onFocus=this.blur());
  -moz-transition: color, opacity, background-color 0.5s ease;
  -o-transition: color, opacity, background-color 0.5s ease;
  -webkit-transition: color, opacity, background-color 0.5s ease;
  transition: color, opacity, background-color 0.5s ease;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

:focus {
  outline: none;
}

a:focus,
a:active,
a:hover {
  outline: 0;
  -moz-outline-style: none;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  -moz-user-select: none;
  -webkit-user-select: none;
}

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

p {
  margin: 0;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

textarea,
select,
input[type="text"],
input[type='number'],
input[type="button"],
input[type="search"],
input[type="submit"],
button,
input[type="radio"] {
  -webkit-appearance: none;
  border-radius: 0;
  font-size: 16px;
  font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
textarea:focus,
select:focus,
input[type="text"]:focus,
input[type='number']:focus,
input[type="button"]:focus,
input[type="search"]:focus,
input[type="submit"]:focus,
button:focus,
input[type="radio"]:focus {
  outline: 0;
}

.ui-datepicker select {
  -webkit-appearance: auto;
  border-radius: 0;
  border: 1px solid #c5c5c5;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield !important;
}

.container {
  margin: 0 auto;
  max-width: 1366px;
  padding: 0 20px;
  position: relative;
}

.lg-view {
  display: block;
}

.sm-view {
  display: none;
}

.in-view {
  opacity: 0;
}

.lazyload {
  opacity: 0;
}

.lazyloading {
  opacity: 1;
}

.site-content {
  position: relative;
}

.post-iframe {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.post-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px), only screen and (max-width: 767px) {
  .post-iframe {
    padding-top: 0;
  }
}
.form-control {
  padding: 8px 20px;
  font-size: 16px;
  line-height: 24px;
  color: #333;
  background-color: #EEF9F8;
  border: 0;
  border-radius: 10px !important;
  box-shadow: 0;
  overflow: hidden;
}
.form-control::placeholder {
  color: #333;
}
.form-control.is-invalid {
  box-shadow: 0 0 0 1px #ED1C24 inset;
  background: none;
}
.form-control:focus {
  color: #333;
  background-color: #fff;
  box-shadow: 0 0 0 1px #C4C4C4 inset;
}

.form-select {
  padding: 8px 20px;
  padding-right: 40px;
  font-size: 16px;
  line-height: 24px;
  color: #333;
  background-color: #EEF9F8;
  background-image: url(../images/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px auto;
  border: 0;
  border-radius: 10px !important;
  box-shadow: 0;
}

.form-switch {
  padding-left: 0;
  width: 42px;
  margin: 0 auto;
  min-height: 20px;
}
.form-switch .form-check-input {
  width: 42px;
  height: 20px;
  margin-left: 0;
  border-radius: 16px;
  background-color: #999;
  margin: 0 auto;
  border: 0;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-color: #44BAB1;
}

.form-check-input {
  width: 25px;
  height: 25px;
  margin-right: 12px;
}
.form-check-input:checked[type="radio"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-3 -3 6 6'%3e%3ccircle r='2' fill='%2305A1AE'/%3e%3c/svg%3e");
  background-color: #fff;
  border-color: #C4C4C4;
}

.site-breadcrumb {
  padding: 30px 0;
}

.breadcrumb {
  margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  background-image: url(../images/breadcrumb-arrow.svg);
  background-size: 10px 10px;
  background-position: center;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  padding: 0;
  margin-right: 4px;
  position: relative;
  top: 1px;
}

.pagination {
  padding: 0;
}
.pagination .icon {
  width: 24px;
  height: 24px;
  margin: 1px auto;
}
.pagination .icon-prev {
  background-image: url(../images/previous.svg);
}
.pagination .icon-next {
  background-image: url(../images/next.svg);
}
.pagination .page-item {
  margin: 0 6px;
}
.pagination .page-item.active .page-link {
  color: #fff;
  background-color: #05A1AE;
  border-radius: 50%;
}
.pagination .page-item.active .page-link:hover {
  color: #fff;
}
.pagination .page-link {
  min-width: 26px;
  height: 26px;
  font-size: 14px;
  line-height: 26px;
  border-radius: 50%;
  color: #999;
  border: 0;
  padding: 0;
  text-align: center;
}
.pagination .page-link:hover {
  color: #05A1AE;
  background-color: transparent;
}

.datepicker table tr td,
.datepicker table tr th {
  vertical-align: top;
  display: inline-block;
}
.datepicker .icon-prev,
.datepicker .icon-next {
  background-size: 12px auto;
  width: 24px;
  height: 24px;
  margin: 3px;
}
.datepicker .icon-prev {
  background-image: url(../images/datepicker-prev.svg);
}
.datepicker .icon-next {
  background-image: url(../images/datepicker-next.svg);
}

.input-calendar {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.input-calendar .form-control {
  border-radius: 10px !important;
  z-index: 0 !important;
}
.input-calendar .input-group-text {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  border: 0;
  background: transparent;
  padding: 8px;
  height: 100%;
  z-index: 3;
  width: 40px;
}

.l-table {
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
}
.l-table th, .l-table td {
  vertical-align: middle;
}
.l-table__header {
  background-color: #05A1AE;
  color: #fff;
  padding: 8px;
  line-height: 24px;
}
.l-table__header:first-child {
  border-radius: 10px 0 0 10px;
}
.l-table__header:last-child {
  border-radius: 0 10px 10px 0;
}
.l-table td {
  padding: 8px 0;
  border-bottom: 1px solid #C4C4C4;
  vertical-align: middle;
}
.l-table .btn-delete {
  width: 24px;
  height: 24px;
  margin: 0 auto;
  display: block;
}
.l-table .btn-delete .icon-delete {
  width: 24px;
  height: 24px;
  background-image: url(../images/icon-delete.svg);
  background-size: 24px auto;
  background-position: center center;
}

@media (max-width: 767px) {
  .lg-view {
    display: none;
  }

  .sm-view {
    display: block;
  }
}
.plus-header {
  padding-top: 55px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 55px;
  background-color: #05A1AE;
}
.site-header .container {
  max-width: 100%;
}

.menu-toggle {
  display: block;
  position: fixed;
  top: 0;
  left: 4px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 45px;
  height: 45px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 5;
  background-size: 24px auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/icon-menu.svg);
}

.menu-close {
  display: block;
  position: absolute;
  top: 0;
  right: 8px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 45px;
  height: 45px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 12;
  background-size: 24px auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/menu-close.svg);
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.menu-panel {
  position: fixed;
  top: 0;
  left: -320px;
  width: 287px;
  height: calc(100svh - 46px);
  background-color: #fff;
  z-index: 10;
  padding-top: 45px;
  padding-bottom: 45px;
  overflow: auto;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.menu-panel.is-view {
  left: 0;
}

.site-footer {
  position: relative;
  background-color: #05A1AE;
  color: #fff;
  text-align: center;
  z-index: 11;
}

.side-sticky {
  position: fixed;
  bottom: 80px;
  right: 20px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 3;
  display: none;
}
.side-sticky.is-view {
  display: block;
}
.side-sticky.change-bottom {
  position: absolute;
}
.side-sticky a {
  cursor: pointer;
  display: block;
}
.side-sticky a:hover, .side-sticky a:active {
  filter: brightness(1.08);
}
.side-sticky .totop {
  width: 55px;
  height: 55px;
  background-color: #05A1AE;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 15px;
  line-height: 24px;
  padding: 4px 0;
}
.side-sticky .icon-top {
  width: 24px;
  height: 24px;
  background-image: url(../images/icon-top.svg);
  display: block;
  margin: 0 auto;
}

.section-content .add .btn-primary {
    border: 3px dotted #44BAB1;
    height: 53px;
    font-size: 16px;
    line-height: 53px;
    margin-bottom:30px;
    background-color: #EEF9F8;
    color: #05A1AE;
}
.section-content .btn-primary .icon-add {
    background-image: url(../images/icon-plus_circle.svg);
    background-size: 20px auto;
    width: 20px;
    height: 20px;
    margin-right: 8px;
}
.section .album-b .item .content {
    padding-left: 12px;
    width: calc(100% - 100px);
}
.section .album-b .item .date {
    font-size: 15px;
    line-height: 24px;
    color: #C4C4C4;
    margin-bottom: 10px;
}
.section .album-b .item .sub-text {
    font-size: 15px;
    line-height: 24px;
    color: #C4C4C4;
}
.section .album-b .pagination {
    margin-top: 40px;
}
@media (max-width: 750px) {
  .side-sticky {
    bottom: 55px;
    right: 10px;
  }
}
.modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 335px;
  margin: 0 auto;
}
.modal-content {
  position: relative;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.modal .btn-close {
  width: 20px;
  height: 20px;
  padding: 0;
  background: url(../images/icon-close.svg);
  border: 0;
  border-radius: 0;
  opacity: 1;
  position: absolute;
  top: 10px;
  right: 10px;
}

.hosting-center .site-header .logo {
  position: absolute;
  top: 12px;
  left: 24px;
  font-size: 20px;
  line-height: 29px;
  font-weight: 500;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.hosting-center .site-header .logo img {
  height: 24px;
  margin-right: 14px;
}
.hosting-center .site-header__right {
  position: absolute;
  top: 0;
  right: 68px;
}
.hosting-center .site-header__right a {
  display: block;
}
.hosting-center .site-header__right .collapse-toggle {
  position: relative;
  color: #fff;
  padding: 8px 16px;
  padding-right: 32px;
  width: 100%;
  height: 55px;
  display: block;
}
.hosting-center .site-header__right .collapse-toggle .icon-arrow_down {
  position: absolute;
  top: 16px;
  right: 0;
  width: 24px;
  height: 24px;
  background-image: url(../images/icon-arrow_down-white.svg);
  background-repeat: no-repeat;
  background-size: 24px auto;
  background-position: center center;
}
.hosting-center .site-header__right .collapse-toggle .item .main-text {
  color: #fff;
}
.hosting-center .site-header__right .header-collapse {
  margin-top: 9px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
.hosting-center .site-header__right .header-collapse li + li {
  border-top: 1px solid #EFEFEF;
}
.hosting-center .site-header__right .header-collapse .item {
  padding: 8px 16px;
}
.hosting-center .site-header__right .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.hosting-center .site-header__right .item:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .hosting-center .site-header__right .item:hover {
    filter: brightness(1.1);
  }
}
.hosting-center .site-header__right .item + .item {
  margin-top: 20px;
}
.hosting-center .site-header__right .item .image {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #C4C4C4;
  overflow: hidden;
}
.hosting-center .site-header__right .item .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.hosting-center .site-header__right .item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hosting-center .site-header__right .item .main-text {
  padding-left: 14px;
  width: calc(100% - 40px);
  font-size: 16px;
  line-height: 24px;
  color: #666;
}
.hosting-center .site-footer {
  font-size: 14px;
  line-height: 22px;
  padding: 20px 0;
}
.hosting-center .site-content {
  min-height: calc(100svh - 46px);
}
.hosting-center .modal-content {
  border-radius: 0;
  padding: 0;
  background-color: #fff;
}
.hosting-center .modal .btn-close {
  top: 0;
  right: 0;
  width: 55px;
  height: 55px;
  background-color: #05A1AE;
  background-image: url(../images/modal-close.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 22px auto;
}
.hosting-center .modal .title {
  font-size: 20px;
  line-height: 55px;
  font-weight: 500;
  padding: 0 20px;
  border-bottom: 1px solid #666;
}
.hosting-center .choose-modal .modal-dialog {
  max-width: 436px;
}
.hosting-center .choose-modal .list {
  padding: 25px;
}
.hosting-center .choose-modal .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.hosting-center .choose-modal .item:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .hosting-center .choose-modal .item:hover {
    filter: brightness(1.1);
  }
}
.hosting-center .choose-modal .item + .item {
  margin-top: 20px;
}
.hosting-center .choose-modal .item .image {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid #C4C4C4;
  overflow: hidden;
}
.hosting-center .choose-modal .item .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.hosting-center .choose-modal .item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hosting-center .choose-modal .item .main-text {
  padding-left: 16px;
  width: calc(100% - 84px);
  font-size: 18px;
  line-height: 30px;
  color: #666;
}
.hosting-center .page-choose {
  position: relative;
  width: 100vw;
  height: calc(100svh - 55px);
  overflow: hidden;
}
.hosting-center .page-choose img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hosting-center .has-side {
  position: relative;
  z-index: 0;
  padding-left: 210px;
}
.hosting-center .site-main {
  position: relative;
  min-height: calc(100svh - 62px - 55px);
  z-index: 0;
}
.hosting-center .site-side {
  width: 210px;
  min-height: 100svh;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  position: fixed;
  top: 55px;
  left: 0;
  z-index: 10;
}
.hosting-center .site-side .member-user {
  padding: 20px 24px;
}
.hosting-center .site-side .member-user .main-text {
  font-size: 16px;
  line-height: 24px;
  color: #333;
}
.hosting-center .site-side .member-user .action {
  margin-top: 18px;
}
.hosting-center .site-side .member-user .btn-primary {
  height: 40px;
  font-size: 16px;
  line-height: 40px;
}
.hosting-center .site-side .member-user .btn-primary .icon-paperPlane {
  background-image: url(../images/icon-paperPlane-outline.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.hosting-center .site-side .member-menu {
  border-top: 1px solid #C4C4C4;
}
.hosting-center .site-side .member-menu .item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding: 16px 52px;
  border-bottom: 1px solid #C4C4C4;
  font-size: 16px;
  line-height: 24px;
  color: #333;
}
.hosting-center .site-side .member-menu .item:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .hosting-center .site-side .member-menu .item:hover {
    filter: brightness(1.1);
  }
}
.hosting-center .site-side .member-menu .item.active:before {
  opacity: 1;
}
.hosting-center .site-side .member-menu .item:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 6px;
  height: calc(100% + 2px);
  background-color: #05A1AE;
  opacity: 0;
}
.hosting-center .site-side .member-menu .item .icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  background-size: 20px auto;
}
.hosting-center .site-side .member-menu .item .icon-info {
  background-image: url(../images/icon-info_circle.svg);
}
.hosting-center .site-side .member-menu .item .icon-picture {
  background-image: url(../images/icon-picture.svg);
}
.hosting-center .site-side .member-menu .item .icon-list {
  background-image: url(../images/icon-list.svg);
}
.hosting-center .site-side .member-menu .back {
  width: 110px;
  height: 35px;
  color: #999;
  padding: 8px;
  display: block;
  font-size: 14px;
  line-height: 16px;
  border-radius: 19px;
  border: 1px solid #C4C4C4;
  margin: 15px auto;
  text-align: center;
}
.hosting-center .site-side .member-menu .back:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .hosting-center .site-side .member-menu .back:hover {
    filter: brightness(1.1);
  }
}
.hosting-center .page {
  width: calc(100% - 20px * 2);
  max-width: 95%;
  margin: 0 auto;
  padding: 32px 0;
  min-width: 840px;
}
.hosting-center .page .section {
  position: relative;
}
.hosting-center .page .section + .section {
  margin-top: 36px;
}
.hosting-center .page .section-header {
  margin-bottom: 24px;
}
.hosting-center .page .section .title {
  color: #05A1AE;
  font-size: 20px;
  line-height: 29px;
  font-weight: 500;
  position: relative;
  padding-left: 24px;
}
.hosting-center .page .section .title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 30px;
  border-radius: 50px;
  background-color: #05A1AE;
}

.page-index {
  max-width: 843px !important;
}
.page-index .index-a .banner {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.page-index .index-a .banner .action {
  position: absolute;
  bottom: 16px;
  right: 24px;
}
.page-index .index-a .banner .btn-primary {
  width: 157px;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
}
.page-index .index-a .banner .btn-primary .icon-camera {
  background-image: url(../images/icon-camera_lg.svg);
  background-repeat: no-repeat;
  background-size: 32px auto;
  width: 32px;
  height: 32px;
  margin-right: 4px;
}
.page-index .index-a .avatar {
  position: absolute;
  bottom: 0;
  left: 30px;
  width: 100px;
  height: 100px;
}
.page-index .index-a .avatar .image {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.page-index .index-a .avatar .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.page-index .index-a .avatar .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-index .index-a .avatar .btn-camera {
  position: absolute;
  bottom: 0;
  right: -14px;
  width: 42px;
  height: 42px;
  background-color: #6CBCBF;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.page-index .index-a .avatar .btn-camera .icon-camera {
  background-image: url(../images/icon-camera_lg.svg);
  background-repeat: no-repeat;
  background-size: 32px auto;
  width: 32px;
  height: 32px;
}
.page-index .index-a .avatar .btn-camera:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .page-index .index-a .avatar .btn-camera:hover {
    filter: brightness(1.1);
  }
}
.page-index .index-a .text {
  text-align: right;
  margin-top: 24px;
  font-size: 14px;
  line-height: 20px;
  color: #333;
  padding-left: 160px;
}
.page-index .index-a .highlight {
  color: #05A1AE;
  font-weight: 500;
}
.page-index .index-b .section-header {
  margin-bottom: 40px;
}
.page-index .index-b .section-header .highlight {
  font-size: 14px;
  line-height: 19px;
  color: #05A1AE;
}
.page-index .index-b .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  line-height: 24px;
}
.page-index .index-b .info + .info {
  margin-top: 30px;
}
.page-index .index-b .info-header {
  width: 106px;
  font-weight: 500;
}
.page-index .index-b .info-content {
  width: calc(100% - 106px);
}
.page-index .index-b textarea.form-control {
  background-color: #EEF9F8;
  border-radius: 10px;
  padding: 16px 24px;
  min-height: 87px;
}

.page-index .index-b textarea.form-control:focus{
	background-color: #FFF;
}
.page-index .index-c .l-table {
  margin-bottom: 20px;
}
.page-index .index-c .action {
  margin-bottom: 25px;
}
.page-index .index-c .btn-primary {
  width: 121px;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
}
.page-index .index-c .btn-primary .icon-plus_circle {
  background-image: url(../images/icon-plus_circle-white.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.page-index .index-c .note {
  color: #666;
  font-size: 14px;
  line-height: 28px;
}
.page-index .index-c .form-select {
  max-width: 194px;
}
.page-index .index-d .top-block {
  margin-bottom: 15px;
}
.page-index .index-d .form-group {
  position: relative;
  max-width: 250px;
  margin-right: 10px;
}
.page-index .index-d .form-group .form-control {
  padding-right: 40px;
}
.page-index .index-d .form-group .btn-add {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
}
.page-index .index-d .form-group .btn-add .icon-add {
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-plus_circle.svg);
  background-position: center center;
  background-size: 20px auto;
}
.page-index .index-d .btn-primary {
  width: 117px;
  height: 37px;
  font-size: 16px;
  line-height: 37px;
}
.page-index .index-d .btn-primary .icon-upload {
  background-image: url(../images/icon-upload.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.page-index .index-d .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  margin: -6px;
}
.page-index .index-d .list .item {
  position: relative;
  margin: 6px;
  width: calc(100% / 5 - 6px * 2);
}
.page-index .index-d .list .item .form-control {
  padding-right: 40px;
}
.page-index .index-d .list .item .btn-remove {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
}
.page-index .index-d .list .item .btn-remove .icon-remove {
  background-image: url(../images/icon-remove.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  width: 20px;
  height: 20px;
}
.page-index .index-e .form-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 16px;
  line-height: 40px;
  padding: 8px 0;
  border-bottom: 1px solid #C4C4C4;
}
.page-index .index-e .form-label {
  width: 157px;
  font-weight: 500;
  padding: 0 0 0 27px;
  margin: 0;
}
.page-index .index-e .form-content {
  width: calc(100% - 157px);
  min-height: 40px;
}
.page-index .index-e .form-control,
.page-index .index-e .form-select {
  max-width: 300px;
}
.page-index .index-e .highlight {
  font-size: 14px;
  line-height: 19px;
  color: #05A1AE;
}
.page-index .index-e .action {
  padding-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.page-index .index-e .action .btn {
  width: 179px;
  height: 42px;
  font-size: 18px;
  line-height: 42px;
  height: 42px;
  margin: 0 10px;
}

.page-album .album-a .btn-primary {
  border: 3px dotted #44BAB1;
  height: 53px;
  font-size: 16px;
  line-height: 53px;
  margin: 0;
  background-color: #EEF9F8;
  color: #05A1AE;
}
.page-album .album-a .btn-primary .icon-add {
  background-image: url(../images/icon-plus_circle.svg);
  background-size: 20px auto;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.page-album .album-b {
  margin-top: 15px !important;
}
.page-album .album-b .filter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.page-album .album-b .filter-header {
  min-width: 55px;
  line-height: 30px;
}
.page-album .album-b .filter-content {
  max-width: 200px;
}
.page-album .album-b .filter .form-select {
  padding: 0;
  width: 200px;
  height: 35px;
  padding-right: 40px;
  font-size: 16px;
  line-height: 24px;
  color: #666;
  background-color: transparent;
  background-image: url(../images/icon-arrow_down-gray.svg);
  background-position: right 0 center;
  background-size: 16px auto;
  border-bottom: 5px solid #C4C4C4;
  border-radius: 0 !important;
}
.page-album .album-b .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  margin: -10px -15px;
}
.page-album .album-b .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 15px;
  width: calc(50% - 15px * 2);
}
.page-album .album-b .item a {
  display: block;
}
.page-album .album-b .item .image {
  position: relative;
  width: 166px;
  height: 166px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.page-album .album-b .item .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.page-album .album-b .item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-album .album-b .item .content {
  padding-left: 18px;
  width: calc(100% - 166px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.page-album .album-b .item .date {
  font-size: 15px;
  line-height: 24px;
  color: #C4C4C4;
  margin-bottom: 10px;
}
.page-album .album-b .item .main-text {
  font-size: 16px;
  line-height: 24px;
  color: #666;
  margin-bottom: 10px;
}
.page-album .album-b .item .sub-text {
  font-size: 15px;
  line-height: 24px;
  color: #C4C4C4;
}
.page-album .album-b .item .action {
  margin-top: auto;
}
.page-album .album-b .item .btn-edit {
  height: 24px;
  font-size: 14px;
  line-height: 24px;
  color: #05A1AE;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.page-album .album-b .item .btn-edit .icon-edit {
  background-image: url(../images/icon-edit.svg);
  background-size: 24px auto;
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
.page-album .album-b .pagination {
  padding-top: 66px;
}

.album-modal .modal-dialog {
  max-width: 900px;
}
.album-modal .inner {
  padding: 20px 20px 35px;
}
.album-modal .form-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 18px;
}
.album-modal .form-label {
  width: 82px;
  font-weight: 500;
  margin: 0;
}
.album-modal .form-content {
  width: calc(100% - 82px);
}
.album-modal .album-tool {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  margin-bottom: 20px;
  margin-top: 20px;
}
.album-modal .album-tool .btn-secondary {
  width: 121px;
  height: 37px;
  font-size: 16px;
  line-height: 37px;
  background-color: #ED8989;
  margin-right: 14px;
}
.album-modal .album-tool .btn-secondary .icon-delete {
  background-image: url(../images/icon-delete-white.svg);
  background-repeat: no-repeat;
  background-size: 24px auto;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.album-modal .album-tool .btn-primary {
  width: auto;
  height: 37px;
  font-size: 16px;
  line-height: 37px;
  padding: 10px;
}
.album-modal .album-tool .btn-primary .icon-add {
  background-image: url(../images/icon-plus_circle-white.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.album-modal .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  margin: -7px;
}
.album-modal .item {
  width: calc(100% / 7 - 7px * 2);
  margin: 7px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.album-modal .item.active .content {
  display: block;
}
.album-modal .item .image {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.album-modal .item .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.album-modal .item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.album-modal .item .cover-photo {
  position: absolute;
  top: 4px;
  left: 4px;
}
.album-modal .item .cover-photo .icon-star {
  background-image: url(../images/icon-star.svg);
  background-size: 24px auto;
  width: 24px;
  height: 24px;
}
.album-modal .item .btn-tool {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
}
.album-modal .item .btn-tool .icon-tool {
  background-image: url(../images/btn-pic-cancle.svg);
  background-size: 24px auto;
  width: 24px;
  height: 24px;
}
.album-modal .item .btn-tool:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .album-modal .item .btn-tool:hover {
    filter: brightness(1.1);
  }
}
.album-modal .item .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background-color: rgba(51, 51, 51, 0.7);
  text-align: center;
  color: #fff;
  padding: 0 10px;
  padding-top: 24px;
  z-index: 2;
  font-size: 14px;
  display: none;
}
.album-modal .item .content li + li {
  border-top: 1px solid #EFEFEF;
  padding-top: 8px;
  margin-top: 8px;
}
.album-modal .item .content a {
  color: #fff;
}
.album-modal .action {
  padding-top: 32px;
  text-align: center;
}
.album-modal .action .btn-primary {
  width: 179px;
  height: 42px;
  font-size: 18px;
  line-height: 42px;
}

.album-delete-modal {
  background-color: rgba(0, 0, 0, 0.5);
}
.album-delete-modal .modal-dialog {
  max-width: 436px;
}
.album-delete-modal .inner {
  padding: 50px 24px 45px;
}
.album-delete-modal .main-text {
  font-size: 20px;
  line-height: 29px;
  font-weight: 500;
  color: #333;
  margin-bottom: 12px;
  text-align: center;
}
.album-delete-modal .sub-text {
  font-size: 15px;
  line-height: 24px;
  color: #C4C4C4;
  text-align: center;
}
.album-delete-modal .action {
  padding-top: 28px;
  text-align: center;
  margin: 0 -8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.album-delete-modal .action .btn {
  width: 186px;
  height: 42px;
  font-size: 18px;
  line-height: 42px;
  margin: 0 8px;
}
.album-delete-modal .action .btn-primary {
  background-color: #ED8989;
}
.album-delete-modal .action .btn-secondary {
  background-color: #999;
}

.page-album_detail .detail-top {
  border-bottom: 1px solid #999;
  padding-bottom: 28px;
  margin-bottom: 28px;
}
.page-album_detail .detail-top .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}
.page-album_detail .detail-top .date {
  font-size: 16px;
  line-height: 24px;
  color: #C4C4C4;
  margin-bottom: 8px;
}
.page-album_detail .detail-top .main-text {
  font-size: 24px;
  line-height: 36px;
  color: #333;
  margin-bottom: 8px;
}
.page-album_detail .detail-top .sub-text {
  font-size: 16px;
  line-height: 24px;
  color: #C4C4C4;
}
.page-album_detail .detail-top .btn-primary {
  width: 121px;
  height: 37px;
  line-height: 37px;
}
.page-album_detail .detail-top .btn-primary .icon-edit {
  background-image: url(../images/icon-edit-white.svg);
  background-size: 24px auto;
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
.page-album_detail .detail-main .grid {
  margin: -9px;
}
.page-album_detail .detail-main .grid-sizer,
.page-album_detail .detail-main .grid-item {
  width: 33.3333%;
  padding: 9px;
}
.page-album_detail .detail-main .image {
  border-radius: 10px;
  overflow: hidden;
}
.page-album_detail .detail-footer {
  padding-top: 55px;
  padding-bottom: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.page-album_detail .detail-footer .btn-primary {
  width: 132px;
  height: 40px;
  background-color: #EEF9F8;
  border-radius: 40px;
  color: #05A1AE;
  margin: 0 6px;
}
.page-album_detail .detail-footer .btn-primary:active {
  filter: brightness(1.05);
}
@media (hover: hover) {
  .page-album_detail .detail-footer .btn-primary:hover {
    filter: brightness(1.05);
  }
}
.page-album_detail .detail-footer .btn-primary .icon-prev,
.page-album_detail .detail-footer .btn-primary .icon-next {
  background-size: 20px auto;
  width: 20px;
  height: 20px;
}
.page-album_detail .detail-footer .btn-primary .icon-prev {
  background-image: url(../images/icon-prev.svg);
  margin-right: 8px;
}
.page-album_detail .detail-footer .btn-primary .icon-next {
  background-image: url(../images/icon-next.svg);
  margin-left: 8px;
}

.page-events .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  margin: -8px -8px 20px;
  border-bottom: 1px solid #C4C4C4;
  padding-bottom: 8px;
}
.page-events .list li {
  margin: 8px;
}
.page-events .form-section-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: -15px -15px 5px;
}
.page-events .form-section-group .form-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% / 3 - 15px * 2);
  margin: 15px;
}
.page-events .form-section-group .form-label {
  width: 54px;
  margin-bottom: 0;
  line-height: 40px;
}
.page-events .form-section-group .form-content {
  width: calc(100% - 54px);
}
.page-events .pagination {
  padding-top: 90px;
}
.page-events .l-table {
  font-size: 15px;
  line-height: 20px;
}
.page-events .l-table .sorting {
  cursor: pointer;
}
.page-events .l-table .sorting span {
  position: relative;
  padding-right: 20px;
}
.page-events .l-table .sorting span:before, .page-events .l-table .sorting span:after {
  content: "";
  background-repeat: no-repeat;
  background-position: right center;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 1px;
  right: 0;
}
.page-events .l-table .sorting span:before {
  background-image: url(../images/sorting-up.svg);
}
.page-events .l-table .sorting span:after {
  background-image: url(../images/sorting-down.svg);
}
.page-events .l-table td {
  padding: 10px 0;
  vertical-align: top;
}
.page-events .l-table tbody tr:nth-child(2n) {
  background-color: #EFEFEF;
}
.page-events .l-table tr td:first-child {
  padding-left: 15px;
}
.page-events .main-text {
  text-align: left;
  margin-bottom: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  height: 20px;
  max-width: 430px;
}

.page-events .main-text a:hover{
	color:#05A1AE;
}

.page-events .menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  font-size: 13px;
  line-height: 19px;
}
.page-events .menu li {
  position: relative;
  padding: 0 15px;
}
.page-events .menu li:first-child {
  padding-left: 0;
}
.page-events .menu li + li:before {
  content: "";
  width: 1px;
  height: calc(100% - 3px * 2);
  position: absolute;
  top: 3px;
  left: 0;
  background-color: #666;
}
.page-events .menu a {
  color: #666;
}
.page-events .menu .view {
  color: #05A1AE;
}
.page-events .menu .delete {
  color: #ED8989;
}

.page-events_detail .detail-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #C4C4C4;
  padding-bottom: 30px;
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 22px;
}
.page-events_detail .detail-top__left {
  width: 420px;
}
.page-events_detail .detail-top__right {
  width: calc(100% - 420px);
  padding-left: 30px;
  padding-top: 20px;
}
.page-events_detail .detail-top .image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.page-events_detail .detail-top .location {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  color: #44BAB1;
  margin-bottom: 8px;
}
.page-events_detail .detail-top .icon-pin {
  background-image: url(../images/icon-pin.svg);
  background-repeat: no-repeat;
  background-size: 24px auto;
  width: 24px;
  height: 24px;
}
.page-events_detail .detail-top .main-text {
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}
.page-events_detail .detail-top .sub-text {
  color: #999;
  margin-bottom: 16px;
}
.page-events_detail .detail-top .action {
  margin: 16px 0;
}
.page-events_detail .detail-top .btn-primary {
  width: 130px;
  height: 40px;
  line-height: 40px;
}
.page-events_detail .detail-top .btn-primary .icon-edit {
  background-image: url(../images/icon-edit-white.svg);
  background-size: 24px auto;
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
.page-events_detail .detail-top .bottom-text {
  color: #999;
}
.page-events_detail .detail-top .bottom-text .highlight {
  color: #ED8989;
}
.page-events_detail .detail-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: -12px;
  padding-bottom:30px;
}
.page-events_detail .detail-info .title {
    color: #05A1AE;
    font-size: 20px;
    line-height: 29px;
    font-weight: 500;
    position: relative;
    padding-left: 24px;
}
.page-events_detail .detail-info .item {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
  margin: 12px;
  width: calc(100% / 5 - 12px * 2);
}
.page-events_detail .detail-info .item-header {
  background-color: #90C9CB;
  font-size: 16px;
  line-height: 40px;
  color: #fff;
}
.page-events_detail .detail-info .item-content {
  padding: 10px;
}
.page-events_detail .detail-info .item .block-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: -10px;
}
.page-events_detail .detail-info .item .block-group .block {
  margin: 10px;
  width: calc(50% - 10px * 2);
  position: relative;
}
.page-events_detail .detail-info .item .block-group .block:before {
  content: "";
  position: absolute;
  top: 0;
  left: -12px;
  width: 1px;
  height: calc(100% - 6px);
  background-color: #707070;
}
.page-events_detail .detail-info .item .block-group .block + .block {
  margin: 10px;
}
.page-events_detail .detail-info .item .text-lg {
  font-size: 20px;
  line-height: 29px;
  font-weight: 500;
  padding: 22px 0;
  display: block;
}
.page-events_detail .detail-info .item .text-md {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  padding: 10px 0 16px;
}
.page-events_detail .detail-info .item .number-lg {
  font-size: 34px;
  line-height: 49px;
  font-weight: 900;
}
.page-events_detail .detail-info .item .text-small {
  font-size: 13px;
  line-height: 24px;
}
.page-events_detail .detail-info .item-2 {
  width: calc(40% - 12px * 2);
}
.page-events_detail .detail-footer {
  padding-top: 60px;
}
.page-events_detail .detail-footer .btn-primary {
  width: 141px;
  height: 42px;
  font-size: 18px;
  line-height: 42px;
  display: block;
  margin: 0 auto;
}

.page-events_editor .section-top {
  background-color: #EEF9F8;
  margin-top: -32px;
  padding-top: 34px;
  z-index: 10;
}
.page-events_editor .section-top.sticky {
  position: sticky !important;
  top: 55px;
  left: 0;
  margin-top: 0;
  padding-top: 10px;
}
.page-events_editor .section-top.sticky .section-header {
  display: none;
}
.page-events_editor .section-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100svw - 210px);
  height: 100%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #EEF9F8;
  z-index: -1;
}
.page-events_editor .section-top .section-header {
  margin-bottom: 12px;
}
.page-events_editor .section-top .main-text {
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
}
.page-events_editor .section-top .nav-pills {
  pointer-events:auto;
}
.page-events_editor .section-top .nav-link {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #C4C4C4;
  width: calc(100% / 5);
  border-bottom: 5px solid #C4C4C4;
  border-radius: 0;
  text-align: center;
  padding: 10px 0;
}
.page-events_editor .section-top .nav-link.active {
  color: #05A1AE;
  background-color: transparent;
  border-color: #05A1AE;
}

.editor-category .section-main .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  max-width: 720px;
  margin: 100px auto;
}
.editor-category .section-main .list .item {
  width: calc(100% / 5 - 10px * 2);
  margin: 10px;
  text-align: center;
  padding: 20px 10px;
  font-size: 18px;
  line-height: 26px;
  background-color: #EFEFEF;
  border-radius: 10px;
  cursor: pointer;
}
.editor-category .section-main .list .item.active {
  color: #fff;
  background-color: #05A1AE;
  font-weight: 500;
}
.editor-category .section-main .btn-primary {
  width: 112px;
  height: 42px;
  font-size: 18px;
  line-height: 42px;
  height: 42px;
  margin: 0 auto;
  display: block;
}

.editor-information .section-a {
  border-bottom: 1px solid #C4C4C4;
  padding-bottom: 20px;
}
.editor-information .section-a .banner {
  width: 843px;
  margin: 0 auto 18px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.editor-information .section-a .banner .action {
  position: absolute;
  bottom: 16px;
  left: calc(50% - 200px / 2);
}
.editor-information .section-a .banner .btn-primary {
  width: 200px;
  height: 50px;
  font-size: 20px;
  line-height: 50px;
}
.editor-information .section-a .banner .btn-primary .icon-camera {
  background-image: url(../images/icon-camera_lg.svg);
  background-repeat: no-repeat;
  background-size: 32px auto;
  width: 32px;
  height: 32px;
  margin-right: 10px;
}
.editor-information .section-a .highlight {
  color: #05A1AE;
  font-weight: 500;
}
.editor-information .section-a .text {
  text-align: center;
}
.editor-information .section-b .set-url {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 20px;
}
.editor-information .section-b .set-url .form-control {
  max-width: 284px;
  margin-left: 14px;
}
.editor-information .section-b .set-url .required {
  font-weight: 500;
  color: #05A1AE;
  padding-right:3px;
}
.editor-information .section-b .note {
  font-size: 14px;
  line-height: 20px;
  color: #666;
}
.editor-information .section-c .section-header {
  margin-bottom: 22px;
}
.editor-information .section-c .section-header .title {
  padding-left: 0;
}
.editor-information .section-c .section-header .title:before {
  display: none;
}
.editor-information .section-c .section-header .highlight {
  font-size: 14px;
  line-height: 19px;
  font-weight: 300;
  color: #05A1AE;
}
.editor-information .section-c .required {
  font-weight: 500;
  color: #05A1AE;
}
.editor-information .section-c .form-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 16px;
  line-height: 40px;
}
.editor-information .section-c .form-section + .form-section {
  margin-top: 20px;
}
.editor-information .section-c .form-section-break {
  display: block;
}
.editor-information .section-c .form-section-break .form-label {
  width: 100%;
  margin-bottom: 8px;
}
.editor-information .section-c .form-section-break .form-content {
  width: 100%;
}
.editor-information .section-c .form-label {
  width: 100px;
  font-weight: 500;
  margin: 0;
}
.editor-information .section-c .form-content {
  width: calc(100% - 100px);
  min-height: 40px;
}
.editor-information .section-c textarea.form-control {
  background-color: #EEF9F8;
  border-radius: 10px;
  padding: 16px 24px;
  min-height: 113px;
}

.editor-information .section-c textarea.form-control:focus{
	background-color: #FFF;
}
.editor-information .section-d .section-header {
  margin-bottom: 25px;
}
.editor-information .section-d .section-header .title {
  padding-left: 0;
}
.editor-information .section-d .section-header .title:before {
  display: none;
}
.editor-information .section-d .form-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  line-height: 40px;
}
.editor-information .section-d .form-section + .form-section {
  margin-top: 15px;
}
.editor-information .section-d .form-label {
  width: 85px;
  font-weight: 500;
  margin: 0;
}
.editor-information .section-d .form-content {
  width: calc(100% - 85px);
  min-height: 40px;
}
.editor-information .section-d input.form-control {
  max-width: 244px;
}
.editor-information .section-d textarea.form-control {
  background-color: #EEF9F8;
  border-radius: 10px;
  padding: 16px 24px;
  min-height: 113px;
}
.editor-information .section-d .avatar {
  position: relative;
  width: 100px;
}
.editor-information .section-d .avatar .image {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.editor-information .section-d .avatar .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.editor-information .section-d .avatar .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editor-information .section-d .avatar .btn-camera {
  position: absolute;
  bottom: 0;
  right: -14px;
  width: 42px;
  height: 42px;
  background-color: #6CBCBF;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.editor-information .section-d .avatar .btn-camera .icon-camera {
  background-image: url(../images/icon-camera_lg.svg);
  background-repeat: no-repeat;
  background-size: 32px auto;
  width: 32px;
  height: 32px;
}
.editor-information .section-d .avatar .btn-camera:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .editor-information .section-d .avatar .btn-camera:hover {
    filter: brightness(1.1);
  }
}
.editor-information .section-d .form-section-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
  margin-top: 15px;
}
.editor-information .section-d .form-section-group input.form-control {
  max-width: 100%;
}
.editor-information .section-d .form-section-group .form-section {
  width: calc(50% - 10px * 2);
  margin: 0 10px;
}
.editor-information .section-d .form-section-group .form-section + .form-section {
  margin-top: 0;
}
.editor-information .section-d .form-section-group .form-section:nth-child(2) .form-label {
  width: 58px;
}
.editor-information .section-d .form-section-group .form-section:nth-child(2) .form-content {
  width: calc(100% - 58px);
}
.editor-information .section-d .guests {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #C4C4C4;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.editor-information .section-d .guests-left {
  width: 160px;
}
.editor-information .section-d .guests-right {
  width: calc(100% - 160px);
}
.editor-information .section-d .guests .btn-delete {
  height: 24px;
  font-size: 14px;
  line-height: 40px;
  color: #05A1AE;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.editor-information .section-d .guests .btn-delete .icon-delete {
  background-image: url(../images/icon-delete.svg);
  background-repeat: no-repeat;
  background-size: 24px auto;
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
.editor-information .section-d .action {
  margin-top: 25px;
}
.editor-information .section-d .btn-primary {
  width: 121px;
  height: 37px;
  font-size: 16px;
  line-height: 37px;
}
.editor-information .section-d .btn-primary .icon-plus_circle {
  background-image: url(../images/icon-plus_circle-white.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.editor-information .l-footer {
  padding-top: 80px;
  padding-bottom: 50px;
}
.editor-information .l-footer .btn-primary {
  width: 112px;
  height: 42px;
  font-size: 18px;
  line-height: 42px;
  height: 42px;
  margin: 0 auto;
  display: block;
}

.editor-settings .section .form-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 16px;
  line-height: 40px;
}
.editor-settings .section .form-section + .form-section {
  margin-top: 20px;
}
.editor-settings .section .form-section-break {
  display: block;
}
.editor-settings .section .form-section-break .form-label {
  width: 100%;
  margin-bottom: 8px;
}
.editor-settings .section .form-section-break .form-content {
  width: 100%;
}
.editor-settings .section .form-label {
  width: 100px;
  font-weight: 500;
  margin: 0;
}
.editor-settings .section .form-content {
  width: calc(100% - 100px);
}
.editor-settings .section textarea.form-control {
  background-color: #EEF9F8;
  border-radius: 10px;
  padding: 16px 24px;
  min-height: 113px;
}
.editor-settings .section .form-check-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 16px;
  line-height: 25px;
}
.editor-settings .section .form-check {
  min-width: 130px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.editor-settings .section-a .section-header {
  margin-bottom: 22px;
}
.editor-settings .section-a .section-header .title {
  padding-left: 0;
}
.editor-settings .section-a .section-header .title:before {
  display: none;
}
.editor-settings .section-a .form-section {
  font-size: 16px;
  line-height: 24px;
}
.editor-settings .section-a .form-section + .form-section {
  margin-top: 24px;
}
.editor-settings .section-b .section-header {
  margin-bottom: 22px;
}
.editor-settings .section-b .section-header .title {
  padding-left: 0;
}
.editor-settings .section-b .section-header .title:before {
  display: none;
}
.editor-settings .section-b .form-section {
  width: calc(100% / 2 - 12px * 2);
  margin: 0 12px;
}
.editor-settings .section-b .form-section + .form-section {
  margin: 0 12px;
}
.editor-settings .section-b .form-section-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 0 -12px;
}
.editor-settings .section-b .form-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 0 -8px;
}
.editor-settings .section-b .form-select {
  margin: 0 8px;
  width: calc(20% - 8px * 2);
}
.editor-settings .section-b .form-select:nth-child(1) {
  width: calc(60% - 8px * 2);
}
.editor-settings .section-c .section-header {
  margin-bottom: 22px;
}
.editor-settings .section-c .section-header .title {
  padding-left: 0;
}
.editor-settings .section-c .section-header .title:before {
  display: none;
}
.editor-settings .section-c .address {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 0 -10px;
}
.editor-settings .section-c .address .form-section {
  margin: 0 10px;
  margin-top: 24px;
}
.editor-settings .section-c .address .form-section + .form-section {
  margin: 0 10px;
  margin-top: 24px;
}
.editor-settings .section-c .address .address-1 {
  width: 180px;
}
.editor-settings .section-c .address .address-1 .form-label {
  width: calc(100% - 128px);
}
.editor-settings .section-c .address .address-1 .form-content {
  width: 128px;
}
.editor-settings .section-c .address .address-2 {
  width: calc(100% - 180px);
}
.editor-settings .section-c .address .address-2 .form-label {
  width: 68px;
}
.editor-settings .section-c .address .address-2 .form-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: calc(100% - 68px);
}
.editor-settings .section-c .address .address-2 .form-select {
  margin: 0 20px 0 0;
  width: 128px;
}
.editor-settings .section-c .address .address-2 .form-control {
  width: calc(100% - 128px - 20px);
}
.editor-settings .section-c .block + .block {
  margin-top: 48px;
}
.editor-settings .section-c .online-activities .form-label {
  width: 150px;
}
.editor-settings .section-c .online-activities .form-content {
  width: calc(100% - 150px);
}
.editor-settings .section-d .section-header {
  margin-bottom: 22px;
}
.editor-settings .section-d .section-header .title {
  padding-left: 0;
}
.editor-settings .section-d .section-header .title:before {
  display: none;
}
.editor-settings .section-d .l-table__header {
  font-weight: 500;
}
.editor-settings .section-d .l-table__header:first-child {
  text-align: left;
  padding-left: 106px;
}
.editor-settings .section-d .l-table td {
  padding: 16px 0;
}
.editor-settings .section-d .l-table td:first-child {
  text-align: left;
  padding: 16px 24px;
}
.editor-settings .l-footer {
  padding-top: 48px;
  padding-bottom: 48px;
}
.editor-settings .l-footer .btn-primary {
  width: 112px;
  height: 42px;
  font-size: 18px;
  line-height: 42px;
  height: 42px;
  margin: 0 auto;
  display: block;
}

.editor-questionnaire {
  color: #333;
}
.editor-questionnaire .grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.editor-questionnaire .grid-left {
  width: 100%;
}
.editor-questionnaire .grid-left .text {
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  margin-top:-300px;
}
.editor-questionnaire .grid-left .text .highlight {
  font-size: 18px;
  line-height: 30px;
  color: #05A1AE;
  margin-top: 22px;
}
.editor-questionnaire .grid-right {
  width: calc(100% - 530px);
  padding-left: 22px;
}
.editor-questionnaire .heading {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  color: #333;
  text-align: center;
  margin-bottom: 22px;
}
.editor-questionnaire .box {
  min-height: 478px;
  border: 1px dashed #C4C4C4;
  border-radius: 10px;
  padding: 12px 15px;
}
.editor-questionnaire .box .zone-a {
    width:100%;
	margin-bottom:20px;
	position: relative;
}
.chosen{
	background-color:#FFF !important;
}
.editor-questionnaire .box .zone-a label.form-check-label{
	padding-top: 4px;
    margin-right: 20px;
}
.editor-questionnaire .box .zone-a input::placeholder{
	color:#999;
}
.editor-questionnaire .box .zone-a p{
    margin-bottom:10px;
}
.editor-questionnaire .box .zone-a .small{
    font-size: 14px;
	color: #05A1AE;
}
.editor-questionnaire .box .zone-a .edit{
	background-image: url(../images/icon-edit.svg);
	width:20px;
	height: 20px;
	position: absolute;
	top:0;
	right:30px;
	cursor: pointer;
}
.editor-questionnaire .box .zone-a .move{
	background-image: url(../images/icon-move.svg);
	width:22px;
	height: 22px;
	position: absolute;
	top:0;
	right:0;
	cursor: pointer;
}
.editor-questionnaire .box .zone-b {
    width:100%;
	margin-bottom:10px;
	position: relative;
	padding:10px;
	border: 1px #dcdcdc solid;
	border-radius: 10px;
	background-color: #FFF;
}
.editor-questionnaire .box .zone-b p{
    margin:0px;
}
.editor-questionnaire .box .zone-b .move{
	background-image: url(../images/icon-move.svg);
	width:22px;
	height: 22px;
	position: absolute;
	top:0;
	right:0;
	cursor: pointer;
	margin:10px;
}
.editor-questionnaire .box .zone-c {
    width:100%;
	margin-bottom:20px;
}
.editor-questionnaire .box .zone-c p{
    margin-bottom:10px;
}
.editor-questionnaire .box .zone-c label{
	padding-top: 4px;
    margin-right: 20px !important;
}
.editor-questionnaire .box .zone-c .l-table td {
    padding: 10px 4px;
}
.editor-questionnaire .box .zone-c button.btn.btn-primary{
	width: 25px;
    height: 25px;
    border-radius: 50%;
    background-image: url(../images/icon-add-white.svg);
    float: right;
    margin-top: 6px;
}
.editor-questionnaire .box .zone-c .l-table{
	table-layout: fixed;
	margin-top:10px;
}
.editor-questionnaire .box .zone-c th.l-table__header{
	text-align: left;
	padding-left:25px;
}
.editor-questionnaire .box .zone-c button.btn.btn-delete{
	padding: 10px;
    width: 100%;
}
.editor-questionnaire .box .action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.editor-questionnaire .box .btn {
  width: 80px;
  height: 42px;
  border-radius: 10px;
  margin: 0;
  color: #fff;
}
.editor-questionnaire .box .btn + .btn {
  margin-left: 11px;
}
.editor-questionnaire .box .btn-gray {
  background-color: #c4c4c4;
}
.editor-questionnaire .box .btn-secondary {
  background-color: #ed8989;
}
.editor-questionnaire .box .nav-pills {
  margin-bottom: 24px;
}
.editor-questionnaire .box .nav-item {
  width: calc(100% / 2);
}
.editor-questionnaire .box .nav-link {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #C4C4C4;
  width: 100%;
  border-bottom: 5px solid #C4C4C4;
  border-radius: 0;
  text-align: center;
  padding: 0 0 8px 0;
}
.editor-questionnaire .box .nav-link.active {
  color: #05A1AE;
  background-color: transparent;
  border-color: #05A1AE;
}
.editor-questionnaire .panel-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.editor-questionnaire .panel-group .panel {
  width: 270px;
}
.editor-questionnaire .panel-group .panel + .panel {
  margin-left: 21px;
}
.editor-questionnaire .panel-group .box {
  background: #FFFFFF;
  border: 1px solid #C4C4C4;
}
.editor-questionnaire .btn-secondary {
  width: 121px;
  height: 37px;
  font-size: 16px;
  line-height: 37px;
  background-color: #ED8989;
  margin-right: 14px;
}
.editor-questionnaire .l-footer {
  padding-top: 48px;
  padding-bottom: 48px;
}
.editor-questionnaire .l-footer .btn-primary {
  width: 112px;
  height: 42px;
  font-size: 18px;
  line-height: 42px;
  height: 42px;
  margin: 0 auto;
  display: block;
}

.editor-questionnaire .drag-container {
    min-height: 450px;
  }
  
  .editor-questionnaire  .draggable-item {
    padding: 10px;
    margin: 5px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
  }
  
  .editor-questionnaire  .drop-placeholder {
    padding: 20px;
    text-align: center;
    color: #999;
  }
  
  .editor-questionnaire  .ghost {
    opacity: 0.5; /* 拖动中的透明度 */
  }
  
  .editor-questionnaire  .chosen {
    background-color: lightblue; /* 选择中的背景色 */
  }

.editor-release .section .form-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 16px;
  line-height: 40px;
}
.editor-release .section .form-section + .form-section {
  margin-top: 20px;
}
.editor-release .section .form-section-break {
  display: block;
}
.editor-release .section .form-section-break .form-label {
  width: 100%;
  margin-bottom: 8px;
}
.editor-release .section .form-section-break .form-content {
  width: 100%;
}
.editor-release .section .form-check-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 16px;
  line-height: 25px;
}
.editor-release .section .form-check {
  min-width: 130px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.editor-release .section-a {
  min-height: 400px;
}
.editor-release .section-a .section-header {
  margin-bottom: 22px;
}
.editor-release .section-a .section-header .title {
  padding-left: 0;
}
.editor-release .section-a .section-header .title:before {
  display: none;
}
.editor-release .l-footer {
  padding-top: 48px;
  padding-bottom: 48px;
}
.editor-release .l-footer .btn-primary {
  width: 112px;
  height: 42px;
  font-size: 18px;
  line-height: 42px;
  height: 42px;
  margin: 0 auto;
  display: block;
}

.page-events_create {
  padding-top: 50px !important;
}
.page-events_create .section-top {
  position: fixed !important;
  top: 55px;
  left: 0;
  width: 100%;
  background-color: #EEF9F8;
  z-index: 10;
}
.page-events_create .section-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #EEF9F8;
  z-index: -1;
}
.page-events_create .section-top .nav-pills {
  pointer-events: none;
  max-width: 95%;
  margin: 0 auto;
}
.page-events_create .section-top .nav-link {
  position: relative;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #C4C4C4;
  width: calc(100% / 5);
  border-bottom: 5px solid #C4C4C4;
  border-radius: 0;
  text-align: center;
  padding: 10px 0;
}
.page-events_create .section-top .nav-link:last-child:before {
  display: none;
}
.page-events_create .section-top .nav-link:before {
  content: "";
  position: absolute;
  top: calc(50% - 20px / 2);
  right: -5px;
  width: 20px;
  height: 20px;
  background-image: url(../images/step-arrow-right.svg);
  background-size: 20px auto;
  background-repeat: no-repeat;
  opacity: 0;
}
.page-events_create .section-top .nav-link.active {
  color: #05A1AE;
  background-color: transparent;
  border-color: #05A1AE;
}
.page-events_create .section-top .nav-link.active:before {
  opacity: 1;
}
.page-events_create .l-footer {
  border-top: 1px solid #C4C4C4;
  padding-top: 24px;
}

.create-category .section-main .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  max-width: 720px;
  margin: 140px auto 155px;
}
.create-category .section-main .list .item {
  width: calc(100% / 5 - 10px * 2);
  margin: 10px;
  text-align: center;
  padding: 20px 10px;
  font-size: 18px;
  line-height: 26px;
  background-color: #EFEFEF;
  border-radius: 10px;
  cursor: pointer;
}
.create-category .section-main .list .item.active {
  color: #fff;
  background-color: #05A1AE;
  font-weight: 500;
}
.create-category .section-main .l-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.create-category .section-main .btn-primary {
  width: 142px;
  height: 42px;
  font-size: 18px;
  line-height: 42px;
  margin-left: auto;
}
.create-category .section-main .btn-primary .icon-next {
  background-size: 20px auto;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-next-white.svg);
  margin-left: 8px;
}

.create-information textarea.form-control:focus {
    background: #FFF !important;
}

.create-information .section-a {
  border-bottom: 1px solid #C4C4C4;
  padding-bottom: 20px;
}
.create-information .section-a .banner {
  width: 843px;
  margin: 0 auto 18px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.create-information .section-a .banner .action {
  position: absolute;
  bottom: 16px;
  left: calc(50% - 200px / 2);
}
.create-information .section-a .banner .btn-primary {
  width: 200px;
  height: 50px;
  font-size: 20px;
  line-height: 50px;
}
.create-information .section-a .banner .btn-primary .icon-camera {
  background-image: url(../images/icon-camera_lg.svg);
  background-repeat: no-repeat;
  background-size: 32px auto;
  width: 32px;
  height: 32px;
  margin-right: 10px;
}
.create-information .section-a .highlight {
  color: #05A1AE;
  font-weight: 500;
}
.create-information .section-a .text {
  text-align: center;
}
.create-information .section-b .set-url {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 20px;
}
.create-information .section-b .set-url .form-control {
  max-width: 284px;
  margin-left: 14px;
}
.create-information .section-b .note {
  font-size: 14px;
  line-height: 20px;
  color: #666;
}
.create-information .section-b .required {
  font-weight: 500;
  color: #05A1AE;
  padding-right:3px;
}
.create-information .section-c .section-header {
  margin-bottom: 22px;
}
.create-information .section-c .section-header .title {
  padding-left: 0;
}
.create-information .section-c .section-header .title:before {
  display: none;
}
.create-information .section-c .section-header .highlight {
  font-size: 14px;
  line-height: 19px;
  font-weight: 300;
  color: #05A1AE;
}
.create-information .section-c .required {
  font-weight: 500;
  color: #05A1AE;
}
.create-information .section-c .form-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 16px;
  line-height: 40px;
}
.create-information .section-c .form-section + .form-section {
  margin-top: 20px;
}
.create-information .section-c .form-section-break {
  display: block;
}
.create-information .section-c .form-section-break .form-label {
  width: 100%;
  margin-bottom: 8px;
}
.create-information .section-c .form-section-break .form-content {
  width: 100%;
}
.create-information .section-c .form-label {
  width: 100px;
  font-weight: 500;
  margin: 0;
}
.create-information .section-c .form-content {
  width: calc(100% - 100px);
  min-height: 40px;
}
.create-information .section-c textarea.form-control {
  background-color: #EEF9F8;
  border-radius: 10px;
  padding: 16px 24px;
  min-height: 113px;
}
.create-information .section-d .section-header {
  margin-bottom: 25px;
}
.create-information .section-d .section-header .title {
  padding-left: 0;
}
.create-information .section-d .section-header .title:before {
  display: none;
}
.create-information .section-d .form-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  line-height: 40px;
}
.create-information .section-d .form-section + .form-section {
  margin-top: 15px;
}
.create-information .section-d .form-label {
  width: 85px;
  font-weight: 500;
  margin: 0;
}
.create-information .section-d .form-content {
  width: calc(100% - 85px);
  min-height: 40px;
}
.create-information .section-d input.form-control {
  max-width: 244px;
}
.create-information .section-d textarea.form-control {
  background-color: #EEF9F8;
  border-radius: 10px;
  padding: 16px 24px;
  min-height: 113px;
}
.create-information .section-d .avatar {
  position: relative;
  width: 100px;
}
.create-information .section-d .avatar .image {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.create-information .section-d .avatar .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.create-information .section-d .avatar .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.create-information .section-d .avatar .btn-camera {
  position: absolute;
  bottom: 0;
  right: -14px;
  width: 42px;
  height: 42px;
  background-color: #6CBCBF;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.create-information .section-d .avatar .btn-camera .icon-camera {
  background-image: url(../images/icon-camera_lg.svg);
  background-repeat: no-repeat;
  background-size: 32px auto;
  width: 32px;
  height: 32px;
}
.create-information .section-d .avatar .btn-camera:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .create-information .section-d .avatar .btn-camera:hover {
    filter: brightness(1.1);
  }
}
.create-information .section-d .form-section-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
  margin-top: 15px;
}
.create-information .section-d .form-section-group input.form-control {
  max-width: 100%;
}
.create-information .section-d .form-section-group .form-section {
  width: calc(50% - 10px * 2);
  margin: 0 10px;
}
.create-information .section-d .form-section-group .form-section + .form-section {
  margin-top: 0;
}
.create-information .section-d .form-section-group .form-section:nth-child(2) .form-label {
  width: 58px;
}
.create-information .section-d .form-section-group .form-section:nth-child(2) .form-content {
  width: calc(100% - 58px);
}
.create-information .section-d .guests {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #C4C4C4;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.create-information .section-d .guests-left {
  width: 160px;
}
.create-information .section-d .guests-right {
  width: calc(100% - 160px);
}
.create-information .section-d .guests .btn-delete {
  height: 24px;
  font-size: 14px;
  line-height: 40px;
  color: #05A1AE;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.create-information .section-d .guests .btn-delete .icon-delete {
  background-image: url(../images/icon-delete.svg);
  background-repeat: no-repeat;
  background-size: 24px auto;
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
.create-information .section-d .action {
  margin-top: 25px;
}
.create-information .section-d .btn-primary {
  width: 121px;
  height: 37px;
  font-size: 16px;
  line-height: 37px;
}
.create-information .section-d .btn-primary .icon-plus_circle {
  background-image: url(../images/icon-plus_circle-white.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.create-information .l-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-top: 24px;
  margin-top: 24px;
}
.create-information .l-footer .btn-back {
  width: 142px;
  height: 42px;
  font-size: 16px;
  line-height: 42px;
  margin-right: auto;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.create-information .l-footer .btn-back .icon-back {
  background-size: 20px auto;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-back-black.svg);
  margin-right: 4px;
}
.create-information .l-footer .btn-primary {
  width: 142px;
  height: 42px;
  font-size: 18px;
  line-height: 42px;
  margin-left: auto;
}
.create-information .l-footer .btn-primary .icon-next {
  background-size: 20px auto;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-next-white.svg);
  margin-left: 8px;
}

.create-settings .section .form-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 16px;
  line-height: 40px;
}
.create-settings .section .form-section + .form-section {
  margin-top: 20px;
}
.create-settings .section .form-section-break {
  display: block;
}
.create-settings .section .form-section-break .form-label {
  width: 100%;
  margin-bottom: 8px;
}
.create-settings .section .form-section-break .form-content {
  width: 100%;
}
.create-settings .section .form-label {
  width: 100px;
  font-weight: 500;
  margin: 0;
}
.create-settings .section .form-content {
  width: calc(100% - 100px);
}
.create-settings .section textarea.form-control {
  background-color: #EEF9F8;
  border-radius: 10px;
  padding: 16px 24px;
  min-height: 113px;
}
.create-settings .section .form-check-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 16px;
  line-height: 25px;
}
.create-settings .section .form-check {
  min-width: 130px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.create-settings .section-a .section-header {
  margin-bottom: 22px;
}
.create-settings .section-a .section-header .title {
  padding-left: 0;
}
.create-settings .section-a .section-header .title:before {
  display: none;
}
.create-settings .section-a .form-section {
  font-size: 16px;
  line-height: 24px;
}
.create-settings .section-a .form-section + .form-section {
  margin-top: 24px;
}
.create-settings .section-b .section-header {
  margin-bottom: 22px;
}
.create-settings .section-b .section-header .title {
  padding-left: 0;
}
.create-settings .section-b .section-header .title:before {
  display: none;
}
.create-settings .section-b .form-section {
  width: calc(100% / 2 - 12px * 2);
  margin: 0 12px;
}
.create-settings .section-b .form-section + .form-section {
  margin: 0 12px;
}
.create-settings .section-b .form-section-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 0 -12px;
}
.create-settings .section-b .form-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 0 -8px;
}
.create-settings .section-b .form-select {
  margin: 0 8px;
  width: calc(20% - 8px * 2);
}
.create-settings .section-b .form-select:nth-child(1) {
  width: calc(60% - 8px * 2);
}
.create-settings .section-c .section-header {
  margin-bottom: 22px;
}
.create-settings .section-c .section-header .title {
  padding-left: 0;
}
.create-settings .section-c .section-header .title:before {
  display: none;
}
.create-settings .section-c .address {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 0 -10px;
}
.create-settings .section-c .address .form-section {
  margin: 0 10px;
  margin-top: 24px;
}
.create-settings .section-c .address .form-section + .form-section {
  margin: 0 10px;
  margin-top: 24px;
}
.create-settings .section-c .address .address-1 {
  width: 220px;
}
.create-settings .section-c .address .address-1 .form-label {
  width: calc(100% - 128px);
}
.create-settings .section-c .address .address-1 .form-content {
  width: 170px;
}
.create-settings .section-c .address .address-2 {
  width: calc(100% - 180px);
}
.create-settings .section-c .address .address-2 .form-label {
  width: 68px;
}
.create-settings .section-c .address .address-2 .form-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: calc(100% - 68px);
}
.create-settings .section-c .address .address-2 .form-select {
  margin: 0 20px 0 0;
  width: 170px;
}
.create-settings .section-c .address .address-2 .form-control {
  width: calc(100% - 128px - 20px);
}
.create-settings .section-c .block + .block {
  margin-top: 48px;
}
.create-settings .section-c .online-activities .form-label {
  width: 150px;
}
.create-settings .section-c .online-activities .form-content {
  width: calc(100% - 150px);
}
.create-settings .section-d {
  padding-bottom: 50px;
}
.create-settings .section-d .section-header {
  margin-bottom: 22px;
}
.create-settings .section-d .section-header .title {
  padding-left: 0;
}
.create-settings .section-d .section-header .title:before {
  display: none;
}
.create-settings .section-d .l-table__header {
  font-weight: 500;
}
.create-settings .section-d .l-table__header:first-child {
  text-align: left;
  padding-left: 106px;
}
.create-settings .section-d .l-table td {
  padding: 16px 0;
  border-bottom: 0;
}
.create-settings .section-d .l-table td:first-child {
  text-align: left;
  padding: 16px 24px;
}
.create-settings .l-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-top: 24px;
  margin-top: 24px;
}
.create-settings .l-footer .btn-back {
  width: 142px;
  height: 42px;
  font-size: 16px;
  line-height: 42px;
  margin-right: auto;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.create-settings .l-footer .btn-back .icon-back {
  background-size: 20px auto;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-back-black.svg);
  margin-right: 4px;
}
.create-settings .l-footer .btn-primary {
  width: 142px;
  height: 42px;
  font-size: 18px;
  line-height: 42px;
  margin-left: auto;
}
.create-settings .l-footer .btn-primary .icon-next {
  background-size: 20px auto;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-next-white.svg);
  margin-left: 8px;
}

.create-questionnaire .l-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-top: 24px;
  margin-top: 24px;
}
.create-questionnaire .l-footer .btn-back {
  width: 142px;
  height: 42px;
  font-size: 16px;
  line-height: 42px;
  margin-right: auto;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.create-questionnaire .l-footer .btn-back .icon-back {
  background-size: 20px auto;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-back-black.svg);
  margin-right: 4px;
}
.create-questionnaire .l-footer .btn-primary {
  width: 142px;
  height: 42px;
  font-size: 18px;
  line-height: 42px;
  margin-left: auto;
}
.create-questionnaire .l-footer .btn-primary .icon-next {
  background-size: 20px auto;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-next-white.svg);
  margin-left: 8px;
}
.create-questionnaire {
  color: #333;
}
.create-questionnaire .grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.create-questionnaire .grid-left {
  width: 100%;
}
.create-questionnaire .grid-left .text {
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  margin-top:-300px;
}
.create-questionnaire .grid-left .text .highlight {
  font-size: 18px;
  line-height: 30px;
  color: #05A1AE;
  margin-top: 22px;
}
.create-questionnaire .grid-right {
  width: calc(100% - 530px);
  padding-left: 22px;
}
.create-questionnaire .heading {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  color: #333;
  text-align: center;
  margin-bottom: 22px;
}
.create-questionnaire .box {
  min-height: 478px;
  border: 1px dashed #C4C4C4;
  border-radius: 10px;
  padding: 12px 15px;
}
.create-questionnaire .box .zone-a {
    width:100%;
	margin-bottom:20px;
	position: relative;
}
.chosen{
	background-color:#FFF !important;
}
.create-questionnaire .box .zone-a label.form-check-label{
	padding-top: 4px;
    margin-right: 20px;
}
.create-questionnaire .box .zone-a input::placeholder{
	color:#999;
}
.create-questionnaire .box .zone-a p{
    margin-bottom:10px;
}
.create-questionnaire .box .zone-a .small{
    font-size: 14px;
	color: #05A1AE;
}
.create-questionnaire .box .zone-a .edit{
	background-image: url(../images/icon-edit.svg);
	width:20px;
	height: 20px;
	position: absolute;
	top:0;
	right:30px;
	cursor: pointer;
}
.create-questionnaire .box .zone-a .move{
	background-image: url(../images/icon-move.svg);
	width:22px;
	height: 22px;
	position: absolute;
	top:0;
	right:0;
	cursor: pointer;
}
.create-questionnaire .box .zone-b {
    width:100%;
	margin-bottom:10px;
	position: relative;
	padding:10px;
	border: 1px #dcdcdc solid;
	border-radius: 10px;
	background-color: #FFF;
}
.create-questionnaire .box .zone-b p{
    margin:0px;
}
.create-questionnaire .box .zone-b .move{
	background-image: url(../images/icon-move.svg);
	width:22px;
	height: 22px;
	position: absolute;
	top:0;
	right:0;
	cursor: pointer;
	margin:10px;
}
.create-questionnaire .box .zone-c {
    width:100%;
	margin-bottom:20px;
}
.create-questionnaire .box .zone-c p{
    margin-bottom:10px;
}
.create-questionnaire .box .zone-c label{
	padding-top: 4px;
    margin-right: 20px !important;
}
.create-questionnaire .box .zone-c .l-table td {
    padding: 10px 4px;
}
.create-questionnaire .box .zone-c button.btn.btn-primary{
	width: 25px;
    height: 25px;
    border-radius: 50%;
    background-image: url(../images/icon-add-white.svg);
    float: right;
    margin-top: 6px;
}
.create-questionnaire .box .zone-c .l-table{
	table-layout: fixed;
	margin-top:10px;
}
.create-questionnaire .box .zone-c th.l-table__header{
	text-align: left;
	padding-left:25px;
}
.create-questionnaire .box .zone-c button.btn.btn-delete{
	padding: 10px;
    width: 100%;
}
.create-questionnaire .box .action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.create-questionnaire .box .btn {
  width: 80px;
  height: 42px;
  border-radius: 10px;
  margin: 0;
  color: #fff;
}
.create-questionnaire .box .btn + .btn {
  margin-left: 11px;
}
.create-questionnaire .box .btn-gray {
  background-color: #c4c4c4;
}
.create-questionnaire .box .btn-secondary {
  background-color: #ed8989;
}
.create-questionnaire .box .nav-pills {
  margin-bottom: 24px;
}
.create-questionnaire .box .nav-item {
  width: calc(100% / 2);
}
.create-questionnaire .box .nav-link {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #C4C4C4;
  width: 100%;
  border-bottom: 5px solid #C4C4C4;
  border-radius: 0;
  text-align: center;
  padding: 0 0 8px 0;
}
.create-questionnaire .box .nav-link.active {
  color: #05A1AE;
  background-color: transparent;
  border-color: #05A1AE;
}
.create-questionnaire .panel-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.create-questionnaire .panel-group .panel {
  width: 270px;
}
.create-questionnaire .panel-group .panel + .panel {
  margin-left: 21px;
}
.create-questionnaire .panel-group .box {
  background: #FFFFFF;
  border: 1px solid #C4C4C4;
}
.create-questionnaire .btn-secondary {
  width: 121px;
  height: 37px;
  font-size: 16px;
  line-height: 37px;
  background-color: #ED8989;
  margin-right: 14px;
}

.create-questionnaire .drag-container {
    min-height: 450px;
  }
  
.create-questionnaire  .draggable-item {
    padding: 10px;
    margin: 5px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
  }
  
.create-questionnaire  .drop-placeholder {
    padding: 20px;
    text-align: center;
    color: #999;
  }
  
.create-questionnaire  .ghost {
    opacity: 0.5; /* 拖动中的透明度 */
  }
  
.create-questionnaire  .chosen {
    background-color: lightblue; /* 选择中的背景色 */
  }

.create-release .section .form-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 16px;
  line-height: 40px;
}
.create-release .section .form-section + .form-section {
  margin-top: 20px;
}
.create-release .section .form-section-break {
  display: block;
}
.create-release .section .form-section-break .form-label {
  width: 100%;
  margin-bottom: 8px;
}
.create-release .section .form-section-break .form-content {
  width: 100%;
}
.create-release .section .form-check-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 16px;
  line-height: 25px;
}
.create-release .section .form-check {
  min-width: 130px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.create-release .section-a {
  min-height: 400px;
}
.create-release .section-a .section-header {
  margin-bottom: 22px;
}
.create-release .section-a .section-header .title {
  padding-left: 0;
}
.create-release .section-a .section-header .title:before {
  display: none;
}
.create-release .l-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-top: 24px;
  margin-top: 24px;
}
.create-release .l-footer .btn-back {
  width: 142px;
  height: 42px;
  font-size: 16px;
  line-height: 42px;
  margin-right: auto;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.create-release .l-footer .btn-back .icon-back {
  background-size: 20px auto;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-back-black.svg);
  margin-right: 4px;
}
.create-release .l-footer .btn-primary {
  width: 142px;
  height: 42px;
  font-size: 18px;
  line-height: 42px;
  margin-left: auto;
}
.create-release .l-footer .btn-primary .icon-next {
  background-size: 20px auto;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-next-white.svg);
  margin-left: 8px;
}

.mobile-hosting-center .plus-header {
  padding-top: 45px;
}
.mobile-hosting-center .site-header {
  height: 45px;
}
.mobile-hosting-center .site-header .logo {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 10;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.mobile-hosting-center .site-footer {
  font-size: 12px;
  line-height: 16px;
  padding: 15px 0;
}
.mobile-hosting-center .site-content {
  min-height: calc(100svh - 46px);
}
.mobile-hosting-center .modal-content {
  border-radius: 0;
  padding: 0;
}
.mobile-hosting-center .modal .btn-close {
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: #05A1AE;
  background-image: url(../images/modal-close.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px auto;
}
.mobile-hosting-center .choose-modal .modal-dialog {
  max-width: 325px;
}
.mobile-hosting-center .choose-modal .modal-content {
  background-color: #fff;
}
.mobile-hosting-center .choose-modal .title {
  font-size: 20px;
  line-height: 50px;
  font-weight: 500;
  padding: 0 20px;
  border-bottom: 1px solid #666;
}
.mobile-hosting-center .choose-modal .list {
  padding: 0px;
}
.mobile-hosting-center .choose-modal .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin:20px;
}
.mobile-hosting-center .choose-modal .item:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .mobile-hosting-center .choose-modal .item:hover {
    filter: brightness(1.1);
  }
}
.mobile-hosting-center .choose-modal .item + .item {
  margin-top: 20px;
}
.mobile-hosting-center .choose-modal .item .image {
  position: relative;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 1px solid #C4C4C4;
  overflow: hidden;
}
.mobile-hosting-center .choose-modal .item .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.mobile-hosting-center .choose-modal .item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile-hosting-center .choose-modal .item .main-text {
  padding-left: 16px;
  width: calc(100% - 75px);
  font-size: 17px;
  line-height: 30px;
  color: #666;
}
.mobile-hosting-center .album-modal .modal-dialog {
  max-width: 325px;
}
.mobile-hosting-center .album-modal .modal-content {
  background-color: #fff;
}
.mobile-hosting-center .album-modal .title {
  font-size: 20px;
  line-height: 50px;
  font-weight: 500;
  padding: 0 20px;
  border-bottom: 1px solid #666;
}
.mobile-hosting-center .album-modal .list {
  padding: 0px;
}
.mobile-hosting-center .album-modal .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: calc(100% / 2 - 7px* 2);
  margin: 7px;
}
.mobile-hosting-center .album-modal .item:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .mobile-hosting-center .album-modal .item:hover {
    filter: brightness(1.1);
  }
}
.mobile-hosting-center .album-modal .item + .item {
  margin:7px;
}
.mobile-hosting-center .album-modal .item .image {
  position: relative;
  width: 300px;
  height: 135px;
  border: 1px solid #C4C4C4;
  overflow: hidden;
}
.mobile-hosting-center .album-modal .item .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.mobile-hosting-center .album-modal .item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile-hosting-center .album-modal .item .main-text {
  padding-left: 16px;
  width: calc(100% - 75px);
  font-size: 17px;
  line-height: 30px;
  color: #666;
}
.album-modal .album-tool .btn-primary {
    width: 100%;
    height: 37px;
    font-size: 16px;
    line-height: 37px;
    padding: 10px;
    margin: 5px;
}
.album-modal .album-tool .btn-secondary {
    width: 100%;
    height: 37px;
    font-size: 16px;
    line-height: 37px;
    background-color: #ED8989;
    margin: 5px;
}
.mobile-hosting-center .page-choose {
  position: relative;
  width: 100vw;
  height: calc(100svh - 45px);
  overflow: hidden;
}
.mobile-hosting-center .page-choose img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile-hosting-center .menu-panel .back {
  color: #999;
  padding: 16px 20px;
  display: block;
  font-size: 15px;
  line-height: 22px;
}
.mobile-hosting-center .menu-panel .back:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .mobile-hosting-center .menu-panel .back:hover {
    filter: brightness(1.1);
  }
}
.mobile-hosting-center .main-menu {
  font-size: 18px;
  line-height: 26px;
}
.mobile-hosting-center .main-menu a {
  color: #333;
  padding: 16px 20px;
  display: block;
  border-bottom: 1px solid #999;
}
.mobile-hosting-center .main-menu a:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .mobile-hosting-center .main-menu a:hover {
    filter: brightness(1.1);
  }
}
.mobile-hosting-center .main-menu .collapse-toggle {
  color: #05A1AE;
  font-weight: 500;
  border-bottom: 4px solid #05A1AE;
  position: relative;
}
.mobile-hosting-center .main-menu .collapse-toggle .icon-arrow_down {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 24px;
  height: 24px;
  background-image: url(../images/icon-arrow_down.svg);
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: center center;
}
.mobile-hosting-center .page .section {
  position: relative;
}
.mobile-hosting-center .page .section-header {
  position: relative;
  margin-bottom: 24px;
}
.mobile-hosting-center .page .section-content {
  margin-bottom: 24px;
}
.mobile-hosting-center .page .section .title {
  color: #05A1AE;
  font-size: 20px;
  line-height: 29px;
  font-weight: 500;
  position: relative;
  padding-left: 24px;
}
.mobile-hosting-center .page .section .title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 30px;
  border-radius: 50px;
  background-color: #05A1AE;
}

.page-index_m {
  padding-bottom: 40px;
}
.page-index_m .container {
  max-width: 375px;
}
.page-index_m .index-user {
  position: relative;
  padding: 20px 0;
}
.page-index_m .index-user:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: white;
  background: linear-gradient(0deg, #ffffff 0%, #90c9cb 100%);
  z-index: 0;
}
.page-index_m .index-user .image {
  position: relative;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.page-index_m .index-user .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.page-index_m .index-user .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-index_m .index-user .content {
  position: relative;
}
.page-index_m .index-user .main-text {
  font-size: 20px;
  line-height: 29px;
  font-weight: 500;
  color: #333;
  text-align: center;
}
.page-index_m .index-user .sub-text {
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  color: #333;
  text-align: center;
}
.page-index_m .index-user .btn-camera {
  position: absolute;
  top: -45px;
  left: calc(50% + 75px / 4);
  width: 32px;
  height: 32px;
  background-color: #6CBCBF;
  border-radius: 50%;
  padding: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.page-index_m .index-user .btn-camera .icon-camera {
  background-image: url(../images/icon-camera.svg);
  background-repeat: no-repeat;
  background-size: 32px auto;
  width: 32px;
  height: 32px;
}
.page-index_m .index-user .btn-camera:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .page-index_m .index-user .btn-camera:hover {
    filter: brightness(1.1);
  }
}
.page-index_m .section-header {
  margin-bottom: 17px;
}
.page-index_m .section-header__right {
  position: absolute;
  top: 0;
  right: 0;
}
.page-index_m .section-header__right a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  color: #05A1AE;
  font-size: 16px;
  line-height: 30px;
}
.page-index_m .section-header__right a:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .page-index_m .section-header__right a:hover {
    filter: brightness(1.1);
  }
}
.page-index_m .section-header__right .icon-arrow {
  background-image: url(../images/icon-arrow_rigth.svg);
  width: 16px;
  height: 16px;
}
.page-index_m .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.page-index_m .item a {
  display: block;
}
.page-index_m .item + .item {
  margin-top: 20px;
}
.page-index_m .item .image {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.page-index_m .item .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.page-index_m .item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-index_m .item .content {
  padding-left: 12px;
  width: calc(100% - 100px);
}
.page-index_m .item .main-text {
  font-size: 14px;
  line-height: 20px;
  color: #666;
}
.page-index_m .item .main-text a:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .page-index_m .item .main-text a:hover {
    filter: brightness(1.1);
  }
}
.page-index_m .item .icon-pin {
  background-image: url(../images/icon-pin-gray.svg);
  background-repeat: no-repeat;
  background-size: 24px auto;
  width: 24px;
  height: 24px;
}
.page-index_m .item .info-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #C4C4C4;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 5px;
}
.page-index_m .item .info-group .icon-pin {
  margin-left: -4px;
}
.page-index_m .item .location {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 8px;
}

.page-events_m {
  padding-bottom: 40px;
}
.page-events_m .container {
  max-width: 375px;
}
.page-events_m .events-user {
  position: relative;
  padding: 20px 0;
}
.page-events_m .events-user .container {
  max-width: 375px;
  padding: 0 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.page-events_m .events-user .image {
  position: relative;
  width: 60px;
  height: 60px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.page-events_m .events-user .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.page-events_m .events-user .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-events_m .events-user .content {
  position: relative;
  width: calc(100% - 60px);
  padding-left: 20px;
}
.page-events_m .events-user .main-text {
  font-size: 20px;
  line-height: 29px;
  font-weight: 500;
  color: #333;
}
.page-events_m .events-user .sub-text {
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  color: #333;
}
.page-events_m .events-top {
  margin: 0 auto 24px;
}
.page-events_m .events-top .container {
  max-width: 365px;
  padding: 0 25px;
}
.page-events_m .events-top .image {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.page-events_m .events-top .content {
  position: relative;
  font-size: 14px;
  line-height: 20px;
}
.page-events_m .events-top .main-text {
  color: #666;
}
.page-events_m .events-top .date {
  color: #C4C4C4;
}
.page-events_m .events-top .action {
  margin-top: 15px;
}
.page-events_m .events-top .btn-primary {
  position: relative;
  width: 100%;
  height: 40px;
  background-color: #05A1AE;
  border-radius: 8px;
  padding: 0;
  line-height: 40px;
  font-size: 16px;
}
.page-events_m .events-top .btn-primary .icon-scan {
  background-image: url(../images/icon-qrcode_scan.svg);
  background-repeat: no-repeat;
  background-size: 24px auto;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.page-events_m .events-main {
  position: relative;
  padding-top: 26px;
}
.page-events_m .events-main:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: white;
  background: linear-gradient(0deg, #ffffff 0%, #efefef 100%);
  z-index: 0;
}
.page-events_m .events-main .container {
  max-width: 365px;
  padding: 0 25px;
}
.page-events_m .events-main .section + .section {
  margin-top: 24px;
}
.page-events_m .events-main .item {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
}
.page-events_m .events-main .item + .item {
  margin-top: 24px;
}
.page-events_m .events-main .item-header {
  background-color: #90C9CB;
  font-size: 15px;
  line-height: 32px;
  color: #fff;
}
.page-events_m .events-main .item-header-gray {
  background-color:#bababa;
  font-size: 15px;
  line-height: 32px;
  color: #fff;
}
.page-events_m .events-main .item-content {
  padding: 8px;
}
.page-events_m .events-main .item .block-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: -12px;
}
.page-events_m .events-main .item .block-group .block {
  margin: 12px;
  width: calc(50% - 12px * 2);
  position: relative;
}
.page-events_m .events-main .item .block-group .block:before {
  content: "";
  position: absolute;
  top: 0;
  left: -12px;
  width: 1px;
  height: calc(100% - 6px);
  background-color: #707070;
}
.page-events_m .events-main .item .block-group .block + .block {
  margin: 12px;
}
.page-events_m .events-main .item .text-lg {
  font-size: 20px;
  line-height: 29px;
  font-weight: 500;
}
.page-events_m .events-main .item .text-md {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}
.page-events_m .events-main .item .number-lg {
  font-size: 30px;
  line-height: 44px;
  font-weight: 900;
}
.page-events_m .events-main .item .text-small {
  font-size: 12px;
  line-height: 15px;
}
.page-events_m .events-main .item-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: -12px;
  margin-top: 12px;
}
.page-events_m .events-main .item-group .item {
  margin: 12px;
  width: calc(50% - 12px * 2);
}
.page-events_m .events-main .item-group .item + .item {
  margin: 12px;
}
.page-events_m .events-main table {
  font-size: 15px;
  padding:0px;
  margin: 0px;
}
.page-events_m .events-main th {
  border-bottom: 2px #eee solid;
  font-weight: bold;
  color:#333;
}
.page-events_m .events-main td {
  color:#333;
}
.page-scan_m {
  position: relative;
  width: 100vw;
  height: calc(100svh - 45px);
  overflow: hidden;
}
.page-scan_m .container {
  position: static;
}
.page-scan_m img {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 2000px;
  height: 2000px;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  max-width: initial;
}
.page-scan_m .scan-main {
  position: absolute;
  top: 40%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  height: 330px;
  width: 210px;
  text-align: center;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.page-scan_m .scan-main .top-text {
  font-size: 17px;
  line-height: 24px;
}
.page-scan_m .scan-main .main-text {
  font-size: 20px;
  line-height: 27px;
}

@media (hover: none) {
  a:hover {
    color: inherit;
}
	
.page-main{
	width:100%;
}
.scan-main {
    margin: -26px -20px 0px -20px;
}
.scan-main .main-text {
    color: #FFF !important;!i;!;
    position: relative;
    top: -100px;
    text-align: center;
}
.scan-main .top-text {
    color: #FFF !important;!i;!;
    position: relative;
    top: 80px;
    z-index: 1000;
    text-align: center;
}
.member-camera {
    position: relative;
    height: calc(100svh - 80px - 55px);
    overflow: hidden;
    margin: -20px -25px -30px;
}
.member-camera .scan-main {
    position: absolute;
    top: 34%;
    left: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    height: 347px;
    width: 230px;
    text-align: center;
    color: #fff;
    font-size: 17px;
    line-height: 24px;
    padding-top: 238px;
}
.scan-modal .modal-dialog {
  max-width: 225px;
}
.scan-modal .modal-content {
  border-radius: 20px;
  padding: 20px;
  min-height: 225px;
}
.scan-modal img {
  max-width: 75px;
  margin: 24px auto;
}
.scan-modal .main-text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  text-align: center;
  color: #44BAB1;
}
.scan-modal .text-lg {
  font-size: 25px;
  line-height: 35px;
}
}


/* 套件CSS更新-AlbumModal */

.filepond--root .filepond--drop-label {
min-height: 5em !important;
border-radius:10px !important;
padding-top: 20px !important;
}

.filepond--label-action {
text-decoration-color: #05a1ae !important;
}

.filepond--drop-label {
background-color: #eef9f8 !important;
}

.filepond-limit {
	color:#ED8989 !important;
	font-size: 14px !important;
}

.upload-container{
	padding:0px !important;
}

/* 套件CSS更新-sweetalert2 */

.swal2-styled.swal2-confirm {
background-color: #05a1ae !important;
}

.swal2-icon.swal2-success .swal2-success-ring{
border:.25em solid rgba(5, 161, 174, .3) !important;
}

.swal2-success-line-tip{
background-color: #05a1ae !important;
}

.swal2-success-line-long{
background-color: #05a1ae !important;
}

.swal2-popup {
border-radius: 0px !important;
}

.swal2-icon.swal2-success {
border-color:#05a1ae !important;
color: #05a1ae !important;
}

.p-autocomplete:not(.p-disabled).p-focus .p-autocomplete-multiple-container {
    outline: 1px solid #ced4da;
    background: #FFF;
}

.p-autocomplete-multiple-container.p-component.p-inputtext {
    padding: 8px 20px;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    background-color: #EEF9F8;
    border: 0;
    border-radius: 10px !important;
    overflow: hidden;
    width: 800px;
}

.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-input-token input::placeholder{
	color:#333 !important;
}

.p-autocomplete-panel {
    box-shadow: 0 0px 6px 2px rgba(0, 0, 0, 0.1);
}

.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item {
	color:#666;
	padding:8px 20px !important;
	background-color: #FFF;
}

.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:hover {
	background-color: #FFF;
}

.p-autocomplete-empty-message{
	color:#666;
	padding:0.5rem 0.75rem !important;
	background-color: #FFF;
}

.p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:hover {
	background-color: #FFF;
}

.p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token {
	background-color: transparent;
}

.ql-editor p {
    font-size: 16px;
}

@media (min-width: 1600px) {
    .hosting-center .page {
        max-width: 70%;
    }
	.page-events_create .section-top .nav-pills {
		max-width: 70%;
	}
}

/* 套件CSS更新-datepicker */

.dp__input_reg {
	padding: 8px 40px !important;
	font-size: 16px !important;
    line-height: 24px !important;
    color: #333 !important;
    background-color: #EEF9F8 !important;
    border: 0 !important;
    border-radius: 10px !important;
    box-shadow: none;
    overflow: hidden;
}

.dp__input_icon {
	color:#05A1AE !important;
}

.dp__menu.dp__menu_index.dp__theme_light {
    box-shadow: 0 0px 6px 2px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px;
	border:0px;
}

.dp__date_hover_end:hover, .dp__date_hover_start:hover, .dp__date_hover:hover {
	order-radius: 50% !important;
}

.dp__today {
    border: 0px !important;
    border-radius: 50% !important;
    color: #FFF;
    background-color: #05A1AE;
}

.dp__calendar_header_item {
	margin-bottom:10px;
}

.dp__action_buttons .dp__action_select {
    background: #05A1AE !important;
    border-radius: 35px !important;
	height:35px !important ;
	padding:8px 15px !important;
	font-size: 15px !important;
	margin: 5px !important;
}

.dp__action_cancel {
    color: #FFF !important;
    border: 0px !important;
    border-radius: 35px !important;
    background: #999 !important;
	height:35px !important ;
	padding:8px 15px !important;
	font-size: 15px !important;
	margin: 5px !important;
}

.dp__action_select:hover, .dp__action_cancel:hover{
filter: brightness(1.1);
}

.dp__action_button {
	padding: 10px;
    margin: 5px;
}

.dp__btn.dp__button:hover{
	background-color:transparent !important;
}

.dp__range_end, .dp__range_start, .dp__active_date {
    background: #FFF !important;
    color: #05A1AE !important;
	border:1px #05A1AE solid !important;
    border-radius: 50% !important;
}

.dp__cell_inner.dp__pointer.dp--past.dp__date_hover {
	border-radius: 50% !important;
}

.dp__cell_inner.dp__pointer.dp--future.dp__date_hover{
	border-radius: 50% !important;
}

.dp__cell_inner {
	margin:3px;
}

.dp__action_button.dp__action_select:hover {
    background: #000;
}

.dp__month_year_select{
    font-weight: bold !important;
}

.dp__btn.dp__month_year_select:hover{
    background: #FFF;
	color: #05A1AE;
}

.dp__arrow_bottom, .dp__arrow_top {
	display:none;
}

.dp__time_display.dp__time_display_block.dp--time-overlay-btn {
    background-color: #FFF !important;
}

.dp__btn.dp__inc_dec_button:hover {
    background-color: #FFF;
    color: #05A1AE;
}

.dp__overlay_cell_active {
	background: #EEF9F8 !important;
    color: #05A1AE !important;
}

.dp__button {
	width:300px !important;
}

.dp__inner_nav {
    background: #FFF;
    color: #05A1AE;
}

.dp__inner_nav:hover {
    background: #FFF;
    color: #333;
}

.dp__input_icons{
	color:#05A1AE !important;
	width:1.2rem !important;
	height:1.2rem !important;
}

.announcement {
	display: table;
	max-width:1300px;
	height: 100vh;
	margin: 0 auto;
	padding:25px;
	text-align: center;
}

.announcement img{
	margin:0 auto;
}

.announcement a{color: #00acbb; text-decoration: none;}
.announcement a:hover{color: #00acbb; text-decoration: none;}

.announcement .content{
	display: table-cell;
    text-align: center;
    vertical-align: middle;
	position: relative;
}

.announcement .main-text{
	font-size: 36px;
    line-height: 48px;
    margin:30px 0;
	color:#FFF;
}

.announcement .sub-text {
    font-size: 16px;
    line-height: 32px;
	color:#FFF;
}

.announcement .small-text {
	margin-top:20px;
    font-size: 14px;
    line-height: 26px;
	color:#FFF;
}

.announcement .intro {
	margin-top:20px;
    font-size: 14px;
    line-height: 26px;
	color:#FFF;
	text-align:justify;
}

.announcement .btn{
	color:#00acbb;
	padding:8px 15px;
	background-color:#FFF;
	border-radius: 30px;
	font-size: 20px;
	margin:0 auto;
	width:200px;
}
	
.announcement .btn:hover {
  transform: scale(1.1);
}

.announcement input[type="checkbox"]{
	width:25px;
	height: 25px;
	margin-right:20px;
}

.divider {
      width: 100%;
      margin: 30px auto;
      border: none;
      height: 1px;
      background-color: #FFF;
      position: relative;
    }

@media (max-width: 767px) {
	.announcement .content{
    text-align: left;
	position: relative;
}
	.announcement .main-text{
	text-align: center;	
	font-size: 30px;
    line-height: 36px;
    margin-bottom: 20px;
	color:#FFF;
}
	.announcement .sub-text {
    font-size: 14px;
    line-height: 22px;
	color:#FFF;
	text-align: justify;
}
	.announcement .small-text {
	margin-top:20px;
    font-size: 14px;
    line-height: 18px;
	color:#FFF;
}
	.announcement .btn{
	width:100%;
	margin:20px 0;
}
}


