* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: #3e3e3e;
    text-decoration: none;
}

:root {
    --theme-color: rgba(212, 0, 15, 1);
}

body {
    background: #F7F7F7;
}

h1,
h2,
h3,
h4,
h3,
h6 {
    text-decoration: none;
    font-weight: normal;
    font-size: 100%;
}

/*去掉行内替换元素空白缝隙*/
img {
    border: 0;
    vertical-align: middle;
}

ul {
    list-style: none;
}

.header-title {
    height: 170px;
    width: 100%;
    background-image: url(../images/head_bg@2x.png);
    background-size: 100% 100%;
    padding-top: 0.1px;
}

.header-title>img {
    width: 742px;
    margin-left: calc((100% - 1200px) / 2);
    margin-top: 50px;
}

.nav-group-wrap {
    background: var(--theme-color);
}

.nav-group {
    display: flex;
    flex-flow: row nowrap;

    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}

.nav-group ul {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.nav-group ul li {

    flex: 1 0 auto;

    vertical-align: middle;
}

.nav-group>ul li a {
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    line-height: 56px;
    padding: 0 24px;
}

.nav-group ul li a:hover {
    background: rgba(190, 0, 13, 1);
    font-weight: bold;
}

.sub-station {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.sub-station>div {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    padding: 0 15px;
    height: 100%;
    cursor: pointer;
    position: relative;
}

.sub-station>div span {
    margin-left: 10px;
}

.sub-station>div:hover {
    background: rgba(190, 0, 13, 1);
}

.sub-station>div:hover .nav-panel {
    display: flex;
}

.sub-station img {
    width: 24px;
}

.nav-panel {
    position: absolute;
    top: 70px;
    right: 0;
    background: var(--theme-color);
    border-radius: 4px;
    display: none;
    flex-flow: row wrap;
    align-items: center;
    padding: 10px 0;
    z-index: 9;
}

.nav-panel::after {
    position: absolute;
    top: -20px;
    width: 100%;
    height: 20px;
    content: " ";
}

.nav-panel::before {
    /* 向上的小三角 */
    content: '';
    position: absolute;
    top: -8px;
    right: 20%;
    width: 0;
    height: 0;
    border-radius: 1px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid var(--theme-color);
}

.nav-panel.vertical {
    width: 140px;
    flex-flow: column nowrap;
}

.nav-panel.vertical>div {
    width: 140px;
}

.nav-panel.vertical a {
    line-height: 50px;

}

.nav-panel a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    display: block;
    text-align: center;
}

.nav-panel.horizontal {
    width: 426px;
}

.nav-panel.horizontal div {
    flex: 0 0 auto;
    padding: 20px;
    width: calc(426px / 3);
    position: relative;
}



.nav-panel.horizontal div:not(:nth-of-type(3n))::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: #FFFFFF;
}


.nav-panel.vertical a:hover {
    background: rgba(190, 0, 13, 1);
}


.page-content {
    width: 1200px;
    margin: 0 auto 38px auto;
}

.page-content .load-more {
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    text-align: center;
    padding: 26px 0;
    cursor: pointer;
}

.page-content-title {
    font-weight: 400;
    font-size: 14px;
    color: #9C232B;
    padding: 20px 0;
}


.row-flex {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.justify-start {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}

.aside-nav {
    flex: 0 0 200px;
    background: #fff;
    min-height: 200px;
    padding: 5px 0 5px 10px;
}

.news-panel {
    background: #FFFFFF;
    padding: 8px 14px;
    margin-left: 1px;
    width: 709px;
}

.news-panel-header {
    flex-wrap: wrap;
}

.news-label {
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    border-radius: 6px;
    padding: 14px 20px;
    line-height: 1;
    margin-bottom: 16px;
    cursor: pointer;
}

.news-label:not(:last-of-type) {
    margin-right: 16px;
}

.news-label.active {
    font-weight: bold;
    font-size: 16px;
    color: #D4000F;
    background: rgba(255, 93, 21, .1);
}

.news-panel-content {
    border-top: 1px solid rgba(220, 220, 220, 1);
}

.news-item {
    padding: 22px 0;
    border-bottom: 1px solid rgba(220, 220, 220, 1);
}

.news-item>div {
    flex: 1 0 1px;
}

.news-item a>img {
    flex: 0 0 192px;
    margin-left: 22px;
    width: 192px;
    height: 112px;
}

.news-item-title {
    font-weight: bold;
    font-size: 16px;
    color: #333333;
    margin-bottom: 20px;
}

.news-item-desc {
    font-weight: 400;
    font-size: 12px;
    color: #666666;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

}

.news-item-other {
    margin-top: 20px;
}

.news-item-other span {
    margin-right: 24px;
    font-weight: 400;
    font-size: 12px;
    color: #333333;
}

.news-item-other img {
    width: 16px;
    margin-right: 4px;
}

.card {
    background: #FFFFFF;
    margin-left: 10px;
    margin-bottom: 10px;
    padding: 16px;
}

.card-header {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    color: #333333;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(238, 238, 238, 1);
}

.card-header img {
    width: 24px;
    margin-right: 3px;
}


.card-content {
    padding: 16px 0 8px;
}

.hot-word-panel {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-around;
    padding-bottom: 10px;
}

.hot-word {
    background: #FFF5ED;
    padding: 10px 14px;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    margin-bottom: 6px;
}

.hot-word.big {
    padding: 12px 18px;
    font-size: 17px;

}

.hot-word.small {
    padding: 8px;
    font-size: 10px;
    color: #333333;
    opacity: 0.3;
}

.hot-word.hot {
    color: #D4000F;
}

.activity-item {
    position: relative;
    text-wrap: nowrap;
    overflow: hidden;
    text-indent: 1em;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 38px;
    height: 38px;
}

.activity-item:hover {
    color: #D4000F;
}

.activity-item:not(:last-of-type) {}

.activity-item::before {
    width: 6px;
    height: 6px;
    background: #FF5A20;
    border-radius: 50%;
    position: absolute;
    content: " ";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 90, 32, 1);
}

