html,body{
    width:100%;
}
img{
    border:none;
}
body,div,h1,h2,h3,h4,h5,h6,a,input,form{
    text-decoration:none;
    margin:0;
    padding:0;
}
ul,li,dl,dt,dd{
    list-style:none;
    padding:0;
    margin:0;
}
h1{
    font-size:24px;
}
input{
    border:none;
}
a{
    cursor:pointer;
    color:black;
}
a:hover{
    color:#00489b;
}
body{
    font-size:16px;
    font-family:"微软雅黑","Microsoft YaHei";
    background: #F9F9F9;
}
.hidden{
    display:none;
}
.clear{
    clear:both;
}
.white{
    background: #ffffff;
}

.hide{
    display:none;   
}
.wrap {
    width:1400px;
    margin:0 auto;
}
.splitLine{
    border: 1px dashed #d0d0d0;
    margin: 16px 0;
}
.splitLine.h200 {
    height: 250px;
}
/*header*/
/* ========== 头部样式 ========== */
.header {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
	height:100px;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* 左侧 logo + 平台名称 */
.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo {
	background:url(../img/logo.png) no-repeat left;
	background-size: contain;
    height: 60px; /* 根据实际 logo 尺寸调整 */
    width: 590px;
}

/* 右侧导航 */
.header-nav ul {
    display: flex;
    gap: 1px;
}

.header-nav li {
    list-style: none;
}

.header-nav li a {
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

/* 首页激活样式 */
.header-nav li.active a {
    background-color: #0052C2;
    color: #ffffff;
    font-weight: 600;
	border-radius: 4px;
}

.header-nav li a:hover {
    color: #0052C2;
}
.nav {
    background:#fbc641;
    height:60px;
    text-align:center;
    line-height:60px;
    font-size:15px;
    margin:0 auto;
    width:100%;
}
.nav dd {
    float:left;
}
.nav dd.on {
    background:#ffb805;
}
.nav dd a {
    display:block;
    color:#00489b;
    width:170px;
    height:60px;
	font-weight: bold;
	font-size:20px;
}
.nav dd a:hover {
    background:#ffb805;
}

/*footer*/
.footer {
	clear: both;
    background: #0054C8;
    padding: 30px 0 20px;
    font-size: 14px;
	color: rgba(255, 255, 255, 0.60);
	height:250px;
}

.footer-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: normal;
    color: #fff;
}

.footer-section p {
    line-height: 15px;
}

/* 中间二维码 */
.footer-center {
    text-align: center;
}

.qrcode img {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto;
}

/* 底部版权栏 */
.footer-bottom {
    width: 100%;
	margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-records {
    display: flex;
    justify-content: center;
    gap: 40px;
}
/* ========== 主体内容样式 ========== */
.main-content {
    width: 100%;
    padding: 20px 0;
}

/* 顶部模块（动态+公告+登录） */
.top-module {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.top-left {
    width: calc(100% - 360px); /* 适配右侧340px + 20px间距 */
    display: flex;
}

.news-module {
    flex: 1;
    background: #fff;
    padding: 0 15px;
}

.module-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid #eee;
}

.module-title h3 {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin: 0;
    padding-left: 13px;
    background: url(../img/bullet-title.png) no-repeat left;
}

.module-title h3 span {
    font-size: 16px;
    color: #999;
    font-weight: normal;
    margin-left: 10px;
}

.more-btn {
    color: #999;
    text-decoration: none;
    padding-right: 15px;
}

.more-btn:hover {
    color: #0054C8;
}

.news-list {
    list-style: none;
    padding-right: 16px;
    margin: 0;
}

.news-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 45px;
    height: 45px;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list li a {
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    margin-right: 10px;
}

.news-list li a:hover {
    color: #0054C8;
}

.date {
    color: #999;
    white-space: nowrap;
}

/* 右侧登录区（统一340px宽度） */
.top-right {
    width: 340px;
}

.login-box {
    background: #fff;
    text-align: center;
    height: 284px;
}
.login-box a{
    display:block;
    width:170px;
    height:142px;
	float:left;
}
.link1{
    background:url(../img/link1.png) no-repeat;
}
.link2{
    background:url(../img/link2.png) no-repeat;
}
.link3{
    background:url(../img/link3.png) no-repeat;
}

/* 中间模块（采购+法规+信用） */
.middle-module {
    display: flex;
    justify-content: space-between;
}

.middle-left {
    width: calc(100% - 360px); /* 适配右侧340px + 20px间距 */
}

/* 右侧侧边模块（统一340px宽度） */
.middle-right {
    width: 340px;
}

/* 采购模块 */
.procurement-module {
    background: #fff;
    margin-bottom: 20px;
    height: 356px;
}

.tab-nav {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    height: 40px;
    line-height: 40px;
}

.tab-nav a {
    color: #333;
    text-decoration: none;
    margin-right: 15px;
    padding: 10px 8px;
}

.tab-nav a.tab-active {
    background-color: #0054C8;
    color: #fff;
}


.procurement-list {
    list-style: none;
    padding: 0 15px;
    margin: 0;
}

.procurement-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 40px;
    /* padding-left: 15px; */
}
.procurement-list li:before {
    content: ">";
    position: absolute;
    color: #0052C2;
}
.procurement-list li:last-child {
    border-bottom: none;
}

.procurement-list li a {
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    margin-left: 15px;
}

.procurement-list li a:hover {
    color: #0054C8;
}

/* 友情链接（独立模块） */
.links-module {
    width: 100%; /* 确保占满wrap宽度 */
}

.links-select {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
    background: #fff;
    padding: 20px 10px;
}

.links-select select {
    height: 36px;
    border: 1px solid #ddd;
    width: 260px;
    text-align: center;
}

/* 右侧侧边模块（政策法规/信用平台/联系我们） */
.side-module {
    background: #fff;
    padding: 0 15px;
    margin-bottom: 20px;
    height: 356px;
}

.side-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-list li {
    position: relative;
    padding-left: 15px;
    line-height: 42px;
}

.side-list li:last-child {
    border-bottom: none;
}

.side-list li:before {
    content: ">";
    position: absolute;
    left: 0;
    color: #0052C2;
}

.side-list li a {
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.side-list li a:hover {
    color: #0054C8;
}

/* 信用平台 */
.credit-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.credit-list a {
    display: block;
	height:60px;
	width:250px;;
}
.expert1{
    background:url(../img/expert1.png) no-repeat;
}
.expert2{
    background:url(../img/expert2.png) no-repeat;
}
.expert3{
    background:url(../img/expert3.png) no-repeat;
}
.credit-list img {
    width: 100%;
    height: auto;
}

/* 联系我们 */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 45px;
}

.contact-list li:last-child {
    border-bottom: none;
}





/*search*/
.isearch {
    height:40px;
    line-height:40px;
    margin-left:10px;
}
.search .input {
    float:left;
}
.search .input span {
    display:none;
}
.search .input input {
    height: 38px;
    line-height: 38px;
    width: 230px;
    padding-left: 30px;
    color: #999999;
    border-radius: 2px;
    border: 1px solid #DCDFE6;
    background: #FFF url(../img/text-search.png) 5px center no-repeat;
}
.search .submit {
    margin:0 0 0 0;
    text-align:center;
    float:left;
}
.search .submit input {
    height: 40px;
    width: 87px;
    border-left:none;
    background: #0052C2;
    color:#ffffff;
}
.search .submit input:hover {
    background:#2E75C7;
    cursor: pointer;
}
/*right*/
.lleft{
    margin-top:6px;
    width:300px;
    min-height:874px;
    float:left;
    margin-bottom: 20px;
}
.lright{
    margin-top: 26px;
    width:1085px;
    float:right;
    overflow:hidden;
    /* min-height: 784px; */
    margin-bottom:20px;
}
.cright{
    /* min-height:641px; */
    padding:20px;
}
/*left*/
.lleft dl dt{
    height:100px;
    line-height:100px;
    color:#fff;
    font-size:26px;
    font-weight:400;
    background:url(../img/list-bg.png) top no-repeat;
    text-align:center;
}
.lleft dl dd{
    overflow:hidden;
    height:46px;
    line-height:46px;
    text-align:center;
    font-size:18px;
    background:#fff;
    border:1px solid #DEDEDE;
}
.lleft dl dd.on{
    background:#f9f9f9; 
}
.lleft dl dd.on a{
    color:#3469CF;
}
.lleft dl dd a:hover{
    color:#3469CF;
}
/*search*/
.lleft .search{
    background:#fafafa;
    min-height:64px;
}
.lleft .search .input input{
    width:165px;
    *width:143px;
    border-color:#00489B;
}
.lleft .search .submit input{
    border-color:#e8e8e8;
}
.lleft .search .submit input:hover{
    background-color:#00489B;
}
/*right*/

.llist {
    width: 100%;
    padding: 30px;
    min-height: 724px;
    margin-top: 70px;
}
.llist.about{
    min-height: 0px;
    padding:0px 35px 0px 0px;
}
.llist dt{
    height:53px;
    line-height:53px;
    font-weight:bold;
    margin: 25px 0 50px 0;
    padding: 20px 0;
}
.llist dt span{
    margin-right:20px;
    font-size:13px;
    color:#7d7d7d;
}
.llist dt span a{
    color:#7d7d7d;
    font-weight: normal;
}
.llist dt span a:hover{
    color:#a02f85;
}
.llist dd {
    padding: 20px 0;
    border-bottom: 1px solid #EEEEEE;
}
.llist dd .date{
    color:#8d8d8d;
    float:right;
}

/* 去除最后一项的下边框 */
.llist dd:last-child {
    border-bottom: none;
}

/* 日期单元格 */
.date-cell {
    float: left;
    width: 100px;
    font-size: 16px;
    color: #0771BE;
    font-weight: 500;
    line-height: 1.5;
}

/* 内容单元格 */
.content-cell {
    margin-left: 120px;
    overflow: hidden;
}

/* 标题 */
.title {
    margin-bottom: 22px;
    line-height: 1.4;
    font-weight: 500;
}

/* 描述 */
.desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* 元信息行（公司标签 + 了解更多） */
.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 单位标签 */
.org-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #EEF2F8;
    font-size: 14px;
    border-radius: 4px;
}

