﻿/* CSS Document */
* {
	margin: 0px;
	padding: 0px;
}
/* Body整体定义 */
body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Lato, Roboto, 'PingFang SC', 'Microsoft YaHei', sans-serif;
	background-color: #f2f2f2;
	font-style: normal;
	font-weight: 200;
	font-size: 18px;
	color: #4c4948;
}
/*a整体定义，没有下划线，白色*/
a {
	text-decoration: none;
	color: white;
}
/*p整体定义，字体14，间距1px*/
p {
	font-size: 14px;
	padding: 1px;
}
/*整个框架,指定排列方式-按行垂直排列*/
.frame {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
/*logo框架*/
.logoFrame {
	height: 56px;
	width: 100%;
	margin-top: 00px;
	background: #6A6A6A;
}
.menuFrame {
	height: 56px;
	width: 100%;
	max-width: 1024px;
	margin: auto;
	padding-left: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 楷体, 楷体_2312, 华文行楷;
	background: none;
}
@media screen and (min-width: 801px) {
	.menuFrame p {
		margin-top: 20px;
		margin-right: 20px;
		font-size: 30px;
		color: white;
		margin-left: 5px;
	}
	.menuPart {
		font-size: 20px;
		cursor: pointer;
		margin-left: 2px;
		padding-top: 15px;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 5em;
		height: 41px;
		/*	background: #2934A8;#8B7314*/
		background: #D03E3E;
		color: #EEEEEE;
	}
}
@media screen and (max-width: 800px) {
	.menuFrame p {
		margin-top: 20px;
		margin-right: 15px;
		width: 4em;
		font-size: 20px;
		color: white;
		margin-left: 5px;
	}
	.menuPart {
		font-size: 14px;
		cursor: pointer;
		margin-left: 2px;
		padding-top: 15px;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 5em;
		height: 41px;
		/*	background: #2934A8;#8B7314*/
		background: #D03E3E;
		color: #EEEEEE;
	}
}
.menuPart:hover {
	background: #52A9F0;
	color: #EEEEEE;
}
/*主体框架*/
.spacediv {
	height: 30px;
}
.mainFrame {
	display: flex;
	flex-direction: column;
	margin: auto;
	width: 100%;
	max-width: 1024px;
	min-height: 100vh;
}
.coverFrame {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 5px;
}
.cover, .singleCover {
	min-width: 480px;
	min-height: 678px;
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: 8px;
	background: #f9f9f9;
	margin: 5px;
	padding: 5px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Lato, Roboto, 'PingFang SC', 'Microsoft YaHei', sans-serif;
	box-shadow: 0 3px 8px 6px rgba(7, 17, 27, 0.06);
	/*overflow-y: auto; 纵向滚动条*/
}
.cover{
	width: 480px;
	height: 678px;
}
.singleCover{
	min-width: 480px;
	width: 100%;
	padding: 40px;
}
.cover:hover {
	background: white;
	box-shadow: 0 3px 8px 6px rgba(7, 17, 27, 0.15)
}
.coverMei {
	display: flex;
	height: 40px;
	font-size: 12px;
	margin-top: 10px;
	margin-right: 25px;
	justify-content: right;
	align-items: center;
}
.coverTitle {
	display: flex;
	height: 40px;
	font-size: 32px;
	font-family: 楷体, 楷体_GB2312, 华文楷体, 华文行楷;
	padding-top: 20px;
	margin-left: 5px;
	justify-content: center;
	align-items: center;
}
.conerDes {
	color: #4c4948;
	font-size: 16px;
	line-height: 26px;
	text-indent: 2em;	
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 20px;
}
.coverContents {
	height: 100%;
	display: flex; 
	flex-direction: column;
	overflow-y: auto;
	overflow-x: hidden;
}
.coverChapter {
	display: block;
	width: 100%;
	font-weight: bold;
	font-size: 20px;
	text-align: left;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	letter-spacing: 1px;
	color: black;
	text-decoration: none;
	margin-left: 5px;
	cursor: pointer;
}
.coverChapter::before {
	content: "▶";
}
.coverChapter.done::before {
	content: "▼";
}
.coverChapter ul {
	display: none;
	flex-direction: column;
	text-align: left;
	width: 100%;
	list-style: none;
}
.coverChapter ul li {
	display: flex;
}
.coverChapter ul li a {
	width: 100%;
	font-size: 18px;
	text-indent: 2em;
	text-align: left;
	padding: 5px;
	letter-spacing: 1px;
	font-weight: normal;
	text-decoration: none;
	color: #4c4948;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Lato, Roboto, 'PingFang SC', 'Microsoft YaHei', sans-serif
}
.coverChapter ul li:hover a {
	color: #49b1f5;
	background: #f0f0f0;
}
.coverArtical {
	font-weight: 400;
	font-size: 20px;
	text-indent: 1em;
	text-align: left;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	letter-spacing: 1px;
	color: black;
	text-decoration: none;
}
.coverArtical:hover {
	color: #49b1f5;
	background: #f0f0f0;
}
.seeMore {
	height: auto;
	width: 100%;
	font-size: 16px;
	text-align: right;
	margin-right: 20px;
	color: black;
}
.seeMore:hover {
	color: #49b1f5;
	background: #f0f0f0;
}
.payFrame {
	padding: 50px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	align-content: center;
}
.pay {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	align-content: center;
	max-width: 250px;
}
/*尾部框架*/
.footFrame {
	background-color: #303030;
	display: flex;
	flex-direction: column;
	width: 100%;
	padding-top: 20px;
	color: #ffffff;
	align-items: center;
}
.footHeadpart {
	width: 100%;
	max-width: 1024px;
	display: flex;
	flex-wrap: wrap;
}
/*尾部分列*/
@media screen and (min-width: 601px) {
	.footPart {
		float: left;
		width: 50%;
	}
	
}
@media Screen and (max-width:600px) {
	.footPart {
		float: left;
		width: 100%;
	}
}
.footPart h3 {
	font-family: 楷体, 楷体_GB2312, 华文楷体, 华文行楷;
	font-weight: bold;
	font-size: 16px;
	text-align: center;
}
.footPart p {
	text-align: center;
	text-indent: 2em;
	line-height: 20px;
	font-size: 14px;
	margin: 5px;
}

/*原有的CSS*/
/*
.hidden {
	display: none;
}
.container {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	height: auto;
	background-color: #ffffff;
}
table {
	margin-left: auto;
	margin-right: auto;
	box-align: center;
	font-family: 楷体, 楷体_GB2312, 华文楷体, 华文行楷;
	margin-bottom: 20px;
}
header {
	width: 100%;
	min-height: 50px;
	height: auto;
	margin-bottom: 0px;
	background-color: #1462ac;
}
header div {
	width: 100%;
	min-height: 0px;
	height: 115px;
	margin-bottom: 0px;
	background-color: #1462ac;
}
header div nav {
	background: #1462ac;
	float: left;
	width: 100%;
	text-align: right;
	padding-top: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
}
nav ul {
	float: left;
	text-align: right;
	width: 100%;
	background: t#FFFFFF;
	list-style: none;
}
ul li {
	float: right;
	color: #FFFFFF;
	font-size: 14px;
	text-align: right;
	margin-right: 10px;
	letter-spacing: 2px;
	font-weight: bold;
	transition: all 0.3s linear;
}
ul li a {
	color: #ffffff;
	text-decoration: none;
}
ul li:hover a {
	color: #608B28
}
.logoimg {
	float: left;
}
.webname {
	color: #FFFFFF;
	float: none;
	font-size: 80px;
	font-family: 楷体;
	font-weight: bold;
	padding-top: 0px;
	padding-right: 0px;
	margin-top: 10px;
	text-align: center;
	margin-bottom: 0px;
	letter-spacing: 4px;
}
.webdeclare {
	color: #FFFFFF;
	font-style: italic;
	font-size: 18px;
	padding-right: 0px;
	padding-top: 0px;
	text-align: center;
	float: right, bottom;
	letter-spacing: 2px;
}
.wrap {
	background-size: cover;
	background-color: #B3B3B3;
	margin-top: 10px;
	padding-top: 10px;
	padding-bottom: 0px;
}
.wrapblack {
	font-size: 30px;
	color: #ffffff;
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	letter-spacing: 8px;
	font-family: 楷体;
}
.wraplight {
	font-weight: bold;
	color: #444444;
	font-family: 楷体;
	font-size: 50px;
}
.wraplightt {
	font-weight: bold;
	color: #333333;
	font-family: 华文行楷;
	font-size: 100px;
}
.tagline {
	text-align: center;
	color: #FFFFFF;
	margin-top: 0px;
	font-weight: lighter;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding-bottom: 10px;
}
.partimg {
	width: 100%;
	height: auto;
	min-height: 200;
	min-width: 400;
	max-width: 1024px;
}
.sodium {
	text-align: center;
	padding-top: 0px;
	padding-bottom: 25px;
}
.miaoshu {
	text-align: center;
	padding-top: 20px;
	clear: both;
	width: 100%;
	color: #000000;
	display: inline-block;
	padding-bottom: 25px;
}
@media screen and (max-device-width: 600px) {
	.jianjie {
		margin-left: 0px;
		width: 100%;
		padding-left: 0px;
		min-width: 200px;
		text-align: center;
		float: left;
	}
}
@media screen and (min-device-width: 601px) {
	.jianjie {
		margin-left: 0px;
		width: 50%;
		padding-left: 0px;
		min-width: 400px;
		text-align: center;
		float: left;
	}
}
.jianjie h4 {
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	color: #52BAD5;
}
.jianjie p {
	text-align: left;
	text-indent: 2em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	color: #000000;
}
.jianjie img {
	text-align: left;
	text-indent: 2em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	height: 100%;
}
.footbanner {
	background-color: #303030;
	display: inline-block;
	width: 100%;
	padding-top: 10px;
	color: #ffffff;
}
.about {
	float: left;
	width: 50%;
}
.about h3 {
	text-align: center;
	color: #A1BDED;
}
.about p {
	text-align: left;
	text-indent: 2em;
	line-height: 20px;
	font-size: 14px;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	color: #ffffff;
}
footer {
	padding-top: 0px;
	padding-bottom: 8px;
	width: 100%;
	background-color: #202020;
	font-size: 12px;
	text-align: center;
	color: #ffffff;
}
*/

.mainarticalsection {
	text-align: center;
	padding-top: 0px;
	padding-bottom: 0px;
}
.mainartical {
	text-align: center;
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 15px;
	display: inline-block;
	background-color: #FFFFFF;
	margin-top: 0px;
	color: #000000;
}
.mainarticalHead {
	text-align: center;
	text-indent: 0em;
	font-weight: bold;
	line-height: 30px;
	margin-top: 10px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
}
.mainarticalPicHead {
	text-align: center;
	text-indent: 0em;
	font-family: 楷体, 楷体_GB2312, 华文楷体, 华文行楷;
	line-height: 0px;
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 25px;
	margin-left: 5px;
}
.mainartical p {
	text-align: left;
	text-indent: 2em;
	line-height: 30px;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
}
.bold {
	text-align: left;
	color: black;
	font-weight: bold;
}
.redbold {
	text-align: left;
	color: red;
	font-weight: bold;
}
.greenbold {
	text-align: left;
	color: green;
	font-weight: bold;
}
.yellowbold {
	text-align: left;
	color: yellow;
	font-weight: bold;
}
.bluebold {
	text-align: left;
	color: blue;
	font-weight: bold;
}
.yellowback {
	text-align: left;
	color: black;
	background-color: yellow;
	font-weight: bold;
}
.redback {
	text-align: left;
	color: white;
	background-color: red;
	font-weight: bold;
}
.blueback {
	text-align: left;
	color: white;
	background-color: blue;
	font-weight: bold;
}
.greenback {
	text-align: left;
	color: white;
	background-color: green;
	font-weight: bold;
}
.blackback {
	text-align: left;
	color: white;
	background-color: black;
	font-weight: bold;
}
.hidefont {
	text-align: left;
	color: white;
	background-color: white;
}
.articleTitle {
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}

.articleDes {
	color: #6a6a6a;
	text-indent: 2em;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 20px;
}
.articleDes::before{
	content: "概述：";
}

.articleImg {
	clear: both;
	margin: auto;
	max-width: 800px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
	font-family: 楷体, 楷体_2312, 华文行楷;
	font-size: 20px;
	line-height: 30px;
	font-weight: 400;
}

.articleFrame {
	margin: auto;
	max-width: 800px;
	font-size: 16px;
	line-height: 26px;
	text-indent: 2em;
	color: black;
}

.searchResultContainer {
	width: 400px;
	max-height: 600px;
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 80px;
	font-size: 16px;
	line-height: 24px;
	padding: 5px;
	background: white;
	border: 1px solid #333333;
	overflow-y: auto;
	overflow-x: hidden;
}

.searchOuter {
	width: 100vh;
	height: 100vw;
	position: fixed;
	background:rgba(255,255,255,0.5);
	left: 0px;
	top: 0px;
}

.articleFrame p{
	font-size: 18px;
	line-height: 32px;
	text-indent: 2em;
	margin-bottom: 10px;
}
