@charset "UTF-8";

/* ---------------------------------------- 레이아웃 크기 ---------------------------------------- */

body {
    width: 100%;
    min-width: 1400px;
    max-width: 1920px;
    margin: 0 auto;
}


/* ---------------------------------------- 공통 ---------------------------------------- */

img[src=""],
img:not([src]) {
    opacity: 0;
}

.pointer-event-none {
    pointer-events: none;
    user-select: none;
}

.df-sec {
    position: relative;
}

.df-sec-main {
    width: 62.5%;
    max-width: 1300px;
    margin: 0 auto;
}

.df-placeholder-img {
    display: block;
    width: 100%;
    pointer-events: none;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes an1 {
    0% {
        opacity: 0;
        transform: translateX(-1rem);
        -webkit-transform: translateX(-1rem);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }
}

@keyframes an1 {
    0% {
        opacity: 0;
        transform: translateX(-1rem);
        -webkit-transform: translateX(-1rem);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }
}

@-webkit-keyframes an2 {
    0% {
        opacity: 0;
        transform: translateX(1rem);
        -webkit-transform: translateX(1rem);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }
}

@keyframes an2 {
    0% {
        opacity: 0;
        transform: translateX(1rem);
        -webkit-transform: translateX(1rem);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }
}

@-webkit-keyframes fadetop {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadetop {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes flipInY {
    from {
        opacity: 0;
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        -webkit-transform: rotate3d(0, 1, 0, 90deg);
        transform: rotate3d(0, 1, 0, 270deg);
    }

    40% {
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        -webkit-transform: rotate3d(0, 1, 0, -40deg);
        transform: rotate3d(0, 1, 0, 380deg);
    }

    60% {
        opacity: 1;
        -webkit-transform: rotate3d(0, 1, 0, 15deg);
        transform: rotate3d(0, 1, 0, 340deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 1, 0, -15deg);
        transform: rotate3d(0, 1, 0, 368deg);
    }

    to {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 360deg);
    }
}

@keyframes flipInY {
    from {
        opacity: 0;
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        -webkit-transform: rotate3d(0, 1, 0, 90deg);
        transform: rotate3d(0, 1, 0, 270deg);
    }

    40% {
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        -webkit-transform: rotate3d(0, 1, 0, -40deg);
        transform: rotate3d(0, 1, 0, 380deg);
    }

    60% {
        opacity: 1;
        -webkit-transform: rotate3d(0, 1, 0, 15deg);
        transform: rotate3d(0, 1, 0, 340deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 1, 0, -15deg);
        transform: rotate3d(0, 1, 0, 368deg);
    }

    to {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 360deg);
    }
}


/* ---------------------------------------- 사이트 컬러 ---------------------------------------- */

.text-greydark {
    color: #72828B;
}

.text-red {
    color: #D51111;
}

/* ---------------------------------------- 내비게이션 바 ---------------------------------------- */

.df-nav {
    height: 65px;
    background: rgba(255, 255, 255, .9);
    position: absolute;
    z-index: 1;
    min-width: 1400px;
    max-width: 1920px;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.df-nav-main {
    width: 72%;
    max-width: 1400px;
    margin: 0 auto;
}

.df-nav-game {
    padding: 0 0 0 111px;
    position: relative;
    float: left;
}

.df-nav-logo {
    width: 94px;
    height: 94px;
    position: absolute;
    left: 0;
    top: 6px;
    border-radius: 18px;
    border: 2px solid #fff;
    background: no-repeat left top /90px 90px;
    /* background-image: url('../img/logo_574ce446d21b.png'); */
}

.df-nav-title {
    color: #000;
    font-size: 20px;
    margin-top: 9px;
    font-weight: 700;
}

.df-nav-slogan {
    color: #787878;
    font-size: 17px;
    font-style: normal;
}

.df-nav-menu {
    float: right;
    font-size: 19px;
    margin: 20px 0 0 0;
}

.df-nav-menu-item {
    float: left;
    color: #72827b;
    padding: 0 45px;
    border-right: 2px solid #BCD0D7;
    position: relative;
}

.df-nav-menu-item>.menu-item:hover,
.df-nav-menu-item.active>.menu-item {
    /* color: #419EEA; */
    color: #0785f1;
}

.df-nav-menu-item:hover .df-nav-menu-drop {
    display: block;
}

.df-nav-menu-drop {
    width: 90%;
    display: none;
    position: absolute;
    top: 100%;
    left: 5%;
    padding: 6px 0;
    border-radius: 4px;
    background: rgba(255, 255, 255);
    box-shadow: 0 1px 6px rgba(0, 0, 0, .2);
    font-size: 16px;
}

.df-nav-menu-drop-item {
    padding: .05rem .15rem;
    cursor: pointer;
}

.df-nav-menu-drop-item:hover {
    background: #f2f2f2;
}



/* ---------------------------------------- 푸터 바 ---------------------------------------- */

.df-footer {
    padding: 20px 0 15px;
    background: #fff;
}

.df-footer .business-item-brand {
    max-height: 60px;
    margin-right: 15px;
}

.df-footer .business-item {
    display: block;
    background: #ddd;
    width: 52px;
    height: 52px;
    padding: 5px;
    margin-left: 4px;
}

.df-footer .business-item-img {
    display: block;
    width: 100%;
    height: 100%;
}

.df-footer-right {
    border-left: 2px solid #BCD0D7;
    padding-left: 19px;
    margin-left: 24px;
    color: #72828B;
}

.df-footer-right-item+.df-footer-right-item {
    margin-top: 3px;
}

/* ---------------------------------------- 사이드바 ---------------------------------------- */

.df-aside {
    position: fixed;
    top: 65px;
    right: .13rem;
    padding: 170px 0 120px;
    color: #72828B;
    z-index: 10;
    white-space: nowrap;
    transition: top .2s;
    -webkit-transition: top .2s;
}

.df-aside:hover {
    z-index: 15;
}

.df-aside::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    left: 50%;
    margin-left: -30px;
    z-index: -1;
    border: solid transparent;
    border-width: 150px 30px 110px;
    border-image: url('../img/bg_7_e84a425e329b.png') stretch;
    border-image-slice: 150 30 110;
}

.df-aside-qr {
    width: 1.54rem;
    border: 2px solid rgba(255, 255, 255, .4);
    margin: .28rem auto;
    padding: 2px;
    text-align: center;
    font-size: .16rem;
}

.df-aside-btn1 {
    display: block;
    width: 1.5rem;
    height: .58rem;
    line-height: 0.58rem;
    margin: 0 auto 2px;
    background: url("../img/btn_bg_4_20a7a436852b.png") no-repeat 0/100% 100%;
    font-size: .2rem;
    text-align: center;
    color: #fff;
}

.df-aside-btn1.active {
    color: inherit;
    background-image: url("../img/btn_bg_3_925011d5cf38.png");
}

.df-aside-btn2 {
    display: block;
    width: 2.35rem;
    height: .51rem;
    line-height: 0.51rem;
    margin: .1rem auto 0;
    background: url("../img/btn_bg_1_f746f7a103d4.png") no-repeat 0/100% 100%;
    font-size: .2rem;
    text-align: center;
    color: #fff;
    white-space: nowrap;
}

.df-aside-btn2.bg-2 {
    background-image: url("../img/btn_bg_8_97674debee11.png");
}

.df-aside-btn-icon {
    padding-left: .48rem;
    position: relative;
}

.df-aside-btn-icon::before {
    content: '';
    width: .4rem;
    height: .4rem;
    position: absolute;
    top: .06rem;
    left: .04rem;
}

.df-aside-btn-icon.qq::before {
    background: url("../img/icons_6d4fe570bbae.png") no-repeat -1.45rem .01rem / 2.55rem;
}

.df-aside-btn-icon.tel::before {
    background: url("../img/icons_6d4fe570bbae.png") no-repeat -1.8rem .01rem / 2.55rem;
}

.df-aside-btn-icon.ios::before {
    background: url("../img/icons_6d4fe570bbae.png") no-repeat -.35rem .01rem / 2.55rem;
}

.df-aside-btn-icon.android::before {
    background: url("../img/icons_6d4fe570bbae.png") no-repeat .01rem .01rem / 2.55rem;
}

/* ---------------------------------------- 페이지네이션 ---------------------------------------- */

.df-page {
    padding: 12px 0;
}

.df-page-item {
    font-size: .20rem;
    margin-right: .12rem;
    cursor: pointer;
}

.df-page-total {
    cursor: initial;
}

.df-page-elevator {
    font-size: .22rem;
}

.df-page-elevator-select {
    min-width: 74px;
    height: 28px;
    line-height: 28px;
    font-size: 16px;
    border: 1px solid #989DA2;
    border-radius: 3px;
    appearance: none;
    -webkit-appearance: none;
    background: url("../img/icon_arrow_950eda4ec0d3.png") no-repeat 102% center / auto 100%;
    padding: 0 32px 0 0;
    cursor: pointer;
    text-align-last: center;
}

/* ---------------------------------------- 모달 ---------------------------------------- */

.df-win {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: 1920px;
    margin: 0 auto;
    z-index: 500;
}

.df-win-bg {
    background-color: rgba(0, 0, 0, .5);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.df-win-main-wrap {
    overflow: auto;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.df-win-close {
    position: absolute;
    left: 100%;
    top: -25px;
    width: 50px;
    height: 50px;
    background: url('../img/icons_6d4fe570bbae.png') no-repeat -300px 0/ 350px;
    cursor: pointer;
}

/* ---------------------------------------- 홈 ---------------------------------------- */

.p1-sec-title {
    position: relative;
    width: 2.3rem;
    height: .6rem;
    background: url('../img/text_titles_6cb67105f11c.png') no-repeat 0 0/100%;
}

.p1-sec-title::before {
    content: '';
    width: 2.22rem;
    height: .44rem;
    position: absolute;
    top: .06rem;
    left: -2.43rem;
    background: url('../img/bg_13_abbe40582d97.png') no-repeat 0 0/100% 100%;
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.p1-sec-title::after {
    content: '';
    width: 2.22rem;
    height: .44rem;
    position: absolute;
    top: .15rem;
    left: 109%;
    background: url('../img/bg_13_abbe40582d97.png') no-repeat 0 0/100% 100%;
}

.p1-pagination {
    text-align: center;
}

.p1-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 .06rem;
    background: #fff;
    border-radius: 7px;
    border: 1px solid #ccc;
    opacity: 1;
}

.p1-pagination .swiper-pagination-bullet-active {
    width: 28px;
    height: 10px;
    background: #419EEA;
    border-color: #419EEA;
    margin-bottom: 1px;
}

/* ---------------------------------------- 꽃잎 ---------------------------------------- */

.p1-fls {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}

.p1-fls-item {
    position: absolute;
    bottom: 100%;
    right: 100%;
    opacity: 0;
    width: 34px;
    height: 50px;
    background: url('../img/flower_986c634ce705.png') no-repeat 0 0 / 300px;
    transition-property: transform, opacity;
    transition-timing-function: cubic-bezier(0, 0, 0.95, 0.9);
}

.p1-fls .fls2 {
    width: 46px;
    height: 50px;
    background-position: -35px 0;
}

.p1-fls .fls3 {
    width: 38px;
    height: 50px;
    background-position: -84px 0;
}

.p1-fls .fls4 {
    width: 31px;
    height: 50px;
    background-position: -130px 0;
}

.p1-fls .fls5 {
    width: 53px;
    height: 50px;
    background-position: -165px 0;
}

.p1-fls .fls6 {
    width: 24px;
    height: 50px;
    background-position: -222px 0;
}

.p1-fls .fls7 {
    width: 44px;
    height: 50px;
    background-position: -252px 0;
}

/* ------------------------------ 메인 이미지 ------------------------------ */

.p1-jumbotron-bg {
    padding-top: 56.14%;
    background: no-repeat center / 100%;
}

.p1-jumbotron-slogan {
    width: 14.1%;
    position: absolute;
    top: 10.5%;
    left: 11.4%;
}

.p1-jumbotron-slogan-lower {
    position: absolute;
    top: 21%;
    left: 35%;
    z-index: 0;
}

.p1-jumbotron-video-btn {
    width: .82rem;
    height: .83rem;
    cursor: pointer;
    position: relative;
}

.p1-jumbotron-video-btn::before {
    content: '';
    width: .82rem;
    height: .83rem;
    position: absolute;
    top: 0;
    left: 0;
    background: url('../img/btn_bg_6_fc1d77d3e490.png') no-repeat 0 0 / 100% 100%;
    -webkit-animation: spin 5s linear infinite reverse;
    animation: spin 5s linear infinite reverse;
}

.p1-jumbotron-video-btn::after {
    content: '';
    width: .3rem;
    height: 0.35rem;
    position: absolute;
    top: .24rem;
    left: .3rem;
    background: url('../img/icons_6d4fe570bbae.png') no-repeat -1.38rem -.93rem / 3.5rem;
}

.p1-jumbotron-slogan-lower-text {
    display: block;
    width: .49rem;
    padding: .35rem .08rem .35rem;
    margin: .16rem auto 0;
    color: #4B6CB9;
    font-size: .22rem;
    font-style: normal;
    /* writing-mode: vertical-lr; */
    /* letter-spacing: .04rem; */
    line-height: 1.2;
    text-align: center;
    word-break: break-all;
    position: relative;
}

.p1-jumbotron-slogan-lower-text:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    border: solid transparent;
    border-width: 12px 13px;
    border-image: url('../img/border_1_98f5aa157953.png') 12 13 fill stretch;
}

.p1-jumbotron-island {
    width: 6.05rem;
    position: absolute;
    top: 61%;
    left: 0;
    right: 0;
    padding: .2rem 0 .2rem .08rem;
    margin: 0 auto 0;
    z-index: 1;
    box-sizing: content-box;
    border: solid transparent;
    border-width: 4px 103px;
    border-image: url("../img/border_5_45bb0575eb5b.png") 4 103 fill stretch;
}

.p1-jumbotron-dl-txt {
    font-size: .16rem;
    writing-mode: vertical-lr;
    letter-spacing: .04rem;
    width: .22rem;
}

.p1-jumbotron-qrcode {
    display: block;
    width: 1.48rem;
    height: 1.48rem;
    border: 2px solid rgba(0, 0, 0, .2);
    margin: 0 .15rem 0 .1rem;
}

.p1-jumbotron-btn {
    width: 1.92rem;
    height: .68rem;
    padding: .14rem 0 0 .68rem;
    color: #fff;
    font-size: .26rem;
    display: block;
    position: relative;
}

.p1-jumbotron-btn:nth-child(-n+2) {
    background: url('../img/btn_bg_8_97674debee11.png') no-repeat center/100% 100%;
}

.p1-jumbotron-btn:nth-child(2n+0) {
    margin-left: .12rem;
}

.p1-jumbotron-btn:nth-last-child(-n+2) {
    margin-top: .07rem;
    background: url('../img/btn_bg_7_358ff215eb7c.png') no-repeat center/100% 100%;
}

.p1-jumbotron-btn-icon {
    display: inline-block;
    width: .5rem;
    height: .5rem;
    position: absolute;
    left: .1rem;
    top: .1rem;
    background: url('../img/icons_6d4fe570bbae.png') no-repeat -.5rem 0/3.5rem;
}

.p1-jumbotron-btn.android .p1-jumbotron-btn-icon {
    background: url('../img/icons_6d4fe570bbae.png') no-repeat 0 0/3.5rem;
}

.p1-jumbotron-btn.gift .p1-jumbotron-btn-icon {
    background: url('../img/icons_6d4fe570bbae.png') no-repeat -1rem 0/3.5rem;
}

.p1-jumbotron-btn.newbie .p1-jumbotron-btn-icon {
    background: url('../img/icons_6d4fe570bbae.png') no-repeat -1.5rem 0/3.5rem;
}

/* ------------------------------ 영상 ------------------------------ */

.p1-video {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: rgba(0, 0, 0, .6);
}

.p1-video-wrap {
    margin: 0 auto 0;
    position: relative;
}

.p1-video-wrap video {
    display: block;
    min-width: 400px;
    max-width: 950px;
    min-height: 300px;
    max-height: 500px;
    background: rgba(0, 0, 0, .8);
}

.p1-video-close {
    position: absolute;
    left: 100%;
    top: -.2rem;
    width: .5rem;
    height: .5rem;
    background: url('../img/icons_6d4fe570bbae.png') no-repeat -3rem 0/ 3.5rem;
    cursor: pointer;
}

/* ------------------------------ 뉴스·정보 ------------------------------ */

.p1-news {
    margin-top: -11.8%;
    padding: 1px 0 29%;
    background: url('../img/pagebg_2_4b679aba8cac.png') no-repeat center 0 / cover;
}

.p1-news-bg-fairy {
    width: 37.2%;
    position: absolute;
    left: 0;
    top: -22px;
    z-index: 1;
}

.p1-news-title {
    margin: 141px auto 40px;
}

.p1-news-island {
    height: 4.65rem;
    padding: .34rem .2rem .35rem .26rem;
    position: relative;
    z-index: 2;
}

.p1-news-island::after {
    content: '';
    display: block;
    width: 102%;
    height: 104%;
    position: absolute;
    left: -1%;
    top: -2%;
    z-index: -1;
    border: 22px solid transparent;
    border-image: url('../img/border_2_59dfec9641ba.png') 22 fill stretch;
}

.p1-news-left {
    width: 52%;
    padding-top: 10px;
}

.p1-news-carousel-wrap {
    position: relative;
    z-index: 1;
}

.p1-news-carousel-wrap::after {
    content: '';
    box-sizing: content-box;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    position: absolute;
    left: -10px;
    top: -10px;
    z-index: -1;
    border: 20px solid transparent;
    border-image: url("../img/border_3_9111b6eb9d5a.png") 20 fill stretch;
}

.p1-news-carousel {
    height: 3.34rem;
}

.p1-news-pagination {
    margin-top: .3rem;
}

.p1-news-right {
    width: 45%;
    margin-left: auto;
}

.p1-news-cate {
    position: relative;
    text-align: center;
    border-bottom: .04rem solid #BCD0D7;
}

.p1-news-cate-item {
    padding: .03rem 0 .15rem;
    font-size: .20rem;
    line-height: 1;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.p1-news-cate-item.active,
.p1-news-cate-item:hover {
    color: #4494EC;
}

.p1-news-cate-item.active:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: .04rem;
    background: #419DEA;
}

.p1-news-cate-more {
    width: 1.1rem;
}

.p1-news-cate-more-icon {
    display: block;
    width: .68rem;
    height: .34rem;
    margin: -.05rem .15rem 0 auto;
    border: 2px solid #419DEA;
    border-radius: .12rem;
    font-size: .38rem;
    line-height: .3rem;
    color: #419DEA;
    font-weight: 700;
    cursor: pointer;
}

.p1-news-cate-more-icon:hover {
    opacity: .8;
}

.p1-news-list {
    max-height: 3.5rem;
    overflow: hidden;
    padding: .14rem .19rem 0 .12rem;
    font-size: .16rem;
}

.p1-news-list-item {
    height: 0.26rem;
}

.p1-news-list-item:hover {
    color: #333;
}

.p1-news-list-item+.p1-news-list-item {
    margin-top: .12rem;
}

.p1-news-list-item-cate {
    padding: .02rem .13rem;
    background: #419DEA;
    color: #fff;
    border-radius: .12rem;
}

.p1-news-list-item-text {
    margin: 0 .15rem 0 .13rem;
}

/* ------------------------------ 직업 소개 ------------------------------ */

.p1-career {
    margin-top: -26.5%;
    padding-top: 1px;
    background: url("../img/pagebg_3_72a6f5e8aff5.png") no-repeat center 0 / cover;
}

.p1-career-title {
    margin: 2.45rem auto .3rem;
    background-position: 0px -.63rem;
}

.p1-career-main {
    position: relative;
    height: 9rem;
}

.appear .switch-btns,
.appear .p1-career-intro.active .intro-txt {
    animation: an1 1s ease-in-out forwards;
    -webkit-animation: an1 1s ease-in-out forwards;
}

.appear .p1-career-intro.active .intro-ability {
    animation: an2 1s ease-in-out forwards;
    -webkit-animation: an2 1s ease-in-out forwards;
}

.appear .p1-career-intro.active .intro-portrait {
    animation: an2 1s ease-in-out forwards;
    -webkit-animation: an2 1s ease-in-out forwards;
}

.p1-career-main .switch-btns {
    width: 2.56rem;
    height: 2.56rem;
    position: absolute;
    top: 4.8rem;
    left: 0;
    z-index: 2;
}

.p1-career-main .switch-btns .item-wrap {
    width: 1.16rem;
    height: 1.16rem;
    position: absolute;
    background: url('../img/manstamp_1_c84fef80515b.png') no-repeat 0 0 / 1.16rem;
}

.p1-career-main .switch-btns .item-wrap:first-child {
    top: 0;
    left: .7rem;
}

.p1-career-main .switch-btns .item-wrap:nth-child(2) {
    top: .7rem;
    left: 0;
    background-image: url('../img/manstamp_2_7321e1f3b1c6.png');
}

.p1-career-main .switch-btns .item-wrap:nth-child(3) {
    top: .7rem;
    right: 0;
    background-image: url('../img/manstamp_3_40aa83facfb7.png');
}

.p1-career-main .switch-btns .item-wrap:nth-child(4) {
    left: .7rem;
    bottom: 0;
    background-image: url('../img/manstamp_4_fa80bfef7a21.png');
}

.p1-career-main .switch-btns .item {
    width: .81rem;
    height: .81rem;
    position: absolute;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    cursor: pointer;
    overflow: hidden;
}

.p1-career-main .switch-btns .item:nth-child(1) {
    left: .18rem;
    top: .18rem;
}

.p1-career-main .switch-btns .item:nth-child(2) {
    left: .18rem;
    top: .18rem;
}

.p1-career-main .switch-btns .item:nth-child(3) {
    right: .18rem;
    top: .18rem;
}

.p1-career-main .switch-btns .item:nth-child(4) {
    left: .18rem;
    bottom: .18rem;
}


.p1-career-main .switch-btns .item::before {
    content: '';
    display: none;
    width: 1.16rem;
    height: 1.16rem;
    margin: -.07rem 0 0 -.22rem;
    background: url('../img/manavtar_1_df0dcd224829.jpg') no-repeat 0 0 / 100%;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transition: transform 1s linear;
}

.p1-career-main .switch-btns .item-wrap:nth-child(2) .item::before {
    background-image: url('../img/manavtar_2_c71152be51d6.jpg');
    margin: -17px 0 0 -17px;
}

.p1-career-main .switch-btns .item-wrap:nth-child(3) .item::before {
    background-image: url('../img/manavtar_3_8d2967b6cc88.jpg');
    margin: -.18rem 0 0 -.11rem;
    background-size: 90%;
}

.p1-career-main .switch-btns .item-wrap:nth-child(4) .item::before {
    background-image: url('../img/manavtar_4_951655ea3e8c.jpg');
    margin: -.16rem 0 0 -.09rem;
    background-size: 90%;
}

.p1-career-main .switch-btns .item:hover,
.p1-career-main .switch-btns .item-wrap.active .item {
    background: #5890E4;
}

.p1-career-main .switch-btns .item:hover::before,
.p1-career-main .switch-btns .item-wrap.active .item::before {
    display: block;
}

.p1-career-intro {
    display: none;
}

.p1-career-intro.active {
    display: block;
}

.p1-career-intro .intro-txt {
    position: relative;
    opacity: 0;
}

.p1-career-intro.active .intro-txt {
    animation: an1 .3s ease-in-out forwards;
    -webkit-animation: an1 .3s ease-in-out forwards;
}

.p1-career-intro .intro-name {
    width: 1.67rem;
    height: 2.2rem;
    background: url('../img/text_career_name_0592d15ad25e.png') no-repeat 0 0 / auto 100%;
}

.p1-career-intro.xuanji .intro-name {
    background-position-x: -1.74rem;
}

.p1-career-intro.meiying .intro-name {
    background-position-x: -3.53rem;
}

.p1-career-intro.lingxiao .intro-name {
    background-position-x: -5.29rem;
}

.p1-career-intro .intro-desc {
    position: absolute;
    top: 1.7rem;
    left: -1.22rem;
}

.p1-career-intro .intro-desc-title {
    width: .31rem;
    height: 3.68rem;
    background: url('../img/text_career_desc_e34df47599a3.png') no-repeat -.93rem 0 / auto 100%;
}

.p1-career-intro.xuanji .intro-desc-title {
    background-position-x: -.46rem;
}

.p1-career-intro.meiying .intro-desc-title {
    background-position-x: 0;
}

.p1-career-intro.lingxiao .intro-desc-title {
    background-position-x: -1.39rem;
}

.p1-career-intro .intro-desc-sub {
    padding: 0 0 .46rem .15rem;
    margin-left: .14rem;
    color: #5B85DA;
    border-left: 2px dotted #769BE0;
    writing-mode: vertical-lr;
    font-size: .18rem;
    letter-spacing: .02rem;
    line-height: 1.8;
    white-space: nowrap;
}

.p1-career-intros::before {
    content: '';
    width: 6rem;
    height: 5.8rem;
    position: absolute;
    top: .5rem;
    left: 2.62rem;
    background: url('../img/bg_14_1f9cc4c4cd44.png') no-repeat 0 0/100%;
}

.p1-career-intro .intro-portrait {
    width: 11.2rem;
    position: absolute;
    top: 0;
    left: 1.2rem;
}

.p1-career-intro.xuanji .intro-portrait {
    width: 10.94rem;
    left: 0;
    top: -.2rem;
}

.p1-career-intro.meiying .intro-portrait {
    width: 9.94rem;
    left: .35rem;
}

.p1-career-intro.lingxiao .intro-portrait {
    width: 7.18rem;
    left: 3.2rem;
}

.p1-career-intro .intro-ability {
    position: absolute;
    top: 1.5rem;
    right: 1rem;
    color: #5B85DA;
    z-index: 2;
}

.p1-career-intro.active .intro-ability {
    animation: an2 .3s ease-in-out forwards;
    -webkit-animation: an2 .3s ease-in-out forwards;
}

.p1-career-intro .intro-ability .ability-item {
    position: relative;
    z-index: 0;
    margin-bottom: .15rem;
}

.p1-career-intro .intro-ability .ability-item:after {
    content: '스킬 1';
    display: block;
    width: 100%;
    font-size: .2rem;
    text-align: center;
    margin-top: .1rem;
}

.p1-career-intro .intro-ability .ability-item:nth-child(2)::after {
    content: '스킬 2';
}

.p1-career-intro .intro-ability .ability-item:nth-child(3)::after {
    content: '스킬 3';
}

.p1-career-intro .intro-ability .ability-item:nth-child(4)::after {
    content: '스킬 4';
}

.p1-career-intro .ability-item:hover::before {
    content: '';
    width: 2.72rem;
    height: .95rem;
    position: absolute;
    left: -.05rem;
    top: -.04rem;
    background: url("../img/manability_bg_33efd921d41b.png") no-repeat 0 0 / 100%;
    z-index: -1;
}

.p1-career-intro .intro-ability .ability-item .img {
    width: .85rem;
    height: .85rem;
    background: #5189DD url("../img/manability_3228a704eb72_q95eb5540.png") no-repeat .03rem -.07rem / 3.5rem;
    cursor: pointer;
    border-radius: 50%;
}

.p1-career-intro .intro-ability .ability-item:nth-child(2) .img {
    background-position-y: -.89rem;
}

.p1-career-intro .intro-ability .ability-item:nth-child(3) .img {
    background-position-y: -1.71rem;
}

.p1-career-intro .intro-ability .ability-item:nth-child(4) .img {
    background-position-y: -2.53rem;
}

.p1-career-intro.xuanji .intro-ability .ability-item .img {
    background-position-x: -.84rem;
}

.p1-career-intro.meiying .intro-ability .ability-item .img {
    background-position-x: -1.72rem;
}

.p1-career-intro.lingxiao .intro-ability .ability-item .img {
    background-position-x: -2.61rem;
}

.p1-career-intro .intro-ability .ability-item .detail {
    display: none;
    width: 1.5rem;
    position: absolute;
    left: 1.1rem;
    top: .5rem;
    font-size: .18rem;
    line-height: .33rem;
}

.p1-career-intro .intro-ability .ability-item:hover .detail {
    display: block;
}


/* ------------------------------ 게임 특징 ------------------------------ */

.p1-feature {
    margin-top: -19%;
    padding: 1px 0 2.7rem;
    background: url("../img/pagebg_4_5545ebf579b6.png") no-repeat center 0 / cover;
}

.p1-feature-title {
    margin: 3.22rem auto 1.3rem;
    background-position: 0px -1.25rem;
}

.p1-feature-fairy {
    width: 5.9rem;
    height: 7.37rem;
    position: absolute;
    top: -.7rem;
    right: 90%;
    z-index: 2;
    background: url('../img/bg_12_3b2644f8cb08.png') no-repeat 0 0 / 100%;
}

.p1-feature-tree {
    width: 15.59rem;
    height: 2.03rem;
    position: absolute;
    right: 0;
    top: 3.74rem;
    z-index: 1;
    background: url('../img/bg_11_dc9c3f1827dd.png') no-repeat 0 0 / 100%;
}

.p1-feature-main {
    width: calc(10.6rem + 24px);
    height: calc(5.3rem + 24px);
    padding: 12px;
    margin: 0 auto;
    position: relative;
    z-index: 0;
}

.p1-feature-main::before {
    content: '';
    width: 6rem;
    height: 4rem;
    position: absolute;
    top: 11px;
    right: 11px;
    z-index: 2;
    pointer-events: none;
    border-radius: 0% 0 0 100%;
    background-image: radial-gradient(ellipse at right top, black 0, transparent 73%);
}

.p1-feature-main::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border: 24px solid transparent;
    border-image: url("../img/border_9_08adb293de9b.png") 24 fill stretch;
}

.p1-feature-tags {
    position: absolute;
    top: .56rem;
    right: .48rem;
    z-index: 3;
}

.p1-feature-tags .item {
    width: .53rem;
    height: 1.63rem;
    margin-left: .12rem;
    position: relative;
    background: url('../img/btn_bg_5_0fdc38dcfdae.png') no-repeat 0 0 / auto 100%;
    cursor: pointer;
    opacity: 0;
}

.p1-feature-tags .item:hover,
.p1-feature-tags .item.active {
    background-position-x: right;
}

.p1-feature-tags .item::before {
    content: '';
    position: absolute;
    left: .265rem;
    bottom: 100%;
    height: .82rem;
    border-left: 1px solid #9BC5E6;
}

.p1-feature-tags .item::after {
    content: '';
    width: .3rem;
    height: .73rem;
    position: absolute;
    left: .12rem;
    top: .3rem;
    background: url('../img/text_4_1d17257d218f.png') no-repeat 0 0 / auto 100%;
}

.p1-feature-tags .item:hover::after,
.p1-feature-tags .item.active::after {
    background-image: url('../img/text_4_ac_55a3b29a96b3.png');
}

.p1-feature-tags .item:nth-child(2)::after {
    background-position-x: -.67rem;
}

.p1-feature-tags .item:nth-child(3)::after {
    background-position-x: -.33rem;
}

.p1-feature-tags .item:nth-child(4)::after {
    background-position-x: -.99rem;
}

.p1-feature-tags.appear .item {
    opacity: 1;
    -webkit-animation: flipInY 1.5s .2s linear both;
    animation: flipInY 1.5s .2s linear both;
}

.p1-feature-tags.appear .item:nth-child(2) {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.p1-feature-tags.appear .item:nth-child(3) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.p1-feature-tags.appear .item:nth-child(4) {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.p1-feature-carousel .swiper-slide {
    width: 10.6rem;
    height: 5.3rem;
    overflow: hidden;
}

.p1-feature-carousel .main-img {
    display: block;
    width: 100%;
}


/* ------------------------------ 영상 센터 ------------------------------ */

.p1-videos {
    margin-top: -13%;
    overflow: hidden;
    background: url("../img/pagebg_5_868766c2b90b.png") no-repeat center 0 / cover;
}

.p1-videos-title {
    margin: 2rem auto .32rem;
    background-position: 0px -1.93rem;
}

.p1-videos-main {
    width: 12rem;
    margin-bottom: 1.51rem;
    position: relative;
}

.p1-videos-btn-pn {
    width: .5rem;
    height: .68rem;
    position: absolute;
    top: 2.25rem;
    left: .6rem;
    z-index: 11;
    cursor: pointer;
}

.p1-videos-btn-pn:hover {
    opacity: 0.9;
}

.p1-videos-btn-next {
    left: auto;
    right: .6rem;
    margin-left: -.2rem;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.p1-videos-btn-pn::before {
    content: '';
    width: 2.65rem;
    height: .68rem;
    position: absolute;
    left: 0;
    top: 0;
    background: url('../img/btn_arrow2_5267821a477f.png') no-repeat center top / auto 100%;
    pointer-events: none;
}

.p1-videos-play-btn {
    width: .78rem;
    height: .78rem;
    position: absolute;
    left: 50%;
    top: 2.25rem;
    margin-left: -.39rem;
    background-color: rgba(255, 255, 255, .7);
    border-radius: 50%;
    z-index: 12;
    cursor: pointer;
}

.p1-videos-play-btn:hover {
    background-color: #fff;
}

.p1-videos-play-btn::before {
    content: '';
    width: .6rem;
    height: .6rem;
    position: absolute;
    left: .09rem;
    top: .09rem;
    background: url('../img/icons_6d4fe570bbae.png') no-repeat .02rem -.81rem/3.5rem;
}

.p1-videos-carousel {
    overflow: initial;
}

.p1-videos-carousel .swiper-slide {
    width: 9.41rem;
    height: 5.3rem;
    padding: 10px;
    position: relative;
    z-index: 1;
    -webkit-transition-property: transform, -webkit-transform, opacity;
    transition-property: transform, opacity;
}

.p1-videos-carousel .swiper-slide::after {
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: -1;
    border: 24px solid transparent;
    border-image: url("../img/border_3_9111b6eb9d5a.png") 24 fill stretch;
}

.p1-videos-carousel .carousel-img-wrap {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.p1-videos-carousel .swiper-slide:not(.swiper-slide-active) .carousel-img-wrap::before {
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background: rgba(0, 0, 0, .5);
}

.p1-videos-carousel .carousel-img {
    display: block;
    width: 100%;
}

.p1-videos-pagination {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    bottom: .27rem;
}

/* ------------------------------ 커뮤니티 ------------------------------ */

.p1-community {
    padding-bottom: 29px;
}

.p1-community-item {
    width: 2.06rem;
    height: 2.02rem;
    position: relative;
    z-index: 1;
    background: url("../img/icon2_wx_6154f9f571f6.png") no-repeat .76rem .31rem / 1.04rem 1.04rem;
    cursor: pointer;
}

.p1-community-item:nth-child(2) {
    background-image: url("../img/icon2_weibo_8909b3c42056.png");
}

.p1-community-item:nth-child(3) {
    background-image: url("../img/icon2_tieba_66539a3468a6.png");
}

.p1-community-item:nth-child(4) {
    background-image: url("../img/icon2_qq_8b9617585a2d.png");
}

.p1-community-item::before {
    content: '';
    width: 2.31rem;
    height: 2.05rem;
    position: absolute;
    top: -0.03rem;
    left: 0;
    z-index: -1;
    background: url("../img/border_4_6454fadf46d6.png") no-repeat 0 0/100% 100%;
}

.p1-community-item+.p1-community-item {
    margin-left: .72rem;
}

.p1-community-item-name {
    line-height: 1;
    font-size: .26rem;
    color: #fff;
    writing-mode: vertical-lr;
    position: absolute;
    left: .17rem;
    top: .2rem;
}

.p1-community-item-tips {
    width: 100%;
    text-align: center;
    font-size: .2rem;
    color: #479DD9;
    text-decoration: underline;
    position: absolute;
    left: 0;
    bottom: .08rem;
}

/* ---------------------------------------- p1 모달 ---------------------------------------- */

.p1-win-qrcode {
    display: none;
    width: 350px;
    height: 350px;
    position: relative;
    z-index: 1;
    margin: 5.5% auto 40px;
}

.p1-win-qrcode .qrcode-img {
    display: block;
    width: 100%;
    width: 100%;
}


/* ---------------------------------------- 소식 리스트/상세 ---------------------------------------- */

.p2-top-bg {
    height: 6rem;
    background: no-repeat 0 0 / 100%;
    /* background-image: url("../img/bg_8_a7dcd55846d7.jpg"); */
}

.p2-main-wrap {
    margin-top: -1.25rem;
    padding: .33rem 0 .3rem 0;
    border: solid transparent;
    border-width: 130px 0 0 0;
    border-image: url("../img/pagebg_2_4b679aba8cac.png") 130 0 0 0 fill stretch;
}

.p2-main {
    background: rgba(255, 255, 255, 0.6);
}

.p2-main-head {
    font-size: .2rem;
    line-height: 1;
    color: #3B2E59;
    padding: .34rem 0 .37rem .43rem;
    background: url("../img/bg_9_86c18f600ef9.png") repeat 0 0;
    font-weight: bold;
}

.p2-main-head-title {
    font-size: .33rem;
    font-weight: bold;
}

.p2-main-head-slash {
    font-size: .24rem;
    margin: 0 .06rem;
}

.p2-news-cate {
    border-bottom: .04rem solid #BCD0D7;
}

.p2-news-cate-item {
    width: 1.29rem;
    position: relative;
    padding: .19rem 0 .14rem;
    text-align: center;
    font-size: .26rem;
    cursor: pointer;
}

.p2-news-cate-item.active,
.p2-news-cate-item:hover {
    color: #419DEA;
}

.p2-news-cate-item.active::after {
    content: '';
    width: 100%;
    border-top: .04rem solid #419DEA;
    position: absolute;
    top: 100%;
    left: 0;
}

.p2-news-list {
    min-height: 5rem;
    padding: 0 .43rem 0 .28rem;
}

.p2-news-item {
    height: .72rem;
    border-bottom: .02rem solid #BCD0D7;
    position: relative;
}

.p2-news-item-cate {
    height: .36rem;
    padding: 0 .18rem;
    margin-right: .2rem;
    line-height: .36rem;
    font-size: .24rem;
    font-weight: bold;
    color: #fff;
    border-radius: .12rem;
    background: #419DEA;
}

.p2-news-item-text {
    font-size: .24rem;
    overflow: hidden;
    margin-right: 1rem;
}

.p2-news-item-text h2 {
    font-weight: bold;
}

.p2-news-item-text-sub {
    font-size: .14rem;
    color: #72828B;
}

.p2-news-item-time {
    color: #72828B;
    font-size: .16rem;
    padding: 0 .08rem .08rem 0;
    margin-left: auto;
}

.p2-news-detail-body {
    padding: 0 .24rem;
}

.p2-news-detail-body .content-head {
    padding: .2rem 0 .15rem;
    border-bottom: .04rem solid #BCD0D7;
    text-align: center;
}

.p2-news-detail-body .content-title {
    font-size: .26rem;
    margin-bottom: .1rem;
}

.p2-news-detail-body .content-time {
    color: #72828B;
    font-size: .16rem;
}

.p2-news-detail-body .content-body {
    padding: .2rem .1rem;
    overflow: hidden;
    font-size: 16px;
}

.p2-news-detail-body .content-body img {
    max-width: 100%;
}

.p2-news-detail-body .content-body p {
    margin: 5px 0;
}


/* ---------------------------------------- 문의하기 ---------------------------------------- */

.p3-top-bg {
    height: 6rem;
    background: no-repeat 0 0 / 100%;
}

.p3-contact {
    margin-top: -1.25rem;
    padding: 1.33rem 0 .3rem 0;
    background: url("../img/pagebg_2_4b679aba8cac.png") no-repeat 0 0 / cover;
}

.p3-contact-main {
    position: relative;
    z-index: 1;
}

.p3-contact-main::before {
    content: '';
    width: 100%;
    height: 100%;
    border: 18px solid transparent;
    border-image: url("../img/border_6_82bdb1f2e05a.png") 18 fill stretch;
    position: absolute;
    z-index: -1;
}

.p3-contact-left,
.p3-contact-right {
    width: 41.6%
}

.p3-contact-right {
    margin-left: .75rem;
}

.p3-contact-cate {
    font-size: .24rem;
    text-align: center;
    padding: .33rem 0 .23rem;
}

.p3-contact-list {
    font-size: .18rem;
    padding: .4rem 0 .43rem 1rem;
    border: solid #BCD0D7;
    border-width: .02rem 0;
}

.p3-contact-item {
    padding: 0 0 0 .4rem;
    position: relative;
    height: .5rem;
}

.p3-contact-item+.p3-contact-item {
    margin-top: .21rem;
}

.p3-contact-item::before {
    content: '';
    width: .25rem;
    height: .25rem;
    position: absolute;
    left: 0;
    background: url("../img/icons_6d4fe570bbae.png") no-repeat 0 -.52rem / 3.5rem;
}

.p3-contact-item.man::before {
    background-position-x: -.63rem;
}

.p3-contact-item.email::before {
    background-position-x: -.03rem;
}

.p3-contact-item.tel::before {
    background-position-x: -1.21rem;
}

.p3-contact-item.qq::before {
    background-position-x: -.32rem;
}

.p3-contact-item.weixin::before {
    background-position-x: -.92rem;
}

.p3-contact-qrcode {
    margin: .27rem auto .3rem;
}

.p3-contact-qrcode .qr {
    display: block;
    width: 1.37rem;
    height: 1.37rem;
    margin-right: .17rem;
    /* background: url("../img/border_7_2df00c177fc0.png") no-repeat center / 100% 100%; */
    border: 8px solid transparent;
    border-image: url("../img/border_7_2df00c177fc0.png") 8 fill stretch;
}



.p3-contact-qrcode .text-type {
    font-size: .22rem;
}

.p3-contact-qrcode .text-name {
    font-size: .18rem;
}


/* ---------------------------------------- 쿠폰 받기 ---------------------------------------- */

.p4-top-bg {
    height: 6rem;
    background: no-repeat 0 0 / 100%;
    background-image: url("../img/bg_8_a7dcd55846d7.jpg");
}

.p4-gift {
    margin-top: -1.25rem;
    padding: .33rem 0 .3rem 0;
    border: solid transparent;
    border-width: 130px 0 0 0;
    border-image: url("../img/pagebg_2_4b679aba8cac.png") 130 0 0 0 fill stretch;
}

.p4-gift-main {
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.6);
}

.p4-gift-head {
    font-size: 20px;
    line-height: 1;
    color: #3B2E59;
    padding: 34px 0 37px 43px;
    background: url("../img/bg_9_86c18f600ef9.png") repeat 0 0;
    font-weight: bold;
    position: relative;
}

.p4-gift-head-title {
    font-size: 33px;
    font-weight: bold;
}

.p4-gift-head-slash {
    font-size: 24px;
    margin: 0 6px;
}

.p4-gift-head .tips {
    position: absolute;
    right: 10px;
    bottom: 9px;
    font-weight: 400;
    font-size: 14px;
    color: #666;
}

.p4-gift-body {
    padding: 23px;
}

.p4-gift-item {
    height: 196px;
    position: relative;
    z-index: 1;
    margin-top: 15px;
}

.p4-gift-item::after {
    content: '';
    width: 100%;
    height: 100%;
    border: solid transparent;
    border-width: 13px 13px 13px 260px;
    border-image: url('../img/border_8_345e305794b0.png') stretch;
    border-image-slice: 13 13 13 260 fill;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.p4-gift-item-icon {
    width: 128px;
    /* height: 128px; */
    position: absolute;
    left: 65px;
    top: 33px;
}

.p4-gift-item-right {
    position: absolute;
    right: 67px;
    top: 50%;
    margin-top: -72px;
    line-height: 1;
}

.p4-gift-item-name {
    font-size: 26px;
}

.p4-gift-item-time {
    font-size: 18px;
    margin: 11px 0;
}

.p4-gift-item-btn {
    width: 180px;
    height: 70px;
    line-height: 69px;
    text-align: center;
    font-size: 26px;
    color: #fff;
    background: url('../img/btn_bg_1_f746f7a103d4.png') no-repeat 0 0 / 100% 100%;
    cursor: pointer;
}

.p4-gift-item-btn.useless {
    filter: grayscale(1);
    pointer-events: none;
}

.p4-gift-tips {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99;
    background: rgba(0, 0, 0, .7);
}

.p4-gift-tips-body {
    width: 6rem;
    height: calc(6rem/1.65);
    background: url('../img/bg_10_e0375df91832.png') no-repeat 0 0 / 100% 100%;
    font-size: 18px;
    padding: 28px 70px 40px 38px;
    position: relative;
}

.p4-gift-tips .close-btn {
    width: 30px;
    height: 31px;
    background: url('../img/icons_6d4fe570bbae.png') no-repeat -246px -4px/ 280px;
    position: absolute;
    right: 28px;
    top: 14px;
    cursor: pointer;
}

.p4-gift-tips-body-content li {
    margin-bottom: 3px;
}

.p4-gift-tips .tips {
    margin-top: 20px;
    line-height: 1.5;
}

/* ---------------------------------------- 단일 페이지 ---------------------------------------- */

.p5-top-bg {
    height: 6rem;
    background: no-repeat 0 0 / 100%;
    background-image: url("../img/bg_8_a7dcd55846d7.jpg");
}

.p5-onepage {
    margin-top: -1.25rem;
    padding: .33rem 0 .3rem 0;
    border: solid transparent;
    border-width: 130px 0 0 0;
    border-image: url("../img/pagebg_2_4b679aba8cac.png") 130 0 0 0 fill stretch;
}

.p5-onepage-main {
    background: rgba(255, 255, 255, 0.6);
}

.p5-onepage-head {
    font-size: .2rem;
    line-height: 1;
    color: #3B2E59;
    padding: .34rem 0 .37rem .43rem;
    background: url("../img/bg_9_86c18f600ef9.png") repeat 0 0;
}

.p5-onepage-head-title {
    font-size: .33rem;
}

.p5-onepage-body {
    padding: 0 .2rem;
}

.p5-onepage-body .content-head {
    padding: .2rem 0 .15rem;
    border-bottom: .04rem solid #BCD0D7;
    text-align: center;
}

.p5-onepage-body .content-title {
    font-size: .26rem;
    margin-bottom: .1rem;
}

.p5-onepage-body .content-time {
    color: #72828B;
    font-size: .16rem;
}

.p5-onepage-body .content-body {
    padding: .2rem .1rem;
    overflow: hidden;
}
/* unified footer */
.df-footer {
  background: #000 !important;
  color: #fff !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  padding: 16px 12px !important;
}
.df-footer .business-item-brand,
.df-footer-left,
.df-footer-right {
  display: none !important;
}
.df-footer .footer-company-name {
  display: block !important;
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
}
