@charset "UTF-8";
/* Import Local SCSS Files */ /* font Family */
/* Text Color*/
/* Object Color*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.11.3/font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://cdn.jsdelivr.net/gh/sun-typeface/SUIT@2/fonts/static/woff2/SUIT.css");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  cursor: pointer;
}

input {
  border: none;
}

li {
  padding: 0;
  list-style: none;
}

/* Bootstrap icons */
/* Web fonts*/
@font-face {
  font-family: "SpoqaHanSansNeo-Regular";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SpoqaHanSansNeo-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* ############ Mixin Group ############*/
/* ############ Common CSS ############*/
* {
  font-family: "SUIT", sans-serif;
  color: #333;
  font-weight: 400;
}

body {
  font-size: 15px;
}

section:not(.front-slider) {
  padding: 20px 0;
}

[class*=inner] {
  width: 1160px;
  margin: auto;
}

/* 제목부분 */
.front-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  margin-bottom: 20px;
}
.front-header h2 {
  font-size: 24px;
  font-weight: 500;
}
.front-header a {
  font-size: 14px;
  color: #555;
  border: 1px solid #ddd;
  display: block;
  padding: 3px 15px;
  border-radius: 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.front-header a:hover {
  background: crimson;
  color: #fff;
}

/* ############ Login Modal ############*/
.login-modal {
  display: none;
  position: fixed;
  z-index: 9999999;
  background-color: rgba(23, 23, 23, 0.5);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.login-modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.login-modal .modal-content {
  background-color: #fff;
  max-width: 700px;
  border-radius: 30px;
  padding: 30px;
  text-align: center;
  position: relative;
}
.login-modal .modal-content input {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 0.3rem;
}
.login-modal .modal-content button {
  cursor: pointer;
  width: 100%;
}
.login-modal .modal-content .modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 50px;
}

/* ############ Header ############*/
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid #eee;
  position: relative;
}
header.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 0 5px red;
          box-shadow: 0 0 5px red;
}
header .header-inner {
  width: 1160px;
}
header .header-inner .logo-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 20px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header-inner .logo-search .logo img {
  width: 120px;
}
.search,
.search-mobile {
  width: 520px;
  position: relative;
}
.search input[type=text],
.search-mobile input[type=text] {
  width: 100%;
  background-color: #eee;
  padding: 7px;
  border-radius: 20px;
  outline: none;
  border: 1px solid transparent;
  padding-left: 15px;
}
.search input[type=text]:focus::-webkit-input-placeholder, .search-mobile input[type=text]:focus::-webkit-input-placeholder {
  visibility: hidden;
}
.search input[type=text]:focus::-moz-placeholder, .search-mobile input[type=text]:focus::-moz-placeholder {
  visibility: hidden;
}
.search input[type=text]:focus:-ms-input-placeholder, .search-mobile input[type=text]:focus:-ms-input-placeholder {
  visibility: hidden;
}
.search input[type=text]:focus::-ms-input-placeholder, .search-mobile input[type=text]:focus::-ms-input-placeholder {
  visibility: hidden;
}
.search input[type=text]:focus::placeholder,
.search-mobile input[type=text]:focus::placeholder {
  visibility: hidden;
}
.search input[type=text]:focus,
.search-mobile input[type=text]:focus {
  border: 1px solid rgba(11, 72, 141, 0.5);
  background: #fff;
  -webkit-box-shadow: 0 0 5px rgba(11, 72, 141, 0.5);
          box-shadow: 0 0 5px rgba(11, 72, 141, 0.5);
}
.search input[type=text]:focus + img,
.search-mobile input[type=text]:focus + img {
  -webkit-filter: invert(12%) sepia(79%) saturate(4047%) hue-rotate(202deg) brightness(95%) contrast(91%);
          filter: invert(12%) sepia(79%) saturate(4047%) hue-rotate(202deg) brightness(95%) contrast(91%);
}
.search img,
.search-mobile img {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

header .header-inner .logo-search .login-register-buttons {
  margin-left: auto;
}
header .header-inner .logo-search .login-register-buttons button {
  border: 1px solid #ddd;
  padding: 10px 20px;
  border-radius: 5px;
  margin-right: 5px;
  border: none;
}
header .header-inner .logo-search .login-register-buttons button.btn-register {
  background-color: crimson;
  color: #fff;
}
header .header-inner .logo-search .user-alarm {
  display: none;
  margin-left: auto;
}
header .header-inner .logo-search .user-alarm span {
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
}
header .header-inner .logo-search .user-alarm span .bi {
  font-size: 20px;
}
header .header-inner .logo-search .user-alarm span em {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #ff641b;
  border-radius: 50%;
  right: -5px;
  line-height: 12px;
  text-align: center;
}
header .header-inner .logo-search .user-alarm span em::before {
  content: attr(data-count);
  font-size: 12px;
  font-style: normal;
  color: #fff;
}
header .header-inner .logo-search .user-alarm span.avatar {
  width: inherit;
}
header .header-inner .logo-search .user-alarm span.avatar img {
  width: 28px;
  border-radius: 50%;
}
header .header-inner .gnb {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
header .header-inner .gnb a {
  font-weight: 400;
  color: #555;
}
header .header-inner .gnb a::after {
  content: "·";
}
header .header-inner .gnb a:last-child::after {
  content: "";
}
header .header-inner .gnb a:hover:not(.trigger) {
  color: #ED2040;
}
header .header-inner .gnb .trigger {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
header .header-inner .gnb .trigger span {
  font-weight: 700 !important;
}
header .header-inner .gnb .trigger::before {
  content: "";
  background: url(../images/icon-category.png);
  width: 24px;
  height: 18px;
  display: inline-block;
  margin-right: 5px;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  background-position: center;
}
header .mega-navi {
  background: rgb(255, 237, 216);
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  overflow: hidden;
  max-height: 0;
  display: block;
  z-index: 999;
}
header .mega-navi.active {
  max-height: 600px;
}
header .mega-navi .search-mobile {
  display: none;
}
header .mega-navi .btn-mega-navi-close {
  display: none;
}
header .mega-navi .mega-navi-inner {
  width: 1160px;
  margin: auto;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .mega-navi .mega-navi-inner b {
  color: crimson;
  font-weight: 600;
  font-size: 1.1rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
header .mega-navi .mega-navi-inner b.active {
  color: #FFD912;
  font-weight: 800;
}
header .mega-navi .mega-navi-inner .mega-navi-item-wrap {
  margin-top: 15px;
}
header .mega-navi .mega-navi-inner .mega-navi-item-wrap a {
  display: block;
  color: #444;
  line-height: 1.8;
}
header .mega-navi .mega-navi-inner .mega-navi-item-wrap a:hover {
  text-decoration: underline;
}

/* ############ section : front-slider ############*/
.front-slider .front-slider-items .front-slider-item .front-slider-item-wrap {
  width: 1160px;
  height: 400px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.front-slider .front-slider-items .front-slider-item .front-slider-item-wrap .pic img {
  width: 100%;
}

/* ############ section : category-shortcut ############*/
.category-shortcut .category-shortcut-inner .category-shortcut-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.category-shortcut .category-shortcut-inner .category-shortcut-items .category-shortcut-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 125px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px rgba(23, 23, 23, 0.1);
          box-shadow: 0 0 20px rgba(23, 23, 23, 0.1);
  -webkit-transition: 0.35s;
  transition: 0.35s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.category-shortcut .category-shortcut-inner .category-shortcut-items .category-shortcut-item:hover {
  -webkit-transform: translateY(-5%);
          transform: translateY(-5%);
}
.category-shortcut .category-shortcut-inner .category-shortcut-items .category-shortcut-item em {
  font-size: 30px;
  color: #333;
  display: block;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  line-height: 47px;
}
.category-shortcut .category-shortcut-inner .category-shortcut-items .category-shortcut-item em i {
  color: crimson;
}

/* ############ section : focus-class ############*/
.focus-class .focus-class-inner {
  margin: auto;
}
.focus-class .focus-class-inner .focus-class-content {
  margin-top: 40px;
  margin-bottom: 40px;
}
.focus-class .focus-class-inner .focus-class-content h2 {
  font-weight: bold;
}
.focus-class .focus-class-inner .focus-class-content .mySwiper02 .focus-class-items .focus-class-item .thumb {
  position: relative;
}
.focus-class .focus-class-inner .focus-class-content .mySwiper02 .focus-class-items .focus-class-item .thumb img {
  width: 100%;
}
.focus-class .focus-class-inner .focus-class-content .mySwiper02 .focus-class-items .focus-class-item .thumb .discount {
  background: #ED2040;
  position: absolute;
  right: 0;
  bottom: 10px;
  color: #fff;
  padding: 5px 8px;
}
.focus-class .focus-class-inner .focus-class-content .mySwiper02 .swiper-button-next, .focus-class .focus-class-inner .focus-class-content .mySwiper02 .swiper-button-prev {
  color: crimson;
  font-weight: bold;
}

/* ############ section : best-class  ############*/
.best-class .best-class-inner .best-class-content .best-class-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
.best-class .best-class-inner .best-class-content .best-class-wrap .best-class-banner img {
  width: 370px;
}

/* ############ section : blog   ############*/
.blog .blog-inner {
  margin-bottom: 50px;
}
.blog .blog-inner .blog-content .blog-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.blog .blog-inner .blog-content .blog-items .blog-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.blog .blog-inner .blog-content .blog-items .blog-item .thumb {
  width: 100%;
  height: 200px;
}
.blog .blog-inner .blog-content .blog-items .blog-item .thumb img {
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  border: 1px solid #eee;
}
.blog .blog-inner .blog-content .blog-items .blog-item .desc .blog-sort {
  font-size: 13px;
  color: #ED2040;
  margin: 5px;
  margin-top: 20px;
}
.blog .blog-inner .blog-content .blog-items .blog-item .desc .blog-outline h4 {
  font-size: 16px;
}
.blog .blog-inner .blog-content .blog-items .blog-item .desc .blog-outline p {
  color: #777;
  margin: 10px 0;
}
.blog .blog-inner .blog-content .blog-items .blog-item .desc .blog-writer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.blog .blog-inner .blog-content .blog-items .blog-item .desc .blog-writer .writer-avatar img {
  width: 40px;
  border-radius: 50%;
}
.blog .blog-inner .blog-content .blog-items .blog-item .desc .blog-writer .writer-info {
  font-size: 12px;
}
.blog .blog-inner .blog-content .blog-items .blog-item .desc .blog-writer .writer-info b {
  font-weight: 600;
}
.blog .blog-inner .blog-content .blog-items .blog-item .desc .blog-writer .writer-info .date-comment {
  margin-top: 5px;
}
.blog .blog-inner .blog-content .blog-items .blog-item .desc .blog-writer .writer-info .date-comment span {
  margin-right: 10px;
}
.blog .blog-inner .blog-content .blog-items .blog-item .desc .blog-writer .writer-info .date-comment span i {
  margin-right: 5px;
}

/* ############ section : slogan   ############*/
.slogan {
  padding: 30px !important;
  background: rgb(255, 248, 239);
}
.slogan .slogan-inner .slogan-content {
  text-align: center;
}
.slogan .slogan-inner .slogan-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.slogan .slogan-inner .slogan-content p {
  font-size: 1.3rem;
}
.slogan .slogan-inner .slogan-content p em {
  font-style: normal;
  color: #ff641b;
  font-weight: 700;
}
.slogan .slogan-inner .slogan-content img {
  width: 100%;
}

/* ############ section : tip-tech  ############*/
.tip-tech .tip-tech-inner .tip-tech-content .tip-tech-wrap .tip-tech-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin: 20px 0;
}
.tip-tech .tip-tech-inner .tip-tech-content .tip-tech-wrap .tip-tech-items:last-child .tip-tech-item {
  border: none;
}
.tip-tech .tip-tech-inner .tip-tech-content .tip-tech-wrap .tip-tech-items .tip-tech-item {
  border-bottom: 1px solid #eee;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  padding-bottom: 10px;
}
.tip-tech .tip-tech-inner .tip-tech-content .tip-tech-wrap .tip-tech-items .tip-tech-item .tip-tech-info span {
  color: #0a7536;
  font-weight: 600;
}
.tip-tech .tip-tech-inner .tip-tech-content .tip-tech-wrap .tip-tech-items .tip-tech-item .tip-tech-info h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 5px 0;
}
.tip-tech .tip-tech-inner .tip-tech-content .tip-tech-wrap .tip-tech-items .tip-tech-item .tip-tech-info p {
  color: #999;
}
.tip-tech .tip-tech-inner .tip-tech-content .tip-tech-wrap .tip-tech-items .tip-tech-item .thumb {
  overflow: hidden;
}
.tip-tech .tip-tech-inner .tip-tech-content .tip-tech-wrap .tip-tech-items .tip-tech-item .thumb img {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #eee;
}
.tip-tech .tip-tech-inner .tip-tech-content .btn-tip-tech {
  font-size: 16px;
  border: 1px solid #ddd;
  padding: 5px 20px;
  border-radius: 30px;
  margin: 30px auto;
  display: block;
  width: 300px;
  text-align: center;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.tip-tech .tip-tech-inner .tip-tech-content .btn-tip-tech:hover {
  background: crimson;
  color: #fff;
}

/* ############ footer-include  ############*/
footer {
  background: rgb(255, 238, 215);
  padding: 50px 0;
}
footer * {
  color: #333;
}
footer .footer-inner .lnb-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  border-bottom: 1px solid rgba(238, 238, 238, 0.5);
  padding-bottom: 40px;
}
footer .footer-inner .lnb-wrap .footer-slogan h3 {
  font-weight: 600;
  font-size: 2rem;
  color: #333;
}
footer .footer-inner .lnb-wrap .footer-slogan strong {
  font-weight: bold;
}
footer .footer-inner .lnb-wrap .lnb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
footer .footer-inner .lnb-wrap .lnb .link-item .link-item-title {
  font-weight: 500;
  font-size: 1.2rem;
  cursor: pointer;
  pointer-events: none;
  margin-bottom: 1rem;
}
footer .footer-inner .lnb-wrap .lnb .link-item .link-item-content {
  line-height: 1.5;
  font-weight: 200;
}
footer .footer-inner .lnb-wrap .lnb .link-item .link-item-content a {
  display: block;
}
footer .footer-inner .lnb-wrap .lnb .link-item .link-item-content a:hover {
  text-decoration: underline;
}
footer .footer-inner .copyright-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 30px;
}
footer .footer-inner .copyright-wrap .company-info-trigger {
  display: none;
}
footer .footer-inner .copyright-wrap address {
  font-style: normal;
}
footer .footer-inner .copyright-wrap address p:last-child {
  margin-top: 20px;
}
footer .footer-inner .copyright-wrap .sns {
  -webkit-transform: translateY(-25px);
          transform: translateY(-25px);
}
footer .footer-inner .copyright-wrap .sns a {
  display: inline-block;
  margin-right: 0.5rem;
}
footer .footer-inner .copyright-wrap .sns a:hover .bi {
  color: #333;
}

/* ############ front-event-banner  ############*/
.front-event-banner {
  position: absolute;
  right: 10%;
  bottom: 50px;
  z-index: 1000;
}
.front-event-banner .event-banner-item.mentor-apply {
  border-radius: 60px;
  overflow: hidden;
}
.front-event-banner .event-banner-item.mentor-apply img {
  width: 360px;
  height: 93px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.front-event-banner .event-banner-item.new-year {
  border-radius: 10px 10px 0 0;
  width: 360px;
  height: 360px;
  overflow: hidden;
  border: 1px solid #eee;
}
.front-event-banner .close-buttons {
  background-color: #fff;
  height: 40px;
  border-radius: 0 0 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.front-event-banner .close-buttons a {
  display: inline-block;
  line-height: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  border-right: 1px solid #ddd;
}
.front-event-banner .close-buttons a:last-child {
  border: none;
}

/* 서브페이지 */
/* ############ category-main.html############*/
.category-class .category-class-inner .category-class-main {
  height: 120px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.category-class .category-class-inner .category-class-main h2 {
  color: #fff;
  position: absolute;
  left: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 28px;
  font-weight: bold;
  font-family: "SpoqaHanSansNeo-Regular";
}
.category-class .category-class-inner .category-class-main img {
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
.category-class .category-class-inner .category-class-detail {
  margin: 30px 0;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
}
.category-class .category-class-inner .category-class-detail h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.category-class .category-class-inner .category-class-detail .category-shortcut-btn-group .btn-shortcut {
  border: none;
  font-size: 13px;
  border-radius: 30px;
  padding: 5px 15px;
  margin-right: 7px;
  background-color: #fff;
  border: 1px solid #BDBDBD;
}
.category-class .category-class-inner .category-class-detail .category-shortcut-btn-group .btn-shortcut.active {
  background: #333;
  color: #fff;
}
.category-class .category-class-inner .category-class-sort {
  margin-bottom: 30px;
}
.category-class .category-class-inner .category-class-sort > * {
  font-size: 14px;
  border: 1px solid #eee;
  height: 35px;
  width: 110px;
  margin-right: 5px;
  text-align: center;
  border-radius: 3px;
}
.category-class .category-class-inner .category-class-sort select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* 브라우저 기본 스타일 제거 input, select, button */
  background: url(../images/icon-select.svg) no-repeat center right 10px;
  border: 1px solid #ddd;
  padding-right: 30px;
}
.category-class .category-class-inner .category-class-sort button {
  font-weight: 600;
  background: transparent;
}
.category-class .category-class-inner .category-class-sort button.btn-earlybird {
  border-color: #FF3C6D;
  color: #FF3C6D;
}
.category-class .category-class-inner .category-class-wrap .focus-class-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
}
.category-class .category-class-inner .category-class-wrap .focus-class-items .focus-class-item {
  width: calc(25% - 20px);
}
.category-class .category-class-inner .category-class-wrap .focus-class-items .focus-class-item .thumb {
  position: relative;
}
.category-class .category-class-inner .category-class-wrap .focus-class-items .focus-class-item .thumb img {
  width: 100%;
}
.category-class .category-class-inner .category-class-wrap .focus-class-items .focus-class-item .thumb .discount {
  background: #ED2040;
  position: absolute;
  right: 0;
  bottom: 10px;
  padding: 5px 8px;
  border-radius: 3px 0 0 3px;
  color: #fff;
}
.category-class .category-class-inner .paging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.category-class .category-class-inner .paging button {
  border: none;
  background: transparent;
}
.category-class .category-class-inner .paging > button {
  margin: 0 10px;
  font-size: 18px;
}
.category-class .category-class-inner .paging .button-paging-group .button-paging.active {
  background: #333;
  border-radius: 3px;
  color: #fff;
  padding: 5px 8px;
}

/* ############ class-detail.html############*/
.class-detail-image {
  border: 1px solid #000;
  padding: 0 !important;
  background: url("../images/ct-class-detail-main-01.png") no-repeat center center;
  background-size: cover;
}
.class-detail-image .class-detail-image-inner {
  height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}