﻿#updateNews {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navigate-title {
    margin-top: 10px;
    margin-left: 8%;
}

.search {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    margin-right: 8%;
    align-items: center;
    position: relative;
}

    .search .searchInput {
        border: 0;
        padding: 5px 5px 10px;
        border-bottom: 1px solid #666666;
    }

    .search i {
        position: absolute;
        color: #666666;
    }

.table-container {
    flex: 1;
}

table {
    margin: 2% auto;
    width: 85%;
    border-collapse: collapse;
}

thead {
    background-color: #1A82D9;
    color: white;
}

tbody tr {
    border-bottom: 1px solid #dddddd;
    height: 100px;
}

    tbody tr:nth-child(2n+1) {
        background-color: #FBFDFF;
    }

th {
    text-align: center;
    padding: 10px 5px;
    letter-spacing: 1px;
    font-size: 1.2rem;
}

.sortIcon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('../../Images/UpdateNews/sort-down.svg');
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

/*更新日期*/
th:first-child, td:first-child {
    width: 20%;
    text-align: center;
}

tbody tr:hover {
    background-color: #F0F9FF;
}

td {
    color: #666666;
    overflow: auto;
    line-height: 1.2;
}

    td:nth-child(2n) {
        padding: 1% 5% 1% 1%;
    }

.pageGroup {
    display: flex;
    justify-content: center;
    color: #666666;
    margin: 20px 0;
}

.total-count {
    align-content: center;
    margin-right: 10px;
}

.pageGroup div {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    text-align: center;
    align-content: center;
    cursor: pointer;
}

.pageGroup .activePage {
    background-color: #1A82D9;
    color: white;
}

.displayMore {
    display: none;
    background-color: #1A82D9;
    color: white;
    text-align: center;
    font-size: 1.2rem;
    padding: 10px;
    margin: 5%;
    cursor: pointer;
}

.backToTop {
    background-image: url('../../../../../Content/Images/Index/icon_回頂端.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 1;
    cursor: pointer;
    background-color: #FFB82A;
    border-radius: 5px;
}


[v-cloak] {
    display: none;
}

@media only screen and (max-width: 576px) {

    th {
        font-size: 1rem;
    }

        th:first-child {
            width: 32%;
        }

    td {
        height: 100%;
        font-size: 0.9rem;
        line-height: 1.35;
        overflow-x: hidden;
    }

        td:nth-child(2n) {
            padding: 3% 1%;
        }

    .sortIcon {
        width: 16px;
        height: 16px;
    }

    .search {
        width: 100%;
        justify-content: center;
    }

        .search .searchInput {
            width: 85%;
        }

        .search i {
            right: 10%;
        }

    .displayMore {
        display: block;
    }

    .pageGroup {
        display: none;
    }
}
