@charset "utf-8";

/**************************************
 * Title: index.css （首页样式）
 * Object: sushangxy.com
 * Layout: Flex-layout fm-flex(自写)
 * Color：#8f774a(暗黄 - logo底色)、#93794b(微暗黄 - 大标题-主要)、#956f2b(微亮黄 - 链接/标题-主要)、#aa8b09(亮黄 - 菜单/分类背景)
 * Author: FengMind <fengmind@qq.com>
 * Date: 2020/7/28
 **************************************/


/**************************************
************ Index-Banner *************
***************************************/
#index-banner {
	width: 100%;
	height: 600px;
	margin-top: 80px;
	position: relative;
}

#index-banner ul.slide-group {
	display: block;
	width: 100%;
	height: 100%;
}

#index-banner ul.slide-group li {
	width: 1400px;
	height: 100%;
	display: inline-block;
}

/* #index-banner ul.slide-group li img {
	width: 100%;
	height: 100%;
} */

#index-banner .slide-visual {
	width: 1400px;
	height: 100%;
}

/* 两边cover */
#index-banner .slide-visual .slide_tint.left {
	right: 1400px
}

#index-banner .slide-visual .slide_tint.right {
	left: 1400px
}

/* 导航 */
#index-banner .btn-prev {
	display: block;
	position: absolute;
	left: -80px;
	top: 50%;
	margin-top: -43px;
	opacity: 1;
	z-index: 999;
	width: 100px;
	height: 100px;
}

#index-banner .btn-prev i {
	display: block;
	font-size: 80px;
	color: white;
}

#index-banner .btn-next {
	display: block;
	position: absolute;
	right: -100px;
	top: 50%;
	margin-top: -43px;
	opacity: 1;
	z-index: 999;
	width: 100px;
	height: 100px;
}

#index-banner .btn-next i {
	display: block;
	font-size: 80px;
	color: white;
}

/**
 * 图片布局
 */
/*插件影响*/
#index-banner *{ 
	box-sizing: border-box;
}
#index-banner ul.slide-group li {
	width: 1400px;
	height: 100%;
	display: inline-block;
	box-sizing: border-box;
	position: relative;
	cursor: pointer;
}

/* main pic */
#index-banner .main-pic {
	display: block;
	width: 66.7%; /*934px*/
	height: 100%;
	float: left;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

#index-banner .main-pic img {
	display: block;
	width: 100%;
	height: 100%;
	/*820*500*/
	transition: transform 0.5s;
}

#index-banner .main-pic .titlex {
	display: block;
	width: 100%;
	height: 80px;
	position: absolute;
	bottom: 0px;
	background-color: rgba(0,0,0,0.7);
	color: white;
	padding: 10px 30px;
	padding-right: 100px;
}

#index-banner .main-pic .titlex h2{
	display: block;
	font-size: 22px;
	color: white;
	font-weight: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	white-space: nowrap;
}
#index-banner .main-pic .titlex span{
	display: block;
	padding-right: 50px;
	margin-top: 5px;
	color: #ece9e9;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	white-space: nowrap;
}
#index-banner .main-pic:hover img{
	transform: scale(1.2);
}
#index-banner .main-pic .titlex:hover h2{
	text-decoration: underline;
}

/* right pic */
#index-banner .right-pic {
	width: 33.3%; /*467px*/
	height: 100%;
	position: absolute;
	right: 0px;
}

#index-banner .right-pic .top {
	display: block;
	width: 100%;
	height: 50%;
	position: relative;
	overflow: hidden;
}

#index-banner .right-pic .bottom {
	display: block;
	width: 100%;
	height: 50%;
	position: relative;
	overflow: hidden;
}

#index-banner .right-pic img {
	display: block;
	width: 100%;
	height: 100%;
	/*560*480*/
	transition: transform 0.5s;
}

.right-pic .top  .titlex,.right-pic .bottom .titlex{
	display: block;
	width: 100%;
	height: 40px;
	position: absolute;
	bottom: 0px;
	background-color: rgba(0,0,0,0.7);
	color: white;
	padding: 10px 30px;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	white-space: nowrap;
	text-align: center;
	transition: bottom 0.5s;
}

.right-pic .top:hover .titlex,.right-pic .bottom:hover .titlex{
	bottom: 0px;
}

.right-pic .top  .titlex:hover,.right-pic .bottom .titlex:hover{
	text-decoration: underline;
}

#index-banner .right-pic img:hover{
	transform: scale(1.2);
}




/*********************************************
************ Index-Module-Common *************
**********************************************/
.index-more {
	float: right;
	font-size: 24px;
	color: var(--main-title-color);
}

.module-frame {}

@keyframes lineShow {
	0% {
		border-color: white;
		transform: rotateY(90deg);
	}

	100% {
		transform: rotateY(0deg);
		border-bottom: 2px solid darkorange;
	}

}

@-moz-keyframes lineShow {
	from {
		background: red;
	}

	to {
		background: darkorange;
	}
}

@-webkit-keyframes lineShow {
	from {
		background: red;
	}

	to {
		background: yellow;
	}
}

