﻿.text-list {
	padding: 20px 0;
  }
  .text-list > a {
	height: 50px;
	line-height: 50px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: relative;
	color: #333;
	font-size: 16px;
	padding: 0 90px 0 0;
	transition: 0.3s;
	margin: 0px 30px;
  }
  .text-list > a > span {
	position: absolute;
	right: 0;
	top: 1px;
  }
  .text-list > a::before {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #3f51b5;
	transition: 0.5s;
  }
  .text-list > a:hover {
	color: #3f51b5;
  }
  .text-list > a:hover::before {
	width: 100%;
  }
  .pic-list {
	padding: 20px 0;
	margin: 0 -10px 0 -10px;
  }
  .pic-list > a {
	float: left;
	width: 215px;
	margin: 0 10px 30px 10px;
  }
  .pic-list > a > img {
	width: 215px;
	height: 170px;
	transition: 0.3s;
  }
  .pic-list > a > span {
	color: #333;
	font-size: 16px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: relative;
	transition: 0.3s;
  }
  .pic-list > a:hover > span {
	color: #3f51b5;
  }