/*典型案例*/
body {
	background: #F4F7FF;
}
.zhuanti-container {
	padding-bottom: 60px;
}
.zhuanti-container .zhuanti-banner {
	height: 800px;
	padding-top: 30px;
}
.zhuanti-container .zhuanti-banner .logo img {
	width: 401px;
}
.zhuanti-container .case-list .item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 100px;
	height: 80px;
	padding: 0 20px;
	margin-bottom: 18px;
	background: linear-gradient(180deg, #1986D4 0%, #005499 100%);
	border: 2px solid #FFFFFF;
	border-radius: 8px;
	transition: all .3s;
	cursor: pointer;
}
.zhuanti-container .case-list .item:hover {
	background: linear-gradient(180deg, #1E96EC 0%, #0A6BC2 100%);
	box-shadow: 0 4px 16px rgba(25,134,212,.35);
	transform: translateX(-6px);
}
.zhuanti-container .case-list .item:hover .title {
	color: #FCCB4E;
}
.zhuanti-container .case-list .item .title {
	position: relative;
	padding-left: 20px;
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.zhuanti-container .case-list .item .title:before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	display: block;
	width: 4px;
	height: 16px;
	background: #FCCB4E;
}
.zhuanti-container .case-list .item .date {
	white-space: nowrap;
	color: #D1EAFF;
}
/*底部*/
.footer {
	background: #EBEBEB;
}
.footer .site-links, .footer .friend-links {
	display: none;
}
.footer .footer-other .center, .footer .footer-other .footer-links .link{
	color: #333;
}
.footer .footer-other .footer-links .line {
	background: #333;
}
@media (min-width: 992px) {
	.zhuanti-container {
		background: url('/static/index/img/zhuanti/dxal/banner.png') no-repeat center top #6AAAD7;
	}
	
}
/* 小屏幕（手机横屏/小平板）  */
@media (max-width: 991px) {
	body {
		padding-top: 0;
	}
	/* banner */
	.zhuanti-container {
		padding-bottom: 30px;
		background: url('/static/index/img/zhuanti/dxal/banner-mobile.png') no-repeat center top/100% auto #6AAAD7;
	}
	.zhuanti-container .zhuanti-banner {
		height: 66.5vw;
		padding: 13px 0 0 10px;
	}
	.zhuanti-container .zhuanti-banner .logo img {
		width: 186px;
	}
	.zhuanti-container .case-list .item {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
		height: auto;
		padding: 10px;
		margin-bottom: 10px;
		background: linear-gradient(180deg, #1986D4 0%, #005499 100%);
	}
	.zhuanti-container .case-list .item:hover {
		transform: translateX(-3px);
	}
	.zhuanti-container .case-list .item .title {
		padding-left: 10px;
		font-size: 16px;
		line-height: 1.4;
		white-space: wrap;
	}
	.zhuanti-container .case-list .item .title:before {
		width: 3px;
		height: 10px;
		margin-top: 4px;
	}
	.zhuanti-container .case-list .item .date {
		padding-left: 10px;
		font-size: 14px;
		color: #D1EAFF;
	}
}