@-o-keyframes lineShow {
	from {
		background: red;
	}

	to {
		background: yellow;
	}
}


.common-line.banner-l {
	border: none;
	border-bottom: 2px solid darkorange;
	margin-top: 0px;
	animation: lineShow 5s linear 1s infinite alternate;
	-moz-animation: lineShow 5s linear 1s infinite alternate;
	-webkit-animation: lineShow 5s linear 1s infinite alternate;
	-o-animation: lineShow 5s linear 1s infinite alternate;
	animation-play-state: running;
}

/*********************************************
************ Index-Module-Banner *************
**********************************************/

.left-img {
	height: 500px;
}

.left-img img {
	height: 100%;
}


/********************************************
************ Index-Quick-Module *************
*********************************************/
.index-quicklink {
	width: 100%;
	height: 180px;
	text-align: center;
	background-color: white;
}

.quick-list {
	display: inline-block;
}

.quick-list a {
	position: relative;
	display: block;
	width: 200px;
	height: 60px;
	line-height: 60px;
	background-color: red;
	float: left;
	margin-left: 50px;
	margin-top: 60px;
	color: white;
	font-size: 18px;
	font-weight: bold;
	border-radius: 10px 0px 10px 0px;
	box-shadow: 5px 5px 5px #888888;
	padding: 0 10px;
	padding-right: 30px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: break-all;
}
@media (min-width: 768px) {
	.quick-list a:first-child {
		margin-left: 0px;
	}
}

.quick-list a i {
	font-size: 25px;
	margin-right: 20px;
	position: absolute;
	right: 0;
	top: 0;
	display: inline-block;
	color: white;
}

.quick-list a:hover {
	opacity: 0.5;
}

.quick-list a:nth-child(1) {
	background-color: coral;
}

.quick-list a:nth-child(2) {
	background-color: seagreen;
}

.quick-list a:nth-child(3) {
	background-color: rgb(80, 140, 220);
}

.quick-list a:nth-child(4) {
	background-color: mediumpurple;
}

.quick-list a:nth-child(5) {
	background-color: darkred;
}

.quick-list a:nth-child(6) {
	background-color: darkgoldenrod;
}


/*******************************************
************ Index-News-Module *************
********************************************/
.index-news-module {
	height: auto;
	margin-top:-20px;
}

.index-news-module .common-line {
	margin-top: 40px;
}

.index-news-module .module-frame{
	margin-top: 20px;
}

ul.news-list {
	width: 100%;
	display: inline-block;
	margin-top: 40px;
	background-color: white;
	padding: 30px;
}

ul.news-list:first-child {
	margin-top: 50px;
}

ul.news-list .tt {
	width: 100%;
	height: 50px;
	font-size: 18px;
	color: #825400;
	/* border-bottom: 1px solid #e4e4e4;
	margin-bottom: 30px; */
}

ul.news-list .tt i {
	margin-right: 5px;
}

ul.news-list li[class^=fm-item] {
	width: 310px;
	margin-left: 33px;
}

ul.news-list li:first-of-type {
	margin-left: 0px;
}

ul.news-list li a.thumb {
	display: block;
	width: 100%;
	height: 170px;
	overflow: hidden;
	transition: filter 1s;
	transition: -webkit-filter 1s;
	transition: opacity 1s;
	-moz-transition: opacity 1s;
	-webkit-transition: opacity 1s;
	-o-transition: opacity 1s;
}

ul.news-list li a.thumb img {
	width: 100%;
	height: 100%;
	transition: transform 1s;
}

ul.news-list li .title {
	display: block;
	font-size: 16px;
	width: 100%;
	height: 45px;
	margin: 5px 0px;
	margin-top: 10px;
	color: var(--main-link-color);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

ul.news-list li .summary {
	width: 100%;
	height: 30px;
	line-height: 30px;
	color: #777;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	white-space: nowrap;
}

/* @keyframes ani-news-thumb-hover {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0.5;
	}
} */
ul.news-list li a.thumb:hover {
	/* opacity: 0.7; */
	filter: drop-shadow(2px 4px 6px #000);
}

ul.news-list li .title:hover {
	text-decoration: underline;
}

ul.news-list li a.thumb:hover img {
	transform: scale(1.2);
	-ms-transform: scale(1.2);
	-webkit-transform: scale(1.2);
}

ul.news-list .title-more {
	width: 100px;
	height: 30px;
	line-height: 30px;
	float: right;
	text-align: right;
}

ul.news-list .title-more a {
	display: block;
	color: var(--main-title-color);
	font-size: 16px;
}

ul.news-list .title-more .more {
	font-size: 14px;
	margin-top: 5px;
	color: var(--main-title-color);
}

ul.news-list .title-more i {
	color: var(--main-title-color);
	font-size: 24px;
	margin-right: 10px;
}

ul.news-list .title-more a:hover {
	color: #333;
}

/********************************************
************ Index-Views-Module *************
*********************************************/
.index-views-module {
	margin-bottom: 30px;
}

.index-views {
	width: 100%;
	position: relative;
}

.index-views #views-list {
	width: calc(100% + 40px);
	margin-left: 0px;
	margin-right: -10px;
	display: inline-block;
	position: relative;
	margin-left: -20px;
	margin-top: 20px;
}
#views-list .item {
	display: inline-block;
	float: left;
	width: 100%;
	padding: 0px;
	margin: 0px;
	padding-bottom: 10px;
}
#views-list .item ul{
	display: inline-block;
	width: 100%;
	height: 100%;
}
#views-list .item ul li{
	display: inline-block;
	margin-top: 30px;
	width: 480px;
	height: 470px;
	float: left;
	padding: 20px;
}

