* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Microsoft YaHei", sans-serif;
    color: #333;
    background: #f7f7f7;
}
a {
    text-decoration: none;
    color: #333;
}
a:hover {
    color: #00b578;
}
ul {
    list-style: none;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}
/* =========================
   顶部工具栏
========================= */

.topbar {
    height: 42px;
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}
.topbar-inner {
    height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	font-size: 13px;
}
.top-left,.top-left .top-link-home {
    color: #666;
}
.top-link-home:hover {
    color: #00b578;
}
.top-right {
    display: flex;
    align-items: center;
}
.top-item {
    position: relative;
}
.top-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 15px;
    height: 42px;
    color: #666;
}
.top-link i {
    font-size: 15px;
}
.topbar-inner .top-link i.bi-chevron-down {
    font-size: 10px;
    transform: translateY(1px);
}
/* =========================
   天气
========================= */

.weather-mini {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    padding: 0 13px;
    color: #666;
}
.weather-dropdown {
    width: 440px;
    top: 37px!important;
    right: 0;
    padding: 22px 28px 25px 28px;
    background: linear-gradient(to bottom, #eaf5f9, #ffffff)!important;
}
.weather-city {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1;
}
.weather-city span {
    font-size: 16px;
    font-weight: 600;
    margin-left: 2px;
}
.weather-main {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}
.weather-icon {
    width: 80px;
    margin-right: 0px;
}

.weather-icon img {
	margin-left: -10px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, .2));
}
.weather-temp {
    font-size: 54px;
    line-height: 0.9;
}
.weather-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 8px;
}
.weather-unit {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 6px;
}
.weather-status {
    font-size: 16px;
    color: #555;
    line-height: 1;
}
.weather-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 18px;
    column-gap: 20px;
    font-size: 14px;
    color: #444;
}
.weather-info div {
    white-space: nowrap;
}
/* =========================
   下拉菜单
========================= */

.dropdown {
    position: absolute;
    top: 42px;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    display: none;
    z-index: 999;
}
.member-dropdown {
    padding: 10px 0;
}
.member-dropdown a {
    display: block;
    padding: 12px 20px;
    text-align: center;
}
.member-dropdown a:hover {
    background: #f8f8f8;
}
/* =========================
   手机二维码
========================= */

.qrcode-dropdown {
    width: 300px;
    padding: 20px;
}
.qrcode-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.qrcode-item {
    text-align: center;
}
.qrcode-item img {
    width: 120px;
    height: 120px;
}
.qrcode-item p {
    margin-top: 5px;
    color: #666;
}
/* =========================
   网站导航
========================= */

.site-dropdown {
    width: 900px;
    padding: 25px;
}
.site-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.site-grid a {
    color: #666;
    text-align: center;
}
/* =========================
   LOGO区域
========================= */

