@charset "utf-8";

.detail-info.desc p {
	text-indent: 2em;
	text-align: left;
	margin-bottom: 20px;
}

.detail-action {
	width: 90%;
	vertical-align: middle;
	margin: auto;
	text-align: right;
	color: var(--green);
}

.image-content {
	margin-bottom: 20px;
	border: solid 1px #EDEDED;
	border-radius: 8px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	width: 100%;
	height: auto;
}

.area-and-yield {
	margin-top: 20px;
	margin-bottom: 20px;
}

.area-and-yield th {
	text-align: center;
	font-size: 18px;
	background-color: #72c519;
}

.area-and-yield caption {
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	color: black;
}

.text-td {
	text-align: left;
}

.text-td-center {
	text-align: center;
}

.text-span-td {
	text-align: center;
	writing-mode: vertical-rl;
	background-color: #EDEDED;
}

.data-td {
	text-align: right;
}

.total-tr {
	color: #72c519;
}

.el-button,
.el-button:hover,
el-button.is-active {
	color: var(--green);
	font-size: 20px;
}

.el-button--text {
	color: var(--green);
}

.pro-ls {
	padding: var(--bk) 0;
}


.pros {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	grid-gap: 20px;
	margin-bottom: var(--bk);
}

.pros li {
	background: var(--cf);
	border-radius: 0px;
	padding: 0px;
	cursor: pointer;
	background-color: transparent;
}

.pros li .imgbox {
	padding-bottom: 0px;
	height:
}

.imgbox-photo {
	width: 100%;
	background-color: transparent;
}

.imgbox-title {
	width: 100%;
	background-color: transparent;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
	font-size: 12px;
}




.news {
	margin-bottom: 16px;
}

.news-list {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.news-list-item {
	display: block;
	box-sizing: border-box;
	width: 33.33333333%;
	padding: 16px;
}
.news-list-item2 {
	display: block;
	box-sizing: border-box;
	width: 50%;
	padding: 16px;
}
.news-list-item-wrapper {}

.news-link {
	cursor: pointer;
}

.news-list-item-cover {
	cursor: pointer;
	margin-bottom: 16px;
}

.news-list-item-cover-image {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	padding-top: 55%;
}

.news-list-item-date {
	line-height: 32px;
	color: blue;
}

.news-list-item-desc {
	line-height: 20px;
	text-indent: 0em;
	text-align: left;

	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}


.videos {
	margin-bottom: 16px;
}

.videos-list {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.videos-list-item {
	display: block;
	box-sizing: border-box;
	width: 33.33333333%;
	padding: 16px;
}

.videos-list-item-wrapper {}


.videos-list-item-cover {
	cursor: pointer;
	margin-bottom: 16px;
}

.videos-list-item-cover-image {
	width: 100%;
	height: 187px;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	/*padding-top: 55%;*/
}

.videos-list-item-cover-image-mask {
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: rgba(22, 119, 255, .6);
	visibility: hidden;
	opacity: 0;
	transition: all .3s cubic-bezier(.165, .84, .44, 1);
}


.videos-list-item-title {
	line-height: 32px;
	text-align: center;
}


/*小于1024*/
@media screen and (max-width: 1024px) {
	.pros {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 20px;
		margin-bottom: var(--bk);
	}

	.news-list-item {
		display: block;
		box-sizing: border-box;
		width: 50%;
		padding: 16px;
	}

    .news-list-item2 {
		display: block;
		box-sizing: border-box;
		width: 100%;
		padding: 16px;
	}
	.videos-list-item {
		display: block;
		box-sizing: border-box;
		width: 50%;
		padding: 16px;
	}
}

/*小于1024*/
@media screen and (max-width: 1000px) {
	.detail-action {
		width: 95%;
	}

	.pros {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 20px;
		margin-bottom: var(--bk);
	}
}

/*小于800*/
@media screen and (max-width: 800px) {

	.pros {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		grid-gap: 20px;
		margin-bottom: var(--bk);
	}

	.news-list-item {
		display: block;
		box-sizing: border-box;
		width: 100%;
		padding: 16px;
	}
    .news-list-item2 {
		display: block;
		box-sizing: border-box;
		width: 100%;
		padding: 16px;
	}
	.videos-list-item {
		display: block;
		box-sizing: border-box;
		width: 100%;
		padding: 16px;
	}
}