@charset "utf-8";

/* CSS Document */


/*清除元素默认样式*/

* {
    font-family: "微软雅黑", "Microsoft YaHei";
    margin: 0;
    padding: 0;
    /*自动换行*/
    word-wrap: break-word;
    /* 英文强制换行 */
    word-break: break-all;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
a,
video,
iframe {
    margin: 0;
    padding: 0;
}

body {
    min-width: 1200px;
}

.clear:after,
.clear:before {
    content: "";
    clear: both;
    overflow: hidden;
    display: table;
}

a {
    outline: none;
    text-decoration: none;
    color: inherit;
}

a img {
    border: 0;
}

img {
    vertical-align: middle;
}

ul li {
    list-style: none;
}

input,
textarea {
    padding-left: 10px;
}

input,
select,
textarea,
button,
img {
    outline: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    font-size: 14px;
    color: #999;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    font-size: 14px;
    color: #999;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    font-size: 14px;
    color: #999;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    font-size: 14px;
    color: #999;
}


/*搜索框自带黄色清除*/

input:-webkit-autofill {
    background-color: #fff !important;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    color: #333 !important;
    -webkit-text-fill-color: #333 !important;
}


/*优化下拉样式*/


/*select{
	appearance:none;
  -moz-appearance:none;
  -webkit-appearance:none;*/


/*在选择框的最右侧中间显示小箭头图片*/


/* background: url(../images/ico-arrow.png) no-repeat 83px center transparent;
  outline:none;
  -webkit-outline:none;
  -moz-outline:none;
  -o-outline:none;
}*/


/*针对ie下拉箭头美化
select::-ms-expand {
  display: none;清除IE默认下拉按钮，但是测试发现IE10以上有效，IE8，9默认下拉按钮仍旧存在
}*/


/*针对ie火狐下拉虚线框
select:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #fff;修改字体颜色
}*/

button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}


/*主要用于文章详情页*/

table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 auto;
    max-width: 100%;
    width: auto;
}

table td {
    width: auto;
}


/*img{
	width: auto !important;
	height: auto !important;
}*/


/*在文章详情页时才单独使用*/


/*主要用于文章详情页 END*/


/*清除元素默认样式  END*/


/*******************************************预设样式*******************************************/

p {
    font-size: 14px;
    color: #666;
    line-height: 30px;
}

.Left {
    float: left;
}

.Right {
    float: right;
}

.MarRi {
    margin-right: 0 !important;
}

.wrap {
    width: 100%;
    overflow: hidden;
}

.content {
    width: 100%;
}

