* {
	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;
}

.w1200 {
	width: 1200px;
	margin: 0 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 img {
    height: 20px;
    border-radius: 100%;
}

.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: 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;
}

.site-grid a:hover {
	color: #00b578;
}
/* =========================
   会员中心头部
========================= */

.member-header {
	height: 70px;
	background: #3cbc69;
}

.member-header .w1200 {
	height: 70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.member-logo {
	display: flex;
	align-items: center;
}

.member-logo img {
	height: 30px;
	display: block;
}

.member-exit a {
    color: #fff;    
    font-size: 15px;
}

.member-exit a:hover {
    color: #dcffe8;    
}


/* =========================
   主体占位
========================= */

.placeholder {
	height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: 18px;
}
/* =========================
   尾部
========================= */

.footer {
	background: #f8f8f8;
	padding: 40px 0;
}

.footer-menu a {
	margin-right: 48px;
	font-size: 14px;
	position: relative;
	display: inline-block;
}

.footer-menu a::after {
	content: "";
	position: absolute;
	right: -28px;
	top: 54%;
	width: 1px;
	height: 12px;
   /* 控制竖杠高度 */
	background: #d8d8d8;
	transform: translateY(-50%);
}

.footer-menu a:last-child::after {
	display: none;
}

.footer-links {
	margin: 15px 0;
}

.footer-links a {
	margin-right: 20px;
	color: #777;
	font-size: 14px;
}

.footer-links a:hover {
	color: #3cbc69;
}

.copyright {
	color: #999;
	font-size: 14px;
}


/* 右侧悬浮客服 */
.bd-toolbar {
    position: fixed;
    right: 28px;
    top: 30%;
    transform: translateY(-20%)
}
.bd-toolbar-panel {
    position: fixed;
    right: 28px;
    width: 58px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 12px 36px rgba(0,0,0,.08);
    overflow: hidden
}
.bd-toolbar-layer {
}
.bd-tool {
    height: 66px;
    border-bottom: 1px solid #efefef;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #777;
    transition: .2s
}
.bd-tool:last-child {
    border-bottom: none
}
.bd-tool>i {
    font-size: 18px;
    color: #333;
    margin-bottom: 4px
}
.bd-tool:last-child i{
    font-size: 14px;
}
.bd-tool>span {
    font-size: 12px
}
.bd-tool:hover {
    background: #f6fbf8;
    color: #19be6b
}
.bd-tool-publish:hover {
    background: #23d47b;
    color: #777
}
.bd-tool:hover>i {
    color: #19be6b
}
.bd-tool-publish {
    background: #19be6b
}
.bd-tool-publish>i, .bd-tool-publish>span {
    color: #fff!important
}
.bd-tool-backtop {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: .25s
}
.bd-tool-backtop.show {
    height: 34px;
    opacity: 1;
}
.bd-tool-backtop.show i {
    margin-bottom: 0;
    font-size: 14px;
}
.bd-float-card {
    display: none;
    position: fixed;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 18px 48px rgba(0,0,0,.14);
    z-index: 9999
}
.bd-float-card:after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #fff;
    transform: translateY(-50%) rotate(45deg)
}
.bd-card-title {
    font-size: 15px;
    font-weight: bold
}
.bd-card-desc {
    font-size: 11px;
    color: #999;
    margin: 6px 0 18px
}
.bd-publish-card {
    width: 343px;
    right: 102px;
    top: -56px
}
.bd-action-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px
}
.bd-action-item {
    height: 70px;
    width: 70px;
    border: 1px solid #ececec;
    border-radius: 5px;
    text-decoration: none;
    color: #444;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .2s
}
.bd-action-item i {
    font-size: 24px;
    color: #19be6b;
    margin-bottom: 5px
}
.bd-action-item span {
    font-size: 11px
}
.bd-action-item:hover {
    background: #f5fbf7;
    border-color: #19be6b
}
.bd-service-card {
    width: 260px;
    right: 102px;
    top: 19px;
    padding: 18px 16px 20px
}
.bd-mobile-card {
    width: 260px;
    right: 102px;
    top: 83px;
    padding: 18px 16px 20px
}
.bd-qrcode-group {
    display: flex;
    justify-content: space-around;
    gap: 10px
}
.bd-qrcode-item {
    text-align: center
}
.bd-qrcode-box {
    width: 100px;
    height: 100px
}
.bd-qrcode-box img {
    width: 100%;
    height: 100%
}
.bd-qrcode-item p {
    margin-top: 7px;
    font-size: 13px;
    color: #666
}