@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Microsoft YaHei", Arial, sans-serif;
	font-size: 14px;
	color: #333;
	background: #f5f7fa;
	line-height: 1.6;
}

.container {
	width: 100%;
	min-width: 1200px;
}

.wrap {
	width: 1200px;
	margin: 0 auto;
}

/* ========== Header 样式 ========== */
#header {
	background: #fff;
}

.header-top {
	height: 150px;
	display: flex;
	align-items: center;
}

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

.logo-area {
	display: flex;
	align-items: center;
	gap: 12px;
}

.logo-area img {
	height: 76px;
}

.logo-text {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: 17px;
}

.logo-text h1 {
	font-size: 28px;
	color: #B02922;
	font-weight: bold;
	margin: 0;
	line-height: 1.2;
}

.logo-text .divider {
	width: 2px;
	height: 54px;
	background: radial-gradient(circle at center, #B02922, #fff);
}

.logo-text p {
	font-size: 37px;
	color: #B02922;
	font-weight: bold;
	margin: 0px 0 0 16px;
	line-height: 1.2;
	letter-spacing: 9px;
}

.search-box {
	display: flex;
	align-items: center;
}

.search-box input {
	width: 200px;
	height: 36px;
	padding: 0 15px;
	border: 1px solid #ddd;
	border-radius: 18px 0 0 18px;
	outline: none;
	font-size: 13px;
	background: #fff;
}

.search-box button {
	width: 40px;
	height: 36px;
	background: #fff;
	border: 1px solid #ddd;
	border-left: none;
	border-radius: 0 18px 18px 0;
	cursor: pointer;
	color: #999;
	font-size: 14px;
}

.search-box button:hover {
	color: #B02922;
}

.header-nav {
	background: #B02922;
	line-height: 50px;
	position: relative;
	z-index: 1;
}

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

.nav-menu {
	display: flex;
	line-height: 50px;
	font-size: 16px;
}

.nav-menu > a,
.nav-menu > .item > a {
	display: block;
	color: #fff;
	padding: 0 22px;
	text-decoration: none;
	transition: all 0.3s;
	font-size: 16px;
}

.nav-menu > a:hover,
.nav-menu > .item:hover > a,
.nav-menu > a.active {
	background: rgba(255,255,255,0.2);
	text-decoration: none;
}

.nav-menu > .item {
	display: inline-block;
	padding: 0 12px;
	position: relative;
	float: left;
}

.nav-menu > .item .dropdown-menu {
	background-color: #B02922;
	width: 150px;
	position: absolute;
	top: 50px;
	left: 50%;
	margin-left: -75px;
	display: none;
	line-height: 45px;
	z-index: 999;
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.nav-menu > .item .dropdown-menu a {
	color: white;
	font-size: 14px;
	height: 45px;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	display: block;
	vertical-align: middle;
	text-align: center;
	line-height: 45px;
	transition: all 0.3s;
}

.nav-menu > .item .dropdown-menu a:hover {
	background-color: rgba(255, 255, 255, 0.2);
	color: white;
	text-decoration: none;
}

.nav-menu > .item:hover .dropdown-menu {
	display: block;
}

.search {
	border: 1px solid #fff;
	overflow: hidden;
	position: relative;
	top: 0;
	right: 0;
	border-radius: 17px;
	height: 32px;
	display: flex;
	align-items: center;
}

.search > input {
	display: block;
	width: 169px;
	line-height: 30px;
	height: 30px;
	font-size: 13px;
	color: #fff;
	padding: 0 10px;
	background: none;
	border: 0;
	float: left;
	outline: none;
}

.search > input::placeholder {
	color: rgba(255,255,255,0.7);
}

.search > button {
	display: block;
	width: 32px;
	line-height: 30px;
	height: 30px;
	font-size: 14px;
	color: #fff;
	background: none;
	border: 0;
	float: left;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s;
}

.search > button:hover {
	background: rgba(255,255,255,0.2);
}

/* ========== Banner 样式 ========== */
.banner-section {
	width: 100%;
	height: 420px;
	overflow: hidden;
}

.banner-section {
	width: 100% !important;
}

.banner-section .slideBox {
	height: 420px !important;
	width: 100% !important;
}

.banner-section .slideBox ul.items {
	width: auto !important;
}

.banner-section .slideBox ul.items li {
	width: 100% !important;
}

.banner-section .slideBox ul.items li a {
	width: 100% !important;
	display: block !important;
}

.banner-section .slideBox ul.items li a img {
	width: 100% !important;
	height: 420px !important;
	object-fit: cover !important;
	display: block !important;
}

/* ========== Content Section 样式 ========== */
.content-section {
	padding: 20px 0;
	background: #f5f7fa;
}

.main-content {
	display: flex;
	gap: 10px;
}

.left-column {
	width: 290px;
	flex-shrink: 0;
	margin-top: 10px;
}

.center-column {
	width: 640px;
	flex: 1;
	margin-top: 10px;

}

.right-column {
	width: 290px;
	flex-shrink: 0;
	margin-top: 10px;
}

/* ========== Module Box 样式 ========== */
.module-box {
	background: #fff;
	border-radius: 4px;
	margin-bottom: 15px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.module-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	border-bottom: 2px solid #f0f0f0;
}

.module-header .title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: bold;
	color: #333;
}

.module-header .title i,
.module-header .title .module-icon {
	color: #B02922;
	font-size: 18px;
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.module-header .more {
	color: #999;
	text-decoration: none;
	font-size: 13px;
	transition: color 0.3s;
}

.module-header .more:hover {
	color: #B02922;
}

.module-body {
	padding: 15px 20px;
}

/* ========== News List 样式 ========== */
.news-list {
	list-style: none;
}

.news-list li {
	padding: 12px 0;
	display: flex;
	align-items: center;
	gap: 15px;
	border-bottom: 1px dashed #e8e8e8;
}

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

.news-list li .date-badge {
	background: #C62828;
	color: #fff;
	padding: 8px 12px;
	border-radius: 4px;
	font-size: 12px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 60px;
}

.news-list li .date-badge .day {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.2;
}

.news-list li .date-badge .month {
	font-size: 11px;
	line-height: 1.2;
	opacity: 0.9;
}

.news-list li a {
	color: #333;
	text-decoration: none;
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color 0.3s;
}

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

/* ========== Link List 样式 ========== */
.link-list {
	list-style: none;
}

.link-list li {
	padding: 10px 0;
	border-bottom: 1px dashed #e8e8e8;
}

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

.link-list li a {
	color: #666;
	text-decoration: none;
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: color 0.3s;
}

.link-list li a i {
	color: #B02922;
	font-size: 12px;
}

.link-list li a:hover {
	color: #B02922;
}

/* ========== Procurement Box 样式 ========== */
.procurement-box {
	background: #fff;
	border-radius: 4px;
	margin-bottom: 15px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.procurement-tabs {
	border-bottom: 2px solid #B02922;
}

.tab-header {
	display: inline-block;
	padding: 15px 20px;
	font-size: 16px;
	font-weight: bold;
	color: #333;
}

.tab-header i {
	color: #B02922;
	margin-right: 8px;
}

.tab-nav {
	display: inline-block;
	padding: 15px 0;
}

.tab-nav a {
	color: #666;
	text-decoration: none;
	padding: 0 15px;
	font-size: 14px;
	border-right: 1px solid #e8e8e8;
	display: inline-block;
	transition: color 0.3s;
}

.tab-nav a:last-child {
	border-right: none;
}

.tab-nav a.active {
	color: #B02922;
	font-weight: bold;
}

.tab-nav a.more {
	color: #999;
	font-size: 13px;
}

.tab-content {
	padding: 15px 20px;
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
}

.procurement-list {
	list-style: none;
}

.procurement-list li {
	padding: 12px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px dashed #e8e8e8;
}

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

.procurement-list li a {
	color: #333;
	text-decoration: none;
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-right: 15px;
	transition: color 0.3s;
}

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

.procurement-list li .date {
	color: #999;
	font-size: 13px;
	flex-shrink: 0;
}

/* ========== Entrance Box 样式 ========== */
.entrance-box {
	margin-bottom: 15px;
}

.entrance-item {
	display: flex;
	align-items: center;
	padding: 18px 20px;
	margin-bottom: 20px;
	height: 100px;
	margin-top: 2px;
	border-radius: 6px;
	text-decoration: none;
	color: #fff !important;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
	position: relative;
}

.entrance-item .icon-wrapper {
	width: 50px;
	height: 50px;
	background: rgba(255,255,255,0.95);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	flex-shrink: 0;
}

.entrance-item .icon-wrapper i,
.entrance-item .icon-wrapper img {
	font-size: 50px;
	width: 55px;
	height: 55px;
	object-fit: contain;
}

.entrance-red .icon-wrapper i {
	color: #E53935;
}

.entrance-orange .icon-wrapper i {
	color: #F57C00;
}

.entrance-blue .icon-wrapper i {
	color: #1976D2;
}

.entrance-item span {
	flex: 1;
}

.entrance-item .arrow {
	font-size: 20px;
	opacity: 0.9;
}

.entrance-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.entrance-red {
	background: url(../images/img-cg1.png) 0 0 no-repeat;
}

.entrance-orange {
	background: url(../images/img-gys2.png) 0 0 no-repeat;
}

.entrance-blue {
	background: url(../images/img-zc3.png) 0 0 no-repeat;
}

/* ========== Calendar Box 样式 ========== */
.calendar-box {
	background: #fff;
	border-radius: 4px;
	margin-bottom: 15px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	overflow: hidden;
}

.calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background: #f8f9fa;
	border-bottom: 2px solid #B02922;
}

.calendar-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: bold;
	color: #333;
}

.calendar-title i {
	color: #B02922;
}

.calendar-tag {
	background: #B02922;
	color: #fff;
	padding: 3px 10px;
	border-radius: 3px;
	font-size: 12px;
}

#calendar {
	/*padding: 7px;*/
}

