<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* çƒ­ç‚¹èµ„è®¯ */
.fr_part .hot-news {
    width: 100%;
    background-color: white;
    border-radius: 4px;
}

.fr_part .hot-news .head {
    position: relative;
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    padding: 16px 10px 14px 10px;
    display: flex;
    justify-content: space-between
}

.fr_part .hot-news .head .red-line {
    margin-bottom: 2px;
    width: 4px;
    height: 18px;
    background-color: var(--c66);
    margin-right: 5px
}

.fr_part .hot-news .head .title {
    width: 80px;
    height: 18px;
    margin-bottom: 2px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 18px
}

.fr_part .hot-news .head .space-holder {
    height: 20px;
    flex: auto
}

.fr_part .hot-news .head .choose-condition {
    width: 80px;
    height: 20px;
    display: flex;
    justify-content: space-between
}

.fr_part .hot-news .head .choose-condition .option {
    flex: none;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    color: #333;
    transition: 0.1s;
    border-radius: 2px;
    box-sizing: border-box;
    padding-bottom: 2px
}

.fr_part .hot-news .head .choose-condition .option:hover {
    color: var(--c66)
}

.fr_part .hot-news .head .choose-condition .option.active {
    background: var(--c66);
    font-weight: 500;
    color: #fff
}

.fr_part .hot-news .head .split-line {
    width: calc(100% - 22px);
    height: 1px;
    background-color: #EEEEEE;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%)
}

.fr_part .hot-news .list {
    padding: 1px 10px 10px 10px;
    display: none
}

.fr_part .hot-news .list.active {
    display: block
}

.fr_part .hot-news .list .hot-new-item {
    width: calc(100% - 10px);
    box-sizing: border-box;
    padding: 7px 15px;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F3F4F7;
    margin-top: 10px;
    border-radius: 2px
}

.fr_part .hot-news .list .hot-new-item:hover .title {
    color: var(--c66)
}

.fr_part .hot-news .list .hot-new-item .number {
    flex: none;
    width: 36px;
    height: 25px;
    color: #BBBBBB;
    line-height: 25px;
    text-align: center;
    font-size: 18px;
    font-weight: normal
}

.fr_part .hot-news .list .hot-new-item .flex {
    flex: auto;
    height: 25px
}

.fr_part .hot-news .list .hot-new-item.item1 .number {
    color: var(--c66)
}

.fr_part .hot-news .list .hot-new-item.item2 .number {
    color: #FFA03B
}

.fr_part .hot-news .list .hot-new-item.item3 .number {
    color: #FCBD30
}

.fr_part .hot-news .list .hot-new-item .hot {
    flex: auto;
    height: 17px;
    font-size: 12px;
    font-weight: 600;
    text-align: right;
    color: var(--c66);
    line-height: 17px;
    transition: 0.1s
}

.fr_part .hot-news .list .hot-new-item .title {
    width: 200px;
    font-size: 12px;
    font-weight: 400;
    color: #333;
    line-height: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

/* çƒ­ç‚¹èµ„è®¯ */
/* åˆ—è¡¨ */
.fl_part .main {
    width: 860px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}

.fl_part .main .news-list {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: white;
    border-radius: 4px
}

.fl_part .main .news-list .new-item {
    position: relative;
    width: 100%;
    height: 140px;
    padding-top: 0px;
    margin-bottom: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between
}

.fl_part .main .news-list .new-item .cover {
    width: 212px;
    height: 119px;
    overflow: hidden;
    border-radius: 2px
}

.fl_part .main .news-list .new-item .cover .image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 1s;
    width: 212px;
    border-radius: 2px;
    height: 119px
}

.fl_part .main .news-list .new-item .cover .image:hover {
    transform: scale(1.2)
}

.fl_part .main .news-list .new-item .cover.zoom .image {
    transform: scale(1.2)
}

.fl_part .main .news-list .new-item .article {
    flex: 1;
    height: 119px;
    margin-left: 20px
}

.fl_part .main .news-list .new-item .article .title {
    width: 620px;
    height: 25px;
    margin-top: 4px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 25px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis
}

.fl_part .main .news-list .new-item .article .title:hover {
    color: var(--c66)
}

.fl_part .main .news-list .new-item .article .text {
    margin-top: 10px;
    width: 620px;
    height: 40px;
    font-size: 14px;
    font-weight: 400;
    color: #999;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.fl_part .main .news-list .new-item .article .other-info {
    width: 620px;
    height: 17px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    color: #999;
    line-height: 17px;
    white-space: nowrap;
    display: flex
}

