@charset "UTF-8";
@import url("/assets/fonts/nanum-gothic/nanumgothic.css");
@import url("/assets/fonts/s-core/s-core.css");
html,
body {
  height: 100%;
}

html {
  overflow-y: scroll;
  -webkit-text-size-adjust: none;
}

html.noScroll {
  overflow: hidden;
}

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,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
figure,
figcaption,
hgroup {
  margin: 0;
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
select,
textarea,
input,
label,
button {
  word-break: keep-all;
  color: #757575;
  font-size: 13px;
  font-family: "Nanum Gothic", Dotum, Arial, Helvetica, sans-serif;
  font-weight: normal;
  line-height: 1.6;
}

article,
aside,
hgroup,
header,
footer,
figure,
figcaption,
nav,
section,
time,
mark,
canvas,
video,
audio,
details,
summary {
  display: block;
  margin: 0;
  padding: 0;
}

iframe {
  border: none;
}

iframe.pop {
  width: 100%;
}

iframe.affiliates,
iframe.affiliatelist,
iframe.recruitlist {
  width: 100%;
  height: 293px;
  vertical-align: top;
  background: transparent;
  visibility: hidden;
}

iframe.jobs {
  width: 100%;
  height: 417px;
  vertical-align: top;
  background: transparent;
  visibility: hidden;
}

li {
  list-style: none;
  word-break: keep-all;
}

/* Space */
hr {
  clear: both;
  display: block;
  visibility: hidden;
  width: 1px;
  height: 40px !important;
  font-size: 0;
  line-height: 0;
}

/* Basic */
img {
  border: 0;
}

mark {
  display: inline-block;
  background-color: transparent;
}

small {
  font-size: 12px;
}

em,
address,
del,
small {
  font-style: normal;
}

.color-gray {
  color: #999;
}

.color-lightgray {
  color: #eee;
}

.no-border {
  border: none !important;
}

.clear {
  clear: both;
}

.hover-opc {
  opacity: 1;
  transition: 0.3s all;
}

.hover-opc:hover {
  opacity: 0.7;
  transition: 0.3s all;
}

textarea {
  scrollbar-base-color: #e4a8ae;
  scrollbar-arrow-color: #fff;
}

textarea::-webkit-scrollbar {
  width: 2px;
}

textarea::-webkit-scrollbar-track {
  background-color: #eaeaea;
  border-left: 1px solid #ccc;
}

textarea::-webkit-scrollbar-thumb {
  background-color: #de848c;
}

textarea::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}

.bg-primary {
  background: #e31a4c !important;
}

.bg-primary.bordered {
  border: 1px solid #e31a4c !important;
}

button {
  cursor: pointer;
}

.phone-icon {
  border-radius: 8px;
}

.bold {
  font-weight: bold;
}

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  /* Safari */
  /* Konqueror HTML */
  /* Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.relative {
  position: relative;
}

input[readonly] {
  background: #f9f9f9 !important;
}

input:focus {
  outline: none;
}

::selection {
  text-shadow: none;
  color: #e31a4c;
}

.select2-container {
  min-width: 70px;
}

.select2-container--default .select2-selection--single {
  min-width: 70px;
}

.bold {
  font-weight: bold;
}

#loading {
  display: none;
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0) url("/assets/images/ajax_loading.gif") 50% 50% no-repeat;
  background-size: 50px;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

button:focus {
  outline: none;
}

/* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.8) url("http://i.stack.imgur.com/FhHRx.gif") 50% 50% no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading2 {
  overflow: hidden;
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading2 .modal {
  display: block;
}

.color-red {
  color: #ee4352 !important;
}

.font-sm {
  font-size: 12px;
}

ul li {
  font-size: 13px;
  line-height: 1.2em;
}

textarea {
  resize: none;
  text-align: left;
  padding: 10px;
  background: #fff;
  font-size: 13px;
  line-height: 20px;
  outline: none;
}

textarea:read-only {
  background: #fafafa !important;
}

.color-white {
  color: #fff !important;
}

.disable-scroll {
  /* disable scrollbar on both x and y axis */
  overflow: hidden;
  /* disable scrollbar on x-axis only */
  overflow-x: hidden;
  /* disable scrollbar on y-axis only */
  overflow-y: hidden;
  /* disable scroll */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* OPTIONAL: none of dom element will be click-able */
  pointer-events: none;
}

.grayLayer {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1079;
}

[class^="modal-"] {
  border: 1px solid #eee;
  padding: 30px;
  display: none;
  position: absolute;
  z-index: 1080;
  box-sizing: border-box;
  background: #fff;
}

[class^="modal-"] .relative-box {
  position: relative;
  width: 100%;
  height: 100%;
}

[class^="modal-"] .relative-box .close {
  position: absolute;
  top: -33px;
  right: -90px;
  width: 49px;
  height: 49px;
  background: url("/assets/images/mobile/right_close.png") center center no-repeat;
  cursor: pointer;
}

[class^="modal-"] .relative-box .close:hover {
  opacity: 0.7;
}

.form-error.valid {
  margin: 0 !important;
}

.profile-round {
  border-radius: 50%;
}

.sub-color {
  color: #de848c !important;
}

.form-error {
  text-align: left;
  color: #ff5a5f;
  font-size: 13px;
}

.bd-red {
  border-color: #f3cbcc !important;
}

.w25 {
  width: 25% !important;
}

.w30 {
  width: 30% !important;
}

.w33 {
  width: 33.3% !important;
}

.w66 {
  width: 66.6% !important;
}

.w40 {
  width: 40% !important;
}

.w50 {
  width: 50% !important;
}

.w60 {
  width: 60% !important;
}

.w70 {
  width: 70% !important;
}

.w100 {
  width: 100% !important;
}

.fsz-12 {
  font-size: 12px !important;
}

.fsz-13 {
  font-size: 13px !important;
}

.upper-case {
  text-transform: uppercase;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  font-size: 14px;
}

.select2-results__option[aria-selected] {
  font-size: 14px;
  text-align: left;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 14px;
}

.select2-results__option {
  font-size: 14px;
}

