/*body全局*/
body {
    font-family: source-sans-pro;
    background-color: white;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    font-style: normal;
    font-weight: 200;
}
/*END-body全局*/

/*LOGO与导航栏样式*/
#LOGODao { /*logo导航栏最外层*/
    height: 50px;
    z-index: 9998;/*层高*/
    position: relative;/*相对定位*/
    background-color: white;/*背景颜色*/
    box-shadow: 0 0 5px #7f7f7f;/*阴影效果*/
}
#LOGODao-Left { /*logo导航栏左边logo部分*/
    height: 50px;
    float:left; /*置于左边*/
    display: flex; /*浮动布局*/
}
#LOGODao-Right { /*logo与导航栏右边的菜单按钮*/
    width: 50px;
    height: 30px;
    float:right; /*置于右边*/
    margin-right: 10px; /*右边距*/
    margin-top: 5px;/*上边距*/
}
.C-LOGODao-Right-Line { /*logo与导航栏右边的菜单按钮横线*/
    display: block;
    background: #146C06;/*背景颜色*/
    width: 30px;
    height: 2px;
    margin-left: 10px;
    margin-top: 8px;
    transform-origin: left;/*以最左边为原点*/
    transition: transform ease 0.35s,opacity ease 0.35s;/*过渡动画*/
}
.C-Action-LOGODao-Right-Line-1 { /*第一条线*/
    transform: rotate(43deg);/*顺时针旋转45度*/
    transition: transform ease 0.35s;/*过渡动画*/
}
.C-Action-LOGODao-Right-Line-2 { /*第二条线*/
    opacity: 0;/*透明*/
    transition: opacity ease 0.35s;/*过渡动画*/
}
.C-Action-LOGODao-Right-Line-3 { /*第三条线*/
    transform: rotate(-43deg);/*逆时针旋转45度*/
    transition: transform ease 0.35s;/*过渡动画*/
}
/*END-LOGO与导航栏样式*/

/*菜单列表*/
#CaiDanLieBiao { /*菜单列表最外层*/
    width: 100%;
    height: calc(100% - 50px);
    color: #146C06;/*字体颜色*/
    margin: 0;/*间距*/
    padding: 0;/*内间距*/
    position: fixed;/*浮动布局*/
    z-index: 9;/*层高*/
    background: #ffffff;/*背景颜色*/
    font-size: 14px;/*字体大小*/
    line-height: 40px;/*行高*/
    left: 100%;/*左相对位置*/
    top: 50px;/*上相对位置*/
    overflow-x: hidden;/*横向超出部分隐藏*/
    transition: left ease 0.35s;/*过渡动画*/
}
.C-Action-CaiDanLieBiao { /*菜单列表最外层动画*/
    left: 0 !important;/*左相对位置*/
    transition: left ease 0.35s;/*过渡动画*/
}
#CaiDanLieBiao ul { /*菜单列表*/
    color: #146C06;/*字体颜色*/
    font-size: 14px;/*字体大小*/
    line-height: 40px;/*行高*/
    margin: 0;/*间距*/
    padding: 0;/*内间距*/
    list-style: none;/*列表样式*/
}
#CaiDanLieBiao ul li{ /*菜单列表项*/
    color: #146C06;/*字体颜色*/
    padding: 0;/*内间距*/
    list-style: none;/*列表样式*/
    border-top: 1px #ddd solid;/*顶部边框*/
    margin: 0 20px;/*间距*/
    position: relative;/*相对布局*/
    font-size: 14px;/*字体大小*/
    line-height: 40px;/*行高*/
}
#CaiDanLieBiao ul li a{ /*菜单列表项链接*/
    width: 100%;
    list-style: none;/*列表样式*/
    font-size: 14px;/*字体大小*/
    line-height: 40px;/*行高*/
    box-sizing: border-box;
    text-decoration: none;/*无下划线*/
    color: #146C06;/*字体颜色*/
    display: block;/*块元素*/
    font-weight: bold;/*加粗字体*/
}
/*END-菜单列表*/

/*次级导航栏*/
.C-Action-CiJiDaoHang-Left-Text::after { /*栏底边框常显示*/
    transform:scale3d(1,1,1) !important;/*底边框为正常长度*/
}
/*END-次级导航栏*/

