@charset "utf-8";


@font-face {
    font-family: "iconfont";
    src: url('../fonts/iconfont.woff2?t=1749703448781') format('woff2'),
    url('../fonts/iconfont.woff?t=1749703448781') format('woff'),
    url('../fonts/iconfont.ttf?t=1749703448781') format('truetype');
}

.iconfont {
    font-family: "iconfont", serif !important;
    font-size: 32px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-dandu:before {
    content: "\e609";
}

.icon-saner:before {
    content: "\e608";
}

.icon-benke:before {
    content: "\e607";
}

.icon-zuanke:before {
    content: "\e606";
}

.icon-lqjz:before {
    content: "\e605";
}

.icon-lqcx:before {
    content: "\e604";
}

.icon-lnfs:before {
    content: "\e603";
}

.icon-zsjh:before {
    content: "\e602";
}

/* 定义全局变量 */
:root {
    --primary-color: #0066cc;
    --secondary-color: #ff9400;
    --text-color: #333;
    --light-text-color: #afafaf;
    --border-color: #e1e1e1;
    --background-color: #f3f3f3;
}

/* 通用样式 */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-size: 12px;
    font-family: "Microsoft YaHei", sans-serif;
    line-height: 1.5;
    color: var(--text-color);
    height: auto;
    margin: 120px auto 0;
    min-width: 1000px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* 清除浮动 */
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

/* 浮动类 */
.fl {
    float: left;
}

.fr {
    float: right;
}

li {
    list-style: none;
}

img {
    border: none;
    max-width: 100%;
    height: auto;
}

/* Header 样式 */
header {
    height: 120px;
    background: var(--primary-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-container {
    width: 1000px;
    height: 80px;
    margin: 0 auto;
}

.logo {
    width: 440px;
    height: 56px;
    margin-top: 15px;
}

.search-box {
    width: 245px;
    height: 35px;
    background: url(../images/ssbg.png) no-repeat;
    display: block;
    margin-top: 25px;
    margin-right: 25px;
}

.search {
    border: none;
    height: 35px;
    line-height: 35px;
    outline: none;
    width: 160px;
    margin-left: 20px;
    background: none;
    font-size: 14px;
    vertical-align: middle;
    color: #fff;
}

/* 设置搜索placeholder的颜色*/
.search::placeholder { /* 标准语法 */
    color: #e1e1e1;
    opacity: 1;
}

.search-btn {
    border: none;
    outline: none;
}

/* nav 样式 */
nav {
    font-size: 16px;
    color: #fff;
    width: 980px;
    height: 40px;
    line-height: 40px;
    margin: 0 auto;
    padding-left: 15px;
}

nav ul li {
    position: relative;
    display: inline-block;
    float: left !important;
    padding: 0 20px;
}

nav ul li a {
    display: block;
    height: 38px;
    text-align: center;
    font-size: 15px;
    padding: 0 11px;
    border-bottom: solid 2px #006cc9;
}

nav ul li a.active {
    border-bottom: 2px solid var(--secondary-color);
}

.sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    width: 152px;
    background-color: var(--primary-color);
    transition: all 0.5s ease;
    z-index: 10;
}

nav ul li:hover .sub-menu {
    visibility: visible;
    opacity: 0.8;
}

.sub-menu li {
    width: 152px;
    padding: 0;
    position: relative;
}

nav ul li:hover .sub-menu {
    visibility: visible;
    opacity: 0.8; /* 鼠标悬停时透明度变为 1，即显示 */
}

.sub-menu li a {
    color: #fff;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
    width: 152px;
    height: 35px;
    background: #006cc9;
    text-align: center;
    line-height: 40px;
}

/*Banner 样式*/
.banner {
    height: 320px;
    background: url(../images/bannerbg.jpeg) repeat-x center -20px;
    text-align: center;
    z-index: 1;
    min-width: 1000px;
}

.banner img {
    display: inline-block;
    width: 1000px;
    height: 300px;
    position: relative;
}

/* 快速链接样式 */
.quick-links {
    width: 1000px;
    height: 60px;
    margin: 0 auto 20px;
}

.link-item {
    width: 220px;
    height: 60px;
    float: left;
    margin-right: 40px;
    position: relative;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.link-item a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.link-item.purple {
    background: #9b59b6;
}

.link-item.blue {
    background: #3498db;
}

.link-item.green {
    background: #2ecc71;
}

.link-item.teal {
    background: #1abc9c;
}

.link-item.orange {
    background: #e67e22;
}

/* 内容区域样式 */
.content-one,
.content-two,
.content-three {
    width: 1000px;
    margin: 15px auto 0;
    height: 333px;
}

.content-three {
    height: 150px;
}

.left-sidebar,
.right-sidebar {
    width: 220px;
}

.left-sidebar {
    margin-right: 30px;
}

.main-content {
    width: 500px;
}

.section {
    background: var(--background-color);
    border-left: solid 5px #acadad;
    height: 70px;
    line-height: 70px;
    margin-bottom: 10px;
}

.section a {
    padding-left: 20px;
    display: flex;
    gap: 8px;
    width: 100%;
    height: 100%;
    font-size: 18px;
}

.section-header {
    height: 38px;
    border-top: solid 3px var(--secondary-color);
}

.section-header h3 {
    margin-left: 8px;
    font-size: 18px;
    color: #000;
    font-weight: bold;
    line-height: 30px;
    padding-top: 8px;
}

.more {
    padding-top: 18px;
    font-size: 12px;
    color: #646464;
}

/* 新闻列表样式 */
.news-list {
    margin-top: 5px;
}

.news-list li {
    padding: 5px 0;
    height: auto;
    line-height: 28px;
    border-bottom: dashed 1px #e1e1e1;
    display: flex;
    align-items: center;
}

.news-list li .date {
    font-size: 14px;
    color: var(--light-text-color);
    margin-left: 10px;
    flex-shrink: 0;
}

.news-list li a {
    flex: 1;
    font-size: 14px;
    color: #000000;
    border-left: 2px solid #004898;
    padding-left: 8px;
    white-space: nowrap; /* 禁止文字换行 */
    overflow: hidden; /* 隐藏溢出内容 */
    text-overflow: ellipsis; /* 溢出内容用省略号表示 */
}

.news-list li a:hover {
    color: #0066cc;
}

/* 引导框样式 */
.guide-box {
    width: 220px;
    height: 151px;
    margin-bottom: 11px;
}

.guide-box a {
    display: block; /* 设置为块级元素 */
    width: 100%;
    height: 100%;
}

.content-two {
    background: url(../images/news_four.jpg) no-repeat center;
    background-size: 100% 100%;
}

.major-list {
    margin: 12px 0 28px;
}

.major-list li {
    width: 200px;
    float: left;
    padding-left: 17px;
    background: url(../images/dt.png) no-repeat left center;
    height: 35px;
    line-height: 35px;
}

.major-list li a {
    font-size: 14px;
    color: #000000;
}

footer {
    height: 200px;
    background: var(--primary-color);
    width: 100%;
    z-index: 1000;
}

.footer-container {
    width: 1000px;
    height: 180px;
    margin: 0 auto;
    padding-top: 25px;
}

.footer-logo {
    float: left;
    margin-left: 120px;
    margin-top: 15px;
    margin-right: 100px;
    width: 120px;
}

.footer-content {
    float: left;
    line-height: 28px;
    color: #FFFFFF;
    font-size: 14px;
}

main {
    width: 1000px;
    margin: 0 auto 0;
    /*background: #fafafa;*/
    min-height: 600px;
}

.n_leftbg {
    width: 200px;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(247, 247, 247, 1), rgba(247, 247, 247, 0.5));
}

.list-nav {
    float: left;
    width: 200px;
    position: relative;
    z-index: 2;
}

.list-nav h5 {
    background: var(--primary-color);
    padding: 0 15px;
}

.list-nav h5 i {
    display: block;
    font-style: normal;
    font-size: 20px;
    font-weight: normal;
    color: #fff;
    line-height: 70px;
    height: 70px;
    background: url(../images/list-nav01.png) no-repeat right center;
}

.list-nav ul {
    background: #f7f7f7;
}

.list-nav li {
    padding: 0 10px;
}

.list-nav li:hover a {
    color: var(--primary-color);
}

.list-nav li > a {
    font-size: 16px;
    color: #323232;
    display: block;
    line-height: 50px;
    height: 50px;
    border-bottom: 1px solid #e8e8e8;
    background: url(../images/list-nav02.png) no-repeat right center;
}

.list-nav .on {
    color: var(--primary-color);
}

.list-r {
    float: right;
    width: 780px;
    box-sizing: border-box;
}

.position {
    overflow: hidden;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);;
    margin-bottom: 18px;
}

.position p {
    padding-left: 18px;
    font-size: 12px;
    color: #999999;
    background: url(../images/position.png) no-repeat left center;
    line-height: 16px;
}

.position p a {
    color: #999999;
    padding: 0 5px;
    transition: 0.6s all;
}

.list ul {
    margin-top: -10px;
}

.list li a {
    transition: 0.6s all;
    display: block;
    position: relative;
    padding: 6px 15px 6px 15px;
    border-bottom: 1px solid #e9e9e9;
    height: 70px;
    overflow: hidden;
}

.list li:hover a {
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.14);
    background: #fff;
    transition: 0.6s all;
}

