/*
* @Author: omtech.cn
* @Date:   2019-04-03 17:57:42
* @Last Modified by:   jason
* @Last Modified time: 2019-04-03 21:07:29
*/
@charset "utf-8";

/* 频道头部 */
.channel-header {
	position: relative;
	width: 100%;
	overflow: hidden;
	background-color: #fff;
}
.channel-header-img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	-webkit-filter: blur(1rem);
	   -moz-filter: blur(1rem);
	    -ms-filter: blur(1rem);
	        filter: blur(1rem);
	opacity: .8;
}
.channel-header-box {
	position: relative;
	z-index: 2;
	padding: 2.5rem 0;
}
.channel-header-inner-box {
	text-align: center;
}
.channel-header-logo {
	position: relative;
	margin: 0 auto;
	height: 5.4rem;
	width: 10rem;
	overflow: hidden;
	border-radius: 2rem;
}
.channel-header-logo:before {
	position: absolute;
	display: block;
	width: 200%;
	height: 200%;
	content: '';
	border: .1rem solid #fff;
	border-radius: 4rem;
	-webkit-transform: scale(.5);
	        transform: scale(.5);
	-webkit-transform-origin: 0 0;
	        transform-origin: 0 0;
}
.channel-header-logo img {
	width: 100%;
	height: 100%;
}
.channel-heder-bd { color: #fff; }
.channel-heder-bd .title {
	padding: 1.5rem 1rem;
	font-size: 1.6rem;
}
.channel-heder-bd .count { font-size: 0; }
.channel-heder-bd .count-num {
	position: relative;
	padding: 0 1.5rem;
	font-size: 1.2rem;
}
.channel-heder-bd .count-num:first-child:after {
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	width: .1rem;
	height: 2rem;
	content: '';
	background: #fff;
	-webkit-transform: scaleX(.5) translate(0, -50%);
	        transform: scaleX(.5) translate(0, -50%);
}

/* 频道简介和关注 */
.channel-desc-box {
	margin-bottom: 1rem;
	padding: 1rem;
	background-color: #fff;
}
.channel-description {
	margin-bottom: 1.5rem;
	font-size: 1.2rem;
	color: #898989;
	line-height: 1.5;
	text-align: justify;
}
.channel-attention {
	display: block;
	width: 9rem;
	height: 3rem;
	margin: 0 auto;
	margin-bottom: 1rem;
	font-size: 1.5rem;
	line-height: 3rem;
	color: #fff;
	text-align: center;
	border-radius: 3rem;
	background-color: #dc4712;
}
.channel-attention.active { background-color: #ff520a; }
.channel-attention span {
	position: relative;
	display: inline-block;
	padding-left: 1.8rem;
}
.channel-attention span:before,
.channel-attention span:after {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 1.2rem;
	height: .2rem;
	margin-top: -.1rem;
	content: '';
	background-color: #fff;
}
.channel-attention span:after {
	-webkit-transform: rotate(90deg);
	        transform: rotate(90deg);
}

/* 导航 */
.channel-nav-box,
.channel-nav { height: 4rem; }
.channel-nav {
	position: relative;
	padding: .5rem 0;
	background-color: #dc4712;
}
.channel-nav-fixed {
	position: fixed;
	top: 0;
	z-index: 2;
	width: 100%;
}
.channel-nav-lists {
	display: -webkit-box;
	display:         box;
	display: -webkit-flex;
	display:         flex;
	font-size: 0;
	-webkit-flex-flow: row wrap;
	        flex-flow: row wrap;
	-webkit-justify-content: space-around;
	        justify-content: space-around;
}
.channel-nav-lists .item {
	height: 3rem;
	font-size: 1.6rem;
	line-height: 3rem;
	text-align: left;
	        flex: 1 0 auto;
	-webkit-flex: 1 0 auto;
	        box-flex: 1 0 auto;
	-webkit-box-flex: 1 0 auto;
}
.channel-nav-lists .item:first-child { text-align: right; }
.channel-nav-lists .item a {
	display: inline-block;
	margin: 0 1.5rem;
	padding: 0 .5rem;
	height: 100%;
	cursor: pointer;
	color: #ffc9b0;
	border-bottom: .15rem solid transparent;
}
.channel-nav-lists .item.on a {
	color: #f2f2f2;
	border-bottom: .2rem solid #fff;
}

/* 列表 */
.channel-item {
	display: none;
	width: 100%;
	overflow: hidden;
	background: #fff;
}
.channel-item.on { display: block; }
