/*
* @Author: 叶
* @Date: 2022-08-08 20:01:06
* @LastEditors: 叶
* @Description: 公共样式文件
*/

/*颜色变量*/
:root {
    --pm-c: #fd494d;
	--dm-c: #fdeaea;
    --bg-c: #f5f5f5;
    --br-c: #eee;
}
/*颜色类*/

.c-fff {
	color: #fff!important;
}
.c-pm {
	color: var(--pm-c);
}
.c-333 {
	color: #303133;
}

.bg-gradient {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0, transparent 100%);
}

.bg-pm {
	background-color: var(--pm-c);
}
.bg-f7 {
	background-color: #f7f7f7;
}
.page{
	margin: 0 auto;
	width: 50%;
	text-align: center;
}
.hl-page-wrap li,.page a,.page em{display:inline-block;padding:0 4px;width:17.5%;}
.page a,.page em{
	width: 8%;
	margin-left: 1%;
	height:38px;border:1px solid;border-radius:2px;font-size:14px;line-height:36px;
	text-align: center;
}
.page>a:first-child,
.page>a:last-child{
	width:15%;
}
.page em{
	background-color: #FF5500;
	border:1px solid #FF5500;
	color:#FFFFFF
}
@media (max-width:1300px){
	.page{
		width: 80%;
	}
}
@media (max-width:580px){
	.page a,.page em{
		width: 10%;
	}
}
@media (max-width:480px){
	.page{
		width: 100%;
	}
	.page a,.page em{
		width: 12%;
		margin-top: 1%;
		margin-left: 2%;
	}
	.page>a:first-child,
	.page>a:last-child{
		width: 17%;
	}
}
/* 禁用iPhone中Safari的字号自动调整 */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* 解决IOS默认滑动很卡的情况 */
    -webkit-overflow-scrolling: touch;
}
/*修改UIKIT框架自带样式*/
body,html {}
a,a:hover {
	text-decoration: none;
}
ol,ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

/*边框样式*/
.b-a {
	border: 1px solid var(--br-c)!important;
}
.b-b {
	border-bottom: 1px solid var(--br-c)!important;
}
.b-t {
	border-top: 1px solid var(--br-c)!important;
}
.b-l {
	border-left: 1px solid var(--br-c)!important;
}
.b-r {
	border-right: 1px solid var(--br-c)!important;
}


/*图片高清*/
img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;    
}

/*圆角样式*/
.b-r-4 {
	border-radius: 4px !important;
}
.b-r-6 {
	border-radius: 6px !important;
}
.b-r-8 {
	border-radius: 8px !important;
}
.b-r-10 {
	border-radius: 10px !important;
}
.b-r-12 {
	border-radius: 12px !important;
}
.b-r-24 {
	border-radius: 24px !important;
}

/*共用内边距*/
.p-a-5 {
	padding: 5px;
}
.p-a-10 {
	padding: 10px;
}
.p-a-20 {
	padding: 20px;
}
.p-b-5 {
	padding-bottom: 5px;
}
.p-b-10 {
	padding-bottom: 10px;
}
.p-b-15 {
	padding-bottom: 15px;
}
.p-b-20 {
	padding-bottom: 20px;
}
.p-t-5 {
	padding-top: 5px;
}
.p-t-10 {
	padding-top: 10px;
}
.p-t-15 {
	padding-top: 15px;
}
.p-t-20 {
	padding-top: 20px;
}


/*文章N行隐藏样式*/
.line-2 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
}
.line-3 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
}
.line-4 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
}

/*自定义通知弹窗样式*/
.uk-notification-message {}
.uk-notification-message-success {
	background: #32d296!important;
	color: #fff!important;
	font-size: 15px!important;
}
.uk-notification-message-primary {
	background: #333!important;
	color: #fff!important;
}
.uk-notification-close {
	color: #fff;
}

/*伪类居中*/
.after-middle {
	position: relative;
}
.after-middle::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
}
.after-center {
	position: relative;
}
.after-center::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translate(-50%,0);
}
.before-middle {
	position: relative;
}
.before-middle::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
}

.item {}
/*默认图标尺寸*/
.item .icon {
	margin: 0 auto;
	border-radius: 12px;
	overflow: hidden;
}
.item .icon img {
	width: 100%;
	height: 100%;
}
.item .data span {
	font-size: 14px;
}
.item .hr {
	display: inline-block;
	height: 12px;
	width: 1px;
	background: #bbb;
	margin: 0 5px;
}


/*面包屑导航*/
.crumbs {
	font-size: 12px;
	margin: 10px 0;
	color: #999;
}
.crumbs a {
	color: #909399;
	display: inline-block;
	position: relative;
	font-size: 12px;
}
.crumbs a::after {
	content: '>';
}


/*分页*/
.pagination {
	margin: 60px 0 40px 0;
	text-align: center;
}
.pagination .page-item {
	display: inline-block;
	margin: 5px;
	font-size: 13px;
	border: 1px solid var(--br-c);
	color: #555;
}
.pagination .active span {
	background: var(--pm-c);
	color: #fff;
}
.pagination .page-item:hover {
	background: var(--pm-c);
	color: #fff;
}
.pagination .page-item .page-link {
	display: block;
	padding: 6px 12px;
	border: 1px solid transparent
}
.pagination li span {}
.pagination li a {
	display: inline-block;
	color: #666;
}
.pagination li a:hover {
	background: var(--pm-c);
	color: #fff;
	border: 1px solid var(--pm-c) !important
}

#aq-model img {
	width: auto !important;
	max-width:100%
}

.download div span{
	z-index: 10;
}