.huntbao {
    overflow: hidden;
}

.huntbao h3 {
    font-size: 48px;
    font-weight: 700;
    line-height: 140%;
}

.huntbao h4 {
    font-size: 32px;
    font-weight: 700;
    line-height: 140%;
    color: #8500EA;
    background-image: linear-gradient(90deg, rgb(133 0 234) 10%, rgb(194 112 255) 60%, rgb(125 175 255) 90%);
    background-clip: text;
    color: transparent;
}

.huntbao h5 {
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    color: #3A3390;
    background-image: linear-gradient(90deg, rgb(58 51 144) 10%, rgb(0 105 207) 70%, #008bde 90%);
    background-clip: text;
    color: transparent;
}

.huntbao p,
.huntbao ul {
    font-size: 24px;
    line-height: 140%;
    margin: 0;
    color: #000;
}

.huntbao .button {
    font-weight: 600;
}

.huntbao .button.light {
    border: 1px solid #8500EA;
    color: #000;
    background: transparent;
}

.huntbao .img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.huntbao .container-fluid {
    padding: 0;
}

.banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(#010228 0%, #010228 80% 80%, #522aae 80%, #522aae 100%); */
    background: linear-gradient(to bottom, #010228 0%, #522aae 60%, #1e0f56 90%, #f9f1fe 100%);
    min-height: 1008px;
}

.banner::before {
    content: "";
    width: 100%;
    height: 640px;
    background: url(../images/huntbao/banner-mask.png) center bottom no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
    pointer-events: none;
}

.huntbao-pic {
    content: "";
    width: 100%;
    height: 960px;
    background: url(../images/huntbao/banner-huntbao.png) center top no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.huntbao-meet {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 540px;
    top: 150px;
    left: calc(50% - 270px);
}

.huntbao-meet h3 {
    font-size: 64px;
    font-weight: 500;
    color: #fff;
    position: relative;
    z-index: 2;
}

.huntbao-meet h3::before {
    content: "";
    width: 104px;
    height: 104px;
    background: #C270FF;
    position: absolute;
    filter: blur(50px);
    top: -12px;
    right: 15px;
    z-index: -1;    
    animation-name: spolight;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes spolight {
    0% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

.huntbao-meet p {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    position: relative;
    z-index: 2;
}

.huntbao-meet a {
    font-size: 18px;
    font-weight: 600;
    margin-top: 40px;
    position: relative;
}

.huntbao-meet a::before {
    content: "";
    width: 35px;
    height: 35px;
    background: #f1e8ff;
    position: absolute;
    filter: blur(25px);
    top: 0;
    right: 0;
    z-index: 1;
    border-radius: 50%;
    mix-blend-mode: plus-lighter;
    animation-name: lightmove;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

@keyframes lightmove {
    0% {
        top: 40px;
        right: 205px;
    }

    100% {
        top: -35px;
        right: -35px;
    }
}

.huntbao-mascot {
    position: absolute;
    bottom: 302px;
    left: calc(50% - 100px);

    animation-name: bodyjump;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
@keyframes bodyjump {   
    80% {
        transform: translateY(5px,);
    }   
    90% {
        transform: translateY(-5px);
    }
    80% {
        transform: translateY(5px);
    } 
}
.huntbao-mascot::before {
    content: "";
    width: 81px;
    height: 63px;
    background: url(../images/huntbao/huntbao-hand.png) center center no-repeat;
    background-size: contain;
    position: absolute;
    top: 70px;
    left: -2px;   
    z-index: -1;
    transform-origin: center right;
    transform: rotate(5deg);
    animation-name: handwave;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
@keyframes handwave {   
    0% {
        transform: rotate(5deg);
    }
    20% {
        transform: rotate(-5deg);
    }
    40% {
        transform: rotate(5deg);
    } 
    60% {
        transform: rotate(-5deg);
    }
    80% {
        transform: rotate(5deg);
    } 
}

.huntbao-mascot::after {
    content: "";
    width: 125px;
    height: 15px;
    /* background: #381e7b; */
    background: linear-gradient(to right, #582ba1 0%, #381e7b 40%, #381e7b 60%, #582ba1 100%);
    position: absolute;
    bottom: -9px;
    left: 40px;
    border-radius: 50%;
    z-index: -1;

    animation-name: shadowwave;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
@keyframes shadowwave {   
    80% {
        transform: translateY(-5px) scale(1);
    }   
    90% {
        transform: translateY(5px)  scale(0.8);
    }
    80% {
        transform: translateY(-5px)  scale(1);
    } 
}

.story {
    background: #f9f1ff;
    padding-top: 80px;
    padding-bottom: 40px;
}

.story-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.huntbao-story .story-box:nth-child(2n) {
    flex-direction: row-reverse;
}

.huntbao-story .story-box:nth-child(2n) .story-img {
    padding-left: 30px;
}

.huntbao-story .story-box:nth-child(2n-1) .story-img {
    padding-right: 30px;
}

.story-box .story-text,
.detail-box .detail-text {
    width: 55%;
}

.story-box1::before {
    content: "";
    width: 360px;
    height: 100%;
    background: url(../images/huntbao/line1.png) center top no-repeat;
    position: absolute;
    top: -75px;
    left: 0;
    z-index: -1;
}

.story-box1::after {
    content: "";
    width: 830px;
    height: 100%;
    background: url(../images/huntbao/line2.png) center top no-repeat;
    position: absolute;
    bottom: -500px;
    right: 60px;
    z-index: -1;
}

.story-box2::before {
    content: "";
    width: 225px;
    height: 100%;
    background: url(../images/huntbao/line3.png) center top no-repeat;
    position: absolute;
    top: 40px;
    right: -55px;
    z-index: -1;
}

.story-box2::after {
    content: "";
    width: 684px;
    height: 100%;
    background: url(../images/huntbao/line4.png) center top no-repeat;
    position: absolute;
    bottom: -625px;
    left: 140px;
    z-index: -1;
}

.story-box3::before {
    content: "";
    width: 810px;
    height: 100%;
    background: url(../images/huntbao/line5.png) center top no-repeat;
    position: absolute;
    bottom: -580px;
    right: 135px;
    z-index: -1;
}

.story-box3::after {
    content: "";
    width: 133px;
    height: 100%;
    background: url(../images/huntbao/line6.png) center top no-repeat;
    position: absolute;
    bottom: -835px;
    right: -50px;
    z-index: -1;
}

.story-box4::before {
    content: "";
    width: 668px;
    height: 100%;
    background: url(../images/huntbao/line7.png) center top no-repeat;
    position: absolute;
    bottom: -582px;
    right: 140px;
    z-index: -1;
}

.text h4,
.text h5,
.text p,
.text ul {
    margin-bottom: 25px;
}

.text ul {
    list-style: none;
    padding: 0;
}

.text ul li {
    position: relative;
    padding-left: 45px;
    line-height: 40px;
    margin-bottom: 15px;
}

.text ul li::before {
    content: "";
    width: 32px;
    height: 40px;
    background: url(../images/huntbao/list-pic.png) center center no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}

.text ul li span {
    color: #A936FF;
    padding-right: 5px;
}

.dialogbox {
    position: relative;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    overflow: unset;
    width: calc(100% - 6px);
    right: -6px;

    animation-name: dialogbox1;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes dialogbox1 {
    0% {
        transform: translate(5px, -5px);
    }

    100% {
        transform: translate(-5px, 5px);
    }
}

@keyframes dialogbox2 {
    0% {
        transform: translate(-5px, 5px);
    }

    100% {
        transform: translate(5px, -5px);
    }
}

.dialogbox::before {
    content: "";
    width: 38px;
    height: 100%;
    background: url(../images/huntbao/say-w.png) center bottom no-repeat;
    position: absolute;
    bottom: 0;
    left: -12px;
    z-index: -1;

}

.dialogbox.huntbao {
    background: #E1B9FF;
    width: calc(100% - 6px);
    right: auto;
    left: -6px;

    animation-name: dialogbox2;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.dialogbox.huntbao::before {
    content: "";
    width: 38px;
    height: 100%;
    background: url(../images/huntbao/say-p.png) center bottom no-repeat;
    position: absolute;
    bottom: 0;
    left: auto;
    right: -12px;
}

.dialogbox.dashedline {
    color: #8500EA;
    border-radius: 40px;
    border: 4px dashed #E1B9FF;
    background: transparent;

    animation-name: unset;
}

.dialogbox.dashedline::before {
    display: none;
}

.detail {
    position: relative;
    background: linear-gradient(#FFF 0%, #FFF 80% 80%, #cb86ff 80%, #cb86ff 100%);
}


.detail::before {
    content: "";
    width: 100%;
    height: 80px;
    background: url(../images/huntbao/bg-pic.svg) #C981FF 8px center repeat-x;
    position: absolute;
    top: 0;
    left: 0;
}

.detail h3 {
    margin-bottom: 40px;
    font-weight: 800;
    text-align: center;
}

.detail-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 820px;
}

.detail .detail-box h3 {
    text-align: left;
}

.detail .power {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 120px;
}

.detail-img {
    position: relative;
    z-index: 1;
}

.detail-img::after {
    content: "";
    width: 150px;
    height: 150px;
    background: #C270FF;
    position: absolute;
    filter: blur(150px);
    bottom: -65px;
    right: -200px;
    z-index: -1;
}

.powerbox {
    width: 33%;
    padding: 48px 16px;
    box-shadow: 0px 5px 30px 0px #0000001A;
    background: #fff;
    border-radius: 30px;
    margin: 20px;
}

.powerbox>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.huntbao .powerbox h5 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 12px;
}

.powerbox p {
    font-size: 16px;
    line-height: 150%;
    color: #696A6F;
    text-align: center;
}

.powerbox .power-img {
    padding-bottom: 48px;
}

.powerbox .power-img img {
    transform-origin: center center;
}

.powerbox:first-child .power-img img {
    animation-name: powermove1;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.powerbox:nth-child(2) .power-img img {
    animation-name: powermove2;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

.powerbox:last-child .power-img img {
    animation-name: powermove3;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes powermove3 {
    0% {
        transform: translate(10px, -10px);
    }

    100% {
        transform: translate(-10px, 10px);
    }
}

@keyframes powermove2 {
    0% {
        transform: rotate(0deg);
    }

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

@keyframes powermove1 {
    0% {
        transform: scale(0.7) rotate(0deg);
    }

    100% {
        transform: scale(1.1) rotate(45deg);
    }
}

.helper-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 595px;
}

.helper-text {
    flex-grow: 1;
}

.helper-img {
    width: 33%;
    padding-left: 30px;
    position: relative;
}

.helper-img::before {
    content: "";
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #c270ff;
    filter: blur(20px);
    position: absolute;
    top: 105px;
    mix-blend-mode: plus-lighter;
    animation-name: lighthelper;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes lighthelper {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.helper h3 {
    color: #8500EA;
    margin-bottom: 40px;
    background-image: linear-gradient(90deg, rgb(133 0 234) 10%, rgb(194 112 255) 60%, rgb(251 136 239) 80%);
    background-clip: text;
    color: transparent;
}

.helper .button:first-child {
    margin-right: 24px;
}

/* EN -----------------------------------------------------------------------------*/

.huntbao.huntbao-en p, .huntbao.huntbao-en ul {
    font-size: 20px;
}

.huntbao.huntbao-en .huntbao-meet h3 {
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.huntbao.huntbao-en .huntbao-story h4, .huntbao.huntbao-en .helper h3 {
    font-weight: 900;
}
.huntbao.huntbao-en .huntbao-meet p {   
    font-size: 36px;
    font-weight: 600;
}
.huntbao.huntbao-en .story-box1::after {
    bottom: -600px;
}
.huntbao.huntbao-en .story-box2::before {   
    height: 470px;
    top: 95px;
    right: -45px;
}
.huntbao.huntbao-en .story-box3::after {    
    right: -65px;
}
.huntbao.huntbao-en .story-box4::before {    
    bottom: -540px;
}
.huntbao.huntbao-en .powerbox {    
    min-height: 400px;
}
.huntbao.huntbao-en .text ul li {   
    line-height: 32px;
}


/* RWD 1440px ====================================================================*/

@media (max-width:1440px) {

    .banner {
        min-height: 950px;
    }

    .huntbao-pic {
        height: 800px;
        background-size: cover;
    }

    .huntbao-mascot {
        bottom: 140px;
    }


}

/* RWD 1366px ====================================================================*/

@media (max-width:1366px) {
    .story-box1::before {
        left: -65px;
    }

    .story-box1::after {
        bottom: -460px;
    }

    .story-box2::before {
        top: 25px;
        right: -35px;
    }

    .story-box2::after {
        bottom: -575px;
    }

    .story-box3::before {
        bottom: -545px;
    }

    .story-box3::after {
        bottom: -770px;
    }

    .story-box4::before {
        bottom: -520px;
    }

    /*EN--------------------------------------------*/    

    .huntbao.huntbao-en .story-box1::after {
        bottom: -540px;
    }
    .huntbao.huntbao-en .powerbox {
        min-height: 430px;
    }
    
}

/* RWD 1299px ====================================================================*/

@media (max-width:1299px) {

    .banner {
        min-height: 880px;
    }

    .huntbao-meet {
        top: 100px;
    }

    .huntbao-mascot {
        bottom: 200px;
    }
}

/* RWD 1099px ====================================================================*/

@media (max-width:1240px) {
    .story-box1::before {
        left: -100px;
        transform: rotate(-5deg);
    }

    .story-box2::before {
        height: 400px;
        top: 60px;
        right: -20px;
    }

    .story-box2::after {
        bottom: -485px;
    }

    .story-box3::before {
        bottom: -530px;
        right: 0;
    }

    .story-box3::after {
        height: 400px;
        bottom: -515px;
        right: -60px;
        transform: rotate(-5deg);
    }

    .story-box4::before {
        bottom: -420px;
        right: 35px;
    }

    /*EN------------------------------*/
    .huntbao.huntbao-en .story-box1::after {
        bottom: -540px;
        transform: rotate(5deg);
        right: 100px;
    }
    .huntbao.huntbao-en .story-box2::before {
        height: 400px;        
    }
    .huntbao.huntbao-en .story-box2::after {
        bottom: -560px;
    }    
    
    .huntbao.huntbao-en .story-box4::before {
        bottom: -462px;
        right: 155px;
        transform: rotate(2deg);
    }
    .huntbao.huntbao-en .powerbox {
        min-height: 460px;
    }

}

/* RWD 1099px ====================================================================*/

@media (max-width:1099px) {

    .huntbao h3 {
        font-size: 32px;
    }

    .huntbao h4 {
        font-size: 24px;
    }

    .huntbao h5,
    .huntbao p,
    .huntbao ul {
        font-size: 16px;
    }

    .huntbao .huntbao-meet h3 {
        font-size: 48px;
    }

    .huntbao .huntbao-meet p {
        font-size: 32px;
    }

    .huntbao-meet a {
        margin-top: 25px;
    }

    .huntbao-mascot {
        bottom: 230px;
    }

    .story-box .story-text,
    .detail-box .detail-text {
        width: 65%;
    }

    .powerbox .power-img {
        padding-bottom: 15px;
    }

    .detail-box {
        min-height: 720px;
    }

    .helper-img {
        width: 45%;
    }

    .text ul li {
        padding-left: 35px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .text ul li::before {
        width: 24px;
        height: 24px;
    }

    .powerbox {
        padding: 24px 10px;
        margin: 8px;
    }

    .helper-img::before {
        top: 120px;
        left: 40px;
    }

    /*EN--------------------------*/
    .huntbao.huntbao-en p, .huntbao.huntbao-en ul {
        font-size: 16px;
    }

    .huntbao.huntbao-en .huntbao-meet p {
        font-size: 28px;
    } 

    .story-box1::before {
        left: -60px;
        transform: rotate(-15deg);
    }
    .huntbao.huntbao-en .story-box1::after {
        bottom: -520px;
        transform: rotate(10deg);
        right: 80px;
    }
    .huntbao.huntbao-en .story-box2::before {
        height: 330px;
        top: 110px;
        right: -5px;
        transform: rotate(0deg);
    }
    .huntbao.huntbao-en .story-box2::after {
        bottom: -530px;
        transform: rotate(-5deg);
        left: 170px;
    }
    .huntbao.huntbao-en .story-box3::before {
        bottom: -450px;
        transform: rotate(0deg);
    }
    .huntbao.huntbao-en .story-box4::before {
        bottom: -400px;
        right: 85px;
        transform: rotate(3deg);
    }

}


@media (max-width:992px) {

    .huntbao-pic {
        height: 760px;
    }

    .huntbao-mascot {
        bottom: 205px;
    }

    .story-box1::before {
        content: "";
        width: 166px;
        height: 100%;
        background: url(../images/huntbao/line1s.png) center top no-repeat;
        top: -80px;
        left: -115px;
        transform: rotate(10deg);
    }

    .story-box1::after {
        height: 150px;
        background-position: center center;
        bottom: -40px;
        right: 30px;
        transform: rotate(10deg);
    }

    .story-box2::before {
        top: -10px;
        right: -40px;
        transform: scale(0.8);
    }

    .story-box2::after {
        content: "";
        width: 500px;
        background-position: left top;
        position: absolute;
        bottom: -405px;
        left: 0;
        transform: rotate(-5deg);
    }

    .story-box3::before {
        width: 580px;
        background-position: left bottom;
        bottom: -170px;
        right: 70px;
        transform: rotate(5deg);
    }

    .story-box3::after {
        width: 225px;
        height: 400px;
        background: url(../images/huntbao/line3.png) center top no-repeat;
        bottom: -490px;
        right: -60px;
        transform: scale(0.85) rotate(10deg);
    }

    .story-box4::before {
        width: 600px;
        bottom: -340px;
        right: 75px;
        transform: rotate(5deg);
    }


    .detail-box {
        min-height: 620px;
    }

    .helper-box {
        min-height: 500px;
    }

    /*EN--------------------------*/    
    .story-box1::before {        
        top: -60px;
        left: -140px;
    }
    .huntbao.huntbao-en .story-box1::after {
        bottom: -55px;
        transform: rotate(25deg);
        right: 5px;
    }
    .huntbao.huntbao-en .story-box2::before {
        height: 260px;
        top: 135px;
        right: -20px;
        transform: rotate(20deg);
    }
    .huntbao.huntbao-en .story-box2::after {
        bottom: -450px;
        transform: rotate(-10deg);
        left: 130px;
    }
    .huntbao.huntbao-en .story-box3::before {
        bottom: -130px;
        transform: rotate(15deg);
    }
    .huntbao.huntbao-en .story-box3::after {
        right: -35px;
        bottom: -410px;
        transform: rotate(20deg);
        height: 300px;
    }
    .huntbao.huntbao-en .story-box4::before {
        bottom: -355px;
        right: 85px;
        transform: rotate(-5deg);
    }
    .huntbao.huntbao-en .powerbox {
        min-height: 385px;
    }

}

@media (max-width: 768px) {

    .banner {
        min-height: 800px;
    }

    .banner::before {
        background-size: 180%;
    }

    .banner::after {
        content: "";
        width: 166px;
        height: 100%;
        background: url(../images/huntbao/line1s.png) center top no-repeat;
        position: absolute;
        bottom: -102%;
        left: 9vw;
        z-index: 1;
        transform: rotate(0deg);
    }

    .story-box1::before {
        display: none;
    }

    .story-box1::after {
        width: 239px;
        height: 100%;
        background: url(../images/huntbao/line2s.png) center top no-repeat;
        bottom: -350px;
        right: -120px;
        transform: rotate(0deg);
    }

    .story-box2::before {

        width: 227px;
        height: 100%;
        background: url(../images/huntbao/line3s.png) center top no-repeat;
        top: 240px;
        right: 285px;
        transform: rotate(0deg);
    }

    .story-box2::after {
        width: 232px;
        height: 100%;
        background: url(../images/huntbao/line4s.png) center top no-repeat;
        bottom: -1200px;
        right: -175px;
        left: auto;
        transform: rotate(0deg);
    }

    .story-box3::before {
        width: 232px;
        height: 100%;
        background: url(../images/huntbao/line5s.png) center top no-repeat;
        bottom: -1200px;
        right: auto;
        left: -160px;
        transform: rotate(0deg);
    }

    .story-box3::after,
    .story-box4::before {
        display: none;
    }

    .story-box,
    .huntbao-story .story-box:nth-child(2n),
    .huntbao-story .story-box:nth-child(2n-1),
    .detail-box,
    .power,
    .helper-box {
        flex-direction: column;
    }

    .story-box .story-text,
    .detail-box .detail-text,
    .powerbox,
    .helper-img {
        width: 100%;
    }

    .huntbao-story .story-box:nth-child(2n) .story-img,
    .huntbao-story .story-box:nth-child(2n-1) .story-img,
    .helper-img {
        padding: 0;
    }

    .huntbao-story {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .story-box {
        max-width: 350px;
        margin-bottom: 40px;
    }

    .story-text {
        padding-top: 30px;
    }

    .detail {
        padding-top: 140px;
        padding-bottom: 60px;
        background: linear-gradient(#FFF 0%, #FFF 73% 73%, #cb86ff 73%, #cb86ff 100%);
    }

    .detail .detail-box h3 {
        text-align: center;
    }

    .detail-text .text ul li {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .detail-text .text ul li span {
        position: relative;
        display: block;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 10px;
        width: max-content;
        padding-left: 30px;
    }

    .detail-text .text ul li::before {
        display: none;
    }

    .detail-text .text ul li span::before {
        content: "";
        width: 25px;
        height: 24px;
        background: url(../images/huntbao/list-pic.png) center center no-repeat;
        background-size: contain;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
    }

    .detail-img {
        padding-bottom: 120px;
    }

    .detail .power {
        padding-bottom: 0;
    }

    .powerbox {
        max-width: 345px;
        padding: 48px 16px;
    }

    .powerbox .power-img {
        padding-bottom: 48px;
    }

    .helper {
        padding: 60px 0;
    }

    .helper h3 {
        margin-bottom: 12px;
    }

    .helper h3,
    .helper p,
    .helper .helper-byn {
        text-align: center;
    }

    .helper-img {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 60px;
    }

    .helper .helper-byn {
        display: flex;
    }

    .helper .helper-byn .button {
        flex-grow: 1;
    }

    .helper .helper-byn .button:first-child {
        margin-right: 16px;
    }

    .helper-img::before {
        top: 180px;
        left: 90px;
    }

    /*EN ----------------------------*/
    .huntbao.huntbao-en .story-box1::after {
        bottom: -410px;
        transform: rotate(0deg);
        right: -190px;
    }
    .huntbao.huntbao-en .story-box2::before {
        height: 825px;
        top: 300px;
        right: 285px;
        transform: rotate(0deg);
    }
    .huntbao.huntbao-en .story-box2::after {
        bottom: -1320px;
        transform: rotate(0deg);
        left: 310px;
    }
    .huntbao.huntbao-en .story-box3::before {
        bottom: -1320px;
        transform: rotate(0deg);
    }
    .huntbao.huntbao-en .powerbox {
        min-height: auto;
    }
}

@media (max-width: 575px) {
    .banner {
        min-height: 710px;
    }

    .banner::after {
        left: 7vw;
    }

    .huntbao-pic {
        height: 665px;
        background-size: cover;
    }

    .huntbao-meet {
        width: 480px;        
        left: calc(50% - 240px);
        top: 75px;
    }   

    .huntbao-mascot {
        bottom: 170px;
        width: 180px;
        left: calc(50% - 90px);
    }
    .huntbao-mascot::before {
        width: 70px;
        top: 60px;
        left: -5px;
    }

    .helper-img::before {
        top: 180px;
        left: 105px;
    }

}

@media (max-width: 480px) {
    .banner {
        min-height: 550px;
    }

    .banner::after {
        left: 5vw;
    }
    

    .huntbao-pic {
        height: 520px;
    }

    .huntbao-meet {
        width: 300px;        
        left: calc(50% - 150px);
        top: 85px;
    }

    .huntbao .huntbao-meet h3 {
        font-size: 24px;
    }

    .huntbao-meet h3::before {
        width: 90px;
        height: 90px;
        top: -30px;
        right: -20px;
    }

    .huntbao .huntbao-meet p {
        font-size: 18px;
    }

    .huntbao-meet a {
        font-size: 14px;
        margin-top: 18px;
        padding: 5px 10px;
    }

    .huntbao-mascot {
        bottom: 130px;
        width: 130px;
        left: calc(50% - 65px);
    }
    .huntbao-mascot::before {
        width: 50px;
        top: 35px;
        left: 0px;
    }

    .huntbao-mascot::after {
        width: 80px;
        height: 10px;
        bottom: -9px;
        left: 26px;
    }

    .helper .helper-byn {
        flex-direction: column;
    }

    .helper .helper-byn .button:first-child {
        margin-right: 0;
        margin-bottom: 16px;
    }

    .helper-img::before {
        left: 55px;
    }

    /*EN--------------------------------*/
    .huntbao.huntbao-en .huntbao-meet h3 {
        font-size: 30px;
    }
    .huntbao.huntbao-en .huntbao-meet p {
        font-size: 18px;
    }
    .huntbao.huntbao-en .huntbao-meet a {
        font-size: 12px;
    }

}

@media (max-width: 400px) {
    
    .banner::after {
        left: 3vw;
    }
    .huntbao-pic {
        height: 450px;
    }
    .huntbao-mascot {
        bottom: 70px;        
    }
    .helper-img::before {
        left: 5%;
    }
}