#views-list .item ul li .itemx{
	width: 100%;
	height: 100%;
	background-color: white;
	box-shadow: 3px 5px  3px #888888;
}
#views-list ul li  .itemx:hover{
	cursor: pointer;
	opacity: 0.7;
}

#views-list ul li  .itemx:hover .title{
	text-decoration: underline;
}

#views-list ul li .itemx  img {
	display: inline-block;
	width: 340px;
	height: 220px;
	margin-top: 50px;
	border-radius: 5px;
}

#views-list ul li .itemx .name {
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 30px;
	font-size: 20px;
	color: #333;
}

#views-list ul li  .itemx .title {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 16px;
	line-height: 24px;
	height: 48px;
	padding: 0px 60px;
	margin-top: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-decoration: underline;
}

#views-list .owl-controls .owl-page{
	width: 20px;
	margin-top: 1050px;
	margin-right: 20px;
}
.owl-theme .owl-controls .owl-page span{
	width: 15px;
	height: 15px;
	background-color: #e4e4e4;
	border: 2px solid #999;
	opacity: 0.7;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	background-color: white;
	border: 2px solid #666;
}

/* owl-carousel修改*/


/* 新版 - fengmind */
@media (min-width: 768px) {
	.index-views-module .fm-container{
		width: 1428px;
	}
}
.index-views{
	width: 100%;
	display: inline-block;
	margin-top: 30px;
}
.index-views .item{
	display: inline-block;
	padding: 14px;
	margin-top: 28px;
}
.index-views .item .in{
	display: block;
	width: 100%;
	background-color: white;
	box-shadow: 3px 5px  3px #888888;
	padding-bottom: 15px;
	overflow: hidden;
}
.index-views .in .avatar{
	display: block;
	width: 100%; /*329*/
	height: 212px;
	overflow: hidden;
}

.index-views .in .avatar img{
	width: 100%;
	height: 100%;
	transition: transform 1s;
}

.index-views .in .author{
	width: 100%;
	padding: 5px 20px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 20px;
	margin-top: 15px;
}
.index-views .in .title{
	width: 100%;
	padding: 5px 30px;
	height: 60px;
	line-height: 25px;
	text-align: center;
	font-size: 16px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-top: 5px;
}

.index-views .item .in:hover{
	cursor: pointer;
	box-shadow: 3px 5px  3px var(--main-title-color);
}

.index-views .item .in:hover .title{
	text-decoration: underline;
}

.index-views .in .avatar img:hover{
	transform: scale(1.2);
}


/********************************************
************ Index-Intro-Module *************
*********************************************/
.index-intro-module {
	display: inline-block;
	margin-top: 20px;
	margin-bottom: 20px;
}

.intro-content {
	width: 100%;
	display: inline-block;
	color: #333;
	padding: 0;
	margin-top: 60px;
	padding: 30px 60px;
	padding-bottom: 50px;
	background-color: white;
	
}

.intro-content .content {
}

.intro-content .content img{
	max-width: 100%;
}

.intro-content .content .intro p,.intro-content .content .intro p span,.intro-content .content .intro p a{
	font-size: 18px;
	line-height: 40px;
	margin-top: 20px;
}

.intro-content .content .intro p i {
	font-size: 20px;
	color: var(--main-title-color);
}

.intro-content .content .intro span.quote-right i {
	margin-top: 5px;
}

.intro-content .content .target {
	display: block;
	margin-top: 20px;
	font-size: 18px;
	line-height: 40px;
}

.intro-content .content .vision {
	margin-top: 20px;
	line-height: 26px;
	font-size: 18px;
	line-height: 40px;
}

.intro-content .content .vision p.tit {
	margin-bottom: 5px;
	font-weight: bold;
}

.intro-content .content .vision p.tit i {
	margin-right: 5px;
}

.intro-content .content .vision p {
	color: var(--main-link-color);
}

.intro-content .content .special {
	margin-top: 20px;
	font-size: 18px;
	line-height: 40px;
}

.intro-content .content .special p {
	/* color: var(--main-nav-color); */
}

.intro-content .content .special p.tit {
	font-weight: bold;
}

.intro-content .content .special p.tit i {
	margin-right: 5px;
	font-weight: normal;
}

.intro-pics {
	position: relative;
	width: 100%;
	margin-top: 40px;
}

.intro-pics img {
	display: block;
	width: 300px;
	height: 180px;
	float: left;
}