.fl_part .main .news-list .new-item .article .other-info .publish-time {
    margin-right: 19px
}

.fl_part .main .news-list .new-item .article .other-info .tip {
    height: 27px;
    font-size: 0px;
    font-weight: 400;
    color: var(--c66);
    line-height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}


.fl_part .main .news-list .new-item .article .other-info .tip .img {
    width: 17px;
    height: 17px
}

.fl_part .main .news-list .new-item .article .other-info .tip .cname {
    font-size: 12px;
    margin-left: 5px;
    margin-right: 5px;
    position: relative;
    top: -1px;
    padding: 0 8px;
    background-color: #F6F7F9;
    border-radius: 14px;
}
.cname a {
    color: var(--c66);
}

.fl_part .main .news-list .new-item .article .other-info .space-hold {
    flex: auto
}

.fl_part .main .news-list .new-item .article .other-info .comment {
    width: 72px;
    text-align: left
}

.fl_part .main .news-list .new-item .article .other-info .comment&gt;span {
    display: inline-block;
    margin-left: 5px
}

.fl_part .main .news-list .new-item .article .other-info .like {
    text-align: left;
    width: 80px
}

.fl_part .main .news-list .new-item .article .other-info .like&gt;span {
    display: inline-block;
    margin-left: 5px
}

.fl_part .main .news-list .new-item .article .other-info .iconfont {
    position: relative;
    top: 2px
}

.fl_part .main .news-list .new-item .split-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #EEEEEE;
    transform: scaleY(0.5)
}

.fl_part .main .news-list .pagination {
    height: 107px;
    width: 100%;
    padding-top: 30px;
    box-sizing: border-box;
    text-align: center;
}

.news-list .pagination .layui-laypage .layui-laypage-curr .layui-laypage-em,.news-list .layui-laypage a:hover{
    background-color: #de1e31;
    border-color: #de1e31;
    color: #fff;
    border-radius: 4px;
}
.news-list .layui-laypage a,.news-list .layui-laypage span{

    height: 38px;
    line-height: 38px;
    min-width: 28px;
    box-sizing: border-box;
    border-radius: 4px;
    margin: 0 5px;
}
.news-list .layui-laypage-curr{
    border-radius: 4px;
}
/* åˆ—è¡¨ */
/* åˆ—è¡¨å·¦è¾¹çš„æ‚¬æµ® */

.dhtext_ln li a {
    color: #333
}

.dhtext_ln li a:hover {
    color: var(--c11)
}

.dhtext_ln li.zbhover {
    background: var(--c11);
    color: #fff
}

.dhtext_ln li.zbhover a {
    color: #fff
}

/* åˆ—è¡¨å·¦è¾¹å¾—æ‚¬æµ® */
/* èµ„è®¯è¯¦æƒ… */
.zhixunxqnr {
    background: #fff;
    padding: 30px 15px;
    border-radius: 0 0 4px 4px;
}

.details_title {
    background-color: #f3f4f7;
    padding: 10px;
    line-height: 25px;
    font-size: 14px;
    letter-spacing: .5px;
}


.zc_bt_sj_ly h3 {
    font-size: 24px;
    font-weight: 700
}

.wz_laiyuan li {
    float: left;
    color: #999;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    padding-top: 1px
}

.wz_laiyuan li cite {
    padding: 0 10px
}

.wz_zhengwen {
    font-size: 16px;
    line-height: 30px;
    clear: both;
    padding-bottom: 40px;
    padding-top: 10px
}

.wz_zhengwen h3 {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 25px;
}

.wz_zhengwen p {
    letter-spacing: .5px;
    line-height: 32px;
    margin-bottom: 25px;
    font-size: 14px;
}

.wz_zhengwen img {
    width:100%;
    margin: 15px auto;
    display: block
}

.wz_zhengwen i {
    font-style: oblique
}
.wz_zhengwen .tags_live-plater-info-label{
    display: flex;
    align-items: center;
}
.wz_zhengwen .tags_live-plater-info-label p,.wz_zhengwen .tags_live-plater-info-label span{
    display: inline-block;
}
.wz_zhengwen .tags_live-plater-info-label p{
    margin-right: 20px;
    font-size: 12px;
    color: #999;
    letter-spacing: 0px;
    line-height: 0;
    margin-bottom: 0px;
}
.wz_zhengwen .tags_live-plater-info-label span{
    background: var(--c77);
    color: var(--c66);
    padding: 2px 10px;
    text-align: center;
    margin-right: 10px;
    font-size: 12px;
    line-height: 16px;
}

