@charset "utf-8";
@import "banner.css";
/* CSS Document */
body {
	margin: 0;
	min-width: 1200px;
}
a {
	text-decoration: none;
}
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.flexible {
	display: flex;
}
.center-wrap {
	width: 1200px;
	margin: 0 auto;
}
header {
	margin-bottom: 25px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
header .logo {
	padding: 5px;
	flex-grow: 1;
}
header .search {
	align-self: center;
	padding-right:25px;
}
header .search form {
	padding: 0 5px;
	border-radius: 5px;
	border: thin solid steelblue;
}
header .search input {
	width: 20em;
	border: none;
	outline: none;
}
header .search button {
	border: none;
	background: none;
	font-size: large;
	cursor: pointer;
	color: steelblue;
}
nav {
	--nav-color: #203880;
	background: var(--nav-color, #203880);
}
nav li {
	position: relative;
}
nav a {
	display: block;
	padding: 2em;
	width: 5em;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.2em;
	border-bottom: solid var(--nav-color, #203880);
	color: white;
}
nav li:hover > a {
	color: lightgray;
	background: #0f2566;
	border-bottom-color: steelblue;
}
nav ul ul {
	--width: 100%;
	display: none;
	position: absolute;
	z-index: 10;
	left: calc((100% - var(--width, 100%))/2);
	width: var(--width, 100%);
	padding: 10px 0;
	background: rgba(64, 64, 64, 0.5);
	backdrop-filter: blur(5px);
}
nav li:hover ul {
	display: block;
}
nav li li a {
	padding: 10%;
	width: 80%;
	font-size: smaller;
	border: none;
}
nav li li:hover a {
	background: rgba(64, 64, 64, 0.5);
}
/*Home*/
section.distinguish {
	border: solid mistyrose;
	border-width: thin 0;
	background: snow;
}
.information-sec {
	padding: 25px;
	width: 1150px;
}
.information-sec h2 {
	--color: steelblue;
	padding: 0 0 0.2em 0.5em;
	border: medium solid transparent;
	border-bottom-color: whitesmoke;
	border-left: thick solid lightblue;
	color: var(--color, steelblue);
	letter-spacing: 0.1em;
}
.information-sec h2 a {
	color: var(--color, steelblue);
}
.information.flexible {
	justify-content: space-around;
}
.information span.title {
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.information span.date {
	float: right;
}
.information a {
	color: dimgray;
}
.information a:visited {
	/*color:purple;*/
}
.information a:hover {
	color: cornflowerblue;
}
.information .article-list li {
	padding: 0.8em 0 0.2em;
}
.work-state .article-list ul {
	width: 32em;
}
.work-state span.title {
	width: 26em;
}
.work-state .article-list li {
	border-bottom: thin dotted lightgray;
}
.bid-info .bidding, .bid-info .winning {
	flex-grow: 1;
	padding: 20px;
	margin: 40px;
	background: lightblue;
}
.bid-info ul {
	width: 25em;
	margin: 30px auto;
}
.bid-info span.title {
	width: 19em;
}
.bid-info li {
	padding: 0.3em 0;
}
.bid-info h3 {
	position: relative;
	z-index: 1;
	letter-spacing: 0.2em;
}
.bid-info h3::before {
	content: "";
	height: 50px;
	width: 220px;
	position: absolute;
	z-index: -1;
	top: -6px;
	left: -40px;
	background: url("../images/ribbon.png") no-repeat;
}
.bid-info h3 a {
	color: white;
}
/*.party-info .information{
	background: url("../images/party.png") 47em bottom no-repeat;
}*/
.party-info ul {
	width: 66em;
	margin: 0 auto;
}
.party-info span.title {
	width: 58em;
}
.party-info li {
	border-bottom: thin dotted lightgray;
}
.party-info li::before {
	content: "\25c8";
	margin-right: 0.5em;
	vertical-align: top;
	color: steelblue;
}
.recomend-info ul {
	width: 30em;
	margin: 0 auto;
}
.recomend-info span.title {
	width: 24em;
}
.recomend-info li {
	border-bottom: thin solid lightgray;
}
/*List & artile*/
aside .option {
	padding: 25px;
	position: sticky;
	top: 0;
}
aside .option h1 {
	font-size: xx-large;
	color: steelblue;
}
aside .option ul {
	text-align: right;
}
aside .option a {
	display: block;
	width: 200px;
	padding: 0.5em 1em;
	font-size: large;
	font-weight: bold;
	color: dimgray;
}
aside .option li li a {
	font-size: smaller;
}
aside .option a.current {
	color: white;
	background: steelblue;
}
aside .option a:hover {
	color: white;
	background: lightblue;
}
.content {
	padding: 25px;
	flex-grow: 1;
}
.content a {
	color: dimgray;
}
.content a:hover {
	color: cornflowerblue;
}
.content .path {
	padding: 0.5em 1em;
	font-size: small;
	border-bottom: medium solid steelblue;
}
/*List*/
.content .article-list ul {
	padding: 25px;
}
.content .article-list li {
	padding: 1em 0 0.5em;
	list-style: circle inside;
	border-bottom: thin dotted lightgray;
}
.content .article-list span.date {
	float: right;
}
.content .pages ul {
	display: flex;
	justify-content: center;
}
.content .pages a {
	display: block;
	padding: 5px 10px;
	margin: 5px;
	font-size: small;
	border: thin solid lightblue;
}
.content .pages a:hover {
	color: cornflowerblue;
	border-color: lightblue;
}
.content .pages a.current {
	color: white;
	background: steelblue;
}
/*article*/
.content article {
	width: 44em;
	margin-left: auto;
	margin-right: auto;
}
.content article h1, .content article h6 {
	text-align: center;
}
.content article p {
	text-indent: 2em;
	line-height: 2em;
	text-align: justify;
}
.content .related {
	padding: 0 30px;
	border-top: solid lightblue;
}
/*Search*/
.content .result {
	padding: 20px;
	width: 44em;
}
.content .result strong {
	color: cornflowerblue;
}
.content .result h2 {
	padding: 0 0 0.2em 0.5em;
	border: medium solid transparent;
	border-bottom-color: whitesmoke;
	border-left: thick solid lightblue;
	color: steelblue;
	letter-spacing: 0.1em;
}
.content .result span.number {
	margin-left: 2em;
	color: steelblue;
}
.content .result ul {
	margin-top: 25px;
}
.content .result .article li {
	padding: 1em 0.5em;
	border-top: thin solid lightgray;
}
.content .result .article li:last-child {
	border-bottom: thin solid lightgray;
}
.content .result .article span {
	font-size: smaller;
}
.content .result .article h3 {
	margin: 0.3em 0;
}
.content .result .article p {
	text-indent: 2em;
	text-align: justify;
}
.content .result .article p strong {
	font-weight: normal;
}
.content .result .article .address {
	word-break: break-all;
}
.content .result .article .date {
	margin-left: 4em;
}
footer {
	margin-top: 25px;
	font-size: 0.88em;
	color: darkgray;
	box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.15);
}
footer .site-info {
	background: #1b274d;
}
footer .site-info .site-map {
	padding: 25px;
	flex: 5 0 auto;
}
footer .site-info .site-map > ul {
	display: flex;
}
footer .site-info .site-map li {
	flex-grow: 1;
}
footer .site-info .site-map a {
	display: block;
	padding: 0 1em 0.5em;
	text-align: center;
	border-bottom: thin dashed darkgray;
}
footer .site-info .site-map li li a {
	border: none;
	padding: 0.3em 1em 0;
}
footer .site-info .site-map table {
	width: 100%;
	text-align: center;
}
footer .site-info .site-map th {
	padding: 0.5em 1em;
	border-bottom: thin dashed darkgray;
}
footer .site-info .site-map a {
	color: lightgray;
}
footer .site-info .site-map a:hover {
	color: white;
}
footer .site-info .contactus {
	padding: 25px;
	flex: 1 1 20em;
}
footer .site-info .contactus h4 {
	margin-top: 0.5em;
}
footer .site-info .contactus ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
footer .site-info .contactus li {
	margin: 0.5em 0;
}
footer .site-info .code {
	padding: 25px;
	text-align: center;
}
footer .site-info .links {
	padding: 25px;
}
footer .site-info .links ul {
	display: flex;
}
footer .site-info .links li {
	margin: 0 1em;
}
footer .site-info .links a {
	color: lightgray;
}
footer .site-info .links a:hover {
	color: white;
}
footer .statement {
	background: black;
}
footer .statement .flexible {
	justify-content: space-around;
}