/*  通用样式  */
.c_red_title:before {
	content: "▉";
	color: #d01027;
	margin-right: 9px;
	font-size: inherit;
	display: inline-block;
	width: 9px;
	overflow: hidden;
	vertical-align: bottom;
}

.common_table{
	margin: 1em auto;
	width: 100%;
}
.common_table td, .common_table th{
	border:1px solid #ddd;color:#333;text-align:center;padding:.5em 1em
}
.common_table th{
	background:#666;color:#fff
}

/* 下划线通用样式 */
.red_under_line {
	position: relative;
}

.red_under_line:after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -0.3rem;
	width: 78%;
	height: 0.2rem;
	border-bottom: 0.2rem solid #333;
	border-left: 0.2rem solid rgba(0, 0, 0, 0);
	box-sizing: border-box;
}


.red_under_line:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.3rem;
	width: 20%;
	height: 0.2rem;
	border-top: 0.2rem solid #d01027;
	border-right: 0.2rem solid rgba(0, 0, 0, 0);
	box-sizing: border-box;
}
/* 下划线通用样式2 */
.red_under_line2 {
    text-align: center;
    margin-bottom: 2em;
    position: relative;
}
.red_under_line2:before {
	content: "";
    display: inline-block;
    width: 62px;
    height: 6px;
    background: #d01027;
    position: absolute;
    bottom: -1em;
    left: 50%;
    margin-left: -100px;
    clip-path: polygon(0 0,100% 0,56px 100%,0 100%);
}
.red_under_line2:after {
    content: "";
    display: inline-block;
    width: 128px;
    height: 6px;
    background: #202020;
    position: absolute;
    bottom: -1em;
    left: 50%;
    margin-left: -33px;
    clip-path: polygon(6px 0,100% 0,100% 100%,0 100%);
}

/* 发布文章通用样式 */
.page-r .MsoNormal{
    float: none;
    margin-left: 0px;
    font-size: inherit;
    margin-top: 12px;
}

/* 设置行间距 */
.c_line_height{margin:0px;height:20px;}


.del_line{
	text-decoration: line-through;
}

/* 通用点击展开  元素添加  class='c_fold' data-text='...点击展开'*/
.c_fold{
	line-height: 1.8em;
	height: 3.6em;
	overflow: hidden;
	position: relative;
	pointer-events: none;
}
.c_fold_toggle{
	height: auto;
}
.c_fold:after{
	content: attr(data-text);
	position: absolute;
	right: 0;
	bottom: 0;
	color: #d01027;
	background: #fff;
	cursor: pointer;
	pointer-events: auto;
}

/* 通用点击放大  元素添加  class='g_zoom_img'*/
.g_fixed_zoom_img{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(200,200,200,.5);display:none;z-index:10;overflow:auto;text-align:center;padding-top:100px}
.g_fixed_zoom_img>div{position:relative;display:inline-block;margin: 2em;background: #fff;}
.g_fixed_zoom_img>div:after{content:"✖";position:absolute;width:32px;height:32px;border-radius:32px;background:#333;color:#fff;text-align:center;line-height:32px;top:-16px;right:-16px;z-index:1001;cursor:pointer}