﻿@charset "utf-8";
/* CSS Document */
* {
	margin: 0px;
	padding: 0px;
}
html {
    /* 强制垂直滚动条始终存在，以统一所有页面的可用宽度 */
    overflow-y: scroll; 
}
body {
	width: 100%;
  /* max-width: 996px; */
  height: auto;
  display: block;
  margin: 0 auto;font-family: 微软雅黑;
	font-size: 14px;
	color: #183E65;
	line-height: 28px;
	background-color: #FFFFFF;
	background-image: url("#");
	background-repeat: no-repeat;
	background-position: center top;
	padding-top: 0px;
}
#box {
	width: auto;
	height: auto;
	overflow: hidden;
	margin: 0px auto;
}
#news-title {
	width: auto;
	height: 80px;
	background-image: url(../images/news-bg-channel.png);
	background-repeat: no-repeat;   
        background-size: 972px auto; /* 控制背景图尺寸，例如：宽度972px, 高度150px */
	padding-top: 73px;
	margin-top: 7px; /* 顶部边距 */
	margin-bottom: 0px; /* 底部边距 */
}

#news-search1 {
	width: auto;
	height: 10px;
	margin: 0px auto;
	background-color: #FFFFFF;
	padding: 15px 20px;
	text-align: right;
	color: #333;
	line-height: 30px;
	font-weight: bold;
         
}
#search_text1 {
	width: 152px;
	height: 28px;
	border: solid 1px #CCC;
	margin-right: 15px;
        margin-left: 15px;
	margin-top: 1px;
	padding: 0px 5px;
}
#sbtn1 {
	width: 80px;
	height: 28px;
	border: solid 1px #ffffff;
	background-color: #255390;
	font-weight: bold;
	line-height: 28px;
	color: #ffffff;
}
#news-main {
	width: auto;
	height: auto;
	overflow: hidden;
	background-image: url(#);
	background-repeat: repeat-y;
	padding: 0px 45px;
        float: center;
}
#left {
	width: 360px;
	height: auto;
	overflow: hidden;
	float: left;
	background-image: url(../images/left01.jpg);   
        background-size: 291px auto; /* 控制背景图尺寸，例如：宽度291px, 高度auto */
	background-repeat: no-repeat;
	padding-top: 100px;
}
#left-main {
	height: auto;
	overflow: hidden;
	background-image: url(#);
	background-repeat: repeat-y;
	padding: 20px 30px;
}
#left-main li {
	list-style-position: inside;
	font-size: 16px;
	line-height: 35px;
	border-bottom: dashed 1px #D4D4D4;
}
.xwglbtn {
	text-align: center;
	padding-top: 15px;
}
#left-bottom {
	height: 50px;
	background-image: url(#);
	background-repeat: no-repeat;
}
#right {
	width: auto;
	height: auto;
	overflow: hidden;
	margin-left: 30px;
	float: center;
}
#righte {
	width: 752px;
	height: auto;
	overflow: hidden;
	margin-left: 30px;
	float: left;
}

#title {
	display: flex;
	justify-content: space-between;
	align-items: center; /* 确保整个标题栏内部元素居中对齐 */
	width: auto;
	height: 36px;
	background: linear-gradient(to right, #025390, #fff);
	border: solid 0px #F3F3F1;
	color: #FFF;
	line-height: 37px;
	font-weight: bold;
	padding: 2px 2px;
	margin-bottom: 10px;
}

/* 这是一个新的CSS类，用于包裹需要垂直居中的文字和图片 */
.flex-group {
    display: flex;
    align-items: center;
}

/*
 * 新闻列表容器样式
 * --------------------------------------------------
 * 该容器用于包裹整个新闻列表，并控制其基本尺寸和文本属性。
 */
#news-list {
  width: auto;
  height: auto;
  overflow: hidden;
  line-height: 30px;
  color: #333;
}

/*
 * 新闻列表行容器样式
 * --------------------------------------------------
 * dl 元素作为每一行新闻的 Flexbox 容器，实现 dt 和 dd 的左右对齐。
 */
#news-list dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  position: relative;
}

/*
 * 虚线下划线伪元素
 * --------------------------------------------------
 * 使用 ::after 伪元素创建一条贯穿整行的虚线下划线，位于文字下方。
 */