.header {
    background: #fff;
}
.header-inner {
    height: 86px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 39px;
    display: block;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.search-wrap {
    width: 450px;
}
.search-box {
    display: flex;
    height: 42px;
    border: 2px solid #00b578;
    border-radius: 6px;
}
.search-select-wrap {
    position: relative;
    width: 88px;
    border-right: 1px solid #eee;
    background: #ffffff;
    flex-shrink: 0;
    border-radius: 6px 0 0 6px;
}
.search-select-current {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    user-select: none;
    color: #555;
    font-size: 14px;
}
.search-select-current i {
    font-size: 10px;
    transition: .2s;
    transform: translateY(1px);
}
.search-select-wrap.open .search-select-current i {
    transform: rotate(180deg);
}
.search-select-dropdown {
    display: none;
    position: absolute;
    top: 40px;
    left: -0;
    width: calc(100%);
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
    z-index: 999;
}
.search-select-dropdown li {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #444;
    font-size: 14px;
}
.search-select-dropdown li + li {
    border-top: 1px solid #f2f2f2;
}
.search-select-dropdown li:hover {
    background: #fafafa;
    color: #00b578;
}
.search-input {
    flex: 1;
    border: none;
    padding: 0 15px;
    outline: none;
}
.search-btn {
    width: 52px;
    border: none;
    background: #00b578;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}
.publish-btn {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 22px;
    background: #00b578;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
}
.publish-btn:hover {
    color: #fff;
}
/* =========================
   主导航
========================= */

.main-nav {
    background: #00c67a;
}
.main-nav ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.main-nav li a {
    display: block;
    color: #fff;
    padding: 18px 32px;
    font-size: 15px;
}
.main-nav li a:hover, .main-nav li a.active {
    background: rgba(255,255,255,.1);
}

/* =========================
   手机
========================= */

@media(max-width:768px) {
.top-left {
    display: none;
}
.topbar-inner {
    justify-content: center;
}
.weather-mini {
    display: none;
}
.header-inner {
    flex-direction: column;
    gap: 15px;
    height: auto;
    padding: 15px 0;
}
.header-right {
    width: 100%;
    flex-direction: column;
}
.search-wrap {
    width: 100%;
}
.publish-btn {
    width: 100%;
    justify-content: center;
}
.site-dropdown {
    width: 320px;
}
.site-grid {
    grid-template-columns: repeat(2, 1fr);
}
.qrcode-dropdown {
    width: 300px;
}
.qrcode-grid {
    grid-template-columns: 1fr;
}
.main-nav ul {
    justify-content: flex-start;
}
}
/**** footer ****/
.site-footer {
    background: #1f2937;
    border-top: 3px solid #22c55e;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 15px;
    text-align: center;
}
.footer-nav {
    margin-bottom: 12px;
}
.footer-nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    margin: 0 15px;
    transition: all .2s ease;
}
.footer-nav a:hover {
    color: #22c55e;
}
.copyright {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.8;
}

@media(max-width:768px) {
.footer-inner {
    padding: 18px 15px;
}
.footer-nav a {
    display: inline-block;
    margin: 4px 8px;
}
}
.main {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 返回顶部 */
.back-top {
	position: fixed;
	right: 20px;
	bottom: 30px;
	width: 36px;
	height: 36px;
	background: rgba(0,0,0,0.5);
	border-radius: 50px;
	display: none;
	cursor: pointer;
	z-index: 999;
	display: flex;
	justify-content: center;
	align-items: center;
}

.back-top i {
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 15px;
	color: #fff;
}

/* nav */
.breadcrumb-box {
	width: 1200px;
	font-size: 14px;
	color: #999;
	line-height: 1;
	margin: 20px auto;
}

.breadcrumb-box a {
	color: #999;
	text-decoration: none;
}

.breadcrumb-box i {
	font-size: 7px;
	color: #999;
	margin: 0 10px;
	position: relative;
	top: -2px;
}

/*page*/
.pages {
    display: grid;
    width: 100%;
    text-align: center;
    margin: 0 auto 20px auto;
    padding: 20px 0;
	border-radius: 0 0 8px 8px;
}
.pages ul {
    margin: 0 auto;
}
.pages li {
	text-decoration:none;
	margin:0 4px;
	float:left;
}
.pages li.liuye,.pages li.active {
	display:inline-block;
}
.pages li a {
	display:inline-block;
	padding:6px 11px;
	background-color:#fff;
	border:1px solid #ddd;
	border-radius:4px;
	color:#121212;
	text-decoration:none;
	font-size:14px;
}
.pages li a:hover {
	color: #fff!important;
}
.pages li.active span,.pages li:hover span,.pages li a:hover,.pages li:hover a {
	display:inline-block;
	padding:6px 11px;
	border-radius:4px;
	text-decoration:none;
	font-size:14px;
	color:#fff;
	background-color:#00c67a;
	border:1px solid #00c67a;
}
.pages li.shouye span{
	display:inline-block;
	padding:5px 14px;
	border-radius:4px;
	text-decoration:none;
	font-size:14px;
	color:#ccc;
	border:1px solid #ccc;
}