.w1200 {
    max-width: 1200px;
    width: 1200px;
    margin: 0 auto;
    height: auto;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.justify-start {
    display: flex;
    justify-content: flex-start;
}

.justify-center {
    display: flex;
    justify-content: center;
}

.justify-end {
    display: flex;
    justify-content: flex-end;
}

.justify-evenly {
    display: flex;
    justify-content: space-evenly;
}

.justify-around {
    display: flex;
    justify-content: space-around;
}

.justify-between {
    display: flex;
    justify-content: space-between;
}

.align-start {
    display: flex;
    align-items: flex-start;
}

.align-center {
    display: flex;
    align-items: center;
}

.align-end {
    display: flex;
    align-items: flex-end;
}


/*外间距*/

.m0 {
    margin: 0 !important;
}

.m5 {
    margin: 5px !important;
}

.m10 {
    margin: 10px !important;
}

.m15 {
    margin: 15px !important;
}

.m20 {
    margin: 20px !important;
}

.m25 {
    margin: 25px !important;
}

.m30 {
    margin: 30px !important;
}

.m35 {
    margin: 35px !important;
}

.mtb5 {
    margin: 5px 0 !important;
}

.mtb10 {
    margin: 10px 0 !important;
}

.mtb15 {
    margin: 15px 0 !important;
}

.mtb20 {
    margin: 20px 0 !important;
}

.mtb25 {
    margin: 25px 0 !important;
}

.mtb30 {
    margin: 30px 0 !important;
}

.mtb35 {
    margin: 35px 0 !important;
}

.mlr10 {
    margin: 0 10px !important;
}

.mlr15 {
    margin: 0 15px !important;
}

.mlr20 {
    margin: 0 20px !important;
}

.mlr24 {
    margin: 0 24px !important;
}

.mlr25 {
    margin: 0 25px !important;
}

.mlr30 {
    margin: 0 30px !important;
}

.mlr35 {
    margin: 0 35px !important;
}

.mt5 {
    margin-top: 5px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt15 {
    margin-top: 15px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt25 {
    margin-top: 25px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mt35 {
    margin-top: 35px !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.mb5 {
    margin-bottom: 5px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb15 {
    margin-bottom: 15px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb25 {
    margin-bottom: 25px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mb35 {
    margin-bottom: 35px !important;
}

.mb40 {
    margin-bottom: 40px !important;
}

.ml5 {
    margin-left: 5px !important;
}

.ml10 {
    margin-left: 10px !important;
}

.ml15 {
    margin-left: 15px !important;
}

.ml20 {
    margin-left: 20px !important;
}

.ml25 {
    margin-left: 25px !important;
}

.ml30 {
    margin-left: 30px !important;
}

.ml35 {
    margin-left: 35px !important;
}

.mr5 {
    margin-right: 5px !important;
}

.mr10 {
    margin-right: 10px !important;
}

.mr15 {
    margin-right: 15px !important;
}

.mr20 {
    margin-right: 20px !important;
}

.mr25 {
    margin-right: 25px !important;
}

.mr30 {
    margin-right: 30px !important;
}

.mr35 {
    margin-right: 35px !important;
}


/*内间距*/

.p5 {
    padding: 5px !important;
}

.p10 {
    padding: 10px !important;
}

.p15 {
    padding: 15px !important;
}

.p25 {
    padding: 25px !important;
}

.p30 {
    padding: 30px !important;
}

.p35 {
    padding: 35px !important;
}

.ptb5 {
    padding: 5px 0 !important;
}

.ptb10 {
    padding: 10px 0 !important;
}

.ptb15 {
    padding: 15px 0 !important;
}

.ptb20 {
    padding: 20px 0 !important;
}

.ptb25 {
    padding: 25px 0 !important;
}

.ptb30 {
    padding: 30px 0 !important;
}

.ptb35 {
    padding: 35px 0 !important;
}

.plr10 {
    padding: 0 10px !important;
}

.plr15 {
    padding: 0 15px !important;
}

.plr20 {
    padding: 0 20px !important;
}

.plr25 {
    padding: 0 25px !important;
}

.plr30 {
    padding: 0 30px !important;
}

.plr35 {
    padding: 0 35px !important;
}

.pt5 {
    padding-top: 5px !important;
}

.pt10 {
    padding-top: 10px !important;
}

.pt15 {
    padding-top: 15px !important;
}

.pt20 {
    padding-top: 20px !important;
}

.pt25 {
    padding-top: 25px !important;
}

.pt30 {
    padding-top: 30px !important;
}

.pt35 {
    padding-top: 35px !important;
}

.pb5 {
    padding-bottom: 5px !important;
}

.pb10 {
    padding-bottom: 10px !important;
}

.pb15 {
    padding-bottom: 15px !important;
}

.pb20 {
    padding-bottom: 20px !important;
}

.pb25 {
    padding-bottom: 25px !important;
}

.pb30 {
    padding-bottom: 30px !important;
}

.pb35 {
    padding-bottom: 35px !important;
}

.pl5 {
    padding-left: 5px !important;
}

.pl10 {
    padding-left: 10px !important;
}

.pl15 {
    padding-left: 15px !important;
}

.pl20 {
    padding-left: 20px !important;
}

.pl25 {
    padding-left: 25px !important;
}

.pl30 {
    padding-left: 30px !important;
}

.pl35 {
    padding-left: 35px !important;
}

.pr5 {
    padding-right: 5px !important;
}

.pr10 {
    padding-right: 10px !important;
}

.pr15 {
    padding-right: 15px !important;
}

.pr20 {
    padding-right: 20px !important;
}

.pr25 {
    padding-right: 25px !important;
}

.pr30 {
    padding-right: 30px !important;
}

.pr35 {
    padding-right: 35px !important;
}


/*字号*/

.font12 {
    font-size: 12px !important;
}

.font14 {
    font-size: 14px !important;
}

.font16 {
    font-size: 16px !important;
}

.font18 {
    font-size: 18px !important;
}

.font20 {
    font-size: 20px !important;
}

.font22 {
    font-size: 22px !important;
}

.font24 {
    font-size: 24px !important;
}

.font26 {
    font-size: 26px !important;
}

.font28 {
    font-size: 28px !important;
}

.font30 {
    font-size: 28px !important;
}


/*字体颜色*/

.text-color6 {
    color: #666 !important;
}

.text-color3 {
    color: #333 !important;
}

.text-color9 {
    color: #999 !important;
}


/*行距*/

.line-height-20 {
    line-height: 20px !important;
}

.line-height-21 {
    line-height: 21px !important;
}

.line-height-22 {
    line-height: 22px !important;
}

.line-height-25 {
    line-height: 25px !important;
}

.line-height-26 {
    line-height: 26px !important;
}

.line-height-28 {
    line-height: 28px !important;
}

.line-height-30 {
    line-height: 30px !important;
}

.line-height-35 {
    line-height: 35px !important;
}

.line-height-40 {
    line-height: 40px !important;
}


/*文字方向*/

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}


/*单行文字超出隐藏*/

.text-overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/*多行文字超出隐藏*/

.text-line-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    /*要显示的行数*/
    overflow: hidden;
}


/*强制换行主要针对英文或数字*/

.break-word {
    word-wrap: break-word;
}


/*字母全部转换成大写*/

.uppercase {
    text-transform: uppercase;
}


/*盒子模型 css3属性直接写总宽不用再计算减去边框内边距外边距*/

.box-sizing {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}


/****************************************预设样式  END******************************************/


/*判断浏览器兼容弹出层*/

.Iepop {
    width: 100%;
    height: 100%;
    background: url(../images/bg.png);
    position: fixed;
    z-index: 9999999999999999999;
    top: 0;
    left: 0;
    display: none;
}

.IeCont {
    width: 607px;
    height: 405px;
    position: relative;
    top: 30%;
    margin: 0 auto;
    background: url(../images/Pop.png) no-repeat;
    overflow: hidden;
}

.IeBox {
    padding: 20px;
    overflow: hidden;
    padding: 20px;
    overflow: hidden;
    margin-top: 70px;
    margin-left: 61px;
    margin-right: 33px;
}

.IeBox h3 {
    margin-bottom: 25px;
    font-size: 24px;
}

.IeBox p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.IeLink {
    margin-top: 35px;
    background: url(../images/iealertsprite.png);
}

.IeLink span {
    width: 73px;
    height: 98px;
    display: inline-block;
    margin-right: 16px;
}

.IeLink span:last-child {
    margin-right: 0;
}

.IeLink span a {
    display: block;
    width: 73px;
    height: 98px;
}


/*******新闻详情标题&百度分享样式******/

.TextTitle {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.TextTitle h5 {
    font-size: 22px;
    color: #333;
    line-height: 36px;
    font-weight: normal;
}

.TextTitle h6 {
    color: #666;
    font-size: 18px;
    line-height: 36px;
    font-weight: normal;
    margin-bottom: 10px;
}

.TextTitle .shar {
    font-size: 14px;
    color: #999;
    line-height: 25px;
}

.TextTitle .shar .share_items {
    display: inline-block;
    position: relative;
}


/******** 新闻详情样式 ***********/

.NewsText {
    padding: 15px 0;
    width: 100%;
    overflow: hidden;
}

.NewsText,
.NewsText p {
    font-size: 16px;
    color: #333;
    line-height: 2;
}

.NewsText img,
.NewsText p img {
    max-width: 100%;
}

.TextTitle .shar .share_items a {
    border: 0;
}

.TextTitle .shar .share_items a::before {
    display: none;
}

.TextTitle .shar .share_items .icon-wechat {
    background: url(../images/fx-hover1.png) no-repeat;
    background-size: 100% 100%;
}

.TextTitle .shar .share_items .icon-weibo {
    background: url(../images/fx-hover2.png) no-repeat;
    background-size: 100% 100%;
}


/*********分页样式***********/

.pages {
    position: relative;
    z-index: 999;
    display: table;
    margin: 25px auto;
    margin-bottom: 0;
}

.pages .pagination {
    display: inline-block;
    float: left;
}

.pages .pagination li {
    width: 32px;
    height: 32px;
    border: 1px solid #ccc;
    float: left;
    margin-right: 11px;
    font-size: 14px;
    color: #333;
    text-align: center;
    line-height: 31px;
    background: #E6E6E6;
    border-radius: 5px;
}

.pages .pagination li a {
    color: #333;
    display: block;
}

.pages .pagination li:hover,
.pages .pagination li.active {
    border: 1px solid #CE0D12;
    background: #CE0D12;
}

.pages .pagination li a:hover,
.pages .pagination li.active a {
    color: #fff;
}

.pages .pagination li.prev,
.pages .pagination li.next {
    width: 63px;
    color: #666;
    background: #fff;
    cursor: pointer;
}

.pages .pagination li.prev a,
.pages .pagination li.next a {
    color: #666;
}

.pages .pagination li.prev:hover,
.pages .pagination li.next:hover {
    border-color: #CE0D12;
    color: #CE0D12;
    background: none;
}

.pages .pagination li.prev:hover a,
.pages .pagination li.next:hover a {
    color: #CE0D12;
}

.pages .form {
    display: inline-block;
    height: 34px;
    line-height: 34px;
}

.pages .form .text {
    margin: 0 5px;
    font-size: 14px;
    color: #ccc;
    float: left;
}

.pages .form .input {
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding-left: 0;
    text-align: center;
    color: #ccc;
    float: left;
    margin-right: 5px;
}

.pages .form .go-page {
    width: 58px;
    height: 32px;
    border: 1px solid #ccc;
    text-align: center;
    color: #ccc;
    display: inline-block;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
}


/**************文章详情分页*******/

.NewsPages {
    padding-top: 25px;
    width: 100%;
    font-size: 14px;
    border-top: 1px dashed #f2f2f2;
    overflow: hidden;
}

.NewsPages a {
    display: block;
    line-height: 35px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* 整体区域 */

.page {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.group1 {
    width: 100%;
    background: url(../images/wrapbg.jpg) bottom center no-repeat;
}

.mod1 {
    width: 100%;
}

.header.group2 {
    width: 100%;
    overflow: hidden;
}

.header.group2 .head_top {
    padding: 5px 0;
    background: #FFF8EE;
    overflow: hidden;
}

.header.group2 .head_top .head_left {
    float: left;
    font-size: 13px;
    color: #666;
    line-height: 20px;
}

.header.group2 .head_top .head_right {
    float: right;
    line-height: 20px;
}

.header.group2 .head_top .head_right .head_form {
    float: left;
    font-size: 14px;
    color: #BF0000;
}

.header.group2 .head_top .head_right label {
    margin-right: 3px;
    font-size: 13px;
    color: #666;
}

.header.group2 .head_top .head_right input,
.header.group2 .head_top .head_right select {
    margin-right: 15px;
    width: 140px;
    height: 20px;
    font-size: 13px;
    color: #666;
    background: #FFFFFF;
    border: 1px solid #DEDEDE;
}

.header.group2 .head_top .head_right select {
    padding-left: 2px;
}

.header.group2 .head_top .head_right .head_form button {
    margin-right: 7px;
    font-size: 14px;
    color: #BF0000;
    border: 0;
    background: none;
}

.header.group2 .head_top .head_right .head_form a {
    margin-left: 7px;
    font-size: 14px;
    color: #BF0000;
}

.header.group2 .head_bottom {
    padding: 30px 0;
    background: url(../images/headbg.png) top center no-repeat;
    overflow: hidden;
}

.header.group2 .group3 {
    margin: 0 auto;
    width: 1200px;
}

.header.group2 .logo .pic1 {
    width: 376px;
    height: 66px;
}

.header .group4 {
    margin-top: 14px;
    width: 240px;
    height: 35px;
    background: #FFFFFF;
    border: 1px solid #C31620;
    border-radius: 10px;
}

.header .layer1 {
    width: 100%;
    height: 33px;
    overflow: hidden;
}

.header .group4 input {
    float: left;
    width: 175px;
    height: 33px;
    font-size: 14px;
    color: #666;
    border: 0;
}

.header .group4 button {
    float: left;
    width: 53px;
    height: 33px;
    background: none;
    border: 0;
}

.header .group4 button img {
    width: 100%;
    height: 33px;
}


/* 导航样式 */

.nav {
    width: 100%;
    height: 50px;
    background-color: #BF0000;
}

.nav>ul {
    height: 50px;
}

.nav>ul>li {
    position: relative;
    float: left;
    width: 120px;
    font-size: 18px;
    color: #fff;
    text-align: center;
    line-height: 50px;
}

.nav>ul>li a {
    display: block;
}

.nav>ul>li:hover,
.nav>ul>li.active {
    color: #c80100;
    background: #fff;
}

.nav>ul>li .menu_nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 9px;
    width: 200px;
    z-index: 999;
}

.nav>ul>li .menu_nav::after {
    content: "";
    position: absolute;
    top: 0;
    left: 53px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 9px solid #be1a21;
}

.nav>ul>li .menu_nav ul {
    background-color: #be1a21;
}

.nav>ul>li .menu_nav li {
    font-size: 16px;
    line-height: 25px;
    color: #fff;
}

.nav>ul>li .menu_nav li a {
    padding: 10px 5px;
}

.nav>ul>li .menu_nav li:hover {
    background: #d33c43;
}


/* 导航样式结束 */


/* 底部区域 */

.group11 {
    width: 100%;
    height: 229px;
    background: url(../images/footerbg.png) top center no-repeat;
}

.group11 .box23 {
    width: 100%;
    height: 171px;
}

.group11 .mod15 {
    margin: 0 auto;
    margin-top: 60px;
    width: 1200px;
}

.group11 .foot_text {
    width: 433px;
}

.group11 .foot_text p {
    font-size: 14px;
    color: #fff;
    line-height: 28px;
}

.group11 .paragraph6 {
    width: 377px;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    text-align: left;
    line-height: 28px;
}

.group11 .paragraph6 p {
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    line-height: 28px;
}

.group11 .ImageText6 {
    height: 96px;
    width: 200px;
}

.group11 .group12 {
    width: 200px;
    height: 96px;
}

.group11 .img11 {
    width: 95px;
    height: 96px;
}

.group11 .TextGroup6 {
    margin-top: 32px;
    width: 98px;
}

.group11 .paragraph7 {
    display: block;
    width: 98px;
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    text-align: center;
    line-height: 20px;
}

.group11 .box22 {
    padding: 14px 0;
    width: 100%;
}

.group11 .block16 {
    margin: 0 auto;
    width: 1200px;
}

.group11 .block16 p {
    font-size: 14px;
    color: #fff;
    line-height: 32px;
    text-align: center;
}


/* 子页样式区域 */

.page_adve {
    margin: 20px 0;
    position: relative;
    width: 100%;
    height: 80px;
    overflow: hidden;
}

.page_adve .bd li img {
    width: 100%;
    height: 80px;
}

.page_adve .hd {
    position: absolute;
    right: 5px;
    bottom: 10px;
}

.page_adve .hd li {
    float: left;
    margin: 0 5px;
    width: 10px;
    height: 10px;
    font-size: 0;
    border-radius: 50%;
    background: #fff;
}

.page_adve .hd li.on {
    background: #be1a21;
}

.page_content {
    padding-bottom: 26px;
    width: 100%;
    min-height: calc(100vh - 490px);
}

.sidenav {
    float: left;
    width: 230px;
}

.sidenav_title {
    width: 100%;
    height: 80px;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 80px;
    background: url(../images/titlebg5.png) no-repeat;
}

.sidenav .side_nav {
    width: 100%;
    background: #f4f4f4;
    overflow: hidden;
}

.sidenav .side_nav>li {
    overflow: hidden;
}

.sidenav .side_nav>li>div {
    padding: 10px 0;
    overflow: hidden;
}

.sidenav .side_nav>li>div>a {
    display: block;
    padding: 7px 0;
    padding-left: 10px;
    padding-right: 20px;
    font-size: 16px;
    color: #666;
    border-left: 2px solid transparent;
    background-image: url(../images/icon13.png);
    background-repeat: no-repeat;
    background-position: 95% center;
}

.sidenav .side_nav>li:hover>div,
.sidenav .side_nav>li.active>div {
    background-color: #fff;
}

.sidenav .side_nav>li:hover>div>a,
.sidenav .side_nav>li.active>div>a {
    color: #BE1A21;
    border-color: #BE1A21;
    background: none;
}

.sidenav .side_nav>li.active.more>div>a {
    background-image: url(../images/icon13_2.png);
    background-repeat: no-repeat;
    background-position: 95% center;
}

.sidenav .side_nav>li .threenav {
    display: none;
    background: #f4f4f4;
}

.sidenav .side_nav>li.active .threenav {
    display: block;
}

.sidenav .side_nav>li .threenav li a {
    display: block;
    padding: 10px 15px;
    padding-left: 25px;
    font-size: 14px;
    color: #666;
}

.sidenav .side_nav>li .threenav li:hover a,
.sidenav .side_nav>li .threenav li.active a {
    color: #BE1A21;
    background: #fff;
}

.cont_right {
    float: right;
    width: 940px;
}

.page_title {
    padding-bottom: 8px;
    border-bottom: 1px solid #BE1A21;
}

.page_title h6 {
    float: left;
    font-size: 18px;
    font-weight: normal;
    color: #BE1A21;
}

.BreadNav {
    float: right;
    font-size: 14px;
    color: #666;
}

.BreadNav img {
    margin-right: 5px;
}

.BreadNav span {
    margin: 0 5px;
}

.BreadNav a:hover,
.BreadNav a.active {
    color: #BE1A21;
}

.first_list {
    width: 100%;
    overflow: hidden;
}

.first_list li {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.first_list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.first_list li .img_box {
    width: 200px;
    height: 120px;
}

.first_list li .img_box img {
    width: 100%;
    height: 120px;
}

.first_list li .item_cont {
    width: 720px;
}

.first_list li .item_cont h6 {
    font-size: 16px;
    color: #333;
    font-weight: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.first_list li .item_cont p {
    line-height: 20px;
}

.first_list li .item_cont .item_text {
    margin: 15px 0;
    font-size: 14px;
    color: #666;
    line-height: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /*要显示的行数*/
    overflow: hidden;
}

.first_list li .item_cont .item_time {
    font-size: 14px;
    color: #999;
}

.first_list li a:hover h6 {
    color: #BE1A21;
}

.two_list {
    position: relative;
    margin-top: 30px;
    margin-bottom: -50px;
    width: 100%;
    overflow: hidden;
}

.two_list::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
    width: 100%;
    height: 1px;
    background: #fff;
    z-index: 999;
}

.two_list li {
    float: left;
    padding-bottom: 20px;
    margin-bottom: 25px;
    width: 188px;
    height: 282px;
    border-bottom: 1px dashed #eee;
    overflow: hidden;
}

.two_list li .item_cont {
    margin: 0 auto;
    width: 158px;
}

.two_list li .item_cont img {
    width: 100%;
    height: 200px;
}

.two_list li .item_cont h6 {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.two_list li .item_cont:hover h6 {
    color: #be1a21;
}

.two_list li .item_cont p {
    margin-top: 5px;
    font-size: 14px;
    color: #666;
    line-height: 24px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.three_list {
    position: relative;
    margin-top: 30px;
    margin-bottom: -35px;
    width: 100%;
    overflow: hidden;
}

.three_list li {
    float: left;
    margin-bottom: 40px;
    width: 188px;
    overflow: hidden;
}

.three_list li .journal {
    margin: 0 auto;
    width: 147px;
}

.three_list li .journal img {
    width: 100%;
    height: 200px;
}

.three_list li .journal h6 {
    margin-top: 10px;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.three_list li .journal:hover h6 {
    color: #be1a21;
}

.about_text {
    margin: 20px 0;
    width: 100%;
    overflow: hidden;
}

.about_text p {
    font-size: 16px;
    color: #333;
    line-height: 32px;
}

.aboutmap,
.map_section {
    width: 100%;
    height: 393px;
    overflow: hidden;
}

.member_form {
    margin-top: 16px;
    margin-bottom: 20px;
    border: 1px solid #BE1A21;
    overflow: hidden;
}

.member_form input {
    float: left;
    padding-left: 20px;
    width: 878px;
    height: 38px;
    font-size: 14px;
    color: #666;
    border: 0;
    background: #fff;
}

.member_form button {
    float: right;
    width: 60px;
    height: 38px;
    font-size: 16px;
    color: #fff;
    border: 0;
    background: #be1a21;
}

.searchresult_table {
    width: 100%;
    overflow: hidden;
}

.searchresult_table table {
    width: 100%;
}

.searchresult_table table thead th {
    padding: 10px 0;
    padding-left: 10px;
    padding-bottom: 11px;
    font-size: 14px;
    color: #be1a21;
    text-align: left;
    background: rgba(230, 230, 230, .5);
}

.searchresult_table table tbody tr td {
    padding: 10px 0;
    padding-left: 10px;
    padding-bottom: 11px;
    width: 25%;
    font-size: 14px;
    color: #333;
    text-align: left;
    background: #fff;
}

.searchresult_table table tbody tr:nth-child(2n) td {
    background: rgba(190, 26, 33, .1);
}

.rules_section .rules_title {
    padding-top: 30px;
    text-align: center;
    overflow: hidden;
}

.rules_section .rules_title h6 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.rules_section .rules_title p {
    font-size: 16px;
    color: #333;
}

.rules_section .rulestext_section,
.rules_section .rulestext_section p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.rules_section .rulestext_section img,
.rules_section .rulestext_section p img {
    max-width: 100%;
}

.four-list {
    width: 100%;
    overflow: hidden;
}

.four-list li {
    padding-left: 15px;
    font-size: 16px;
    color: #333;
    line-height: 50px;
    border-bottom: 1px solid #EEEEEE;
    background: url(../images/libg.png) left center no-repeat;
    overflow: hidden;
}

.four-list li a {
    display: block;
    float: left;
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.four-list li a:hover {
    color: #BE1A21;
}

.four-list li .time {
    float: right;
    color: #999;
    font-size: 14px;
}

.promise_section {
    margin-top: 45px;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.promise_section span {
    font-size: 14px;
    color: #999;
}

.promise_section input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    margin-right: 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #999;
    outline: none;
    cursor: pointer;
    position: relative;
    top: 2px;
}

.promise_section input[type="checkbox"]:checked {
    border-color: #DCB882;
}

.promise_section input[type="checkbox"]:checked:after {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 9px;
    height: 7px;
    background: url(../images/icon14.png) center no-repeat;
    content: "";
    display: block;
}

.promise_btn {
    display: block;
    margin: 0 auto;
    margin-top: 10px;
    width: 100px;
    height: 40px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 40px;
    background: #DCB882;
    border-radius: 5px;
}

.shenqing_btn {
    display: block;
    width: 160px;
    height: 30px;
    background: #be1a21;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    border-radius: 3px;
    font-weight: bold;
    margin: 0 auto;
}

.member_search {
    margin-top: 20px;
    width: 100%;
    height: 40px;
    border: 1px solid #BE1A21;
    overflow: hidden;
}

.member_search input {
    float: left;
    width: 878px;
    height: 38px;
    font-size: 14px;
    color: #666;
    border: 0;
}

.member_search button {
    float: right;
    width: 60px;
    height: 38px;
    font-size: 16px;
    color: #fff;
    background: #BE1A21;
    border: 0;
}

.result_table {
    margin-top: 15px;
    margin-bottom: 20px;
    width: 100%;
    overflow: hidden;
}

.result_table table {
    width: 100%;
}

.result_table table thead tr th {
    padding: 12px 10px;
    font-size: 14px;
    color: #BE1A21;
    text-align: center;
    background: rgba(230, 230, 230, .5);
}

.result_table table tbody tr td {
    padding: 12px 10px;
    font-size: 14px;
    color: #333;
    text-align: center;
}


/*自适应各个节点
min-width:XXXXpx;是分辨率大于xxxxpx时使用；
max-width:XXXXpx;是分辨率小于xxxxpx时使用*/


/*PC端大屏*/

@media screen and (min-width:1601px) {}


/*PC1端中屏开始*/

@media screen and (min-width:1201px) and (max-width:1600px) {}


/*移动端手机小屏开始*/

@media screen and (max-width:1200px) {}

@media screen and (min-width:1680px) and (max-width:1919px) {}

@media screen and (min-width:1600px) and (max-width:1679px) {}

@media screen and (min-width:1360px) and (max-width:1599px) {}

@media screen and (max-width:1359px) {}

@media screen and (max-width: 768px) {}