@charset "UTF-8";
/**
 * --------------------------------
 * event PC
 * --------------------------------
 */
@import url(https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy.css);
body.fixed {
  position: fixed;
  overscroll-behavior: contain;
  overflow-y: scroll;
}

.evt_intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 100;
}

.evt_intro .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 20px;
  width: 320px;
  height: 250px;
}

.evt_intro .text.reverse {
  opacity: 0;
}

.evt_intro .text div {
  position: relative;
  width: 150px;
  height: 250px;
}

.evt_intro .text span {
  position: absolute;
  width: 50px;
  height: 0;
  background: #cc2016;
}

.evt_intro .text .n span.left {
  left: 0;
  bottom: 0;
  animation: animHeight 0.2s linear forwards;
  animation-delay: 0.3s;
}

.evt_intro .text .n span.left i {
  opacity: 0;
}

.evt_intro .text .n span.center {
  top: 0;
  left: 0;
  transform: skewX(22deg);
  transform-origin: top left;
  box-shadow: 0 0 50px #000;
  z-index: 2;
  animation: animHeight 0.2s linear forwards;
  animation-delay: 0.5s;
}

.evt_intro .text .n span.right {
  right: 0;
  bottom: 0;
  animation: animHeight 0.2s linear forwards;
  animation-delay: 0.7s;
}

.evt_intro .text .e span.left {
  left: 0;
  bottom: 0;
  animation: animHeight 0.2s linear forwards;
  animation-delay: 0.9s;
}

.evt_intro .text .e span.top {
  left: 0;
  top: 0;
  width: 0;
  height: 50px;
  animation: animWidth 0.2s linear forwards;
  animation-delay: 1.1s;
}

.evt_intro .text .e span.center {
  left: 0;
  top: calc(50% - 25px);
  width: 0;
  height: 50px;
  box-shadow: 0 0 50px #000;
  animation: animWidth 0.2s linear forwards;
  animation-delay: 1.3s;
}

.evt_intro .text .e span.bottom {
  left: 0;
  bottom: 0;
  width: 0;
  height: 50px;
  animation: animWidth 0.2s linear forwards;
  animation-delay: 1.5s;
}

@keyframes animHeight {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes animWidth {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.evt_intro.zoomin .text.start {
  opacity: 0;
}

.evt_intro.zoomin .text.reverse {
  opacity: 1;
}

.evt_intro.zoomin .text.reverse {
  animation: animZoomin 2s linear forwards;
  animation-delay: 0.5s;
}

.evt_intro.zoomin .text.reverse .n span.left {
  height: 100%;
  animation: animHeight 0.2s linear forwards reverse;
  animation-delay: 3.2s;
}

.evt_intro.zoomin .text.reverse .n span.center {
  height: 100%;
  animation: animHeight 0.2s linear forwards reverse;
  animation-delay: 3s;
}

.evt_intro.zoomin .text.reverse .n span.right {
  height: 100%;
  animation: animHeight 0.2s linear forwards reverse;
  animation-delay: 2.8s;
}

.evt_intro.zoomin .text.reverse .e span.left {
  height: 100%;
  animation: animHeight 0.2s linear forwards reverse;
  animation-delay: 2.6s;
}

.evt_intro.zoomin .text.reverse .e span.top {
  width: 100%;
  animation: animWidth 0.2s linear forwards reverse;
  animation-delay: 2.4s;
}

.evt_intro.zoomin .text.reverse .e span.center {
  width: 100%;
  animation: animWidth 0.2s linear forwards reverse;
  animation-delay: 2.2s;
}

.evt_intro.zoomin .text.reverse .e span.bottom {
  width: 100%;
  animation: animWidth 0.2s linear forwards reverse;
  animation-delay: 2s;
}

.evt_intro.zoomin .text.reverse .n span.left.zoom {
  display: flex;
  gap: 3%;
  animation: none;
  background-color: transparent;
  animation: animLeftZoomin 2s linear forwards;
  animation-delay: 1.6s;
}

.evt_intro.zoomin .text.reverse .n span.left.zoom i {
  display: inline-flex;
  height: 100%;
  opacity: 1;
  transition: opacity ease-in-out 0.4s 1s;
}

.evt_intro.zoomin .text.reverse .n span.left.zoom i:nth-of-type(4n + 1) {
  width: 5%;
  background-color: #cc2016;
}

.evt_intro.zoomin .text.reverse .n span.left.zoom i:nth-of-type(4n + 2) {
  width: 3%;
  background-color: #831f19;
}

.evt_intro.zoomin .text.reverse .n span.left.zoom i:nth-of-type(4n + 3) {
  width: 8%;
  background-color: #ffdb46;
}

.evt_intro.zoomin .text.reverse .n span.left.zoom i:nth-of-type(4n + 4) {
  width: 1%;
  background-color: #4d4d4f;
}

@keyframes animZoomin {
  100% {
    transform: translate(30%, -50%) scale(2);
  }
}
@keyframes animLeftZoomin {
  100% {
    transform: scale(60);
  }
}
.evt_intro.hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity ease-in-out 0.4s, visibility ease-in-out 0.2s 0.4s;
}

.evt_header {
  position: relative;
  margin: 0 auto;
  padding: 40px 0 0;
  max-width: 1440px;
  height: 130px;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.evt_header .logo a {
  position: relative;
  display: inline-block;
  width: 173px;
  height: 48px;
  background: url("https://pic.neungyule.com/neteacher/pc/event/2025/0326/evt_logo.png") 0 0 no-repeat;
  z-index: 11;
}

@media screen and (max-width: 1440px) {
  .evt_header {
    max-width: 1200px;
  }
}
#eventWrap {
  background-color: #121212;
}

.evt_main .inner {
  position: relative;
}

.evt_top {
  position: fixed;
  bottom: -106px;
  right: 40px;
  width: 66px;
  height: 66px;
  transition: bottom 0.4s ease-in-out;
  z-index: 99;
}

.evt_top.active {
  bottom: 40px;
}

.evt_top .btn_evttop {
  display: inline-block;
  width: 66px;
  height: 66px;
  background: url(https://pic.neungyule.com/neteacher/pc/common/btn_top.svg) 0 0 no-repeat;
  background-size: cover;
  vertical-align: top;
}

.sec_evt {
  position: relative;
}

.sec_evt h3,
.sec_evt p,
.sec_evt .evt_btn {
  text-align: center;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.6s ease-in-out 0.2s, opacity 0.6s ease-in-out 0.2s;
}

.sec_evt.active h3 {
  transform: translateY(0);
  opacity: 1;
}

.sec_evt.active p {
  transform: translateY(0);
  opacity: 1;
}

.sec_evt.active .evt_btn {
  transform: translateY(0);
  opacity: 1;
}

.sec_intro {
  position: relative;
  margin-top: -130px;
  padding-bottom: 9px;
  background: url("https://pic.neungyule.com/neteacher/pc/event/2025/0326/evt_intro_bg.jpg") 50% 0 no-repeat;
  overflow: hidden;
}

.sec_intro::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 754px);
  width: 1507px;
  height: 1131px;
  background: url("https://pic.neungyule.com/neteacher/pc/event/2025/0326/evt_intro_teacher_bg.png") 0 0 no-repeat;
}

