.main {
	background: #f1f1f1;
	min-height: 500px;
}
.main .search-area {
	float: left;
	width: 100%;
	background: #fff;
	padding: 80px 0 40px;
}
.main .search-wraper {
	width: 500px;
	height: 35px;
	border: 2px solid #000;
	background: #fff;
	margin: 0 auto;
}
.main .search-site {
	width: 19px;
	margin: 8px 7px 8px 7px;
	float: left;
	cursor: pointer;
}
.main .search-input {
	float: left;
	background: #fff;
    color: #858585;
    border: none;
    outline: none;
    padding: 0 5px;
    vertical-align: middle;
    height: 19px;
    line-height: 1;
    font-size: 14px;
    letter-spacing: 2px;
    margin: 8px 0;
    width: 407px;
}
.main .search-total {
	font-size: 16px;
	color: #010101;
	text-align: center;
	line-height: 16px;
	margin-top: 25px;
	letter-spacing: 2px;
}


.article-list {
	float: left;
	width: 100%;
	margin: 20px 0 0px;
}
.article-list .list-null {
	font-size: 16px;
    color: #010101;
    text-align: center;
    line-height: 16px;
    margin-top: 60px;
    letter-spacing: 2px;
}
.article-list li {
	float: left;
	width: 18.8%;
	margin-right: 1%;
	margin-bottom: 20px;
	box-shadow: 3px 3px 20px #ccc;
	position: relative;
}
.article-list li:nth-child(5n+1) {
	margin-left: 1%;
}
.article-list li a {
	position: relative;
	display: block;
}
.article-list .thumbnail-wraper {
	width: 100%;
    overflow: hidden;
    /* height: 200px; */
}
.article-list .digitial-li .thumbnail-wraper, .article-list .barometer-li .thumbnail-wraper {
	height: auto;
}
.article-list .thumbnail {
	width: 100%;
	aspect-ratio: 1.3;
	object-fit: cover;
	vertical-align: top;
	transition: all 0.6s ease;
	-moz-transition: all 0.6s ease; /* Firefox */
	-webkit-transition: all 0.6s ease; /* Safari 和 Chrome */
	-o-transition: all 0.6s ease; /* Opera */
}
.article-list .thumbnail:not(.no-hover):hover {
	transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-webkit-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
}
.article-list .text-box {
	background: #fff;
	padding: 10px 15px 25px;
}
.article-list .text-box .wrap {
	float: left;
	width: 100%;
	margin-bottom: 10px;
}
.article-list .date {
	float: right;
	color: #aaa;
	font-size: 14px;
}
.article-list .title {
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 22px;
}
.article-list .barometer-bg {
	width: 100%;
	vertical-align: top;
}
.article-list .barometer-box {
	position: absolute;
	width: 100%;
	top: 55px;
}
.article-list .score-wraper {
	text-align: center;
}
.article-list .score {
	color: #fff;
	font-size: 60px;
	line-height: 80px;
	font-weight: 600;
	display: inline-block;
	letter-spacing: 2px;
}
.article-list .score-wraper span {
	font-size: 18px;
	color: #fff;
}
.article-list .want-buy {
	font-size: 14px;
	color: #fff;
	text-align: center;
	padding: 10px 10px 0;
}
.article-list .fee, .article-list .free {
	position: absolute;
	right: 8px;
	top: 8px;
	background: #d20038;
	color: #fff;
	z-index: 10;
	border-radius: 3px;
	padding: 3px 8px;
	font-size: 12px;
	display: none;
}
.article-list .free {
	background: #000;
}
.article-list .tag-img {
	height: 18px;
}
.download-page .article-list .fee, .download-page .article-list .free {
	display: block;
}
.more {
	width: 100%;
	text-align: center;
	float: left;
	margin-bottom: 60px;
	visibility: hidden;
}
.more img {
	width: 28px;
}

.download-page .list-title {
	text-align: center;
	width: 100%;
	font-weight: 400;
	font-size: 28px;
	margin: 40px 0;
}
.download-page .report-more {
	margin-bottom: 20px;
}
.download-page .monitor-more {
	margin-bottom: 100px;
}
.download-page .more .click {
	margin: 30px 0;
}
.download-page .more .click span {
	padding: 8px 18px;
	border: 1px solid #000;
	cursor: pointer;
	font-size: 14px;
}
.download-page .hr {
	float: left;
	width: 100%;
	height: 1px;
	background-color: #cecece;
	margin-bottom: 40px;
}
.download-page .monitor-part {
	display: none;
}


@media only screen and (max-width: 1250px) 
{
	/*每行4个*/
	.article-list li {
		width: 23.75%;
	}
	.article-list li:nth-child(5n+1) {
		margin-left: 0;
	}
	.article-list li:nth-child(4n+1) {
		margin-left: 1%;
	}
	.article-list .barometer-box {
		top: 35px;
	}
}
@media only screen and (max-width: 960px) 
{
	/*每行3个*/
	.article-list li {
		width: 32%;
	}
	.article-list li:nth-child(5n+1) {
		margin-left: 0;
	}
	.article-list li:nth-child(4n+1) {
		margin-left: 0;
	}
	.article-list li:nth-child(3n+1) {
		margin-left: 1%;
	}
	.article-list .barometer-box {
		top: 55px;
	}
}


/*---sp版---*/
@media only screen and (max-width: 860px) 
{
	.main {
		min-height: 560px;
	}
	.main .search-area {
		padding: 20px 0;
	}
	.main .search-wraper {
		width: 88%;
		height: 40px;
		margin: 0 6%;
	}
	.main .search-site {
		width: 20px;
		margin: 10px;
	}
	.main .search-input {
	    height: 20px;
	    line-height: 20px;
	    font-size: 16px;
	    margin: 5px 0;
	    width: 240px;
	}
	.main .search-total {
		font-size: 14px;
		margin-top: 15px;
	}
	.article-list {
		width: 88%;
		margin: 20px 6% 20px;
	}
	.article-list li {
		width: 48.5%;
	}
	.article-list li:nth-child(5n+1) {
		margin-left: 0;
	}
	.article-list li:nth-child(4n+1) {
		margin-left: 0;
	}
	.article-list li:nth-child(3n+1) {
		margin-left: 0;
	}
	.article-list li:nth-child(2n+1) {
		margin-left: 1%;
	}
	.article-list .thumbnail:hover {
		width: 100%;
	}
	.article-list .text-box {
		padding: 15px 15px 35px;
	}
	.article-list .barometer-box {
		top: 45px;
	}
	.more {
		width: 100%;
		text-align: center;
		float: left;
		margin-bottom: 10px;
	}
	.more span {
		color: #c7c7c7;
		font-size: 14px;
		letter-spacing: 2px;
	}
	.more img {
		width: 14px;
	}
}

/*---sp版---*/
@media only screen and (max-width: 600px) 
{
	.article-list li {
		width: 100%;
		margin-right: 0;
	}
	.article-list li:nth-child(5n+1) {
		margin-left: 0;
	}
	.article-list li:nth-child(4n+1) {
		margin-left: 0;
	}
	.article-list li:nth-child(3n+1) {
		margin-left: 0;
	}
	.article-list li:nth-child(2n+1) {
		margin-left: 0;
	}
}