#news-list dl::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px dashed #CCC;
}

/*
 * 新闻标题 (dt) 样式
 * --------------------------------------------------
 * 控制新闻标题的布局、背景图标和字体样式。
 */
#news-list dt {
  float: none;
  border-bottom: none;
  font-size: 13.7px;
  color: #333;
  padding-left: 25px;
  background: url(../images/biao.svg) no-repeat 5px center;
  background-size: 16px 16px; /* 20250913@Rekyland: Sets the background image to 16px by 16px */
}

/*
 * 新闻日期 (dd) 样式
 * --------------------------------------------------
 * 控制新闻日期的布局和字体样式。
 */
#news-list dd {
  float: none;
  border-bottom: none;
  font-size: 13.7px;
  color: #999;
  text-align: right;
}

/*
 * 无新闻提示容器样式
 * --------------------------------------------------
 * no-news 容器在没有新闻内容时显示。
 */
#no-news {
  width: auto;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #333;
  background-color: #F3F3F1;
}
#bar {
	height: 30px;
	background-color: #F3F3F1;
	line-height: 30px;
	text-align: center;
	color: #333;
	font-size: 15px;
	margin-top: 25px;
        
}
#news-bottom {
	width: 100%;
	height: 27px;
	background-image: url(#);
	background-repeat: no-repeat;
}
#bottom {
	width: 1200px;
	margin: 0px auto;
	font-size: 12px;
	color:#333;
	line-height: 30px;
	text-align: right;
}
#n-title {
	width: 1158px;
	font-size: 23px;
	font-weight: bold;
	line-height: 45px;
	border-bottom: solid 1px #F3F3F1;
	color: #840709;
	text-align: center;
}
#n-time {
	width: 1152px;
	color: #999;
	text-align: right;
	margin-bottom: 10px;
}
#n-text {
	width: 1152px;
	height: auto;
	overflow: hidden;
	font-size: 16px;
	color: #333;
	line-height: 30px;
}
#n-text p {
	text-indent: 32px;
}
#n-text img {
	max-width: 880px;
}

#news-search img {
	margin-left: 15px;
}
#title1 {
	font-size: 24px;
	font-weight: bold;
	line-height: 45px;
	border-bottom: solid 1px #F3F3F1;
	color: #017CC0;
	text-align: center;
}
#main {
	height: auto;
	overflow: hidden;
	color: #333;
	line-height: 30px;
	margin-top: 15px;
}
#main li {
	list-style-type: none;
	padding: 5px;
	border-bottom: dashed 1px #CCC;
}
.input01 {
	width: 250px;
	height: 30px;
	border: solid 1px #CCC;
	padding: 0px 5px;
	vertical-align: middle;
}
.input02 {
	width: 160px;
	height: 30px;
	border: solid 1px #CCC;
	padding-left: 5px;
	vertical-align: middle;
}
.input03 {
	width: 752px;
	height: auto;
	padding: 0px 5px;
	line-height: 30px;
	vertical-align: top;
}
#btn {
	margin-right: 20px;
	margin-left: 180px;
	margin-top: 15px;
}
a:link,a:visited {
	color: #255390;
	text-decoration: none;
}
a:hover,a:active {
	color: #9E0608;
	text-decoration: none;
}

.link01:link,.link01:visited {
	color: #255390;
	text-decoration: none;
}
.link01:hover,.link01:active {
	color: #183E65;
	text-decoration: underline;
}
.link02:link,.link02:visited {
	color: #FF0000;
	text-decoration: underline;
}
.link02:hover,.link02:active {
	color: #AD0002;
	text-decoration: none;
}
.btn01 {
	width: 80px;
	height: 28px;
	border: solid 1px #FF6600;
	background-color: #FEC901;
	font-weight: bold;
	line-height: 28px;
	color: #76520C;
	margin-right: 20px;
	margin-left: 180px;
	margin-top: 15px;
}

.btn02 {
	width: 80px;
	height: 28px;
	border: solid 1px #4c4c4c;
	background-color: #8a8a8a;
	font-weight: bold;
	line-height: 28px;
	color: #FFFFFF;
}
.font02 {
	font-size: 18px;
	color: #FF0000;
}