/**
 * product Start
 */
.product {
	margin-top: 30px;
}

.product .area {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.product .list {
	width: 980px;
	min-height: 1102px;
	background-color: #FFFFFF;
}

.product .list .top {
	padding: 0 9px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	line-height: 36px;
	padding-top: 8px;
	margin-bottom: 12px;
}

.product .list .top::after {
	content: '';
	position: absolute;
	border-bottom: 1px solid #000000;
	bottom: 0;
	right: 9px;
	left: 9px;
}

.product .list .top .column {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.product .list .top .column span em {
	color: #2343B2;
}

.product .list .top .column img {
	width: 18px;
	margin-right: 4px;
}

.product .list .top .position span, .product .list .top .position a {
	font-size: 14px;
	color: #666666;
}

.product .list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0 20px;
}

.product .list ul a {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 920px;
	background-color: #FFFFFF;
	box-shadow: 0 0 10px #dedede;
	margin-bottom: 16px;
	padding: 10px;
	font-size: 14px;
	color: #999999;
}

.product .list ul a:hover {
    box-shadow: 0 0 10px #8c8c8c;
}

.product .list ul a .img-area {
	overflow: hidden;
	border: 1px solid #d2d2d2;
	width: 197px;
	height: 131.33px;
}

.product .list ul a .img-area img {
	display: block;
	width: 100%;
	transition: all 0.6s ease-in-out;
}

.product .list ul a:hover img {
    transform: scale(1.05);
}

.product .list ul a .info {
	padding: 0 10px;
	padding-bottom: 10px;
	width: 686px;
}

.product .list ul a .info h3 {
	font-size: 16px;
	color: #000000;
	line-height: 32px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.product .list ul a .info p {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	height: 60px;
}

.product .list ul a .info .bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #dddddd;
	margin-top: 6px;
	padding-top: 4px;
}
/**
 * product End
 */

/**
 * 翻页 Start
 */
.page {
    text-align: center;
    padding: 30px 0 30px 0;
}

.page div > * {
    display: inline-block;
	color: #b5b5b5;
	font-size: 18px;
	line-height: 28px;
	padding: 0 14px;
	border-radius: 3px;
	border: 1px solid #dcdcdc;
	margin-right: 8px;
}

.page div > *:hover {
    background-color: #2343B2;
    color: #ffffff;
}

.page span {
    background-color: #2343B2;
    color: #ffffff;
    cursor: pointer;
}
/**
 * 翻页 End
 */

