@charset "utf-8";
/*
 * ==============================
 * @description: [WebSite] 基础样式模块
 * @author: ---
 * @update: ---
 * ==============================
 	字体综合写法
 	font:字体加粗 字号/行高  字体;
 	font:700 12px/32px "宋体"
    背景综合写法
    background: 颜色 图片 平铺方式 是否滚动 (定位|| 定位/缩放)
    background: #00ff00 url(https:/dnr.yn.gov.cn/statics/dnr/css/smiley.gif) no-repeat fixed center; 
    background: #00ff00 url(https:/dnr.yn.gov.cn/statics/dnr/css/smiley.gif) no-repeat center/50%; 
 * ==============================
	行内元素尽量不用上下的padding和margin;
 */

/** 清除内外边距 **/
body,h1,h2,h3,h4, h5,h6,hr,blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
form, fieldset, legend, button,p, input, textarea, /* form elements 表单元素 */
th, td /* table elements 表格元素 */ {
    margin: 0;
    padding: 0;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var,
optgroup {
    font-style: normal;
    font-weight: normal;
} /* 将斜体扶正 */ /* 注：optgroup 无法扶正 */
/** 设置默认字体 **/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body,
label,
button,
input,
select,
textarea {
    line-height: 20px;
    color: #333;
    font-family: Arial, 'Microsoft Yahei', 'Hiragino Sans GB', 'Helvetica Neue', Helvetica, Tahoma, 'WenQuanYi Micro Hei', SimSun, sans-serif;
    font-size: 18px;
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
} /*字体抗锯齿*/
body {
    background: #fff;
}
button,
input,
select,
textarea {
    outline: none;
    border: none;
    *font-size: 100%; /*to enable resizing for IE*/
}
textarea {
    resize: none;
} /*防止拖动*/
/** 重置列表元素 **/
ul,
ol,
dl,
li {
    list-style-type: none;
}
em,
s,
i {
    font-style: normal;
    text-decoration: none;
} /* 将斜 体扶正 */
fieldset,
img,
iframe {
    border: 0;
} /* img 搭车：让链接里的 img 无边框 */
img {
    max-width: 100%;
    border: 0;
    vertical-align: middle;
    object-fit: cover;
} /*  去掉图片低测默认的3像素空白缝隙*/
img,
a img {
    -ms-interpolation-mode: bicubic;
} /*ie图片缩放不失真*/
iframe {
    display: block;
}
/** 重置文本格式元素 **/
a {
    color: #02121f;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    blr: expression(this.onFocus=this.blur());
} /*blr：ie鼠标点击时不显示虚线*/
a:active,
a:hover {
    color: #c02e25;
    text-decoration: none;
}
a:active {
    background-color: transparent;
} /*背景颜色透明*/
a:focus {
    outline: 0 none;
} /*去掉点击链接时周围的虚线框*/
:focus {
    outline: 0 none;
}
::-moz-selection {
    background: #39f;
    color: #ffffff;
    text-shadow: none;
}
::selection {
    background: #39f;
    color: #ffffff;
    text-shadow: none;
}
.container,
.container-fluid {
    padding-right: 0;
    padding-left: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    text-decoration: none;
    font-weight: normal;
    font-size: 100%;
} /*100%=父级大小*/
sup {
    vertical-align: text-top;
} /* 重置, 减少对行高的影响 */
sub {
    vertical-align: text-bottom;
}
/* 重置 HTML5 元素 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    display: block;
    margin: 0;
    padding: 0;
}

/*版心提取*/
.container {
    margin: 0 auto;
    padding: 0;
    max-width: 1200px;
}
.container-w {
    margin: 0;
    padding: 0;
    width: 100%;
}

/* 主题颜色 */

/* [Base] Function
------------------------------*/
.not-width,
.not-width3,
.not-width2 {
    margin-right: 1em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.not-width {
    -webkit-line-clamp: 1;
}
.not-width2 {
    -webkit-line-clamp: 2;
}
.not-width3 {
    -webkit-line-clamp: 3;
}
.fn-fl {
    float: left;
}
.fn-fr {
    float: right;
}
.fn-cl {
    clear: both;
}
/* 清除浮动 */
.fn-clear {
    display: block;
    visibility: hidden;
    overflow: hidden;
    clear: both;
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
}
.fn-clearfix:after {
    display: block;
    visibility: hidden;
    content: '';
    clear: both;
    height: 0;
    font-size: 0;
}
.fn-clearfix {
    display: block;
}
* html .fn-clearfix {
    height: 1%;
    zoom: 1;
}
/* @media screen and (max-width: 640px) {
	html {
		font-size: 37.5px !important;
	}
    
} */
/* 伸缩效果 */
.stretch {
    width: 100%;
    transform: scaleY(0);
    transform-origin: 50% 0;
    transition: all 0.6s;
}

/* 竖屏 */
@media all and (orientation: portrait) {
    /* 自定义样式 */
}
/* 横屏 */
@media all and (orientation: landscape) {
    /* 自定义样式 */
}

/* 避免 100vh 高时出现滚动条 */
@supports (-webkit-touch-callout: none) {
    body {
        height: -webkit-fill-available;
    }
}
/* show页面 img 偏差 */
.article-content img {
    width: auto;
}
.article-content video {
    display: initial;
}
.social-share .icon-wechat .wechat-qrcode .qrcode img {
    margin-left: -40px;
}
