* {
	margin: 0;
	padding: 0;
	font-size: 0.16rem;
}


.body {
	width: 100%;
	height: auto;
	background: url(../img/chuangxin_bg.jpg) center no-repeat;
	background-size: cover;
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;
}

.list {
	width: 100%;
	position: relative;
	margin-bottom: 0.4rem;
	display: flex;
	align-items: center;
}
.list_img {
	width: 3rem;
	height: 4.4rem;
	overflow: hidden;
	border-radius: 0.1rem;
	position: absolute;
	transition: 0.5s;
}
.left .list_img{
	left: 0;
}
.list_img img {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
}

.list_txt {
	width: 13.4rem;
	height: 5rem;
	background: rgba(255, 255, 255, 0.6);
	box-shadow: 0.03rem 0.03rem 0.18rem 0.01rem rgba(0, 0, 0, 0.16);
	border-radius: 0.1rem 0.1rem 0.1rem 0.1rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: right;
	align-content: center;
	transition: 0.5s;
}
.list_txt .list_title {
	width: 10.8rem !important;
	text-align: left;
	font-weight: 400;
	font-size: 0.24rem;
	color: #23478C;
	margin-bottom: 0.51rem;
	position: relative;
	margin-right: 0.55rem;
}

.list_txt .list_title::before {
	content: "";
	position: absolute;
	width: 0.5rem;
	height: 0.03rem;
	background: #23478C;
	bottom: -0.18rem;
	left: 0;
}

.list_txt .list_cont {
	width: 11rem;
	font-weight: normal;
	font-size: 0.16rem;
	color: #666666;
	line-height: 0.32rem;
	margin-right: 0.55rem;
	text-align: left;
	padding-right: 0.2rem;
	max-height: 3rem;
    overflow-y: auto;
}
.list_txt .list_cont p{
	color: #666;
}
.list_txt .list_cont::-webkit-scrollbar {
	width: 4px;    
	/*height: 4px;*/
}
.list_txt .list_cont::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 5px #23478C;
	background: #23478C;
}
.list_txt .list_cont::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
	border-radius: 0;
	background: rgba(0,0,0,0.1);
}




.left{
    justify-content: flex-end;
}
.right .list_img{
	right: 0;
}
.right .list_txt{
	justify-content: left;
}
.right .list_txt .list_title,
.right .list_txt .list_cont {
	margin-left: 0.55rem;
}

.list:hover .list_txt{
	width: 100% !important;
	transition: 0.5s;
	background: #fff;
}
.right:hover .list_img{
	right: 0.3rem;
	transition: 0.5s;
}
.left:hover .list_img{
	left: 0.3rem;
	transition: 0.5s;
}





