<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    background: #333;
}

#title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10%;
    /* background: #555; */
    color: white;
    font-size: 35px;
    /* å¼¹æ€§ç›’å­å¸ƒå±€ */
    display: flex;
    /* æ°´å¹³å‰§ä¸­*/
    justify-content: center;
    /* åž‚ç›´å±…ä¸­*/
    align-items: center;
}

#left1 {
    background: #555;
    width: 30%;
    height: 45%;
    position: absolute;
    top: 10%;
    left: 0;
}

#left2 {
    background: #666;
    width: 30%;
    height: 45%;
    position: absolute;
    top: 55%;
    left: 0;
}

#center1 {
    position: absolute;
    top: 10%;
    left: 30%;
    width: 40%;
    height: 25%;
    /* background: #777; */
    display: flex;
    flex-wrap: wrap;
    /*æ–‡æœ¬è¶…å‡ºåŽæ¢è¡Œ*/
}

.item {
    width: 33%;
}

.number {
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: gold;
    font-size: 30px;
    font-weight: bold;
}

.text {
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

#center2 {
    position: absolute;
    top: 35%;
    left: 30%;
    width: 40%;
    height: 65%;
    background: #888;
}

#right1 {
    position: absolute;
    top: 10%;
    right: 0;
    width: 30%;
    height: 45%;
    background: #999;
}

#right2 {
    position: absolute;
    top: 55%;
    right: 0;
    width: 30%;
    height: 45%;
    background: #333;
}</pre></body></html>