@charset "utf-8";
/* CSS Document */
.navtop_nav a:nth-of-type(4){
	background-color:turquoise;
}
.content {
	width: 100%;
    max-width: 1366px;
    min-width: 1024px;
    margin: 0 auto 10vh auto;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	justify-content: center;
	align-items: flex-start;
}


.content_left {
	width: 65%;
	margin-right: 1%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.content_right {
	width: 25%;
	margin-left: 1%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.content_left_sup{
    box-sizing: border-box;
	width: 95%;
	padding: 1rem;
	margin-top: 3rem;
	display: flex;
	justify-content: space-around;
	align-items: center;
	background-color: white;
	border-radius: 0.3rem;
}
.content_left_sup_img{
	width: 40%;
	height: 20rem;
	border-radius: 2.2rem;
	cursor: pointer;
	transition:transform 0.6s;
}
.content_left_sup_img:hover{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.content_left_sup_content{
    box-sizing: border-box;
	width: 55%;
    padding: 0.1rem;
	display: flex;
	flex-direction: column;
	justify-content:space-between;
}
.content_left_sup_content h2{
	font-size: 2rem;
    font-weight: 500;
    text-decoration: underline;
    margin:1rem 0;
}

.content_left_sup_intro{
	padding: 1% 3%;
	font-size:1.5rem;
    min-height: 40px;
    height: 4rem;
	color: dimgrey;
	background-color: hsla(0,0%,54%,0.15);
	border-left: 0.25rem solid black;
	border-right: 0.25rem solid black;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.content_left_sup_zi{
	display: flex;
	align-items: center;
    margin-top: 0.3rem;
}
.content_left_sup_zi span:first-of-type{
	font-size: 1.2rem;
    font-weight: 480;
    color:midnightblue;
    font-family: "黑体";
}
.content_left_sup_zi span:nth-of-type(2){
	font-size:1.2rem;
	color: dimgrey;
}
.content_left_sup_bot{
	width: 30%;
	display: flex;
	justify-content: center;
	align-self:flex-end;
	align-items: center;
	color: white;
	background-color: #30a6de;
	border-radius:0.5rem;
	height: 3rem;
	font-size: 2rem;
	font-weight: 500;
	cursor: pointer;
	transition:background-color 0.6s;
}
.content_left_sup_bot:hover{
	background-color:aqua;
}
.content_pv{
	width: 90%;
	background-color: white;
	margin-top:3rem;
	border-radius: 0.3rem;
	display: flex;
	flex-direction: column;
	padding: 5%;
}
.content_pv h2{
	font-size: 2rem;
	border-bottom: 0.2rem solid #eee;
	color: #484848;
	font-weight: normal;
	margin-bottom: 1rem;
}
.content_pv_a ul{
	list-style:none;
	overflow:hidden;
}
.content_pv_a ul li{
		height: 3rem;
		margin-bottom: 1rem;
		display: flex;
		align-items: center;
}
.content_pv_a ul li:first-child i, .content_pv_a ul li:nth-child(2) i, .content_pv_a ul li:nth-child(3) i {
	background: #FF6600;

}
.content_pv_a ul li a {
	width: 85%;
	text-decoration: none;
	color: #333;
	font-size: 1.8rem;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.content_pv_a ul li i{
	width: 1.8rem;
	height: 1.8rem;
	background: #B1B1B1;
	margin-right: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	font-style: normal;
}
.content_pv_a ul li:first-child i::before{
	content:"1";
}
.content_pv_a ul li:nth-child(2) i::before{
	content:"2";
}
.content_pv_a ul li:nth-child(3) i::before{
	content:"3";
}
.content_pv_a ul li:nth-child(4) i::before{
	content:"4";
}
.content_pv_a ul li:nth-child(5) i::before{
	content:"5";
}
.content_pv_a ul li:nth-child(6) i::before{
	content:"6";
}
.content_pv_a ul li:nth-child(7) i::before{
	content:"7";
}
.content_pv_a ul li:nth-child(8) i::before{
	content:"8";
}

