.board_eventBlock {
    width: 100%;
    height: 200px;
    position: relative;
    background: linear-gradient(97.04deg, #ACF9FF -16.59%, #F3E8FF 8.44%, #E9D4FF 84.02%, #ACF9FF 121.87%);
    display: flex;
    border-radius: 8px;
    z-index: 0;
    margin-bottom: 2.5rem;
}
.board_eventBlock > img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.board_eventBlock .bannerTextArea {
    box-sizing: border-box;
    width: 55%;
    height: 100%;
    padding-top: calc(200px* 0.09);
    padding-bottom: calc(200px* 0.05);
    padding-left: 3.5%;
    font-weight: bold;
    /* flex */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.board_eventBlock .bannerTextArea .title>h1 {
    font-size: calc(200px* 0.18);
    line-height: calc(200px* 0.2);
    font-weight: 900;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    background: linear-gradient(to bottom, #621c9b 0%,#8d24ec 50%,#d8b3ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.board_eventBlock .bannerTextArea .title>h1::before{
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    color: white;
    -webkit-text-stroke: 6px white;
    text-shadow: 
        0 1px 4px rgba(0, 0, 0, 0.8),
        0 1px 8px rgba(0, 0, 0, 0.8);
}

.board_eventBlock .bannerTextArea .title {
    margin-bottom: calc(200px* 0.08);
}

.board_eventBlock .bannerTextArea .subTitle {
    margin-bottom: calc(200px* 0.05);
}

.board_eventBlock .bannerTextArea .subTitle>p {
    font-size: calc(200px* 0.11);
    font-weight: 900;
    color: #8D24EC;
    line-height: calc(200px* 0.15);
    overflow: hidden;
    word-break: keep-all;
    margin: 0;  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.board_eventBlock .bannerTextArea .content>p {
    font-size: calc(200px* 0.09);
    color: #581A89;
    line-height: calc(200px* 0.15);
    overflow: hidden;
    word-break: keep-all;
    margin: 0;
}

.board_eventBlock .bannerImgArea {
    box-sizing: border-box;
    width: 45%;
    height: 100%;
    padding-right: 4%;
    padding-top: calc(200px* 0.07);
    padding-bottom: calc(200px* 0.05);
    overflow: hidden;
    text-align: center;
    position: relative;
}

.board_eventBlock .bannerImgArea img {
    width: 410px;
    position: absolute;
    bottom: -112px;
    right: -37px;
}

@media screen and (max-width: 1200px) {
    .board_eventBlock .bannerImgArea {
        display: flex;
        align-items: center;
    }

    .board_eventBlock .bannerImgArea img {
        height: auto;
        max-width: 100%;
    }
}

@media screen and (max-width: 999px) {
    .board_eventBlock .bannerTextArea {
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
    }

    .board_eventBlock .bannerTextArea .title {
        font-size: 52px;
    }

    .board_eventBlock .bannerTextArea .subTitle {
        font-size: 24px;
        height: auto;
        line-height: 28px;
    }
}

@media screen and (max-width: 991px) {
    .board_eventBlock {
        height: 220px;
        background: url('/static/img/mobile/banner/event.webp') no-repeat;
        background-size: cover;
    }

    .board_eventBlock .bannerTextArea {
        width: 100%;
        height: auto;
        padding: 20px;
        float: none;
    }

    .board_eventBlock .bannerTextArea .title {
        margin-bottom: 8px;
    }

    .board_eventBlock .bannerTextArea .subTitle {
        height: auto;
        margin-bottom: 0;
    }

    .board_eventBlock .bannerTextArea .title>h1 {
        font-family: 'Black Han Sans', sans-serif !important;
        background: linear-gradient(180deg, #3b1a57 0%, #954fca 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }
    
    .board_eventBlock .bannerTextArea .subTitle>p {
        font-size: 20px;
        color: #3B0566;
        line-height: 1.3;
        text-shadow: none;
    }

    .board_eventBlock .bannerImgArea,
    .board_eventBlock .bannerTextArea .content {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .board_eventBlock {
        height: 150px;
    }
}

@media screen and (max-width: 565px) {
    .board_eventBlock {
        background-position: center right;
    }

    .board_eventBlock .bannerTextArea {
        min-height: 200px;
        padding: 15px 10px;
    }

    .board_eventBlock .bannerTextArea .title {
        margin-bottom: 0;
    }

    .board_eventBlock .bannerTextArea .title>h1 {
        font-size: calc(200px* 0.165);
    }

    .board_eventBlock .bannerTextArea .subTitle {
        margin-bottom: calc(200px* 0.06);
    }

    .board_eventBlock .bannerTextArea .subTitle>p {
        font-size: 16px;
        letter-spacing: 1px;
        line-height: 1.4;
    }
}