.pt-10 {
  padding-top: 10px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pd-10 {
  padding: 10px !important;
}

.pd-20 {
  padding: 20px !important;
}

.pd-30 {
  padding: 30px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.display-block {
  display: block !important;
}

.display-none {
  display: none !important;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

.tal {
  text-align: left !important;
}

.fll {
  float: left;
}

.flr {
  float: right;
}

.inline-block {
  display: inline-block;
}

.ovh {
  overflow: hidden;
}

.ovi {
  overflow: initial !important;
}

.base-container {
  width: 1200px;
  margin: 0 auto;
}

.outer-container {
  width: 1597px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.upper-bar {
  border-top: 6px solid #e11a4d;
  height: 8px;
  width: 95%;
  margin: auto;
}

.layout-container {
  background: #ccc;
}

ul {
  display: inline-block;
  overflow: hidden;
}

.blur {
  -moz-filter: blur(2px);
  -o-filter: blur(2px);
  -ms-filter: blur(2px);
  filter: blur(2px);
}

a {
  text-decoration: none;
}

ul {
  overflow: hidden;
}

@media print {
  .no-print {
    display: none;
  }
}

.card-button {
  display: inline-block;
  background: #ed174a;
  color: #fff;
  border-radius: 25px;
  padding: 0px 15px;
  font-size: 12px;
  margin-bottom: 11px;
  box-shadow: 0 2px 0 #c5376d, 0 2px 2px rgba(0, 0, 0, 0.35);
  color: #fff;
}

.fixed-counsel {
  position: fixed;
  right: -4px;
  top: 0;
  z-index: 99;
  height: 100vh;
  background: #f5f5f5;
  border: 1px solid #ccc;
}

.fixed-counsel .border {
  border-top: 0;
  background: transparent;
  width: 100px;
}

.fixed-counsel .card-img {
  display: inline-block;
  width: 90px;
}

.fixed-counsel .title-area {
  padding: 30px 15px;
  border-bottom: 1px solid #ccc;
  text-align: center;
  background: #333;
  color: #fff;
  position: relative;
}

.fixed-counsel .title-area img {
  vertical-align: middle;
  display: inline-block;
  margin: auto;
  width: 40%;
  margin-bottom: 10px;
}

.fixed-counsel .title-area .event-flag {
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 125px;
  width: 70px;
}

.fixed-counsel .title-area .title-text {
  text-align: center;
  font-family: "s-core";
  display: inline-block;
  color: #fff;
  font-size: 13px;
  vertical-align: sub;
  font-weight: bold;
  padding-bottom: 3px;
  line-height: 18px;
}

.fixed-counsel .nav-area {
  width: 100%;
  display: block;
}

.fixed-counsel .nav-area li {
  cursor: pointer;
  padding: 20px 15px;
  border-bottom: 1px solid #ccc;
  text-align: center;
}

.fixed-counsel .nav-area li:hover {
  opacity: 0.7;
}

.fixed-counsel .nav-area li img {
  display: inline-block;
  width: 40%;
  margin-bottom: 10px;
}

.fixed-counsel .nav-area li span {
  display: block;
  font-family: "s-core";
  color: #434343;
  font-size: 12px;
  letter-spacing: -0.5px;
  text-align: center;
}

.fixed-counsel .nav-area li .phone-textbox .text1 {
  margin-bottom: 5px;
}

.fixed-counsel .nav-area li .phone-textbox .text1 a {
  letter-spacing: -0.5px;
  color: #e31a4c;
  font-size: 13px;
  font-weight: bold;
}

.fixed-counsel .nav-area li .phone-textbox .text2 {
  font-size: 11px;
}

.fixed-counsel .phone-area {
  padding: 10px 3px;
  background: #e11c4a;
  text-align: center;
}

.fixed-counsel .phone-area a {
  text-align: center;
  color: #fff;
  font-size: 13px;
  letter-spacing: -1px;
  font-weight: bold;
}

.logo-bg {
  position: absolute;
  top: -4px;
  left: -114px;
  width: 308px;
  z-index: -1;
}

.corona-floating {
  position: absolute;
  right: -100px;
  top: 10px;
}

.icon-header {
  overflow: hidden;
  padding-bottom: 10px;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.icon-header > div {
  display: inline-block;
  float: none !important;
}

.icon-header .icon-box {
  width: 33.3%;
  float: left;
  text-align: left;
}

.icon-header .icon-box img:first-child {
  margin-right: 10px;
}

.icon-header .icon-box ul li {
  float: left;
  margin-right: 15px;
}

.icon-header .icon-box ul li:last-child {
  margin-right: 0;
}

.icon-header .icon-box ul li a {
  display: inline-block;
  padding-top: 4px;
  color: #9da6ab;
}

.icon-header .icon-box ul li a img {
  width: 15px;
}

.icon-header .icon-box ul li .branch-link {
  padding: 4px 8px;
  border-radius: 4px;
  margin-right: 0;
  font-size: 14px;
  background: #e9e9e9;
  color: #9da6ab;
  transition: all 0.3s;
}

.icon-header .icon-box ul li .branch-link:hover {
  transition: all 0.3s;
  background: #e11a4d;
  color: #fff;
}

.icon-header .icon-box ul li .branch-link:hover .color-red {
  color: #fff !important;
}

.icon-header .icon-box ul li .branch-link .color-red {
  color: #e31a4c;
}

.icon-header .logo-box {
  width: 30%;
  float: left;
}

.icon-header .right-menu {
  width: 33.3%;
  float: right;
  text-align: right;
}

.icon-header .right-menu ul {
  position: absolute;
  right: 0;
  bottom: 10px;
  overflow: visible;
}

.icon-header .right-menu ul li {
  display: inline-block;
  position: relative;
  line-height: 35px;
}

.icon-header .right-menu ul li .balloon-hover {
  margin-right: 10px;
  width: 43px;
  height: 52px;
  background: url(/assets/images/front/icons/counsel.png) no-repeat;
  background-position: bottom center;
  display: inline-block;
  transition: all 0.3s;
}

.icon-header .right-menu ul li .balloon-hover:hover {
  transition: all 0.3s;
}

.icon-header .right-menu ul li .balloon {
  z-index: 11;
  position: absolute;
  opacity: 0;
  top: 30px;
  left: -17px;
  width: 76px;
  height: 27px;
  background: url(/assets/images/front/icons/balloon.png) no-repeat;
  background-position: top center;
  padding-top: 10px;
  font-size: 11px;
  color: #fff;
  text-align: center;
  transition: all 0.3s;
}

.icon-header .right-menu ul li:hover .balloon {
  opacity: 1;
  top: 52px;
  transition: all 0.3s;
}

.header-top {
  height: 1px;
  width: 100%;
  border-top: 1px solid #ccc;
}

.header-bottom {
  height: 1px;
  width: 100%;
  border-bottom: 1px solid #bdbdbd;
}

.third-header-container {
  width: 100%;
  position: absolute;
  border-bottom: 0;
  height: 0;
  transition: height 0.3s;
  z-index: 10;
  overflow: hidden;
}

.third-header-container.active {
  height: 265px;
  border-bottom: 1px solid #ccc;
  transition: height 0.3s;
}

.third-header {
  overflow: hidden;
  width: 100%;
}

.third-header ul {
  padding-top: 10px;
  padding-bottom: 10px;
  background: #fff;
  height: 254px;
  width: 200px;
  float: left;
  overflow: hidden;
  text-align: center;
  opacity: 0.9;
}

.third-header ul.active {
  background: #ff0042;
}

.third-header ul.active li a p {
  color: #fff;
}

.third-header ul li a p {
  color: #777;
  font-size: 14px;
  letter-spacing: -0.5px;
  padding-bottom: 10px;
  padding-top: 10px;
}

.third-header ul li a p.active {
  text-decoration: underline;
}

.third-header ul li a p:hover {
  text-decoration: underline;
}

.header {
  box-sizing: border-box;
  z-index: 10;
  text-align: center;
}

.header .logo {
  width: 202px;
  float: left;
  margin-left: 10px;
  position: relative;
}

.header .logo a {
  width: 202px;
  height: 60px;
  display: inline-block;
}

.header .logo a img {
  position: absolute;
  top: -13px;
  left: 20px;
}

.header .bg-header {
  z-index: 10;
  position: absolute;
  left: 0;
  top: 103px;
  background: #fff;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.header .bg-header.active {
  transition: all 0.3s;
  height: 190px;
}

.header ul.navigation {
  overflow: inherit;
  height: 44px;
  width: 100%;
}

.header ul.navigation > li {
  float: left;
  cursor: pointer;
  margin-right: 2px;
  width: 198px;
}

.header ul.navigation > li:last-child a:before {
  content: "";
}

.header ul.navigation > li > a {
  width: 100%;
  color: #333;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: -0.5px;
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
  padding-top: 10px;
  line-height: 30px;
}

.header ul.navigation > li > a.active {
  color: #e11a4d;
}

.header ul.navigation > li > a:hover:after {
  width: 100%;
  transition: all 0.4s;
}

.header ul.navigation > li > a:after {
  content: "";
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 0%;
  transition: all 0.4s;
}

.header ul.navigation > li > a.active-fix {
  color: #e11a4d;
}

.header ul.navigation > li > a:not(.active-fix):hover {
  transition: all 0.4s;
  color: #e11a4d;
}

.header ul.navigation > li > a:not(.active-fix).active:after {
  content: "";
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  transition: all 0.4s;
  color: #e11a4d;
}

.header ul.navigation > li:last-child a {
  margin-right: 0;
}

.header ul.navigation > li.active > .second-header {
  transition: all 0.45s ease;
  opacity: 1;
  visibility: visible;
}

.header ul.navigation > li.active .arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent #e73158 transparent;
  margin: -61px auto 0 auto;
  cursor: pointer;
  position: absolute;
  bottom: -2px;
  left: 44%;
}

.header ul.navigation > li > .second-header {
  background: #e11c4a;
  z-index: 11;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 162px;
  width: 100%;
  opacity: 0;
}

.header ul.navigation > li > .second-header .base-container {
  overflow: hidden;
  text-align: left;
}

.header ul.navigation > li > .second-header > div > ul > li {
  float: left;
}

.header ul.navigation > li > .second-header > div > ul > li.active {
  transition: all 0.35s;
}

.header ul.navigation > li > .second-header > div > ul > li.active p {
  transition: all 0.35s;
  color: #fff;
}

.header ul.navigation > li > .second-header > div > ul > li > a {
  display: inline-block;
  text-align: center;
  padding: 10px 15px;
}

.header ul.navigation > li > .second-header > div > ul > li > a img {
  width: 100%;
}

.header ul.navigation > li > .second-header > div > ul > li > a p {
  color: #eee;
  display: inline-block;
  font-size: 15px;
  margin-top: 6px;
  padding-bottom: 5px;
  position: relative;
  line-height: 18px;
}

.op5 {
  opacity: 0.5;
  transition: all 0.35s;
}

.op5 p {
  transition: all 0.35s;
  color: #9da6ab;
  border: none;
}

.sub-header {
  border-top: 1px solid #d9d9d9;
  padding-top: 15px;
}

.sub-header ul {
  display: none;
}

.sub-header ul.show {
  display: block;
  text-align: left;
  margin-left: 255px;
}

.sub-header ul > li {
  display: inline-block;
  cursor: pointer;
}

.sub-header ul > li > a {
  margin-left: 10px;
  margin-right: 10px;
  padding-bottom: 3px;
  margin: 0 10px;
  color: #777;
  font-size: 15px;
  line-height: 22px;
  font-family: "Quicksand", sans-serif;
  letter-spacing: -0.5px;
  display: inline-block;
  position: relative;
}

.sub-header ul > li > a:hover:after {
  width: 100%;
  transition: all 0.4s;
}

.sub-header ul > li > a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  border-bottom: 1px solid #e11a4d;
  transition: all 0.4s;
}

.sub-header ul > li > a:hover {
  transition: all 0.4s;
  color: #e11a4d;
}

.sub-header ul > li > a.active {
  color: #e11a4d;
}

.sub-header ul > li > a.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #e11a4d;
  transition: all 0.4s;
}

.layout-footer {
  z-index: 11;
  padding-bottom: 20px;
  overflow: hidden;
}

.layout-footer .button-area .white-button {
  width: 98% !important;
  background: #fff;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 10px;
  font-size: 15px;
  color: #333;
}

.layout-footer .button-area .black-button {
  width: 98% !important;
  background: #333;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 10px;
  font-size: 15px;
  color: #fff;
}

.layout-footer .small-label {
  width: 135px !important;
}

.layout-footer .large-label {
  width: 170px !important;
}

.layout-footer .large-label span {
  font-size: 13px;
  letter-spacing: -1px;
}

.layout-footer .large-label .normal-text {
  font-size: 14px;
  letter-spacing: 0;
}

.layout-footer .menthor-button {
  border-top: 5px solid #e73159;
  position: relative;
}

.layout-footer .menthor-button .arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #e73158 transparent;
  border-width: 55px 100px 0 100px;
  margin: -1px auto -55px auto;
  cursor: pointer;
  transition: border-color 0.5s;
}

.layout-footer .menthor-button .arrow:hover .text {
  transition: all 0.3s;
  opacity: 0.7;
}

.layout-footer .menthor-button .arrow .relative {
  width: 150px;
  height: 80px;
}

.layout-footer .menthor-button .arrow .relative .text {
  position: absolute;
  bottom: 30px;
  left: -36px;
  font-size: 13px;
  line-height: 16px;
  color: #fff;
  text-align: center;
}

.layout-footer .menthor-button .arrow .relative .line {
  display: none;
}

.layout-footer .menthor-button .arrow .plus {
  font-size: 25px;
  position: absolute;
  left: -8px;
  top: -3px;
  color: #fff;
}

.layout-footer .menthor-button .arrow.open {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #e73158 transparent transparent transparent;
  border-width: 55px 100px 0 100px;
  margin: -1px auto -55px auto;
  cursor: pointer;
  transition: border-color 0.5s;
}

.layout-footer .menthor-button .arrow.open .plus {
  display: none;
}

.layout-footer .menthor-button .arrow.open .text {
  bottom: 111px;
}

.layout-footer .menthor-button .arrow.open .line {
  display: block;
  top: -21px;
  left: -9px;
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
}

.layout-footer .menthor-button .arrow-new {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #e73158 transparent transparent transparent;
  border-width: 55px 100px 0 100px;
  margin: -1px auto -55px auto;
  transition: border-color 0.5s;
}

.layout-footer .menthor-button .arrow-new .relative {
  cursor: pointer;
  width: 150px;
  height: 60px;
  margin-left: -77px;
  margin-top: -59px;
}

.layout-footer .menthor-button .arrow-new .relative .text {
  position: absolute;
  left: 45px;
  top: 9px;
  font-size: 13px;
  line-height: 16px;
  color: #fff;
  text-align: center;
}

.layout-footer .menthor-button .arrow-new .relative .line {
  display: none;
}

.layout-footer .menthor-button .arrow-new .plus {
  font-size: 25px;
  position: absolute;
  left: 70px;
  top: 22px;
  color: #fff;
}

.layout-footer .menthor-button .arrow-new .text {
  bottom: 111px;
}

.layout-footer .menthor-button .arrow-new .line {
  display: block;
  left: 68px;
  top: 39px;
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
}

.layout-footer .menthor-button .arrow-new.open .line {
  display: block;
}

.layout-footer .menthor-button .arrow-new.open .plus {
  display: none;
}

.layout-footer .menthor-button.off {
  border-top: none;
}

.layout-footer .menthor-content {
  height: 0;
  margin: 0;
  overflow: hidden;
  transition: margin 0.3s;
}

.layout-footer .menthor-content.open {
  transition: margin 0.3s;
  height: auto;
  margin: 100px 0 70px 0;
}

.layout-footer .menthor-content .name-input::placeholder,
.layout-footer .menthor-content textarea::placeholder {
  color: #ccc !important;
  font-size: 15px;
}

.layout-footer .menthor-content .new-askbox {
  margin-top: 20px;
}

.layout-footer .menthor-content .new-askbox .flr1 {
  padding-top: 17px;
}

.layout-footer .menthor-content .new-askbox .purpose {
  box-sizing: border-box;
  padding-bottom: 5px !important;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
}

.layout-footer .menthor-content .new-askbox .purpose > div {
  font-size: 15px;
  display: inline-block;
  color: #999;
  vertical-align: top;
  line-height: 15px;
}

.layout-footer .menthor-content .new-askbox .purpose > div.line {
  display: block;
}

.layout-footer .menthor-content .new-askbox .purpose .custom-select {
  padding: 0 4px;
}

.layout-footer .menthor-content .new-askbox .purpose .custom-select.fixed-select {
  width: 85px;
}

.layout-footer .menthor-content .new-askbox .purpose .custom-select .show .select-arrow {
  right: -12px;
}

.layout-footer .menthor-content .new-askbox .phone-box .custom-select {
  padding: 0 4px;
}

.layout-footer .menthor-content .new-askbox .phone-box .custom-select .show .select-arrow {
  right: 0;
}

.layout-footer .menthor-content .new-askbox .phone-box input {
  font-size: 15px !important;
  color: #333;
  padding-top: 0 !important;
  background: #fff;
}

.layout-footer .menthor-content .new-askbox .phone-box input::placeholder {
  color: #999;
}

.layout-footer .menthor-content .new-askbox .phone-box p.dash {
  line-height: initial !important;
}

.layout-footer .menthor-content .new-askbox .asktime-box {
  padding-bottom: 5px !important;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
}

.layout-footer .menthor-content .new-askbox .asktime-box .show {
  padding-left: 0 !important;
}

.layout-footer .menthor-content .new-askbox .custom-select {
  display: inline-block;
  position: relative;
  padding: 0 5px;
}

.layout-footer .menthor-content .new-askbox .custom-select .show {
  cursor: pointer;
  position: relative;
  padding: 0 5px;
}

.layout-footer .menthor-content .new-askbox .custom-select .show span {
  font-size: 15px;
  color: #333;
  line-height: 15px !important;
}

.layout-footer .menthor-content .new-askbox .custom-select .show .select-arrow {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  right: -9px;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.layout-footer .menthor-content .new-askbox .custom-select ul.options,
.layout-footer .menthor-content .new-askbox .custom-select ul.branch-options,
.layout-footer .menthor-content .new-askbox .custom-select ul.phone-options {
  display: none;
  position: absolute;
  top: 23px;
  z-index: 10;
  border: 1px solid #ccc;
}

.layout-footer .menthor-content .new-askbox .custom-select ul.options li,
.layout-footer .menthor-content .new-askbox .custom-select ul.branch-options li,
.layout-footer .menthor-content .new-askbox .custom-select ul.phone-options li {
  cursor: pointer;
  padding: 7px 15px;
  font-size: 14px;
  color: #666;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.layout-footer .menthor-content .new-askbox .custom-select ul.options li:last-child,
.layout-footer .menthor-content .new-askbox .custom-select ul.branch-options li:last-child,
.layout-footer .menthor-content .new-askbox .custom-select ul.phone-options li:last-child {
  border-bottom: none;
}

.layout-footer .menthor-content .new-askbox .custom-select ul.options li:hover,
.layout-footer .menthor-content .new-askbox .custom-select ul.branch-options li:hover,
.layout-footer .menthor-content .new-askbox .custom-select ul.phone-options li:hover {
  background: #eee;
}

.layout-footer .menthor-content .new-askbox .custom-select ul.options li {
  width: 100px;
}

.layout-footer .menthor-content .new-askbox .custom-select ul.phone-options {
  left: 0px;
}

.layout-footer .menthor-content .new-askbox .custom-select ul.phone-options li {
  width: 28px;
}

.layout-footer .menthor-content .new-askbox .custom-select ul.branch-options {
  left: 0px;
}

.layout-footer .menthor-content .new-askbox .custom-select ul.branch-options li {
  width: 100px;
}

.layout-footer .menthor-content .new-askbox .agree-box {
  height: 100px;
  overflow: auto;
  text-align: left;
}

.layout-footer .menthor-content .small-label {
  width: 135px !important;
}

.layout-footer .menthor-content .large-label {
  width: 66% !important;
}

.layout-footer .menthor-content .large-label .normal-text {
  font-size: 14px;
  letter-spacing: 0;
}

.layout-footer .menthor-content input.form-error {
  margin-top: 0 !important;
}

.layout-footer .menthor-content input {
  font-size: 16px;
}

.layout-footer .menthor-content input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #e76d6d;
}

.layout-footer .menthor-content input::-moz-placeholder {
  /* Firefox 19+ */
  color: #e76d6d;
}

.layout-footer .menthor-content input:-ms-input-placeholder {
  /* IE 10+ */
  color: #e76d6d;
}

.layout-footer .menthor-content input:-moz-placeholder {
  /* Firefox 18- */
  color: #e76d6d;
}

.layout-footer .menthor-content input[type="text"] {
  background: #f2f2ec;
  box-shadow: none;
  outline: none;
  border: 0;
  vertical-align: top;
  margin-left: -4px;
  padding: 0 20px;
  width: 89%;
  box-sizing: border-box;
  color: #e31a4c;
  margin-top: 0 !important;
}

.layout-footer .menthor-content .menthor-title {
  color: #e31a4c;
  font-size: 27px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

.layout-footer .menthor-content .table-row .fll {
  padding-right: 5px;
  box-sizing: border-box;
}

.layout-footer .menthor-content table {
  margin-bottom: 2px;
  width: 100%;
}

.layout-footer .menthor-content table tr:last-child td {
  border-bottom: 0;
}

.layout-footer .menthor-content table td {
  border-bottom: 2px solid #fff;
}

.layout-footer .menthor-content table .img-box {
  width: 52px;
  vertical-align: middle;
  display: table-cell;
}

.layout-footer .menthor-content table .img-box p {
  font-size: 12px;
  letter-spacing: -0.5px;
  text-align: center;
}

.layout-footer .menthor-content table .subject-name {
  padding: 7px 15px;
  color: #e31a4c;
  font-size: 16px;
  width: 20%;
  box-sizing: border-box;
}

.layout-footer .menthor-content table .label-box {
  box-sizing: border-box;
  margin-bottom: 3px;
  padding: 10px 0;
  width: 88%;
}

.layout-footer .menthor-content table .label-box span {
  margin-left: 5px;
  vertical-align: middle;
}

.layout-footer .menthor-content table .label-box label {
  display: inline-block;
  width: 33.3%;
}

.layout-footer .menthor-content .useless-box {
  border: 6px solid #f2f2ec;
  margin: 15px 0;
}

.layout-footer .menthor-content .img-area {
  box-sizing: border-box;
}

.layout-footer .menthor-content .img-area a {
  width: 100%;
  display: inline-block;
}

.layout-footer .menthor-content .img-area a img {
  width: 100%;
  display: inline-block;
}

.layout-footer .menthor-content .button-area {
  overflow: hidden;
  margin-bottom: 10px;
}

.layout-footer .menthor-content .button-area button {
  width: 100%;
}

.layout-footer .menthor-content .button-area .gray-button {
  border: 2px solid #898989;
  color: #898989;
  text-align: center;
  padding: 10px 0;
  font-size: 17px;
  background: #fff;
  transition: all 0.3s;
}

.layout-footer .menthor-content .button-area .gray-button:hover {
  transition: all 0.3s;
  color: #fff;
  background: #898989;
}

.layout-footer .menthor-content .button-area .primary-button {
  border: 2px solid #df0440;
  color: #df0440;
  text-align: center;
  padding: 10px 0;
  font-size: 17px;
  background: #fff;
  transition: all 0.3s;
}

.layout-footer .menthor-content .button-area .primary-button:hover {
  transition: all 0.3s;
  color: #fff;
  background: #df0440;
}

.layout-footer .menthor-content .agree-box {
  height: 100px;
  overflow: auto;
}

.layout-footer .base-container.inner-footer {
  padding-top: 30px;
}

.layout-footer .base-container.inner-footer .row-2.trunk .left {
  float: left;
  width: 500px;
}

.layout-footer .base-container.inner-footer .row-2.trunk .left .logo-box {
  float: left;
  width: 110px;
}

.layout-footer .base-container.inner-footer .row-2.trunk .left .logo-box img {
  width: 80%;
}

.layout-footer .base-container.inner-footer .row-2.trunk .right {
  float: right;
  width: 645px;
}

.layout-footer .base-container.inner-footer .row-2.trunk .right .logo-box {
  float: left;
  width: 110px;
}

.layout-footer .base-container.inner-footer .row-2.trunk .right .logo-box img {
  width: 80%;
}

.layout-footer .base-container.inner-footer .row-2.branch .logo-box {
  float: left;
  width: 110px;
}

.layout-footer .base-container.inner-footer .row-2.branch .logo-box img {
  width: 80%;
}

.layout-footer .base-container .right-area {
  width: 100%;
  box-sizing: border-box;
}

.layout-footer .base-container .right-area .row-1 {
  margin-bottom: 30px;
}

.layout-footer .base-container .right-area .row-1 > ul {
  display: inline-block;
}

.layout-footer .base-container .right-area .row-1 > ul > li {
  float: left;
}

.layout-footer .base-container .right-area .row-1 > ul > li a {
  font-size: 14px;
  color: #9da6ab;
  transition: all 0.3s;
}

.layout-footer .base-container .right-area .row-1 > ul > li a:hover {
  transition: all 0.3s;
  color: #e11a4d;
}

.layout-footer .base-container .right-area .row-1 > ul > li.separator {
  margin: 0 10px;
}

.layout-footer .base-container .right-area .row-1 .row-2 {
  font-size: 13px;
  line-height: 17px;
  color: #9da6ab;
}

.main-page {
  padding-bottom: 30px;
}

.main-page .artistcrew-box {
  overflow: hidden;
  margin-top: 20px;
}

.main-page .artistcrew-box .titlebox {
  float: left;
  width: 20%;
}

.main-page .artistcrew-box .titlebox img {
  vertical-align: text-top;
}

.main-page .artistcrew-box .list-box {
  float: right;
  width: 80%;
}

.main-page .artistcrew-box .list-box a {
  width: 100%;
}

.main-page .artistcrew-box .list-box .infobox {
  overflow: hidden;
}

.main-page .artistcrew-box .list-box .infobox .keywords {
  float: left;
  border: 2px solid #666;
  border-radius: 20px;
  padding: 4px;
  width: 72px;
  margin-right: 15px;
  font-size: 14px;
  text-align: center;
  color: #666;
}

.main-page .artistcrew-box .list-box .infobox .title {
  float: left;
  font-size: 17px;
  margin-right: 15px;
  color: #333;
  line-height: 31px;
}

.main-page .artistcrew-box .list-box .infobox .address {
  float: left;
  line-height: 32px;
}

.main-page .artistcrew-box .list-box .infobox .address .info1 {
  float: left;
  font-size: 13px;
  color: #666;
}

.main-page .artistcrew-box .list-box .infobox .address .info2 {
  float: left;
  font-size: 13px;
  color: #666;
  padding-left: 5px;
}

.main-page .artistcrew-box-deprecated .titlebox {
  margin-top: 40px;
  margin-bottom: 20px;
}

.main-page .artistcrew-box-deprecated .titlebox .title1 {
  font-size: 20px;
  font-weight: 300;
  color: #333;
  vertical-align: middle;
}

.main-page .artistcrew-box-deprecated .titlebox .title2 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  vertical-align: middle;
}

.main-page .artistcrew-box-deprecated .titlebox .title3 {
  font-size: 14px;
  font-weight: 200;
  color: #333;
  vertical-align: middle;
  margin-left: 10px;
}

.main-page .artistcrew-box-deprecated ul {
  width: 100%;
  overflow: hidden;
}

.main-page .artistcrew-box-deprecated ul li {
  float: left;
  width: 30%;
  margin-right: 4.9%;
  background-size: cover !important;
  transition: all 0.3s;
}

.main-page .artistcrew-box-deprecated ul li:hover {
  opacity: 0.8;
  transition: all 0.3s;
}

.main-page .artistcrew-box-deprecated ul li:last-child {
  margin-right: 0;
}

.main-page .artistcrew-box-deprecated ul li a {
  display: block;
  height: 360px;
  position: relative;
}

.main-page .artistcrew-box-deprecated ul li a .infobox {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px;
  box-sizing: border-box;
}

.main-page .artistcrew-box-deprecated ul li a .infobox .info1 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 10px;
}

.main-page .artistcrew-box-deprecated ul li a .infobox .info2 {
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  height: 18px;
  overflow: hidden;
}

.main-page .artistcrew-box-deprecated ul li a .infobox .info3 {
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
}

.main-page .left-area {
  width: 69%;
  float: left;
  position: relative;
}

.main-page .right-area {
  width: 30%;
  float: right;
  border: 1px solid #e9e9e7;
}

.main-page .right-area .class-box {
  position: relative;
  border-bottom: none;
}

.main-page .right-area .class-box .trans-img {
  position: absolute;
  bottom: 3px;
  left: 2.5%;
  width: 95%;
  height: 180px;
  margin-left: 2px;
}

.main-page .right-area .class-box .trans-arrow-box {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.main-page .right-area .class-box .trans-arrow-box .trans-arrow {
  display: inline-block;
}

.main-page .right-area .class-box > img {
  width: 100%;
}

.main-page .right-area .class-box .overview {
  background: #f5f5f5;
  overflow: hidden;
  padding: 6px 10px;
  padding-right: 13px;
}

.main-page .right-area .class-box .overview div {
  font-size: 15px;
  color: #7a7a7a;
  padding: 0 7px;
  line-height: 20px;
  float: left;
  box-sizing: border-box;
  letter-spacing: -0.5px;
}

.main-page .right-area .class-box .overview div.soft {
  color: #a8a9ad;
}

.main-page .right-area .class-box .overview div:last-child {
  text-align: right;
}

.main-page .right-area .class-box .overview div.overview-title {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  float: left;
  display: inline-block;
  line-height: 37px;
}

.main-page .right-area .class-box .overview div.overview-title .live {
  display: inline-block;
  margin-left: 6px;
  background: #ffdae1;
  color: #ee2955;
  padding: 3px 8px;
  border-radius: 40px;
  font-size: 10px;
  line-height: normal;
  letter-spacing: 0;
}

.main-page .right-area .class-box .overview div.overview-right {
  float: right;
}

.main-page .right-area .class-box .overview div.overview-right p {
  text-align: right;
  font-size: 13px;
  letter-spacing: -1px;
}

.main-page .right-area .class-box .overview div.overview-right p.date {
  letter-spacing: -0.3px;
  font-size: 11px;
  margin-bottom: -3px;
}

.main-page .right-area .class-box .class-tab {
  width: 100%;
  display: block;
}

.main-page .right-area .class-box .class-tab li {
  border-top: 1px solid #e9e9e7;
  border-right: 1px solid #e9e9e7;
  border-bottom: 1px solid #e9e9e7;
  text-align: center;
  float: left;
  width: 33.3%;
  padding: 7px 8px;
  box-sizing: border-box;
  font-size: 13px;
  cursor: pointer;
  color: #c0c0c0;
  background: #f9f9f9;
}

.main-page .right-area .class-box .class-tab li:last-child {
  border-right: none;
}

.main-page .right-area .class-box .class-tab li.active {
  border-bottom: none;
  color: #ea2c5a;
  font-weight: bold;
  background: #fff;
}

.main-page .right-area .class-box .class-tab.branch {
  display: none;
}

.main-page .right-area .class-box .class-list {
  border-top: 0;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
  overflow: auto;
  height: 387px;
}

.main-page .right-area .class-box .class-list::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.main-page .right-area .class-box .class-list::-webkit-scrollbar-thumb {
  background: #dbdbdb;
  border-radius: 10px;
}

.main-page .right-area .class-box .class-list::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(13deg, #c7ceff 14%, #f9d4ff 64%);
}

.main-page .right-area .class-box .class-list::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 0px;
  box-shadow: inset 7px 10px 12px #f0f0f0;
}

.main-page .right-area .class-box .class-list.branch {
  height: 417px;
}

.main-page .right-area .class-box .class-list li {
  background: #fff;
  padding: 8px 0;
  cursor: pointer;
}

.main-page .right-area .class-box .class-list li:last-child {
  border-bottom: 0;
  margin-bottom: 90px;
}

.main-page .right-area .class-box .class-list li.active {
  background: #e11c4a;
}

.main-page .right-area .class-box .class-list li:hover, .main-page .right-area .class-box .class-list li.active {
  background: #eee;
}

.main-page .right-area .class-box .class-list li table td span.circle-number {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  background: #eee;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
  line-height: 20px;
}

.main-page .right-area .class-box .class-list li table td span.circle-number.nailart {
  background: #fe9684;
}

.main-page .right-area .class-box .class-list li table td span.circle-number.makeup {
  background: #ee8fa5;
}

.main-page .right-area .class-box .class-list li table td span.circle-number.esthetic {
  background: #b18acf;
}

.main-page .right-area .class-box .class-list li table td span.circle-number.hair {
  background: #b3ceca;
}

.main-page .right-area .class-box .class-list li table td span.circle-number.special {
  background: #f3c35e;
}

.main-page .right-area .class-box .class-list li table td img {
  width: 40px;
  margin: 0 6px;
  margin-left: 0;
}

.main-page .right-area .class-box .class-list li table td a {
  width: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: inline-block;
  font-size: 14px;
  vertical-align: middle;
  text-align: center;
  margin-left: 10px;
}

.main-page .right-area .class-box .class-list li table td a.status-regular {
  color: #e11c4a;
}

.main-page .right-area .class-box .class-list li table td a.status-active {
  color: #ed6f31;
}

.main-page .right-area .class-box .class-list li table td a.status-day {
  background: #b061f9;
}

.main-page .right-area .class-box .class-list li table td.class-title {
  font-size: 13px;
  width: 69%;
  padding: 0 7px;
  color: #333;
}

.main-page .right-area .class-box .class-list li table td.color-red {
  padding-top: 0px;
  font-size: 11px;
  padding: 0 7px;
  height: 14px;
  display: inline-block;
  overflow: hidden;
  color: #666 !important;
}

.main-page .second-row {
  clear: both;
  overflow: hidden;
  margin-top: 20px;
}

.main-page .second-row .menu-box ul {
  overflow: hidden;
  width: 100%;
  display: block;
}

.main-page .second-row .menu-box ul li {
  float: left;
  width: 20%;
  text-align: center;
}

.main-page .second-row .menu-box ul li .icon-text {
  font-family: "s-core";
  text-align: center;
  color: #444;
  font-size: 19px;
  line-height: 20px;
}

.main-page .second-row .phone-box {
  background: #ebebeb;
  height: 128px;
  display: table;
  border: 2px solid #e1e1e1;
  box-sizing: border-box;
}

.main-page .second-row .phone-box div {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.main-page .second-row .phone-box div img {
  vertical-align: text-bottom;
}

.main-page .second-row .phone-box div .font-big {
  font-size: 24px;
  color: #333;
  font-weight: bold;
  letter-spacing: -1px;
  display: inline-block;
  margin-right: 7px;
}

.main-page .second-row .phone-box div span {
  vertical-align: middle;
  font-size: 30px;
  color: #77220b;
  font-weight: bold;
  letter-spacing: -0.5px;
}

.main-page .institute-row {
  overflow: hidden;
  clear: both;
}

.main-page .certification-box {
  overflow: hidden;
}

.main-page .certification-box .inner-box {
  width: 92%;
  float: right;
}

.main-page .certification-box .title-box {
  text-align: center;
  margin-bottom: 20px;
}

.main-page .certification-box .title-box .title {
  font-family: "s-core";
  font-size: 24px;
  letter-spacing: -2px;
  color: #333;
  text-align: center;
  display: inline-block;
  width: 181px;
}

.main-page .certification-box .title-box .line {
  width: 24%;
  display: inline-block;
  border-bottom: 1px #666 solid;
  margin-bottom: 8px;
}

.main-page .certification-box .slick-slider button {
  display: none !important;
}

.main-page .certification-box .slick-slider .slick-dots {
  display: none !important;
}

.main-page .certification-box .each-cert {
  padding: 10px 0;
  border-bottom: 1px solid #d8d8d8;
}

.main-page .certification-box .each-cert .left {
  float: left;
  width: 30%;
  text-align: center;
}

.main-page .certification-box .each-cert .left span {
  color: #eb194a;
  text-align: center;
}

.main-page .certification-box .each-cert .right {
  float: left;
  width: 70%;
}

.main-page .certification-box .each-cert .right span {
  color: #626262;
}

.main-page .institute-box {
  overflow: hidden;
}

.main-page .institute-box .title-box {
  text-align: center;
  margin-bottom: 20px;
}

.main-page .institute-box .title-box .title {
  font-family: "s-core";
  font-size: 24px;
  letter-spacing: -2px;
  color: #333;
  text-align: center;
  display: inline-block;
  width: 200px;
}

.main-page .institute-box .title-box .line {
  width: 37%;
  display: inline-block;
  border-bottom: 1px #666 solid;
  margin-bottom: 8px;
}

.main-page .institute-box .left-area {
  width: 100%;
  height: 344px;
  overflow: hidden;
}

.main-page .institute-box .right-area {
  width: 31%;
  float: right;
}

.main-page .institute-box .prev-main-institute {
  position: absolute;
  left: 2%;
  top: 38%;
  opacity: 0.4;
}

.main-page .institute-box .next-main-institute {
  position: absolute;
  right: 2%;
  top: 38%;
  opacity: 0.4;
}

.main-page .teacher-row {
  margin-top: 20px;
}

.main-page .teacher-row .title-box {
  text-align: center;
}

.main-page .teacher-row .title-box .title {
  font-family: "s-core";
  font-size: 24px;
  letter-spacing: -2px;
  color: #333;
  text-align: center;
  display: inline-block;
  width: 184px;
}

.main-page .teacher-row .title-box .line {
  width: 42%;
  display: inline-block;
  border-bottom: 1px #666 solid;
  margin-bottom: 8px;
}

.main-page .teacher-row .teacher-page-main {
  position: relative;
}

.main-page .teacher-row .teacher-page-main .prev-main-teacher {
  position: absolute;
  left: -4%;
  top: 30%;
  opacity: 0.4;
}

.main-page .teacher-row .teacher-page-main .next-main-teacher {
  position: absolute;
  right: -4%;
  top: 30%;
  opacity: 0.4;
}

.main-page .teacher-row .teacher-page-main .red-line {
  border-top: 2px solid #e11a4d;
  width: 100%;
  height: 24px;
  margin-top: -11px;
}

.main-page .teacher-row .teacher-page-main .teacher-box {
  width: 90%;
  margin: auto;
}

.main-page .teacher-row .teacher-page-main .teacher-box .owl-nav {
  height: 0;
}

.main-page .teacher-row .teacher-page-main .teacher-box ul {
  flex-wrap: wrap;
  display: inline-flex;
  flex-direction: row;
  overflow: inherit;
}

.main-page .teacher-row .teacher-page-main .teacher-box ul li {
  text-align: center;
  line-height: 0;
  position: relative;
}

.main-page .teacher-row .teacher-page-main .teacher-box ul li img.icon {
  position: absolute;
  left: -10%;
  bottom: -10%;
  width: 25%;
}

.main-page .teacher-row .teacher-page-main .teacher-box ul li .tag {
  position: absolute;
  color: #bfbfbf;
  top: 0;
  right: -2px;
}

.main-page .teacher-row .teacher-page-main .teacher-box ul li .tag p {
  text-align: left;
}

.main-page .teacher-row .teacher-page-main .teacher-box ul li .tag .color-red {
  line-height: 38px;
  font-size: 15px;
  font-weight: bold;
}

.main-page .teacher-row .teacher-page-main .teacher-box ul li .tag .subject {
  color: #bfbfbf;
  font-size: 13px;
}

.main-page .teacher-row .teacher-page-main .teacher-link-box {
  margin-top: -19px;
}

.main-page .teacher-row .teacher-page-main .teacher-link-box .teacher-link {
  color: #fff !important;
  background: #e11a4d;
  padding: 10px 15px 0 15px;
  font-size: 8px;
  border-radius: 12px;
  margin-top: 0px;
  display: inline-block;
}

.main-page .third-row {
  margin: 20px 0 0px 0;
  overflow: auto;
  clear: both;
}

.main-page .community-row {
  margin-top: 10px;
  bottom: 50px;
}

.main-page .community-row > div .interview-box {
  background: #e8e8e8;
  border-radius: 12px;
  height: 209px;
  overflow: hidden;
  text-align: center;
}

.main-page .community-row > div .interview-box img.url {
  width: 79%;
  margin: auto;
}

.main-page .community-row > div:first-child .inner-box {
  float: left;
}

.main-page .community-row > div:last-child .inner-box {
  float: right;
}

.main-page .community-row > div .inner-box {
  width: 92%;
  float: right;
}

.main-page .community-row > div .inner-box .title-area {
  border-bottom: 1px solid #ccc;
  padding-bottom: 4px;
}

.main-page .community-row > div .inner-box .title-area .title {
  color: #333;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
}

.main-page .community-row > div .inner-box .title-area a {
  float: right;
  font-size: 13px;
  color: #333;
}

.main-page .community-row > div .inner-box .content-area ul li {
  padding-bottom: 6px;
}

.main-page .community-row > div .inner-box .content-area ul li a {
  padding: 7px 0;
  color: #666;
  font-size: 13px;
  display: block;
  line-height: 26px;
  height: 13px;
  display: inline-block;
  overflow: hidden;
  width: 85%;
}

.main-page .community-row > div .inner-box .content-area ul li span.new {
  background-color: #e6003e;
  color: #fff !important;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 25px !important;
  font-size: 10px !important;
  width: 10%;
  float: right;
  margin-top: 12px;
}

.main-page .community-row > div .inner-box .content-area ul li:last-child {
  border-bottom: 0;
}

.main-page .owl-main .item {
  width: 100%;
  height: 474px;
  background-size: cover !important;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  /* slighly transparent white */
  border-color: rgba(0, 0, 0, 0.2);
  /*Very transparent black*/
  background-position: center top !important;
}

.main-page .owl-main .item a {
  display: block;
  width: 100%;
  height: 100%;
}

.main-page .prev-main {
  z-index: 10;
  position: absolute;
  top: 42%;
  left: 5%;
  cursor: pointer;
  opacity: 0.4;
}

.main-page .next-main {
  z-index: 10;
  position: absolute;
  top: 42%;
  right: 5%;
  cursor: pointer;
  opacity: 0.4;
}

.main-page .prev-main-interview {
  z-index: 10;
  position: absolute;
  top: 37%;
  left: 2%;
  cursor: pointer;
}

.main-page .next-main-interview {
  z-index: 10;
  position: absolute;
  top: 37%;
  right: 2%;
  cursor: pointer;
}

.main-page .owl-dots {
  display: none;
  text-align: center;
  position: absolute;
  bottom: 10px;
  z-index: 10;
  left: 25%;
  width: 50%;
}

.main-page .owl-dot {
  display: inline-block;
  margin: 0 3px;
}

.main-page .owl-dot span {
  cursor: pointer;
  background: #fff;
  border-radius: 20px;
  display: block;
  height: 10px;
  margin: 7px 7px;
  opacity: 1;
  width: 10px;
}

.main-page .owl-dot.active span,
.main-page .owl-dot.active span:hover {
  background: url("/assets/images/front/icons/page_active.png") no-repeat !important;
  opacity: 1;
  background-size: 100% !important;
  height: 25px;
  width: 25px;
  margin: 0;
}

@media (max-width: 1050px) {
  .main-page .main-copy-box {
    right: 100px !important;
  }
}

@media (min-width: 1500px) {
  .main-page .main-copy-box {
    right: 400px !important;
  }
}

.main-page .main-copy-box {
  background: transparent url("/assets/images/front/general/main_copy_bg.png") 50% 50% no-repeat;
  background-size: cover;
  position: absolute;
  width: 400px;
  height: 370px;
  top: 100px;
  right: 250px;
  z-index: 5;
  text-align: center;
}

.main-page .main-copy-box img {
  width: 400px !important;
  margin-top: 60px;
}

.main-page .main-copy-box #particles-js {
  position: absolute;
  width: 100%;
  right: 0;
  height: 300px;
}

.main-page .bg-area {
  margin: auto;
  width: 1200px;
}

.main-page .button-area {
  margin-top: 50px;
}

.main-page .button-area ul {
  width: 100%;
  overflow: hidden;
}

.main-page .button-area ul li {
  width: 33.3%;
  float: left;
}

.main-page .button-area ul li a:hover {
  transition: all 0.3s;
}

.main-page .button-area ul li a:hover .title {
  color: #e31a4c;
  transition: all 0.3s;
}

.main-page .button-area ul li a:hover img,
.main-page .button-area ul li a:hover .text {
  transition: all 0.3s;
  opacity: 0.7;
}

.main-page .button-area ul li img {
  width: 30%;
  float: left;
}

.main-page .button-area ul li .right-area {
  margin-top: 15px;
  width: 70%;
  float: left;
  padding-left: 12px;
  box-sizing: border-box;
}

.main-page .button-area ul li .right-area.phone-area .title {
  margin-bottom: 12px;
}

.main-page .button-area ul li .right-area.phone-area .text {
  font-size: 30px;
}

.main-page .button-area ul li .right-area .title {
  color: #9da6ab;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.5px;
  margin-bottom: 5px;
}

.main-page .button-area ul li .right-area .text {
  color: #9da6ab;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: -0.5px;
  margin-bottom: 9px;
}

.main-page .button-area ul li .right-area .link {
  width: 140px;
  height: 20px;
  display: inline-block;
  border-radius: 4px;
  background-size: 100% 100%;
  background: transparent url("/assets/images/front/icons/main_link.png") 50% 50% no-repeat;
  transition: all 0.3s;
}

.main-page .button-area ul li .right-area .link:hover {
  transition: all 0.3s;
  background: transparent url("/assets/images/front/icons/main_link_on.png") 50% 50% no-repeat;
}

.center-page {
  text-align: center;
}

.center-page .nowon .center-header {
  margin-top: 10px;
}

.center-page .nowon .center-header img {
  width: 100%;
}

.center-page .nowon .center-content .left {
  float: left;
  width: 50%;
}

.center-page .nowon .center-content .left img {
  width: 70%;
  float: right;
}

.center-page .nowon .center-content .right {
  float: right;
  width: 50%;
}

.center-page .nowon .center-content .title {
  color: #b94249;
  font-size: 20px;
  margin-bottom: 20px;
}

.center-page .nowon .center-content.center-con1 {
  overflow: hidden;
  background: transparent url("/assets/images/front/center/nowon_bg2.png") no-repeat;
  background-size: 100% 100%;
  height: 580px;
}

.center-page .nowon .center-content.center-con1 .right {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.center-page .nowon .center-content.center-con1 .right .text-box {
  text-align: left;
}

.center-page .nowon .center-content.center-con1 .right .text-box p {
  font-size: 15px;
}

.center-page .nowon .center-content.center-con2 {
  overflow: hidden;
  background: transparent url("/assets/images/front/center/nowon_bg3.png") no-repeat;
  background-size: 100% 100%;
  height: 580px;
  margin-bottom: 50px;
}

.center-page .nowon .center-content.center-con2 .left {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.center-page .nowon .center-content.center-con2 .left .text-box {
  text-align: right;
}

.center-page .nowon .center-content.center-con2 .left .text-box p {
  font-size: 15px;
}

.center-page .daegu .center-header {
  margin-top: 10px;
}

.center-page .daegu .center-header img {
  width: 100%;
  display: block;
}

.center-page .daegu .center-content {
  margin-top: 10px;
}

.center-page .daegu .center-content .left {
  float: left;
  width: 50%;
}

.center-page .daegu .center-content .left img {
  width: 70%;
  float: right;
}

.center-page .daegu .center-content .right {
  float: right;
  width: 50%;
}

.center-page .daegu .center-content .title {
  color: #333;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.center-page .daegu .center-content .text-box {
  color: #333;
}

.center-page .daegu .center-content.center-con1 {
  overflow: hidden;
  background: transparent url("/assets/images/front/center/daegu/1.jpg") no-repeat;
  background-size: 100% 100%;
  height: 580px;
}

.center-page .daegu .center-content.center-con1 .right {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.center-page .daegu .center-content.center-con1 .right .text-box {
  margin-top: 100px;
  margin-left: 102px;
  text-align: left;
}

.center-page .daegu .center-content.center-con1 .right .text-box p {
  font-size: 15px;
}

.center-page .daegu .center-content.center-con2 {
  overflow: hidden;
  background: transparent url("/assets/images/front/center/daegu/2.jpg") no-repeat;
  background-size: 100% 100%;
  height: 580px;
}

.center-page .daegu .center-content.center-con2 .left {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.center-page .daegu .center-content.center-con2 .left .text-box {
  text-align: left;
  margin-left: 129px;
  margin-top: 120px;
}

.center-page .daegu .center-content.center-con2 .left .text-box p {
  font-size: 15px;
}

.center-page .daegu .center-content.center-con3 {
  overflow: hidden;
  background: transparent url("/assets/images/front/center/daegu/3.jpg") no-repeat;
  background-size: 100% 100%;
  height: 580px;
  margin-bottom: 10px;
}

.center-page .daegu .center-content.center-con3 .right {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.center-page .daegu .center-content.center-con3 .right .text-box {
  margin-top: 110px;
  margin-left: 102px;
  text-align: left;
}

.center-page .daegu .center-content.center-con3 .right .text-box p {
  font-size: 15px;
}

.center-page .bg-area {
  background: transparent url("/assets/images/front/center/intro_bg.png") no-repeat;
  background-size: cover;
  min-height: 2500px;
  margin-bottom: 20px;
}

.center-page .bg-area .title {
  text-align: center;
  margin-bottom: -170px;
}

.center-page .bg-area .title img {
  margin-left: -75px;
  width: 600px;
}

.center-page .bg-area ul {
  overflow: hidden;
}

.center-page .bg-area ul li .sub-image {
  text-align: center;
}

.center-page .bg-area ul li .sub-title {
  text-align: center;
  color: #fff;
  font-size: 18px;
  margin-bottom: 30px;
  margin-top: 7px;
}

.center-page .bg-area ul li .sub-text {
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  opacity: 0.8;
}

.teacher-page {
  /*
  .tab-title-box {
    -webkit-box-shadow: -9px 36px 46px -35px rgba(255,255,255,1);
    -moz-box-shadow: -9px 36px 46px -35px rgba(255,255,255,1);
    box-shadow: -9px 36px 46px -35px rgba(255,255,255,1);
    border-top: 1px solid #d5d5d5;
    border-bottom: 1px solid #d5d5d5;
    padding: 5px 0;
    text-align: center;
    .tab-title {
      font-size: 23px;
      color: $color;
      text-align: center;
      display: inline-block;
    }
    img {
      cursor: pointer;
    }
  }
  .tab-box {
    text-align: center;
    ul {
      display: inline-block;
      li {
        cursor: pointer;
        float: left;
        font-size: 14px;
        color: #959595;
        padding: 13px 20px;
        box-sizing: border-box;
        &.active-fix {
          color: $color;
          border-top: 2px solid $color;
          font-weight: bold;
        }
        &:not(.active-fix){
          &:hover, &.active {
            color: $color;
            border-top: 2px solid $color;
            font-weight: bold;
          }
        }
      }
    }
  }
  .owl-teacher {
    position: relative;
    .item {
      min-height: 730px;
      img {
        position: absolute;
        width: auto;
        bottom: 0;
      }
    }
    .tab-1 {
      img {
        // &.teacher-1 {
        //   // left: 10%;
        //   // z-index: 1;
        //   // bottom: -100px;
        // }
        // &.teacher-2 {
        //   left: 25%;
        //   z-index: 2;
        //   bottom: -30px;
        // }
        // &.teacher-3 {
        //   left: 39%;
        //   z-index: 3;
        //   bottom: 0;
        // }
        // &.teacher-4 {
        //   left: 53%;
        //   z-index: 2;
        //   bottom: 0;
        // }
        // &.teacher-psh {
        //   left: 59%;
        //   z-index: 1;
        //   // bottom: -50px;
        // }
				&.teacher-center {
					left: 39%;
					z-index: 1;
					bottom: 0;
				}
      }
    }
    .tab-2 {
      img {
				&.teacher-lse {
					left: 31%;
					z-index: 1;
					bottom: 0;
				}
        &.teacher-6 {
          left: 48%;
          z-index: 1;
          bottom: 0;
        }
        // &.teacher-7 {
        //   left: 55%;
        //   z-index: 0;
        //   bottom: -35px;
        // }
      }
    }
    .tab-3 {
      img {
        &.teacher-8 {
          // left: 14%;
          // z-index: 1;
          // bottom: -129px;
        }
        &.teacher-9 {
          // left: 15%;
          // z-index: 2;
          // bottom: -4px;
        }
				&.teacher-10 {
					left: 26%;
					z-index: 0;
					bottom: 0;
				}
				&.teacher-12 {
					left: 45%;
					z-index: 3;
					bottom: -116px;
				}
        // &.teacher-11 {
				// 	left: 57%;
        //   z-index: 2;
        //   bottom: 0;
        // }
      }
    }
    .tab-4 {
      img {
        &.teacher-13 {
          // left: 48%;
          left: 28%;
          z-index: 2;
          bottom: -128px;
        }
        &.teacher-14 {
          left: 45%;
          z-index: 1;
          bottom: -30px;
        }
      }
    }
    .tab-5 {
      img {
        // &.teacher-15 {
        //   left: 25%;
        //   z-index: 0;
        //   bottom: -34px;
        // }
				// &.teacher-kyj {
				// 	z-index: 1;
				// 	bottom: -1px;
				// 	left: 20%;
				// }
				&.teacher-pjr {
					z-index: 1;
					bottom: -20px;
					left: 18%;
				}
				&.teacher-chj {
					z-index: 2;
					bottom: -1px;
					left: 31%;
				}
				&.teacher-kjs {
					z-index: 1;
					bottom: -53px;
					left: 47%;
				}
				&.teacher-16 {
					left: 58%;
					z-index: 0;
					bottom: -50px;
				}
      }
    }
    .tab-6 {
      img {
				&.teacher-sh {
					left: 1%;
					z-index: 1;
					bottom: 0px;
				}
				&.teacher-pyn {
					left: 24%;
					z-index: 2;
					bottom: -15px;
				}
				&.teacher-18 {
					bottom: -17px;
					z-index: 2;
					left: 38%;
				}
				// &.teacher-hcy {
				// 	z-index: 1;
				// 	left: 17%;
				//   bottom: -17px;
				// }
				// &.teacher-psm {
				//   left: 50%;
				//   z-index: 1;
				//   bottom: 0;
				// }
				&.teacher-ley {
					left: 56%;
					z-index: 1;
				}
				&.teacher-syj {
					left: 68%;
					z-index: 0;
					bottom: -10px;
				}
      }
    }
  }
	*/
}

.teacher-page .teacher-box {
  padding: 0 25px;
}

.teacher-page .teacher-box ul {
  flex-wrap: wrap;
  display: inline-flex;
  flex-direction: row;
  overflow: inherit;
}

.teacher-page .teacher-box ul li {
  width: 25%;
  text-align: center;
  border-bottom: 2px solid #e11a4d;
  line-height: 0;
  position: relative;
  margin-bottom: 50px;
}

.teacher-page .teacher-box ul li img.teacher {
  width: 90%;
  display: inline-block;
}

.teacher-page .teacher-box ul li img.icon {
  position: absolute;
  left: -10%;
  bottom: -10%;
  width: 25%;
}

.teacher-page .teacher-box ul li .tag {
  height: 0;
  line-height: 23px;
  background: #e11a4d;
  border-radius: 0 0 12px 12px;
  width: 100%;
  color: #fff !important;
  position: absolute;
  width: 90%;
  transition: all 0.3s;
}

.teacher-page .teacher-box ul li:hover .tag {
  transition: all 0.3s;
  height: 25px;
}

.institute-page {
  text-align: center;
}

.institute-page .bg-area {
  height: 90vh;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.institute-page .img-box {
  margin-bottom: 15px;
}

.institute-page .img-box img {
  width: 200px;
}

@media screen and (max-width: 1300px) {
  .institute-page .img-box img {
    width: 150px;
  }
}

.institute-page .owl-box {
  position: absolute;
  bottom: 100px;
  width: 100%;
}

.institute-page .owl-box .owl-box-inner {
  z-index: 10;
  position: relative;
  width: 50%;
}

.institute-page .item {
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.institute-page .item.active {
  border: 2px solid #e31a4c;
}

.institute-page .item:hover {
  opacity: 0.8;
  transition: all 0.3s;
}

.institute-page .nav-icon {
  z-index: 10;
  position: absolute;
  top: 5%;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
}

.institute-page .nav-icon:hover {
  opacity: 0.7;
  transition: all 0.3;
}

@media screen and (max-width: 1300px) {
  .institute-page .nav-icon {
    height: 75px;
  }
}

.institute-page .prev-main {
  left: -10%;
}

.institute-page .next-main {
  right: -10%;
}

.map-page {
  text-align: center;
}

.map-page .bg-area {
  background: #f4f4f4;
}

.map-page .bg-icon {
  margin-top: 45px;
  width: 60%;
}

.map-page .map-info .map-info-inner .inner-box {
  width: 100%;
}

.map-page .map-info .map-info-inner .second-subway {
  margin-top: 10px;
  margin-left: 72px;
  text-align: left;
}

.map-page .map-info .map-info-inner .second-subway img:first-child {
  margin-right: 0;
}

.map-page .map-info .map-info-inner .first-subway {
  display: inline-block;
  text-align: left;
}

.map-page .map-info .map-info-inner .first-subway img:first-child {
  margin-right: 0;
  vertical-align: middle !important;
}

.map-page .map-info .map-info-inner .h600 {
  height: 600px;
  display: flex;
  align-items: center;
}

.map-page .map-info .map-info-inner p {
  margin-bottom: 15px;
  text-align: left;
}

.map-page .map-info .map-info-inner .text1 {
  color: #333;
  font-size: 15px;
  letter-spacing: -0.5px;
}

.map-page .map-info .map-info-inner .text2 {
  color: #666;
  font-size: 13px;
  letter-spacing: -0.5px;
}

.map-page .map-info .map-info-inner .text3 {
  color: #333;
  font-size: 14px;
  vertical-align: middle;
}

.map-page .map-info .map-info-inner .text3 img {
  vertical-align: middle;
}

.map-page .map-info .map-info-inner .line {
  margin: 20px 0;
  height: 1px;
  border-top: 1px solid #ccc;
}

.map-page .map-info .map-info-inner ul {
  width: 100%;
}

.map-page .map-info .map-info-inner ul li {
  text-align: left;
  text-align: left !important;
  margin-bottom: 15px;
}

.map-page .map-info .map-info-inner ul li:first-child img:first-child {
  vertical-align: sub;
}

.map-page .map-info .map-info-inner ul li:first-child span {
  vertical-align: middle;
}

.map-page .map-info .map-info-inner ul li span.bold {
  display: inline-block;
  width: 50px;
}

.map-page .map-info .map-info-inner ul li span {
  color: #797979;
  font-size: 14px;
  vertical-align: bottom;
}

.map-page .map-info .map-info-inner ul li img {
  vertical-align: middle;
}

.map-page .map-info .map-info-inner ul li img:first-child {
  margin-right: 10px;
}

.map-page .map-info div {
  text-align: center;
  line-height: 20px;
}

.map-page .map-info div dl {
  width: 700px;
  overflow: hidden;
  clear: both;
  display: inline-block;
}

.map-page .map-info div dl dt {
  font-weight: bold;
  color: #797979;
  width: 93px;
  font-size: 14px;
  text-align: right;
  float: left;
}

.map-page .map-info div dl dd {
  color: #797979;
  font-size: 14px;
  text-align: left;
  padding-left: 10px;
  float: left;
}

.map-page .map-info div dl dd a {
  color: #797979;
  font-size: 14px;
}

.permanent-page .sub-text {
  margin-bottom: 20px;
}

.permanent-page .main-text {
  font-size: 15px;
  color: #333;
}

.permanent-page img.collabo-img {
  vertical-align: sub;
  margin: 0 10px;
}

.permanent-page .footer-buttons {
  margin-top: 10px;
}

.permanent-page .footer-buttons span.span-button {
  display: inline-block;
  width: 300px;
  padding: 10px;
  border: 1px solid #333;
  color: #333;
  font-size: 14px;
}

.permanent-page .task {
  text-align: center;
}

.permanent-page .task .task1 {
  color: #333;
  font-size: 15px;
  display: inline-block;
  margin-right: 7px;
  font-weight: bold;
}

.permanent-page .task .task2 {
  font-size: 15px;
  color: #666;
}

.permanent-page .collabo {
  display: block;
  width: 100%;
  overflow: hidden;
}

.permanent-page .collabo li {
  float: left;
  width: 33.333%;
  box-sizing: border-box;
  padding: 20px;
  border-right: 1px solid #eee;
  text-align: center;
}

.permanent-page .collabo li:last-child {
  border: none;
}

.permanent-page .collabo li img {
  margin-bottom: 5px;
}

.permanent-page .collabo li p {
  text-align: center;
  font-weight: bold;
}

.permanent-page .teachers li {
  float: left;
  width: 33.333%;
  box-sizing: border-box;
  padding: 0px 40px;
  text-align: center;
}

.permanent-page .teachers li:nth-child(1), .permanent-page .teachers li:nth-child(2), .permanent-page .teachers li:nth-child(3) {
  padding-top: 20px;
  padding-bottom: 20px;
}

.permanent-page .teachers li img {
  display: inline-block;
  width: 90%;
  margin-bottom: 10px;
}

.permanent-page .teachers li div {
  text-align: center;
}

.permanent-page .teachers li .text1 {
  font-size: 15px;
  font-weight: bold;
  color: #333;
}

.permanent-page .teachers li .text2 {
  color: #333;
  font-weight: bold;
  font-size: 14px;
}

.permanent-page .teachers li .text3 {
  font-size: 12px;
  margin-bottom: 3px;
  color: #666;
  font-weight: 400;
}

.permanent-page .teachers li .text4 {
  font-size: 12px;
  font-weight: 400;
  background: #7c4e99;
  padding: 3px 5px;
  color: #fff;
  display: inline-block;
}

.permanent-page .line {
  height: 1px;
  border-top: 1px solid #ccc;
  margin: 50px 0;
}

.permanent-page .sub-title {
  font-size: 22px;
  font-weight: 600;
  color: #7c4e99;
  text-align: center;
  margin-bottom: 10px;
}

.permanent-page p {
  text-align: center;
  margin-bottom: 10px;
  color: #333;
  font-size: 15px;
}

.permanent-page .owl-box .current-image img {
  width: 100%;
  display: block;
  margin-bottom: 5px;
}

.permanent-page .inner-container {
  width: 70%;
  margin: auto;
}

.permanent-page .bg-area {
  box-sizing: border-box;
  background-size: cover;
  text-align: center;
}

.permanent-page .bg-area img {
  width: 100%;
}

.permanent-page .img-box {
  margin-bottom: 15px;
}

.permanent-page .img-box img {
  width: 200px;
}

@media screen and (max-width: 1300px) {
  .permanent-page .img-box img {
    width: 150px;
  }
}

.permanent-page .owl-box .owl-box-inner {
  position: relative;
  z-index: 10;
  width: 100%;
}

.permanent-page .item {
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.permanent-page .item.active {
  border: 2px solid #e31a4c;
}

.permanent-page .item:hover {
  opacity: 0.8;
  transition: all 0.3s;
}

.permanent-page .nav-icon {
  z-index: 10;
  position: absolute;
  top: -250px;
  cursor: pointer;
  transition: all 0.3s;
}

.permanent-page .nav-icon:hover {
  opacity: 0.7;
  transition: all 0.3;
}

@media screen and (max-width: 1300px) {
  .permanent-page .nav-icon {
    height: 75px;
  }
}

.permanent-page .prev-main {
  left: -10%;
  width: 40px;
}

.permanent-page .next-main {
  right: -10%;
  width: 40px;
}

.curriculum-page {
  padding-bottom: 50px;
}

.curriculum-page .fll {
  width: 10px;
}

.curriculum-page .fll-text {
  width: calc(100% - 10px);
  line-height: 25px;
}

.curriculum-page .diploma {
  cursor: pointer;
  display: block;
  margin-top: 10px;
}

.curriculum-page .title {
  font-size: 23px;
  color: #555;
  font-weight: bold;
}

.curriculum-page .title-sub {
  border-left: 2px solid #eee;
  padding-left: 10px;
  font-size: 14px;
  margin-top: 10px;
}

.curriculum-page .round-button {
  box-sizing: border-box;
  display: block;
  width: 80px;
  height: 80px;
  line-height: 20px;
  border: 6px solid #fff;
  border-radius: 50%;
  color: #f5f5f5;
  text-align: center;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.curriculum-page .round-button .button-play {
  width: 10px;
  height: 10px;
  border-style: solid;
  border-width: 10px;
  border-color: #202020;
  border-color: transparent transparent transparent #333;
}

.curriculum-page .bg-area {
  box-sizing: border-box;
  background-size: cover;
  text-align: center;
}

.curriculum-page .bg-area img {
  width: 100%;
}

.curriculum-page .inner-box {
  width: 1000px;
  margin: 20px auto 0px auto;
  position: relative;
  display: none;
}

.curriculum-page .inner-box .left {
  position: absolute;
  top: 0;
  left: 0;
}

.curriculum-page .inner-box .right {
  position: absolute;
  top: 0;
  right: 0;
}

.curriculum-page .inner-box .title-box {
  width: 100%;
  height: 271px;
  margin: auto;
  display: table;
}

.curriculum-page .inner-box .title-box .title-bar {
  display: table-cell;
  vertical-align: middle;
  position: absolute;
  top: 70px;
  width: 100%;
}

.curriculum-page .inner-box .title-box .title-bar .title {
  text-align: center;
  background: #e31a4c;
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  padding: 2px 0;
  margin-bottom: 10px;
}

.curriculum-page .inner-box .title-box .title-bar ul {
  width: 100%;
  border-bottom: 1px solid #e31a4c;
  padding-bottom: 10px;
}

.curriculum-page .inner-box .title-box .title-bar ul li {
  padding-bottom: 10px;
  padding-left: 15px;
  font-size: 15px;
  line-height: 20px;
  color: #404040;
}

.curriculum-page .inner-box .title-box .title-bar ul li:last-child {
  border-bottom: none;
}

.curriculum-page .inner-box2 {
  width: 1000px;
  margin: auto;
}

.curriculum-page .inner-box2 .row {
  overflow: hidden;
  border-bottom: 1px solid #d0d0d0;
  padding: 40px 0;
}

.curriculum-page .inner-box2 .row:last-child {
  border-bottom: none;
  margin-bottom: 50px;
}

.curriculum-page .inner-box2 .row .left {
  float: left;
  width: 30%;
  text-align: left;
  vertical-align: top;
}

.curriculum-page .inner-box2 .row .right {
  float: right;
  width: 70%;
}

.curriculum-page .inner-box2 .row .right .title {
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  margin-right: 5px;
  margin-bottom: 5px;
  color: #e31a4c;
}

.curriculum-page .inner-box2 .row .right > img {
  vertical-align: top;
  margin-top: 2px;
}

.curriculum-page .inner-box2 .row .right > img:hover {
  transition: all 0.3s;
  opacity: 0.8;
}

.curriculum-page .inner-box2 .row .right ul {
  overflow: hidden;
}

.curriculum-page .inner-box2 .row .right ul li {
  font-size: 15px;
  line-height: 25px;
  color: #404040;
  overflow: hidden;
}

.curriculum-page .inner-box2 .row .right .footer {
  margin-top: 20px;
}

.curriculum-page .inner-box2 .row .right .footer .curr-table {
  overflow: hidden;
  margin-bottom: 20px;
  border-spacing: 0;
}

.curriculum-page .inner-box2 .row .right .footer .curr-table tr:last-child .vertical-line {
  display: none;
}

.curriculum-page .inner-box2 .row .right .footer .curr-table td {
  overflow: hidden;
  border-spacing: 0;
  vertical-align: top;
  position: relative;
  color: #666;
  font-size: 15px;
  line-height: 25px;
}

.curriculum-page .inner-box2 .row .right .footer .curr-table td.specific {
  padding-right: 20px;
}

.curriculum-page .inner-box2 .row .right .footer .curr-table td .vertical-line {
  width: 1px;
  height: 100%;
  border-right: 1px solid #ccc;
  position: absolute;
  left: 50%;
}

.curriculum-page .inner-box2 .row .right .footer .curr-table td .bold {
  color: #333;
  font-size: 15px;
  margin-right: 20px;
  vertical-align: top;
  display: table-cell;
}

.curriculum-page .inner-box2 .row .right .footer .curr-table td .text-month {
  width: 80px;
  height: 25px;
  color: #333;
  font-size: 15px;
  display: inline-block;
  text-align: center;
  background: #fff;
  z-index: 10;
  position: relative;
}

.curriculum-page .inner-box2 .row .right .footer .curr-table td ul li {
  color: #666;
  font-size: 14px;
}

.curriculum-page .inner-box2 .row .right .footer .footer-head {
  color: #666;
  font-size: 15px;
  margin-right: 4px;
  margin-bottom: 15px;
}

.curriculum-page .inner-box2 .row .right .footer .footer-head .bold {
  color: #333;
  font-size: 15px;
  margin-right: 20px;
  vertical-align: top;
}

.curriculum-page .inner-box2 .row .right .footer .footer-buttons {
  margin-top: 10px;
}

.curriculum-page .inner-box2 .row .right .footer .footer-buttons span.span-button {
  display: inline-block;
  width: 300px;
  padding: 10px;
  border: 1px solid #333;
  color: #333;
  font-size: 14px;
}

.career-page {
  text-align: center;
}

.career-page .bg-area {
  background: #f4f4f4;
}

.career-page .bg-icon {
  margin-top: 45px;
}

.career-page .banner-box {
  margin-top: 50px;
  margin-bottom: 50px;
}

.career-page ul {
  width: 90%;
  margin-bottom: 100px;
}

.career-page ul li {
  margin-bottom: 30px;
}

.career-page ul li .title-box {
  border-bottom: 1px solid #e31a4c;
  margin-bottom: 5px;
  line-height: 26px;
  text-align: left;
}

.career-page ul li .title-box .number-box {
  background: #e31a4c;
  border-radius: 0 4px 0 4px;
  padding: 2px;
  font-weight: bold;
  color: #fff;
  font-size: 16px;
}

.career-page ul li .title-box .title {
  font-size: 16px;
  font-weight: bold;
  color: #e31a4c;
  padding-left: 7px;
}

.career-page ul li .content-box {
  text-align: left;
  padding-left: 35px;
  font-size: 14px;
  line-height: 20px;
}

.community-page .hotissue-type {
  float: right;
  clear: right;
  overflow: hidden;
  margin-right: 66px;
  margin-bottom: -20px;
  margin-top: 20px;
}

.community-page .hotissue-type li {
  float: left;
  padding: 20px 15px;
}

.community-page .hotissue-type li:nth-child(2) {
  padding: 20px 5px;
}

.community-page .hotissue-type li a {
  font-size: 15px;
  font-weight: 400;
  color: #666;
}

.community-page .hotissue-type li a.active {
  font-weight: bold;
  color: #111;
}

.community-page .bg-area {
  background: #f4f4f4;
  padding-bottom: 100px;
}

.community-page .bg-area .tab-title-box {
  display: none;
  box-shadow: -9px 36px 46px -35px white;
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
  padding: 5px 0;
  text-align: center;
}

.community-page .bg-area .tab-title-box .tab-title {
  display: none;
  font-size: 23px;
  color: #e31a4c;
  text-align: center;
  display: inline-block;
}

.community-page .bg-area .tab-title-box img {
  cursor: pointer;
}

.community-page .bg-area .tab-box {
  display: none;
  text-align: center;
}

.community-page .bg-area .tab-box ul {
  display: inline-block;
}

.community-page .bg-area .tab-box ul li {
  cursor: pointer;
  float: left;
  font-size: 14px;
  color: #959595;
  padding: 13px 20px;
  box-sizing: border-box;
}

.community-page .bg-area .tab-box ul li.active-fix {
  color: #e31a4c;
  border-top: 2px solid #e31a4c;
  font-weight: bold;
}

.community-page .bg-area .tab-box ul li:not(.active-fix):hover, .community-page .bg-area .tab-box ul li:not(.active-fix).active {
  color: #e31a4c;
  border-top: 2px solid #e31a4c;
  font-weight: bold;
}

.community-page .bg-area .owl-community .item {
  overflow: hidden;
  padding: 50px 0;
  width: 90%;
  margin: auto;
}

.community-page .bg-area .owl-community .item .row .con-box {
  box-sizing: border-box;
  width: 24.5%;
  display: inline-block;
  padding: 0 10px;
}

.community-page .bg-area .owl-community .item .row .con-box .relative {
  position: relative;
  height: 260px;
  background-size: cover !important;
}

.community-page .bg-area .owl-community .item .row .con-box .relative .infobox {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  box-sizing: border-box;
}

.community-page .bg-area .owl-community .item .row .con-box .relative .infobox .info1 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 7px;
}

.community-page .bg-area .owl-community .item .row .con-box .relative .infobox .info2 {
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  height: 18px;
  overflow: hidden;
}

.community-page .bg-area .owl-community .item .row .con-box .relative .infobox .info3 {
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
}

.community-page .bg-area .owl-community .item .row .con-box .relative .infobox .area {
  position: absolute;
  bottom: 7px;
  right: 7px;
  font-size: 12px;
  color: #fff;
}

.community-page .bg-area .owl-community .item .row .con-box img {
  display: block;
  width: 100%;
}

.community-page .bg-area .owl-community .item .row .con-box .headings {
  margin: 10px 0 10px 0;
  overflow: hidden;
}

.community-page .bg-area .owl-community .item .row .con-box .headings .date {
  font-size: 14px;
  font-weight: lighter;
  letter-spacing: -1px;
  text-align: center;
  float: right;
  color: #ccc;
}

.community-page .bg-area .owl-community .item .row .con-box .headings .cat {
  color: #e31a4c;
  font-size: 16px;
  float: left;
  font-weight: lighter;
}

.community-page .bg-area .owl-community .item .row .con-box .title {
  clear: both;
  overflow: hidden;
  font-size: 15px;
  line-height: 22px;
  height: 100px;
  text-align: left;
}

.leejua-page {
  clear: both;
  overflow: hidden;
  background-size: cover;
  position: relative;
}

.leejua-page .intro-box {
  display: none;
  padding: 35px 25px;
  position: absolute;
  right: 0;
  bottom: 10%;
  background: #463111ab;
}

.leejua-page .intro-box .text-4 {
  color: #ffe1b4;
  font-size: 19px;
}

.leejua-page .intro-box .text-white {
  color: #fff;
  margin: 15px 0 10px 0;
}

.leejua-page .intro-box .text-gray {
  color: #bcb7af;
}

.leejua-page .content-box {
  margin: 100px 100px;
}

.leejua-page .content-box .dash {
  position: relative;
}

.leejua-page .content-box .dash::after {
  position: absolute;
  font-weight: 900;
  left: 0px;
  bottom: -70px;
  content: "ㅡ";
  font-size: 30px;
  color: #c4a273;
}

.leejua-page .content-box .text-1 {
  color: #9d783f;
  font-size: 19px;
  padding: 45px 0;
  padding-top: 35px;
  font-weight: 300;
}

.leejua-page .content-box .text-1 .larger {
  margin-top: 7px;
  font-size: 18px;
}

.leejua-page .content-box .text-2 {
  font-weight: 300;
  padding: 45px 0;
  color: #4c4b49;
  font-size: 16px;
}

.leejua-page .content-box .text-3 {
  color: #9d783f;
  font-size: 24px;
  font-weight: 200;
  margin-bottom: 100px;
}

.leejua-page .content-box .text-3 strong {
  font-weight: 700;
}

.leejua-page .content-box ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d8ccb9;
  padding: 20px 0;
}

.leejua-page .content-box ul li p {
  width: 300px;
  color: #4c4b49;
  padding-left: 20px;
  font-size: 16px;
  line-height: 22px;
}

.academy-page .row-1 {
  background: transparent url("/assets/images/front/wannabe/bg01.png") no-repeat;
  background-size: cover;
  padding: 70px 0;
  margin-bottom: 5px;
}

.academy-page .row-1 img {
  width: 100%;
}

.academy-page .row-1 .title-img {
  width: 78%;
}

.academy-page .row-1 .right {
  padding-top: 72px;
}

.academy-page .row-2 {
  padding: 70px 0;
  background: transparent url("/assets/images/front/wannabe/bg02.png") no-repeat;
  background-size: cover;
  margin-bottom: 5px;
}

.academy-page .row-2 .left {
  padding-top: 70px;
  padding-left: 22%;
}

.academy-page .row-2 .right {
  padding-right: 0;
}

.academy-page .row-2 .right img {
  width: 120%;
}

.academy-page .row-3 {
  padding: 50px 0;
  background: transparent url("/assets/images/front/wannabe/bg03_ex.png") no-repeat;
  background-size: cover;
  height: 607px;
}

.academy-page .row-3 .right {
  padding-top: 82px;
  text-align: left !important;
}

.academy-page .right,
.academy-page .left {
  box-sizing: border-box;
}

.academy-page .right {
  padding-right: 10%;
  text-align: right;
}

.academy-page .left {
  padding-left: 10%;
  text-align-last: auto;
}

.academy-page .content {
  line-height: 22px;
  text-align: left;
}

.academy-page .ci {
  margin: 50px auto 100px auto;
  text-align: center;
  width: 835px;
}

.academy-page .ci .ci-text {
  font-size: 14px;
  margin-top: 30px;
  background: #efefef;
  padding: 10px 30px;
  text-align: left;
}

.academy-page .ci .ci-text .primary-color {
  color: #e31a4c;
}

.collabo-page {
  text-align: center;
}

.cafe-page {
  text-align: center;
}

.cafe-page .bg-area {
  background: #f4f4f4;
  padding-bottom: 100px;
}

.cafe-page .cafe-content {
  margin-top: 100px;
}

.cafe-page .cafe-content .row {
  overflow: hidden;
  margin-bottom: 30px;
}

.cafe-page .cafe-content .row img.cafe-img {
  width: 100%;
}

.cafe-page .cafe-content .row .left {
  float: left;
  width: 50%;
}

.cafe-page .cafe-content .row .right {
  float: right;
  width: 50%;
}

.cafe-page .cafe-content .row .title {
  color: #e31a4c;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: bold;
}

.cafe-page .cafe-content .row .text {
  font-size: 15px;
}

.hr-page {
  text-align: center;
}

.hr-page .bg-area {
  background: #000 url("/assets/images/front/business/hr_bg.png") 50% 11% no-repeat;
  padding-bottom: 100px;
  overflow: hidden;
}

.hr-page .hr-content {
  margin-top: 550px;
}

.hr-page .hr-content > .row {
  overflow: hidden;
  margin-top: 50px;
}

.hr-page .hr-content > .row > .left {
  float: left;
  width: 20%;
  box-sizing: border-box;
}

.hr-page .hr-content > .row > .right {
  padding-bottom: 50px;
  padding-left: 20px;
  text-align: left;
  box-sizing: border-box;
  float: right;
  width: 80%;
  background: url("/assets/images/front/business/border.png") no-repeat;
  background-position: 0 100%;
}

.hr-page .hr-content > .row > .right .title {
  color: #e31a4c;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.hr-page .hr-content > .row > .right .sub-title {
  color: #b4b4b4;
  font-size: 14px;
  line-height: 26px;
}

.hr-page .hr-content > .row > .right .each-recruit {
  border-top: 1px solid #b4b4b4;
  padding: 5px 0;
  overflow: hidden;
}

.hr-page .hr-content > .row > .right .each-recruit .left {
  float: left;
  width: 15%;
  box-sizing: border-box;
  font-size: 17px;
}

.hr-page .hr-content > .row > .right .each-recruit .right {
  box-sizing: border-box;
  float: right;
  width: 85%;
}

.hr-page .hr-content > .row > .right .each-recruit .right .row span {
  font-size: 15px;
}

.hr-page .hr-content .button-area {
  margin-top: 70px;
}

.branch-page {
  text-align: center;
}

.branch-page .bg-area {
  background: #f6f9fa;
  overflow: hidden;
}

.branch-page .branch-content {
  margin-top: 0px;
}

.branch-page .branch-content .ask-business {
  border: 1px solid #000;
  position: relative;
  padding: 20px;
}

.branch-page .branch-content .ask-business .row1 img {
  width: 15px;
  vertical-align: middle;
}

.branch-page .branch-content .ask-business .row1 span.text1 {
  font-weight: bold;
  vertical-align: middle;
  color: #24547a;
  font-size: 13px;
}

.branch-page .branch-content .ask-business p.text2 {
  margin: 7px 0;
}

.branch-page .branch-content .ask-business p.text2 a {
  font-weight: bold;
  color: #505050 !important;
  font-size: 25px;
}

.branch-page .branch-content .ask-business p.text3 {
  color: #969a9b;
  font-size: 12px;
}

.branch-page .branch-content .ask-business .abs-button {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.branch-page .branch-content .text {
  font-size: 15px;
  line-height: 27px;
  color: #555;
}

.branch-page .branch-content .colored {
  color: #174360 !important;
}

.branch-page .branch-content strong {
  font-weight: normal !important;
}

.branch-page .branch-content .first-row {
  overflow: hidden;
  clear: both;
}

.branch-page .branch-content .first-row .left {
  padding: 30px;
  padding-left: 130px;
  padding-top: 110px;
  float: left;
  width: 60%;
  box-sizing: border-box;
  text-align: left;
}

.branch-page .branch-content .first-row .left .main-label {
  margin-bottom: 15px;
  color: #194866;
  font-size: 15px;
  border-top: 2px solid #194866;
  border-bottom: 2px solid #194866;
  padding: 3px 15px;
  display: inline-block;
  font-weight: bold;
}

.branch-page .branch-content .first-row .left .main-title {
  margin-bottom: 15px;
  color: #224e6b;
  font-size: 34px;
  letter-spacing: -1px;
  line-height: 46px;
}

.branch-page .branch-content .first-row .left .main-title strong {
  font-size: 42px;
  font-weight: bold !important;
}

.branch-page .branch-content .first-row .left .colored {
  font-size: 15px;
}

.branch-page .branch-content .first-row .right {
  width: 40%;
  float: right;
  box-sizing: border-box;
}

.branch-page .branch-content .second-row {
  overflow: hidden;
  clear: both;
}

.branch-page .branch-content .second-row .left {
  float: left;
  width: 45%;
}

.branch-page .branch-content .second-row .right {
  width: 55%;
  float: right;
  box-sizing: border-box;
  padding: 30px;
  padding-top: 80px;
  text-align: left;
}

.branch-page .branch-content .second-row .right .sub-title {
  font-size: 25px;
  font-weight: bold;
}

.branch-page .branch-content .second-row .right .title-text {
  font-size: 17px;
  color: #333;
}

.branch-page .branch-content .second-row .right .text {
  line-height: 25px;
}

.branch-page .branch-content .third-row {
  padding-top: 50px;
  height: 500px;
}

.branch-page .branch-content .third-row .sub-title {
  font-size: 25px;
  font-weight: bold;
}

.branch-page .branch-content .third-row .title-text {
  font-size: 17px;
  color: #333;
  margin: 20px 0 0px 0;
}

.branch-page .branch-content .third-row .text {
  line-height: 27px;
}

.branch-page .branch-content .fourth-row {
  padding: 50px 80px;
}

.branch-page .branch-content .fourth-row .sub-title {
  font-size: 25px;
  font-weight: bold;
}

.branch-page .branch-content .fourth-row .title-text {
  font-size: 17px;
  color: #333;
  margin: 0px 0 20px 0;
}

.branch-page .branch-content .fourth-row .text {
  line-height: 27px;
}

.branch-page .branch-content .fourth-row .issue-box {
  margin-top: 50px;
}

.branch-page .branch-content .fourth-row .issue-box .row {
  clear: both;
  overflow: hidden;
  border-top: 1px solid #193e56;
  padding: 30px 50px;
  text-align: left;
}

.branch-page .branch-content .fourth-row .issue-box .row .fll {
  text-align: left;
}

.branch-page .branch-content .fourth-row .issue-box .row .issue {
  width: 50px;
  display: inline-block;
  text-align: left;
}

.branch-page .branch-content .fourth-row .issue-box .row .title {
  color: #3f5f77;
  margin: 10px 0;
  font-size: 23px;
  text-align: left;
  font-weight: bold;
}

.branch-page .branch-content .fourth-row .issue-box .row .text {
  text-align: left;
}

.branch-page .branch-content .bg-bold {
  background: #f0f0f0;
}

.branch-page .branch-content > .row {
  overflow: hidden;
  margin-top: 50px;
}

.branch-page .branch-content > .row:last-child .right {
  background: none;
}

.branch-page .branch-content > .row > .left {
  float: left;
  width: 20%;
  box-sizing: border-box;
}

.branch-page .branch-content > .row > .right {
  padding-bottom: 50px;
  padding-left: 20px;
  text-align: left;
  box-sizing: border-box;
  float: right;
  width: 80%;
  background: url("/assets/images/front/business/border.png") no-repeat;
  background-position: 0 100%;
}

.branch-page .branch-content > .row > .right .title {
  color: #e31a4c;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.branch-page .branch-content > .row > .right .sub-title {
  color: #b4b4b4;
  font-size: 15px;
}

.branch-page .branch-content .button-area {
  margin-top: 70px;
}

.affiliate-page {
  text-align: center;
}

.affiliate-page .bg-area {
  background: transparent url("/assets/images/front/business/affiliate_bg.png") no-repeat;
  overflow: hidden;
  background-size: 100%;
  height: 1100px;
}

.counsel-page {
  text-align: center;
}

.counsel-page .counsel-title {
  color: #e11b4a !important;
  font-size: 32px;
  font-weight: 400;
  margin: 10px 0;
}

.counsel-page .counsel-subtitle {
  color: #ccc !important;
  font-size: 14px;
  font-weight: 200;
  margin-top: 50px;
}

.counsel-page .line {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: #ccc;
}

.counsel-page .bg-area {
  padding-bottom: 150px;
  overflow: hidden;
}

.counsel-page .bg-area .button-area ul {
  border: 1px solid #eee;
  width: 80%;
}

.counsel-page .bg-area .button-area ul li {
  width: 25%;
  float: left;
}

.counsel-page .bg-area .button-area ul li:nth-child(1) a {
  border-right: 1px dashed #eee;
  border-left: 1px solid #fff;
}

.counsel-page .bg-area .button-area ul li:nth-child(2) a {
  border-right: 1px dashed #eee;
  border-left: 1px solid #fff;
}

.counsel-page .bg-area .button-area ul li:nth-child(3) a {
  border-left: 1px solid #fff;
  border-right: 1px dashed #eee;
}

.counsel-page .bg-area .button-area ul li:nth-child(4) a {
  border-left: 1px solid #fff;
}

.counsel-page .bg-area .button-area ul li a {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.counsel-page .bg-area .button-area ul li a:hover {
  border: 1px solid #e11b4a;
}

.counsel-page .bg-area .button-area ul li a:hover span {
  color: #e11b4a !important;
}

.counsel-page .bg-area .button-area ul li a .inner-box {
  height: 120px;
  position: relative;
  width: 100%;
}

.counsel-page .bg-area .button-area ul li a .inner-box img {
  width: 70px;
  display: inline-block;
}

.counsel-page .bg-area .button-area ul li a .inner-box span {
  position: absolute;
  bottom: 10px;
  display: block;
  text-align: center;
  color: #333;
  font-size: 17px;
  width: 100%;
}

.counsel-page .event-img-box {
  margin-top: 100px;
  position: relative;
}

.counsel-page .event-img-box .text {
  position: absolute;
  left: 42%;
  bottom: 130px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}

.counsel-page .page-title {
  color: #e11b4a !important;
  border-top: 2px solid #e11b4a !important;
}

.counsel-page .page-text {
  color: #696969 !important;
}

.modal-img-box {
  position: relative;
}

.modal-img-box .event-img-box {
  margin-top: 100px;
  position: relative;
}

.modal-img-box .event-img-box .event-img.m-img {
  width: 100%;
}

.modal-img-box .text {
  position: absolute;
  left: 516px;
  bottom: 87px;
  color: #fff !important;
  font-weight: bold;
  font-size: 17px;
}

.modal-img-box .text.footer-text {
  left: 428px;
}

.page-bar {
  display: none;
  margin-top: 10px;
  background: url("/assets/images/front/bg/page_bar.png") no-repeat;
  background-size: cover;
  height: 155px;
  width: 100%;
  border-radius: 60px 0 60px 0;
}

.page-bar .page-bar-text {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  font-size: 22px;
  text-shadow: 1px 0px 12px #969696;
}

.page-header-box {
  padding: 40px 0;
}

.page-header-box.leejua-header {
  padding: 70px 0;
  text-align: left;
  padding-left: 15%;
}

.page-header-box.leejua-header .page-title {
  border-top: 0 !important;
}

.page-header-box.leejua-header .page-bg {
  text-align: left;
}

.page-header-box.leejua-header .page-text {
  text-align: left;
  line-height: 30px;
  color: #bbb;
}

.page-header-box.leejua-header .signature-box {
  margin-top: 20px;
}

.page-header-box.leejua-header .signature-box span {
  color: #fff;
  display: inline-block;
}

.page-header-box.leejua-header .signature-box img {
  vertical-align: middle;
}

.page-header-box.artistcrew {
  overflow: hidden;
}

.page-header-box.artistcrew > div {
  box-sizing: border-box;
  height: 220px;
}

.page-header-box.artistcrew .fll {
  text-align: right;
  padding-right: 2%;
  width: 47%;
}

.page-header-box.artistcrew .flr {
  padding-left: 2%;
  width: 53%;
  display: table;
}

.page-header-box.artistcrew .flr .page-text {
  display: table-cell;
  vertical-align: middle;
  text-align: left !important;
  line-height: 23px;
}

.page-header-box.artistcrew .flr .page-text .text1 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-header-box.artistcrew .flr .page-text .text2 {
  font-size: 14px;
  font-weight: 300;
}

.page-header-box.light {
  padding: 20px 0;
}

.page-header-box.light .page-title {
  border-top: none !important;
  font-weight: 300;
}

.page-header-box .page-bg {
  text-align: center;
  padding-bottom: 10px;
}

.page-header-box .page-bg .image-box {
  display: none;
}

.page-header-box .page-bg .image-box .display-table {
  display: table;
}

.page-header-box .page-bg .image-box .display-table .page-image {
  display: table-cell;
  vertical-align: middle;
  margin-right: 10px;
  width: 56px;
}

.page-header-box .page-bg .page-title {
  display: inline-block;
  color: #fff;
  font-size: 32px;
  letter-spacing: -1px;
  font-weight: bold;
  vertical-align: super;
  border-top: 2px solid #fff;
  padding-top: 10px;
}

.page-header-box .page-text {
  color: #ccc;
  text-align: center;
  font-size: 16px;
  letter-spacing: -0.5px;
  padding-bottom: 0 !important;
}

.bg-modal .page-modal-bg {
  border-bottom: 2px solid #333;
  background-position: 0 100%;
  background-size: 100%;
  text-align: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.bg-modal .page-modal-bg .page-title {
  display: inline-block;
  color: #333;
  font-size: 25px;
  letter-spacing: -1px;
  vertical-align: super;
}

.bg-modal .content-box {
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
}

.bg-modal .content-box .pink-box .title {
  background: #f7dbe2;
  padding: 5px 5px;
  font-size: 16px;
  font-weight: bold;
  color: #5c5c5c;
  margin-bottom: 7px;
}

.bg-modal .content-box .pink-box .text {
  letter-spacing: -1px;
  color: #77797a;
  font-size: 13px;
  line-height: 19px;
}

.bg-modal .button-area {
  overflow: hidden;
  margin-bottom: 10px;
  text-align: center;
}

.bg-modal .button-area button {
  width: 99%;
}

.bg-modal .button-area .pink-button {
  border: none;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 17px;
  background: #e31a4c;
  transition: all 0.3s;
  border: 2px solid #e31a4c;
}

.bg-modal .button-area .pink-button:hover {
  transition: all 0.3s;
  color: #e31a4c;
  border: 2px solid #e31a4c;
  background: #fff;
}

.modal-menthor .button-area button,
.modal-menthor2 .button-area button,
.modal-menthor-header .button-area button {
  overflow: hidden;
  box-sizing: border-box;
}

.modal-menthor .button-area .white-button,
.modal-menthor2 .button-area .white-button,
.modal-menthor-header .button-area .white-button {
  width: 98% !important;
  background: #fff;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 10px;
  font-size: 15px;
  color: #333;
}

.modal-menthor .button-area .black-button,
.modal-menthor2 .button-area .black-button,
.modal-menthor-header .button-area .black-button {
  width: 98% !important;
  background: #333;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 10px;
  font-size: 15px;
  color: #fff;
}

.modal-menthor .menthor-content .name-input::placeholder,
.modal-menthor .menthor-content textarea::placeholder,
.modal-menthor2 .menthor-content .name-input::placeholder,
.modal-menthor2 .menthor-content textarea::placeholder,
.modal-menthor-header .menthor-content .name-input::placeholder,
.modal-menthor-header .menthor-content textarea::placeholder {
  color: #ccc !important;
  font-size: 15px;
}

.modal-menthor .menthor-content .new-askbox,
.modal-menthor2 .menthor-content .new-askbox,
.modal-menthor-header .menthor-content .new-askbox {
  margin-top: 20px;
}

.modal-menthor .menthor-content .new-askbox .flr1,
.modal-menthor2 .menthor-content .new-askbox .flr1,
.modal-menthor-header .menthor-content .new-askbox .flr1 {
  padding-top: 17px;
}

.modal-menthor .menthor-content .new-askbox .purpose,
.modal-menthor2 .menthor-content .new-askbox .purpose,
.modal-menthor-header .menthor-content .new-askbox .purpose {
  box-sizing: border-box;
  padding-bottom: 5px !important;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
}

.modal-menthor .menthor-content .new-askbox .purpose > div,
.modal-menthor2 .menthor-content .new-askbox .purpose > div,
.modal-menthor-header .menthor-content .new-askbox .purpose > div {
  font-size: 15px;
  display: inline-block;
  color: #999;
  vertical-align: top;
  line-height: 15px;
}

.modal-menthor .menthor-content .new-askbox .purpose > div.line,
.modal-menthor2 .menthor-content .new-askbox .purpose > div.line,
.modal-menthor-header .menthor-content .new-askbox .purpose > div.line {
  display: block;
}

.modal-menthor .menthor-content .new-askbox .purpose .custom-select,
.modal-menthor2 .menthor-content .new-askbox .purpose .custom-select,
.modal-menthor-header .menthor-content .new-askbox .purpose .custom-select {
  padding: 0 4px;
}

.modal-menthor .menthor-content .new-askbox .purpose .custom-select.fixed-select,
.modal-menthor2 .menthor-content .new-askbox .purpose .custom-select.fixed-select,
.modal-menthor-header .menthor-content .new-askbox .purpose .custom-select.fixed-select {
  width: 85px;
}

.modal-menthor .menthor-content .new-askbox .purpose .custom-select .show .select-arrow,
.modal-menthor2 .menthor-content .new-askbox .purpose .custom-select .show .select-arrow,
.modal-menthor-header .menthor-content .new-askbox .purpose .custom-select .show .select-arrow {
  right: -12px;
}

.modal-menthor .menthor-content .new-askbox .phone-box .custom-select,
.modal-menthor2 .menthor-content .new-askbox .phone-box .custom-select,
.modal-menthor-header .menthor-content .new-askbox .phone-box .custom-select {
  padding: 0 4px;
}

.modal-menthor .menthor-content .new-askbox .phone-box .custom-select .show .select-arrow,
.modal-menthor2 .menthor-content .new-askbox .phone-box .custom-select .show .select-arrow,
.modal-menthor-header .menthor-content .new-askbox .phone-box .custom-select .show .select-arrow {
  right: 0;
}

.modal-menthor .menthor-content .new-askbox .phone-box input,
.modal-menthor2 .menthor-content .new-askbox .phone-box input,
.modal-menthor-header .menthor-content .new-askbox .phone-box input {
  font-size: 15px !important;
  color: #333;
  padding-top: 0 !important;
  background: #fff;
}

.modal-menthor .menthor-content .new-askbox .phone-box input::placeholder,
.modal-menthor2 .menthor-content .new-askbox .phone-box input::placeholder,
.modal-menthor-header .menthor-content .new-askbox .phone-box input::placeholder {
  color: #999;
}

.modal-menthor .menthor-content .new-askbox .phone-box p.dash,
.modal-menthor2 .menthor-content .new-askbox .phone-box p.dash,
.modal-menthor-header .menthor-content .new-askbox .phone-box p.dash {
  line-height: initial !important;
}

.modal-menthor .menthor-content .new-askbox .asktime-box,
.modal-menthor2 .menthor-content .new-askbox .asktime-box,
.modal-menthor-header .menthor-content .new-askbox .asktime-box {
  padding-bottom: 5px !important;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
}

.modal-menthor .menthor-content .new-askbox .asktime-box .show,
.modal-menthor2 .menthor-content .new-askbox .asktime-box .show,
.modal-menthor-header .menthor-content .new-askbox .asktime-box .show {
  padding-left: 0 !important;
}

.modal-menthor .menthor-content .new-askbox .custom-select,
.modal-menthor2 .menthor-content .new-askbox .custom-select,
.modal-menthor-header .menthor-content .new-askbox .custom-select {
  display: inline-block;
  position: relative;
  padding: 0 5px;
}

.modal-menthor .menthor-content .new-askbox .custom-select.fixed-select,
.modal-menthor2 .menthor-content .new-askbox .custom-select.fixed-select,
.modal-menthor-header .menthor-content .new-askbox .custom-select.fixed-select {
  width: 85px;
}

.modal-menthor .menthor-content .new-askbox .custom-select .show,
.modal-menthor2 .menthor-content .new-askbox .custom-select .show,
.modal-menthor-header .menthor-content .new-askbox .custom-select .show {
  cursor: pointer;
  position: relative;
  padding: 0 5px;
}

.modal-menthor .menthor-content .new-askbox .custom-select .show span,
.modal-menthor2 .menthor-content .new-askbox .custom-select .show span,
.modal-menthor-header .menthor-content .new-askbox .custom-select .show span {
  font-size: 15px;
  color: #333;
  line-height: 15px !important;
}

.modal-menthor .menthor-content .new-askbox .custom-select .show .select-arrow,
.modal-menthor2 .menthor-content .new-askbox .custom-select .show .select-arrow,
.modal-menthor-header .menthor-content .new-askbox .custom-select .show .select-arrow {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  right: -9px;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.modal-menthor .menthor-content .new-askbox .custom-select ul.options,
.modal-menthor .menthor-content .new-askbox .custom-select ul.branch-options,
.modal-menthor .menthor-content .new-askbox .custom-select ul.phone-options,
.modal-menthor2 .menthor-content .new-askbox .custom-select ul.options,
.modal-menthor2 .menthor-content .new-askbox .custom-select ul.branch-options,
.modal-menthor2 .menthor-content .new-askbox .custom-select ul.phone-options,
.modal-menthor-header .menthor-content .new-askbox .custom-select ul.options,
.modal-menthor-header .menthor-content .new-askbox .custom-select ul.branch-options,
.modal-menthor-header .menthor-content .new-askbox .custom-select ul.phone-options {
  display: none;
  position: absolute;
  top: 23px;
  z-index: 10;
  border: 1px solid #ccc;
}

.modal-menthor .menthor-content .new-askbox .custom-select ul.options li,
.modal-menthor .menthor-content .new-askbox .custom-select ul.branch-options li,
.modal-menthor .menthor-content .new-askbox .custom-select ul.phone-options li,
.modal-menthor2 .menthor-content .new-askbox .custom-select ul.options li,
.modal-menthor2 .menthor-content .new-askbox .custom-select ul.branch-options li,
.modal-menthor2 .menthor-content .new-askbox .custom-select ul.phone-options li,
.modal-menthor-header .menthor-content .new-askbox .custom-select ul.options li,
.modal-menthor-header .menthor-content .new-askbox .custom-select ul.branch-options li,
.modal-menthor-header .menthor-content .new-askbox .custom-select ul.phone-options li {
  cursor: pointer;
  padding: 7px 15px;
  font-size: 14px;
  color: #666;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.modal-menthor .menthor-content .new-askbox .custom-select ul.options li:last-child,
.modal-menthor .menthor-content .new-askbox .custom-select ul.branch-options li:last-child,
.modal-menthor .menthor-content .new-askbox .custom-select ul.phone-options li:last-child,
.modal-menthor2 .menthor-content .new-askbox .custom-select ul.options li:last-child,
.modal-menthor2 .menthor-content .new-askbox .custom-select ul.branch-options li:last-child,
.modal-menthor2 .menthor-content .new-askbox .custom-select ul.phone-options li:last-child,
.modal-menthor-header .menthor-content .new-askbox .custom-select ul.options li:last-child,
.modal-menthor-header .menthor-content .new-askbox .custom-select ul.branch-options li:last-child,
.modal-menthor-header .menthor-content .new-askbox .custom-select ul.phone-options li:last-child {
  border-bottom: none;
}

.modal-menthor .menthor-content .new-askbox .custom-select ul.options li:hover,
.modal-menthor .menthor-content .new-askbox .custom-select ul.branch-options li:hover,
.modal-menthor .menthor-content .new-askbox .custom-select ul.phone-options li:hover,
.modal-menthor2 .menthor-content .new-askbox .custom-select ul.options li:hover,
.modal-menthor2 .menthor-content .new-askbox .custom-select ul.branch-options li:hover,
.modal-menthor2 .menthor-content .new-askbox .custom-select ul.phone-options li:hover,
.modal-menthor-header .menthor-content .new-askbox .custom-select ul.options li:hover,
.modal-menthor-header .menthor-content .new-askbox .custom-select ul.branch-options li:hover,
.modal-menthor-header .menthor-content .new-askbox .custom-select ul.phone-options li:hover {
  background: #eee;
}

.modal-menthor .menthor-content .new-askbox .custom-select ul.options li,
.modal-menthor2 .menthor-content .new-askbox .custom-select ul.options li,
.modal-menthor-header .menthor-content .new-askbox .custom-select ul.options li {
  width: 100px;
}

.modal-menthor .menthor-content .new-askbox .custom-select ul.phone-options,
.modal-menthor2 .menthor-content .new-askbox .custom-select ul.phone-options,
.modal-menthor-header .menthor-content .new-askbox .custom-select ul.phone-options {
  left: 0px;
}

.modal-menthor .menthor-content .new-askbox .custom-select ul.phone-options li,
.modal-menthor2 .menthor-content .new-askbox .custom-select ul.phone-options li,
.modal-menthor-header .menthor-content .new-askbox .custom-select ul.phone-options li {
  width: 28px;
}

.modal-menthor .menthor-content .new-askbox .custom-select ul.branch-options,
.modal-menthor2 .menthor-content .new-askbox .custom-select ul.branch-options,
.modal-menthor-header .menthor-content .new-askbox .custom-select ul.branch-options {
  left: 0px;
}

.modal-menthor .menthor-content .new-askbox .custom-select ul.branch-options li,
.modal-menthor2 .menthor-content .new-askbox .custom-select ul.branch-options li,
.modal-menthor-header .menthor-content .new-askbox .custom-select ul.branch-options li {
  width: 100px;
}

.modal-menthor .menthor-content .new-askbox .agree-box,
.modal-menthor2 .menthor-content .new-askbox .agree-box,
.modal-menthor-header .menthor-content .new-askbox .agree-box {
  height: 100px;
  overflow: auto;
  text-align: left;
}

.modal-menthor .menthor-content .small-label,
.modal-menthor2 .menthor-content .small-label,
.modal-menthor-header .menthor-content .small-label {
  width: 135px !important;
}

.modal-menthor .menthor-content .large-label,
.modal-menthor2 .menthor-content .large-label,
.modal-menthor-header .menthor-content .large-label {
  width: 66% !important;
}

.modal-menthor .menthor-content .large-label .normal-text,
.modal-menthor2 .menthor-content .large-label .normal-text,
.modal-menthor-header .menthor-content .large-label .normal-text {
  font-size: 14px;
  letter-spacing: 0;
}

.modal-menthor .menthor-content input.form-error,
.modal-menthor2 .menthor-content input.form-error,
.modal-menthor-header .menthor-content input.form-error {
  margin-top: 0 !important;
}

.modal-menthor .menthor-content input,
.modal-menthor2 .menthor-content input,
.modal-menthor-header .menthor-content input {
  font-size: 16px;
}

.modal-menthor .menthor-content input::-webkit-input-placeholder,
.modal-menthor2 .menthor-content input::-webkit-input-placeholder,
.modal-menthor-header .menthor-content input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #e76d6d;
}

.modal-menthor .menthor-content input::-moz-placeholder,
.modal-menthor2 .menthor-content input::-moz-placeholder,
.modal-menthor-header .menthor-content input::-moz-placeholder {
  /* Firefox 19+ */
  color: #e76d6d;
}

.modal-menthor .menthor-content input:-ms-input-placeholder,
.modal-menthor2 .menthor-content input:-ms-input-placeholder,
.modal-menthor-header .menthor-content input:-ms-input-placeholder {
  /* IE 10+ */
  color: #e76d6d;
}

.modal-menthor .menthor-content input:-moz-placeholder,
.modal-menthor2 .menthor-content input:-moz-placeholder,
.modal-menthor-header .menthor-content input:-moz-placeholder {
  /* Firefox 18- */
  color: #e76d6d;
}

.modal-menthor .menthor-content input[type="text"],
.modal-menthor2 .menthor-content input[type="text"],
.modal-menthor-header .menthor-content input[type="text"] {
  background: #f2f2ec;
  box-shadow: none;
  outline: none;
  border: 0;
  vertical-align: top;
  margin-left: -4px;
  padding: 0 20px;
  width: 89%;
  box-sizing: border-box;
  color: #e31a4c;
  margin-top: 0 !important;
}

.modal-menthor .menthor-content .menthor-title,
.modal-menthor2 .menthor-content .menthor-title,
.modal-menthor-header .menthor-content .menthor-title {
  color: #e31a4c;
  font-size: 27px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

.modal-menthor .menthor-content .table-row .fll,
.modal-menthor2 .menthor-content .table-row .fll,
.modal-menthor-header .menthor-content .table-row .fll {
  padding-right: 5px;
  box-sizing: border-box;
}

.modal-menthor .menthor-content table,
.modal-menthor2 .menthor-content table,
.modal-menthor-header .menthor-content table {
  margin-bottom: 2px;
  width: 100%;
}

.modal-menthor .menthor-content table tr:last-child td,
.modal-menthor2 .menthor-content table tr:last-child td,
.modal-menthor-header .menthor-content table tr:last-child td {
  border-bottom: 0;
}

.modal-menthor .menthor-content table td,
.modal-menthor2 .menthor-content table td,
.modal-menthor-header .menthor-content table td {
  border-bottom: 2px solid #fff;
}

.modal-menthor .menthor-content table .img-box,
.modal-menthor2 .menthor-content table .img-box,
.modal-menthor-header .menthor-content table .img-box {
  width: 52px;
  vertical-align: middle;
  display: table-cell;
}

.modal-menthor .menthor-content table .img-box p,
.modal-menthor2 .menthor-content table .img-box p,
.modal-menthor-header .menthor-content table .img-box p {
  font-size: 12px;
  letter-spacing: -0.5px;
  text-align: center;
}

.modal-menthor .menthor-content table .subject-name,
.modal-menthor2 .menthor-content table .subject-name,
.modal-menthor-header .menthor-content table .subject-name {
  padding: 7px 15px;
  color: #e31a4c;
  font-size: 16px;
  width: 20%;
  box-sizing: border-box;
}

.modal-menthor .menthor-content table .label-box,
.modal-menthor2 .menthor-content table .label-box,
.modal-menthor-header .menthor-content table .label-box {
  box-sizing: border-box;
  margin-bottom: 3px;
  padding: 10px 0;
  width: 88%;
}

.modal-menthor .menthor-content table .label-box span,
.modal-menthor2 .menthor-content table .label-box span,
.modal-menthor-header .menthor-content table .label-box span {
  margin-left: 5px;
  vertical-align: middle;
}

.modal-menthor .menthor-content table .label-box label,
.modal-menthor2 .menthor-content table .label-box label,
.modal-menthor-header .menthor-content table .label-box label {
  display: inline-block;
  width: 33.3%;
}

.modal-menthor .menthor-content .useless-box,
.modal-menthor2 .menthor-content .useless-box,
.modal-menthor-header .menthor-content .useless-box {
  border: 6px solid #f2f2ec;
  margin: 15px 0;
}

.modal-menthor .menthor-content .img-area,
.modal-menthor2 .menthor-content .img-area,
.modal-menthor-header .menthor-content .img-area {
  box-sizing: border-box;
}

.modal-menthor .menthor-content .img-area a,
.modal-menthor2 .menthor-content .img-area a,
.modal-menthor-header .menthor-content .img-area a {
  width: 100%;
  display: inline-block;
}

.modal-menthor .menthor-content .img-area a img,
.modal-menthor2 .menthor-content .img-area a img,
.modal-menthor-header .menthor-content .img-area a img {
  width: 100%;
  display: inline-block;
}

.modal-menthor .menthor-content .button-area,
.modal-menthor2 .menthor-content .button-area,
.modal-menthor-header .menthor-content .button-area {
  overflow: hidden;
  margin-bottom: 10px;
}

.modal-menthor .menthor-content .button-area button,
.modal-menthor2 .menthor-content .button-area button,
.modal-menthor-header .menthor-content .button-area button {
  width: 100%;
}

.modal-menthor .menthor-content .button-area .gray-button,
.modal-menthor2 .menthor-content .button-area .gray-button,
.modal-menthor-header .menthor-content .button-area .gray-button {
  border: 2px solid #898989;
  color: #898989;
  text-align: center;
  padding: 10px 0;
  font-size: 17px;
  background: #fff;
  transition: all 0.3s;
}

.modal-menthor .menthor-content .button-area .gray-button:hover,
.modal-menthor2 .menthor-content .button-area .gray-button:hover,
.modal-menthor-header .menthor-content .button-area .gray-button:hover {
  transition: all 0.3s;
  color: #fff;
  background: #898989;
}

.modal-menthor .menthor-content .button-area .primary-button,
.modal-menthor2 .menthor-content .button-area .primary-button,
.modal-menthor-header .menthor-content .button-area .primary-button {
  border: 2px solid #df0440;
  color: #df0440;
  text-align: center;
  padding: 10px 0;
  font-size: 17px;
  background: #fff;
  transition: all 0.3s;
}

.modal-menthor .menthor-content .button-area .primary-button:hover,
.modal-menthor2 .menthor-content .button-area .primary-button:hover,
.modal-menthor-header .menthor-content .button-area .primary-button:hover {
  transition: all 0.3s;
  color: #fff;
  background: #df0440;
}

.modal-menthor .menthor-content .agree-box,
.modal-menthor2 .menthor-content .agree-box,
.modal-menthor-header .menthor-content .agree-box {
  height: 100px;
  overflow: auto;
}

.modal-branch .menthor-content input.form-error,
.modal-affiliate .menthor-content input.form-error {
  margin-top: 0 !important;
}

.modal-branch .menthor-content input,
.modal-affiliate .menthor-content input {
  font-size: 16px;
}

.modal-branch .menthor-content input::-webkit-input-placeholder,
.modal-affiliate .menthor-content input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #e76d6d;
}

.modal-branch .menthor-content input::-moz-placeholder,
.modal-affiliate .menthor-content input::-moz-placeholder {
  /* Firefox 19+ */
  color: #e76d6d;
}

.modal-branch .menthor-content input:-ms-input-placeholder,
.modal-affiliate .menthor-content input:-ms-input-placeholder {
  /* IE 10+ */
  color: #e76d6d;
}

.modal-branch .menthor-content input:-moz-placeholder,
.modal-affiliate .menthor-content input:-moz-placeholder {
  /* Firefox 18- */
  color: #e76d6d;
}

.modal-branch .menthor-content input[type="text"],
.modal-affiliate .menthor-content input[type="text"] {
  background: #f2f2ec;
  box-shadow: none;
  outline: none;
  border: 0;
  vertical-align: top;
  height: 52px;
  margin-left: -4px;
  padding: 0 20px;
  width: 89%;
  box-sizing: border-box;
  color: #e31a4c;
  margin-top: 0 !important;
}

.modal-branch .menthor-content input[name="location"],
.modal-branch .menthor-content input[name="brand"],
.modal-affiliate .menthor-content input[name="location"],
.modal-affiliate .menthor-content input[name="brand"] {
  width: calc(100% - 52px);
}

.modal-branch .menthor-content textarea,
.modal-affiliate .menthor-content textarea {
  margin-top: 0 !important;
  color: #e31a4c;
  font-size: 16px;
  background: #f2f2ec;
  border: none;
  width: 905px;
  padding-left: 20px;
  height: 138px;
  margin-left: -3px;
  vertical-align: top;
}

.modal-branch .menthor-content textarea::-webkit-input-placeholder,
.modal-affiliate .menthor-content textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #e76d6d;
}

.modal-branch .menthor-content textarea::-moz-placeholder,
.modal-affiliate .menthor-content textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #e76d6d;
}

.modal-branch .menthor-content textarea:-ms-input-placeholder,
.modal-affiliate .menthor-content textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #e76d6d;
}

.modal-branch .menthor-content textarea:-moz-placeholder,
.modal-affiliate .menthor-content textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #e76d6d;
}

.modal-branch .menthor-content .menthor-title,
.modal-affiliate .menthor-content .menthor-title {
  color: #e31a4c;
  font-size: 27px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

.modal-branch .menthor-content .table-row .fll,
.modal-affiliate .menthor-content .table-row .fll {
  padding-right: 5px;
  box-sizing: border-box;
}

.modal-branch .menthor-content table,
.modal-affiliate .menthor-content table {
  margin-bottom: 2px;
  width: 100%;
}

.modal-branch .menthor-content table tr,
.modal-affiliate .menthor-content table tr {
  background: #f2f2ec;
}

.modal-branch .menthor-content table tr:last-child td,
.modal-affiliate .menthor-content table tr:last-child td {
  border-bottom: 0;
}

.modal-branch .menthor-content table td,
.modal-affiliate .menthor-content table td {
  border-bottom: 2px solid #fff;
}

.modal-branch .menthor-content table .img-box,
.modal-affiliate .menthor-content table .img-box {
  width: 52px;
  vertical-align: middle;
  display: table-cell;
  background: #e31a4c;
}

.modal-branch .menthor-content table .img-box p,
.modal-affiliate .menthor-content table .img-box p {
  color: #fff;
  font-size: 12px;
  letter-spacing: -0.5px;
  text-align: center;
}

.modal-branch .menthor-content table .subject-name,
.modal-affiliate .menthor-content table .subject-name {
  padding: 7px 15px;
  color: #e31a4c;
  font-size: 16px;
  width: 20%;
  box-sizing: border-box;
}

.modal-branch .menthor-content table .label-box,
.modal-affiliate .menthor-content table .label-box {
  box-sizing: border-box;
  margin-bottom: 3px;
  padding: 10px 0;
  width: 80%;
}

.modal-branch .menthor-content table .label-box span,
.modal-affiliate .menthor-content table .label-box span {
  margin-left: 5px;
  vertical-align: middle;
}

.modal-branch .menthor-content table .label-box label,
.modal-affiliate .menthor-content table .label-box label {
  display: inline-block;
  width: 150px;
}

.modal-branch .menthor-content table .label-box label.long,
.modal-affiliate .menthor-content table .label-box label.long {
  width: 170px;
}

.modal-branch .menthor-content .useless-box,
.modal-affiliate .menthor-content .useless-box {
  border: 6px solid #f2f2ec;
  margin: 15px 0;
}

.modal-branch .menthor-content .img-area,
.modal-affiliate .menthor-content .img-area {
  box-sizing: border-box;
}

.modal-branch .menthor-content .img-area a,
.modal-affiliate .menthor-content .img-area a {
  width: 100%;
  display: inline-block;
}

.modal-branch .menthor-content .img-area a img,
.modal-affiliate .menthor-content .img-area a img {
  width: 100%;
  display: inline-block;
}

.modal-branch .menthor-content .button-area,
.modal-affiliate .menthor-content .button-area {
  overflow: hidden;
  margin-bottom: 10px;
}

.modal-branch .menthor-content .button-area button,
.modal-affiliate .menthor-content .button-area button {
  width: 99%;
}

.modal-branch .menthor-content .button-area .gray-button,
.modal-affiliate .menthor-content .button-area .gray-button {
  border: 2px solid #898989;
  color: #898989;
  text-align: center;
  padding: 10px 0;
  font-size: 17px;
  background: #fff;
  transition: all 0.3s;
}

.modal-branch .menthor-content .button-area .gray-button:hover,
.modal-affiliate .menthor-content .button-area .gray-button:hover {
  transition: all 0.3s;
  color: #fff;
  background: #898989;
}

.modal-branch .menthor-content .button-area .primary-button,
.modal-affiliate .menthor-content .button-area .primary-button {
  border: 2px solid #df0440;
  color: #df0440;
  text-align: center;
  padding: 10px 0;
  font-size: 17px;
  background: #fff;
  transition: all 0.3s;
}

.modal-branch .menthor-content .button-area .primary-button:hover,
.modal-affiliate .menthor-content .button-area .primary-button:hover {
  transition: all 0.3s;
  color: #fff;
  background: #df0440;
}

.modal-branch .menthor-content .agree-box,
.modal-affiliate .menthor-content .agree-box {
  height: 100px;
  overflow: auto;
}

.modal-diploma .relative-box .w100.bg-modal .page-content-box .header-bar {
  box-sizing: border-box;
  margin-top: 50px;
  background: #e31a4c;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  display: table;
  width: 100%;
}

.modal-diploma .relative-box .w100.bg-modal .page-content-box .header-bar .inner-box {
  display: table-cell;
  vertical-align: middle;
  line-height: 10px;
}

.modal-diploma .relative-box .w100.bg-modal .page-content-box .header-bar .inner-box ul li {
  float: left;
}

.modal-diploma .relative-box .w100.bg-modal .page-content-box .header-bar .inner-box ul li span {
  color: #fff;
  font-size: 15px;
}

.modal-diploma .relative-box .w100.bg-modal .page-content-box .header-bar .inner-box ul li span.bold {
  font-size: 16px;
  margin-right: 10px;
}

.modal-diploma .relative-box .w100.bg-modal .page-content-box .header-bar .inner-box ul li:before {
  content: " | ";
  padding: 0 10px;
  color: #fff;
}

.modal-diploma .relative-box .w100.bg-modal .page-content-box .header-bar .inner-box ul li:first-child:before {
  content: none;
}

.modal-diploma .relative-box .w100.bg-modal .page-content-box .page-content {
  margin-top: 50px;
}

.modal-diploma .relative-box .w100.bg-modal .page-content-box .page-content .row {
  overflow: hidden;
  margin-bottom: 10px;
}

.modal-diploma .relative-box .w100.bg-modal .page-content-box .page-content .row .left {
  color: #e31a4c;
  border-top: 3px solid #e31a4c;
  padding-top: 5px;
  font-size: 16px;
  font-weight: bold;
  float: left;
  width: 15%;
}

.modal-diploma .relative-box .w100.bg-modal .page-content-box .page-content .row .right {
  float: right;
  width: 84%;
  margin-left: 1%;
  border-top: 3px solid #e0e0e0;
  color: #7e7e7e;
  font-size: 14px;
  padding-top: 5px;
  line-height: 24px;
}

.modal-diploma .relative-box .w100.bg-modal .page-content-box .page-content .row .right a.link2.valid::before {
  content: " | ";
}

.modal-diploma .relative-box .w100.bg-modal .page-content-box .page-content .button-area {
  overflow: hidden;
  margin-bottom: 10px;
  margin-top: 50px;
}

.modal-diploma .relative-box .w100.bg-modal .page-content-box .page-content .button-area button {
  width: 99%;
}

.modal-diploma .relative-box .w100.bg-modal .page-content-box .page-content .button-area .primary-button {
  border: 2px solid #df0440;
  text-align: center;
  padding: 10px 0;
  font-size: 17px;
  transition: all 0.3s;
  color: #fff;
  background: #df0440;
}

.modal-diploma .relative-box .w100.bg-modal .page-content-box .page-content .button-area .primary-button:hover {
  transition: all 0.3s;
  color: #df0440;
  background: #fff;
}

.agree-box {
  border: 1px solid #eee;
  padding: 10px;
  margin-bottom: 7px;
  scrollbar-base-color: #e4a8ae;
  scrollbar-arrow-color: #fff;
}

.agree-box::-webkit-scrollbar {
  width: 2px;
}

.agree-box::-webkit-scrollbar-track {
  background-color: #eaeaea;
  border-left: 1px solid #ccc;
}

.agree-box::-webkit-scrollbar-thumb {
  background-color: #de848c;
}

.agree-box::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}

.agree-box p {
  font-size: 12px;
  margin-bottom: 4px;
  letter-spacing: -1px;
  font-weight: normal;
}

.agree-box p.title {
  font-weight: bold;
  font-size: 14px;
  padding: 5px 0;
}

.agree-box ul {
  width: 100%;
  padding-bottom: 5px;
  padding-left: 10px;
}

.agree-box ul li {
  color: #898989;
  font-size: 12px;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.agree-box .label-box {
  text-align: right;
  margin-right: 4px;
  line-height: 52px;
  vertical-align: top;
}

.agree-box .label-box:last-child {
  margin-right: 0;
}

.agree-box label {
  font-weight: bold;
  color: #898989;
  font-size: 13px;
  letter-spacing: -0.5px;
}

.modal-community .table-crew {
  margin-top: 10px;
}

.modal-community .table-crew tr th {
  padding: 4px 0;
  font-weight: normal;
  text-align: left;
  width: 80px;
  color: #666;
}

.modal-community .table-crew tr td {
  padding: 0 4px;
  color: #333;
}

.modal-community .community-content .img-box img {
  padding-bottom: 10px;
  box-sizing: border-box;
}

.modal-community .community-content .img-box .row {
  margin-bottom: 5px;
}

.modal-community .community-content .img-box .row img:nth-child(1) {
  padding-right: 5px;
}

.modal-community .community-content .img-box .row img:nth-child(2) {
  padding-left: 5px;
}

.modal-community .community-content .community-content-box {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-base-color: #e4a8ae;
  scrollbar-arrow-color: #fff;
}

.modal-community .community-content .community-content-box::-webkit-scrollbar {
  width: 2px;
}

.modal-community .community-content .community-content-box::-webkit-scrollbar-track {
  background-color: #eaeaea;
  border-left: 1px solid #ccc;
}

.modal-community .community-content .community-content-box::-webkit-scrollbar-thumb {
  background-color: #de848c;
}

.modal-community .community-content .community-content-box::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}

.modal-community .community-content .community-content-box iframe {
  width: 100% !important;
  height: 455px;
}

.modal-youtube {
  background: rgba(0, 0, 0, 0);
  border: none;
  padding: 0;
  text-align: center;
}

.modal-youtube .bg-modal .youtube-iframe {
  width: 700px !important;
  height: 400px !important;
}

.modal-youtube .sub-youtube img {
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0);
}

.modal-youtube .sub-youtube img:hover, .modal-youtube .sub-youtube img.active {
  border: 1px solid #e31a4c;
}

.modal-teacher .content-box img {
  max-width: 450px;
  margin-left: -20px;
}

.modal-teacher .teacher-info {
  height: 95%;
  display: table;
}

.modal-teacher .teacher-info .teacher-info-inner {
  vertical-align: middle;
  display: table-cell;
}

.modal-teacher .teacher-info .pink-box-outer {
  max-height: 465px;
  overflow: auto;
  scrollbar-base-color: #e4a8ae;
  scrollbar-arrow-color: #fff;
}

.modal-teacher .teacher-info .pink-box-outer::-webkit-scrollbar {
  width: 2px;
}

.modal-teacher .teacher-info .pink-box-outer::-webkit-scrollbar-track {
  background-color: #eaeaea;
  border-left: 1px solid #ccc;
}

.modal-teacher .teacher-info .pink-box-outer::-webkit-scrollbar-thumb {
  background-color: #de848c;
}

.modal-teacher .teacher-info .pink-box-outer::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}

.useless-box {
  display: none;
  padding: 10px;
  background: #f2f2ec;
}

.useless-box span {
  display: inline-block;
  border: 1px solid #e3e3e3;
  color: #898989;
  text-align: center;
  padding: 5px 5px;
  font-size: 13px;
  background: #fff;
  margin-right: 5px;
  margin-bottom: 3px;
}

.useless-box span:last-child {
  margin-right: 0;
}

.phone-box {
  display: inline-block;
  background: #f2f2ec;
  box-shadow: none;
  outline: none;
  border: 0;
  vertical-align: top;
  height: 52px;
  margin-left: -4px;
  padding: 0 20px;
  width: 89%;
  box-sizing: border-box;
  color: #e31a4c;
  margin-top: 0 !important;
}

.phone-box input {
  width: 82% !important;
}

.phone-box .phone2 {
  width: 100px !important;
  text-align: center;
}

.phone-box .phone3 {
  width: 100px !important;
  text-align: center;
}

.phone-box p.dash {
  display: inline-block;
  line-height: 52px;
  font-size: 20px;
}

.select2-container--default .select2-selection--single {
  background: #f2f2ec !important;
  border: none !important;
  border-radius: 0 !important;
  outline: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 52px !important;
  font-size: 16px !important;
  color: #e31a4c !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 13px !important;
}

.select2-container--open .select2-dropdown--below {
  top: 23px;
  background: #f2f2ec;
  border: 1px solid #ccc;
  border-top: 0;
}

.select2-container--default .select2-results > .select2-results__options {
  width: 100%;
}

.select2-container {
  vertical-align: top !important;
}

.modal-confirm {
  padding-left: 305px;
}

.modal-confirm .confirm-box {
  display: table;
  height: 100%;
}

.modal-confirm .cell-box {
  display: table-cell;
  vertical-align: middle;
}

.modal-confirm .title {
  color: #db2353;
  font-size: 26px;
  letter-spacing: -1px;
  font-weight: bold;
}

.modal-confirm .sub-title {
  color: #333;
  font-size: 20px;
}

.modal-confirm .ps {
  color: #aaa;
  font-size: 17px;
}

.modal-confirm .span-title {
  color: #db2353;
  font-size: 16px;
  font-weight: bold;
}

.modal-confirm .span-text {
  color: #333;
  font-size: 16px;
  letter-spacing: -1px;
}

.resume-page h3 {
  text-align: center;
  color: #666;
  font-size: 30px;
  letter-spacing: 30px;
  margin-bottom: 30px;
  padding-left: 30px;
}

.resume-page .resume-content {
  margin-bottom: 100px;
  border: 1px solid #ddd;
  margin: 20px 0 100px 0;
  padding: 50px;
}

.resume-page .resume-content .step-1 .overview {
  overflow: hidden;
}

.resume-page .resume-content .step-1 .overview .picture {
  border: 2px solid #e31a4c;
  float: left;
  width: 15%;
  height: 181px;
  text-align: center;
  display: table;
}

.resume-page .resume-content .step-1 .overview .picture span {
  display: table-cell;
  vertical-align: middle;
  overflow: hidden;
  max-width: 135px;
}

.resume-page .resume-content .step-1 .overview .picture span:hover {
  color: #e31a4c;
  cursor: pointer;
}

.resume-page .resume-content .step-1 .overview table {
  float: right;
  width: 83%;
  box-sizing: border-box;
  padding-left: 20px;
  border-collapse: collapse;
}

.resume-page .resume-content .step-1 .overview table th {
  background: #e31a4c;
  color: #fff;
  padding: 7px;
  font-weight: normal;
  border-right: 10px solid #fff;
  border-bottom: 1px solid #fff;
}

.resume-page .resume-content .step-1 .overview table td {
  font-weight: normal;
  padding: 7px;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
}

.resume-page .resume-content .step-1 .overview table td input {
  width: 100%;
  border: 0;
}

.resume-page .resume-content .step-1 .overview table td input::placeholder {
  color: #ccc;
}

.resume-page .resume-content .step-1 .overview table tr:last-child td {
  border-bottom: 1px solid #eee;
}

.resume-page .resume-content .step-1 .each-box .title {
  float: left;
  width: 7%;
  background: #e31a4c;
  color: #fff;
  display: table;
}

.resume-page .resume-content .step-1 .each-box .title span {
  display: table-cell;
  vertical-align: middle;
}

.resume-page .resume-content .step-1 .each-box table {
  margin-top: 30px;
  width: 100%;
  box-sizing: border-box;
  padding-left: 20px;
  border-collapse: collapse;
}

.resume-page .resume-content .step-1 .each-box table th {
  width: 70px;
  background: #e31a4c;
  color: #fff;
  padding: 7px;
  font-weight: normal;
  border-right: 10px solid #fff;
  border-bottom: 1px solid #fff;
}

.resume-page .resume-content .step-1 .each-box table td {
  font-weight: normal;
  padding: 7px;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
}

.resume-page .resume-content .step-1 .each-box table td input {
  width: 100%;
  border: 0;
}

.resume-page .resume-content .step-1 .each-box table td input::placeholder {
  color: #ccc;
}

.resume-page .resume-content .step-1 .each-box table td .add-button {
  border: 2px solid #e31a4c;
  padding: 5px;
  text-align: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  color: #e31a4c;
}

.resume-page .resume-content .step-1 .each-box table td .add-button:hover {
  background: #e31a4c;
  color: #fff;
}

.resume-page .resume-content .step-1 .each-box table td .add-button:hover .icon {
  color: #fff;
  border-color: #fff;
}

.resume-page .resume-content .step-1 .each-box table td .add-button .icon {
  border: 2px solid #e31a4c;
  color: #e31a4c;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  margin-right: 10px;
  width: 22px;
  height: 22px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  line-height: 23px;
}

.resume-page .resume-content .step-1 .each-box table tr:last-child td {
  border-bottom: 1px solid #eee;
}

.resume-page .resume-content .step-2 {
  display: none;
}

.resume-page .resume-content .step-2 .intro {
  border: 2px solid #e31a4c;
  height: 700px;
  width: 100%;
  box-sizing: border-box;
}

.resume-page .resume-content .step-2 .intro::placeholder {
  color: #ccc;
}

.resume-page .resume-content .step-2 .resume-agree-box {
  margin-top: 50px;
}

.resume-page .resume-content .step-2 .resume-agree-box .title {
  font-size: 20px;
  font-weight: lighter;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #666;
}

.resume-page .resume-content .step-2 .resume-agree-box .info-box {
  border: 1px solid #ccc;
  padding: 10px;
  letter-spacing: -0.5px;
}

.resume-page .resume-content .step-2 .resume-agree-box .info-box span {
  color: #999;
}

.resume-page .resume-content .button-area {
  margin-top: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}

.resume-page .resume-content .button-area button {
  width: 99%;
}

.resume-page .resume-content .button-area .gray-button {
  border: 2px solid #898989;
  color: #898989;
  text-align: center;
  padding: 10px 0;
  font-size: 17px;
  background: #fff;
  transition: all 0.3s;
}

.resume-page .resume-content .button-area .gray-button:hover {
  transition: all 0.3s;
  color: #fff;
  background: #898989;
}

.resume-page .resume-content .button-area .primary-button {
  border: 2px solid #df0440;
  color: #df0440;
  text-align: center;
  padding: 10px 0;
  font-size: 17px;
  background: #fff;
  transition: all 0.3s;
}

.resume-page .resume-content .button-area .primary-button:hover {
  transition: all 0.3s;
  color: #fff;
  background: #df0440;
}

.ask-complete-page {
  padding-bottom: 150px;
}

.ask-complete-page .review-box {
  width: 800px;
  margin: auto;
  border-top: 2px solid #ccc;
  padding: 10px 0 20px 0;
}

.ask-complete-page .review-box img {
  vertical-align: middle;
  width: 30px;
}

.ask-complete-page .review-box .text1 {
  vertical-align: middle;
  color: #333;
  font-weight: bold;
  font-size: 16px;
  display: inline-block;
  margin: 0 5px;
}

.ask-complete-page .review-box .text2 {
  vertical-align: middle;
  font-size: 13px;
  color: #666;
}

.ask-complete-page .review-box .review-content {
  padding-top: 10px;
  border-radius: 12px;
  height: 209px;
  overflow: hidden;
  text-align: center;
}

.ask-complete-page .time-box {
  margin-top: 40px;
}

.ask-complete-page .time-box .time-text {
  font-size: 14px !important;
  vertical-align: middle;
}

.ask-complete-page .time-box img {
  width: 20px;
  vertical-align: middle;
}

.ask-complete-page .time-clock {
  font-size: 20px !important;
  letter-spacing: -1px;
  margin-left: 5px;
  vertical-align: middle;
}

.ask-complete-page .header-icon {
  width: 80px;
}

.ask-complete-page .page-title {
  color: #333 !important;
  font-size: 40px !important;
}

.ask-complete-page .page-title span {
  color: #e31a4c;
}

.ask-complete-page .page-text {
  color: #333 !important;
}

.ask-complete-page .info-box {
  font-size: 16px;
}

.ask-complete-page .info-box div {
  box-sizing: border-box;
}

.ask-complete-page .info-box .fll {
  padding: 10px;
}

.ask-complete-page .info-box .flr {
  padding: 10px;
}

.modal-price h2 {
  color: #e31a4c;
  font-size: 15px;
  letter-spacing: -1px;
  margin-top: 30px;
}

.modal-price table {
  margin-top: 10px;
  border-collapse: collapse;
  text-align: left;
  line-height: 1.5;
  border-top: 1px solid #aaa;
  width: 100%;
}

.modal-price table thead th {
  padding: 4px;
  font-weight: bold;
  vertical-align: top;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #999;
  font-size: 12px;
  border-right: 1px solid #ccc;
}

.modal-price table thead th:last-child {
  border-right: none;
}

.modal-price table tbody th {
  width: 150px;
  padding: 2px;
  font-weight: bold;
  vertical-align: top;
  border-bottom: 1px solid #ccc;
  background: #f3f6f7;
  font-size: 12px;
}

.modal-price table td {
  padding: 2px;
  vertical-align: top;
  border-bottom: 1px solid #ccc;
  font-size: 12px;
  border-right: 1px solid #ccc;
}

.modal-price table td:first-child {
  color: #e31a4c;
}

.modal-price table td:last-child {
  border-right: none;
}

.modal-return table {
  margin-top: 30px;
  border-collapse: collapse;
  text-align: left;
  line-height: 1.5;
  border-top: 1px solid #aaa;
  width: 100%;
}

.modal-return table thead th {
  padding: 10px 15px;
  font-weight: bold;
  vertical-align: middle;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #999;
  font-size: 12px;
}

.modal-return table thead th:first-child {
  border-right: 1px solid #ccc;
}

.modal-return table thead th:last-child {
  border-left: 1px solid #ccc;
}

.modal-return table tbody th {
  padding: 10px 15px;
  font-weight: bold;
  vertical-align: middle;
  border-bottom: 1px solid #ccc;
  background: #eee;
  font-size: 12px;
}

.modal-return table td {
  padding: 10px 15px;
  vertical-align: middle;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  font-size: 12px;
}

.modal-return table td:first-child {
  border-right: 1px solid #ccc;
}

.modal-return table td:last-child {
  border-left: 1px solid #ccc;
}

img {
  -ms-interpolation-mode: bicubic !important;
}

.text-phone a {
  line-height: 35px;
  color: #e6003e !important;
  font-weight: bold;
  font-size: 21px;
  padding: 0 10px;
  opacity: 0.9;
  vertical-align: inherit;
}

.text-phone a .icon-phone {
  width: 25px;
  vertical-align: middle;
}

.lab-icon {
  vertical-align: middle;
  widows: 48px;
}

.maintab-box {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
}

.asktime-box {
  background: #f2f2ec;
}

.asktime-box img {
  vertical-align: middle;
}

.asktime-box .radio-label {
  vertical-align: sub;
  font-size: 15px;
  margin-left: 15px;
}

.community-content-box {
  padding: 80px 0;
}

.community-content-box .page-modal-bg {
  background: url("/assets/images/front/general/page_bg.png") no-repeat;
  background-position: 0 100%;
  background-size: 100%;
  text-align: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.community-content-box .page-modal-bg .page-title {
  display: inline-block;
  color: #e31a4c;
  font-size: 25px;
  letter-spacing: -1px;
  vertical-align: super;
}

.community-content-box .list-view-button {
  border: 1px solid #e31a4c;
  color: #e31a4c;
  padding: 7px 14px;
  border-radius: 4px;
  font-size: 16px;
}

.enlarge-icon {
  width: 18px !important;
  display: inline-block !important;
  margin-left: 7px;
  vertical-align: text-top;
}

.center-trunk-page .center-img {
  width: 100%;
  height: 350px;
  background-size: cover !important;
  display: inline-block;
  box-sizing: border-box;
  position: relative;
}

.center-trunk-page .center-img span {
  display: none;
  position: absolute;
  width: 70px;
  height: 70px;
  left: 40%;
  top: 43%;
}

.center-trunk-page .center-img .bg {
  display: none;
  background-color: rgba(0, 0, 0, 0.5) !important;
  position: absolute;
  width: 100%;
  height: 100%;
}

.center-trunk-page .center-img:hover span,
.center-trunk-page .center-img:hover .bg {
  display: block;
}

.center-trunk-page .inner-box ul {
  margin-top: 20px;
  margin-bottom: 50px;
}

.center-trunk-page .inner-box ul li {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 5px;
}

.center-trunk-page .center-trunk-container {
  width: 1055px;
  margin: auto;
}

.center-trunk-page .center-trunk-container .box {
  width: 310px;
  float: left;
}

.center-trunk-page .center-trunk-container .box.box2 {
  margin: 0 20px;
}

.center-trunk-page .center-trunk-container .box .title-box p {
  margin: 10px 0;
  font-size: 20px;
  color: #e11a4d;
}

.center-trunk-page .center-trunk-container .box .title-box span {
  display: block;
  border-bottom: 2px solid #e11a4d;
  width: 50px;
  height: 2px;
  font-size: 14px;
}

.modal-center .img-box {
  margin-top: 20px;
}

.modal-center .img-box .center-img-01 {
  width: 100%;
  height: 300px;
  display: inline-block;
  background-size: cover !important;
}

.modal-center .img-box .center-img-02 {
  width: 49.5%;
  height: 250px;
  display: inline-block;
  background-size: cover !important;
}

.modal-center .img-box .center-img-03 {
  width: 49.5%;
  height: 250px;
  display: inline-block;
  background-size: cover !important;
}

.modal-center ul {
  margin-top: 20px;
}

.modal-center ul li {
  text-align: left !important;
  margin-bottom: 7px;
}

.modal-center ul li span.bold {
  display: inline-block;
  width: 50px;
}

.modal-center ul li span {
  color: #797979;
  font-size: 14px;
}

.primary-color {
  color: #e31a4c;
}

.bi-page .section {
  padding: 30px 0;
  text-align: center;
}

.bi-page .section .title {
  margin-bottom: 15px;
  text-align: left;
}

.bi-page .section .content {
  text-align: center;
}

.bi-page .section .content p {
  text-align: left;
}

.bi-page .section .content img {
  display: inline-block;
  margin-top: 20px;
}

.history-page .each-month {
  margin-bottom: 15px;
}

.history-page .each-month .month {
  color: #e01c4c;
  letter-spacing: -0.5px;
  font-size: 16px;
  display: inline-block;
  vertical-align: text-top;
}

.history-page .each-month .icon-box {
  display: inline-block;
  width: 15px;
  vertical-align: sub;
}

.history-page .each-month .icon-box .icon {
  vertical-align: bottom;
  width: 15px;
}

.history-page .each-month .text {
  display: inline-block;
  vertical-align: text-top;
  line-height: 25px;
  letter-spacing: -0.5px;
  max-width: 500px;
}

.history-page .left-half {
  box-sizing: border-box;
  border-right: 1px solid #ccc;
  padding-right: 40px;
}

.history-page .left-half .year img {
  right: -53px;
}

.history-page .left-half .each-month {
  position: relative;
}

.history-page .left-half .each-month .month {
  padding-left: 15px;
}

.history-page .left-half .each-month .border-eraser {
  position: absolute;
  width: 10px;
  height: 100px;
  background: #fff;
  right: -45px;
  top: -33px;
}

.history-page .right-half {
  box-sizing: border-box;
  padding-left: 40px;
}

.history-page .right-half .year img {
  left: -53px;
}

.history-page .right-half .each-month .month {
  padding-right: 15px;
}

.history-page .year {
  position: relative;
  font-size: 30px;
  font-weight: bold;
  color: #e01c4c;
  margin-bottom: 20px;
  margin-top: -11px;
}

.history-page .year img {
  top: 10px;
  width: 25px;
  position: absolute;
}

.teacher-page-new ul.teacher-box {
  margin: 70px 0 100px 0;
}

.teacher-page-new ul.teacher-box li {
  float: left;
  text-align: center;
  margin-bottom: 5px;
}

.teacher-page-new ul.teacher-box li img {
  display: inline-block;
  width: 97%;
}

.teacher-page-new ul.teacher-box li img:hover {
  cursor: pointer;
}

.teacher-page-new ul.teacher-box li:nth-child(5n), .teacher-page-new ul.teacher-box li:nth-child(1) {
  text-align: left;
}

.teacher-page-new ul.teacher-box li:nth-child(4n) {
  text-align: right;
}

.guide-container .guide-title {
  color: #e31a4c;
  font-size: 18px;
  padding: 15px 30px;
  width: 100%;
}

.guide-container .guide-title .step {
  color: #e31a4c;
  font-size: 25px;
  display: inline-block;
  margin-right: 15px;
}

.guide-container .tabs {
  margin-top: 50px;
  margin-bottom: -5px;
}

.guide-container .tabs li {
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  padding: 7px 20px;
  display: inline-block;
  background: #e4e4e4;
  color: #808080;
}

.guide-container .tabs li.active {
  background: #e11a4d;
  color: #fff;
}

.guide-container .guide-box {
  clear: both;
  overflow: hidden;
  margin-bottom: 0 !important;
  background: none !important;
}

.guide-container .guide-box > div {
  position: relative;
}

.guide-container .guide-box .menu-box-list-container {
  width: 45%;
  display: inline-block;
}

.guide-container .guide-box .menu-box-list-container .menu-box-list {
  background: #e11c4a;
  border: 2px solid #e11c4a;
  border-radius: 4px;
  color: #fff;
  box-shadow: -1px 6px 3px -2px #ad0d32;
  text-align: center;
  padding: 4px 10px;
  box-sizing: border-box;
  font-size: 16px;
  margin-bottom: 10px;
  cursor: pointer;
}

.guide-container .guide-box .menu-box-list-container .menu-box-list:last-child {
  margin-right: 0;
}

.guide-container .guide-box .menu-box-list-container .menu-box-list.active {
  box-shadow: -1px 6px 3px -2px #ad0d32;
  color: #e11c4a;
  background: #fff;
}

.guide-container .guide-box .menu-box-list.active {
  background: #e31a4c;
  color: #fff;
}

.guide-container .guide-box .menu-box-list a {
  display: block;
  width: 100%;
}

.class-page .class-container .left-area {
  float: left;
  width: 30%;
}

.class-page .class-container .left-area .class-box {
  position: relative;
  border-bottom: none;
}

.class-page .class-container .left-area .class-box .trans-img {
  position: absolute;
  bottom: 3px;
  left: 2.5%;
  width: 95%;
  height: 180px;
  margin-left: 2px;
}

.class-page .class-container .left-area .class-box .trans-arrow-box {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.class-page .class-container .left-area .class-box .trans-arrow-box .trans-arrow {
  display: inline-block;
}

.class-page .class-container .left-area .class-box > img {
  width: 100%;
}

.class-page .class-container .left-area .class-box .overview {
  background: #f5f5f5;
  overflow: hidden;
  padding: 6px 10px;
  padding-right: 13px;
}

.class-page .class-container .left-area .class-box .overview div {
  font-size: 15px;
  color: #7a7a7a;
  padding: 0 7px;
  line-height: 20px;
  float: left;
  box-sizing: border-box;
  letter-spacing: -0.5px;
}

.class-page .class-container .left-area .class-box .overview div.soft {
  color: #a8a9ad;
}

.class-page .class-container .left-area .class-box .overview div:last-child {
  text-align: right;
}

.class-page .class-container .left-area .class-box .overview div.overview-title {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  float: left;
  display: inline-block;
  line-height: 37px;
}

.class-page .class-container .left-area .class-box .overview div.overview-title .live {
  display: inline-block;
  margin-left: 6px;
  background: #ffdae1;
  color: #ee2955;
  padding: 3px 8px;
  border-radius: 40px;
  font-size: 10px;
  line-height: normal;
  letter-spacing: 0;
}

.class-page .class-container .left-area .class-box .overview div.overview-right {
  float: right;
}

.class-page .class-container .left-area .class-box .overview div.overview-right p {
  text-align: right;
  font-size: 13px;
  letter-spacing: -1px;
}

.class-page .class-container .left-area .class-box .overview div.overview-right p.date {
  letter-spacing: -0.3px;
  font-size: 11px;
  margin-bottom: -3px;
}

.class-page .class-container .left-area .class-box .class-tab {
  width: 100%;
  display: block;
}

.class-page .class-container .left-area .class-box .class-tab li {
  border-top: 1px solid #e9e9e7;
  border-right: 1px solid #e9e9e7;
  border-bottom: 1px solid #e9e9e7;
  text-align: center;
  float: left;
  width: 33.3%;
  padding: 7px 8px;
  box-sizing: border-box;
  font-size: 13px;
  cursor: pointer;
  color: #c0c0c0;
  background: #f9f9f9;
}

.class-page .class-container .left-area .class-box .class-tab li:last-child {
  border-right: none;
}

.class-page .class-container .left-area .class-box .class-tab li.active {
  border-bottom: none;
  color: #ea2c5a;
  font-weight: bold;
  background: #fff;
}

.class-page .class-container .left-area .class-box .class-tab.branch {
  display: none;
}

.class-page .class-container .left-area .class-box .class-list {
  border-top: 0;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
  overflow: auto;
  height: 650px;
}

.class-page .class-container .left-area .class-box .class-list::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.class-page .class-container .left-area .class-box .class-list::-webkit-scrollbar-thumb {
  background: #dbdbdb;
  border-radius: 10px;
}

.class-page .class-container .left-area .class-box .class-list::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(13deg, #c7ceff 14%, #f9d4ff 64%);
}

.class-page .class-container .left-area .class-box .class-list::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 0px;
  box-shadow: inset 7px 10px 12px #f0f0f0;
}

.class-page .class-container .left-area .class-box .class-list.branch {
  height: 650px;
}

.class-page .class-container .left-area .class-box .class-list li {
  background: #fff;
  padding: 8px 0;
  cursor: pointer;
}

.class-page .class-container .left-area .class-box .class-list li:last-child {
  border-bottom: 0;
  margin-bottom: 90px;
}

.class-page .class-container .left-area .class-box .class-list li.active {
  background: #e11c4a;
}

.class-page .class-container .left-area .class-box .class-list li:hover, .class-page .class-container .left-area .class-box .class-list li.active {
  background: #eee;
}

.class-page .class-container .left-area .class-box .class-list li table td span.circle-number {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  background: #eee;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
  line-height: 20px;
}

.class-page .class-container .left-area .class-box .class-list li table td span.circle-number.nailart {
  background: #fe9684;
}

.class-page .class-container .left-area .class-box .class-list li table td span.circle-number.makeup {
  background: #ee8fa5;
}

.class-page .class-container .left-area .class-box .class-list li table td span.circle-number.esthetic {
  background: #b18acf;
}

.class-page .class-container .left-area .class-box .class-list li table td span.circle-number.hair {
  background: #b3ceca;
}

.class-page .class-container .left-area .class-box .class-list li table td span.circle-number.special {
  background: #f3c35e;
}

.class-page .class-container .left-area .class-box .class-list li table td img {
  width: 40px;
  margin: 0 6px;
  margin-left: 0;
}

.class-page .class-container .left-area .class-box .class-list li table td a {
  width: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: inline-block;
  font-size: 14px;
  vertical-align: middle;
  text-align: center;
  margin-left: 10px;
}

.class-page .class-container .left-area .class-box .class-list li table td a.status-regular {
  color: #e11c4a;
}

.class-page .class-container .left-area .class-box .class-list li table td a.status-active {
  color: #ed6f31;
}

.class-page .class-container .left-area .class-box .class-list li table td a.status-day {
  background: #b061f9;
}

.class-page .class-container .left-area .class-box .class-list li table td.class-title {
  font-size: 13px;
  width: 69%;
  padding: 0 7px;
  color: #333;
}

.class-page .class-container .left-area .class-box .class-list li table td.color-red {
  padding-top: 0px;
  font-size: 11px;
  padding: 0 7px;
  height: 14px;
  display: inline-block;
  overflow: hidden;
  color: #666 !important;
}

.class-page .class-container .left-area .class-box2 {
  position: relative;
}

.class-page .class-container .left-area .class-box2 .trans-img {
  position: absolute;
  bottom: 7px;
  left: 2.5%;
  width: 95%;
  height: 90px;
  margin-left: 2px;
}

.class-page .class-container .left-area .class-box2 > img {
  width: 100%;
}

.class-page .class-container .left-area .class-box2 .overview {
  background: #e11c4a;
  overflow: hidden;
  padding: 6px 0;
}

.class-page .class-container .left-area .class-box2 .overview div {
  font-size: 15px;
  color: #fff;
  padding: 0 7px;
  line-height: 20px;
  float: left;
  box-sizing: border-box;
  letter-spacing: -0.5px;
}

.class-page .class-container .left-area .class-box2 .overview div:last-child {
  text-align: right;
}

.class-page .class-container .left-area .class-box2 .overview div.overview-title {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  float: left;
  display: inline-block;
  line-height: 37px;
}

.class-page .class-container .left-area .class-box2 .overview div.overview-right {
  float: right;
}

.class-page .class-container .left-area .class-box2 .overview div.overview-right p {
  text-align: right;
}

.class-page .class-container .left-area .class-box2 .overview div.overview-right p.date {
  font-size: 11px;
  margin-bottom: -3px;
}

.class-page .class-container .left-area .class-box2 .class-tab {
  width: 100%;
  display: block;
}

.class-page .class-container .left-area .class-box2 .class-tab li {
  text-align: center;
  float: left;
  width: 33.3%;
  padding: 5px 8px;
  box-sizing: border-box;
  font-size: 13px;
  color: #c0c0c0;
  cursor: pointer;
}

.class-page .class-container .left-area .class-box2 .class-tab li.active {
  color: #333;
  background: #ebebeb;
}

.class-page .class-container .left-area .class-box2 .class-tab.branch {
  display: none;
}

.class-page .class-container .left-area .class-box2 .class-list {
  border-bottom: 1px solid #e11c4a;
  border-top: 0;
  width: 100%;
  background: #f1f1f1;
  box-sizing: border-box;
  overflow: auto;
  height: 401px;
}

.class-page .class-container .left-area .class-box2 .class-list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  border-radius: 0px;
  background-color: #e0e0e0;
}

.class-page .class-container .left-area .class-box2 .class-list::-webkit-scrollbar {
  width: 12px;
  background-color: #ccc;
}

.class-page .class-container .left-area .class-box2 .class-list::-webkit-scrollbar-thumb {
  border-radius: 0px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #ccc;
}

.class-page .class-container .left-area .class-box2 .class-list.branch {
  height: 426px;
}

.class-page .class-container .left-area .class-box2 .class-list li {
  border-bottom: 1px solid #a1a1a1;
  padding: 8px 0;
  cursor: pointer;
}

.class-page .class-container .left-area .class-box2 .class-list li:last-child {
  border-bottom: 0;
  margin-bottom: 90px;
}

.class-page .class-container .left-area .class-box2 .class-list li:hover, .class-page .class-container .left-area .class-box2 .class-list li.active {
  background: #e11c4a;
}

.class-page .class-container .left-area .class-box2 .class-list li:hover td,
.class-page .class-container .left-area .class-box2 .class-list li:hover a, .class-page .class-container .left-area .class-box2 .class-list li.active td,
.class-page .class-container .left-area .class-box2 .class-list li.active a {
  color: #fff !important;
}

.class-page .class-container .left-area .class-box2 .class-list li:hover td.color-red,
.class-page .class-container .left-area .class-box2 .class-list li:hover a.color-red, .class-page .class-container .left-area .class-box2 .class-list li.active td.color-red,
.class-page .class-container .left-area .class-box2 .class-list li.active a.color-red {
  color: #fff !important;
}

.class-page .class-container .left-area .class-box2 .class-list li table td span.circle-number {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  background: #eee;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
  line-height: 20px;
}

.class-page .class-container .left-area .class-box2 .class-list li table td span.circle-number.nailart {
  background: #fe9684;
}

.class-page .class-container .left-area .class-box2 .class-list li table td span.circle-number.makeup {
  background: #ee8fa5;
}

.class-page .class-container .left-area .class-box2 .class-list li table td span.circle-number.esthetic {
  background: #b18acf;
}

.class-page .class-container .left-area .class-box2 .class-list li table td span.circle-number.hair {
  background: #b3ceca;
}

.class-page .class-container .left-area .class-box2 .class-list li table td span.circle-number.special {
  background: #f3c35e;
}

.class-page .class-container .left-area .class-box2 .class-list li table td img {
  width: 40px;
  margin: 0 6px;
  margin-left: 0;
}

.class-page .class-container .left-area .class-box2 .class-list li table td a {
  width: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: inline-block;
  font-size: 14px;
  vertical-align: middle;
  text-align: center;
  margin-left: 10px;
}

.class-page .class-container .left-area .class-box2 .class-list li table td a.status-regular {
  color: #e11c4a;
}

.class-page .class-container .left-area .class-box2 .class-list li table td a.status-active {
  color: #ed6f31;
}

.class-page .class-container .left-area .class-box2 .class-list li table td a.status-day {
  background: #b061f9;
}

.class-page .class-container .left-area .class-box2 .class-list li table td.class-title {
  font-size: 13px;
  width: 69%;
  padding: 0 7px;
  color: #333;
}

.class-page .class-container .left-area .class-box2 .class-list li table td.color-red {
  padding-top: 0px;
  font-size: 11px;
  padding: 0 7px;
  height: 14px;
  display: inline-block;
  overflow: hidden;
  color: #666 !important;
}

.class-page .class-container .right-area {
  float: left;
  width: 70%;
  padding-left: 15px;
  box-sizing: border-box;
}

.public-funds-page {
  overflow: hidden;
}

.public-funds-page .label {
  background: #424f6f;
  color: #eee;
}

.public-funds-page .lg-text {
  font-size: 16px;
  line-height: 16px;
}

.public-funds-page .colored {
  color: #4a529f;
}

.public-funds-page .bg-colored {
  background: #424f6f;
  color: #fff;
}

.public-funds-page .step-box table {
  width: 95%;
}

.public-funds-page .step-box table td.icon {
  width: 11%;
  vertical-align: top;
}

.public-funds-page .step-box table td.icon img {
  width: 70%;
  margin: auto;
}

.public-funds-page .step-box table td.arrow {
  width: 4.33%;
}

.public-funds-page .step-box table td.arrow img {
  width: 100%;
  margin: auto;
}

.public-funds-page .step-box table td .td-text {
  font-size: 15px;
}

.public-funds-page .step-box table td .td-text-colored {
  color: #d9aa1c;
}

.public-funds-page .apply-box {
  letter-spacing: -0.5px;
  font-size: 16px;
  line-height: 16px;
}

.public-funds-page .apply-box .round-button {
  border-radius: 25px;
  border: 1px solid #424f6f;
  padding: 8px 18px;
  margin-bottom: 10px;
  color: #4a529f;
  display: inline-block;
}

.public-funds-page .apply-box p {
  font-size: 15px;
  line-height: 1.5rem;
  text-align: left;
}

.public-funds-page .apply-box p.apply-text-xs {
  font-size: 13px;
  line-height: 1.2rem;
}

.public-funds-page .apply-box p.apply-text-xxs {
  font-size: 11px;
  line-height: 1.2rem;
}

.public-funds-page .apply-box .border-right {
  border-right: 1px solid #333;
}

.public-funds-page .course-table {
  width: 80%;
}

.public-funds-page .course-table th {
  padding: 15px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #4a529f;
  background: #eceff1;
  border: 1px solid #d3d6d7;
}

.public-funds-page .course-table td {
  padding: 15px;
  color: #333;
  font-size: 14px;
  text-align: left;
  padding-left: 20px;
  padding-right: 20px;
  letter-spacing: -0.5px;
  border-bottom: 1px solid #d3d6d7;
  border-right: 1px solid #d3d6d7;
}

.public-funds-page .course-table td.center {
  border-left: 1px solid #d3d6d7;
  letter-spacing: 0px;
  text-align: center;
  font-size: 17px;
  background: #fafafa;
}

.public-funds-page .course-table td a {
  color: #4a529f;
  font-size: 13px;
}

.top-branch-box {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
}

.top-branch-box .icon-box {
  width: 33.3%;
  float: left;
  text-align: left;
}

.top-branch-box .icon-box ul {
  display: block;
  height: 29px;
}

.top-branch-box .icon-box ul li {
  line-height: 29px;
  vertical-align: middle;
  float: left;
  margin-right: 15px;
}

.top-branch-box .icon-box ul li:last-child {
  margin-right: 0;
}

.top-branch-box .icon-box ul li a {
  display: inline-block;
  padding-top: 5px;
  color: #9da6ab;
}

.top-branch-box .icon-box ul li a img {
  width: 15px;
}

.top-branch-box .icon-box ul li .branch-link {
  padding: 4px 8px;
  border-radius: 4px;
  margin-right: 0;
  font-size: 14px;
  background: #e9e9e9;
  color: #9da6ab;
  transition: all 0.3s;
}

.top-branch-box .icon-box ul li .branch-link:hover {
  transition: all 0.3s;
  background: #e11a4d;
  color: #fff;
}

.top-branch-box .icon-box ul li .branch-link:hover .color-red {
  color: #fff !important;
}

.top-branch-box .icon-box ul li .branch-link .color-red {
  color: #e31a4c;
}

.top-branch-box ul.center-box {
  display: block;
  float: right;
}

.top-branch-box ul.center-box li {
  float: left;
  padding: 7px 13.5px;
  position: relative;
  border-top: 0;
  border-bottom: 0;
  color: #636363;
  letter-spacing: -0.5px;
}

.top-branch-box ul.center-box li::after {
  content: "|";
  position: absolute;
  height: 30px;
  top: 7px;
  left: -2px;
  color: #ddd;
}

.top-branch-box ul.center-box li:first-child::after {
  content: "";
}

.top-branch-box ul.center-box li.active {
  color: #ec184a;
}

.search-page .box-title {
  color: #e11a4d;
  font-size: 32px;
  letter-spacing: -1px;
  font-weight: bold;
  vertical-align: super;
  border-bottom: 2px solid #e11a4d;
  padding-bottom: 10px;
  clear: both;
}

.search-page .community-box .con-box {
  box-sizing: border-box;
  width: 24.5%;
  display: inline-block;
  padding: 0 10px;
}

.search-page .community-box .con-box img {
  display: block;
  width: 100%;
}

.search-page .community-box .con-box .headings {
  margin: 10px 0 10px 0;
  overflow: hidden;
}

.search-page .community-box .con-box .headings .date {
  font-size: 14px;
  font-weight: lighter;
  letter-spacing: -1px;
  text-align: center;
  float: right;
  color: #ccc;
}

.search-page .community-box .con-box .headings .cat {
  color: #e31a4c;
  font-size: 16px;
  float: left;
  font-weight: lighter;
}

.search-page .community-box .con-box .title {
  clear: both;
  overflow: hidden;
  font-size: 15px;
  line-height: 22px;
  height: 100px;
  text-align: left;
}

.ask-table .phone-row {
  padding-bottom: 10px;
}

.ask-table .phone-row .fll {
  overflow: hidden;
  float: none !important;
  padding-right: 10px;
  box-sizing: border-box;
}

.ask-table .phone-row .fll .phone-box {
  background: #fff;
  padding: 0;
  width: 100%;
}

.ask-table .phone-row .fll .phone-box input {
  border: none;
  border-bottom: 1px solid #ccc;
  width: 100% !important;
  font-size: 16px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
}

.ask-table .phone-row .flr {
  margin-top: 10px;
  float: none !important;
  box-sizing: border-box;
}

.ask-table .phone-row .flr .phone-box {
  background: #fff;
  padding: 0;
  width: 100%;
}

.ask-table .phone-row .flr .phone-box input {
  border: none;
  border-bottom: 1px solid #ccc;
  width: 80px !important;
  font-size: 16px;
  padding-bottom: 5px;
  padding-top: 15px;
  padding-left: 10px;
  background: #fff;
}

.ask-table .phone-row .flr .phone-box p.dash {
  color: #333;
}

.ask-table textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #eee;
  height: 235px;
}

.ask-table .fll1 {
  border-right: 1px dashed #ff0000;
  padding-right: 30px;
  box-sizing: border-box;
}

.ask-table .flr1 {
  padding-left: 30px;
  box-sizing: border-box;
}

.ask-table table {
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

.ask-table table td.label-box {
  width: 85%;
}

.ask-table table td.img-box {
  text-align: left;
}

.ask-table table td label {
  width: 33.3%;
  float: left;
  text-align: left;
  padding: 5px 0;
  margin-bottom: 5px;
}

.ask-table table td label.lg {
  width: 66.6% !important;
}

.ask-table table td label span {
  margin-left: 5px;
  vertical-align: middle;
  letter-spacing: -0.5px;
}

.ask-table table td label span span.small {
  font-size: 5px;
  margin-left: 0;
}

.ask-table table td label span.active {
  color: #e11c4a;
}

.ask-table .asktime-box,
.ask-table .purpose {
  background: #fff;
  text-align: left;
  padding-bottom: 20px;
  position: relative;
}

.ask-table .asktime-box .line,
.ask-table .purpose .line {
  position: absolute;
  width: 100%;
  bottom: 20px;
  height: 1px;
  background: #ccc;
}

.ask-table .purpose span {
  font-size: 17px;
  line-height: 52px;
  vertical-align: bottom;
}

.ask-table .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #999 !important;
  text-align: left;
}

.ask-table .select2-container .select2-selection--single {
  height: initial !important;
}

.ask-table .select2-container--default .select2-selection--single {
  background: #fff !important;
}

.ask-table .button-area .white-button {
  width: 95%;
  background: #fff;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 10px;
  font-size: 15px;
  color: #333;
}

.ask-table .button-area .black-button {
  width: 95%;
  background: #333;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 10px;
  font-size: 15px;
  color: #fff;
}

.custom-select ul {
  box-shadow: 4px 6px 5px 0px #d6d6d6;
}

.guide-box .agree-box {
  height: 100px;
  overflow: auto;
}

.guide-box .new-askbox {
  margin-top: 20px;
}

.guide-box .new-askbox .flr1 {
  padding-top: 17px;
}

.guide-box .new-askbox .purpose {
  box-sizing: border-box;
  padding-bottom: 5px !important;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
  background: none;
}

.guide-box .new-askbox .purpose > div {
  font-size: 15px;
  display: inline-block;
  color: #999;
  vertical-align: top;
  line-height: 15px;
}

.guide-box .new-askbox .purpose > div.line {
  display: block;
}

.guide-box .new-askbox .purpose .custom-select {
  padding: 0 4px;
}

.guide-box .new-askbox .purpose .custom-select.fixed-select {
  width: 85px;
}

.guide-box .new-askbox .purpose .custom-select .show .select-arrow {
  right: -12px;
}

.guide-box .new-askbox .phone-row {
  background: none;
}

.guide-box .new-askbox .phone-row .phone-box {
  background: none;
}

.guide-box .new-askbox .phone-row .phone-box .custom-select {
  padding: 0 4px;
}

.guide-box .new-askbox .phone-row .phone-box .custom-select .show .select-arrow {
  right: 0;
}

.guide-box .new-askbox .phone-row .phone-box input {
  font-size: 15px !important;
  color: #333;
  padding-top: 0 !important;
  background: none;
}

.guide-box .new-askbox .phone-row .phone-box input::placeholder {
  color: #999;
}

.guide-box .new-askbox .phone-row .phone-box p.dash {
  line-height: initial !important;
}

.guide-box .new-askbox .asktime-box {
  background: none;
  padding-bottom: 5px !important;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
}

.guide-box .new-askbox .asktime-box .show {
  padding-left: 0 !important;
}

.guide-box .new-askbox .custom-select {
  display: inline-block;
  position: relative;
  padding: 0 5px;
}

.guide-box .new-askbox .custom-select.fixed-select {
  width: 85px;
}

.guide-box .new-askbox .custom-select .show {
  cursor: pointer;
  position: relative;
  padding: 0 5px;
}

.guide-box .new-askbox .custom-select .show span {
  font-size: 15px;
  color: #333;
  line-height: 15px !important;
}

.guide-box .new-askbox .custom-select .show .select-arrow {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  right: -9px;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.guide-box .new-askbox .custom-select ul.options,
.guide-box .new-askbox .custom-select ul.branch-options,
.guide-box .new-askbox .custom-select ul.phone-options {
  background: #fff;
  display: none;
  position: absolute;
  top: 23px;
  z-index: 10;
  border: 1px solid #ccc;
}

.guide-box .new-askbox .custom-select ul.options li,
.guide-box .new-askbox .custom-select ul.branch-options li,
.guide-box .new-askbox .custom-select ul.phone-options li {
  cursor: pointer;
  padding: 7px 15px;
  font-size: 14px;
  color: #666;
  border-bottom: 1px solid #eee;
  background: none;
}

.guide-box .new-askbox .custom-select ul.options li:last-child,
.guide-box .new-askbox .custom-select ul.branch-options li:last-child,
.guide-box .new-askbox .custom-select ul.phone-options li:last-child {
  border-bottom: none;
}

.guide-box .new-askbox .custom-select ul.options li:hover,
.guide-box .new-askbox .custom-select ul.branch-options li:hover,
.guide-box .new-askbox .custom-select ul.phone-options li:hover {
  background: none;
}

.guide-box .new-askbox .custom-select ul.options li {
  width: 100px;
}

.guide-box .new-askbox .custom-select ul.phone-options {
  left: 0px;
}

.guide-box .new-askbox .custom-select ul.phone-options li {
  width: 28px;
}

.guide-box .new-askbox .custom-select ul.branch-options {
  left: 0px;
}

.guide-box .new-askbox .custom-select ul.branch-options li {
  width: 100px;
}

.guide-box .new-askbox .agree-box {
  height: 100px;
  overflow: auto;
  text-align: left;
}

.swiper-container {
  width: 100%;
  height: 35px;
}

.swiper-container .swiper-pagination-h {
  left: 50%;
  width: 500px;
  transform: translateX(-50%);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px 0;
}

.swiper-slide {
  height: 100%;
  width: 100%;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
  /* In safari, the buttons disappear on some slide,
    to fix this issue set translate3D z axis to 1px */
  transform: translate3d(0, 0, 1px);
}

.swiper-button-next {
  margin-right: 10px;
}

.swiper-button-prev {
  margin-left: 10px;
}

.swiper-button-up,
.swiper-button-down {
  right: 20px;
  position: absolute;
  z-index: 20;
}

.swiper-button-up:before,
.swiper-button-down:before {
  content: "";
  cursor: pointer;
  height: 20px;
  width: 20px;
  position: absolute;
  background-repeat: no-repeat;
}

.swiper-button-down {
  bottom: 25%;
}

.swiper-button-down:before {
  background-image: url("/assets/images/front/main/artistcrew/black_arrow_down.png");
}

.swiper-button-up {
  top: 25%;
}

.swiper-button-up:before {
  background-image: url("/assets/images/front/main/artistcrew/black_arrow_up.png");
}

.swiper-pagination-bullet {
  opacity: 0.5;
  border-radius: 100%;
  background: white;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: white;
}
/*# sourceMappingURL=common.css.map */