/*标题部分*/
#BiaoTi { /*标题最外层*/
    width: 100%;
    margin-top: 2.5rem;/*与上面的间隔*/
    text-align: center;/*水平居中显示*/
}
.BiaoTi-Zh-One { /*标题中文部分的前部分*/
    color: #146C06;/*字体颜色*/
    display: inline;/*转为行内元素*/
    margin: auto 0;/*设置左右间隔*/
}
.BiaoTi-Zh-Two { /*标题中文部分的后部分*/
    display: inline;/*转为行内元素*/
    margin: 0;/*设置间隔*/
}
.BiaoTi-Us { /*标题英文部分*/
    font-family:'Times New Roman',serif;/*字体设置*/
    color: #b8b8b8;/*字体颜色*/
}
.BiaoTi-Us-One { /*标题英文部分的前部分*/
    margin: 0.6rem 0;/*设置间隔*/
}
/*END-标题部分*/

/*新闻部分*/
#XinWen { /*新闻部分最外层*/
    width: 96%;
    margin: 0 2%;/*间距*/
}
.C-XinWen-One{ /*每一条新闻*/
    color: #000;/*字体颜色*/
    box-sizing: border-box;
    margin-top: 35px;/*间距*/
    padding: 20px 15px;/*内间距*/
    display: flex;/*浮动布局*/
    align-items: center;/*垂直居中*/
    justify-content: space-between;/*间距*/
    transition: all 0.3s linear;/*过渡动画*/
    border-bottom: 1px solid #c6c6c6;/*底部边框*/
    cursor: pointer;/*小手鼠标*/
    flex-wrap: wrap;
}
.C-XinWen-One-Time { /*新闻时间*/
    width: 20%;
    color: #000;/*字体颜色*/
    box-sizing: border-box;
    margin: 0;/*间距*/
    padding: 0;/*内间距*/
    text-align: center;/*字体居中*/
}
.C-XinWen-One-Time-Day { /*日期-天*/
    text-align: center;/*字体水平居中*/
    box-sizing: border-box;
    margin: 0;/*间距*/
    padding: 0;/*内间距*/
    font-weight: 400;/*粗体*/
    font-size: 40px;/*字体大小*/
    line-height: 40px;/*行高*/
    color: #999999;/*字体颜色*/
}
.C-XinWen-One-Time-Xian { /*日期-横线*/
    width: 100%;
    height: 1px;
    box-sizing: border-box;
    padding: 0;/*内间距*/
    margin: 32px 0;/*间距*/
    background-color: #999999;/*背景颜色*/
}
.C-XinWen-One-Time-Year { /*日期-年月*/
    box-sizing: border-box;
    text-align: center;/*字体水平居中*/
    margin: 0;/*间距*/
    padding: 0;/*内间距*/
    font-size: 16px;/*字体大小*/
    line-height: 16px;/*行高*/
    color: #999999;/*字体颜色*/
}
.C-XinWen-One-ImgDiv { /*图片部分*/
    width: 65%;
    color: #000;/*字体颜色*/
    box-sizing: border-box;
    margin: 0;/*间距*/
    padding: 0;/*内间距*/
}
.C-XinWen-One-Img{ /*图片部分的图片*/
    box-sizing: border-box;
    max-width: 100%;
    border: none;/*边框*/
    vertical-align: middle;/*先绘制居中*/
}
.C-XinWen-One-NeiRong { /*简介部分*/
    box-sizing: border-box;
    width: 100%;
    margin-top: 15px;/*间距*/
    padding: 0;/*内间距*/
    font-size: 18px;/*字体大小*/
    line-height: 30px;/*行高*/
    color: #333333;/*字体颜色*/
}
.C-XinWen-One-NeiRong-Title { /*标题*/
    line-height: 30px;/*行高*/
    color: #333333;/*字体颜色*/
    box-sizing: border-box;
    margin: 0;/*间距*/
    padding: 0;/*内间距*/
    font-weight: 400;/*粗体*/
    font-size: 100%;/*字体大小*/
}
.C-XinWen-One-NeiRong-Text { /*简介*/
    box-sizing: border-box;
    margin: 18px 0 0 0;/*间距*/
    padding: 0;/*内间距*/
    overflow: hidden;/*超出部分隐藏*/
    text-overflow: ellipsis;
    display: -webkit-box;
    word-break: break-all;/*字体对齐*/
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 14px;/*字体大小*/
    line-height: 22px;/*行高*/
    color: #666666;/*字体颜色*/
    text-indent: 2em;/*首行缩进*/
}
.C-XinWen-One-NeiRong-Xian { /*分割线*/
    box-sizing: border-box;
    margin: 18px 0 0 0;/*间距*/
    padding: 0;/*内间距*/
    width: 100%;
    height: 1px;
    background-color: #c9c9c9;/*背景颜色*/
}
.C-XinWen-One-NeiRong-More { /*更多部分*/
    box-sizing: border-box;
    margin: 15px 0 0 0;/*间距*/
    padding: 0;/*内间距*/
    display: flex;/*浮动布局*/
    justify-content: space-between;/*间距*/
}
.C-XinWen-One-NeiRong-More-Text { /*了解更多文字*/
    line-height: 30px;/*行高*/
    font-size: 14px;/*字体大小*/
    box-sizing: border-box;
    color: #333333;/*字体颜色*/
    margin: 0;/*间距*/
    padding: 0;/*内间距*/
}
.C-XinWen-One-NeiRong-More-Fu { /*了解更多符号*/

}
/*END-新闻部分*/

