@charset "UTF-8";


.flow_page{
    display: flex;
}

.left_area{
    position: fixed;
}



/* ============================= 右側內容 ================================= */

.right_area::after{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 300px 0 0 calc(100vw + -200px);
    border-color: transparent transparent transparent #15abbf;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.right_area::before{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 200px 1200px;
    border-color: transparent transparent #118b9c transparent;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.img_box{
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.img_box img{
    width: 100%;
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px);
}

.list_box{
    width: 100%;
    height: auto;
    position: absolute;
    top: calc(50% + -225px);
    z-index: 2;
    display: flex;
    justify-content: center;
}

.list_box li{
    width: 320px;
    height: 420px;
    margin-left: 50px;
    margin-right: 50px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.list_box li::before{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 30px;
    border-color: transparent transparent transparent #f34b31;
    position: absolute;
    right: -70px;
    top: calc(50% + -15px);
}

.list_box li:last-child::before{
    content: "";
    display: none;
}

.list_box li .icon{
    color: #2c334b;
    font-size: 80px;
    display: block;
    text-align: center;
    margin-top: 30%;
}

.list_box li .title{
    color: #2c334b;
    font-size: 24px;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 600;
    display: block;
    text-align: center;
    margin-top: 30px;
}

.list_box li .text{
    width: 80%;
    margin: auto;
    color: #686f85;
    font-size: 16px;
    font-family: 'Noto Sans TC', sans-serif;
    line-height: 1.44;
    display: block;
    text-align: center;
    margin-top: 20px;
    letter-spacing: 2px;
}


@media screen and (max-width: 1200px){
    .list_box{
        display: inline-block;
        top: 0;
    }
    .list_box li{
        margin: auto;
        width: 300px;
        height: 350px;
        margin-bottom: 15%;
        margin-top: 7.5%;
    }
    .list_box li .icon{
        padding-top: 20%;
        margin-top: unset;
    }
    .list_box li .title{
        position: absolute;
        top: 40%;
        left: 22.5%;
    }
    .list_box li .text{
        position: absolute;
        top: 55%;
        width: 80%;
        left: 10%;
    }
    .list_box li::before{
        border-width: 25px 25px 0 25px;
        border-color: #f34b31 transparent transparent transparent;
        right: 40%;
        top: calc(100% + 15px);
    }
    .img_box{
        position: fixed;
    }
    .right_area::before,
    .right_area::after{
        display: none;
    }
    .img_box img {
        width: 100%;
        -webkit-filter: blur(10px);
        -moz-filter: blur(10px);
        -o-filter: blur(10px);
        -ms-filter: blur(10px);
        filter: blur(10px);
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 499px){
    .list_box{
        padding-bottom: 80px;
    }
}