.result {
    display: flex;
    align-items: center;
    justify-content: center;
}

.result&gt;div a {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.result img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    display: inline-block;
    margin-right: 2px;
}

.result span,
.result i {
    color: #999;
    font-size: 14px;
}

.result i {
    margin-left: 2px;
    display: inline-block;
    font-style: normal
}

/* ä¸Šä¸€ç¯‡ä¸‹ä¸€ç¯‡ */
.entry-page {
    margin-bottom: 20px;
}

.entry-page {
    overflow: hidden
}

.entry-page-next,
.entry-page-prev {
    position: relative;
    width: 49%;
    padding: 60px 15px 10px;
    color: #fff;
    background-size: cover;
    background-position: 50%;
    border-radius: 4px;
    overflow: hidden;
    box-sizing: border-box;
}

.entry-page-prev {
    float: left
}

.wpcom-icon {
    display: inline-block;
    width: 15px;
    height: 15px;
    position: relative;
    top: 2px;
}

.wpcom-icon img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    display: inline-block;
}

.icon-svg,
.wpcom-icon svg {
    width: 1em;
    height: 1em;
    vertical-align: -.15em;
    fill: currentColor;
    overflow: hidden
}

.entry-page .pull-left {
    float: left !important
}
.entry-page .pull-left .wpcom-icon{
    position: inherit;
    
}
.entry-page .pull-right .wpcom-icon{
    position: inherit;
    
}
.entry-page .pull-left .wpcom-icon img,.entry-page .pull-right .wpcom-icon img{
   vertical-align: baseline;
}

.entry-page .pull-right {
    float: right !important
}

.entry-page-next:before,
.entry-page-prev:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    content: ""
}

.entry-page-next:hover:before,
.entry-page-prev:hover:before {
    background: rgba(0, 0, 0, .7)
}

.entry-page-next a,
.entry-page-prev a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    color: #fff;
    font-size: 16px
}

.entry-page-next a span,
.entry-page-prev a span {
    display: block;
    padding: 10px 15px 0;
    /* height: 50px; */
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2
}

.entry-page-next a:hover,
.entry-page-prev a:hover {
    color: #fff;
    text-decoration: none
}

.entry-page-next .entry-page-info,
.entry-page-prev .entry-page-info {
    position: relative;
    font-size: 12px;
    line-height: 16px;
    overflow: hidden
}

.entry-page-next .entry-page-info .wi,
.entry-page-prev .entry-page-info .wi {
    opacity: .9
}

.entry-page-info span {
    display: flex;
    align-items: center;
}

.entry-page-next {
    float: right
}

.entry-page-nobg:before {
    background-color: var(--theme-color);
    background-image: linear-gradient(90deg, rgba(255, 255, 255, .3), transparent)
}

.entry-page-nobg:hover:before,
.profile-tab-content .q-content .q-pagination a.current:hover,
.profile-tab-content .q-content .q-pagination span.current:hover,
.qapress .q-content .q-pagination a.current:hover,
.qapress .q-content .q-pagination span.current:hover {
    background-color: var(--theme-hover)
}

/* ç›¸å…³é˜…è¯» */
.tuji_list {
    margin-top: 5px;
    width: 100%;
}

.tuji_list .topline .title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    line-height: 30px;
}

.tuji_list .topline .title span {
    vertical-align: middle;
    margin-right: 8px;
}
.tuji_list .topline .title i{
    line-height: 0;
    margin-right: 5px;
}

.tuji_list .topline .title h1 {
    vertical-align: middle;
    margin-right: 8px;
    display: inline-block;
    font-size: 16px;
    font-weight: 600px;
}

.tuji_list .topline .title h2 {
    vertical-align: middle;
    margin-right: 8px;
    display: inline-block;
    font-size: 20px;
}

.tuji_list .topline .title h3 {
    vertical-align: middle;
    margin-right: 8px;
    display: inline-block;
    font-size: 20px;
}

.tuji_list .topline .linelist {
    margin-top: 20px;
}

.tuji_list .topline .linelist li {
    float: left;
    height: 16px;
    border-right: 2px solid #999;
    line-height: 16px;
    padding: 0 10px;
}

.tuji_list .topline .linelist li:nth-last-of-type(1) {
    border: none;
}

.tuji_list .topline .linelist li a {
    font-size: 14px;
    color: #999;
}

.tuji_list .topline .linelist li.current a {
    color: #e60012;
}