.list li:hover .year {
    color: #b9c5de;
}

.list li:hover .day {
    color: #fff;
}

.list li:hover p {
    color: var(--primary-color);;
    transition: 0.6s all;
}

.list li:hover .time {
    background: var(--primary-color);;
}

.list li .time {
    transition: 0.6s all;
    position: relative;
    float: left;
    width: 70px;
    height: 55px;
    padding: 5px 10px;
    background: #f3f3f3;
    border-radius: 5px;
}

.list li .day {
    font-size: 16px;
    color: #333333;
    margin-bottom: 2px;
}

.list li .year {
    font-size: 12px;
    color: #999999;
}

.list li p {
    transition: 0.6s all;
    line-height: 30px;
    height: 26px;
    font-size: 18px;
    color: #333333;
    margin-left: 90px;
}

.page {
    font-size: 12px;
    font-family: SimSun, serif;
    line-height: 12px;
    color: #222;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.page .p_fun a, .page .p_no a {
    color: #222;
}

.page .p_fun_d, .page .p_no_d, .page .p_no_o, .page .p_fun a, .page .p_no a {
    border: 1px solid #ccc;
    padding: 5px 8px;
    margin: 0px 0px 0px 5px;
    height: 24px;
    line-height: 12px;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
}

.page .p_no_d {
    border: 1px solid #258CFF;
    color: #fff;
    background-color: #258CFF;
}