/* ========== Footer 样式 ========== */
#footer {
	background: #2c3e50;
	color: #fff;
	padding: 30px 0;
	margin-top: 30px;
}

.footer-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.footer-logo img {
	height: 50px;
}

.footer-links {
	flex: 1;
}

.link-column h4 {
	color: #fff;
	font-size: 16px;
	margin-bottom: 15px;
}

.link-column ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.link-column ul li a {
	color: #bdc3c7;
	text-decoration: none;
	font-size: 13px;
	transition: color 0.3s;
}

.link-column ul li a:hover {
	color: #fff;
}

.footer-info h4 {
	color: #fff;
	font-size: 16px;
	margin-bottom: 10px;
}

.footer-info p {
	color: #95a5a6;
	font-size: 13px;
	margin: 5px 0;
	line-height: 1.8;
}

/* ========== News Page 样式 ========== */
.news-container {
	background: #fff;
	padding: 30px;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.news-header {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 2px solid #B02922;
}

.news-header h2 {
	font-size: 24px;
	color: #333;
}

.news-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px dashed #e8e8e8;
}

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

.news-info a {
	color: #333;
	text-decoration: none;
	font-size: 15px;
	transition: color 0.3s;
}

.news-info a:hover {
	color: #B02922;
}

.news-date {
	color: #999;
	font-size: 13px;
	flex-shrink: 0;
	margin-left: 20px;
}

