html, body {
	width: 100%;
	min-width: 1300px;
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: #fff;
}

* {
	font-family: 'microsoft yahei';
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

p, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	text-decoration: none;
	font-weight: 400;
	font-size: 100%;
}

#app {
	width: 100%;
	height: 100%;
}
/* 清除浮动 */
.fix {
	zoom: 1;
}

.fix:after {
	display: block;
	content: 'clear';
	clear: both;
	line-height: 0;
	visibility: hidden;
}

a {
	color: #333;
	text-decoration: none;
}

a:hover, a:active, a:focus {
	color: #ffe06c;
	text-decoration: none;
}

a.full {
	display: block;
	width: 100%;
	height: 100%;
}
/* 左浮动和右浮动 */
.f-l {
	float: left;
}

.f-r {
	float: right;
}
/* 文字对齐方式 */
.align-left {
	text-align: left !important;
}

.align-center {
	text-align: center !important;
}

.align-right {
	text-align: right !important;
}
/* 行内块元素 */
.inline-block {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	vertical-align: top;
}

.font-size-none {
	font-size: 0 !important;
}

.container {
	position: relative;
	padding: 0;
	width: 1200px;
}
/* 无间距栅格 */
.row-no{
	margin-left: 0;
	margin-right: 0;
}
.row-no .col-xs-2 {
	padding-left: 0;
	padding-right: 0;
}


.header .container,
.footer .container {
	z-index: 10;
}


.hidden {
	display: none;
}