.sec_intro .inner::before {
  content: "";
  position: absolute;
  top: 500px;
  left: calc(50% - 705px);
  width: 1311px;
  height: 1311px;
  background: url("https://pic.neungyule.com/neteacher/pc/event/2025/0326/evt_intro_teacher1_bg.png") 0 0 no-repeat;
}

.sec_intro.teacher2 .inner::before {
  background: url("https://pic.neungyule.com/neteacher/pc/event/2025/0326/evt_intro_teacher2_bg.png") 0 0 no-repeat;
}

.sec_intro.teacher3 .inner::before {
  background: url("https://pic.neungyule.com/neteacher/pc/event/2025/0326/evt_intro_teacher3_bg.png") 0 0 no-repeat;
}

.sec_intro .txt_area {
  position: relative;
  padding-top: 130px;
  padding-bottom: 90px;
  overflow: hidden;
  z-index: 0;
}

.sec_intro .txt_area::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 306px);
  width: 624px;
  height: 600px;
  background: url("https://pic.neungyule.com/neteacher/pc/event/2025/0326/evt_intro_light2.png") 0 0 no-repeat;
  opacity: 0;
  animation: aniintrolight 5s linear infinite;
  animation-delay: 2s;
  z-index: 2;
}

.sec_intro .txt_area::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 109px);
  width: 215px;
  height: 182px;
  background: url("https://pic.neungyule.com/neteacher/pc/event/2025/0326/evt_intro_light1.png") 0 0 no-repeat;
  z-index: 3;
}

