<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    padding: 0%;
    margin: 0%; 
    font-size:16px;
 }
 
 body {
     background-color: burlywood;
     position: relative;
     display: flex;
     flex-wrap: wrap; /* å…è®¸å­å…ƒç´&nbsp;æ¢è¡Œ */
     flex-direction: row; /* æ°´å¹³æŽ’åˆ—å­å…ƒç´&nbsp; */
     /* min-height: 100vh;  ç¡®ä¿bodyè‡³å°‘å&nbsp;æ®è§†å£é«˜åº¦ */
}
 
/* å¤´éƒ¨å›¾ç‰‡ */
 header {
     width: 100%;
     height: 16vh; /* å&nbsp;é¡µé¢çš„16% */
     text-align: center;
     position: relative;
     display: flex;
     justify-content: center;
     align-items: center;
     order: 1;
 }

header img {
    max-width: 100%;
    height: auto;
}

/* å¯¼èˆªæ&nbsp; */
nav {
    width: 100%;
    font-size: 1.5rem;
    box-sizing: border-box;
    order: 2; /* è®©navå±…å³ */
    display: flex;
    flex-direction: row; /* æ°´å¹³æŽ’åˆ—å­å…ƒç´&nbsp;*/
    justify-content: center; /* æ°´å¹³å±…ä¸­ */
    padding-left: 2px;
    padding-right: 2px;
    margin-left: 2px;
    margin-right: 2px
}

nav div {
    padding: 2px;
    margin: 2px;
}


footer {
    width: 100%;
    height: 10vh; /* å&nbsp;é¡µé¢çš„10% */
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 4;
}

.container {
    width: 100%;
    max-width: 900px;
    
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    order: 3;
}

div.container h1  {
    text-align: center;
    font-size: 2em;
}

div.container p {
    text-indent: 2em;
    font-size: 1.5em;
}

div.container h2  {
    text-align: center;
    font-size: 1.75em;
}

div.container h3  {
    text-indent: 2em;
    font-size: 1.5em;
}

div.container table  {
    padding-left: 50px;
}

div.container table th  {
    text-align: left;
    font-size: 1.5em;
}

div.container table td  {
    width: 75px;
    padding: 5px 5px;
    font-size: 1.5em;
}

.imgcontainer {
    width: 100%;
    max-width: 900px;
    
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    order: 3;
}

div.imgcontainer img {
    width: 100%;
    height: auto;
    display: block;
}


/* å¹³æ¿å±å¹• */
@media (max-width: 1024px) {
    nav {
        width: 15%; /* å¢žåŠ&nbsp;å¯¼èˆªæ&nbsp;å®½åº¦ */
        font-size: 1.2rem; /* å‡å°å­—ä½“å¤§å° */
    }
    article {
        width: 85%; /* å‡å°æ–‡ç«&nbsp;åŒºåŸŸå®½åº¦ */
        padding: 2rem; /* å‡å°å†…è¾¹è· */
    }
}

/* æ‰‹æœºå±å¹• */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column; /* åž‚ç›´æŽ’åˆ—å¯¼èˆªæ&nbsp;å’Œæ–‡ç«&nbsp;åŒºåŸŸ */
    }
    nav {
        width: 100%; /* å¯¼èˆªæ&nbsp;å&nbsp;æ»¡å®½åº¦ */
        height: auto; /* é«˜åº¦è‡ªé€‚åº” */
        order: 1; /* å¯¼èˆªæ&nbsp;å±…ä¸Š */
        flex-direction: column; /* åž‚ç›´æŽ’åˆ—å¯¼èˆªé¡¹ */
    }
    article {
        width: 100%; /* æ–‡ç«&nbsp;åŒºåŸŸå&nbsp;æ»¡å®½åº¦ */
        padding: 1rem; /* å‡å°å†…è¾¹è· */
        order: 2; /* æ–‡ç«&nbsp;åŒºåŸŸå±…ä¸‹ */
    }
    .carousel-container {
        height: 20vh;
    }
}</pre></body></html>