/*页码部分*/
#XinWen-YeMa { /*页码最外层*/
    margin-bottom: 2rem;/*间距*/
}
#XinWen-YeMa-Ul { /*页码列表*/
    display: flex;/*浮动布局*/
    justify-content: center;/*居中*/
    align-items: center;
    margin: 20px 0;/*间距*/
}
#XinWen-YeMa-Ul li{ /*页码列表项*/
    list-style: none;/*无列表格式*/
}
#XinWen-YeMa-Ul li a{ /*页码按钮*/
    position: relative;/*相对布局*/
    float: left;/*左对齐*/
    padding: 6px 12px;/*内间距*/
    color: #146C06;/*字体颜色*/
    background-color: #fff;/*背景颜色*/
    border: 1px solid #ddd;/*边框*/
    margin-left: -1px;/*间距*/
}
#XinWen-YeMa-Ul li a:hover{ /*未选中页码按钮动画*/
    background-color: #eeeeee;/*背景颜色*/
}
/*END-页码部分*/

/*底栏*/
#DiLan { /*底栏最外层*/
    width: 100%;
    background-color: #232323;/*背景颜色*/
}
.DiLan-China-Title { /*底栏中文标题*/
    color: #146C06;/*字体颜色*/
    font-size: 1.5rem;/*字体大小*/
    display: inline-block;/*水平排列*/
    margin-bottom: 0;/*底边距*/
}
.DiLan-English-Title { /*底栏英文标题*/
    margin-right: 10px;/*同级间距*/
    color: #146C06;/*字体颜色*/
    font-family:'Times New Roman',serif;/*字体设置*/
    font-size: 1.3rem;/*字体大小*/
    display: inline-block;/*水平排列*/
    margin-bottom: 0;/*底边距*/
}
#DiLan-Center { /*中部联系我们*/
    margin-left: 5%;/*左边同级间距*/
    margin-right: 5%;/*右边同级间距*/
    display: inline-block;/*水平排列*/
    vertical-align: top;/*顶部对齐*/
    margin-bottom: 1em;/*下边同级间距*/
}
.DiLan-LianXi-Text { /*联系我们文本*/
    color: white;/*字体颜色*/
    line-height:2rem;
}
#DiLan-Right { /*右部二维码区块*/
    margin: 0.5em 5% 1em 5%;/*同级间距*/
    width: 40%;
    display: inline-block;/*水平排列*/
    vertical-align: top;/*顶部对齐*/
}
#DiLan-Right img { /*右部二维码*/
    max-width: 100%;
}
/*END-底栏*/

/*最下信息*/
#ZuiXiaXinXi { /*最下信息最外层*/
    width: 100%;
    background-color: #146c06;/*背景颜色*/
    text-align: center;/*居中显示*/
}
.ZuiXiaXinXi-NeiRong { /*最下信息的内容*/
    color: white;/*字体颜色*/
    font-size: 14px;/*字体大小*/
}
#ZuiXiaXinXi-BanQuan { /*版权信息*/
    margin:0 auto 0 auto;/*同级间距*/
}
#ZuiXiaXinXi-JiShu { /*技术支持语句*/
    margin:0 auto 0 auto;/*同级间距*/
}
#BeiAn { /*备案信息*/
    margin:0 auto 0 auto;/*同级间距*/
}
#BeiAn a p { /*备案信息文字*/
    margin:0 0 0 auto;/*同级间距*/
}
/*END-最下信息*/