/* <style> */
/* 全局樣式 */
body {
    /* font-family: 'Arial', sans-serif; */
    font-family:  "Consolas", monospace , sans-serif; 
    /* margin: 0; */
    padding: 5px;
    background-color: #f0f8ff;
    color: #333;          
    text-align: center;            
    margin: 0 auto;  /* 置中 ***/
    text-align: center;   /* 置中 ***/
}

/* 頁面標題 */
h1, h2 {
    color: #2c3e50;
    text-align: center ;   /* 置中 */
    margin-bottom: 20px;
}

/* 標題區域 width: 100%; */
.header-table {
    width: 100%;
    max-width: 640px;
     
    border-collapse: collapse;
    margin-bottom: 5px;

    text-align: center;
    margin: 0 auto;  /* 置中 ***/
    text-align: center;   /* 置中 ***/
    
}

.header-table tr {
    text-align: center ;   /* 置中 */
    text-align: center;
    padding: 5px; 
}
.header-table th {
    text-align: center ;   /* 置中 */
    text-align: center;
    padding: 5px;
}
.header-table td {
    text-align: center ;   /* 置左 */
    text-align: center;
    padding: 5px;
    /* font-size: 16px; */
}
.header-table img {
    border-radius: 5px;
}

/* 標題區域 width: 100%; */
.cyh-table {
    
    /* width: 70%;  */
    border-collapse: collapse;
    margin-bottom: 5px;            
    border: 0px solid #ddd;
    background-color: #f0f8ff;
    text-align: center ;   /* 置中 */
    text-align: center;
}

.cyh-table th {
    text-align: center ;   /* 置中 */
    text-align: center;
    padding: 5px;
    background-color:  #f0f8ff;
    border: 0px solid #ddd;            
    color: black;
}

.cyh-table img {
    border-radius: 5px;
}


/* 表格樣式   width: 100%;  */
table {
    
    /* width: 70%;  */
    border: 1px solid #ddd;
    border-collapse: collapse;
    margin-bottom: 5px;
    background-color: #fff;

    text-align: center;
    margin: 0 auto;  /* 置中 ***/
    text-align: center;   /* 置中 ***/
} 

tr  {
    padding: 5px;
    text-align: center ;   /* 置中 */
    text-align: center;
    border-bottom: 5px solid #ddd;
  /*   font-size: 16px; */
    white-space: nowrap;    /*  禁止文字自動換行 */
}

th  {
    padding: 5px;
    text-align: center ;   /* 置中 */
    text-align: center;
    border-bottom: 5px solid #ddd;
   /* font-size: 16px; */
    white-space: nowrap;    /*  禁止文字自動換行 */
}

td {
    padding: 5px;
    text-align: center ;   /* 置中 */
    text-align: center;
    border-bottom: 5px solid #ddd;
    /* font-size: 14px; */
    white-space: nowrap;    /*  禁止文字自動換行 */
}

/* 表格標題 */
th {
    background-color: #3498db;
    color: white;
}

/* 表格內容 */
tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #eaf1f8;
}

/* 連結樣式 */
a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #1d6fa5;
    text-decoration: underline;
}

/* 禁止右鍵菜單 */
.no-context-menu {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


@media (max-width: 550px) {
    .header-table {
        font-size: 16px;
    }
}

@media (min-width: 551px) {
    .header-table {
        font-size: 20px;
    }
}




/* </style> */