|
|
@@ -0,0 +1,2492 @@
|
|
|
+@charset "UTF-8";
|
|
|
+@keyframes animate-top {
|
|
|
+ 0% {
|
|
|
+ background: #8b2ef4; /* Old browsers */
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ color: #474747;
|
|
|
+ transform: translateX(0px) translateY(50%) translateZ(5px) rotateX(-90deg) rotateY(0deg) rotateZ(0deg);
|
|
|
+ }
|
|
|
+}
|
|
|
+@keyframes animate-bottom {
|
|
|
+ 0% {
|
|
|
+ color: #474747;
|
|
|
+ opacity: 1;
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ transform: translateX(0) translateY(0) translateZ(0) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
|
|
|
+ opacity: 1;
|
|
|
+ }
|
|
|
+}
|
|
|
+.number {
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+
|
|
|
+.number span {
|
|
|
+ position: absolute;
|
|
|
+ display: flex !important;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ font-weight: bold;
|
|
|
+ text-align: center;
|
|
|
+ box-sizing: border-box;
|
|
|
+ -moz-box-sizing: border-box;
|
|
|
+ -webkit-box-sizing: border-box;
|
|
|
+ color: white;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ line-height: 100%;
|
|
|
+ perspective: 7.14em;
|
|
|
+ font-family: "gmarketSans" !important;
|
|
|
+}
|
|
|
+
|
|
|
+.number span:before {
|
|
|
+ display: block;
|
|
|
+ width: 100%;
|
|
|
+ height: 50%;
|
|
|
+ overflow: hidden;
|
|
|
+ border-radius: 20% 20% 0 0;
|
|
|
+ background: #8b2ef4; /* Old browsers */
|
|
|
+ padding-top: 45px;
|
|
|
+ line-height: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.number span:after {
|
|
|
+ display: block;
|
|
|
+ width: 100%;
|
|
|
+ height: 50%;
|
|
|
+ overflow: hidden;
|
|
|
+ line-height: 0 !important;
|
|
|
+ border-radius: 0 0 20% 20%;
|
|
|
+ transition: color 100ms, background-color 100ms;
|
|
|
+ background: #7F1BF2; /* Old browsers */
|
|
|
+}
|
|
|
+
|
|
|
+.flip .primary:before {
|
|
|
+ animation: animate-top 250ms;
|
|
|
+ -moz-animation-fill-mode: forwards;
|
|
|
+ -webkit-animation: animate-top 250ms;
|
|
|
+ -webkit-animation-fill-mode: forwards;
|
|
|
+ background: #7F1BF2; /* Old browsers */
|
|
|
+}
|
|
|
+
|
|
|
+.flip .primary:after {
|
|
|
+ animation: animate-bottom 250ms;
|
|
|
+ -moz-animation-fill-mode: forwards;
|
|
|
+ animation-delay: 250ms;
|
|
|
+ -webkit-animation: animate-bottom 250ms;
|
|
|
+ -webkit-animation-fill-mode: forwards;
|
|
|
+ -webkit-animation-delay: 250ms;
|
|
|
+}
|
|
|
+
|
|
|
+.primary:after {
|
|
|
+ opacity: 0;
|
|
|
+ transform: translateX(0) translateY(0em) translateZ(0.35em) rotateX(91deg) rotateY(0deg) rotateZ(0deg);
|
|
|
+}
|
|
|
+
|
|
|
+.primary {
|
|
|
+ z-index: 2;
|
|
|
+}
|
|
|
+
|
|
|
+.secondary {
|
|
|
+ z-index: 1;
|
|
|
+}
|
|
|
+
|
|
|
+/* Number 0 */
|
|
|
+[data-number="0"] span.primary:before {
|
|
|
+ content: "0";
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="0"] span.secondary:after {
|
|
|
+ content: "0";
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="0"] span.secondary:before {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="0"] span.primary:after {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+/* Number 9 */
|
|
|
+[data-number="9"] span.primary:before {
|
|
|
+ content: "9";
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="9"] span.secondary:after {
|
|
|
+ content: "9";
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="9"] span.secondary:before {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="9"] span.primary:after {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+/* Number 8 */
|
|
|
+[data-number="8"] span.primary:before {
|
|
|
+ content: "8";
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="8"] span.secondary:after {
|
|
|
+ content: "8";
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="8"] span.secondary:before {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="8"] span.primary:after {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+/* Number 7 */
|
|
|
+[data-number="7"] span.primary:before {
|
|
|
+ content: "7";
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="7"] span.secondary:after {
|
|
|
+ content: "7";
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="7"] span.secondary:before {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="7"] span.primary:after {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+/* Number 6 */
|
|
|
+[data-number="6"] span.primary:before {
|
|
|
+ content: "6";
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="6"] span.secondary:after {
|
|
|
+ content: "6";
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="6"] span.secondary:before {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="6"] span.primary:after {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+/* Number 5 */
|
|
|
+[data-number="5"] span.primary:before {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="5"] span.secondary:after {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="5"] span.secondary:before {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="5"] span.primary:after {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+/* Number 4 */
|
|
|
+[data-number="4"] span.primary:before {
|
|
|
+ content: "4";
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="4"] span.secondary:after {
|
|
|
+ content: "4";
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="4"] span.secondary:before {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="4"] span.primary:after {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+/* Number 3 */
|
|
|
+[data-number="3"] span.primary:before {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="3"] span.secondary:after {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="3"] span.secondary:before {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="3"] span.primary:after {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+/* Number 2 */
|
|
|
+[data-number="2"] span.primary:before {
|
|
|
+ content: "2";
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="2"] span.secondary:after {
|
|
|
+ content: "2";
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="2"] span.secondary:before {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="2"] span.primary:after {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+/* Number 1 */
|
|
|
+[data-number="1"] span.primary:before {
|
|
|
+ content: "1";
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="1"] span.secondary:after {
|
|
|
+ content: "1";
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="1"] span.secondary:before {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+[data-number="1"] span.primary:after {
|
|
|
+ content: attr(title);
|
|
|
+}
|
|
|
+
|
|
|
+img {
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.evt--section01 {
|
|
|
+ padding-top: 0px !important;
|
|
|
+ background-color: #00b6ff;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: 100%;
|
|
|
+ position: relative;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+.evt--section01 .palm--img1 {
|
|
|
+ position: absolute;
|
|
|
+ top: -3%;
|
|
|
+ left: 0;
|
|
|
+ max-width: 495px;
|
|
|
+ width: 50%;
|
|
|
+ z-index: 10;
|
|
|
+}
|
|
|
+.evt--section01 .palm--img2 {
|
|
|
+ z-index: 10;
|
|
|
+ position: absolute;
|
|
|
+ right: -60px;
|
|
|
+ top: -3%;
|
|
|
+ width: 50%;
|
|
|
+ max-width: 500px;
|
|
|
+}
|
|
|
+.evt--section01 .bubble--bg {
|
|
|
+ z-index: 10;
|
|
|
+ position: absolute;
|
|
|
+ background-image: url(../img/img_bg_3.png);
|
|
|
+ width: 231px;
|
|
|
+ height: 95px;
|
|
|
+ bottom: -500px;
|
|
|
+ left: -231px;
|
|
|
+}
|
|
|
+.evt--section01 .wave--bg {
|
|
|
+ position: absolute;
|
|
|
+ background-size: 100%;
|
|
|
+ background-position: 0 -120px;
|
|
|
+ background-image: url(../img/bg_2.png);
|
|
|
+ width: 100%;
|
|
|
+ height: 5000px;
|
|
|
+}
|
|
|
+.evt--section01 .section--container {
|
|
|
+ max-width: 1440px;
|
|
|
+ margin: 0 auto;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .section--title {
|
|
|
+ margin-top: 150px;
|
|
|
+ margin-bottom: 150px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ position: relative;
|
|
|
+ z-index: 11;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .section--title .logo {
|
|
|
+ max-width: 290px;
|
|
|
+ width: 40%;
|
|
|
+ margin-bottom: 80px;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .section--title > h1 {
|
|
|
+ max-width: 966px;
|
|
|
+ width: 80%;
|
|
|
+ position: relative;
|
|
|
+ margin-bottom: 30px;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .section--title > h1 .bg--wave--wrap {
|
|
|
+ position: absolute;
|
|
|
+ top: -150%;
|
|
|
+ max-width: 900px;
|
|
|
+ width: 80%;
|
|
|
+ right: -30%;
|
|
|
+ height: 550px;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .section--title > h1 .bg--wave--wrap .bg--wave {
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .section--title > h1 .bg--wave--wrap .bg--wave .bg--wave1 {
|
|
|
+ position: absolute;
|
|
|
+ z-index: -1;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .section--title > h1 .bg--wave--wrap .bg--wave .bg--wave2 {
|
|
|
+ position: absolute;
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .section--title > h2 {
|
|
|
+ margin-bottom: 100px;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .section--title > h3 {
|
|
|
+ opacity: 0;
|
|
|
+ transform: translateY(60px);
|
|
|
+ animation: fadeUpH3 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
|
|
|
+ max-width: 716px;
|
|
|
+ width: 80%;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .section--title .bg1 {
|
|
|
+ position: absolute;
|
|
|
+ left: -200px;
|
|
|
+ top: 0px;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .section--title .bg2 {
|
|
|
+ position: absolute;
|
|
|
+ left: -230px;
|
|
|
+ bottom: -200px;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .section--title .bg4 {
|
|
|
+ position: absolute;
|
|
|
+ right: -200px;
|
|
|
+ bottom: -60px;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .video--wrap {
|
|
|
+ max-width: 1440px;
|
|
|
+ margin: 0 auto 120px;
|
|
|
+ overflow: hidden;
|
|
|
+ max-height: 90vh;
|
|
|
+ background-color: black;
|
|
|
+ border: 3px solid #ffffff;
|
|
|
+ border-radius: 2px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ box-sizing: border-box;
|
|
|
+ position: relative;
|
|
|
+ z-index: 5;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .video--wrap video {
|
|
|
+ aspect-ratio: 4/3;
|
|
|
+ z-index: 5;
|
|
|
+ width: 100%;
|
|
|
+ position: relative;
|
|
|
+ vertical-align: top;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .video--wrap .bg5 {
|
|
|
+ position: absolute;
|
|
|
+ top: -100px;
|
|
|
+ left: -340px;
|
|
|
+ z-index: 2;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .video--wrap .video--btn {
|
|
|
+ display: none;
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ max-width: 230px;
|
|
|
+ max-height: 230px;
|
|
|
+ width: 20vw;
|
|
|
+ height: 20vw;
|
|
|
+ z-index: 10;
|
|
|
+ height: 230px;
|
|
|
+ cursor: pointer;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-position: center;
|
|
|
+ background-size: 100%;
|
|
|
+ background-image: url(../img/ico_play.png);
|
|
|
+}
|
|
|
+.evt--section01 .section--container .video--wrap .video--btn.play {
|
|
|
+ display: block;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap {
|
|
|
+ position: relative;
|
|
|
+ margin-bottom: 200px;
|
|
|
+ box-shadow: 16px 12px 32px rgba(68, 68, 68, 0.15);
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .bg1 {
|
|
|
+ position: absolute;
|
|
|
+ right: -180px;
|
|
|
+ top: -30px;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .bg2 {
|
|
|
+ position: absolute;
|
|
|
+ left: -160px;
|
|
|
+ top: 50%;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .bg3 {
|
|
|
+ position: absolute;
|
|
|
+ right: -260px;
|
|
|
+ bottom: 30%;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .swiper--tab--wrap {
|
|
|
+ display: flex;
|
|
|
+ gap: 5px;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .swiper--tab--wrap .tab--btn {
|
|
|
+ background-color: #fff;
|
|
|
+ border: none;
|
|
|
+ border-top-left-radius: 15px;
|
|
|
+ border-top-right-radius: 15px;
|
|
|
+ text-align: center;
|
|
|
+ width: 100%;
|
|
|
+ position: relative;
|
|
|
+ font-weight: 500;
|
|
|
+ font-family: "GmarketSans";
|
|
|
+ height: 80px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ font-size: 28px;
|
|
|
+ padding: 0;
|
|
|
+ color: #787878;
|
|
|
+ box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.15) inset;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .swiper--tab--wrap .tab--btn:first-child::before, .evt--section01 .section--container .swiper--wrap .swiper--tab--wrap .tab--btn:nth-child(2)::before, .evt--section01 .section--container .swiper--wrap .swiper--tab--wrap .tab--btn:nth-child(3)::before {
|
|
|
+ content: "NEW";
|
|
|
+ font-size: 14px;
|
|
|
+ margin-top: -5px;
|
|
|
+ margin-right: 5px;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .swiper--tab--wrap .tab--btn::after {
|
|
|
+ content: "";
|
|
|
+ display: inline-block;
|
|
|
+ width: 100%;
|
|
|
+ bottom: 0;
|
|
|
+ position: absolute;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .swiper--tab--wrap .tab--btn.active {
|
|
|
+ background-color: #0000ff;
|
|
|
+ font-weight: 700;
|
|
|
+ color: #ffde00;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .swiper-slide {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .slide--img {
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .slide--img .new--icon {
|
|
|
+ display: inline-block;
|
|
|
+ position: absolute;
|
|
|
+ width: 10%;
|
|
|
+ padding-bottom: 11%;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ bottom: 5%;
|
|
|
+ right: 6%;
|
|
|
+ background-image: url(../img/ico_new.png);
|
|
|
+ max-width: 130px;
|
|
|
+ max-height: 130px;
|
|
|
+ background-size: 100%;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .slide--desc {
|
|
|
+ padding: 70px 100px;
|
|
|
+ height: 380px;
|
|
|
+ background-color: #fff;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .slide--desc.type2 {
|
|
|
+ padding: 40px 100px;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .slide--desc.type2 h4 {
|
|
|
+ margin-bottom: 0px;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .slide--desc h4 {
|
|
|
+ font-family: "GmarketSans";
|
|
|
+ font-weight: 700;
|
|
|
+ font-size: 42px;
|
|
|
+ margin-bottom: 20px;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .slide--desc h4 span {
|
|
|
+ font-size: 28px;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .slide--desc p {
|
|
|
+ font-family: "Pretendard Variable";
|
|
|
+ font-size: 28px;
|
|
|
+ line-height: 1.4;
|
|
|
+ font-weight: 500;
|
|
|
+ margin-bottom: 30px;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .slide--desc p:last-child {
|
|
|
+ margin-bottom: 0px;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .swiper-pagination {
|
|
|
+ bottom: -100px;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .swiper-pagination span {
|
|
|
+ width: 32px;
|
|
|
+ height: 32px;
|
|
|
+ margin: 0 12px;
|
|
|
+ background-color: #008be6;
|
|
|
+ opacity: 0.6;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .swiper-pagination .swiper-pagination-bullet-active {
|
|
|
+ background-color: #0047bb;
|
|
|
+ opacity: 1;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .swiper-button-next, .evt--section01 .section--container .swiper--wrap .swiper-button-prev {
|
|
|
+ width: 50px;
|
|
|
+ background-image: url(../img/ico_arrow.png);
|
|
|
+ height: 90px;
|
|
|
+ top: 30%;
|
|
|
+ right: -100px;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .swiper-button-next::after, .evt--section01 .section--container .swiper--wrap .swiper-button-prev::after {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+.evt--section01 .section--container .swiper--wrap .swiper-button-prev {
|
|
|
+ transform: rotate(180deg);
|
|
|
+ left: -100px;
|
|
|
+}
|
|
|
+
|
|
|
+.evt--section02-1 {
|
|
|
+ position: relative;
|
|
|
+ overflow: hidden;
|
|
|
+ background: linear-gradient(to bottom, #004dee, #007ff6);
|
|
|
+ padding-top: 0px !important;
|
|
|
+}
|
|
|
+.evt--section02-1::before {
|
|
|
+ content: "";
|
|
|
+ background-image: url(../img/bg_4.png);
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-position: bottom;
|
|
|
+ display: inline-block;
|
|
|
+ top: 0;
|
|
|
+ z-index: 1;
|
|
|
+ left: 0;
|
|
|
+ position: absolute;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+.evt--section02-1 .cloud--img1 {
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ z-index: 10;
|
|
|
+ max-width: 20%;
|
|
|
+ top: 100px;
|
|
|
+ animation: cloudMoveLeftToRight 20s linear infinite;
|
|
|
+}
|
|
|
+.evt--section02-1 .cloud--img2 {
|
|
|
+ position: absolute;
|
|
|
+ right: 0;
|
|
|
+ z-index: 10;
|
|
|
+ max-width: 30%;
|
|
|
+ top: 50px;
|
|
|
+ animation: cloudMoveLeftToRight 30s linear infinite;
|
|
|
+}
|
|
|
+.evt--section02-1 .section--container {
|
|
|
+ max-width: 1920px;
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+.evt--section02-1 .section--container .evt--1 {
|
|
|
+ padding: 100px 0 130px;
|
|
|
+ position: relative;
|
|
|
+ background-position: bottom;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ z-index: 10;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+.evt--section02-1 .section--container .evt--1 h2 {
|
|
|
+ max-width: 682px;
|
|
|
+ width: 70%;
|
|
|
+}
|
|
|
+.evt--section02-1 .section--container .evt--1 .bg1 {
|
|
|
+ position: absolute;
|
|
|
+ left: 15%;
|
|
|
+ top: 30%;
|
|
|
+ animation: floating-diag-1 4s ease-in-out infinite alternate;
|
|
|
+}
|
|
|
+.evt--section02-1 .section--container .evt--1 .bg2 {
|
|
|
+ position: absolute;
|
|
|
+ right: 5%;
|
|
|
+ top: 30%;
|
|
|
+ animation: floating-diag-2 5s ease-in-out infinite alternate;
|
|
|
+}
|
|
|
+.evt--section02-1 .section--container .evt--1 .bg3 {
|
|
|
+ left: 7%;
|
|
|
+ bottom: 25%;
|
|
|
+ position: absolute;
|
|
|
+ animation: floating-diag-3 4.5s ease-in-out infinite alternate;
|
|
|
+}
|
|
|
+.evt--section02-1 .section--container .evt--1 .bg4 {
|
|
|
+ position: absolute;
|
|
|
+ bottom: 25%;
|
|
|
+ right: 5%;
|
|
|
+ animation: floating-diag-4 6s ease-in-out infinite alternate;
|
|
|
+}
|
|
|
+.evt--section02-1 .section--container .evt--1 .evt--box {
|
|
|
+ margin-top: 50px;
|
|
|
+ font-weight: 600;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 45px;
|
|
|
+ font-family: "Pretendard Variable";
|
|
|
+ color: #ffffff;
|
|
|
+ line-height: 1.2;
|
|
|
+}
|
|
|
+.evt--section02-1 .section--container .evt--circle {
|
|
|
+ font-family: "Pretendard Variable";
|
|
|
+ font-weight: 800;
|
|
|
+ font-size: 30px;
|
|
|
+ position: relative;
|
|
|
+ z-index: 30;
|
|
|
+ padding: 20px 40px;
|
|
|
+ background-color: #00175f;
|
|
|
+ color: #ffffff;
|
|
|
+ border-radius: 50%;
|
|
|
+ margin-bottom: 50px;
|
|
|
+ display: inline-block;
|
|
|
+}
|
|
|
+.evt--section02-1 .section--container h3 {
|
|
|
+ color: #ffffff;
|
|
|
+ font-weight: 700;
|
|
|
+ margin-bottom: 0;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 56px;
|
|
|
+ font-family: "Pretendard Variable";
|
|
|
+}
|
|
|
+
|
|
|
+.evt--section02-2 {
|
|
|
+ background-color: #007ff6;
|
|
|
+ position: relative;
|
|
|
+ overflow: hidden;
|
|
|
+ padding-top: 0px !important;
|
|
|
+}
|
|
|
+.evt--section02-2 .bg1 {
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ z-index: 2;
|
|
|
+ bottom: 20%;
|
|
|
+ max-width: 575px;
|
|
|
+ width: 40%;
|
|
|
+}
|
|
|
+.evt--section02-2 .bg2 {
|
|
|
+ max-width: 690px;
|
|
|
+ width: 40%;
|
|
|
+ position: absolute;
|
|
|
+ right: 0;
|
|
|
+ z-index: 2;
|
|
|
+ bottom: 10%;
|
|
|
+}
|
|
|
+.evt--section02-2::after {
|
|
|
+ content: "";
|
|
|
+ display: inline-block;
|
|
|
+ bottom: 0;
|
|
|
+ z-index: 1;
|
|
|
+ left: 0;
|
|
|
+ position: absolute;
|
|
|
+ background: linear-gradient(to bottom, #007ff6, #004dee);
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container {
|
|
|
+ max-width: 1500px;
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--circle {
|
|
|
+ font-family: "Pretendard Variable";
|
|
|
+ font-weight: 800;
|
|
|
+ font-size: 30px;
|
|
|
+ padding: 20px 40px;
|
|
|
+ background-color: #00175f;
|
|
|
+ color: #ffffff;
|
|
|
+ border-radius: 50%;
|
|
|
+ margin-bottom: 50px;
|
|
|
+ display: inline-block;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container h3 {
|
|
|
+ color: #ffffff;
|
|
|
+ font-weight: 700;
|
|
|
+ font-size: 56px;
|
|
|
+ font-family: "Pretendard Variable";
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 {
|
|
|
+ padding: 120px 0 130px;
|
|
|
+ position: relative;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ z-index: 20;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 h2 {
|
|
|
+ max-width: 789px;
|
|
|
+ width: 90%;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 h3 {
|
|
|
+ text-align: center;
|
|
|
+ margin-bottom: 30px;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .evt--box {
|
|
|
+ margin-top: 60px;
|
|
|
+ margin-bottom: 70px;
|
|
|
+ border-radius: 25px;
|
|
|
+ background-color: rgba(0, 152, 249, 0.4);
|
|
|
+ box-shadow: 0px 2px 9.5px 0.5px rgba(0, 0, 0, 0.23);
|
|
|
+ font-weight: 600;
|
|
|
+ padding: 75px 90px;
|
|
|
+ font-size: 36px;
|
|
|
+ font-family: "Pretendard Variable";
|
|
|
+ color: #ffffff;
|
|
|
+ line-height: 1.2;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ gap: 25px;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .evt--box li {
|
|
|
+ list-style: none;
|
|
|
+ font-size: 36px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ width: 100%;
|
|
|
+ font-weight: 400;
|
|
|
+ gap: 25px;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .evt--box li .circle {
|
|
|
+ padding: 10px 40px;
|
|
|
+ width: 168px;
|
|
|
+ display: inline-block;
|
|
|
+ height: 60px;
|
|
|
+ border-radius: 30px;
|
|
|
+ background-color: #00A2FB;
|
|
|
+ text-align: justify;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .evt--box li .circle::after {
|
|
|
+ content: "";
|
|
|
+ display: inline-block;
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .evt--box2 {
|
|
|
+ max-width: 470px;
|
|
|
+ width: 60%;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .evt--btn {
|
|
|
+ border-style: solid;
|
|
|
+ border-width: 3px;
|
|
|
+ border-color: rgb(255, 255, 255);
|
|
|
+ border-radius: 50px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ background-color: #00175f;
|
|
|
+ box-shadow: 0px 15px 16px 0px rgba(0, 0, 0, 0.14);
|
|
|
+ max-width: 416px;
|
|
|
+ width: 100%;
|
|
|
+ height: 95px;
|
|
|
+ font-family: "Pretendard Variable";
|
|
|
+ font-size: 40px;
|
|
|
+ font-weight: 800;
|
|
|
+ text-decoration: none;
|
|
|
+ color: #ffffff;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .bob01 {
|
|
|
+ width: 210px;
|
|
|
+ height: 214px;
|
|
|
+ background: url(../img/bob_01.png) no-repeat center;
|
|
|
+ animation: bubbleFloat 3s ease-in-out infinite alternate;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .bob02 {
|
|
|
+ width: 225px;
|
|
|
+ height: 211px;
|
|
|
+ background: url(../img/bob_02.png) no-repeat center;
|
|
|
+ animation: bubbleFloat 3s ease-in-out infinite alternate;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .bob03 {
|
|
|
+ width: 417px;
|
|
|
+ height: 403px;
|
|
|
+ background: url(../img/bob_03.png) no-repeat center;
|
|
|
+ animation: bubbleFloat 3s ease-in-out infinite alternate;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .bob04 {
|
|
|
+ width: 139px;
|
|
|
+ height: 140px;
|
|
|
+ background: url(../img/bob_04.png) no-repeat center;
|
|
|
+ animation: bubbleFloat 3s ease-in-out infinite alternate;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .bob05 {
|
|
|
+ width: 248px;
|
|
|
+ height: 211px;
|
|
|
+ background: url(../img/bob_05.png) no-repeat center;
|
|
|
+ animation: bubbleFloat 3s ease-in-out infinite alternate;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .bob06 {
|
|
|
+ width: 409px;
|
|
|
+ height: 394px;
|
|
|
+ background: url(../img/bob_06.png) no-repeat center;
|
|
|
+ animation: bubbleFloat 3s ease-in-out infinite alternate;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .bob07 {
|
|
|
+ width: 220px;
|
|
|
+ height: 211px;
|
|
|
+ background: url(../img/bob_07.png) no-repeat center;
|
|
|
+ animation: bubbleFloat 3s ease-in-out infinite alternate;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .bob08 {
|
|
|
+ width: 58px;
|
|
|
+ height: 53px;
|
|
|
+ background: url(../img/bob_08.png) no-repeat center;
|
|
|
+ animation: bubbleFloat 3s ease-in-out infinite alternate;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .bob09 {
|
|
|
+ width: 90px;
|
|
|
+ height: 90px;
|
|
|
+ background: url(../img/bob_09.png) no-repeat center;
|
|
|
+ animation: bubbleFloat 3s ease-in-out infinite alternate;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .bob10 {
|
|
|
+ width: 152px;
|
|
|
+ height: 141px;
|
|
|
+ background: url(../img/bob_10.png) no-repeat center;
|
|
|
+ animation: bubbleFloat 3s ease-in-out infinite alternate;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .bob--wrap01 {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ width: 210px;
|
|
|
+ height: 214px;
|
|
|
+ margin-left: 712px;
|
|
|
+ margin-top: -601px;
|
|
|
+ animation: bobUp 2.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .bob--wrap02 {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ width: 225px;
|
|
|
+ height: 211px;
|
|
|
+ margin-left: 759px;
|
|
|
+ margin-top: -153px;
|
|
|
+ animation: bobUp 1.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .bob--wrap03 {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ margin-left: 568px;
|
|
|
+ margin-top: 169px;
|
|
|
+ animation: bobUp 5.5s cubic-bezier(0.22, 1, 0.36, 1) infinite;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .bob--wrap04 {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ width: 139px;
|
|
|
+ height: 140px;
|
|
|
+ margin-left: -692px;
|
|
|
+ margin-top: -579px;
|
|
|
+ animation: bobUp 4.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .bob--wrap05 {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ width: 248px;
|
|
|
+ height: 211px;
|
|
|
+ margin-left: -832px;
|
|
|
+ margin-top: -216px;
|
|
|
+ animation: bobUp 3.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .bob--wrap06 {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ width: 409px;
|
|
|
+ height: 394px;
|
|
|
+ margin-left: -1012px;
|
|
|
+ margin-top: -19px;
|
|
|
+ animation: bobUp 4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .bob--wrap07 {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ width: 220px;
|
|
|
+ height: 211px;
|
|
|
+ margin-left: -682px;
|
|
|
+ margin-top: 372px;
|
|
|
+ animation: bobUp 3.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .bob--wrap08 {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ width: 58px;
|
|
|
+ height: 53px;
|
|
|
+ margin-left: -620px;
|
|
|
+ margin-top: 61px;
|
|
|
+ animation: bobUp 6.5s cubic-bezier(0.22, 1, 0.36, 1) infinite;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .bob--wrap09 {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ width: 90px;
|
|
|
+ height: 90px;
|
|
|
+ margin-left: 324px;
|
|
|
+ margin-top: 586px;
|
|
|
+ animation: bobUp 7.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .bob--wrap10 {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ width: 152px;
|
|
|
+ height: 141px;
|
|
|
+ margin-left: -440px;
|
|
|
+ margin-top: 386px;
|
|
|
+ animation: bobUp 4.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .tok01 {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ width: 66px;
|
|
|
+ height: 66px;
|
|
|
+ background: url(../img/tok_01.png) no-repeat center;
|
|
|
+ margin-top: -281px;
|
|
|
+ margin-left: -857px;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .tok02 {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ width: 44px;
|
|
|
+ height: 44px;
|
|
|
+ background: url(../img/tok_02.png) no-repeat center;
|
|
|
+ margin-top: -431px;
|
|
|
+ margin-left: -566px;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .tok03 {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ width: 51px;
|
|
|
+ height: 51px;
|
|
|
+ background: url(../img/tok_03.png) no-repeat center;
|
|
|
+ margin-top: 210px;
|
|
|
+ margin-left: 592px;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .tok04 {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ width: 56px;
|
|
|
+ height: 56px;
|
|
|
+ background: url(../img/tok_04.png) no-repeat center;
|
|
|
+ margin-top: -355px;
|
|
|
+ margin-left: 753px;
|
|
|
+}
|
|
|
+.evt--section02-2 .section--container .evt--2 .tok05 {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ width: 66px;
|
|
|
+ height: 66px;
|
|
|
+ background: url(../img/tok_05.png) no-repeat center;
|
|
|
+ margin-top: -475px;
|
|
|
+ margin-left: 590px;
|
|
|
+}
|
|
|
+
|
|
|
+.evt--section03 {
|
|
|
+ overflow: hidden;
|
|
|
+ background: linear-gradient(to bottom, #5DBBFF 0%, #00A8FF 50%, #5DBBFF 100%);
|
|
|
+ padding: 150px 0 150px;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.evt--section03::before {
|
|
|
+ content: "";
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ right: 0;
|
|
|
+ background-position: top;
|
|
|
+ z-index: 0;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ display: inline-block;
|
|
|
+ background-image: url(../img/bg_color_2.png);
|
|
|
+}
|
|
|
+.evt--section03::after {
|
|
|
+ content: "";
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ position: absolute;
|
|
|
+ bottom: 0;
|
|
|
+ left: 0;
|
|
|
+ background-position: bottom;
|
|
|
+ z-index: 0;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ display: inline-block;
|
|
|
+ background-image: url(../img/bg_color_1.png);
|
|
|
+}
|
|
|
+.evt--section03 .section--container {
|
|
|
+ max-width: 1280px;
|
|
|
+ z-index: 10;
|
|
|
+ position: relative;
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .section--title {
|
|
|
+ text-align: center;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ margin-bottom: 80px;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .section--title h3 {
|
|
|
+ max-width: 750px;
|
|
|
+ width: 60%;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .section--title h2 {
|
|
|
+ max-width: 945px;
|
|
|
+ width: 70%;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .section--title .circle {
|
|
|
+ margin-top: 20px;
|
|
|
+ max-width: 832px;
|
|
|
+ width: 70%;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--wrap {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ margin-bottom: 120px;
|
|
|
+ gap: 140px;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--wrap .promotion {
|
|
|
+ width: 400px;
|
|
|
+ height: 580px;
|
|
|
+ background-image: url(../img/img_bg_9.png);
|
|
|
+ background-size: 100%;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ flex-direction: column;
|
|
|
+ color: #ffffff;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--wrap .promotion h4 {
|
|
|
+ font-family: "Pretendard Variable";
|
|
|
+ font-size: 56px;
|
|
|
+ font-weight: 700;
|
|
|
+ line-height: 210px;
|
|
|
+ margin-bottom: 0;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--wrap .promotion p {
|
|
|
+ font-family: "gmarketSans";
|
|
|
+ font-size: 45px;
|
|
|
+ margin-bottom: 0;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--wrap .promotion h5 {
|
|
|
+ line-height: 1.1;
|
|
|
+ font-family: "gmarketSans";
|
|
|
+ font-size: 86px;
|
|
|
+ font-weight: 800;
|
|
|
+ margin-bottom: 0;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--wrap .promotion h5 span {
|
|
|
+ font-size: 44px;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--detail--wrap {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ gap: 80px;
|
|
|
+ margin-bottom: 460px;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--detail--wrap .detail {
|
|
|
+ color: #373737;
|
|
|
+ background-color: #fff;
|
|
|
+ border: 3px solid black;
|
|
|
+ padding: 70px;
|
|
|
+ border-radius: 68px;
|
|
|
+ z-index: 3;
|
|
|
+ position: relative;
|
|
|
+ display: flex;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--detail--wrap .detail:nth-child(1)::before {
|
|
|
+ content: "";
|
|
|
+ position: absolute;
|
|
|
+ display: inline-block;
|
|
|
+ width: 318px;
|
|
|
+ height: 314px;
|
|
|
+ top: -91px;
|
|
|
+ left: -48px;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-image: url(../img/bg_wave_3.png);
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--detail--wrap .detail:nth-child(2)::before {
|
|
|
+ content: "";
|
|
|
+ position: absolute;
|
|
|
+ display: inline-block;
|
|
|
+ width: 286px;
|
|
|
+ right: -125px;
|
|
|
+ top: -36px;
|
|
|
+ z-index: 10;
|
|
|
+ height: 380px;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-image: url(../img/bg_wave_4.png);
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--detail--wrap .detail .detail--l {
|
|
|
+ width: 70%;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--detail--wrap .detail .detail--l > span {
|
|
|
+ font-size: 44px;
|
|
|
+ font-weight: 700;
|
|
|
+ display: inline-block;
|
|
|
+ font-family: "Pretendard Variable";
|
|
|
+ text-decoration: underline;
|
|
|
+ margin-bottom: 40px;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--detail--wrap .detail .detail--l > h5 {
|
|
|
+ font-family: "Pretendard Variable";
|
|
|
+ font-size: 54px;
|
|
|
+ font-weight: 900;
|
|
|
+ margin-bottom: 40px;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--detail--wrap .detail .detail--l > h5 > span {
|
|
|
+ color: #6d21ed;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--detail--wrap .detail .detail--l > ul li {
|
|
|
+ list-style: disc !important;
|
|
|
+ line-height: 1.2;
|
|
|
+ font-family: "Pretendard Variable";
|
|
|
+ font-weight: 500;
|
|
|
+ font-size: 38px;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--detail--wrap .detail .detail--r {
|
|
|
+ width: 30%;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: flex-end;
|
|
|
+ justify-content: flex-end;
|
|
|
+ text-align: right;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--detail--wrap .detail .detail--r > span {
|
|
|
+ box-shadow: inset -10px -10px 20px rgba(0, 0, 0, 0.4);
|
|
|
+ background: linear-gradient(135deg, #8324ff, #5a3dfd, #0a5aff);
|
|
|
+ font-family: "Pretendard Variable";
|
|
|
+ font-size: 44px;
|
|
|
+ font-weight: 800;
|
|
|
+ width: 130px;
|
|
|
+ height: 140px;
|
|
|
+ line-height: 1.2;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ right: 100px;
|
|
|
+ top: 0;
|
|
|
+ justify-content: center;
|
|
|
+ color: #ffffff;
|
|
|
+ position: absolute;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--detail--wrap .detail .detail--r > p {
|
|
|
+ font-size: 28px;
|
|
|
+ font-family: "Pretendard Variable";
|
|
|
+ font-weight: 500;
|
|
|
+ margin-bottom: 10px;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--detail--wrap .detail .detail--r .before--price {
|
|
|
+ font-size: 44px;
|
|
|
+ font-weight: 700;
|
|
|
+ font-family: "Pretendard Variable";
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--detail--wrap .detail .detail--r .before--price::after {
|
|
|
+ content: "";
|
|
|
+ display: inline-block;
|
|
|
+ width: 267px;
|
|
|
+ height: 62px;
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: -30px;
|
|
|
+ background-image: url(../img/ico_arrow2.png);
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--detail--wrap .detail .detail--r .after--price {
|
|
|
+ font-family: "Pretendard Variable";
|
|
|
+ font-size: 66px;
|
|
|
+ color: #6d21ed;
|
|
|
+ font-weight: 900;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--detail--wrap .detail--plus {
|
|
|
+ z-index: 2;
|
|
|
+ position: absolute;
|
|
|
+ font-size: 38px;
|
|
|
+ top: calc(100% - 55px);
|
|
|
+ width: 100%;
|
|
|
+ border-bottom-left-radius: 50px;
|
|
|
+ border-bottom-right-radius: 50px;
|
|
|
+ font-family: "Pretendard Variable";
|
|
|
+ background-color: #9EC3FE;
|
|
|
+ padding: 100px 60px 60px;
|
|
|
+ font-weight: 500;
|
|
|
+ margin-bottom: 0;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--detail--wrap .detail--plus li {
|
|
|
+ list-style: none;
|
|
|
+ position: relative;
|
|
|
+ padding-left: 30px;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--detail--wrap .detail--plus li::before {
|
|
|
+ top: 0px;
|
|
|
+ left: 0px;
|
|
|
+ position: absolute;
|
|
|
+ content: "*";
|
|
|
+}
|
|
|
+.evt--section03 .section--container .promotion--detail--wrap .detail--plus strong {
|
|
|
+ font-weight: 800;
|
|
|
+ text-decoration: underline;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ position: relative;
|
|
|
+ z-index: 10;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .count--txt {
|
|
|
+ display: flex;
|
|
|
+ align-items: flex-end;
|
|
|
+ justify-content: center;
|
|
|
+ gap: 20px;
|
|
|
+ margin-bottom: 90px;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .count--txt .img--wrap {
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .count--txt .img--wrap .wch--l {
|
|
|
+ position: absolute;
|
|
|
+ top: 0px;
|
|
|
+ left: 0px;
|
|
|
+ width: 139px;
|
|
|
+ height: 122px;
|
|
|
+ background: url(../img/wch_l.png) no-repeat center;
|
|
|
+ animation: bellRing 1.2s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
|
|
|
+ transform-origin: 50% 80%;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .count--txt .img--wrap .wch--r {
|
|
|
+ position: absolute;
|
|
|
+ top: 0px;
|
|
|
+ right: 0px;
|
|
|
+ width: 159px;
|
|
|
+ height: 121px;
|
|
|
+ background: url(../img/wch_r.png) no-repeat center;
|
|
|
+ animation: bellRing 1.2s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
|
|
|
+ transform-origin: 50% 80%;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .count--txt .img--wrap::before {
|
|
|
+ content: "";
|
|
|
+ display: inline-block;
|
|
|
+ width: 144px;
|
|
|
+ height: 80px;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: 100%;
|
|
|
+ left: -40%;
|
|
|
+ top: 30px;
|
|
|
+ position: absolute;
|
|
|
+ background-image: url(../img/img_15_bg1.png);
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .count--txt .img--wrap::after {
|
|
|
+ content: "";
|
|
|
+ display: inline-block;
|
|
|
+ width: 242px;
|
|
|
+ height: 177px;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: 100%;
|
|
|
+ right: -70%;
|
|
|
+ bottom: 100px;
|
|
|
+ position: absolute;
|
|
|
+ background-image: url(../img/img_15_bg2.png);
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .count--txt > p {
|
|
|
+ color: #ffffff;
|
|
|
+ font-family: "gmarketSans";
|
|
|
+ text-align: center;
|
|
|
+ font-size: 46px;
|
|
|
+ font-weight: 800;
|
|
|
+ margin-bottom: 0;
|
|
|
+ text-align: center;
|
|
|
+ text-shadow: 0px 3px 7px rgba(0, 0, 0, 0.35);
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .count--num {
|
|
|
+ display: flex;
|
|
|
+ font-family: "gmarketSans";
|
|
|
+ gap: 10px;
|
|
|
+ margin-bottom: 140px;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .count--num .number {
|
|
|
+ font-family: "gmarketSans";
|
|
|
+ position: relative;
|
|
|
+ display: inline-block;
|
|
|
+ font-size: 120px;
|
|
|
+ color: #ffffff;
|
|
|
+ width: 140px;
|
|
|
+ font-weight: 800;
|
|
|
+ height: 210px;
|
|
|
+ border-radius: 20%;
|
|
|
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .count--num .number:nth-child(4) {
|
|
|
+ margin-left: 80px;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .count--num .number:nth-child(5) {
|
|
|
+ margin-right: 80px;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .count--num .number span {
|
|
|
+ display: inline-block;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .count--num::before {
|
|
|
+ content: "";
|
|
|
+ width: 210px;
|
|
|
+ left: -300px;
|
|
|
+ top: calc(50% - 500px);
|
|
|
+ height: 1000px;
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ transform: translateY(-50%);
|
|
|
+ left: -154px;
|
|
|
+ width: 62px;
|
|
|
+ height: 266px;
|
|
|
+ background: url(../img/bbl_01.png) no-repeat center;
|
|
|
+ animation: shakeX 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .count--num .bbl--eft02 {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ transform: translateY(-50%);
|
|
|
+ left: -226px;
|
|
|
+ width: 106px;
|
|
|
+ height: 427px;
|
|
|
+ background: url(../img/bbl_02.png) no-repeat center;
|
|
|
+ animation: shakeX 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .count--num .bbl--eft03 {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ transform: translateY(-50%);
|
|
|
+ left: -303px;
|
|
|
+ width: 146px;
|
|
|
+ height: 550px;
|
|
|
+ background: url(../img/bbl_03.png) no-repeat center;
|
|
|
+ animation: shakeX 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .count--num .bbl--eft04 {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ transform: rotate(180deg) translateY(-50%);
|
|
|
+ transform-origin: top;
|
|
|
+ right: -154px;
|
|
|
+ width: 62px;
|
|
|
+ height: 266px;
|
|
|
+ background: url(../img/bbl_01.png) no-repeat center;
|
|
|
+ animation: shakeX2 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .count--num .bbl--eft05 {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ transform: rotate(180deg) translateY(-50%);
|
|
|
+ transform-origin: top;
|
|
|
+ right: -226px;
|
|
|
+ width: 106px;
|
|
|
+ height: 427px;
|
|
|
+ background: url(../img/bbl_02.png) no-repeat center;
|
|
|
+ animation: shakeX2 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .count--num .bbl--eft06 {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ transform: rotate(180deg) translateY(-50%);
|
|
|
+ transform-origin: top;
|
|
|
+ right: -303px;
|
|
|
+ width: 146px;
|
|
|
+ height: 550px;
|
|
|
+ background: url(../img/bbl_03.png) no-repeat center;
|
|
|
+ animation: shakeX2 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .count--num div {
|
|
|
+ display: flex;
|
|
|
+ gap: 30px;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .count--num div span {
|
|
|
+ font-size: 120px;
|
|
|
+ color: #ffffff;
|
|
|
+ background-color: #7F1BF2;
|
|
|
+ width: 140px;
|
|
|
+ font-weight: 800;
|
|
|
+ height: 210px;
|
|
|
+ display: inline-block;
|
|
|
+ text-align: center;
|
|
|
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
|
|
|
+ border-radius: 30px;
|
|
|
+ position: relative;
|
|
|
+ z-index: 30;
|
|
|
+ perspective: 600px;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .count--num div span.flip {
|
|
|
+ animation: flipDown 0.5s ease-in-out;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .count--num div span::before {
|
|
|
+ content: "";
|
|
|
+ width: 100%;
|
|
|
+ z-index: -1;
|
|
|
+ display: inline-block;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
+ border-top-left-radius: 30px;
|
|
|
+ border-top-right-radius: 30px;
|
|
|
+ height: 50%;
|
|
|
+ background-color: #8b2ef4;
|
|
|
+ position: absolute;
|
|
|
+}
|
|
|
+.evt--section03 .section--container .count--wrap .evt--btn {
|
|
|
+ border-style: solid;
|
|
|
+ border-width: 3px;
|
|
|
+ border-color: rgb(255, 255, 255);
|
|
|
+ border-radius: 50px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ z-index: 10;
|
|
|
+ justify-content: center;
|
|
|
+ background-color: #00175f;
|
|
|
+ box-shadow: 0px 15px 16px 0px rgba(0, 0, 0, 0.14);
|
|
|
+ max-width: 416px;
|
|
|
+ width: 100%;
|
|
|
+ height: 95px;
|
|
|
+ font-family: "Pretendard Variable";
|
|
|
+ font-size: 40px;
|
|
|
+ font-weight: 800;
|
|
|
+ text-decoration: none;
|
|
|
+ color: #ffffff;
|
|
|
+}
|
|
|
+
|
|
|
+/*===============================================
|
|
|
+에니메이션
|
|
|
+===============================================*/
|
|
|
+.floating {
|
|
|
+ animation: floating 3s ease-in-out infinite;
|
|
|
+}
|
|
|
+
|
|
|
+@keyframes bobUp {
|
|
|
+ 0% {
|
|
|
+ transform: translateY(120vh);
|
|
|
+ opacity: 0;
|
|
|
+ }
|
|
|
+ 80% {
|
|
|
+ opacity: 1;
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ transform: translateY(0);
|
|
|
+ opacity: 1;
|
|
|
+ }
|
|
|
+}
|
|
|
+@keyframes bubbleFloat {
|
|
|
+ 0% {
|
|
|
+ transform: translateY(0) scale(1);
|
|
|
+ }
|
|
|
+ 50% {
|
|
|
+ transform: translateY(-12px) scale(1.05);
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ transform: translateY(0) scale(1);
|
|
|
+ }
|
|
|
+}
|
|
|
+@keyframes floating {
|
|
|
+ 0% {
|
|
|
+ transform: translateY(0px);
|
|
|
+ }
|
|
|
+ 50% {
|
|
|
+ transform: translateY(-20px);
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ transform: translateY(0px);
|
|
|
+ }
|
|
|
+}
|
|
|
+@keyframes fadeUpLogo {
|
|
|
+ to {
|
|
|
+ opacity: 1;
|
|
|
+ transform: translateY(0);
|
|
|
+ }
|
|
|
+}
|
|
|
+@keyframes fadeInRightH1 {
|
|
|
+ to {
|
|
|
+ opacity: 1;
|
|
|
+ transform: translateX(0);
|
|
|
+ }
|
|
|
+}
|
|
|
+@keyframes fadeInLeftH2 {
|
|
|
+ to {
|
|
|
+ opacity: 1;
|
|
|
+ transform: translateX(0);
|
|
|
+ }
|
|
|
+}
|
|
|
+@keyframes fadeUpH3 {
|
|
|
+ to {
|
|
|
+ opacity: 1;
|
|
|
+ transform: translateY(0);
|
|
|
+ }
|
|
|
+}
|
|
|
+@keyframes waveInRight {
|
|
|
+ 0% {
|
|
|
+ opacity: 0;
|
|
|
+ transform: translateX(-100px);
|
|
|
+ }
|
|
|
+ 60% {
|
|
|
+ opacity: 1;
|
|
|
+ transform: translateX(20px);
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ opacity: 1;
|
|
|
+ transform: translateX(0);
|
|
|
+ }
|
|
|
+}
|
|
|
+@keyframes cloudMoveLeftToRight {
|
|
|
+ 0% {
|
|
|
+ opacity: 0;
|
|
|
+ transform: translateX(-100px);
|
|
|
+ }
|
|
|
+ 10% {
|
|
|
+ opacity: 1;
|
|
|
+ transform: translateX(0px);
|
|
|
+ }
|
|
|
+ 90% {
|
|
|
+ opacity: 1;
|
|
|
+ transform: translateX(300px);
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ opacity: 0;
|
|
|
+ transform: translateX(400px);
|
|
|
+ }
|
|
|
+}
|
|
|
+@keyframes floating-diag-1 {
|
|
|
+ 0% {
|
|
|
+ transform: translate(0, 0);
|
|
|
+ }
|
|
|
+ 20% {
|
|
|
+ transform: translate(-10px, 10px);
|
|
|
+ }
|
|
|
+ 40% {
|
|
|
+ transform: translate(10px, -10px);
|
|
|
+ }
|
|
|
+ 60% {
|
|
|
+ transform: translate(-10px, -10px);
|
|
|
+ }
|
|
|
+ 80% {
|
|
|
+ transform: translate(10px, 10px);
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ transform: translate(0, 0);
|
|
|
+ }
|
|
|
+}
|
|
|
+@keyframes floating-diag-2 {
|
|
|
+ 0% {
|
|
|
+ transform: translate(0, 0);
|
|
|
+ }
|
|
|
+ 25% {
|
|
|
+ transform: translate(12px, -8px);
|
|
|
+ }
|
|
|
+ 50% {
|
|
|
+ transform: translate(-12px, 8px);
|
|
|
+ }
|
|
|
+ 75% {
|
|
|
+ transform: translate(8px, 12px);
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ transform: translate(0, 0);
|
|
|
+ }
|
|
|
+}
|
|
|
+@keyframes floating-diag-3 {
|
|
|
+ 0% {
|
|
|
+ transform: translate(0, 0);
|
|
|
+ }
|
|
|
+ 30% {
|
|
|
+ transform: translate(-8px, 12px);
|
|
|
+ }
|
|
|
+ 60% {
|
|
|
+ transform: translate(8px, -12px);
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ transform: translate(0, 0);
|
|
|
+ }
|
|
|
+}
|
|
|
+@keyframes floating-diag-4 {
|
|
|
+ 0% {
|
|
|
+ transform: translate(0, 0);
|
|
|
+ }
|
|
|
+ 20% {
|
|
|
+ transform: translate(10px, 10px);
|
|
|
+ }
|
|
|
+ 40% {
|
|
|
+ transform: translate(-10px, -10px);
|
|
|
+ }
|
|
|
+ 60% {
|
|
|
+ transform: translate(10px, -10px);
|
|
|
+ }
|
|
|
+ 80% {
|
|
|
+ transform: translate(-10px, 10px);
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ transform: translate(0, 0);
|
|
|
+ }
|
|
|
+}
|
|
|
+@keyframes shakeX {
|
|
|
+ 0% {
|
|
|
+ transform: translateY(-50%) translateX(0);
|
|
|
+ }
|
|
|
+ 10%, 30%, 50%, 70%, 90% {
|
|
|
+ transform: translateY(-50%) translateX(-8px);
|
|
|
+ }
|
|
|
+ 20%, 40%, 60%, 80% {
|
|
|
+ transform: translateY(-50%) translateX(8px);
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ transform: translateY(-50%) translateX(0);
|
|
|
+ }
|
|
|
+}
|
|
|
+@keyframes shakeX2 {
|
|
|
+ 0% {
|
|
|
+ transform: rotate(180deg) translateY(-50%) translateX(0);
|
|
|
+ }
|
|
|
+ 10%, 30%, 50%, 70%, 90% {
|
|
|
+ transform: rotate(180deg) translateY(-50%) translateX(-8px);
|
|
|
+ }
|
|
|
+ 20%, 40%, 60%, 80% {
|
|
|
+ transform: rotate(180deg) translateY(-50%) translateX(8px);
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ transform: rotate(180deg) translateY(-50%) translateX(0);
|
|
|
+ }
|
|
|
+}
|
|
|
+@keyframes bellRing {
|
|
|
+ 0% {
|
|
|
+ transform: rotate(0deg);
|
|
|
+ }
|
|
|
+ 10% {
|
|
|
+ transform: rotate(-18deg);
|
|
|
+ }
|
|
|
+ 20% {
|
|
|
+ transform: rotate(16deg);
|
|
|
+ }
|
|
|
+ 30% {
|
|
|
+ transform: rotate(-12deg);
|
|
|
+ }
|
|
|
+ 40% {
|
|
|
+ transform: rotate(10deg);
|
|
|
+ }
|
|
|
+ 50% {
|
|
|
+ transform: rotate(-6deg);
|
|
|
+ }
|
|
|
+ 60% {
|
|
|
+ transform: rotate(4deg);
|
|
|
+ }
|
|
|
+ 70% {
|
|
|
+ transform: rotate(-2deg);
|
|
|
+ }
|
|
|
+ 80%, 100% {
|
|
|
+ transform: rotate(0deg);
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 1660px) {
|
|
|
+ .evt--section01 .section--container .swiper--wrap .swiper-button-next,
|
|
|
+ .evt--section01 .section--container .swiper--wrap .swiper-button-prev {
|
|
|
+ width: 80px;
|
|
|
+ height: 80px;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: cover;
|
|
|
+ background-image: url(../img/ico_arrow3.svg);
|
|
|
+ right: -10px;
|
|
|
+ top: calc(30% + 40px);
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .swiper--wrap .swiper-button-prev {
|
|
|
+ left: -10px;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 1480px) {
|
|
|
+ .section--container {
|
|
|
+ padding: 0 20px;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .swiper--wrap .slide--desc {
|
|
|
+ padding: 25px 50px !important;
|
|
|
+ min-height: 300px;
|
|
|
+ height: auto;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .swiper--wrap .slide--desc h4 {
|
|
|
+ font-size: 32px;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .swiper--wrap .slide--desc h4 span {
|
|
|
+ font-size: 20px;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .swiper--wrap .slide--desc p {
|
|
|
+ font-size: 18px;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .bg1 {
|
|
|
+ left: 0;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .bg1 img {
|
|
|
+ width: 80%;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .bg2 {
|
|
|
+ right: -10%;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .bg2 img {
|
|
|
+ width: 80%;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .bg3 {
|
|
|
+ left: 0;
|
|
|
+ bottom: 45%;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .bg3 img {
|
|
|
+ width: 80%;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .bg4 {
|
|
|
+ bottom: 40%;
|
|
|
+ right: -10%;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .bg4 img {
|
|
|
+ width: 80%;
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 1200px) {
|
|
|
+ .evt--section01 .section--container .swiper--wrap .swiper--tab--wrap .tab--btn {
|
|
|
+ font-size: 18px;
|
|
|
+ height: 68px;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container h3 {
|
|
|
+ font-size: 36px;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .bg1 img {
|
|
|
+ width: 50%;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .bg2 {
|
|
|
+ top: 40%;
|
|
|
+ right: -30%;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .bg2 img {
|
|
|
+ width: 50%;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .bg3 img {
|
|
|
+ width: 50%;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .bg4 {
|
|
|
+ right: -240px;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .bg4 img {
|
|
|
+ width: 50%;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .bg1 {
|
|
|
+ bottom: auto;
|
|
|
+ top: 5%;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .bg2 {
|
|
|
+ bottom: auto;
|
|
|
+ top: 5%;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container h3 {
|
|
|
+ font-size: 36px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 h2 {
|
|
|
+ max-width: 551px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .evt--box {
|
|
|
+ padding: 30px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .evt--box li {
|
|
|
+ font-size: 30px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .bob--wrap01 {
|
|
|
+ margin-left: 402px;
|
|
|
+ margin-top: -441px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .bob--wrap02 {
|
|
|
+ margin-left: 452px;
|
|
|
+ margin-top: -231px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .bob--wrap03 {
|
|
|
+ margin-left: 262px;
|
|
|
+ margin-top: -131px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .bob--wrap04 {
|
|
|
+ margin-left: -498px;
|
|
|
+ margin-top: -411px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .bob--wrap05 {
|
|
|
+ margin-left: -618px;
|
|
|
+ margin-top: -261px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .bob--wrap06 {
|
|
|
+ margin-left: -748px;
|
|
|
+ margin-top: -231px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .bob--wrap07 {
|
|
|
+ margin-left: -479px;
|
|
|
+ margin-top: -11px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .tok05 {
|
|
|
+ transform: scale(0.5);
|
|
|
+ margin-top: -335px;
|
|
|
+ margin-left: 370px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .tok04 {
|
|
|
+ transform: scale(0.5);
|
|
|
+ margin-top: -275px;
|
|
|
+ margin-left: 430px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .tok03 {
|
|
|
+ transform: scale(0.5);
|
|
|
+ margin-top: -45px;
|
|
|
+ margin-left: 338px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .tok02 {
|
|
|
+ transform: scale(0.5);
|
|
|
+ margin-top: -291px;
|
|
|
+ margin-left: -376px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .tok01 {
|
|
|
+ transform: scale(0.5);
|
|
|
+ margin-top: -191px;
|
|
|
+ margin-left: -606px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap {
|
|
|
+ gap: 40px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail {
|
|
|
+ padding: 50px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--l > span {
|
|
|
+ font-size: 32px;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--l > h5 {
|
|
|
+ font-size: 48px;
|
|
|
+ line-height: 1.4;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--l > ul {
|
|
|
+ padding-left: 24px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--l > ul li {
|
|
|
+ font-size: 24px;
|
|
|
+ line-height: 1.4;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--r > span {
|
|
|
+ right: 50px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--r > p {
|
|
|
+ font-size: 24px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--r .before--price {
|
|
|
+ font-size: 32px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--r .before--price::after {
|
|
|
+ transform: scaleX(-1);
|
|
|
+ left: auto;
|
|
|
+ right: -10px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--r .after--price {
|
|
|
+ font-size: 48px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail--plus {
|
|
|
+ font-size: 24px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail--plus li {
|
|
|
+ padding-left: 20px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .count--wrap > p {
|
|
|
+ font-size: 30px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .count--wrap .count--txt > p {
|
|
|
+ font-size: 30px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .count--wrap .count--num {
|
|
|
+ justify-content: center;
|
|
|
+ transform: scale(0.6s);
|
|
|
+ }
|
|
|
+ @keyframes bobUp {
|
|
|
+ 0% {
|
|
|
+ transform: translateY(120vh) scale(0.5);
|
|
|
+ opacity: 0;
|
|
|
+ }
|
|
|
+ 80% {
|
|
|
+ opacity: 1;
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ transform: translateY(0) scale(0.5);
|
|
|
+ opacity: 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 1000px) {
|
|
|
+ .evt--section01 .section--container .section--title .bg2 {
|
|
|
+ left: -140px;
|
|
|
+ bottom: -100px;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .section--title .bg2 img {
|
|
|
+ width: 80%;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .section--title .bg4 {
|
|
|
+ bottom: auto;
|
|
|
+ top: 0px;
|
|
|
+ right: -100px;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .section--title .bg4 img {
|
|
|
+ width: 80%;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .swiper--wrap .swiper--tab--wrap {
|
|
|
+ overflow-x: auto;
|
|
|
+ white-space: nowrap;
|
|
|
+ width: auto;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .swiper--wrap .swiper--tab--wrap .tab--btn {
|
|
|
+ width: -moz-fit-content;
|
|
|
+ width: fit-content;
|
|
|
+ height: auto;
|
|
|
+ padding: 15px 15px 10px;
|
|
|
+ flex-shrink: 0;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .swiper--wrap .swiper--tab--wrap .tab--btn:first-child::before {
|
|
|
+ font-size: 10px;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .swiper--wrap .swiper-pagination span {
|
|
|
+ width: 24px;
|
|
|
+ height: 24px;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .swiper--wrap .slide--desc {
|
|
|
+ padding: 25px 15px !important;
|
|
|
+ min-height: 240px;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .swiper--wrap .slide--desc h4 {
|
|
|
+ font-size: 24px;
|
|
|
+ margin-bottom: 15px;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .swiper--wrap .slide--desc h4 span {
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .swiper--wrap .slide--desc p {
|
|
|
+ margin-bottom: 15px;
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--wrap {
|
|
|
+ gap: 20px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--wrap .promotion h4 {
|
|
|
+ font-size: 32px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--wrap .promotion p {
|
|
|
+ font-size: 32px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--wrap .promotion h5 {
|
|
|
+ font-size: 72px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap {
|
|
|
+ margin-bottom: 240px;
|
|
|
+ gap: 20px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--l > span {
|
|
|
+ font-size: 24px;
|
|
|
+ margin-bottom: 15px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--l > h5 {
|
|
|
+ font-size: 36px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--l > ul li {
|
|
|
+ font-size: 18px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--r > span {
|
|
|
+ font-size: 24px;
|
|
|
+ width: 80px;
|
|
|
+ height: 90px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--r > p {
|
|
|
+ font-size: 18px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--r .before--price {
|
|
|
+ font-size: 24px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--r .before--price::after {
|
|
|
+ right: -10px;
|
|
|
+ height: 50px;
|
|
|
+ top: 15px;
|
|
|
+ background-size: cover;
|
|
|
+ width: 210px;
|
|
|
+ background-position: left;
|
|
|
+ transform: scaleX(1);
|
|
|
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='50' viewBox='0 0 88 20' fill='none'%3E%3Cpath d='M1 1V0.5H0.265087L0.534922 1.18358L1 1ZM8.5 20L9.34929 14.2893L3.97904 16.4091L8.5 20ZM87.5 1V0.5H1V1V1.5H87.5V1ZM1 1L0.534922 1.18358L6.38267 15.9979L6.84775 15.8143L7.31283 15.6307L1.46508 0.816417L1 1Z' fill='%23373737'/%3E%3C/svg%3E");
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--r .after--price {
|
|
|
+ font-size: 36px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail--plus {
|
|
|
+ padding: 80px 30px 30px;
|
|
|
+ font-size: 18px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .count--wrap .count--txt {
|
|
|
+ margin-bottom: 50px;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .count--wrap .count--txt .img--wrap {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .count--wrap .count--txt .img--wrap .wch--l {
|
|
|
+ top: 0px;
|
|
|
+ left: 0px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .count--wrap .count--txt .img--wrap .wch--r {
|
|
|
+ top: 0px;
|
|
|
+ right: 0px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .count--wrap .count--txt .img--wrap::before {
|
|
|
+ width: 70px;
|
|
|
+ top: 0px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .count--wrap .count--txt .img--wrap::after {
|
|
|
+ bottom: auto;
|
|
|
+ width: 100px;
|
|
|
+ right: -50%;
|
|
|
+ top: 50%;
|
|
|
+ transform: translateY(-50%);
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 950px) {
|
|
|
+ .evt--section03 .section--container .count--wrap .count--num {
|
|
|
+ transform: scale(0.6);
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 767px) {
|
|
|
+ .evt--section01 .section--container .section--title {
|
|
|
+ z-index: 3;
|
|
|
+ margin-bottom: 80px;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .section--title .bg2 {
|
|
|
+ left: -120px;
|
|
|
+ bottom: -160px;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .section--title .bg2 img {
|
|
|
+ width: 50%;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .section--title .bg4 {
|
|
|
+ right: -200px;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .section--title .bg4 img {
|
|
|
+ width: 60%;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .swiper--wrap .swiper-button-next,
|
|
|
+ .evt--section01 .section--container .swiper--wrap .swiper-button-prev {
|
|
|
+ width: 50px;
|
|
|
+ height: 50px;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .bg1 {
|
|
|
+ top: 8%;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .bg2 {
|
|
|
+ right: -320px;
|
|
|
+ top: 5%;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .bg3 {
|
|
|
+ bottom: auto;
|
|
|
+ top: 30%;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .bg4 {
|
|
|
+ bottom: auto;
|
|
|
+ right: -240px;
|
|
|
+ top: 35%;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .evt--circle {
|
|
|
+ font-size: 18px;
|
|
|
+ padding: 10px 20px;
|
|
|
+ margin-bottom: 30px;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 h3 {
|
|
|
+ font-size: 20px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .evt--box {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .evt--box li {
|
|
|
+ gap: 10px;
|
|
|
+ font-size: 18px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .evt--box li .circle {
|
|
|
+ padding: 10px 30px;
|
|
|
+ height: auto;
|
|
|
+ width: auto;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .evt--box li .circle::after {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .evt--circle {
|
|
|
+ font-size: 18px;
|
|
|
+ padding: 10px 20px;
|
|
|
+ margin-bottom: 30px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 h3 {
|
|
|
+ font-size: 20px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .evt--btn {
|
|
|
+ font-size: 24px;
|
|
|
+ height: 80px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .bob--wrap01 {
|
|
|
+ margin-left: 212px;
|
|
|
+ margin-top: -441px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .bob--wrap02 {
|
|
|
+ margin-left: 232px;
|
|
|
+ margin-top: -231px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .bob--wrap03 {
|
|
|
+ margin-left: 112px;
|
|
|
+ margin-top: -81px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .bob--wrap04 {
|
|
|
+ margin-left: -398px;
|
|
|
+ margin-top: -411px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .bob--wrap05 {
|
|
|
+ margin-left: -458px;
|
|
|
+ margin-top: -261px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .bob--wrap06 {
|
|
|
+ margin-left: -708px;
|
|
|
+ margin-top: -231px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .bob--wrap07 {
|
|
|
+ margin-left: -479px;
|
|
|
+ margin-top: -11px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .tok05 {
|
|
|
+ transform: scale(0.5);
|
|
|
+ margin-top: -335px;
|
|
|
+ margin-left: 370px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .tok04 {
|
|
|
+ transform: scale(0.5);
|
|
|
+ margin-top: -275px;
|
|
|
+ margin-left: 430px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .tok03 {
|
|
|
+ transform: scale(0.5);
|
|
|
+ margin-top: -45px;
|
|
|
+ margin-left: 338px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .tok02 {
|
|
|
+ transform: scale(0.5);
|
|
|
+ margin-top: -291px;
|
|
|
+ margin-left: -376px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .tok01 {
|
|
|
+ transform: scale(0.5);
|
|
|
+ margin-top: -191px;
|
|
|
+ margin-left: -606px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--wrap {
|
|
|
+ margin-bottom: 40px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--wrap .promotion {
|
|
|
+ height: 450px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--wrap .promotion h4 {
|
|
|
+ font-size: 20px;
|
|
|
+ line-height: 24vw;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--wrap .promotion p {
|
|
|
+ font-size: 20px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--wrap .promotion h5 {
|
|
|
+ font-size: 48px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap {
|
|
|
+ margin-bottom: 240px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail {
|
|
|
+ flex-direction: column;
|
|
|
+ padding: 30px;
|
|
|
+ gap: 15px;
|
|
|
+ border-radius: 20px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail::before {
|
|
|
+ display: none !important;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--l {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--l > span {
|
|
|
+ font-size: 18px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--l > h5 {
|
|
|
+ font-size: 24px;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--r {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--r > span {
|
|
|
+ font-size: 18px;
|
|
|
+ width: 60px;
|
|
|
+ height: 70px;
|
|
|
+ right: 30px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--r > p {
|
|
|
+ margin-bottom: 0;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--r .before--price {
|
|
|
+ font-size: 18px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--r .before--price::after {
|
|
|
+ width: 140px;
|
|
|
+ height: 30px;
|
|
|
+ top: 12px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail .detail--r .after--price {
|
|
|
+ font-size: 24px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--detail--wrap .detail--plus {
|
|
|
+ border-bottom-left-radius: 20px;
|
|
|
+ border-bottom-right-radius: 20px;
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .count--wrap .evt--btn {
|
|
|
+ font-size: 24px;
|
|
|
+ height: 80px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .count--wrap .count--txt {
|
|
|
+ margin-bottom: 0;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .count--wrap .count--txt > p {
|
|
|
+ font-size: 20px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .count--wrap .count--txt .img--wrap {
|
|
|
+ width: 50%;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .count--wrap .count--txt .img--wrap .wch--l {
|
|
|
+ top: -60px;
|
|
|
+ left: -30px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .count--wrap .count--txt .img--wrap .wch--r {
|
|
|
+ top: -60px;
|
|
|
+ right: -40px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .count--wrap .count--num {
|
|
|
+ margin-bottom: 0px;
|
|
|
+ transform: scale(0.4);
|
|
|
+ }
|
|
|
+ @keyframes bellRing {
|
|
|
+ 0% {
|
|
|
+ transform: scale(0.5) rotate(0deg);
|
|
|
+ }
|
|
|
+ 10% {
|
|
|
+ transform: scale(0.5) rotate(-18deg);
|
|
|
+ }
|
|
|
+ 20% {
|
|
|
+ transform: scale(0.5) rotate(16deg);
|
|
|
+ }
|
|
|
+ 30% {
|
|
|
+ transform: scale(0.5) rotate(-12deg);
|
|
|
+ }
|
|
|
+ 40% {
|
|
|
+ transform: scale(0.5) rotate(10deg);
|
|
|
+ }
|
|
|
+ 50% {
|
|
|
+ transform: scale(0.5) rotate(-6deg);
|
|
|
+ }
|
|
|
+ 60% {
|
|
|
+ transform: scale(0.5) rotate(4deg);
|
|
|
+ }
|
|
|
+ 70% {
|
|
|
+ transform: scale(0.5) rotate(-2deg);
|
|
|
+ }
|
|
|
+ 80%, 100% {
|
|
|
+ transform: scale(0.5) rotate(0deg);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 500px) {
|
|
|
+ .evt--section01 .section--container .section--title {
|
|
|
+ margin-top: 80px;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .swiper--wrap {
|
|
|
+ margin-bottom: 50px;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .swiper--wrap .swiper--tab--wrap .tab--btn {
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .swiper--wrap .swiper-pagination span {
|
|
|
+ width: 14px;
|
|
|
+ height: 14px;
|
|
|
+ margin: 0 5px;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .swiper--wrap .slide--desc {
|
|
|
+ padding: 25px 15px !important;
|
|
|
+ min-height: 200px;
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .swiper--wrap .slide--desc h4 {
|
|
|
+ font-size: 18px;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .swiper--wrap .slide--desc h4 span {
|
|
|
+ font-size: 12px;
|
|
|
+ }
|
|
|
+ .evt--section01 .section--container .swiper--wrap .slide--desc p {
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 {
|
|
|
+ padding-bottom: 70px;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .bg1 {
|
|
|
+ left: -5%;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .bg2 {
|
|
|
+ top: 2%;
|
|
|
+ right: -360px;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .bg2 img {
|
|
|
+ width: 45%;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .bg3 {
|
|
|
+ left: -7%;
|
|
|
+ top: 34%;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 .evt--box {
|
|
|
+ margin-bottom: 0;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 a {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ }
|
|
|
+ .evt--section02-1 .section--container .evt--1 a img {
|
|
|
+ width: 90%;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 {
|
|
|
+ padding-bottom: 50px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .evt--box {
|
|
|
+ padding: 20px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .evt--box li {
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .evt--box li .circle {
|
|
|
+ padding: 5px 15px;
|
|
|
+ white-space: nowrap;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .bob--wrap01 {
|
|
|
+ margin-left: 10%;
|
|
|
+ margin-top: -120%;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .bob--wrap02 {
|
|
|
+ margin-left: 10%;
|
|
|
+ margin-top: -231px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .bob--wrap03 {
|
|
|
+ margin-left: -14%;
|
|
|
+ margin-top: -81px;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .bob--wrap04 {
|
|
|
+ margin-left: -60%;
|
|
|
+ margin-top: -120%;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .bob--wrap05 {
|
|
|
+ margin-left: -80%;
|
|
|
+ margin-top: -70%;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .bob--wrap06 {
|
|
|
+ margin-left: -120%;
|
|
|
+ margin-top: -70%;
|
|
|
+ }
|
|
|
+ .evt--section02-2 .section--container .evt--2 .bob--wrap07 {
|
|
|
+ margin-left: -80%;
|
|
|
+ margin-top: 0%;
|
|
|
+ }
|
|
|
+ .evt--section03 {
|
|
|
+ padding-top: 80px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .section--title {
|
|
|
+ margin-bottom: 40px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--wrap {
|
|
|
+ margin-bottom: 0;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--wrap .promotion {
|
|
|
+ height: 300px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--wrap .promotion h4 {
|
|
|
+ font-size: 16px;
|
|
|
+ margin-bottom: 0px;
|
|
|
+ line-height: 22vw;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--wrap .promotion p {
|
|
|
+ font-size: 16px;
|
|
|
+ margin-bottom: 0px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--wrap .promotion h5 {
|
|
|
+ font-size: 36px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .promotion--wrap .promotion h5 span {
|
|
|
+ font-size: 24px;
|
|
|
+ }
|
|
|
+ .evt--section03 .section--container .count--wrap .count--num {
|
|
|
+ transform: scale(0.3);
|
|
|
+ }
|
|
|
+ @keyframes bobUp {
|
|
|
+ 0% {
|
|
|
+ transform: translateY(120vh) scale(0.3);
|
|
|
+ opacity: 0;
|
|
|
+ }
|
|
|
+ 80% {
|
|
|
+ opacity: 1;
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ transform: translateY(0) scale(0.3);
|
|
|
+ opacity: 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+@media (max-width: 370px) {
|
|
|
+ .evt--section03 .section--container .count--wrap .count--num {
|
|
|
+ transform: scale(0.2);
|
|
|
+ }
|
|
|
+}/*# sourceMappingURL=style.css.map */
|