/* CSS Document */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* 极其重要：让 height 包含 padding 和 border */
}
body{
font-family: "Huiwen-Zhengkai";
font-size: 16px;
	color: ghostwhite;
	align-items: flex-end;
    background:url("../pic/CARPET06.png");
	justify-content: center; /* 让整体内容在水平方向居中 */
	line-height:1.4;
	width: 100%;
display: flex;
    overflow: auto; /* 防止 body 出现滚动条，让子容器去滚动 */}
        .scroll-container {
			background: url("../pic/FIBER01.png");
			width: 53vw; /* 宽度 */
            height: 100vh; /* 高度 */
			color: #151519;
            border: 1px solid #000; /* 边框 */
            padding: 55px; /* 内边距 */
            overflow-y: scroll; /* 垂直滚动 */
            /* overflow: auto; 可以实现水平和垂直滚动 */
        }

        /* 长内容的样式 */
        .content {
			margin-top: -10px;
        }
	div.head{
		margin-left: auto;
			margin-right: 25px;
		font-size: 45px;
		text-align: right;  line-height: 1; 
		font-family: "MS Madi";

	}
.back{
		align-self: flex-end;
		font-size: 16px;
width: 530px; /* 宽度 */}
a {
   color: ghostwhite; /* 继承父元素的文字颜色 */
   text-decoration: none; /* 去掉下划线，可选 */
   background-color: #000; /* 默认无背景 */
}