@charset "utf-8";
@import url("gwgl.css");
/* CSS Document */
 <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            min-height: 130vh;
            background-color: #f4f4f4;
            background-repeat: no-repeat;
        }
        header {
            background-image: url("log/hengfu3.jpg");
            color: black;
            padding: 10px 0;
            text-align: center;
            font-size: 50px;
        }
        main {
            flex: 1;
            padding: 20px;
            background-color: #333; /* 修改正文背景色为深灰色 */
            background-image: url(log/hengfu2.jpg);
            color: white; /* 修改正文文字颜色为白色 */
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 10px 0;
            font-size: 14px;
        }
        .thumbnail-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start; /* 修改为左对齐 */
            width: 100%;
        }
        .thumbnail {
            cursor: pointer;
            width: 250px; /* 缩略图宽度 */
            height: 150px; /* 缩略图高度 */
            object-fit: cover; /* 确保缩略图填充整个区域 */
            margin: 10px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        .thumbnail-info {
            text-align: center;
            font-size: 20px;
            color: #333; /* 修改文字颜色为浅灰色 */
            margin-top: 0px;
        }
        .fileinfo {
            margin-top: 10px;
            font-size: 12px;
            color: #999;
            text-align: center;
        }
        @media (max-width: 768px) {
            .thumbnail {
                width: 100%;
                height: auto;
            }
        }
        .STYLE2 {font-size: x-large}
  </style>