.page .p_fun_d, .page .p_no_d, .page .p_no_o {
    color: #ccc;
}

.show-title {
    padding-bottom: 10px;
    border-bottom: 1px solid #e3e3e3;
    margin-bottom: 10px;
}

.show-title h5 {
    font-size: 22px;
    line-height: 30px;
    color: #323232;
    font-weight: normal;
    text-align: center;
    margin-bottom: 10px;
}

.show-title p {
    font-size: 14px;
    color: #999999;
    display: table;
    margin: 0 auto;
}

.show-title p i {
    font-style: normal;
    padding-left: 22px;
    background: url(../images/show01.png) no-repeat left center;
    margin: 0 10px;
}

.show-title p i + i {
    background: url(../images/show02.png) no-repeat left center;
}
.show-content {
    min-height: 500px;
    height: auto;
}
.show-more {
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid #e3e3e3;
}
.show-more p {
    margin: 15px 0;
    font-size: 16px;
    color: #323232;
    line-height: 20px;
}
.show-attachment{
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid #e3e3e3;
}
.show-attachment h5 {
    margin: 15px 0;
    font-size: 22px;
    color: #323232;
    line-height: 20px;
}
.show-attachment li {
    font-size: 16px;
    color: #323232;
    line-height: 20px;
    margin: 15px 0 15px 20px;
}
/*@media screen and (min-width: 1800px) {*/
/*    html {*/
/*        !* 页面放大 2 倍 *!*/
/*        transform: scale(1.5) !important;*/
/*        !* 设置缩放原点为页面左上角 *!*/
/*        transform-origin: 0 0 !important;*/
/*        !* 强制页面宽度为 50%，避免横向滚动条 *!*/
/*        width: 66.66% !important;*/
/*    }*/
/*}*/

/*@media screen and (min-width: 2500px) {*/
/*    html {*/
/*        transform: scale(2) !important;*/
/*        transform-origin: 0 0 !important;*/
/*        width: 50% !important;*/
/*    }*/
/*}*/