.tuji_list dl {
    margin-top: 20px;
    width: calc(25% - 12.25px);
    margin-left: 15px;
    height: auto;
    padding-bottom: 15px;
    border: 1px solid #ddd;
    position: relative;
    float: left;
    box-sizing: border-box;
    border-radius: 4px;
}
.tuji_list dl:nth-child(1){
    margin-left: 0;
}
.tuji_list dl:nth-child(4n + 1){
    margin-left: 0;
}

.tuji_list dl dt a {
    width: 100%;
    height: 108px;
    position: absolute;
    left: -1px;
    top: -1px;
    overflow: hidden;
    border-top-left-radius:4px ;
    border-top-right-radius: 4px;
}

.tuji_list dl dt img {
    width: 100%;
    min-height: 100%;
}

.tuji_list dl dd {
    margin-top: 108px;
    padding-top: 8px;
}

.tuji_list dl dd .tit {
    line-height: 24px;
    height: 35px;
    text-align: center;
    padding-left: 5px;
}
.tuji_list dl dd .info {
   width: 90%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin: 0 auto;
}

.tuji_list dl dd .tit a {
    font-size: 14px;
    color: #333;
    max-width: 90%;
}

.tuji_list dl dd .tit:hover a {
    color: #e81525;
}


.tuji_list dl dd .time {
    color: #999;
}

.tuji_list dl dd .see span{
    margin-right: 5px;
}

.tuji_list dl dd .see {
    color: #999;
}

/* å…³é”®è¯ */
.gjc_list {
    background: #fff;
    padding-top: 30px;
}
.keyword_top {
    display: flex;
    align-items: center;
    margin: 0 0 30px 15px
}

.keyword_top&gt;img {
    width: 30px;
    margin-right: 5px
}

.keyword_top&gt;span {
    font-size: 20px;
    color: #333;
    font-weight: 600
}
.keywordlist {
    clear: both;
    padding: 30px 10px;
    overflow: hidden
}

.keywordlist li {
    float: left;
    height: 49px;
    line-height: 49px;
    border: 2px #e4e4e4 solid;
    padding: 0 13px;
    background: #ededed;
    color: #333;
    margin: 0 9px;
    margin-bottom: 17px;
    border-radius: 10px
}

.keywordlist li.important {
    background: #fff0f2;
    border: 2px #ffc6c6 solid
}

.keywordlist li:hover {
    color: #ff4d4d
}

/* ç½‘ç«™åœ°å›¾ */
.sitemap .sitamap-wrapper .crumbs-container {
    background-color: white;
    width: 1200px;
    height: 48px;
    border-radius: 2px;
    line-height: 48px;
    margin-bottom: 10px
}

.sitemap .sitamap-wrapper .crumbs-container .crumbs {
    position: relative
}

.sitemap .sitamap-wrapper .crumbs-container .crumbs .title {
    width: 64px;
    height: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 16px;
    margin-right: 40px;
    margin-left: 20px
}

.sitemap .sitamap-wrapper .crumbs-container .crumbs .link {
    font-size: 12px;
    font-weight: 400;
    color: #666
}

.sitemap .sitamap-wrapper .crumbs-container .crumbs .line {
    position: absolute;
    display: inline-block;
    height: 16px;
    width: 1px;
    background-color: #E5E5E5;
    top: 16px;
    left: 105px
}
.sitemap .website {
    width: 1200px;
    background-color: white;
    border-radius: 2px;
    padding: 30px 20px 0;
    box-sizing: border-box
}

.sitemap .website .web-link {
    position: relative;
    margin-bottom: 30px
}

.sitemap .website .web-link .title {
    height: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center
}

.sitemap .website .web-link .title::before {
    content: "";
    display: block;
    width: 4px;
    height: 16px;
    background-color: #E84B5B;
    margin-right: 5px
}

.sitemap .website .web-link .links {
    padding-top: 20px;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 22px;
    display: flex;
    flex-wrap: wrap
}

.sitemap .website .web-link .links .link {
    margin-bottom: 20px;
    margin-right: 25px;
    white-space: nowrap;
    text-decoration: none;
    color: #666
}

.sitemap .website .web-link .links .link:hover {
    color: #e30c0c
}

.sitemap .website .web-link .second-level {
    display: flex
}

.sitemap .website .web-link .second-level .subtitle {
    flex: none;
    margin-right: 25px;
    padding-top: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #e84b5b;
    line-height: 22px
}

.sitemap .website .web-link .split-line {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #eee;
    box-sizing: border-box
}
</pre></body></html>