/* 通用样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	background-color: #f9f9f9;
	color: #333;
	font-size: 16px;
}


a {
	text-decoration: none;
	color: inherit;
}


/* 主要内容样式 */
main section {
	margin: 20px 0;
}

h2 {
	font-size: 24px;
	margin-bottom: 15px;
	color: #f53;
}

section {
	width: 1150px;
	margin: 0 auto;
}

.crumbs {
	font-weight: 400;
	line-height: 40px;
	color: rgba(153, 153, 153, 1);
	text-align: left;
	font-size: 14px;
}

.btn {
	display: inline-block;
	padding: 10px 20px;
	width: 132.71px;
	height: 38.62px;
	background-color: #ff6600;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	text-align: center;
	margin-top: 20px;
	font-size: 14px;
	transition: background-color 0.3s;
}

.btn:hover {
	background-color: rgba(255, 93, 3, 1);
}



.flex-box {
	display: flex;
	justify-content: space-between;
	gap: 0 10px;
}

.left-box {
	width: 75%;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

h2 {
	clear: both;
	border: 0;
	margin: 0;
}

p {
	border: 0;
	margin: 0;
	padding: 0;
	padding-bottom: 20px;
}

ul {
	border: 0;
	margin: 0;
	padding: 0;
}




.left-box .content {
	padding: 25px;
	background-color: #fff;
}

.left-box .content h1{
	font-size: 24px;
	color: rgba(51, 51, 51, 1);
}

.left-box .content .content-subtitle {
	color: rgba(153, 153, 153, 1);
	font-size: 16px;
	margin-top: 5px;
}

.left-box .content p {
	font-size: 16px;
	margin-top: 10px;
}

.left-box .content img {
	width: 100%;
}

.left-box .content ul {
	margin-top: 10px;
	padding-left: 20px;
	font-size: 16px;
}

.left-box .content ul li {
	line-height: 2;
}

.left-box .content .content-foot {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 20px;
}

.left-box .content .content-foot .content-footitem {
	flex: 1;
	border-radius: 5px;
	background: rgba(248, 248, 248, 1);
	padding: 10px 30px 15px;
}

.left-box .content .content-foot .content-footitem ul {
	margin-bottom: 10px;
}

.left-box .content .content-foot .content-footitem ul li::marker {
	color: rgba(255, 93, 3, 1);
}

.left-box .content .content-foot .content-footitem span {
	font-size: 16px;
}

.left-box .about {
	margin-top: 10px;
	margin-bottom: 20px;
	border-radius: 5px;
	padding: 20px 30px;
	background-color: #fff;
}

.left-box .about h2 {
	font-size: 18px;
	color: rgba(51, 51, 51, 1);
}


.left-box .about .about-reading {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px 25px;
}

.left-box .about .about-reading a {
	width: 48%;
	display: flex;
	align-items: center;
	font-size: 16px;
	padding: 10px;
	border-radius: 5px;
	background: rgba(248, 248, 248, 1);
}

.left-box .about .about-reading h3 {
	font-size: 16px;
	font-weight: normal;
	flex: 1;
}

.left-box .about .about-reading img {
	width: 128px;
	height: 80px;
	margin-right: 15px;
	border-radius: 5px;
}

/*搜索模块*/


.search-box {
	padding: 20px 0;
	background-color: #fff;
	border-radius: 5px;
	margin-bottom: 15px;
}

.search {
	display: flex;
	position: relative;
}

.search input {
	height: 50px;
	background: rgba(255, 255, 255, 1);
	border: 1px solid rgba(255, 93, 3, 1);
	border-radius: 0;
	padding-left: 68px;
	outline: none;
	font-size: 16px;
}

.search input::placeholder {
	color: rgba(51, 51, 51, 0.5);
}

.search .search-icon {
	content: '';
	display: block;
	position: absolute;
	top: 10px;
	left: 19px;
	width: 30px;
	height: 30px;
	z-index: 9;
	background: url(https://img.js.design/assets/img/66b9b17d981f174457807144.png) no-repeat center/100%;
}

.search button {
	border-radius: 0;
	width: 100px;
	height: 50px;
	background: rgba(255, 93, 3, 1);
	color: #fff;
}

/* 标签列表模块 */
.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tag-list  .tab-item {
	height: 30px;
	line-height: 30px;
	padding: 0 18px;
	border-radius: 5px;
	background: rgba(246, 247, 248, 1);
	font-size: 16px;
}

.tag-list  .tab-item:hover {
	background: rgba(255, 93, 3, 1);
	color: #fff;
	transition: all .3s;
}


/* 页码模块 */

.pagination {
	margin: 20px auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 5px;
	color: rgba(153, 153, 153, 1);
}

.pagination span {
	line-height: 40px;
	padding: 0 1px;
}

.pagination li {
	/*padding: 0 15px;*/
	line-height: 40px;
	text-align: center;
	color: rgba(153, 153, 153, 1);
	background: rgba(255, 255, 255, 1);
	border: 1px solid rgba(216, 216, 216, 1);
	border-radius: 5px;
	margin: 0;
	font-size: 14px;
	cursor: pointer;
	list-style: none;
	/* savers */
	float: left;
}

.pagination li a,.pagination li span{
	display: block;
	padding: 0 15px;
}


.pagination .previous-off,
.pagination .next-off {
	border: solid 1px #DEDEDE;
	color: #888888;
	display: block;
	float: left;
	font-weight: bold;
	margin-right: 2px;
	padding: 3px 4px;
}

.pagination .next a,
.pagination .previous a {
	font-weight: bold;
}

.pagination .active {
	background: rgba(255, 93, 3, 1);
	color: #FFFFFF;
	font-weight: bold;
	display: block;
}

.pagination  .disabled {
	background: unset;
	border: 0;
}

.pagination li:first-child.disabled,
.pagination li:last-child.disabled{
	border: 1px solid rgba(216, 216, 216, 1)!important;
}