.bg-cover {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.bg-contain {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
/* 单行超出部分省略 */
.overflow-ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
/* 多行文本超出部分省略
 * multiline-overflow-ellipsis 用于外层容器
 * multiline-overflow-ellipsis-baffle 为遮挡容器，为外层容器内的最后一个新span标签的class
 * 外层容器在使用时，应根据“需要行数”和“行高”自行设定“高度”或者“最大高度”
*/
.multiline-overflow-ellipsis {
	overflow: hidden;
	position: relative;
	display: block;
}

.multiline-overflow-ellipsis::after {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 0 0 0 10px;
	width: 70px;
	content: "...";
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.1),
		rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
	background: -o-linear-gradient(right, rgba(255, 255, 255, 0.1),
		rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
	background: -moz-linear-gradient(right, rgba(255, 255, 255, 0.1),
		rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
	background: linear-gradient(to right, rgba(255, 255, 255, 0.1),
		rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
}

.multiline-overflow-ellipsis-baffle {
	position: relative;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	vertical-align: top;
	width: 30px;
	height: 19px;
}

.multiline-overflow-ellipsis-baffle::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 1200px;
	height: 200px;
	background: #fff;
}

/* 轮播图 */
.carousel {
	height: 100%;
	width: 100%;
}

.carousel-inner {
	height: 100%;
	width: 100%;
}

.carousel-inner .item {
	height: 100%;
	width: 100%;
}

.carousel-inner .item>a {
	display: block;
	height: 100%;
	width: 100%;
}

.carousel-inner .item .carousel-image {
	height: 80%;
	background-image: ;
	background-size: cover;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center;
}

.carousel-inner .carousel-title {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-top: 30px;
	font-size: 24px;
	line-height: 1;
	color: #3165ac;
	text-align: center;
	font-weight: 700;
}

.carousel-indicators {
	margin-bottom: -43px;
	letter-spacing: 2px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.carousel-indicators li {
	border: none;
	height: 12px;
	width: 12px;
	background-color: #fff;
}

.carousel-indicators li.active {
	margin: 1px;
	height: 12px;
	width: 12px;
	background-color: #ff0000;
}

.carousel-control.left,
.carousel-control.right {
	width: 60px;
	height: 60px;
	top: 50%;
	margin-top: -30px;
	border: 1px solid #ccc;
	background: none;
	background-color: #fff;
    line-height: 62px;
	color: #3b4855;
	opacity: 1;
    filter: alpha(opacity=100);
    text-shadow: none;
}

.carousel-control:hover {
	background-color: #eb9140;
	border-color: #eb9140;
	color: #fff;
}

.carousel-control.left {
	left: -70px;
}

.carousel-control.right {
	right: -70px;
    transform: rotate(180deg);
}


.carousel-control .layui-icon {
	font-size: 24px;
}

/* 图片压图 */
.pic-caption {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	position: absolute;
	bottom: 0;
	padding-left: 18px;
	padding-right: 16px;
	width: 100%;
	height: 44px;
	background-color: rgb(245, 200, 159, 0.8);
	text-align: left !important;
	color: #fff;
}

.pic-caption .pic-title>a {
	position: relative;
	color: #fff;
	font-size: 20px;
	line-height: 44px;
	font-family: 'microsoft yahei';
	font-style: regular;
}

/* //3:2图片比例 */
.image-scale-cover {
	position: relative;
	width: 100%;
	padding-top: 66.6666666666666666666%;
	background-color: #eee;
	background-image: ;
	background-size: cover;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center;
	overflow: hidden;
	width: 100%;
}
/* 蒙版 */
.padd-pointer {
	position: absolute;
	bottom: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.padd-pointer.video-player {
	background-image: url(/uploads/image/sfski2021kjhdz/video_stop.png);
	background-repeat: no-repeat;
	background-position: center;
}

.padd-pointer.video-player:hover {
	background-image: url(/uploads/image/sfski2021kjhdz/video_play.png);
}

/* 点 列表*/
.dist {
	width: 100%;
	margin-top: 12px;
	margin-bottom: 12px;
	overflow: hidden;
}

.dist div {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.dist div>span {
	padding-right: 10px;
	position: relative;
	background-image: url(/uploads/image/sfskimages/cir.png);
	background-repeat: no-repeat;
	background-position: 0 4px;
	line-height: 38px;
	padding-left: 24px;
}

.dist div>span>a {
	color: #666666;
	font-size: 16px;
	font-family: 'microsoft yahei';
	font-style: regular;
}

.dist div>span>a:hover {
	color: #0568b0;
	text-decoration: none;
}

.zt-d {
	margin-bottom: 0px;
}

/* 头部部分 
-------------------------------------------------------------------------*/
.header {
	position: relative;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
}
.header .nav {
	overflow: hidden;
	text-align: center;
}

.nav .nav-item {
	padding: 0 18px;
	border-left: 1px solid #999999;
	height: 56px;
	line-height: 28px;
	font-size: 20px;
	color: #595757;
	text-align: center;
}

.nav .nav-item:first-child {
	border-left: 0 none;
}

.nav .nav-item:hover {
	color: #46a9fe;
}

.nav .nav-item.vertical-middle::before {
  display: inline-block;
  content: "";
  height: 100%;
  vertical-align: middle;
}

.header .organizers-cell {
	margin-top: 60px;
	margin-right: 80px;
	font-size: 20px;
	color: #ebcaa4;
	text-align: right;
}

/* 右侧导航 */
.fixbar-nav {
	position: fixed;
	right: 0;
	bottom: 2%;
	z-index: 1024;
	visibility: hidden;
	padding: 4px;
	width: 150px;
	height: 807px;
    text-align: center;
	color: #fff;
	opacity: 0;
    filter: alpha(opacity=0);
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	border: 1px solid #00cd9a;
	background: #fff;
}

.fixbar-nav-bg {
	height: 100%;
	padding-top: 20px;
	background: linear-gradient(179.66deg, #013f93, #00cd9a);
}

.fixbar-nav.fixbar-nav-show {
	right: 20px;
	visibility: visible;
	opacity: 1;
   	filter: alpha(opacity=100);
}

.fixbar-nav .close {
	position: absolute;
	top: -10px;
    right: -10px;
	z-index: 1024;
	width: 30px;
	height: 30px;
	background-image: url(/uploads/image/sfski2fixbar-nav/fixbar-nav-close.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 1;
    filter: alpha(opacity=100);
}

.fixbar-nav .close:hover {
    opacity: .8;
    filter: alpha(opacity=80);
}

.fixbar-nav .fixbar-nav-item {
	position: relative;
	padding: 9px;
	width: 100%;
    min-height: 31px;
	font-size: 16px;
	line-height: 18px;
	user-select: none;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
	background-image: url(/uploads/image/sfski2fixbar-nav/fixbar-nav-line.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}

.fixbar-nav .fixbar-nav-item>img {
    margin-top: 2px;
    margin-bottom: 8px;
}

.fixbar-nav .fixbar-nav-item>span {
    display: block;
}

.fixbar-nav .fixbar-nav-item.top {
    overflow: hidden;
    height: 30px;
    background: transparent;
}

.fixbar-nav .fixbar-nav-item:hover,
.fixbar-nav .fixbar-nav-item.top:hover {
	color: #fad168;
}

.fixbar-nav .fixbar-nav-ercode .ercode-cell {
	position: absolute;
	left: -340px;
	bottom: -30px;
	visibility: hidden;
	padding: 20px 40px;
	width: 360px;
	height: 200px;
	border-radius: 12px;
	opacity: 0;
    filter: alpha(opacity=0);
    background-color: #fff;
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
}

.fixbar-nav .fixbar-nav-ercode:hover .ercode-cell {
	left: -360px;
	visibility: visible;
	opacity: 1;
    filter: alpha(opacity=100);
}

.fixbar-nav .ercode-cell .ercode-item {
	width: 120px;
	min-height: auto;
}

.fixbar-nav .ercode-cell .ercode-item:first-child {
	margin-right: 40px;
}

.fixbar-nav .ercode-cell .ercode-item>img {
	margin-bottom: 6px;
}

.fixbar-nav .ercode-cell .ercode-item>span {
	color: #3681e6;
    line-height: 18px;
    font-size: 14px;
}


/* 内容区域
-------------------------------------------------------------------------*/
.content-cell {
    position: relative;
    z-index: 1;
	min-height: 100%;
/* 	margin-top: -960px; */
/* 	padding: 690px 0 233px; */
	transition: all 0.3s;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
}

/* 底部部分
-------------------------------------------------------------------------*/
.footer {
	position: relative;
	padding-top: 20px;
	list-style: none;
	background: #3d7ed7;
}

.footer a {
	color: #fff;
	font-size: 22px;
	display:inline-block;
	padding:0 12px;
}

.footer a:hover, .footer a:active {
	color: #ffe06c;
	text-decoration: none;
}


.footer p {margin-bottom:6px !important;}
.footer p:first-child {margin-bottom:20px !important;}
.biao-bot {

	padding-top: 13px;
	text-align: center;
}

.biao-bot ul {
	position: relative;
    z-index: 2;
	margin-bottom: 10px;
	margin-right: 20px;
}

.biao-bot li {
	font-size: 18px;
	color: #fff;
}

.biao-bot li>a {
	font-size: 18px;
}

.biao-bot-1 {
	width: 56px;
	height: 68px;
	margin-right: 24px;
	background: url(/uploads/image/sfskimages/bott1.png) no-repeat left;
}

.biao-bot-4 {
	width: 90px;
	height: 90px;
	margin-top: -13px;
	margin-right: 20px;
	background: url(/uploads/image/sfskimages/weixin.jpg) no-repeat center center;
	background-size: 100%;
}


/* 栏目 
-------------------------------------------------------------------------*/
.column-cell {
	padding: 30px 0 40px;
}
/* 栏目标题 */
.column-cell .column-title {
	position: relative;
	padding-bottom: 36px;
}
.column-cell .column-title-text {
	text-align: center;
	font-size: 30px;
	line-height: 54px;
	color: #333;
}
.column-cell .column-title-text img{
	width:277px;
	height:88px;
}
.column-cell .column-title-line {
	position: relative;
	width: 344px;
	height: 1px;
	margin: 0 auto;
	opacity: 0.4;
	background: #6f6f6fff;
}
.column-cell .column-title-line-short {
	position: absolute;
	top: -2px;
	left: 50%;
	width: 50px;
	height: 3px;
	margin-left: -25px;
	border-radius: 2px;
	background: #3dcc9aff;
}
.column-cell .column-more {
	position: absolute;
	right: 0;
    top: 10px;
    width: 124px;
	height: 34px;
	text-align: center;
	font-size: 16px;
	line-height: 32px;
	color: #1ac9b9;
}
.column-cell .column-more:hover {
	color: #016ce2;
}
/* 栏目内容 */
.column-content {
}
.content-page .column-content {
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 12px #ccc;
	background: #fff;
}

.content-page .column-cell {
	padding: 0;
}

.module-cell {
	position: relative;
}

.module-title {
	position: relative;
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
	font-size: 20px;
	line-height: 2;
}

.module-title.module-point {
	padding-left: 30px;
	margin-top: 22px;
	font-size: 20px;
	line-height: 1;
}

.module-title.module-point:before {
	content: "";
	position: absolute;
	left: 5px;
	top: 50%;
	margin-top: -4px;
	border-radius: 50%;
	width: 8px;
	height: 8px;
	background-color: #eb3341;
}

.module-description {
	font-size: 16px;
	line-height: 24px;
	color: #808080;
}

.module-img {
	position: relative;
	padding-top: 64%;
	width: 100%;
	background:  no-repeat;
	background-color: #f8f8f8;
	background-size: cover;
	background-position: center;
}

.module-cell.module-img-cell .module-img {
	padding-top: 61.37%;
	border: 1px solid #fff;
}
.module-cell.module-img-cell:hover .module-img {
	border: 1px solid #e60012;
}
.module-cell.module-img-cell .module-title {
	padding: 0 20px;
	height: 46px;
	line-height: 46px;
	background: #fff;
}
.module-cell.module-img-cell:hover .module-title {
	color: #fff;
	background: #e60012;
}

/* 文章列表
------------------------------------------- */
.column-nav-cell {
	padding: 18px 0;
	padding-left: 20px;
	border-bottom: 1px solid #eee;
}

.column-nav-cell span:last-child { };

.column-nav-cell .column-nav-item {
	padding-right: 10px;
	line-height: 20px;
	height: 20px;
	font-size: 16px;
	color: #333;
}
/* 二级列表页 */
.media {
	position: relative;
	margin: 0;
	padding: 30px 76px;
	border: none;
	border-bottom: 1px solid #e7e7e7;
}

.media-body {
	height: auto;
	zoom: 1;
}

.media-body .media-heading {
	line-height: 21px;
	font-size: 18px;
	font-family: 'microsoft yahei';
	color: #333;
	background: url(/uploads/image/sfskimages/famo-z.png) no-repeat 0 8px;
	padding-left: 21px;
	padding-bottom: 20px;
}

.media-body .media-heading:hover {
	background: url(/uploads/image/sfskimages/famo-z-h.png) no-repeat 0 8px;
}

.media-heading>a {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	color: #000;
	word-wrap: break-word;
}

.media-heading>a:hover {
	color: #ffe06c;
	text-decoration: none;
}
/* //底部时间 */
.media-body .bottom {
	font-size: 12px;
	line-height: 12px;
	padding-left: 23px;
	color: #999999;
}

.media-body .bottom i {
	margin-right: 6px;
}

.media-body .bottom .bottom-item {
	margin-right: 10px;
}

/**/
.content-page .media{
    padding: 30px 40px;
}
.list-but {
	height: 150px;
	text-align: center;
}

.content-page .layui-tab-title.one-level-child {
    height: 150px;
    text-align: center;
}

.content-page .layui-tab-title.one-level-child li {
    margin-left: 90px;
    padding: 16px 0;
	width: 347px;
	height: 72px;
	font-size: 26px;
	line-height: 34px;
	background: url(/uploads/image/sfski2module_bg/module_2_one_level_tab_title.png) no-repeat;
	color: #fff;
	text-align: center;
}

.content-page .layui-tab-title li:first-child {
    margin-left: 0;
}

.content-page .layui-tab-title.one-level-child li.layui-this:after {
	left: 50%;
	top: auto;
	bottom: -10px;
	margin-left: -15px;
	content: none;
	border: 0 none;
	width: 31px;
	height: 25px;
	background: url(/uploads/image/sfski2module_bg/module_2_one_level_tab_title_down.png) no-repeat;
}

.content-page .layui-tab-title.one-level-child li.layui-this:after {
	content: "";
}

.content-page .layui-tab-title.two-level-child {
    position: absolute;
    top: -72px;
    left: auto;
    right: 23px;
    z-index: 1;
    text-align: center;
}
.content-page .layui-tab-title.two-level-child li {
    margin-left: 12px;
    border: 3px solid #ff0000;
	width: 140px;
	height: 66px;
	font-size: 22px;
	line-height: 29px;
	text-align: center;
}

.content-page .layui-tab-title.two-level-child li.layui-this,
.content-page .layui-tab-title.two-level-child li:hover {
    border: 3px solid #eb9140;
    color: #333;
}

.content-page .multiline-overflow-ellipsis::after {
	padding: 0 0 0 35px;
}

.content-page a:hover, .content-page a:active, .content-page a:focus {
	color: #e92232;
}
/* 文章内容
------------------------------------------- */
.module-cell .article-title-cell {
	margin-bottom: 30px;
	line-height: 1;
}

.module-cell .article-title {
	margin-bottom: 12px;
	font-size: 26px;
	font-weight: 700;
}

.module-cell .article-description .item {
	margin: 0 10px;
	font-size: 16px;
	color: #9b9c9c;
}

.module-cell .article-content {
	font-size: 16px;
	line-height: 30px;
}

.module-cell .article-content p {
	margin-top:16px;
}

.module-cell .article-content img {
	max-width: 100% !important;
}

.module-cell .article-content table {
	max-width: 100% !important;
}

.module-cell .article-content embed {
	max-width: 100% !important;
}

/* 文章列表（样式1）
------------------------------------------- */
.article1-cell {
	margin-bottom: 12px;
	background: #fff;
	cursor: pointer;
}
.article1-cell .article-image {
	height: 360px;
	background-color: #eee;
	background-image: ;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}
.article1-cell .article-body {
	position: relative;
	padding: 14px 22px;
}
.article1-cell .article-body .article-title {
	margin-bottom: 8px;
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
	color: #333;
overflow: hidden;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.article1-cell .article-body .article-content {
	height: 48px;
	font-size: 14px;
	line-height: 24px;
	color: #999;
	overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.article1-cell .article-body .article-arrow {
	position: absolute;
	right: 24px;
	bottom: 10px;
	width: 17px;
	height: 29px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.article1-cell .article-body .article-arrow.up {
	background-image: url(/uploads/image/sfski2article1-cell/article-arrow-up.png);
}
.article1-cell .article-body .article-arrow.down {
	background-image: url(/uploads/image/sfski2article1-cell/article-arrow-down.png);
}
.article1-cell:hover  {
	background: #17c0bf;
}
.article1-cell:hover .article-body .article-title  {
	color: #fff;
}
.article1-cell:hover .article-body .article-content  {
	color: #fff;
}

/* 文章列表（样式2）
------------------------------------------- */
.article2-cell {
	position: relative;
	height: 210px;
	margin-bottom: 18px;
	background: #fff;
	box-shadow: 0 0 28px 2px rgba(35, 64, 80, 0.09);
	cursor: pointer;
}
.article2-cell .article-image {
	height: 100%;
	background-color: #eee;
	background-image: ;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}
.article2-cell .article-body {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 5px 10px;
	background: rgba(20, 22, 23, 0.4);
}
.article2-cell .article-body .article-title {
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.article2-cell:hover  {
	box-shadow: 0 0 18px 0 rgba(21, 175, 173, 0.48);
}

/* 文章列表（样式3）
------------------------------------------- */
.article3-cell {
	position: relative;
	height: 215px;
	background: #fff;
	cursor: pointer;
}
.article3-cell .article-image {
	height: 100%;
	background-color: #eee;
	background-image: ;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}
.article3-cell .article-body {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 20px;
	background: rgba(26, 201, 185, 0.8);
}
.article3-cell .article-body .article-title {
	margin-bottom: 12px;
	text-align: center;
	font-size: 22px;
	line-height: 36px;
	color: #fff;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.article3-cell .article-body .article-content {
	max-height: 96px;
	text-align: center;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	overflow: hidden;
}
.article3-cell:hover .article-body  {
	display: block;
}

/* 文章标签页（样式1）
------------------------------------------- */
.tab1-cell {
	margin: 0;
	overflow: hidden;
}
.tab1-cell .tab-title {
	float: left;
	width: 396px;
	height: auto;
	border-bottom: 0 none;
}
.tab1-cell .tab-title-cell {
	display: block;
	padding: 20px 24px;
	margin-bottom: 12px;
	background: rgba(26, 201, 185, 0.2);
}
.tab1-cell .tab-title-cell .tab-title-text {
	height: 72px;
	text-align: left;
	white-space: normal;
	font-size: 24px;
	line-height: 36px;
	color: #333;
	overflow: hidden;
}
.tab1-cell .tab-title-cell:after {
	content: none;
}
.tab1-cell .tab-title-cell.layui-this {
	background: rgb(26,201,185);
}
.tab1-cell .tab-title-cell.layui-this .tab-title-text {
	color: #fff;
}
.tab1-cell .tab-content {
	margin-left: 396px;
	padding: 0;
	overflow: hidden;
}
.tab1-cell .tab-content-cell {
}