:root{
	--pd-text:238,104,103;
	--pd-text-light:197,73,73;
	--pd-bg:238,104,103;
	--pd-bg-light:197,73,73;
	--pd-border:238,104,103;
	--pd-border-light:197,73,73;
	--pd-opacity:1;
}
a:link {
	color: #3f3f3f;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #3f3f3f;
}
a:hover {
	text-decoration: none;
	color: #ff6501;
}
a:active {
	text-decoration: none;
	color: #3f3f3f;
}
body{
	background-color:#f6f7f7;
}
/* 默认字体大小 */
.fs12{
	font-size:12px;
}
.fs14{
	font-size:14px;
}

.rounded-5 {
  border-radius: 0.5rem !important;
}
.rounded-top-5 {
  border-top-left-radius: 0.5rem !important;
  border-top-right-radius: 0.5rem !important;
}
.rounded-bottom-5 {
  border-bottom-left-radius: 0.5rem !important;
  border-bottom-right-radius: 0.5rem !important;
}
/* 默认背景色 */
.pd-bg{
	background-color:rgba(var(--pd-bg), var(--pd-opacity)) !important;
}
.pd-text{
	color:rgba(var(--pd-text), var(--pd-opacity)) !important;
}
.hover-shadow{
    transition: box-shadow 0.5s;
}
/* 页码 */
.page{
	color:rgba(var(--pd-text), var(--pd-opacity));
	text-align:center;
	margin: 40px 0;
}
.page a{
	background: #fff;
	border: 1px solid rgba(var(--pd-border), var(--pd-opacity)) ;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	padding: 5px 10px;
	color:rgba(var(--pd-text), var(--pd-opacity));
	margin-right:3px;
}
.page a.selected{
	background: rgba(var(--pd-bg), var(--pd-opacity));
	border: 1px solid rgba(var(--pd-border), var(--pd-opacity)) ;
	color: #fff;
	text-decoration: none;
}
.nav a:hover{
	background-color:rgba(var(--pd-bg-light));
}
.mobile-nav input[type="checkbox"] ~ .mobile-nav-box{
	left:-100%;
	transition:left 0.3s;
}
.mobile-nav input[type="checkbox"]:checked ~ .mobile-nav-box{
	left:0px;
}