/* ========== Detail Page 样式 ========== */
.detail-container {
	background: #fff;
	padding: 40px;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.detail-header {
	padding-bottom: 20px;
	margin-bottom: 30px;
	border-bottom: 2px solid #f0f0f0;
}

.detail-header h2 {
	font-size: 26px;
	color: #333;
	margin-bottom: 15px;
	line-height: 1.4;
}

.detail-meta {
	display: flex;
	gap: 30px;
	color: #999;
	font-size: 14px;
}

.detail-content {
	font-size: 15px;
	line-height: 1.8;
	color: #333;
}

.detail-content img {
	max-width: 100%;
	height: auto;
	margin: 20px 0;
}

/* ========== xmcu 风格样式 ========== */
.shadow {
	background: #fff;
	box-shadow: 0 1px 7px rgba(0,0,0,0.04);
}

.title-cur {
	line-height: 30px;
	border-bottom: 1px solid #f2f2f2;
	position: relative;
	background: #F6F6F6;
}

.title-cur h2 {
	width: 180px;
	line-height: 44px;
	font-size: 16px;
	color: #444;
	font-weight: 600;
}

.title-cur img {
	float: left;
	position: relative;
	top: 10px;
	margin: 0 10px 0 0;
}

.titlcur {
	padding: 0px 14px;
}

.tab-title {
	line-height: 44px;
	font-size: 16px;
	font-weight: 200;
}

.tab-title li {
	display: block;
	float: left;
	position: relative;
	margin-left: 20px;
}

.tab-title a {
	display: block;
	margin-right: 18px;
	color: rgba(0,0,0,0.60);
	position: relative;
	font-weight: 600;
}

.tab-title a.active {
	color: #BE1507;
}

.tab-title a.active:after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background: #BE1507;
	position: absolute;
	left: 0;
	bottom: -1px;
}

