/* 路由地址 */
.router-box dt {
	color: #999;
	font-size: 16px;
}

.router-box dt img {
	width: 13px;
	height: 16px;
	position: relative;
	top: 2px;
	margin-right: 5px;
}

.router-box dd a {
	color: #999;
	margin: 0 5px;
	font-size: 16px;
}

.router-box dd a:hover {
	opacity: 0.8;
}

.router-box dd:not(:last-child):after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-left: 2px solid #999;
	border-bottom: 2px solid #999;
	position: relative;
	top: 4px;
	-webkit-transform: translate(0, -50%) rotate(225deg);
	transform: translate(0, -50%) rotate(225deg);
}

.router-box dd:last-child a {
	color: #333;
}

/* 24节气文章 */
.jieqi-article-box>ul {
	/* padding-left: 10px; */
}

.jieqi-article-box>ul li {
	width: 50%;
	float: left;
	box-sizing: border-box;
	background-color: #fff;
}

.jieqi-article-box>ul li a {
	margin: 10px 10px 0;
	padding: 20px;
	display: flex;
	border: 1px solid #EAEAEA;
	height: 100%;
	border-radius: 5px;
	transition: all .5s ease;
	position: relative;
}

.jieqi-article-box>ul li area {
	width: 180px;
	height: 116px;
	display: inline-block;
	border-radius: 5px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.jieqi-article-box>ul li h3 {
	font-size: 18px;
	margin-bottom: 10px;
	height: 25px;
	overflow: hidden;
}

.jieqi-article-box>ul li p {
	color: #666;
	font-size: 16px;
	line-height: 24px;
	padding-right: 10px;
	height: 48px;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	position: relative;
}

.jieqi-article-box>ul li p.ellipsis-text:after {
	content: "...";
	position: absolute;
	width: 20px;
	height: 24px;
	color: #f20;
	/* background-color: #fff; */
	right: 18px;
	bottom: 0;
	background: linear-gradient(to right, transparent, #fff 55%);
}


.jieqi-article-box>ul li dl {
	display: flex;
	padding: 5px 0;
	width: 100%;
	overflow: hidden;
}

.jieqi-article-box>ul li dl dd {
	margin-right: 10px;
	background-color: #F3F3F3;
	padding: 3px 15px;
	border-radius: 20px;
	font-size: 16px;
	color: #666;
	max-width: 160px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	transition: all .5s linear;
}

.jieqi-article-box>ul li dl dd:hover {
	border-radius: 0;
	color: #fff;
}

/* 分页 */
.pagenation button {
	padding: 10px 20px;
	margin-right: 10px;
	transition: all .5s linear;
	font-size: 14px;
	border-radius: 5px;
	color: #888;
}

.pagenation button:hover {
	cursor: pointer;
	color: #fff;
	background-color: #E4393C;
}

.pagenation ul li {
	margin-right: 10px;
	min-height: 40px;
	text-align: center;
	line-height: 40px;
	border: 1px solid #EAEAEA;
	border-radius: 5px;
	transition: all .5s linear;
}

.pagenation ul li.active {
	background-color: #E4393C;
}

.pagenation ul li.active a {
	color: #fff;
}

.pagenation ul li:hover {
	cursor: pointer;
	background-color: #E4393C;
}

.pagenation ul li:hover a {
	color: #fff;
}

.pagenation ul li a {
	display: inline-block;
	min-width: 40px;
	padding: 5px 10px;
	height: 40px;
	font-size: 16px;
	border-radius: 5px;
}


/* 下拉列表 start*/

/* 下拉小图标 */
.select-drop-menu {
	width: 94px;
	position: relative;
	border: 1px solid #EAEAEA;
	border-radius: 5px;
	height: 32px;
	padding: 0 20px 0 10px;

}

.select-drop-menu>input {
	width: 100%;
	height: 100%;
	font-size: 16px;
	color: #333;
}

.select-drop-menu:hover {
	box-shadow: 0 0 5px 0 #ddd;
	cursor: pointer;
}

.icon-drop-none:after,
.icon-drop-none:bofore {
	display: none;
}

.select-drop-menu .select-box-deault {
	width: 100%;
	;
	height: 212px;
	box-shadow: 0 1px 5px rgb(0 0 0 / 15%);
	border-radius: 6px;
	padding: 8px 0;
	overflow-y: auto !important;
	position: absolute;
	top: 38px;
	left: 0;
	background-color: #fff;
	border: 1px solid #f2f2f2;
	z-index: 99;
	display: none;
}

/* 滚动条样式 */
.select-drop-menu .select-box-deault::-webkit-scrollbar {
	/*滚动条整体样式*/
	width: 2px;
	/*高宽分别对应横竖滚动条的尺寸*/
	height: 2px;
}

.select-drop-menu .select-box-deault::-ms-scrollbar {
	width: 2px;
	height: 2px;
}

.select-drop-menu .select-box-deault::-webkit-scrollbar-thumb {
	/*滚动条里面小方块*/
	border-radius: 5px;
	-webkit-box-shadow: inset005pxrgba(0, 0, 0, 0.2);
	background: rgba(0, 0, 0, 0.2);
}

.select-drop-menu .select-box-deault::-ms-scrollbar-thumb {
	/*滚动条里面小方块*/
	border-radius: 5px;
	-ms-box-shadow: inset005pxrgba(0, 0, 0, 0.2);
	background: rgba(0, 0, 0, 0.2);
}

.select-drop-menu .select-box-deault::-webkit-scrollbar-track {
	/*滚动条里面轨道*/
	-webkit-box-shadow: inset005pxrgba(0, 0, 0, 0.2);
	border-radius: 0;
	background: rgba(0, 0, 0, 0.1);
}

.select-drop-menu .select-box-deault::-ms-scrollbar-track {
	-ms-box-shadow: inset005pxrgba(0, 0, 0, 0.2);
	border-radius: 0;
	background: rgba(0, 0, 0, 0.1);
}

.select-drop-menu .select-box-deault>ul>li {
	height: 26px;
	line-height: 26px;
	color: #333;
	white-space: nowrap;
	cursor: pointer;
	padding-left: 10px;
	font-size: 16px;
	letter-spacing: 1px;
}

.select-drop-menu .select-box-deault>ul>li:hover,
.select-drop-menu .select-box-deault>ul>li.active{
	color: #315EFB;
	background-color: #f2f2f2;
}

/* 下拉列表 end*/

/* 边角 */
.corner-img {
	width: 18px;
	height: 18px;
	position: absolute;
	z-index: 2;
	background-repeat: no-repeat;
	background-position: center center;
}

.top-img {
	top: 0;
	left: 0;
	background-image: url(../imagespc/index/table-img-top.png);
}

.left-img {
	bottom: 0;
	left: 0;
	background-image: url(../imagespc/index/table-img-left.png);
}

.bottom-img {
	bottom: 0;
	right: 0;
	background-image: url(../imagespc/index/table-img-bottom.png);
}

.right-img {
	top: 0;
	right: 0;
	background-image: url(../imagespc/index/table-img-right.png);
}

/* 公用表格 */ 
.table-box-default tr:nth-child(even) {
	background-color: #FCF8EF;
}

.table-box-default tr td {
	font-size: 16px;
	color: #666;
	transition: all .2s ease;
}
.table-box-default14 tr td{
	font-size: 14px;
}
.table-box-default tr td span {
	font-size: 16px;
}

.table-box-default tr:hover {
	background-color: #FCF8EF;
}

.table-box-default tr:hover td {
	transform: scale(1.02);
}

.table-bold-first tr:nth-child(1) td,
.table-bold-first tr td:nth-child(1) {
	font-weight: bold;
	color: #000;
}

/* 背景条 */
.bar-bg-box {
	padding-left: 20px !important;
}

.bar-bg-box>p {
	position: relative;
}

.bar-bg-box span {
	display: inline-block;
	text-align: center;
}

.bar-bg-box .bar {
	width: 40px;
}

.bar-bg-box .bar-title {
	width: 30px;
}

.bar-bg-box .bar-bg-item {
	width: 50px;
	height: 12px;
	position: absolute;
	top: 7px;
	left: 90px;
}

.bar-bg-box .bar-bg-item span {
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.bar-bg-box p:nth-child(1) .bar-bg-item span {
	background-color: #FCA952;
}

.bar-bg-box p:nth-child(2) .bar-bg-item span {
	background-color: #00AD3F;
}

.bar-bg-box p:nth-child(3) .bar-bg-item span {
	background-color: #02CBE8;
}

.bar-bg-box p:nth-child(4) .bar-bg-item span {
	background-color: #E0282A;
}

.bar-bg-box p:nth-child(5) .bar-bg-item span {
	background-color: #FE94C3;
}


/* 返回顶部 */
.back-top-btn {
	display: none;
	position: fixed;
	z-index: 9999;
	bottom: 100px;
	right: 50px;
	width: 45px;
	box-shadow: 0 0 5px 0;
	border-radius: 50%;
	height: 45px;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../imagespc/index/back-top.png);
	transition: all .5s ease;
}

.back-top-btn:hover {
	cursor: pointer;
	background-image: url(../imagespc/index/back-top-active.png);
}


/*下面是提示栏的制作*/
.tips-modal-box {
	position: absolute;
	padding: 0 16px;
	height: 35px;
	line-height: 35px;
	background: #2DCB70;
	color: white;
	top: 160px;
	font-size: 16px;
	font-weight: bold;
	text-transform: none;
	margin: 0 auto;
	border-radius: 3px;
	opacity: 0;
}

.tips-modal-box em {
	font-style: normal;
}

.tips-modal-box span {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
	border: 7px solid transparent;
	border-top-color: #2DCB70;
	left: 50%;
	margin-left: -3px;
	bottom: -14px;
}

/* 轮播 */
.swiper-slide {
	height: 140px;
	line-height: 300px;
	text-align: center;
}

.swiper-slide a {
	position: relative;
	display: block;
	width: 86%;
	height: 110px;
	margin: 0 auto;
	top: 10%;
	border-radius: 3px;
}

.swiper-slide img {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 9;
	left: 0;
	right: 0;
}

.swiper-slide span {
	position: absolute;
	z-index: 10;
	color: #fff;
	font-size: 28px;
	width: 100%;
	height: 100%;
	line-height: 110px;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	text-align: center;
}
