@charset "UTF-8";


/* 基础样式 */
:root {
	--primary-color: #000000;
	/* 天青色 */
	--secondary-color: #B87333;
	/* 赭石色 */
	--dark-color: #333333;
	/* 水墨黑 */
	--light-color: #F0F6F6;
	/* 月白色 */
}


html {
	scroll-padding-top: 60px;
	/* 根据导航栏实际高度调整 */
}






/* 导航栏左侧 */



.navbar-logo {
	height: 50px;
	/* 根据实际需求调整高度 */
	width: auto;
	/* 保持图片原始比例 */
	margin-bottom: 0.5rem;
	justify-content: center !important;
	align-items: center !important;
}


.container-fluid {


  width: 100% !important;  /* 移除固定宽度限制 */
	    justify-content: space-between !important;


}

/* 导航栏左侧 */




/* 导航栏样式 */
.navbar {
	width: auto;
	background-color: rgba(255, 255, 255, 0.8);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	height: 60px;
	align-items: center !important;
	/* 确保整个导航栏内容垂直居中 */
}


/* 字体  */
.navbar-brand {
	font-size: 2.5rem !important;
	font-weight: 700;
	color: var(--primary-color);
	justify-content: center;
	align-items: center;
	margin-left: 3rem;
	margin-right: 10rem !important;


}


.navbar li {

	float: right;
	margin: 0 35px;
}

.navbar li a {
	color: #000;
	font-size: 25px;
	height: 70px;
	line-height: 3rem;
	/* transition: all 0.6s; */
	display: block;
}

.navbar li:hover a {
	width: 50rpx;
	color: #0000bd;
}

.navbar .scroll-nav {
	height: 2px;
	background: #223990;
	position: absolute;
	left: 30px;
	overflow: hidden;
	bottom: 0;
	width: 70px;
}


.nav-link {
	font-size: 1.1rem;
        margin: 0 5px;
	color: var(--dark-color);
	transition: all 0.3s;
}


.nav-link:hover {
	color: var(--primary-color);
}



/* 导航栏样式 */





/*  调整导航面包样式 */

.navbar-toggler {
	padding: 0.25rem 0.5rem !important;
	font-size: 0.875rem !important;
	border: none !important;
	outline: none !important;
	line-height: 0.5 !important;
	margin-right: 1.5rem;

}

.navbar-toggler-icon {
	width: 2em !important;
	height: 2em !important;
	background-size: 80% !important;
	position: relative !important;
	/* transition: all 0.3s ease !important; */
background-image: url('/img/zhedie.png');


}

/* 取消点击时的跳动效果 */
/* .navbar-toggler:focus,
.navbar-toggler:active {
	box-shadow: none !important;
} */

/* 取消下拉菜单动画 */
.collapsing {
	transition: none !important;
}




/*  调整导航面包样式 */



/* 调整  文字逐渐消失 :  */

.fade-out {
	/* transition: opacity 0.3s ease */
}


/* 调整  文字逐渐消失 :  */



/* 设置导航栏右侧 文字 */
.navbar-nav {
	display: flex;
	width: 100%;
}

.navbar-nav .nav-item {
	flex: 1;
	margin-right: 0.3rem;

}

.navbar-nav .nav-item:last-child {
	margin-right: 0;
}


.navbar-nav .nav-link {
	text-align: center;

	white-space: nowrap;
	/* 防止文字换行 */
}


.compact-nav .nav-item {
	margin: 0 0.25rem;
}

.compact-nav .nav-link {
	padding: 0.5rem 0.7rem;
	font-size: 0.95rem;
	white-space: nowrap;
}



/* 设置导航栏右侧 文字 */

.navbar-brand {
	font-size: 24px;
}


/* 解决导航栏 遮挡问题 */

/*  主体 */
.page-section {
	padding: 0 0;
}

.container {}

