<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.content-list {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding-top: 20px;
}

.content-item {
    width: 220px;
    height: 365px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.content-item img {
    width: 100%;
    height: 293px;
    object-fit: cover;
}

.content-item h3 {
    margin: 0;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

/* åˆ†é¡µæ&nbsp;·å¼ */
.pagination {
    width: 1200px;
    margin: 20px auto;
    text-align: center;
}

.pagination a {
    color: #333;
    padding: 10px 15px;
    text-decoration: none;
    display: inline-block;
    margin: 0 5px;
    border-radius: 5px;
    background-color: #f0f0f0;
}

.pagination a.active {
    background-color: #333;
    color: #fff;
}

.pagination a:hover {
    background-color: #ddd;
}

/* å†…å®¹è¯¦æƒ…é¡µæ&nbsp;·å¼ */
.content-container {
    width: 1200px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
    margin-bottom: 20px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 20px;
}

.title {
    font-size: 2.5em;
    color: #333;
    margin: 0 0 10px;
    font-weight: bold;
}

.meta {
    color: #777;
    font-size: 0.9em;
}

.author-info {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.author-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
    border: 2px solid #ddd;
}

.author-details {
    gap: 10px;
    color: #555;
}

.author-details h4 {
    margin: 0;
    font-size: 1.2em;
    color: #333;
}

.author-details div {
    display: flex;
    flex-direction: column;
}

.author-details p {
    margin: 5px 0;
    font-size: 0.95em;
}

.slider {
    width: 510px;
    float: left; /* ä½¿ç”¨floatä½¿å†…å®¹å›´ç»•å›¾ç‰‡ */
    margin-right: 20px;
    margin-bottom: 10px;
    position: relative; /* æ·»åŠ&nbsp;è¿™è¡Œ */
}

.slides {
    display: flex;
    overflow: hidden;
}

.slide {
    min-width: 100%;
    transition: transform 0.5s ease;
}

.slide img {
    width: 100%;
    border-radius: 10px;
}

.arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    opacity: 0; /* é»˜è®¤éšè—ç®­å¤´ */
    transition: opacity 0.3s ease; /* æ·»åŠ&nbsp;è¿‡æ¸¡æ•ˆæžœ */
}

.slider:hover .arrows {
    opacity: 1; /* å½“é¼&nbsp;æ&nbsp;‡æ‚¬åœåœ¨sliderä¸Šæ—¶æ˜¾ç¤ºç®­å¤´ */
}

.arrows span {
    cursor: pointer;
    font-size: 2em;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 50%;
}

.dots {
    position: absolute;
    bottom: 20px;
    left: 0; /* æ·»åŠ&nbsp;è¿™è¡Œ */
    right: 0; /* æ·»åŠ&nbsp;è¿™è¡Œ */
    width: 100%;
    display: flex;
    justify-content: center;
}

.dots .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 3px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dots .dot.active {
    background-color: #717171;
}

.content {
    text-align: justify;
}

.hint {
    margin-top: 20px;
    color: #888;
    font-size: 0.9em;
    clear: both; /* ç¡®ä¿æç¤ºä¿¡æ¯ä¸ä¼šæµ®åŠ¨åˆ°å›¾ç‰‡æ—è¾¹ */
}</pre></body></html>