div{
    box-sizing: border-box;
}
a{
    color: inherit;
    text-decoration: none;
}

.wrap{
    margin-top: 90px;
}

#news_wrap>div>h2{
    line-height: 1em;
    font-family: var(--ms_font_family);
    margin-bottom: var(--white_space_pc1);
}
#news_wrap>div>h3{
    margin-bottom: var(--white_space_pc2);
}

/* table {
    width: 100%;
}


thead {
    background-color: rgb(251, 251, 251);
    border-bottom: rgb(150, 150, 150) 1.5px solid;
}
th {
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-weight: bold;
}

.th_No {
    width: 5%; 
}
.th_title {
    width: 70%;   
}

td {
    border-bottom : solid 0.5px rgb(157, 157, 157);
    text-align: center;
    padding:10px;
}

.content_wrap {
    width: 100%;
    height: 500px;
    background-color: lightgray;
    text-align: center;
    border-bottom: 1px solid black;
}   
.content_wrap img {
    width: 100%;
    text-align: center;
    border: 1px solid rgb(245, 245, 245);
}   



.list_back {
    padding: 10px 20px;
    background-color: black;
    color: aliceblue;
    border-radius: 5px;
    margin: 10px auto;

} */

.news_wrap{
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: row wrap;
    border-top: 1px solid black;
    border-bottom: 0.1px solid lightgray;
}
.news_menu{
    display: block;
    width: 30%;
    background-color: #fff;
    align-items: center;
    padding: 5px 10px;
}
.menu_title{
    font-size:20px;
    font-weight: bold;
}

.menu_date_moblie{
    display: none;
}

.news_menu>div{
    padding: 15px 0;
}


.news_menu>div:nth-child(2){
    color: #999999;
}

.download-file{
    color: #999999;
    /* background-color: blue; */
   display: flex;
   cursor: pointer;
}

.download-file:hover{
    color:aquamarine;
    
}
.export_img{
    width: 25px;
    height: 25px;
}

.export_img img{
    width: 100%;
    display: block;

}

.download-file a{
    width: 20%;
}




.news_menu>div:nth-child(2):after{
    content: "";
    display: block;
    width: 50%;
    height: 0.5px;
    background-color: lightgray;
    margin: 20px 0 -10px 0;
}

.news_contents{
    width: 70%;
    height: auto;
    background-color: lightcyan;
    overflow: hidden;
}
.news_title{
    width: 100%;
    padding: 20px 0 70px 0;
    background-color: white;
    text-align: center;
    color: #999999;
    /* border-bottom: 1px solid lightgray; */
}

.news_contents_box{
    width: 100%;
    height: auto;
    background-color: #fff;
}
.news_contents_box img{
    width: 100%;
}


.list_btn{
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 10px;
    float: right;
    background-color: black;
    color: #fff;
    cursor: pointer;
}




/* ------------------------------------------------------------------------------ */

@media all and (max-width:500px){
   
   .news_wrap{
    width: 95%;
   }
   
    .news_menu{
    display: none;
   }

   .menu_date_moblie{
    display: block;
    padding-top: 30px;
    width: 100%;
    font-size: 14px;
    /* background-color: aqua; */
    text-align: right;
   }

   .news_contents{
    width: 100%;
   }

   .list_btn{
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
   }
}