.tab-title div {
	display: block;
	float: left;
	position: relative;
	font-weight: 600;
	margin: 0 15px 0 0;
	font-size: 18px;
}

.tab-title img {
	display: block;
	float: left;
	position: relative;
	top: 10px;
	width: 24px;
	margin: 0 10px 0 0;
}

a.more:link, a.more:visited {
	display: block;
	line-height: 24px;
	font-size: 12px;
	color: #BE1507;
	position: absolute;
	top: 50%;
	margin-top: -12px;
	right: 10px;
	text-decoration: none;
}

.column {
	background: #fff;
	border: 1px solid #eee;
}

.textlist {
	width: 100%;
	padding-top: 3px;
	padding: 0px 14px;
}

.textlist > li {
	line-height: 41px;
	font-size: 16px;
	padding: 0 125px 0 18px;
	position: relative;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.textlist > li:before {
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	background: #DDDDDD;
	position: absolute;
	top: 19px;
	left: 3px;
}

.textlist > li a {
	color: #535353;
	text-decoration: none;
}

.textlist > li span {
	display: block;
	font-size: 16px;
	color: #bbb;
	position: absolute;
	top: 0;
	right: 2px;
}

.textlist2 > li {
	padding: 0 18px 0 18px;
	line-height: 48px;
}

.day {
	display: block;
	font-size: 12px;
	position: absolute;
	top: 0;
	right: 2px;
	background: #B02922;
	border-radius: 5px 5px 0px 0px;
	left: 1px;
	color: #fff !important;
	width: 80px;
	height: 50%;
	z-index: 1;
}

.mouth {
	display: block;
	font-size: 12px;
	position: absolute;
	top: 0;
	right: 2px;
	background: #fff;
	border-radius: 5px 5px 5px 5px;
	left: 1px;
	color: #000 !important;
	width: 80px;
	height: 100%;
	border: 1px solid #E7E7E7;
}

.dmd {
	line-height: 60px !important;
	margin-bottom: 5px;
	padding: 0px 25px 5px 100px !important;
	top: 10px;
	list-style: none;
}

.dspan {
	position: relative !important;
	top: -15px !important;
	left: 31px;
	color: #fff !important;
	font-size: 14px !important;
	font-family: Microsoft YaHei, Microsoft YaHei-Regular;
}

.mspan {
	position: relative !important;
	top: 11px !important;
	left: 12px;
	color: #000 !important;
	font-size: 14px !important;
	font-family: Microsoft YaHei, Microsoft YaHei-Regular;
}

.mb15 {
	margin-bottom: 15px;
}

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

.clearfix {
	display: inline-block;
}

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}

.layout-l{ width:255px; float:left;margin-top: 10px;}
.layout-m{ width:610px; float:left; margin-left:15px;}
.layout-r{ width:265px; float:right;margin-top: 10px;}

/* fjmu 日历样式 */
.content-right {
    width: 320px;
    margin-left: 19px;
}

#calendar{
	background: #fff;
	width: 288px;
	height: 343px;
    border: 1px solid #ddd;
    position: relative;
}

.content-right {
    float: left;
}
