.position_box {
    width: 100%;
    height: calc(20px + 5rem);
    background: url(../images/news_banner.jpg) no-repeat;
    background-size: cover;

    .position_main {
        max-width: 1500px;
        width: 85%;
        margin: auto;
        height: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: calc(1px + 0.2rem);

        p {
            font-family: Archivo, Archivo;
            font-weight: 400;
            font-size: calc(10px + 0.5rem);
            color: #FFFFFF;
            line-height: calc(10px + 1rem);
            letter-spacing: 1px;

        }
    }
}

.navigation_box {
    width: 100%;

    .navigation {
        max-width: 1500px;
        width: 85%;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;

        border-bottom: 2px #F2F3F5 solid;

        .navigation_item {
            padding: 0 calc(18px + 2rem);
            padding-top: calc(10px + 2rem);
            padding-bottom: calc(10px + 1rem);

            font-family: Inter_Regular;
            font-weight: 400;
            font-size: calc(10px + 0.5rem);
            color: #666666;
            line-height: calc(10px + 0.5rem);
            letter-spacing: 1px;
            text-align: center;

        }

        .navigation_item_act {
            color: #104D8C;
            border-bottom: 2px #104D8C solid;
        }
    }
}

.news_list_box {
    width: 100%;
    padding-bottom: calc(1px + 3rem);

    .news_list {
        max-width: 1500px;
        width: 85%;
        margin: auto;

        .news_list_item {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: calc(15px + 2rem);
            padding: calc(18px + 2rem) 0;
            border-bottom: 2px #F2F3F5 solid;
            transition: .5s;

            .news_list_pic {
                width: calc(14px + 20rem);
                height: calc(40px + 10rem);

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            .news_list_con {
                width: calc(200px + 30rem);
                height: calc(13px + 10rem);
                overflow: hidden;

                .p1 {
                    font-family: Inter_Semi_Bold;
                    font-weight: normal;
                    font-size: calc(10px + 0.5rem);
                    color: #333333;
                    line-height: calc(10px + 2rem);
                    letter-spacing: 1px;
                }

                .p2 {
                    font-family: Inter_Regular;
                    font-weight: 400;
                    font-size: calc(6px + 0.5rem);
                    color: #666666;
                    line-height: calc(8px + 1rem);
                }
            }

            .news_list_time {
                height: calc(13px + 10rem);
                font-family: Inter_Medium;
                font-weight: 500;
                font-size: calc(6px + 0.5rem);
                color: #999999;
                line-height: calc(10px + 0.5rem);
                padding-top: calc(5px + 0.5rem);

            }
        }

        .news_list_item:hover {
            background-color: #F2F3F5;

            .p1 {
                color: #104D8C;
            }

            .news_list_time {
                color: #00A1E5;
            }
        }
    }
}

@media (max-width: 800px) {
    .news_list_box {
        .news_list {
            .news_list_item {
                display: flex;
                flex-direction: column;
                justify-content: center;
                gap: calc(10px + 1rem);

                .news_list_pic {
                    width: 100%;
                    height: calc(40px + 36rem);
                }

                .news_list_con {
                    padding: 0 calc(10px + 0.5rem);
                    width: 100%;
                    height: calc(13px + 31rem);

                    .p1 {
                        font-size: calc(12px + 1rem);
                        line-height: 1.5;
                    }

                    .p2 {
                        font-size: calc(10px + 1rem);
                        line-height: 1.5;
                    }
                }
                .news_list_time{
                    width: 100%;
                    padding: 0 calc(10px + 0.5rem);
                    font-size: calc(12px + 1rem);
                }
            }
        }
    }
}