/* 了解更多链接 */
.more-link {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
}

.more-link:hover {
    color: #0054C8;
}

.circle-icon {
    margin-left: 5px;
    font-size: 16px;
}
.lpage{
    height:80px;
    line-height:80px;
    text-align:center;
}
.lpage a[disabled="disabled"]{
    cursor:default;
    color:#7c7c7c;
}
/*content*/
.ctitle h1{
    line-height:40px;
    text-align:center;
}
.ctitle .info{
    text-align:center;
    padding:20px 0 20px 0;
    margin-bottom:20px;
    border-bottom:1px dashed #d2d2d2;
    font-size:12px;
    color:#8d8d8d;
}
.ctitle .info i{
    font-style:normal;
    margin:0 10px;
}
.ccontent{
    min-height: 600px;
    padding:0 20px;
}
.cattach{
    clear:both;
    margin:40px 0;
    border-bottom:1px dashed #d2d2d2;
}



/* 分页 */
.table.table-page {
    width: 100%;
    height: 30px;
}

.table.table-page .form-control{
    width: 97%;
    height: 30px;
    line-height: 30px;
    vertical-align: middle;
    background-color: rgb(255, 255, 255);
    background-image: none;
    border-width: 1px;
    border-style: solid;
    border-color: #E7ECF0;
    border-image: initial;
    text-align: center;
}

