@font-face {
    font-family: 'AdobeSongStd-Light';
    src: url(../fonts/AdobeSongStd-Light.otf) format('opentype');
}

@font-face {
    font-family: 'Arial Bold';
    src: url('../fonts/Arial Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Arial';
    src: url(../fonts/Arial.ttf) format('truetype');
}

@font-face {
    font-family: 'Avenir';
    src: url(../fonts/Avenir.ttc) format('truetype');
}

@font-face {
    font-family: '1456';
    src: url(../fonts/1456.otf) format('opentype');
}

body {
    margin: 0px;
    padding: 0px;
    font-family: 'Arial', sans-serif;
    min-width: 1200px
}

body::-webkit-scrollbar {
    display: none;
}

.container {
    width: 100%;
    height: auto;
}

@keyframes intoAni {
    0% {
        margin-top: 10rem;
        opacity: 0;
    }

    100% {
        margin-top: 0rem;
        opacity: 1;
    }
}

@keyframes opacityInto {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

a {
    text-decoration: none;
}

.return-link {
    width: 100%;
    height: 4rem;
    background: white;
}

.return-link-1 {
    width: 80%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.return-link-1 a {
    width: auto;
    height: auto;
    font-size: 1.8rem;
    color: #0047bb !important;
    display: inline-block;
    margin-left: 4rem;
}

.title {
    font-size: 2rem;
    color: #0047bb;
    text-align: center;
    font-family: "Arial Bold", sans-serif;
    font-weight: bold;
}

.container {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

@media screen and (max-width: 1280px) {

    .return-link-1 a {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    body {
        min-width: 0;
    }

    .content-1 {
        height: 15rem !important;
    }

    .title {
        font-size: 1rem;
    }


    .list{
        width: auto;
    }

    .list_item img {
        height: 200px !important;
    }
}



@media (min-width:1400px) {
    .container {
        max-width: 100% !important;
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 100% !important;
    }
}

@media (min-width:992px) {
    .container {
        max-width: 100% !important;
    }
}

@media (min-width:768px) {
    .container {
        max-width: 100% !important;
    }

}

@media (min-width:576px) {
    .container {
        max-width: 100% !important;
    }
}


.page_bar {
    width: 80%;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/**
* 列表部分样式
**/
.list_item {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    border-bottom: 1px dashed #d6d6d6;
    text-decoration: none;
}

.list_item:hover {
    color: #0047bb;
    border-bottom: 1px solid #d6d6d6;
}

.list_item_title {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
}

.item_title {
    font-size: clamp(12px, 2vw, 20px);
}

.item_date {
    color: var(--bs-gray-500);
}