.recommend-item {

    font-weight: 400;
    font-size: 14px;
    color: #333333;
}

.recommend-item:not(:last-of-type) {
    margin-bottom: 20px;
}

.recommend-item img {
    width: 100%;
    height: 140px;
    margin-bottom: 10px;
}

.common-footer {
    padding: 10px 0;
    text-align: center;
    background: #e8e8e8;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
}

.aside-nav .nav-item {
    width: 200px;
    height: 48px;
    border-radius: 4px 0 0 4px;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    padding: 0 18px;
    justify-content: space-between;
    border: 1px solid #fff;
    cursor: pointer;
}

.aside-nav .nav-item>img {
    width: 12px;
}

.aside-nav .nav-item:hover {
    border-color: #e8e8e8;
}

.aside-nav .nav-item.active {
    background: #FFDE00;
    font-weight: bold;
}

.aside-nav-child {
    padding: 8px 0 8px 14px;
}

.aside-nav-child dd {
    list-style: none;
    font-size: 14px;
    color: #666666;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    position: relative;
    cursor: pointer;
}

.aside-nav-child dd.active {
    font-weight: bold;
    color: #D4000F;
}



.aside-nav-child dd::before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    background: #F8F4F8;
    width: 2px;
    height: 100%;
}

.aside-nav-child dd.active::after {
    position: absolute;
    width: 2px;
    content: " ";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #D4000F;
    height: 32px;
}

.aside-nav-child dd.active img {
    width: 19px;
}

.aside-nav .nav-item.active {
    background: #FFDE00;
    font-weight: bold;
}

.navBox {
    flex: 0 0 200px;
    background: #fff;
    min-height: 200px;
    padding: 10px 0 5px 10px;
}

.navBox ul li {
    background-color: #fff;
    cursor: pointer;
    margin-bottom: 4px;
    list-style: none;
}

.navBox .obFocus {
    background-color: #FF9000;
    color: white;
}

.navBox ul li .obtain:hover {
    background-color: #FF9000;
    border-bottom: 1px solid #ddd;
    color: white;
}

.navBox ul li h2 {
    position: relative;
    width: 200px;
    height: 48px;
    line-height: 48px;
    border-radius: 4px 0 0 4px;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    padding: 0 18px;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
}

.navBox ul li h2 i {
    position: absolute;
    top: 50%;
    right: 10px;
    border-top: 6px transparent dashed;
    border-left: 6px solid #333;
    border-right: 6px transparent dashed;
    border-bottom: 6px transparent dashed;
    display: inline-block;
    -webkit-transition: -webkit-transform 0.6s ease;
    -moz-transition: -moz-transform 0.6s ease;
    -o-transition: -o-transform 0.6s ease;
    -ms-transition: -ms-transform 0.6s ease;
    transform-origin: 4px 3px;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.navBox ul li h2 .arrowRot {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.navBox ul li .secondary {
    overflow: hidden;
    height: 0;
    color: #666;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;

}

.navBox ul li .secondary h3 {
    list-style: none;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
}

.navBox ul li .secondary h3:hover {
    color: #D4000F;
    font-weight: bold;
}

.secondary h3:hover span {
    width: 19px;
    height: 6px;
    background: url(../images/jiant2@2x.png) 0 50% no-repeat;
    background-size: 100% auto;
}


.secondary h3::before,
.navBox ul li .secondary .seconFocus h3::before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    background: #F8F4F8;
    width: 2px;
    height: 100%;
}

.navBox ul li .secondary .seconFocus {
    font-weight: bold;
    color: #D4000F;
}

.navBox ul li .secondary .seconFocus::after {
    position: absolute;
    width: 2px;
    content: " ";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #D4000F;
    height: 32px;
}

.navBox ul li .secondary .seconFocus span {
    width: 19px;
    height: 6px;
    background: url(../images/jiant2@2x.png) 0 50% no-repeat;
    background-size: 100% auto;
}


/*分页*/
.pagelist {
    padding: 10px 0;
    text-align: center;
    overflow: hidden;
}

.pagelist span,
.pagelist a {
    border-radius: 3px;
    border: 1px solid #dfdfdf;
    display: inline-block;
    padding: 5px 12px;
}

.pagelist a {
    margin: 0 3px;
}

.pagelist li.active {
    background: #09F;
    color: #FFF;
    border-color: #09F;
    margin: 0 2px;
}

.pagelist a:hover {
    background: #09F;
    color: #FFF;
    border-color: #09F;
}

.pagelist label {
    padding-left: 15px;
    color: #999;
}

.pagelist label b {
    color: red;
    font-weight: normal;
    margin: 0 3px;
}

.pagelist ul,
.pagelist li {
    float: left;
}