﻿

/* CSS PingTai */
/*平台导航----开始--------------------------------------------------------*/
.pt_nav {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	flex-wrap: wrap;
	margin-bottom: 20px;
	position: relative;
	margin-top: 50px;
	z-index: 998;
}

.pt_nav a {
	flex: 1;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px;
	margin-bottom: 20px;
	border: 1px solid var(--sc05);
	color: var(--sc05);
	padding: 10px;
	border-radius: 10px;
	position: relative;
	cursor: pointer;
	box-sizing: border-box;
	transition: all 0.3s;

}

.pt_nav .pt_act {
	background: linear-gradient(0deg, var(--sc01), var(--sc02));
	color: var(--sc04);
}

.pt_nav a i {
	width: 40px;
	height: 40px;
	background: url(../image/bt_zs02.png) center 0 no-repeat;
	background-size: 40px 40px;
}

.pt_nav a p {
	font-size: 24px;
	white-space: nowrap;
	padding: 5px;
	border-radius: 20px;
}

/*平台导航----结束--------------------------------------------------------*/
/*平台内容----开始--------------------------------------------------------*/
.pingtai {
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: left;
	flex-wrap: wrap;
	border-radius: 16px;
	margin-bottom: 30px;
}
.pingtai .pt_box {
	width: 305px;
	border-radius: 10px;
	overflow: hidden;
	background: var(--bai);
	margin: 10px;
	box-sizing: border-box;
}
.pingtai .pt_box dt {
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: left;
	align-items: center;
	padding-left: 10px;
	font-size: 22px;
	font-weight: bold;
	background: var(--sc06);
	color: var(--sc04);
	margin-bottom: 5px;
}
.pingtai .pt_box dd {
	width: 290px;
	height: 115px;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.pingtai .pt_box dd img {
	transition: all 0.3s;
}
.pingtai .pt_box:hover dd img {
	transform: scale(1.1);
}
.pingtai .pt_box .pt_lj {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 10px;
	box-sizing: border-box;
}

.pingtai .pt_box .pt_lj li {
	width: 100%;
	flex: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pingtai .pt_box .pt_lj li a {
	width: 50%;
	max-height: 50px;
	flex: auto;
	padding: 10px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bai);
	margin: 4px;
	border-radius: 6px;
	font-weight: bold;
	font-size: 16px;
}
.pingtai .pt_box .pt_lj li a:first-child {
	margin-left: 0;
}
.pingtai .pt_box .pt_lj li a:last-child {
	margin-right: 0;
}
.pingtai .pt_box .pt_lj li a:hover {
	filter: brightness(120%);
}

.pt_lj li .pt_an01 {
	background: var(--sc05);
}

.pt_lj li .pt_an02 {
	background: var(--sc07);
}

.pt_lj li .pt_an03 {
	background: var(--sc08);
}

.pt_lj li .pt_an04 {
	background: var(--sc09);
}
/*平台内容----结束--------------------------------------------------------*/
/*招商典范----开始--------------------------------------------------------*/
.zhaoshang {
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 50px;
	height: 185px;
}
/*招商典范----结束--------------------------------------------------------*/

/*文本不可选择*/
.pt_box {
	-moz-user-select: none;
	/* Firefox私有属性 */
	-webkit-user-select: none;
	/* WebKit内核私有属性 */
	-ms-user-select: none;
	/* IE私有属性(IE10及以后) */
	-khtml-user-select: none;
	/* KHTML内核私有属性 */
	-o-user-select: none;
	/* Opera私有属性 */
	user-select: none;
	/* CSS3属性 */
}