/* 底部地图版权 begin*/
footer {
	padding: 70px 0 0 0;
}

footer h3 {
	font-weight: 700;
	color: #37474f
}

footer ul li.item-1 {
	width: 12%
}

footer ul li.item-2 {
	width: 12%
}

footer ul li.item-3 {
	width: 12%
}

footer ul li.item-4 {
	width: 12%
}

footer ul li.item-5 {
	width: 24%
}

footer ul li.item-6 {
	width: 28%
}

footer ul li ul li a {
	line-height: 32px;
	color: #5e7387
}

footer ul li ul li a:hover,
footer .contact .media .media-body a:hover {
	color: #00b6dd;
}

footer .contact {
	padding-top: 3px
}

footer .contact .media {
	margin: 0 0 5px 0;
	padding: 0 0 10px 0;
}

footer .contact .media span {
	width: 24px;
	height: 24px;
	/*background-color: #00b6dd;*/
	color: #37474f;
}

footer .contact .media i {
	line-height: 24px;
}

footer .contact .media .media-body a,
footer .contact .media .media-body {
	padding: 0;
	color: #2e2e2e;
	line-height: 24px;
}

footer .qr {
	margin-left: 20px;
	background: #f7f7f7;
	width: 150px;
    display: inline-block;
    float: right;
}

footer .qr img {
	width: 100%
}

footer .copyright {
	padding: 20px 0 60px 0;
	color: #888;
	border-top: 1px solid #f0f2f5;
}

footer .copyright a {
	margin-left: 5px;
	color: #888
}

footer .tab-head {
	border-radius: 0;
	font-size: 0;
	-webkit-text-size-adjust: none;
	padding: 0;
	border-bottom: 1px solid #404040
}

footer .tab .tab-nav {
    padding-left: 0;
}

footer .tab .tab-nav li {
	display: inline-block;
	width: auto;
	margin: 0 20px 0 0
}

footer .tab .tab-nav li a {
	color: #888;
	padding: 10px 0;
	border: 0;
	border-bottom: 1px solid transparent;
	margin-bottom: -1px;
	display: block;
	line-height: 20px;
	border-radius: 0;
	font-size: 16px;
}

footer .tab .tab-nav .active {
	border-radius: 0px;
}

footer .tab .tab-nav .active a {
	margin-bottom: -1px;
	cursor: default;
	border-bottom: 1px solid #012fa7;
}

footer .tab .tab-nav li a,
footer .tab .tab-nav .active a:focus {
	outline: none;
}

footer .tab .tab-body {
	border-radius: 0;
	border-top: solid 1px #f0f2f5;
	padding: 25px 0
}

footer .tab .tab-body .flink a {
	display: inline-block;
	margin-right: 15px;
	line-height: 24px
}

footer .tab .tab-body .flink a img {
	width: 110px;
	height: 58px;
}

footer .copyright .text-right {
	display: flex;
    justify-content: end;
}

footer .copyright .text-right li {
	display: inline-block;
    color: #e0dbdb;
    font-size: 15px;
    position: relative;
    margin-left: 10px;
    margin-right: 10px;
}

footer .copyright .text-right li::before {
    content: '';
    position: absolute;
    top: 5px;
    right: -13px;
    width: 2px;
    height: 14px;
    background-color: #888;
}
footer .copyright .text-right li:last-child {
	margin-right: 0;
}

footer .copyright .text-right li:last-child::before {
	display: none;
}	
/* 底部地图版权 end*/

/*快捷登录*/


/*自定义颜色*/
.bg-Bright-blue {
	background: #00b6dd;
}

.text-Bright-blue {
	color: #00b6dd;
}

.button {
	color: #fff;
}
.button:hover {
	background: #1CC9F4;
	color: #fff;
}

a:focus, a:hover {
    color: #1CC9F4;
    transition: none;
}
/*----------拟态框-----------*/


/* 拟态框背景遮罩 */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

/* 拟态框容器 */
.modal-container {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	width: 80%;
	max-width: 500px;
	animation: modalFadeIn 0.3s;
}

/* 拟态框头部 */
.modal-header {
	padding: 16px 20px;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* 拟态框标题 */
.modal-title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: bold;
}

/* 关闭按钮 */
.modal-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: #777;
}

/* 拟态框内容 */
.modal-content {
	padding: 20px;
}

/* 拟态框底部 */
.modal-footer {
	padding: 12px 20px;
	border-top: 1px solid #eee;
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

/* 按钮样式 */
.btn {
	padding: 8px 16px;
	border-radius: 4px;
	cursor: pointer;
	border: none;
}

.btn-primary {
	background-color: #007bff;
	color: white;
}

.btn-secondary {
	background-color: #6c757d;
	color: white;
}

/* 动画效果 */
@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}