@media only screen and (max-width: 3840px) {
	.beian, section, .foot_mark {
		zoom: calc(3840/3840/1.5);
	}
	/* 全局样式 */
	::-webkit-scrollbar {
		width: 16px; /* 设置滚动条宽度 */
		height: 16px; /* 设置滚动条高度 */
	}
	@supports (-moz-appearance:none) {
		::-moz-scrollbar {
			width: 16px; /* 设置滚动条宽度 */
			height: 16px; /* 设置滚动条高度 */
		}
	}
	/* 水平滚动条样式 */
	::-webkit-scrollbar-track {
		background-color: transparent; /* 设置滑道背景色 */
		height: 0;
		width: 0;
		display: none; /* 去除交叉点 */
	}
	/* 垂直滚动条样式 */
	::-webkit-scrollbar-corner {
		background-color: transparent; /* 设置滑道背景色 */
		height: 0;
		width: 0;
		display: none; /* 去除交叉点 */
	}

	::-webkit-scrollbar-thumb {
		background-color: rgba(210, 205, 195, 1); /* 设置滑块背景色 */
		border-radius: 10px; /* 设置滑块圆角 */
	}

	/* Firefox浏览器支持 */
	@supports (-moz-appearance:none) {
		::-moz-scrollbar-track {
			background-color: transparent; /* 设置滑道背景色 */
			height: 0;
			width: 0;
			display: none; /* 去除交叉点 */
		}
		::-moz-scrollbar-corner {
			background-color: transparent; /* 设置滑道背景色 */
			height: 0;
			width: 0;
			display: none; /* 去除交叉点 */
		}
		::-moz-scrollbar-thumb {
			background-color: rgba(210, 205, 195, 1); /* 设置滑块背景色 */
			border-radius: 10px; /* 设置滑块圆角 */
		}
	}
	
	*::selection {
		background: rgba(130, 40, 40, .8);
		color: rgba(210, 205, 195, 1);
	}
		
	a, a:active, a:focus {
		text-decoration: none;
		color: rgba(0, 0, 0, 1);
		transition: .5s;
	}
	
	a:hover {
		color: rgba(130, 40, 40, .8);
	}
	
	ul, li {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	html {
		writing-mode: vertical-rl;
		/* word-wrap: break-word; /* 强制换行 */
	}

	body {
		/* direction: rtl; */
		background: url(../img/2iodkeaxtnfj.jpg) center no-repeat;
		background-size: cover;
		margin: 0;
		padding: 0;
		color: rgba(0, 0, 0, 1);
		font-family:
		/* 默认系统字体, STSong, FangSong, STFangsong, KaiTi, SimSun, NSimSun */
		FangSong, STFangsong,
		
		/* 明体 */
		MingLiU, PMingLiU,
		
		/* 明朝体 */
		'Ms Mincho', 'Ms PMincho',
		
		/* 可显示Android字体 */
		serif,
		
		/* ios字体 */
		"Hiragino Mincho ProN", "Hiragino Mincho Pro";
	}
	
	/* load */
	.page_loading {
		z-index: 999;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, .5);
		display: flex;
		justify-content: center;
		align-items: center;
		opacity: 1;
	}

	.page_loading img {
		width: 70px;
		height: 70px;
	}

	#opposite_box {
		overflow-x: auto;
		overflow-y: hidden;
		height: 99.8%;
	}
	
	/* 主体内容四周留白范围 */
	.move_box {
		position: relative;
		top: 50%;
		transform: translateY(-50%);
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
	}
	
	/* 奇数或偶数 */
	.odd_or_even, #section_cover, #section888, #section_biblio {
		background: url(../img/j416wvs0.jpg) no-repeat;
		background-size: cover;
		padding: 12% 0 8% 0;
		
	}
	.odd_or_even:nth-child(even) {
		padding-left: 5.5%;
		/* margin-left: 1%; */
		box-shadow: -20px 20px 40px rgba(0, 0, 0, .3);
	}
	
	.odd_or_even:nth-child(odd) {
		padding-right: 5.5%;
		margin-right: 5%;
		box-shadow: 20px 20px 40px rgba(0, 0, 0, .3);
	}
	
	.odd_or_even:nth-child(even) .arc__inner {
		padding-right: 70px;
	}
	
	.odd_or_even:nth-child(odd) .arc__inner {
		padding-left: 70px;
	}
	
	.odd_or_even:nth-child(even) .box_border_outer {
		border-right: none;
		padding-right: 0;
	}
	
	.odd_or_even:nth-child(odd) .box_border_outer {
		border-left: none;
		padding-left: 0;
	}
	
	.odd_or_even:nth-child(even) .box_border_inner {
		border-right: none;
	}
	
	.odd_or_even:nth-child(odd) .box_border_inner {
		border-left: none;
	}
	
	.odd_or_even:nth-child(odd) .this_page_title {
		right: -70px;
	}
	
	.odd_or_even:nth-child(even) .this_page_title {
		left: -70px;
	}
	
	
	/* 通用两层边框 */
	.box_border_outer {
		box-sizing: border-box;
		border: 10px rgba(130, 40, 40, .8) solid;
		height: 100%;
		padding: 6px;
	}
	
	/* 内层边框 */
	.box_border_inner {
		box-sizing: border-box;
		border: 3px rgba(130, 40, 40, .8) solid;
		min-width: 900px;
		box-sizing: border-box;
		position: relative;
	}
	
	/* this_page_title */
	.this_page_title {
		position: absolute;
		bottom: 5%;
	}
	
	.this_page_title h4 {
		margin-block-start: 0;
		margin-block-end: 0;
		font-size: 28px;
		color: rgba(130, 40, 40, .9);
	}
	
	/* box测边 */
	.box_sider {
		position: absolute;
		z-index: 10;
		top: 0;
		height: 100%;
		width: 140px;
		overflow: hidden;
		box-sizing: border-box;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		background: rgba(134, 40, 40, .05);
		border-right: 3px rgba(130, 40, 40, .8) solid;
		right: -70px;
		border-left: 3px rgba(130, 40, 40, .8) solid;
	}
	
	.box_sider h3 {
		border-top: 3px rgba(130, 40, 40, .8) solid;
		margin-block-start: 0;
		margin-block-end: 0;
		width: 100%;
		height: 45%;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(134, 40, 40, .1) url(../img/62yoo56cj5.png) center top no-repeat;
		background-size: 100% auto;
	}
	
	.box_sider h3 img {
		height: 50%;
		opacity: .9;
		margin-top: 8%;
	}
	
	.box_sider h4 {
		border-bottom: 3px rgba(130, 40, 40, .8) solid;
		font-size: 40px;
		font-weight: normal;
		letter-spacing: 4px;
		height: 24%;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		margin-block-start: 0;
		margin-block-end: 0;
		line-height: 1;
		width: 100%;
		background: rgba(134, 40, 40, .1) url(../img/i5bw5z0ge4.png) center bottom no-repeat;
		background-size: 100% auto;
		color: rgba(130, 40, 40, .8);
	}
	
	.box_sider h4 span {
		background: rgba(130, 40, 40, .8);
		color: rgba(210, 205, 195, 1);
	}
	
	/* 封面 */
	#section_cover {
		box-shadow: -20px 20px 40px rgba(0, 0, 0, .3);
		padding: 12% 7% 8%;
		margin-right: 50%;
	}
	
	.cover__outer {
		position: relative;
	}
	
	.cover__inner {
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		min-width: initial;
		width: 720px;
	}
	
	.cover__inner div {
		display: flex;
		align-items: center;
	}
	
	.bc_1 {
		justify-content: flex-start;
		padding: 8% 0 0 0;
	}

	.bc_1 img {
		height: 28%;
	}

	.bc_2 {
		border-left: 3px rgba(130, 40, 40, .8) solid;
		justify-content: center;
		border-right: 3px rgba(130, 40, 40, .8) solid;
		padding: 0 8%;
	}

	.bc_2 img {
		height: 48%;
	}

	.bc_3 {
		justify-content: flex-end;
		padding: 0 0 8% 0;
	}

	.bc_3 img {
		height: 22%;
	}
	
	/* 书目标题 */
	.biblio_title_h3 {
		margin-block-start: 0;
		margin-inline-start: .4em;
		font-size: 48px;
		line-height: 1.33;
		margin-block-end: 0;
		margin-inline-end: 0;
	}
	
	.biblio_title_h4 {
		margin-block-start: 1em;
		line-height: 1.33;
		margin-block-end: 0;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		height: 98.8%;
	}
	
	.biblio_title_h4 span {
		display: flex;
		white-space: nowrap;
		overflow-wrap: break-word;
		word-wrap: break-word;
	}
	
	.biblio_title_h4 span:nth-child(1) {
		text-indent: 2em;
		font-size: 40px;
	}
	
	.biblio_title_h4 span:nth-child(2) {
		height: 90%;
		justify-content: center;
		background: url(../img/hlo2q6fnel5p.png) center repeat-y;
		margin: .8em 0;
	}
	
	.biblio_title_h4 span:nth-child(3) {
		font-size: 32px;
		justify-content: flex-end;
		padding-inline-end: .3em;
	}
	
	
	/* 书目列表 */
	#section_biblio {
		padding-left: 5.5%;
		box-shadow: -20px 20px 40px rgba(0, 0, 0, .3);
	}
	
	#section_biblio .this_page_title {
		left: -70px;
	}
	
	#section_biblio .box_border_outer {
		border-right: none;
		padding-right: 0;
	}
	
	#section_biblio .box_border_inner {
		border-right: none;
		padding-right: 70px;
		min-width: 640px;
	}
	
	.biblio_list_box {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		height: 98%;
		box-sizing: border-box;
	}

	.biblio_list {
		height: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	.biblio_list h5, .biblio_list p, .biblio_list h6 {
		margin-block-start: .2em;
		margin-block-end: .2em;
		justify-content: flex-end;
		white-space: nowrap;
		overflow-wrap: break-word;
		word-wrap: break-word;
	}

	.biblio_list h5 {
		font-size: 38px;
		font-weight: normal;
		text-indent: 3.2em;
	}

	.biblio_list p {
		height: 90%;
		justify-content: center;
		background: url(../img/hlo2q6fnel5p.png) center repeat-y;
		margin: .5em 0;
	}

	.biblio_list h6 {
		font-size: 34px;
		font-weight: normal;
	}
	
	/* 正文 */
	.box_title {
		padding: 0 .6em;
	}
	
	.box_title h3 {
		margin-block-start: 0;
		margin-inline-start: 1.55em;
		font-size: 54px;
		line-height: 1.33;
		margin-block-end: 0;
		margin-inline-end: 2em;
	}

	.box_title h4 {
		margin-block-start: 0;
		margin-inline-start: 4.1em;
		font-size: 42px;
		line-height: 1.33;
		margin-block-end: 0;
		margin-inline-end: 2em;
	}
	
	.box_tu {
		height: 30%;
		display: flex;
		font-size: 0;
		box-sizing: border-box;
		overflow: hidden;
		float: right;
		margin-top: 2%;
		margin-left: 3%;
	}
	
	.box_tu img {
		height: 100%;
		opacity: .85;
	}

	.box_content p {
		margin-block-start: 0;
		margin-inline-start: .5em;
		font-size: 38px;
		line-height: 1.25;
		margin-block-end: .5em;
		margin-inline-end: .5em;
	}
	
	.box_excerpt {
		margin: 0 1em;
	}
	
	.box_excerpt blockquote {
		margin-block-start: 0;
		margin-inline-start: 5.2em;
		font-size: 34px;
		line-height: 1.45;
		margin-block-end: 0;
		margin-inline-end: .5em;
	}
	
	/* 子属性 */
	.subscript_box {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		font-family: serif;
	}
	
	.sub_left_line {
		border-right: 2px rgba(130, 40, 40, .8) solid;
	}
	
	.subscript_box p {
		margin-block-start: .5em;
		margin-block-end: .5em;
		font-size: 30px;
		line-height: 1.25;
		box-sizing: border-box;
		margin-inline-start: .65em;
		margin-inline-end: .65em;
	}
	
	.subscript_box .footnote {
		display: flex;
		align-items: flex-start;
		
	}
	
	.subscript_box .year_month {
		white-space: nowrap;
		overflow-wrap: break-word;
		word-wrap: break-word;
		display: flex;
		justify-content: flex-end;
		align-items: flex-end;
	}
	
	/* 定位标 */
	#localizer {
		height: 100%;
		width: 1px;
		background: transparent;
	}
	
	/* 重返首页目录 */
	#section888 {
		padding-right: 5.5%;
		margin-right: 5%;
		box-shadow: 20px 20px 40px rgba(0, 0, 0, .3);
	}
	
	#section888 .this_page_title {
		right: -70px;
	}
	
	#section888 .box_border_outer {
		border-left: none;
		padding-left: 0;
	}
	
	#section888 .box_border_inner {
		border-left: none;
		padding-left: 70px;
	}
	
	#section888 .arc__inner {
		 overflow: hidden;
		 display: flex;
		 flex-direction: row;
		 justify-content: flex-end;
		 min-width: 320px;
	}
	
	#section888 .box_sider {
		left: -70px;
		right: initial;
	}
	
	#section888 .this_page_title {
		right: -70px;
	}
	
	#section999 {
		margin-left: 3.5em;
	}
	
	#section999 .arc__inner {
		 display: flex;
		 flex-direction: row;
		 justify-content: flex-end;
		 align-items: flex-end;
	}
	
	.turn_back {
		padding: 1em .5em;
	}
	
	.turn_back p {
		margin-block-start: 0;
		margin-block-end: 0;
		white-space: nowrap;
		overflow-wrap: break-word;
		word-wrap: break-word;
		line-height: 1.33;
		font-size: 36px;
	}

	/* 页脚 */
	.foot_mark {
		z-index: 10;
		position: fixed;
		top: 0;
		right: 0;
		width: 10%;
		display: none;
		height: calc(100% - 16px);
		/* writing-mode: initial; */
	}
	
	.foot_mark_box {
		width: 100%;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding: 10% 0 8%;
		box-sizing: border-box;
	}
	
	.foot_mark h1, .foot_mark h2 {
		margin-block-start: 0;
		margin-block-end: 0;
		width: 100%;
		border-right: 6px rgba(130, 40, 40, 1) solid;
		box-sizing: border-box;
		display: flex;
		align-items: center;
	}
	
	.foot_mark img {
		width: 36px;
	}

	.foot_mark h2 {
		font-size: 28px;
		letter-spacing: 8px;
		color: rgba(130, 40, 40, .8);
	}
	
	/* 备案码 */
	.beian {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: -7%;
		writing-mode: initial;
		opacity: .9;
		width: 100%;
		display: flex;
		justify-content: center;
	}
	
	.beian a {
		font-size: 48px;
		letter-spacing: 4px;
		color: rgba(130, 40, 40, .8);
	}
	
	/* 评论 */
	#comments {
		padding: 2% 2% 0 0;
		background: rgba(0, 0, 0, .05);
	}
	
	#comments #comment {
		height: 96%;
		border: 1px #000 solid;
		background: transparent;
	}
	
	#comments  #comment_submit {
		background: transparent;
		border: none;
		font-size: 32px;
	}
	
	.box_comm_list {
		padding: 2%;
	}
}