/* 人道首页 */
.banner h1 {
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.banner .lead {
	font-size: 1.25rem;
	color: #6c757d;
}

.banner img {
	transition: transform 0.3s ease;
}

.banner img:hover {
	transform: scale(1.02);
}

.banner-image-container {
	position: relative;
}

.banner-text-overlay {
	position: absolute;
	top: 10%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.banner-text-overlay .lead {
	display: inline-block;
	/* background-color: rgba(255, 255, 255, 0.1); */
	color: #333;
	font-weight: bold;
	font-size: 1.5rem;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
	/* backdrop-filter: blur(2px); */
}




/* 传承简介 */








.nav-item {
  margin-left: 0.9px !important; /* 左右外边距 */
}




/*  主体 */




/* 横向滚动 */
.navbar-nav {
	flex-wrap: nowrap !important;
	overflow-x: auto !important;
}


/* 横向滚动 */

@media screen and (max-width: 1520px) {}

@media screen and (max-width: 1400px) {
	.navbar-nav {
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		/* 横向滚动 */
	}
}


@media screen and (max-width: 1200px) {
	.compact-nav .nav-link {
		/* padding: 0.5rem 0.5rem; */
		font-size: 0.9rem;
	}

	.navbar-nav {
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		/* 横向滚动 */
	}

	.nav-link {
		padding: 0.5rem 0.6rem;
		font-size: 0.9rem;
	}

}



@media (min-width: 992px) {
    .navbar-nav {
        gap: 0.1rem !important;  /* 使用gap控制间距更精准 */
    }
    
    .nav-item {
        margin: 0  0rem !important;  /* 覆盖原来的35px间距 */
		padding: auto 0rem !important;
    }
}



/* 响应式调整  992px */
@media (max-width: 992px) {

	/* 传承 */
	/*    #cultivation .ps-lg-4 {
        padding-left: 0 !important;
    }
    #cultivation .pe-lg-4 {
        padding-right: 0 !important;
    }
	 */






	/* 调整折叠菜单项间距 */
	.navbar-collapse.show .navbar-nav .nav-item {
		margin-bottom: 0.05rem !important;
		/* 上下间距 */
		margin-top: 0.05rem !important;
		/* 可根据需要调整 */
	}

	/* 调整链接内边距 */
	.navbar-collapse.show .nav-link {
		padding: 0.1rem 0.5rem !important;
		/* 上下|左右 */ 
	}


	/* 增加分隔线效果 */
	.navbar-collapse.show .nav-item:not(:last-child) {
		border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	}



	.banner-text-overlay {
		position: absolute;
		top: 15% !important;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
	}

	.compact-nav {
		flex-wrap: wrap;
		justify-content: center;
	}

	.compact-nav .nav-item {
		margin: 0.15rem;
	}


	/* 调整  默认样式, 折叠菜单 */
	.navbar {
		padding: 0 !important;
	}

	.navbar-collapse {
		position: absolute;
		top: 100%;
		/* 下拉列表从导航栏下方开始 */
		right: 0;
		width: auto;
		/* 自动宽度 */
		max-width: auto;
		/* 最大宽度 */
		background-color: rgba(255, 255, 255, 0.4);
		/* 背景色 */
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
		/* 阴影 */
		border-radius: 5px;
		/* 圆角 */
		padding: 0px !important;
		/* 默认隐藏 */
		overflow: hidden;
		display: block !important;
		/* transition: all 0.3s ease-out; */
		/* 动画过渡效果 */
		transform: translateX(100%);

	}


	.navbar-collapse.show {
		max-height: auto !important;
		/* 根据实际内容高度调整 */
		padding: 0px 0 !important;
		/* display: block; */
		/* 显示下拉列表 */
		transform: translateX(0);
		/* 显示时移动到正常位置 */
	}

	/* 防止快速鼠标移动时意外关闭 */
	.navbar-toggler:hover .navbar-collapse {
		display: block;
	}





	/* 导航栏样式 */


	/* 字体  */
	.navbar-brand {
		font-size: 1.8rem;
		font-weight: 700;
		color: var(--primary-color);
		margin-right: 0 !important;
		padding-top: 2px !important;
		padding-bottom: 2px !important;

	}

	.navbar-toggler {
		margin-left: auto !important;

	}


	.navbar li a {

		height: auto !important;
	}




	.nav-link {
		font-size: 1.1rem;
		margin: 5px 5px !important;
		padding: 0.5rem 0.4rem;
	}


	.nav-link:hover {
		height: auto !important;
		/* line-height: 2px !important; */
	}

	/* 导航栏样式 */





	/* 调整  默认样式, 折叠菜单 */


	.navbar-nav {
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
	}



}

/* 手机端 */

@media (max-width: 576px) {

	/* 卡片 */
	.col-md-4.expanded {
		flex: 0 0 100% !important;
	}


	.banner-text-overlay {
		position: absolute;
		top: 15% !important;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
	}


	.banner-text-overlay .lead {
		font-size: 1.2rem;

	}



	/* 联系方式 */
	.qr-item {
		margin: 0 10px 15px;
		/* 小屏幕时减小左右间距 */
	}

	/* 页脚 */

	.footer-links {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.footer-links a {
		margin: 0 10px 10px;
	}

	.social-media a {
		font-size: 20px;
		margin: 0 8px;
	}




	/* 调整  默认样式, 折叠菜单 */
	.navbar-collapse {
		position: absolute;
		top: 100%;
		/* 下拉列表从导航栏下方开始 */
		right: 0;
		width: auto;
		/* 自动宽度 */
		max-width: auto;
		/* 最大宽度 */
		background-color: rgba(255, 255, 255, 0.4);
		/* 背景色 */
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
		/* 阴影 */
		border-radius: 5px;
		/* 圆角 */
		padding: 0px !important;
		/* 内边距 */

		/* 默认隐藏 */
		overflow: hidden;
		display: block !important;


		/* transition: all 0.3s ease-out; */
		/* 动画过渡效果 */
		transform: translateX(100%);

	}


	.navbar-collapse.show {
		max-height: auto !important;
		/* 根据实际内容高度调整 */
		padding: 0px 0 !important;
		/* display: block; */
		/* 显示下拉列表 */
		transform: translateX(0);
		/* 显示时移动到正常位置 */
	}

	/* 防止快速鼠标移动时意外关闭 */
	.navbar-toggler:hover .navbar-collapse {
		display: block;
	}





	/* 导航栏样式 */


	/* 字体  */
	.navbar-brand {
		font-size: 1.8rem;
		font-weight: 700;
		color: var(--primary-color);
		margin-right: 0 !important;

	}

	.navbar-toggler {
		margin-left: auto !important;

	}


	.navbar li a {

		height: auto !important;
		line-height: auto !important;

	}




	.nav-link {
		font-size: 1.1rem;
		margin: 5px 5px !important;
	}


	.nav-link:hover {
		height: auto !important;
		line-height: 2px !important;
	}

	/* 导航栏样式 */





	/* 调整  默认样式, 折叠菜单 */


	.navbar-nav {
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
	}



	/* 横向滚动 */
	.navbar-nav {
		flex-wrap: nowrap !important;
		overflow-x: auto !important;

	}


	/* 原有 */
	.page-section {
		padding: 30px 0;
	}

	.banner {
		min-width: auto;
		min-height: auto;
		padding: 50px 0;
	}

	h1 {
		font-size: 2rem;
	}





	/* 原有 */



}



/* 覆盖默认样式  */






/* 覆盖默认样式  */



/* 卡片样式 */

/* 我的卡片修改 */


.row {
	display: flex;
	flex-wrap: wrap;
}

.col-md-4 {
	display: flex;
	transition: all 0.3s ease;
	/* 平滑过渡动画 */
}



.card.expanded {
	max-height: none !important;
}

/* 多行文本省略 */
.card-text {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	/* 限制显示行数 */
	-webkit-box-orient: vertical;
	overflow: hidden;

	font-size: 1rem;
}


.card.expanded .card-text {
	-webkit-line-clamp: unset;
	/* 展开时取消行数限制 */
}


.card.expanded {
	max-height: none !important;
	width: 100% !important;
	transform: scale(1.02);
	/* 轻微放大突出效果 */
	z-index: 10;
	/* 确保在最上层 */
}

.col-md-4.expanded {
	flex: 0 0 100% !important;
	max-width: 100% !important;
}



/* 卡片文字居中 */
.card-text-center {
	display: block;
	text-align: center;
	color: black;
	font-weight: 900;
	margin-bottom: -1.5rem;
	margin-top: 1rem;
}

.span_jiacu {
	color: black;
	font-weight: 900;
	margin-top: 2rem !important;
	line-height: 2rem !important;
}

/* 我的卡片修改 */





.card {
	border: none;
	border-radius: 10px;
	/* overflow: hidden; */
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	/* transition: all 0.3s; */
	margin-bottom: 30px;



	/* 我的卡片修改 */

	flex: 1;
	min-height: 100px;
	max-height: 200px;
	overflow: hidden;
	cursor: pointer;
	transition: max-height 0.3s ease, transform 0.3s ease;

	/* 我的卡片修改 */
}


.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* 页脚样式 */
.footer {
	background-color: var(--dark-color);
	color: white;
	padding: 40px 0;
}

.footer a {
	color: var(--primary-color);
	text-decoration: none;
}


.banner {
	/* background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
		url('../img/bg-pattern.png'); */
	background-size: cover;
	min-height: 100vh;
	display: flex;
	align-items: center;
}



/* 我的联系方式 */
.contact-content {
	margin-bottom: 30px;
}

.practice-methods {
	margin: 20px 0;
}

.practice-methods ul {
	padding-left: 20px;
}

.contact-qrcodes {
	margin: 30px 0;
	text-align: center;
}

/* qq图标 */
.qr-icon {
	width: 20px;
	height: 20px;
	vertical-align: middle;
	margin-right: 8px;
}


.qr-item {
	display: inline-block;
	/* 改为行内块元素 */
	vertical-align: top;
	/* 顶部对齐 */
	margin: 0 15px 15px;
	/* 添加间距 */
}

.qr-item img {
	max-width: 150px;
	height: auto;
	border: 1px solid #eee;
	padding: 5px;
	background: white;
	display: block;
	/* 图片单独居中 */
	margin: 0 auto;
}

.qq-groups {
	background: #f8f9fa;
	padding: 15px;
	border-radius: 5px;
}



/* 微信联系 悬浮 */
.wechat-wrapper {
	position: relative;
	/* display: inline-block; */
	display: flex;
	/* 改为flex布局 */
	align-items: center;
	/* 垂直居中 */
	height: 100%;
	/* 高度与其他图标一致 */
}

.wechat-trigger {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}

.wechat-qrcode {
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	background: white;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 100;
	margin-bottom: 15px;
}

.wechat-qrcode::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border-width: 8px;
	border-style: solid;
	border-color: white transparent transparent transparent;
}

.wechat-wrapper:hover .wechat-qrcode {
	opacity: 1;
	visibility: visible;
}

.wechat-qrcode img {
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: 10px;
}

.wechat-qrcode p {
	margin: 0;
	font-size: 14px;
	color: #333;
	text-align: center;
}




.contact-groups {
	margin: 20px 0;
	line-height: 1.8;
}

.qq-group-link {
	color: #12b7f5;
	text-decoration: none;
	display: inline-flex;
	align-items: center;

}

.qq-group-link:hover {
	text-decoration: underline;
}

.wechat-group {
	color: #07C160;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
}

.wechat-group:hover {
	text-decoration: underline;
}




/* 我的联系方式 */

/* 字体 */



@font-face {
    font-family: 'LiSu';
    src:  url('/css/LiSu.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



   
body {
	font-family: 'LiSu', 'SimLi', 'Noto Serif SC', 'Microsoft YaHei', sans-serif;
	color: var(--dark-color);
	padding-top: 70px !important;
	/* Bootstrap默认导航栏高度 */
	margin: 0 !important;
	/* 导航栏高度 */
	background-color: var(--light-color);

 font-display: swap;
} 

* {
	margin: 0;
	padding: 0;

}


body,
p,
h1,
h2,
h3,
h4,
h5,
table,
ul,
li,
form,
input {
	margin: 0;
	padding: 0;
	color: #000;
	font-family: 'LiSu';
}

body,
p {
	font-size: 20px;
	border: none;
	color: #000;
}

a {
	font-size: 14px;
	color: #888888;
	text-decoration: none;
	border: none;
	padding: 0;
	margin: 0;
}

table {
	border-collapse: collapse;
}

img {
	border: 0;
	margin: 0;
	padding: 0;
}

ul,
li {
	list-style: none;
	border: 0;
	margin: 0;
	padding: 0;
}

dl,
dt,
dd {
	margin: 0;
	padding: 0;
	-webkit-margin-start: 0;
}

h1,
h2,
h3,
h4,
h5 {
	font-weight: normal;
	font-size: 30px;
	display: block;
}


strong,
b {
	font-weight: normal;
}

table,
tr,
td {
	border-spacing: 0;
}

em,
i,
b {
	font-style: normal;
}

p {
	line-height: 170%;
	/* color: #555; */
	color: #192929;
	font-size: 14px;
}

input {
	border: none;
	background: none;
}

figcaption {
	display: block;
}

input:focus {
	outline: none;
}

::-webkit-input-placeholder {
	/* WebKit browsers */
	font-size: 14px;
	color: #dfdfdf;
}

::-ms-input-placeholder {
	/* Internet Explorer 10+ */
	font-size: 14px;
	color: #dfdfdf;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.clearfix {
	*zoom: 1;
}

.clearfix:before,
.clearfix:after {
	display: table;
	line-height: 0;
	content: "";
}

.clearfix:after {
	clear: both;
}

.w1240 {
	width: 100%;
	margin: 0 auto;
}

/* 修改 */






/* 首页  主体内容  */
.banner {
	position: relative;
	overflow: hidden;
	margin-top: 1px;
}


/* 首页  主体内容  */
.banner .bannerfix>li {
	height: 100%;
	line-height: 0;
	opacity: 0;
	transition: opacity 1000ms linear;
	-webkit-transition: opacity 1000ms linear;
	float: left;
}

.banner .bannerfix>li .bimg {
	line-height: 0;
	width: 100%;

	position: relative;
	transition: transform 5s ease;
	-webkit-transition: transform 5s ease;
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
}

.banner .bannerfix>li.imgIn {
	opacity: 1;
	z-index: 10;
	display: block;
}

.banner .bannerfix>li.imgIn .bimg {
	transform: matrix(1, 0, 0, 1, 0, 0);
	-webkit-transform: matrix(1, 0, 0, 1, 0, 0);
}

.banner .flex-control-nav {
	width: 100%;
	height: 20px;
	position: absolute;
	left: 0;
	bottom: 90px;
	text-align: center;
	z-index: 20;
}

.banner .flex-control-nav li {
	display: inline-block;
	position: relative;
	margin-right: 14px;
	width: 5px;
	height: 20px;
}

.banner .flex-control-nav li:last-child {
	margin-right: 0;
}

.banner .flex-control-nav li span {
	display: block;
	text-indent: 999px;
	overflow: hidden;
	width: 5px;
	height: 8px;
	position: absolute;
	background: #fff;
	transition: 320ms;
	left: 0;
	top: 6px;
}

.banner .flex-control-nav li a.flex-active span {
	height: 20px;
	top: 0;
	background: #223990;
}

/* 首页  主体内容  */




/* 页脚 */

.footer {
	background: #000;
	background-color: #2c3e50;
	color: #ecf0f1;
	padding: 40px 0 20px;
	font-family: 'LiSu', 'SimLi', "Noto Serif SC",serif;

}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.footer-links {
	margin-bottom: 20px;
}

.footer-links a {
	color: #bdc3c7;
	margin: 0 15px;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: #3498db;
}


.social-media {
	display: flex;
	gap: 15px;
	justify-content: center;
	padding: 10px 0;
	/* margin: 20px 0; */
}

.social-media a {
	color: #ecf0f1;
	font-size: 24px;
	margin: 0 10px;
	transition: color 0.3s;
}

.social-media a:hover {
	color: #3498db;
}


.contact-info {
	margin: 20px 0;
	font-size: 14px;
}

.contact-info i {
	margin-right: 8px;
	color: #3498db;
}

/* 二维码 */

.social-icon {
	display: inline-flex;
	align-items: center;
	color: #333;
	text-decoration: none;
	transition: all 0.3s;


	/* margin: 0 10px; */
}

.social-icon:hover {
	transform: translateY(-3px);
	opacity: 0.8;
}

.social-icon img {
	width: 24px;
	height: 24px;
	margin-right: 5px;
}

/* 二维码弹窗样式 */
.qr-popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	align-items: center;
	justify-content: center;
}


.qr-content {
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	max-width: 80%;
}

.qr-content img {
	max-width: 200px;
	height: auto;
	margin-bottom: 10px;
}

.qr-buttons {
	margin-top: 15px;
}


.copy-btn {
	background: #07C160;
	color: white;
	border: none;
	padding: 8px 15px;
	border-radius: 4px;
	margin-right: 10px;
	cursor: pointer;
}


.close-btn {
	background: #999;
	color: white;
	border: none;
	padding: 8px 15px;
	border-radius: 4px;
	cursor: pointer;
}



.copyright {
	margin-top: 30px;
	font-size: 12px;
	color: #95a5a6;
}

.copyright a {
	color: #95a5a6;
	text-decoration: none;
	transition: color 0.3s;
}

.copyright a:hover {
	color: #3498db;
}



.footer .div1 {
	padding: 25px 0;
	border-top: 1px solid #363f56;
	border-bottom: 1px solid #363f56;
}

.footer .div1 li {
	float: left;
	margin-left: 50px;
	margin-top: 15px;
}

.footer .div1 li a {
	color: #fff;
	font-size: 25px;
	transition: all 0.6s;
}

.footer .div2 .p1 {
	font-size: 14px;
	color: #888888;
	line-height: 36px;
	margin-bottom: 20px;
}

.footer .div2 {
	padding-top: 60px;
}

.footer .div2 .left a {
	display: inline-block;
	margin-right: 15px;
}

.footer .div2 .right {
	background: url(../img/tel22.png) no-repeat right top;
	padding-right: 80px;
	height: 70px;
}

.footer .div2 .p3 {
	font-size: 14px;
	color: #fff;
	text-align: right;
	padding-top: 5px;
}

.footer .div2 .p4 {
	font-size: 22px;
	color: #fff;
	font-weight: bold;
}

.footer .div3 {
	border-top: 1px solid #363F56;
	padding-top: 30px;
	margin-top: 70px;
}

.footer .div3 span {
	display: inline-block;
	color: #888;
	font-size: 14px;
}

.footer .div3 a {
	display: inline-block;
	color: #888;
	font-size: 14px;
	margin-right: 20px;
	margin-bottom: 20px;
	transition: all 0.6s;
}

.footer .div3 a:hover,
.footer .div1 li:hover a {
	color: #223990;
}
