/*
    全局样式
 */

body {
    margin: 0;
    padding: 10px;

    line-height: 1.5;
    font-family: arial, verdana, sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

body a{
    text-decoration: none;
}

header {
    min-width: 800px;
    background: linear-gradient(to right, #015699, #0166b9,#015da6, #024777);

}

header img {
    margin: 10px 25px;
}

header .top-menu {
    background-color: #25455c;
    padding: 0 12px;

    display: flex;

    align-items: center;
}

header .top-menu a {
    color: #FFFFFF;
    margin-right: 15px;


    text-decoration: none;

    transition: all 0.3s ease;
}
header .top-menu a:hover {
    background-color: #0166b9;
    transform: scale(1.05);
}

main{
    min-width: 800px;

    display: flex;
    /* 水平靠左 */
    justify-content: flex-start;
    align-items: center;
}

table {
    border-collapse: collapse;
}

table .title-cell {
    margin: 20px 0 0 0;
    font-weight: bold;


}

table .text-col {
    padding: 5px 10px;
    margin: 0;

    list-style: none;

}
table .text-col a,
table .title-cell a{
    color: #0969da;
}

table .disabled-link {
    /* 禁用鼠标事件 */
    pointer-events: none;
    color: gray;
    cursor: not-allowed;

}

table .child {
    width: 32px;
    height: 32px;
    object-fit: cover;
}

footer {
    min-width: 800px;
    text-align: center;

}







