<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
    font-family: Source Han Sans;
    font-size: 24px;
}
a{
    text-decoration: none;
    color: #333;
}

.flex_h{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.flex_C{
    align-items: center;
}
.centerWraper{
    width: 1130px;
    margin: 0 auto;
}

.topWrap{
    background: rgba(184, 39, 46, 0.73);
    height: 134px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.topWrap .logo{
    width: 178px;
    height: 113px;
    margin-top: 10px;
}
.topWrap .top_menu{
    padding-top: 64px;
}
.topWrap .top_menu .item{
    width: 142px;
    text-align: center;
}
.topWrap .top_menu .item a{
    font-weight: bold;
    line-height: 34px;
    letter-spacing: 0px;
    color: #EDB045;
    position: relative;
}
.topWrap .top_menu .item.on a::after{
    display: inline-block;
    content: '';
    width: 30px;
    height: 5px;
    border-radius: 2px;
    background: #EDB045;
    position: absolute;
    top: 36px;
    left: 50%;
    margin-left: -15px;
}
.topWrap .tag_box{
    position: absolute;
    right: 0;
    top:  18px;
    font-size: 18px;
    color: #fff;
    padding-right: 20px;
}
.topWrap .tag_box span{
    margin:0 10px;
}
.topWrap .tag_box img{
    vertical-align: middle;
    position: relative;
    top: -2px;
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

.footer .menu_wrap{
    background: url(../images/footer_bg.jpg) no-repeat center;
    background-size: auto 430px;
}
.footer .menu_box{
    width: 1300px;
    height: 430px;
    margin: 0 auto;
    padding-top: 40px;
}
.footer .menu_box .item{
    flex: 1;
    color: #fff;
    line-height: 50px;
    font-weight: lighter;
}
.footer .menu_box .item .t{
    font-size: 26px;
    display: block;
    color: #fff;
}
.footer .menu_box .item .list{
    font-size: 20px;
}
.footer .menu_box .item .list .item{
    display: block;
}
.footer .page_info{
    width: 100%;
    height: 85px;
    line-height: 85px;
    text-align: center;
    font-size: 14px;
    background-color: #8F2539;
    color: #fff;
}

.container .page_tab{
    padding: 30px 0;
    border-bottom: 22px solid #f2f2f2;
}
.container .page_tab .tab_group{
    line-height: 40px;

}
.container .page_tab .tab_group .item{
    line-height: 40px;
    padding: 0 20px;
    border-right: 1px solid #333;
    cursor: pointer;
}
.container .page_tab .tab_group .item.on{
    color: #EDB045;
}
.container .page_tab .tab_group .item:last-child{
    border-right: none;
}</pre></body></html>