.btn {
    vertical-align: middle;
}
.btn.btn-page {
    height: 18px;
    width: 18px;
    border: 0px;
}
.btn.btn-page.btn-goto {
    background: url('../img/btn_goto.png') no-repeat center center;
    cursor: pointer;
}
.pageinfo.a-span {
    background: white;
    border: 1px solid #E7ECF0;
    border-radius: 2px;
    display: inline-block;
    font-size: 16px;
    height: 30px;
    line-height: 30px;
    margin-right: 5px;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    width: 36px;
    color: #666666;
}
.pageinfo.active span{
    border: 0;
    width: 36px;
    height: 30px;
    line-height: 30px;
    color:black;
    cursor: text;
    pointer-events: none;
    background: #0052C2;
    color: #fff;
    border: 1px solid #0052C2;
}
.pageinfo.page-button {
    border: 1px solid #E7ECF0;
    background: white;
    font-size: 14px;
	height:30px;
    width: 63px;
    vertical-align: middle;
	cursor:pointer;
}
.pageinfo.aspan {
    color:blue;
    transtion:0.5s;
}
.pageinfo.aspan :hover{
    border: 1px solid #0248A9;
    background: #0248A9;
    cursor:pointer;
    color: #fff;
}
.form-control{
    width: 97%;
    height: 40px;
    line-height: 40px;
    vertical-align: middle;
    background-color: rgb(255, 255, 255);
    background-image: none;
    text-indent: 2px;
    padding-right: 2px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(204, 204, 204);
    border-image: initial;
}





/* ====================== 全文检索详情列表页 严格匹配图片样式 ====================== */
/* 搜索容器整体 */
.qsearch {
    width: 100%;
    margin-bottom: 20px;
}
/* 列表项 - 严格匹配图片结构 */
.qsearch .llist dd {
    display: block;
    padding: 25px 0;
    border-bottom: 2px dashed #EEEEEE;
    margin: 0;
}

/* 最后一项取消虚线 */
.qsearch .llist dd:last-child {
    border-bottom: none;
}

/* 标题行容器 */
.qsearch .title-row {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 15px;
}

/* 标题文字 - 严格匹配图片 */
.qsearch .title-row a {
    text-decoration: none;
    line-height: 1.4;
    flex: 1;
}

/* 标题hover效果 */
.qsearch .title-row a:hover {
    color: #0052C2;
}

/* 关键词高亮 - 红色加粗 */
.qsearch .title-row a span {
    color: #E61212;
}

/* 单位标签 - 浅蓝背景+蓝色文字 */
.qsearch .org-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #E8F3FF;
    color: #0052C2;
    font-size: 14px;
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* 摘要文字 - 灰色小字号 */
.qsearch .desc-text {
    color: #999!important;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* 发布时间行 */
.qsearch .time-row {
    color: #999999;
    font-size: 16px;
    line-height: 1.5;
}

.qsearch .time-row strong {
    font-weight: 400;
    margin-right: 10px;
    color: #333;
}
