/* CSS Document */

body{
font-family: "Oldenburg", "Noto Sans SC";
font-size: 13px;
	background-color:antiquewhite;
margin-left: auto;
margin-right: auto;
width: 600px; /* 宽度 */
height: auto; /* 高度 */
overflow:auto; /* 防止溢出 */}
.foot{text-align: center;
margin-top: 20px;}
.head{
	font-size:35px;
	background-color: black;
	color:white;
	margin-bottom: 15px;
}
        table {
            width: 100%; /* 设置表格宽度 */
            border-collapse: collapse; /* 去除单元格之间的空隙 */
        }

        th, td {
            width: 50%; /* 强制左右列宽度对齐 */
            vertical-align: top; /* 垂直对齐到顶部 */
            text-align: left; /* 文本左对齐 */
            box-sizing: border-box; /* 确保 padding 不影响宽度 */
        }

        /* 长内容的样式 */

/* updates滚动框外部容器样式 */
.updates_container {

            box-sizing: border-box; /* 确保内边距在总宽度内 */

background: white; /* 渐变背景颜色 */
margin-top: 5px;
height: 268px; /* 高度 */
border: 1px solid #333; /* 边框 */
padding: 10px; /* 内边距 */
overflow-y: scroll; /* 垂直滚动 */
/* overflow: auto; 可以实现水平和垂直滚动 */
}

/* 长内容的样式 */
.updates_content {
margin-top: -15px;
font-size: 11px;
}
a {
   color: white; /* 继承父元素的文字颜色 */
   text-decoration: none; /* 去掉下划线，可选 */
   background-color: black; /* 默认无背景 */
}

a.pic{
	background-color: transparent;
}
.quote{
	margin-left: 250px;
}

.gallery {
            width: 85px; /* 固定正方形的宽 */
            height: 85px; /* 固定正方形的高 */
            border: 1px solid #333; /* 边框 */
			margin-right: 5px;
            overflow: hidden; /* 隐藏溢出的部分 */
            display: inline-block; /* 让它像块元素一样排列 */
        }

        .gallery img {
            width: 100%; /* 图片宽度占满容器 */
            height: 100%; /* 图片高度占满容器 */
            object-fit: cover; /* 保持比例填充容器，裁剪多余部分 */
        }