<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary-color: #003C88;
    --mask-color: #ced9e8;
    --gray: #969696;
    --special-color: #D8422A;
    --default-text-color: #303133;
    --gray-border: #efefef;
}

body {
    font-family: MicrosoftYaHei-Bold,MicrosoftYaHei;
    font-size: 0px;
    padding: 0px;
    margin: 0px;
    color: var(--default-text-color);
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: transparent
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .15);
    background: rgba(0, 0, 0, .15);
    border-radius: 4px
}

::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
    background: transparent
}

.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}
.clearfix:before{content:".";display:block;height:0;clear:both;visibility:hidden}

.text-cut {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.text-bold {
    font-weight: bold;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.mb-10 {
    margin-bottom: 10px;
}

.mt-10 {
    margin-top: 10px;
}

.mr-16 {
    margin-right: 16px;
}

ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

img.onerror {
    display: none !important;
}

a { 
    text-decoration: none;
    color: var(--default-text-color);
}

.flex-block {
    display: flex;
}

.flex-1 {
    flex: 1;
}

.hide {
    display: none !important;
}

/* 1. 页面主体结构 */
.main-section {
    min-height: 488px;
    background: url("../imgs/layout/bottom-center-moutain.png") 50% 100% no-repeat;
    position: relative;
    width: 100%;
}

.main-section .contents {
    width: 1400px;
    margin: 20px auto 0px;
    overflow: hidden;
}

/* 2. 新闻标头滑块效果 */
.title-block {
    border-bottom: 4px solid var(--gray-border);
    margin-bottom: 16px;
    display: flex;
    position: relative;
}

.title-block .title-li {
    font-size: 24px;
    font-weight: bold;
    margin: 0 12px;
    line-height: 50px;
    cursor: pointer;
}

.title-block .title-li.disable {
    /* color: var(--special-color); */
    cursor: default;

    margin: 0px;
    padding: 0px 12px
}

.title-block .title-li.title {
    background: var(--primary-color);
    color: #fff;
}

.default-cursor {
    cursor: default !important;
}

.title-block .title-li.cur {
    color: var(--primary-color);
}

.title-block .more {
    position: absolute;
    font-size: 20px;
    line-height: 50px;
    right: 0px;
}

.title-block .more a {
    color: var(--primary-color);
}

.title-block .ani {
    position: absolute;
    bottom: -4px;
    width: 0px;
    height: 4px;
    left: 0px;
    background-color: var(--primary-color);
    transition: all 0.5s;
}

.title-block .fixed-ani {
    position: absolute;
    bottom: -4px;
    width: 0px;
    height: 4px;
    left: 0px;
    background-color: var(--primary-color);
    transition: all 0.5s;
}

.title-block .ani::after, .title-block .ani::before {
    content: ' ';
    display: block;
    position: absolute;
    width: 0px;
    height: 0px;
    border-width: 4px;
    border-style: solid;
    border-color: var(--primary-color);
}

.title-block .ani::before {
    border-top-color: transparent;
    border-left-color: transparent;
    right: 50%;
    bottom: 100%;
}

.title-block .ani::after {
    border-top-color: transparent;
    border-right-color: transparent;
    left: 50%;
    bottom: 100%;
}

/* 3. 页面头 */
header {
    height: 150px;
    width: 100%;
    background: #2f63a0;
    background: url(../imgs/banner-top.jpg) 50% 100% no-repeat;
}

header .wrapper {
    height: 150px;
    margin: 0px auto;
    font-size: 16px;
    position: relative;
}

header .wrapper .logo {
    margin-top: 35px;
    width: 510px;
    height: 85px;
    object-fit: cover;
}

header .wrapper .search-area {
    position: absolute;
    right: 0px;
    top: 66px;
}

.mark-fix-container-v {
    position: fixed;
    right: 20px;    
    top: 240px;
    z-index: 999;
    transition: all .5s;
}

.mark-fix-container {
    position: fixed;
    right: -80px;    
    bottom: 20%;
    z-index: 999;
    transition: all .5s;
}

.mark-fix-container:hover {
    right: 10px;
}

nav {
    background: #7F9DC3;
    height: 50px;
    width: 100%;
}

nav .wrapper {
    margin-top: 0px;
}

.nav-list {
    display: flex;
}

.nav-list li {
    width: 200px;
}

.nav-list li.cur {
    background: #003C88;
}

.nav-list li a {
    font-size: 20px;
    color: #fff;
    display: block;
    width: 100%;
    text-align: center;
    line-height: 50px;
}

/* 8. 相关链接部分 */
.wrapper {
    width: 1400px;
    margin: 20px auto 0px;
    overflow: hidden;
}

.links .content {
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    align-items: center;
    width: 1400px;
}

.links .content a {
    font-family: MicrosoftYaHei;
    font-size: 20px;
    color: #565656;
    text-decoration: none;
    margin: 0 5px;
    line-height: 40px;
}

.links .content a:hover {
    color: var(--primary-color);    
}

/* 9. 版权部份 */
.copyright {
    margin-top: 40px;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copyright .row {
    display: flex;
    flex-direction: row;
    margin: 50px auto 0 auto;
    width: 1400px;
}

.copyright .row .icon {
    width: 538px;
    height: 90px;
    object-fit: contain;
    margin-top: 30px;
}

.copyright .row .contact {
    font-family: MicrosoftYaHei;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 42px;
    margin-left: auto;
}

.copyright .row .address {
    font-family: MicrosoftYaHei;
    font-size: 20px;
    color: #FFFFFF;
    margin-left: 40px;
    line-height: 42px;
    margin-right: 215px;
}

.copyright .qr {
    margin-left: auto;
    display: flex;
}

.copyright .qr .mr10 {
    margin-right: 40px;
}

.copyright .qr div {
    font-size: 12px;
    color: #fff;
    width: 150px;
}

.copyright .qr span {
    display: block;
    text-align: center;
    margin-top: 5px;
}

.copyright .qr img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.copyright .copyrightText {
    margin: 30px 0px 10px;
    font-size: 20px;
    color: #FFFFFF;
}</pre></body></html>