:root { 
        --gray-scale-ab: #f4f4f4;
        --persimmon-orange-color: #ff5722;

        --vivid-orange-color: #FF6100;
        --orange-light-color: #FFEFE6;
        --standard-black-color: #202020;
        --standard-gary-color: #E0E0E0;
        --pioneer-green-color: #BBDAAC;
        --reliable-blue-color: #AEDCE7;

        --font-size-tiny: 0.875em;
        --font-size-general: 1em;
        --font-size-small: 1.125em;
        --font-size-medium: 1.25em;
        --font-larger-text: 1.5em;

        --table-basesize:1010px;
} 
.indianred{
    color: #cd5c5c;
}
.red{
    color: #ff0000;
}
.mediumblue{
    color: mediumblue;
}
 body { 
    font-size: 100%;
    font-family: "Noto Sans TC", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    margin: 0px;
    padding: 0px;
    background-color: var(--vivid-orange-color);
    display: flex;
    flex-direction: column;
    align-items: center;
} 
h1 { 
    font-size: 2em;
    color: #fff;
} 
.twnic-table { 
    width: var(--table-basesize);
    border-collapse: collapse;
} 
.twnic-table thead th,
.twnic-table tbody td{
    border: 1px solid var(--standard-black-color);
    padding: 6px 4px;
}
.twnic-table.course-lsit thead th { 
    background-color:var(--standard-black-color);
    color: #fff;
} 
.twnic-table thead th { 
    background-color: #d3d3d3;
    color: var(--standard-black-color);
} 
.twnic-table tbody td { 
    background-color: #fff;
} 
.twnic-table tbody td:first-child { 
    text-align: center;
} 
.twnic-table tbody td p{
    margin: 0px;
    padding: 0px;
}
.twnic-table .info-title{
    font-size: var(--font-size-medium);
    margin-bottom: 1em;
}
.training-contents{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.twnic-table tr:hover td{
    background-color: var(--gray-scale-ab);
}
.twnic-table .subheader td{
    text-align: center;
    font-weight: 500;
    background-color: #d3d3d3;
}
hr {
    width: var(--table-basesize);
    border: none;
    border-top: 1px solid var(--orange-light-color);
    margin: 50px 0;
}
.syllabus-header{
    width: var(--table-basesize);
    padding: 10px;
    box-sizing: border-box;
}
.syllabus-header h2{
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 2em;
}
.syllabus-header.light{

    color: var(--pioneer-green-color);
    background-color: var(--standard-black-color);
}
.syllabus-header.default{

    color: var(--reliable-blue-color);
        background-color: var(--standard-black-color);
}
.course-info{
    margin-top: 10px;
    text-align: center;
    font-weight: 600;
}
.course-info a{
    color: #001cb7;
}
.course-lookup{
    height: 126px;
    width: var(--table-basesize);
    position: relative;
}
.course-lookup a{
    display: block;
    width: 150px;
    position: absolute;
    top: 35px;
}
.course-lookup a img{
    width: inherit;
    height: auto;
}
table.twnic-table.course-lsit td:last-child {
    text-align: center;
}
a.red:hover{
    color: #000!important;
}