<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
body,div,li,ul,ol,dl,dd,dt,span,b,strong,p,h1,h2,h3,h4,h5,input{margin:0;padding:0;}
ul,li,dl,dt,dd,ol{list-style:none;list-style-type:none;}
a img,a,a:hover,a:active,a:visited{border:none;text-decoration:none; outline:none;}
body{font-size:13px;}
input,body,textarea{ font-family:"PingFang SC", "Microsoft YaHei","Helvetica Neue",Helvetica,"Hiragino Sans GB",Arial,sans-serif;}
body{ background-color: #fff;}

/* 可以对选中文本进行自定义样式设计，例如改变选中文本的背景色、文字颜色等 */
::selection{background:#06f;color:#fff;}
/* 是一个用于 Firefox 浏览器的 CSS 伪元素选择器，与 ::selection 类似，但它专为 Firefox 设计 */
::-moz-selection{background:#06f;color:#fff;}

/* 可以为输入框的占位符文本设置特定的样式，例如颜色、字体、大小 */
::-webkit-input-placeholder{text-overflow:ellipsis}

/* 设置滚动条 */
::-webkit-scrollbar{width:8px;height:8px;overflow:auto}
::-webkit-scrollbar-thumb{background-color:#e6e6e6;min-height:25px;min-width:25px;border:1px solid #e0e0e0}
::-webkit-scrollbar-track{background-color:#f7f7f7;border:1px solid #efefef}

/*分页*/
.pagination{ width:auto; height:auto; overflow:hidden; clear:both; text-align:center;  margin:20px auto 20px auto;}
.pagination li{ min-width:32px; height:32px;text-align:center; display:inline-block; line-height:32px; margin-right:4px;border:solid 1px #d9d9d9; border-radius:4px;margin-top: 15px;}
.pagination li:first-child a,.pagination li:last-child a{box-sizing: border-box;padding: 0 10px;}
.pagination li a{ width:100%; height:32px; text-align:center; line-height:32px; display:block; font-size:14px; color:#666; box-sizing: border-box; }
.pagination li:hover,.pagination li.active{ background:#23438c; color:#fff; border:solid 1px #23438c; }
.pagination li:hover a{ color: #fff;}

/* 没有数据 */
.ui-nodata{ text-align: center; padding: 20px; box-sizing: border-box; overflow: hidden;}
.ui-nodata img{ display:block; margin: 0 auto;}
.ui-nodata p{ font-size: 13px; color: #666; line-height: 38px;}

/* 详情页码 */
.article-pager{  width:100%; height:38px; margin:15px auto 15px auto; clear:both; text-align:center;}
.article-pager li{  width:128px; height:38px;border:solid 1px #efefef; text-align:center; display:inline-block; 
line-height:38px; box-sizing:border-box; border-radius:4px; background:#fff; margin-right:7px;}
.article-pager li a{ width:100%; height:38px; display:block; color:#333; font-size: 13px;}
.article-pager li a span{ font-size: 13px;}
.article-pager li:hover{  border:solid 1px #23438c;}
.article-pager li:hover a{ color:#23438c;}


/* 双伪元素清除法 */
.clearfix::before,.clearfix::after {content: "";display: table;}
.clearfix::after {clear: both;}
/* 显示一行超出省略号 */
.ellipsis {overflow: hidden;white-space: nowrap;text-overflow: ellipsis;}

/* 设置版心 */
.w {width: 100%;padding: 0 2.6%; background-color: #fff;overflow: hidden;box-sizing: border-box;}

/* 设置头部 */
.header {
    position: fixed;
    box-sizing: border-box;
    top: 0px;
    width: 100%;
    height: 110px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);  
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.6%;
    z-index: 9999;
}
.header .logo {
    width: 156px;
    height: 60px;
    overflow: hidden;
    font-size: 0;
    display: block;
}
.header .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header #logo1 {
    display: none;
}

.header .nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    margin-left: 150px;
    margin-right: 50px;
}
.header .nav li {
    position: relative;
    flex: 1;
    height: 60px;
    text-align: center;
}
.header .nav li a{
    position: relative;
    display: inline-block;
    height: 100%;
    line-height: 60px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    font-weight: normal;
}
.header .nav li a .selLine {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: all 1.0s;
}
.header .nav li.active a .selLine {
    left: 0; /* 重置left值，以便横线从左侧开始扩散 */  
    width: 100%;
}
.header .nav li:hover a .selLine {
    left: 0; /* 重置left值，以便横线从左侧开始扩散 */  
    width: 100%;
}
.header .other {
    flex: none;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    width: 260px;
    height: 60px;
}
.header .other .phone {
    cursor: pointer;
    display: flex;
    align-items: center;
}
.header .other .phone span {
    font-size: 24px;
    color: #fff;
}
.header .other .phone .number {
    margin-left: 10px;
    font-size: 22px;
    line-height: 24px;
    color: #fff;
}
.header .other .search {
    margin-right: 0px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .other .search span {
    font-size: 24px;
    line-height: 24px;
    color: #fff;
}
.header .other .classify {
    display: none;
    position: absolute;
    right: 15px;
    height: 44px;
    width: 44px;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s; 
    z-index: 999;
}
.header .other .classify:hover {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.2);
}
.header .other .classify span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 2px) / 2);
    width: 25px;
    height: 2px;
    background-color: #fff;
}
.classify span:nth-child(1) {transform: translateY(10px) rotate(0deg);}
.classify span:nth-child(2) {opacity: 0;}
.classify span:nth-child(3) {transform: translateY(-10px) rotate(0deg);}
.classify-active span:nth-child(1) {animation-duration: 0.5s;animation-fill-mode: both;animation-name: clickfirst;}
.classify-active span:nth-child(2) {animation-duration: 0.5s;animation-fill-mode: both;animation-name: clicksecond;}
.classify-active span:nth-child(3) {animation-duration: 0.5s;animation-fill-mode: both;animation-name: clickthird;}
/*第一条线旋转动画*/
@keyframes clickfirst {
    0% {
        transform: translateY(8px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(45deg);
    }
}
/*第二条线淡入淡出动画动画*/
@keyframes clicksecond {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
/*第三条线旋转动画*/
@keyframes clickthird {
    0% {
        transform: translateY(-8px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}
.classify-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}
.classify-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}
.classify-out span:nth-child(3) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outthird;
}
@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    100% {
        transform: translateY(-8px) rotate(0deg);
    }
}
@keyframes outsecond {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@keyframes outthird {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(8px) rotate(0deg);
    }
}
.fade-in {background-color: #fff;background: #fff;}
.fade-in #logo {display: none;}
.fade-in #logo1{display: block;}
.fade-in .nav li a {color: #222222;}
.fade-in .nav li a .selLine{background-color: #23438c;}
.fade-in .other .phone span {color: #23438c;}
.fade-in .other .phone .number {color: #222222;}
.fade-in .other .search span {color: #222222;}
.fade-in .other .classify span {background-color: #222;}

/* 搜索容器 */
.searchWrap {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 9999;
}
.searchMain {
    position: relative;
    width: 45%;
    padding: 100px 80px;
    background-color: #fff;
}
.searchMain .close{
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    transition: all .5s;
}
.searchMain .close span {
    font-size: 25px;
}
.searchMain .close:hover{
    transform: rotate(180deg);
}
.searchMain .searchform {
    display: flex;
    flex-direction: column;
}
.searchMain .searchform .search-text {
    height: 60px;
    outline: none;
    border-bottom: 1px solid #e3e3e3;
    font-size: 16px;
}
.searchMain .searchform .search-btn {
    cursor: pointer;
    width: 160px;
    height: 50px;
    margin-top: 30px;
    font-size: 16px;
}
/* 分类容器 */
.asidewrap {position: fixed;top: 0px; left: 0;  right: 0;  bottom: 0; z-index: 999;display: none;background-color: #f5f5f5;padding: 0 3%; padding-top: 110px;}
.asidewrap ul {width: 100%;overflow-y: auto;height: calc(100vh - 110px);}
.asidewrap li {border-bottom: 1px solid #dcdcdc;font-size: 16px;}
.asidewrap li .asideheader {display: flex;justify-content: space-between;align-items: center;height: 60px;}
.asidewrap li .asideheader .tit {flex: 1;font-size: 16px;color: #333;line-height: 60px;}
.asidewrap li .asideheader .kz {width: 60px;font-size: 35px;font-style: normal;font-weight: normal;text-align: right;color: #666;}
.asidewrap li .asideheader .tit:hover {color: #23438c;}
.asidewrap li .asidecontent {padding: 0 15px;display: none;}
.asidewrap li .asidecontent a {display: block;position: relative;line-height: 44px;color: #666;font-size: 14px;padding-left: 15px;}
.asidewrap li .asidecontent a:hover {color: #23438c;}

/* 底部视图 */
.footer {
    background-color: #242424;
}
.footer .w {
    background-color:#242424;
    overflow: visible;
}
.footer .top {
    padding: 30px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #2f2f2f;
}
.footer .top .logo {
    font-size: 0;
    height: 60px;
    width: 156px;
}
.footer .top .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer .top .codewrap {
    display: flex;
    height: 44px;
}
.footer .top .codewrap a {
    position: relative;
    width: 44px;
    height: 44px;
    margin-right: 20px;
    background-color: #373737;
    border-radius: 50%;
    text-align: center;
    line-height: 44px;
    font-size: 18px;
}
.footer .top .codewrap a span {
    font-size: 18px;
    color: #929292;
}
.footer .top .codewrap a:last-child{
    margin-right: 0;
}
.footer .top .codewrap a:hover {
    background-color: #23438c;
}
.footer .top .codewrap a:hover span {
    color: #fff;
}
.footer .top .codewrap a .pic {
    display: none;
    position: absolute;
    top: -110px;
    left: calc(50% - 50px);
    width: 100px;
    height: 100px;
    background-color: #fff;
}
.footer .top .codewrap a .pic::after {
    content: ''; 
    position: absolute; 
    width: 0;
    height: 0; 
    border-left: 8px solid transparent;  
    border-right: 8px solid transparent;
    border-top: 8px solid #fff; 
    bottom: -8px;
    left: calc(50% - 8px);
}
.footer .top .codewrap a .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer .main {
    display: flex;
    justify-content: space-between;
    padding-top: 60px;
    padding-bottom: 80px;
    border-bottom: 1px solid #2f2f2f;
}
.footer .main .left {
    flex: 1;
    display: flex;
}
.footer .main .left dl {
    margin-right: 100px;
}
.footer .main .left dl:last-child {
    margin-right: 0;
}
.footer .main .left dl dt {
    font-size: 20px;
    line-height: 40px;
    color: #fff;
}
.footer .main .left dl dd {
    color: #888888;
    font-size: 18px;
    line-height: 42px;
}
.footer .main .left dl dd a:hover {
    color:#23438c;
}
.footer .main .right {
    width: 300px;
}
.footer .main .right h3 {
    font-size: 20px;
    line-height: 40px;
    color: #ffffff;
}
.footer .main .right h2 {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}
.footer .main .right p {
    font-size: 16px;
    line-height: 32px;
    color: #888888;
}


.footer .foot {
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 16px;
    color: #555555;
    line-height: 30px;
}
.footer .foot a:hover{
    color: #23438c;
}
.footer .foot .left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.footer .foot .left a {
    display: flex;
    align-items: center;
    margin-left: 10px;
}
.footer .foot .left a img {
    margin-right: 5px;
}

/* 其他页面的banner */
.banner {
    margin-top: 110px;
    position: relative;
    width: 100%;
    height: 460px;
}
.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner .mask {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 2.6%;
}
.banner .mask h2 {
    font-size: 42px;
    color: #fff;
}
.othernav {
    background-color: #f7f7f7;
}
.othernav .w {
    background-color: transparent;
}
.historynav {
    display: flex;
    align-items: center;
}
.historynav a {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #444;
    line-height: 60px;
}
.historynav a span {
    margin-right: 10px;
}
.historynav a:not(:last-child):after {
    content: '&gt;';
    padding: 0 10px;
}   
.historynav a:hover {
    color: #23438c;
}

/* 富文本内容 */
.ui-cont{ 
    line-height: 250%; 
    font-size: 16px; 
    font-family:"PingFang SC", "Microsoft YaHei","Helvetica Neue",Helvetica,"Hiragino Sans GB",Arial,sans-serif !important;
}
.ui-cont p,.ui-cont div{
    font-family:"PingFang SC", "Microsoft YaHei","Helvetica Neue",Helvetica,"Hiragino Sans GB",Arial,sans-serif !important;line-height: 250%; 
    font-size: 16px;
}
.ui-cont table {
    border-collapse: collapse; /* 合并相邻的边框 */  
    border: 1px solid #d7d7d7; /* 表格边框宽度、样式和颜色 */  
}
.ui-cont th,.ui-cont td {  
    border: 1px solid #d7d7d7; /* 单元格边框宽度、样式和颜色 */  
    padding: 8px;
}

/* 对于小屏幕设备（手机等） */
@media only screen and (max-width: 600px) {
    .w {padding: 0 15px;}
    .header {
        position: fixed;
        padding: 0 15px;
        height: 90px;
    }
    .header .logo {
        width: auto;
        height: 44px;
    }
    .header .nav {
        display: none;
    }
    .header .other {
        flex: 1;
        flex-direction: row-reverse;
    }
    .header .other .search {
        margin-right: 44px;
    }
    .header .other .search span {
        font-size: 28px;
    }

    .header .other .phone {
        display: none;
    }
    .header .other .classify {
        display: block;
    }
    .searchMain {
        width: 90%;
        padding: 50px 15px;
    }

    .footer .top {
        padding: 20px 0;
    }
    .footer .top .logo {
        height: 30px;
        width: auto;
    }
    .footer .top .codewrap {
        height: 30px;
    }
    .footer .top .codewrap a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        margin-right: 12px;
    }
    .footer .top .codewrap a .pic {
        top: -70px;
        width: 60px;
        height: 60px;
        left: calc(50% - 30px);
    }
    .footer .main {
        padding: 30px 0;
    }
    .footer .main .right {
        width: 100%;
    }
    .footer .main .right h3 {
        font-size: 14px;    
    }
    .footer .main .right h2 {
        font-size: 25px;
    }
    .footer .main .right p {
        font-size: 12px;
        line-height: 24px;
    }
    .footer .foot {
        padding: 20px 0;
        font-size: 12px;
    }

    .footer .foot .left a {
        margin-left: 0;
    }
    .footer .main .left {
        display: none;
    }
    .banner  {
        margin-top: 90px;
        height: 240px;
    }
    .banner .mask {
        padding: 0 15px;
    }
    .banner .mask h2 {
        font-size: 25px;
    }

    /* 详情分页 */
    .article-pager li{ height:38px; border:solid 1px #efefef; text-align:center;  line-height:38px; box-sizing:border-box; border-radius:4px; background:#fff;  clear: both; width:calc((100% - 30px)/3);}
    .article-pager li:nth-child(3n){ margin: 0;}
    

}
/* 对于中等屏幕设备（平板等） */
@media only screen and (min-width: 601px) and (max-width: 1199px) {
    .w {padding: 0 15px;}
    .header {
        position: fixed;
        padding: 0 15px;
        height: 90px;
    }
    .header .logo {
        width: auto;
        height: 44px;
    }
    .header .nav {
        display: none;
    }
    .header .other {
        flex: 1;
        flex-direction: row-reverse;
    }
    .header .other .search {
        margin-right: 44px;
    }
    .header .other .search span {
        font-size: 28px;
    }
    .header .other .phone {
        display: none;
    }
    .header .other .classify {
        display: block;
    }
    .searchMain {
        width: 90%;
        padding: 50px 15px;
    }
    .footer .top {
        padding: 20px 0;
    }
    .footer .top .logo {
        height: 30px;
        width: auto;
    }
    .footer .top .codewrap {
        height: 30px;
    }
    .footer .top .codewrap a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        margin-right: 12px;
    }
    .footer .top .codewrap a .pic {
        top: -70px;
        width: 60px;
        height: 60px;
        left: calc(50% - 30px);
    }
    .footer .main {
        padding: 30px 0;
    }
    .footer .main .right {
        width: 100%;
    }
    .footer .main .right h3 {
        font-size: 14px;    
    }
    .footer .main .right h2 {
        font-size: 25px;
    }
    .footer .main .right p {
        font-size: 12px;
        line-height: 24px;
    }
    .footer .foot {
        padding: 20px 0;
        font-size: 12px;
    }
    .footer .main .left {
        display: none;
    }
    .footer .foot .left a {
        margin-left: 0;
    }

    .banner  {
        margin-top: 90px;
        height: 240px;
    }
    .banner .mask {
        padding: 0 15px;
    }
    .banner .mask h2 {
        font-size: 25px;
    }
}</pre></body></html>