@keyframes aniintrolight {
  0% {
    opacity: 1;
  }
  1% {
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  3% {
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  6% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.sec_intro h2 {
  position: relative;
  padding-top: 50px;
  text-align: center;
  transform: translateY(0);
  opacity: 0;
  transition: transform 0.6s ease-in-out 0.2s, opacity 1.6s ease-in-out 0.2s;
}

.sec_intro p {
  position: relative;
  margin-top: 70px;
  text-align: center;
  transform: translateY(0) scale(0);
  opacity: 0;
  transition: transform 0.6s ease-in-out 0.2s, opacity 0.6s ease-in-out 0.2s;
  transition-delay: 0.6s;
}

.sec_intro p + p {
  margin-top: 40px;
  transition-delay: 0.8s;
}

.sec_intro p + p + p {
  margin-top: 45px;
  transition-delay: 1s;
}

.sec_intro p .txt_light {
  position: relative;
  display: inline-block;
  width: 900px;
  height: 155px;
  background: url("https://pic.neungyule.com/neteacher/pc/event/2025/0326/evt_intro_txt2.png") 0 0 no-repeat;
  overflow: hidden;
}

.sec_intro p .txt_light::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -20%;
  width: 203px;
  height: 275px;
  background: url("https://pic.neungyule.com/neteacher/pc/event/2025/0326/evt_intro_txt2_light2.png") 0 0 no-repeat;
  animation: aniintrolight2 5s linear infinite;
  animation-delay: 2.2s;
}

.sec_intro p .txt_light::after {
  content: "";
  position: absolute;
  top: -100px;
  left: -20%;
  width: 203px;
  height: 275px;
  background: url("https://pic.neungyule.com/neteacher/pc/event/2025/0326/evt_intro_txt2_light2.png") 0 0 no-repeat;
  animation: aniintrolight2 5s linear infinite;
  animation-delay: 2.4s;
}

.sec_intro p .txt_light img {
  position: relative;
  z-index: 1;
}

@keyframes aniintrolight2 {
  0% {
    left: -20%;
  }
  20% {
    left: 40%;
  }
  35% {
    left: 60%;
  }
  45% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
.sec_intro .swiper_area {
  position: relative;
  padding-top: 0;
  max-width: 1507px;
  height: 1120px;
  overflow: hidden;
}

.sec_intro .intro_swiper {
  position: absolute;
  top: 0;
  left: 52%;
  transform: translateX(-50%);
  width: 1400px;
  overflow: hidden;
  z-index: 1;
}

.sec_intro .intro_swiper .swiper-slide {
  position: relative;
  width: 940px;
  height: 1122px;
  opacity: 0;
}

.sec_intro .intro_swiper .swiper-slide .txt_name {
  position: absolute;
  top: -158px;
  left: 50%;
  transform: translateX(-50%) scale(1.4);
  transition: opacity 0.2s ease-in-out;
}

.sec_intro .intro_swiper .swiper-slide .pic {
  position: absolute;
  bottom: 0;
  left: calc(50% - 470px);
  width: 940px;
  height: 1287px;
  overflow: hidden;
}

.sec_intro .intro_swiper .swiper-slide .pic img {
  position: relative;
  margin-left: -40px;
}

.sec_intro .intro_swiper .swiper-slide .pic .shadow {
  position: absolute;
  top: 45px;
  left: 40px;
  margin-left: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.sec_intro .intro_swiper .swiper-slide .txt {
  position: absolute;
  bottom: -50px;
  left: 145px;
  opacity: 0;
  transition: bottom 0.6s ease-in-out 0.2s, opacity 0.6s ease-in-out 0.2s;
}

.sec_intro .intro_swiper .swiper-slide-active {
  transform-origin: 0 100%;
  opacity: 1;
}

.sec_intro .intro_swiper .swiper-slide-active .txt_name {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0s ease-in-out;
}

.sec_intro .intro_swiper .swiper-slide-active .pic {
  transform: translateY(160px);
}

.sec_intro .intro_swiper .swiper-slide-active .pic .shadow {
  opacity: 1;
}

.sec_intro .intro_swiper .swiper-slide-active .txt {
  opacity: 1;
  bottom: 15px;
}

.sec_intro .intro_swiper .swiper-slide-prev,
.sec_intro .intro_swiper .swiper-slide-next {
  margin-top: 220px;
  opacity: 1;
}

.sec_intro .intro_swiper .swiper-slide-prev .txt,
.sec_intro .intro_swiper .swiper-slide-next .txt {
  transition: all 0.2s ease-in-out 0s;
}

.sec_intro .intro_swiper .swiper-slide-active.teacher2 .txt {
  left: 115px;
}

.sec_intro .intro_swiper .swiper-slide-active.teacher3 .pic {
  left: calc(50% - 450px);
}

.sec_intro .intro_swiper .swiper-slide-prev.teacher1 .txt_name {
  left: 45%;
}

.sec_intro .intro_swiper .swiper-slide-prev.teacher2 .txt_name {
  left: 40%;
}

.sec_intro .intro_swiper .swiper-slide-prev.teacher3 .txt_name {
  left: 45%;
}

.sec_intro .intro_swiper .swiper-slide-next.teacher1 .txt_name {
  left: 45%;
}

.sec_intro .intro_swiper .swiper-slide-next.teacher2 .txt_name {
  left: 40%;
}

.sec_intro .intro_swiper .swiper-slide-next.teacher3 .txt_name {
  left: 45%;
}

.sec_intro.active h2 {
  transform: translateY(0);
  opacity: 1;
}

.sec_intro.active p {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.sec_info {
  padding-top: 66px;
  background: url("https://pic.neungyule.com/neteacher/pc/event/2025/0326/evt_info_bg.jpg") 50% 100% no-repeat;
}

.sec_info .evt_btn {
  margin-top: 70px;
  transition-delay: 0.6s;
}

.sec_recom {
  padding-top: 360px;
  background: url("https://pic.neungyule.com/neteacher/pc/event/2025/0326/evt_recom_bg.jpg") 50% 0 no-repeat;
}

.sec_recom ul {
  margin: -30px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  gap: 10px;
}

.sec_recom ul li {
  flex: 1 1 40%;
  transform: translateY(150px);
  opacity: 0;
  transition: transform 0.6s ease-in-out 0.2s, opacity 0.6s ease-in-out 0.2s;
}

.sec_recom ul li:nth-of-type(1) {
  text-align: right;
}

.sec_recom ul li:nth-of-type(2) {
  padding-top: 90px;
}

.sec_recom ul li:nth-of-type(3) {
  text-align: right;
}

.sec_recom ul li:nth-of-type(3) img {
  margin-top: -10px;
  margin-right: -5px;
}

.sec_recom ul li:nth-of-type(4) img {
  margin-top: -30px;
}

.sec_recom.active ul li {
  transform: translateY(0);
  opacity: 1;
}

.sec_recom.active ul li:nth-of-type(1) {
  transition-delay: 0.4s;
}

.sec_recom.active ul li:nth-of-type(2) {
  transition-delay: 0.8s;
}

.sec_recom.active ul li:nth-of-type(3) {
  transition-delay: 1.2s;
}

.sec_recom.active ul li:nth-of-type(4) {
  transition-delay: 1.6s;
}

.sec_course {
  padding-top: 120px;
  background: url("https://pic.neungyule.com/neteacher/pc/event/2025/0326/evt_course_bg.jpg") 50% 0 repeat-y;
  overflow: hidden;
}

.sec_course ul {
  position: relative;
  margin-top: 80px;
}

.sec_course ul::after {
  content: "";
  position: absolute;
  top: 5px;
  left: calc(50% - 960px);
  width: 1920px;
  height: 711px;
  background: url("https://pic.neungyule.com/neteacher/pc/event/2025/0326/evt_course_ls_bg.png") 0 0 no-repeat;
}

.sec_course ul li {
  margin-top: -20px;
  text-align: center;
  transform: translateY(150px) scale(0);
  opacity: 0;
  transition: transform 0.6s ease-in-out 0.2s, opacity 0.6s ease-in-out 0.2s;
}

.sec_course.active ul li {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.sec_course.active ul li:nth-of-type(1) {
  transition-delay: 0.2s;
}

.sec_course.active ul li:nth-of-type(2) {
  transition-delay: 0.6s;
}

.sec_course.active ul li:nth-of-type(3) {
  transition-delay: 1s;
}

.sec_lineup {
  padding-top: 150px;
  background: url("https://pic.neungyule.com/neteacher/pc/event/2025/0326/evt_lineup_bg.jpg") 50% 100% no-repeat;
  z-index: 1;
}

.sec_lineup ul {
  margin-top: 20px;
  padding-top: 75px;
  height: 1802px;
  background: url("https://pic.neungyule.com/neteacher/pc/event/2025/0326/evt_lineup_ls_bg.png") 50% 0 no-repeat;
}

.sec_lineup ul li {
  position: relative;
  margin: 0 auto;
  padding: 60px 0 0 520px;
  width: 1200px;
  height: 560px;
}

.sec_lineup ul li .pic {
  position: absolute;
  top: 5px;
  left: 10px;
  transform: translateX(-50px);
  opacity: 0;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.sec_lineup ul li .sti {
  margin-left: -30px;
  transform: scale(1.4);
  opacity: 0;
  transition: transform 0.6s ease-in-out 0.4s, opacity 0.6s ease-in-out 0.4s;
}

.sec_lineup ul li .txt {
  margin-top: 30px;
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.6s ease-in-out 0.8s, opacity 0.6s ease-in-out 0.8s;
}

.sec_lineup ul li:nth-of-type(1) .txt {
  margin-top: 10px;
}

.sec_lineup ul li:nth-of-type(2) .pic {
  top: 35px;
  left: 0;
}

.sec_lineup ul li:nth-of-type(3) {
  padding-top: 32px;
}

.sec_lineup ul li.active .pic {
  transform: translateX(0);
  opacity: 1;
}

.sec_lineup ul li.active .sti {
  transform: scale(1);
  opacity: 1;
}

.sec_lineup ul li.active .txt {
  transform: translateY(0);
  opacity: 1;
}

.sec_gift {
  padding-top: 160px;
  padding-bottom: 160px;
  background: url("https://pic.neungyule.com/neteacher/pc/event/2025/0326/evt_gift_bg.jpg") 50% 0 no-repeat;
  overflow: hidden;
}

.sec_gift .inner::before {
  content: "";
  position: absolute;
  top: 265px;
  left: calc(50% - 962px);
  width: 1952px;
  height: 1685px;
  background: url("https://pic.neungyule.com/neteacher/pc/event/2025/0326/evt_gift_light2.png") 0 0 no-repeat;
  transform: translateY(150px);
  opacity: 0;
  transition: transform 0.6s ease-in-out 0.2s, opacity 0.6s ease-in-out 0.8s;
}

.sec_gift .inner::after {
  content: "";
  position: absolute;
  top: 215px;
  left: calc(50% - 60px);
  width: 157px;
  height: 249px;
  background: url("https://pic.neungyule.com/neteacher/pc/event/2025/0326/evt_gift_light1.png") 0 0 no-repeat;
  transform: translateY(150px);
  opacity: 0;
  transition: transform 0.6s ease-in-out 0.2s, opacity 0.6s ease-in-out 0.4s;
}

.sec_gift h3 {
  margin-bottom: 230px;
}

.sec_gift p {
  position: relative;
}

.sec_gift ul {
  position: relative;
  margin: 50px auto 0;
  display: flex;
  gap: 5px;
  width: 960px;
  padding: 20px;
  background: #000000 0% 0% no-repeat padding-box;
  box-shadow: inset 4px 4px 6px rgba(255, 255, 255, 0.1607843137);
  border: 2px solid #272727;
  border-radius: 20px;
}

.sec_gift ul li .evt_pic {
  position: relative;
  width: 180px;
  height: 320px;
  background-color: #fff;
  overflow: hidden;
}

.sec_gift ul li .evt_pic::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 92px;
  background: transparent linear-gradient(180deg, rgba(0, 0, 0, 0.7019607843) 0%, rgba(0, 0, 0, 0) 100%) 0% 0% no-repeat padding-box;
  z-index: 1;
}

.sec_gift ul li .evt_pic::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 92px;
  background: transparent linear-gradient(0deg, rgba(0, 0, 0, 0.7019607843) 0%, rgba(0, 0, 0, 0) 100%) 0% 0% no-repeat padding-box;
  z-index: 1;
}

.sec_gift ul li:nth-of-type(1) .evt_pic {
  border-radius: 20px 0 0 20px;
}

.sec_gift ul li:nth-of-type(5) .evt_pic {
  border-radius: 0 20px 20px 0;
}

.sec_gift ul li .evt_pic .pic {
  position: absolute;
  top: 2px;
  left: 0;
  width: 180px;
  height: 316px;
  overflow: hidden;
}

.sec_gift ul li .evt_pic .pic div {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 10px;
  width: 180px;
  height: 2700px;
  background: url("https://pic.neungyule.com/neteacher/pc/event/2025/0326/evt_gift_pic.png") 0 0 no-repeat;
  transform: rotate(-0.00001deg);
  transition: top 2.4s ease-in-out;
}

.sec_gift ul li:nth-of-type(1) .evt_pic .pic div {
  top: -1200px;
  transition-delay: 0.5s;
}

.sec_gift ul li:nth-of-type(2) .evt_pic .pic div {
  top: -600px;
  transition-delay: 0.8s;
}

.sec_gift ul li:nth-of-type(3) .evt_pic .pic div {
  top: 0;
  transition-delay: 0.9s;
}

.sec_gift ul li:nth-of-type(4) .evt_pic .pic div {
  top: -600px;
  transition-delay: 0.6s;
}

.sec_gift ul li:nth-of-type(5) .evt_pic .pic div {
  top: -1200px;
  transition-delay: 0.4s;
}

.sec_gift ul.active li:nth-of-type(1) .evt_pic .pic div,
.sec_gift ul.active li:nth-of-type(2) .evt_pic .pic div,
.sec_gift ul.active li:nth-of-type(4) .evt_pic .pic div,
.sec_gift ul.active li:nth-of-type(5) .evt_pic .pic div {
  top: -2100px;
}

.sec_gift ul.active li:nth-of-type(3) .evt_pic .pic div {
  top: -2400px;
}

.sec_gift.active .inner::before {
  transform: translateY(0);
  opacity: 1;
}

.sec_gift.active .inner::after {
  transform: translateY(0);
  opacity: 1;
}

.sec_notice {
  padding: 80px 0 60px;
  background-color: #000;
}

.sec_notice .inner {
  max-width: 960px;
}

.sec_notice h3 {
  text-align: left;
  opacity: 1;
  transform: translateY(0);
}

.sec_notice ul {
  margin: 21px 0 0 58px;
}

.sec_notice ul li {
  position: relative;
  padding: 7px 0 7px 26px;
  line-height: 28px;
  font-size: 18px;
  color: #fff;
  font-weight: 300;
}

.sec_notice ul li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #fff;
}

.sec_notice ul li small {
  font-size: 16px;
}

.sec_notice ul li a {
  color: #fff;
}

body.popActive {
  overflow: hidden;
}

.pop_layer {
  display: none;
  position: fixed;
  overflow: hidden;
  top: 24px;
  right: 18px;
  bottom: 24px;
  left: 18px;
  min-width: 700px;
  z-index: 100;
}

.pop_layer .dim_layer {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: black;
  filter: alpha(opacity=60);
  opacity: 0.6;
  z-index: 100;
}

.pop_layer.active,
.pop_layer.active .dim_layer {
  display: block;
}

.pop_layer_inner {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  max-width: 960px;
  min-width: 720px;
  margin: 0 auto;
  max-height: 100%;
  padding: 0 5px 32px 0;
  background-color: #fff;
  border-radius: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 101;
}

.pop_layer_header {
  position: relative;
  padding: 0 40px;
}

.pop_layer_header h4 {
  padding: 34px 0 23px;
  border-bottom: 1px solid #e2e2e2;
  font-size: 30px;
  font-weight: bold;
  line-height: 30px;
  color: #1e1e1e;
  text-align: center;
  letter-spacing: -0.03em;
}

.pop_layer_header .btn_wrap {
  position: absolute;
  right: 30px;
  top: 30px;
}

.pop_layer_header .btn_close {
  width: 36px;
  height: 36px;
  background: url(https://pic.neungyule.com/neteacher/img/common/btn_pop_close.png) 0 0 no-repeat;
  background-size: 36px auto;
}

.pop_layer_header .pop_tit {
  padding: 34px 0 23px;
  border-bottom: 1px solid #e2e2e2;
  font-size: 30px;
  font-weight: bold;
  line-height: 30px;
  color: #1e1e1e;
  text-align: center;
}

.pop_layer_cont {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 38px 0 43px;
  scroll-behavior: smooth;
}

.pop_layer_cont::-webkit-scrollbar {
  width: 10px;
}

.pop_layer_cont::-webkit-scrollbar-thumb {
  background-color: #dedede;
  border-radius: 10px;
}

.pop_layer_cont::-webkit-scrollbar-track {
  background-color: #ececec;
  border-radius: 10px;
}

.tbl_tlt_wrap {
  display: flex;
  align-items: center;
  margin-top: 38px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e2e2;
}

.tbl_tlt {
  font-size: 24px;
  font-weight: 700;
}

.tbl_sub_tlt {
  margin-left: 20px;
  font-size: 18px;
  color: #3e3e3e;
}

.tbl_sub_tlt > strong {
  color: #694bc8;
}

input[type=text].input_txt_line,
input[type=number].input_txt_line,
input[type=tel].input_txt_line {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border-radius: 50px;
  border: 2px solid #e2e2e2;
  background-color: #fff;
  font-size: 16px;
  color: #1e1e1e;
  line-height: 50px;
}

input[type=text].input_txt_bg,
input[type=tel].input_txt_bg,
input[type=number].input_txt_bg {
  width: 100%;
  height: 50px;
  padding: 0 30px;
  border: 1px solid #f2f2f2;
  border-radius: 50px;
  background-color: #f2f2f2;
  font-size: 16px;
  color: #1e1e1e;
  line-height: 50px;
}

.select_box {
  position: relative;
  display: inline-block;
}

.select_box:after {
  content: "";
  position: absolute;
  top: 22px;
  right: 18px;
  display: inline-block;
  width: 10px;
  height: 6px;
  background-image: url(https://pic.neungyule.com/neteacher/img/common/ico_select_tbl.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 10px auto;
  pointer-events: none;
  z-index: 10;
}

.select_box select {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border-radius: 50px;
  border: 2px solid #e2e2e2;
  background-color: #fff;
  font-size: 16px;
  color: #1e1e1e;
  line-height: 46px;
  cursor: pointer;
}

.tbl_write_col {
  width: 100%;
}

.tbl_write_col th {
  padding-left: 40px;
  border-bottom: 1px solid #e2e2e2;
  font-size: 16px;
  color: #1e1e1e;
  font-weight: 500;
  text-align: left;
}

.tbl_write_col th.tbl_vertop {
  padding-top: 32px;
  vertical-align: top;
}

.tbl_write_col th .tbl_inner {
  padding: 2px 0;
  border-right: 1px solid #cecece;
}

.tbl_write_col td {
  height: 90px;
  padding: 20px 0 20px 40px;
  border-left: 0;
  border-bottom: 1px solid #e2e2e2;
  text-align: left;
}

.tbl_write_col .txt {
  font-size: 16px;
  color: #7e7e7e;
}

.tbl_write_col td .tbl_inner_input {
  display: flex;
  align-items: center;
}

.tbl_write_col .search_wrap .input_txt_bg {
  flex: 1;
  margin: 0 10px;
}

.tbl_write_col .search_wrap .btn_search {
  display: inline-flex;
  width: 120px;
  flex-shrink: 0;
  height: 50px;
  border: 2px solid #3e3e3e;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  font-size: 15px;
  line-height: 46px;
  font-weight: 500;
  color: #fff;
  background-color: #3e3e3e;
}

.tbl_write_col .tbl_inner_input .txt {
  display: inline-block;
  margin: 0 6px;
  padding-top: 0;
}

.tbl_write_col .tbl_inner_input .select_box {
  min-width: 120px;
}

.pop_layer_cont .tlt_notice {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 700;
}

.pop_layer_cont .txt_notice {
  margin-top: 10px;
  font-size: 16px;
  color: #7e7e7e;
}

.pop_layer_cont .txt_notice.blit01 {
  position: relative;
  margin-bottom: 12px;
  padding-left: 10px;
}

.pop_layer_cont .txt_notice.blit01:before {
  content: "-";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.pop_layer_cont .txt_notice.blit02 {
  position: relative;
  padding-left: 10px;
  margin-left: 8px;
}

.pop_layer_cont .txt_notice.blit02:before {
  content: "*";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.pop_layer_cont .btn_wrap {
  margin-top: 24px;
  text-align: center;
}

.btn_cancel {
  display: inline-flex;
  width: 160px;
  height: 60px;
  border: 2px solid #aaa;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  font-size: 20px;
  line-height: 60px;
  font-weight: 500;
  color: #fff;
  background: #aaa;
}

.btn_pri {
  display: inline-flex;
  width: 200px;
  height: 60px;
  margin-left: 12px;
  border: 2px solid #694bc8;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  font-size: 20px;
  line-height: 60px;
  font-weight: 500;
  color: #fff;
  background: #694bc8;
}

@keyframes aniintrolight {
  0% {
    opacity: 1;
  }
  1% {
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  3% {
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  6% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
/**
 * --------------------------------
 * event PC
 * --------------------------------
 */
body.fixed {
  position: fixed;
  overscroll-behavior: contain;
  overflow-y: scroll;
}

.evt_intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 100;
}

.evt_intro .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 20px;
  width: 320px;
  height: 250px;
}

.evt_intro .text.reverse {
  opacity: 0;
}

.evt_intro .text div {
  position: relative;
  width: 150px;
  height: 250px;
}

.evt_intro .text span {
  position: absolute;
  width: 50px;
  height: 0;
  background: #cc2016;
}

.evt_intro .text .n span.left {
  left: 0;
  bottom: 0;
  animation: animHeight 0.2s linear forwards;
  animation-delay: 0.3s;
}

.evt_intro .text .n span.left i {
  opacity: 0;
}

.evt_intro .text .n span.center {
  top: 0;
  left: 0;
  transform: skewX(22deg);
  transform-origin: top left;
  box-shadow: 0 0 50px #000;
  z-index: 2;
  animation: animHeight 0.2s linear forwards;
  animation-delay: 0.5s;
}

.evt_intro .text .n span.right {
  right: 0;
  bottom: 0;
  animation: animHeight 0.2s linear forwards;
  animation-delay: 0.7s;
}

.evt_intro .text .e span.left {
  left: 0;
  bottom: 0;
  animation: animHeight 0.2s linear forwards;
  animation-delay: 0.9s;
}

.evt_intro .text .e span.top {
  left: 0;
  top: 0;
  width: 0;
  height: 50px;
  animation: animWidth 0.2s linear forwards;
  animation-delay: 1.1s;
}

.evt_intro .text .e span.center {
  left: 0;
  top: calc(50% - 25px);
  width: 0;
  height: 50px;
  box-shadow: 0 0 50px #000;
  animation: animWidth 0.2s linear forwards;
  animation-delay: 1.3s;
}

.evt_intro .text .e span.bottom {
  left: 0;
  bottom: 0;
  width: 0;
  height: 50px;
  animation: animWidth 0.2s linear forwards;
  animation-delay: 1.5s;
}

@keyframes animHeight {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes animWidth {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.evt_intro.zoomin .text.start {
  opacity: 0;
}

.evt_intro.zoomin .text.reverse {
  opacity: 1;
}

.evt_intro.zoomin .text.reverse {
  animation: animZoomin 2s linear forwards;
  animation-delay: 0.5s;
}

.evt_intro.zoomin .text.reverse .n span.left {
  height: 100%;
  animation: animHeight 0.2s linear forwards reverse;
  animation-delay: 3.2s;
}

.evt_intro.zoomin .text.reverse .n span.center {
  height: 100%;
  animation: animHeight 0.2s linear forwards reverse;
  animation-delay: 3s;
}

.evt_intro.zoomin .text.reverse .n span.right {
  height: 100%;
  animation: animHeight 0.2s linear forwards reverse;
  animation-delay: 2.8s;
}

.evt_intro.zoomin .text.reverse .e span.left {
  height: 100%;
  animation: animHeight 0.2s linear forwards reverse;
  animation-delay: 2.6s;
}

.evt_intro.zoomin .text.reverse .e span.top {
  width: 100%;
  animation: animWidth 0.2s linear forwards reverse;
  animation-delay: 2.4s;
}

.evt_intro.zoomin .text.reverse .e span.center {
  width: 100%;
  animation: animWidth 0.2s linear forwards reverse;
  animation-delay: 2.2s;
}

.evt_intro.zoomin .text.reverse .e span.bottom {
  width: 100%;
  animation: animWidth 0.2s linear forwards reverse;
  animation-delay: 2s;
}

.evt_intro.zoomin .text.reverse .n span.left.zoom {
  display: flex;
  gap: 3%;
  animation: none;
  background-color: transparent;
  animation: animLeftZoomin 2s linear forwards;
  animation-delay: 1.6s;
}

.evt_intro.zoomin .text.reverse .n span.left.zoom i {
  display: inline-flex;
  height: 100%;
  opacity: 1;
  transition: opacity ease-in-out 0.4s 1s;
}

.evt_intro.zoomin .text.reverse .n span.left.zoom i:nth-of-type(4n + 1) {
  width: 5%;
  background-color: #cc2016;
}

.evt_intro.zoomin .text.reverse .n span.left.zoom i:nth-of-type(4n + 2) {
  width: 3%;
  background-color: #831f19;
}

.evt_intro.zoomin .text.reverse .n span.left.zoom i:nth-of-type(4n + 3) {
  width: 8%;
  background-color: #ffdb46;
}

.evt_intro.zoomin .text.reverse .n span.left.zoom i:nth-of-type(4n + 4) {
  width: 1%;
  background-color: #4d4d4f;
}

@keyframes animZoomin {
  100% {
    transform: translate(30%, -50%) scale(2);
  }
}
@keyframes animLeftZoomin {
  100% {
    transform: scale(60);
  }
}
.evt_intro.hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity ease-in-out 0.4s, visibility ease-in-out 0.2s 0.4s;
}

.event20250722 {
  background: url("../../../../neteacher/pc/event/2025/0722/bg.png") no-repeat 50% 0%;
  overflow: hidden;
}
.event20250722 img {
  max-width: none;
}
.event20250722-light {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -60px;
  margin-top: -40px;
  animation: aniintrolight 5s linear infinite;
  animation-delay: 2s;
}
.event20250722-head {
  display: flex;
  justify-content: space-between;
  width: 1440px;
  margin: 0 auto;
  padding: 36px 0;
}
.event20250722-head a {
  display: block;
  padding: 5px 0;
}
.event20250722-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 68px 0 0 0;
}
.event20250722-title__text {
  padding-bottom: 34px;
}
.event20250722-title__title {
  position: relative;
  z-index: 20;
  padding-bottom: 25px;
}
.event20250722-title__text02 {
  padding-bottom: 18px;
}
.event20250722-title__light {
  position: absolute;
  top: 280px;
  left: 50%;
  margin-left: 315px;
  z-index: 10;
}
.event20250722-teacher {
  margin-top: -12px;
}
.event20250722-teacher__swiper {
  width: 1260px;
  height: 1128px;
  margin: 0 auto;
  overflow: hidden;
}
.event20250722-teacher .swiper-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 900px;
  opacity: 0;
  transition: all 1s ease;
}
.event20250722-teacher .swiper-slide-prev, .event20250722-teacher .swiper-slide-next, .event20250722-teacher .swiper-slide-active {
  opacity: 1;
}
.event20250722-teacher .swiper-slide-prev.teacher01 .event20250722-teacher__img, .event20250722-teacher .swiper-slide-next.teacher01 .event20250722-teacher__img {
  margin-top: 168px;
}
.event20250722-teacher .swiper-slide-prev.teacher02 .event20250722-teacher__img, .event20250722-teacher .swiper-slide-next.teacher02 .event20250722-teacher__img {
  margin-top: 100px;
}
.event20250722-teacher .swiper-slide-prev.teacher03 .event20250722-teacher__img, .event20250722-teacher .swiper-slide-next.teacher03 .event20250722-teacher__img {
  margin-top: 140px;
}
.event20250722-teacher .swiper-slide-active {
  margin-top: 0;
}
.event20250722-teacher .swiper-slide-active .event20250722-teacher__name {
  opacity: 0;
}
.event20250722-teacher .swiper-slide-active .event20250722-teacher__img {
  margin-top: 50px;
}
.event20250722-teacher .swiper-slide-active .event20250722-teacher__info {
  opacity: 1;
}
.event20250722-teacher__name {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  transition: all 0.4s ease;
  width: 186px;
  height: 56px;
  border-radius: 8px;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.25);
  background-color: rgba(255, 255, 255, 0.16); /* 흰색 + 16% 불투명도 */
  backdrop-filter: blur(2px) brightness(94%); /* 흐림 2px, 밝기 -6% */
  -webkit-backdrop-filter: blur(2px) brightness(94%);
  border: 1px solid rgba(118, 118, 118, 0.5);
  font-family: "Paperlogy";
  font-weight: 500;
  font-size: 24px;
  color: #fff;
}
.event20250722-teacher__img {
  position: relative;
  transition: all 0.4s ease;
}
.event20250722-teacher__info {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 836px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  transition: all 0.4s ease;
  opacity: 0;
  width: 480px;
  height: 228px;
  background-color: rgba(255, 255, 255, 0.16); /* 흰색 + 16% 투명도 */
  background-color: rgba(0, 0, 0, 0.16);
  -webkit-backdrop-filter: blur(6px) brightness(84%);
          backdrop-filter: blur(6px) brightness(84%);
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.18);
  border: 1px solid #9a9a9a;
  border-radius: 14px;
}
.event20250722-teacher__text {
  position: relative;
  text-align: center;
}
.event20250722-teacher__text a {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.event20250722-caution {
  position: relative;
  height: 300px;
  margin: 54px 0;
}
.event20250722-caution img {
  position: absolute;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
  margin-left: 66px;
}
.event20250722-section01 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.event20250722-section01__title {
  margin-bottom: 20px;
}
.event20250722-section01__img {
  margin-left: -204px;
}
.event20250722-section01__text {
  margin-top: -170px;
}
.event20250722-section02 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 100px 0;
}
.event20250722-section02__title {
  margin-bottom: 60px;
}
.event20250722-section02__text02 {
  margin-top: 20px;
}
.event20250722-section02__text03 {
  margin-top: 20px;
}
.event20250722-section02__text01, .event20250722-section02__text02, .event20250722-section02__text03 {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  width: 960px;
  padding: 40px;
  border: 1.5px solid rgba(80, 80, 80, 0.8);
  border-radius: 25px;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(10px) brightness(116%);
          backdrop-filter: blur(10px) brightness(116%);
  letter-spacing: -0.8px;
}
.event20250722-section02__text01__title, .event20250722-section02__text02__title, .event20250722-section02__text03__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 160px;
  height: 160px;
  background: #389aff;
  border-radius: 8px;
  font-family: "Paperlogy";
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}
.event20250722-section02__text01__title strong, .event20250722-section02__text02__title strong, .event20250722-section02__text03__title strong {
  font-size: 64px;
  font-weight: 700;
}
.event20250722-section02__text01__text, .event20250722-section02__text02__text, .event20250722-section02__text03__text {
  padding: 7px 0 0 0;
}
.event20250722-section02__text01__text > strong, .event20250722-section02__text02__text > strong, .event20250722-section02__text03__text > strong {
  display: block;
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 600;
  font-family: "Paperlogy";
  color: #389aff;
}
.event20250722-section02__text01__text ul li, .event20250722-section02__text02__text ul li, .event20250722-section02__text03__text ul li {
  display: flex;
  gap: 4px;
  margin-top: 0;
  font-size: 28px;
  line-height: 44px;
  font-family: "Paperlogy";
  color: #fff;
}
.event20250722-section02__text01__text ul li:first-child, .event20250722-section02__text02__text ul li:first-child, .event20250722-section02__text03__text ul li:first-child {
  margin-top: 0;
}
.event20250722-section02__text01__text ul li::before, .event20250722-section02__text02__text ul li::before, .event20250722-section02__text03__text ul li::before {
  content: "-";
  display: block;
}
.event20250722-section02__text02__title {
  background-color: #8538ff;
}
.event20250722-section02__text02__text > strong {
  color: #8538ff;
}
.event20250722-section02__text03__title {
  background-color: #0dbdc4;
}
.event20250722-section02__text03__text > strong {
  color: #0dbdc4;
}
.event20250722-section03 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 110px 0;
}
.event20250722-section03__title {
  margin-bottom: 72px;
}
.event20250722-section03__contents {
  position: relative;
}
.event20250722-section03__text00 {
  position: relative;
  z-index: 40;
  margin-top: 190px;
  margin-left: 78px;
}
.event20250722-section03__text01 {
  position: relative;
  z-index: 40;
  margin-top: -7px;
  margin-left: 16px;
}
.event20250722-section03__text02 {
  position: relative;
  z-index: 40;
  margin-top: -36px;
  margin-left: 50px;
}
.event20250722-section03__text03 {
  position: relative;
  z-index: 40;
  margin-top: -34px;
  margin-left: 20px;
}
.event20250722-section03__bg01 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}
.event20250722-section03__bg02 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  margin-top: -145px;
  margin-left: -200px;
}
.event20250722-section03__bg03 {
  position: absolute;
  top: 0;
  left: 50%;
  margin-top: 570px;
  margin-left: 700px;
  transform: translateX(-50%);
  z-index: 30;
}
.event20250722-section04 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 200px 0 100px 0;
}
.event20250722-section04__title {
  margin-bottom: 34px;
  margin-left: 26px;
}
.event20250722-section04__contents {
  position: relative;
  z-index: 40;
  text-align: center;
}
.event20250722-section04__img {
  margin-bottom: 26px;
}
.event20250722-section04-slot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 978px;
  height: 368px;
  margin-left: 28px;
  margin-bottom: 50px;
  background: url("../../../../neteacher/pc/event/2025/0722/section04_bg5.png") no-repeat 50% 50%;
}
.event20250722-section04-slot__item {
  position: relative;
  z-index: 40;
  width: 184px;
  height: 318px;
  overflow: hidden;
}
.event20250722-section04-slot__item::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 80px;
  background: transparent linear-gradient(180deg, rgba(0, 0, 0, 0.7019607843) 0%, rgba(0, 0, 0, 0) 100%) 0% 0% no-repeat padding-box;
  z-index: 1;
}
.event20250722-section04-slot__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: transparent linear-gradient(0deg, rgba(0, 0, 0, 0.7019607843) 0%, rgba(0, 0, 0, 0) 100%) 0% 0% no-repeat padding-box;
  z-index: 1;
}
.event20250722-section04-slot__item-inner {
  position: relative;
  top: 0;
  display: flex;
  flex-direction: column;
  transition: top 2.4s ease-in-out;
  transition: top 2.4s cubic-bezier(0, 0, 0.2, 1);
}
.event20250722-section04-slot__item:nth-child(1) .event20250722-section04-slot__item-inner {
  transition-delay: 1.5s;
}
.event20250722-section04-slot__item:nth-child(2) .event20250722-section04-slot__item-inner {
  transition-delay: 1.8s;
}
.event20250722-section04-slot__item:nth-child(3) .event20250722-section04-slot__item-inner {
  transition-delay: 1.9s;
}
.event20250722-section04-slot__item:nth-child(4) .event20250722-section04-slot__item-inner {
  transition-delay: 1.6s;
}
.event20250722-section04-slot__item:nth-child(5) .event20250722-section04-slot__item-inner {
  transition-delay: 1.4s;
}
.event20250722-section04-slot.active .event20250722-section04-slot__item:nth-child(1) .event20250722-section04-slot__item-inner {
  top: -4452px;
}
.event20250722-section04-slot.active .event20250722-section04-slot__item:nth-child(2) .event20250722-section04-slot__item-inner {
  top: -4452px;
}
.event20250722-section04-slot.active .event20250722-section04-slot__item:nth-child(3) .event20250722-section04-slot__item-inner {
  top: -4770px;
}
.event20250722-section04-slot.active .event20250722-section04-slot__item:nth-child(4) .event20250722-section04-slot__item-inner {
  top: -4452px;
}
.event20250722-section04-slot.active .event20250722-section04-slot__item:nth-child(5) .event20250722-section04-slot__item-inner {
  top: -4452px;
}
.event20250722-section04-slot__card {
  width: 184px;
  height: 318px;
  background: url("../../../../neteacher/pc/event/2025/0722/section04_card.png") no-repeat 50% 50%;
}
.event20250722-section04-slot__card-active {
  width: 184px;
  height: 318px;
  background: url("../../../../neteacher/pc/event/2025/0722/section04_card_active.png") no-repeat 50% 50%;
}
.event20250722-section04-slot__card-coffee {
  width: 184px;
  height: 318px;
  background: url("../../../../neteacher/pc/event/2025/0722/section04_card_coffee.png") no-repeat 50% 50%;
}
.event20250722-section04__text {
  margin-left: 40px;
}
.event20250722-section04__bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  margin-bottom: 80px;
  margin-left: 14px;
}
.event20250722-section04__bg2 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  margin-bottom: 490px;
}
.event20250722-section05 {
  margin-top: 55px;
  margin-left: 0;
}

.evt_top {
  position: fixed;
  bottom: -106px;
  right: 40px;
  width: 66px;
  height: 66px;
  transition: bottom 0.4s ease-in-out;
  z-index: 99;
}

.evt_top.active {
  bottom: 40px;
}

.evt_top .btn_evttop {
  display: inline-block;
  width: 66px;
  height: 66px;
  background: url(https://pic.neungyule.com/neteacher/pc/common/btn_top.svg) 0 0 no-repeat;
  background-size: cover;
  vertical-align: top;
}/*# sourceMappingURL=style.css.map */