/* ===================基础样式设置======================= */
/* 字体 背景色 */
body {
	font-family: "Montserrat", Arial, sans-serif;
	background: #fff;
	font-size: 15px;
	line-height: 1.8;
	font-weight: 400;
	color: gray;
}

/* 超链接显示的样式 */
a {
	color: #00bd56;
	text-decoration: none;
	background-color: transparent;
}

a:hover,
a:focus {
	color: #00bd56;
	text-decoration: none;
	outline: none !important;
}

/* 默认的标题显示的行间距  颜色 加粗效果*/
h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
	line-height: 1.5;
	color: rgba(0, 0, 0, 0.8);
	font-weight: 400;
}

/* ============[顶部]样式设置============= */
/* 顶部:设置背景色 */
.wrap {
	position: relative;
	z-index: 0;
	width: 100%;
	background: #00bd56;
	background: #207dff;
	background: -moz-linear-gradient(45deg, #207dff 0%, #00bd55 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, #207dff), color-stop(100%, #00bd55));
	background: -webkit-linear-gradient(45deg, #207dff 0%, #00bd55 100%);
	background: -o-linear-gradient(45deg, #207dff 0%, #00bd55 100%);
	background: -ms-linear-gradient(45deg, #207dff 0%, #00bd55 100%);
	background: linear-gradient(45deg, #207dff 0%, #00bd55 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#207dff', endColorstr='#00bd55', GradientType=1);
}

/* wrap里面的文字内容定义 */
.wrap {
	z-index: 1;
}

.wrap .phone span {
	color: #fff;
}

.wrap .phone a {
	color: #fff;
	font-size: 12px;
}

/* 高宽背景色，鼠标滑过的设定 */
.social-media {
	display: inline-block;
}

.social-media p a {
	width: 40px;
	height: 40px;
	margin-right: 1px;
}

.social-media p a span {
	color: #fff;
}

.social-media p a:hover {
	background-color: #00bd56;
	border-color: #00bd56;
}

.social-media p a:hover span {
	color: #fff;
}

/* ==================[菜单]样式设置======================= */

/* 菜单:背景色设置 */
.ca-navbar-light {
	background: #fff !important;
	z-index: 3;
	padding: 0;
	-webkit-box-shadow: 0px 5px 20px -17px rgba(0, 0, 0, 0.34);
	-moz-box-shadow: 0px 5px 20px -17px rgba(0, 0, 0, 0.34);
	box-shadow: 0px 5px 20px -17px rgba(0, 0, 0, 0.34);
}

/* 菜单:中等屏幕尺寸时，调整内边距 */
/* 在大于等于991.98px时，使用下面的样式设定 */
@media (max-width: 991.98px) {
	.ca-navbar-light {
		background: #fff;
		position: relative;
		top: 0;
		padding: 10px 15px;
	}
}

/* 菜单:品牌名称字号设置 */
.ca-navbar-light .navbar-brand {
	color: #000000;
	font-weight: 800;
	font-size: 28px;
	line-height: 1;
}

/* 标题以及链接的颜色 */
.ca-navbar-light .navbar-brand span {
	color: #00bd56;
}

/* 文字链接滑过时候的颜色 */
.ca-navbar-light .navbar-brand:hover,
.ca-navbar-light .navbar-brand:focus {
	color: #000000;
}

/* 菜单:不同屏幕尺寸时，相对位置 */
@media (max-width: 767.98px) {
	.ca-navbar-light .navbar-brand {
		margin: 10px 0;
	}
}

@media (max-width: 991.98px) {
	.ca-navbar-light .navbar-nav {
		padding-bottom: 10px;
	}
}

/* 菜单:调整链接文字样式 */
.ca-navbar-light .navbar-nav>.nav-item>.nav-link {
	font-size: 14px;
	padding-top: 2.3rem;
	padding-bottom: 2.3rem;
	padding-left: 18px;
	padding-right: 18px;
	font-weight: 700;
	color: #000000;
	position: relative;
	opacity: 1 !important;
}

/* 为菜单项链接添加2px高度的伪元素 */
.ca-navbar-light .navbar-nav>.nav-item>.nav-link:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0px;
	left: 0;
	background-color: #00bd56;

	/* 默认设置隐藏 */
	visibility: hidden;
	/* 水平方向上尺寸为0*/
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	/* 在0.1秒内实现漫入漫出的效果 */
	-webkit-transition: all 0.1s ease-in-out 0s;
	-o-transition: all 0.1s ease-in-out 0s;
	transition: all 0.1s ease-in-out 0s;
	z-index: -1;

}

/* 菜单项中超链接的文字样式 以及菜单项被滑过时候的颜色，*/
.ca-navbar-light .navbar-nav>.nav-item>.nav-link:hover {
	color: #00bd56;
}

/* 鼠标滑过菜单项时，伪元素设置显示 */
.ca-navbar-light .navbar-nav>.nav-item>.nav-link:hover::before {
	visibility: visible;
	background-color: #00bd56;
	/* 2D水平X方向上尺寸恢复为原来的尺寸显示出来*/
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}

/* 菜单:菜单项被选中(激活)状态的样式 */
.ca-navbar-light .navbar-nav>.nav-item.active>a {
	color: #00bd56;
}


.ca-navbar-light .navbar-nav>.nav-item.active>a:before {
	visibility: visible;
	background-color: #00bd56;
	/* 菜单项选中状态默认显示线条 */
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}

/* 针对不同屏幕调整它对应的颜色效果 */
@media (max-width: 991.98px) {
	.ca-navbar-light .navbar-nav>.nav-item.active>a {
		color: #000000;
	}

	.ca-navbar-light .navbar-nav>.nav-item.active>a:before {
		display: none;
	}
}

/* ================[面包屑]样式设置================= */


/* 面包屑:设定板块的高度 */
.breadcrumbs-wrap {
	height: 400px;
}


/* 面包屑：背景图 */
.breadcrumbs-wrap {
	width: 100%;
	height: 100%;
	position: inherit;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	position: relative;
}


@media (max-width: 1199.98px) {
	.breadcrumbs-wrap {
		background-position: center center !important;
	}
}

/* 面包屑:为图片添加一层蒙版,全面覆盖父元素 */
.breadcrumbs-wrap .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	opacity: .1;
	background: #000000;
}




/* 面包屑:设定蒙版为半透明，背景色，为了让颜色更统一 */
/* .breadcrumbs-wrap.breadcrumbs-wrap-2 .overlay { */
.breadcrumbs-wrap .overlay {
	opacity: .5;
	background: #207dff;
	background: -moz-linear-gradient(45deg, #207dff 0%, #00bd55 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, #207dff), color-stop(100%, #00bd55));
	background: -webkit-linear-gradient(45deg, #207dff 0%, #00bd55 100%);
	background: -o-linear-gradient(45deg, #207dff 0%, #00bd55 100%);
	background: -ms-linear-gradient(45deg, #207dff 0%, #00bd55 100%);
	background: linear-gradient(45deg, #207dff 0%, #00bd55 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#207dff', endColorstr='#00bd55', GradientType=1);
}



/* 面包屑:设定文字内容显示的(高度)范围 */
.breadcrumbs-wrap .slider-text {
	height: 400px;
}

.breadcrumbs-wrap .slider-text h1 {
	font-weight: 400;
	font-size: 40px;
}

.breadcrumbs-wrap .slider-text h1 {
	color: #fff;
	line-height: 1.2;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 60px;
	font-weight: 800;
}

@media (max-width: 991.98px) {
	.breadcrumbs-wrap .slider-text h1 {
		font-size: 40px;
	}
}

.breadcrumbs-wrap .slider-text h1 span {
	color: #00bd56;
}

.breadcrumbs-wrap .slider-text .subheading {
	font-size: 15px;
	color: #00bd56;
	text-transform: uppercase;
	font-family: "Montserrat", Arial, sans-serif;
	font-weight: 700;
	letter-spacing: 2px;
}

.breadcrumbs-wrap .slider-text p {
	font-size: 18px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs-wrap .slider-text p strong {
	font-weight: 700;
}

.breadcrumbs-wrap .slider-text p strong a {
	color: #000000;
}

.breadcrumbs-wrap .slider-text .breadcrumbs {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 20px;
	z-index: 99;
}

.breadcrumbs-wrap .slider-text .breadcrumbs span {
	color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs-wrap .slider-text .breadcrumbs span i {
	color: rgba(255, 255, 255, 0.3);
}

.breadcrumbs-wrap .slider-text .breadcrumbs span a {
	color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs-wrap .slider-text .breadcrumbs span a:hover,
.breadcrumbs-wrap .slider-text .breadcrumbs span a:focus {
	color: #00bd56;
}

.breadcrumbs-wrap .slider-text .breadcrumbs span a:hover i,
.breadcrumbs-wrap .slider-text .breadcrumbs span a:focus i {
	color: #00bd56;
}

/* ================[首页标题]样式设置================= */


.hero-wrap {
	width: 100%;
	height: 100%;
	position: inherit;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	position: relative;
}

@media (max-width: 1199.98px) {
	.hero-wrap {
		background-position: center center !important;
	}
}

.hero-wrap .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	opacity: .1;
	background: #000000;
}


.hero-wrap .slider-text h1 {
	color: #fff;
	line-height: 1.2;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 60px;
	font-weight: 800;
}

@media (max-width: 991.98px) {
	.hero-wrap .slider-text h1 {
		font-size: 40px;
	}
}

.hero-wrap .slider-text h1 span {
	color: #00bd56;
}


.hero-wrap .slider-text p {
	font-size: 18px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.7);
}



/* 按钮样式 */
.bg-light {
	background: #f8f9fd !important;
}

.bg-secondary {
	background: #207dff !important;
}

.bg-primary {
	background: #00bd56 !important;
}

.btn {
	padding: 12px 16px;
	cursor: pointer;
	border-radius: 4px;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
}

.btn:hover,
.btn:active,
.btn:focus {
	outline: none;
}

.btn.btn-primary {
	background: #00bd56;
	border: 1px solid #00bd56;
	color: #fff;
}

.btn.btn-primary:hover {
	border: 1px solid #00bd56;
	background: transparent;
	color: #00bd56;
}

.btn.btn-primary.btn-outline-primary {
	border: 1px solid #00bd56;
	background: transparent;
	color: #00bd56;
}

.btn.btn-primary.btn-outline-primary:hover {
	border: 1px solid transparent;
	background: #00bd56;
	color: #fff;
}

.btn.btn-white {
	background: #fff;
	border: 1px solid #fff;
	color: #000000;
}

.btn.btn-white:hover {
	border: 1px solid #fff;
	background: transparent;
	color: #fff;
}

.btn.btn-white.btn-outline-white {
	border: 1px solid #fff;
	background: transparent;
	color: #fff;
}

.btn.btn-white.btn-outline-white:hover {
	border: 1px solid transparent;
	background: #fff;
	color: #000000;
}

/* ================[动态数字]样式设置================= */

#section-counter {
	position: relative;
	z-index: 0;
}

.ca-counter {
	overflow-x: hidden;
	position: relative;
	padding: 4em 0;
	background: #00bd56;
}

@media (max-width: 1199.98px) {
	.ca-counter {
		background-position: center center !important;
	}
}

.ca-counter .block-18 {
	display: block;
	width: 100%;
}

@media (max-width: 991.98px) {
	.ca-counter .block-18 {
		margin-bottom: 2em;
	}
}

.ca-counter .text {
	position: relative;
}

@media (max-width: 767.98px) {
	.ca-counter .text {
		width: 100%;
	}
}

.ca-counter .text .number {
	line-height: 1;
	font-weight: 700;
	font-size: 50px;
	color: #fff;
	display: block;
	margin-bottom: 10px;
}

.ca-counter .text span {
	font-size: 17px;
	color: #fff;
}

@media (max-width: 767.98px) {
	.ca-counter .counter-wrap {
		margin-bottom: 20px;
	}
}

/* ================[客户反馈]样式设置================= */

.testimony-section {
	overflow: visible;
	z-index: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: top center;
	position: relative;
}

@media (max-width: 1199.98px) {
	.testimony-section {
		background-position: center center !important;
	}
}

.testimony-section .overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: '';
	opacity: .1;
	background: #fff;
	z-index: -1;
}

.testimony-section .owl-carousel {
	margin: 0;
}

.testimony-section .owl-carousel .owl-stage-outer {
	padding: 20px 0 2em 0;
	position: relative;
}

.testimony-section .owl-nav {
	position: absolute;
	top: 100%;
	width: 100%;
}

.testimony-section .owl-nav .owl-prev,
.testimony-section .owl-nav .owl-next {
	position: absolute;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	margin-top: -10px;
	outline: none !important;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 0;
}

.testimony-section .owl-nav .owl-prev span:before,
.testimony-section .owl-nav .owl-next span:before {
	font-size: 30px;
	color: rgba(0, 0, 0, 0.5);
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.testimony-section .owl-nav .owl-prev:hover span:before,
.testimony-section .owl-nav .owl-prev:focus span:before,
.testimony-section .owl-nav .owl-next:hover span:before,
.testimony-section .owl-nav .owl-next:focus span:before {
	color: #fff;
}

.testimony-section .owl-nav .owl-prev {
	left: 50%;
	margin-left: -80px;
}

.testimony-section .owl-nav .owl-next {
	right: 50%;
	margin-right: -80px;
}

.testimony-section:hover .owl-nav .owl-prev,
.testimony-section:hover .owl-nav .owl-next {
	opacity: 1;
}

.testimony-section:hover .owl-nav .owl-prev {
	left: 50%;
	margin-left: -80px;
}

.testimony-section:hover .owl-nav .owl-next {
	right: 50%;
	margin-right: -80px;
}

.testimony-section .owl-dots {
	text-align: center;
}

.testimony-section .owl-dots .owl-dot {
	width: 10px;
	height: 10px;
	margin: 5px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
}

.testimony-section .owl-dots .owl-dot.active {
	background: #00bd56;
}


.testimony-wrap {
	display: block;
	position: relative;
	background: white;
	padding: 0 20px;
	border-radius: 5px;
	border: 1px solid rgba(0, 0, 0, 0.02);
	-webkit-box-shadow: 0px 30px 33px -41px rgba(0, 0, 0, 0.24);
	-moz-box-shadow: 0px 30px 33px -41px rgba(0, 0, 0, 0.24);
	box-shadow: 0px 30px 33px -41px rgba(0, 0, 0, 0.24);
}

.testimony-wrap .icon {
	position: absolute;
	top: -20px;
	left: 20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #00bd56;
}

.testimony-wrap .icon span {
	color: #fff;
}

.testimony-wrap .user-img {
	width: 80px;
	height: 80px;
	position: relative;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
}

.testimony-wrap .name {
	font-weight: 500;
	font-size: 20px;
	margin-bottom: 0;
	color: #000000;
}

.testimony-wrap .position {
	font-size: 14px;
	color: #333333;
}

/* ================[页尾]样式设置================= */

/* 页尾:设定背景色 */
.footer {
	background: #1a1a1a;
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding: 7em 0;
}

.footer a {
	color: #00bd56;
}

.footer p {
	color: rgba(255, 255, 255, 0.6);
}

.footer .copyright {
	color: rgba(255, 255, 255, 0.3);
	color: #999999;
}

/* 页尾:设定标题样式 */
.footer .footer-heading {
	font-size: 22px;
	margin-bottom: 30px;
	font-weight: 700;
	color: #fff;
	position: relative;
}

/* 页尾:再标题后面添加一个绿色的装饰线 */
.footer .footer-heading:after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 40px;
	height: 4px;
	background: #00bd56;
}

.footer ul.list-unstyled li a {
	color: rgba(255, 255, 255, 0.7);
}

.footer .block-21 .img {
	display: block;
	height: 80px;
	width: 80px;
}

.footer .block-21 .text {
	width: calc(100% - 100px);
}

.footer .block-21 .text .heading {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
}

.footer .block-21 .text .heading a {
	color: #fff;
}

.footer .block-21 .text .heading a:hover,
.footer .block-21 .text .heading a:active,
.footer .block-21 .text .heading a:focus {
	text-decoration: none;
}

.footer .block-21 .text .meta>div {
	display: inline-block;
	font-size: 12px;
	margin-right: 5px;
}

.footer .block-21 .text .meta>div a {
	color: gray;
}

.footer .block-23 ul li {
	color: rgba(255, 255, 255, 0.6);
}

.footer .block-23 ul li a {
	color: rgba(255, 255, 255, 0.6);
}

.footer .block-23 ul li .icon {
	color: rgba(255, 255, 255, 0.4);
}

.footer .ca-footer-social li a {
	background: rgba(255, 255, 255, 0.1);
	color: #00bd56;
}

/* 页尾:设定社交图标的样式 */
.ca-footer-social li {
	list-style: none;
	margin: 0 10px 0 0;
	display: inline-block;
}

.ca-footer-social li a {
	height: 40px;
	width: 40px;
	display: block;
	float: left;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	position: relative;
}

.ca-footer-social li a span {
	position: absolute;
	font-size: 20px;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.ca-footer-social li a:hover {
	color: #fff;
}



/* 图片，博客图片，用户图片，缩放居中显示 */
.img,
.blog-img,
.user-img {
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}



.block-23 ul {
	padding: 0;
}

.block-23 ul li,
.block-23 ul li>a {
	display: table;
	line-height: 1.5;
	margin-bottom: 15px;
}

.block-23 ul li span {
	color: rgba(255, 255, 255, 0.7);
}

.block-23 ul li .icon,
.block-23 ul li .text {
	display: table-cell;
	vertical-align: top;
}

.block-23 ul li .icon {
	width: 40px;
	font-size: 18px;
	padding-top: 2px;
	color: white;
}

.footer .copyright a {
	font-size: 1rem;
}

/*  ==================[分区]样式设置=================== */

.ca-section {
	padding: 7em 0;
	position: relative;
}

@media(max-width: 767.98px) {
	.ca-section {
		padding: 6em 0;
	}
}

/* section{
	height: 400px;
} */


/*  ==================[实验]样式设置=================== */
/* 通配符选择器 */
* {
	/* 边缘距离 */
	margin: 0;
	/* 内边距、边框和内容间的距离 */
	padding: 0;
}

/* 行级元素 */
.paging a {
	/* 对齐元素中的文本 */
	text-align: center;
	/* 向文本添加修饰 */
	text-decoration: none;
	/* 字体大小 */
	font-size: 14px;
	/* 字体颜色 */
	color: #333;
	/* 边框属性 */
	border: 1px solid #ccc;
	/* 设置行高 */
	line-height: 36px;
	/* 背景色 */
	background-color: #f7f7f7;
	/* 行内元素转为行内块元素 */
	display: inline-block;
	width: 36px;
	height: 36px;

}

.paging .prev,
.paging .next {
	width: 85px;
}

.paging .current,
.paging .elp {
	background-color: #fff;
	border: none;
}

/*行内块元素*/
input {
	width: 45px;
	height: 36px;
	border: 1px solid #ccc;
	outline: none;
}

button {
	width: 60px;
	height: 36px;
	background-color: #f7f7f7;
	border: 1px solid #ccc;
}

/* ==================[相册]样式设置=================== */

.photo {
	width: 350px;
	height: 270px;
	margin: 30px;
	background-image: no-repeat center center;
	background-size: cover;
	position: relative;
}

.mask {
	/* 隐藏遮罩层元素 */
	display: none;
	/* visibility:visible; */
	/* 默认值 */
	/* visibility:hidden; */
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.3);
	position: absolute;
	top: 0px;
	left: 0px;
}

.photo:hover .mask {
	/* 鼠标滑过的时候，让遮罩层显示出来 */
	/* 原来它就是一个div元素 */
	display: block;
}

/* 调整文字的位置 */
.text1 span {
	color: #D3D3D3;
	position: absolute;
	bottom: 50px;
	left: 20px;

}

.text1 a {
	color: white;
	text-decoration: none;
	position: absolute;
	left: 20px;
	bottom: 20px;
}

.larger {
	/* 把行内元素a标签设置成块元素 */
	/* display: block; */
	/*元素设定了绝对定位和固定定位，元素类型默认变为块级元素，可以直接定义高宽 display可以省略*/
	width: 50px;
	height: 50px;
	border-radius: 50%;
	/* 背景复合属性:背景图片地址 背景平铺 背景附着 背景位置 */
	background: url(./images/larger.png) #00bd56 no-repeat center;
	background-size: 15px;

	/* 设定居中显示 */
	/* 圆心距离父系顶部距离: (270-50)/2 = 110 */
	/* margin: 110px auto;*/

	/* 使用绝对定位也能实现相同效果 */
	position: absolute;
	/* 当前的子元素相对于父元素偏移高度 */
	top: 50%;
	/* 距离父元素上边距50%的地方 */
	margin-top: -25px;
	/* 子元素通过顶部外边距，向上移动自身元素高度的一半，负值表示向上 */
	left: 50%;
	margin-left: -25px;

	/* 更改鼠标样式 */
	/* curse:nesw-resize */
	cursor: zoom-in;
}

.container-1 {
	width: 1140px;
	margin: 0px auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
	/* 调整行列间距 */
	grid-gap: 25px 10px;
	/* 内容居中显示 */
	justify-items: center;
}






/* ==================[参考资料]样式设置=================== */

.contact p {
	/* 定义字体(系列) */
	font-family: "宋体", Arial, sans-serif;
	background: #fff;
	/* 字体大小 */
	font-size: 21px;
	color: #333;
	/* text-align: center; */
	/* 行高 */
	line-height: 1.8;
	font-weight: 400;
	/* 背景色 灰色*/
	/* background-color: lightgray; */
	/* 文字间距 */
	letter-spacing: 1px;
}

.highlight {
	background-color: yellow;
	/* 背景颜色设置为黄色 */
}

.highblue {
	background-color: greenyellow;
	/* 背景颜色设置为绿色 */
}

#author {
	/* 首行缩进 */
	/* text-indent: 2em; */
	/* 字体风格：正常 或 斜体
	/* font-style: italic; */
	/* 字体粗细 */
	/* font-weight: bold; */
}

/* 字体颜色设置 */
.font1 {
	color: #800080;
}

.font2 {
	color: #FF0000;
}

.font3 {
	color: #C83C23;
}

.font4 {
	color: #0000FF;
}

.font5 {
	color: #339433;
}

.font6 {
	color: #9F5F9F;
}

/* 下划线设置 */
.custom-underline {
	text-decoration: none;
	/* 去掉默认下划线 */
	position: relative;
	/* 为了能够使用绝对定位 */
	display: inline-block;
	/* 使块级元素能够改变其尺寸 */
}

.custom-underline:after {
	content: '';
	/* 创建伪元素 */
	position: absolute;
	/* 绝对定位 */
	left: 0;
	/* 从左侧开始 */
	right: 0;
	/* 扩展到右侧 */
	bottom: 5px;
	/* 下划线高度与文本之间的距离 */
	height: 1px;
	/* 下划线的高度，调整为适合的粗细 */
	background-color: black;
	/* 下划线的颜色 */
}

/* 分页设置 */


.paging .prev,
.paging .next {
	width: 85px;
}

.paging .current,
.paging .elp {
	background-color: #fff;
	border: none;
}

/*行内块元素*/
input {
	width: 45px;
	height: 36px;
	border: 1px solid #ccc;
	outline: none;
}

button {
	width: 60px;
	height: 36px;
	background-color: #f7f7f7;
	border: 1px solid #ccc;
}


/* ================[教师]样式设置================= */


.staff {
	overflow: hidden;
	border-radius: 4px;
	margin-bottom: 30px;
	-webkit-box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.05);
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.staff .img-wrap {
	height: 300px;
}

/* 教师:调整员工头像位置 */
.staff .img {
	width: 100%;
	display: block;
	background-position: top center;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/* 教师:文本颜色动画 */
.staff .text {
	position: relative;
	background: #fff;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}


/* 教师:标题颜色动画 */
.staff .text h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 0;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: #000000;
	margin-bottom: 5px;
}

.staff .text .position {
	color: #00bd56;
	display: block;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 10px;
	font-size: 14px;
}

.staff .text .faded {
	opacity: 1;
}

/* 教师:设置社交媒体图标动画 */
.staff .ca-social {
	position: absolute;
	top: -50px;
	left: 0;
	right: 0;
	padding: 15px 10px;
	background: transparent;
	opacity: 0;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.staff .ca-social li {
	width: 30px;
	height: 30px;
	position: relative;
}

.staff .ca-social li a {
	color: #fff;
	width: 30px;
	height: 30px;
	background: #00bd56;
	background: #207dff;
	background: -moz-linear-gradient(45deg, #207dff 0%, #00bd55 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, #207dff), color-stop(100%, #00bd55));
	background: -webkit-linear-gradient(45deg, #207dff 0%, #00bd55 100%);
	background: -o-linear-gradient(45deg, #207dff 0%, #00bd55 100%);
	background: -ms-linear-gradient(45deg, #207dff 0%, #00bd55 100%);
	background: linear-gradient(45deg, #207dff 0%, #00bd55 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#207dff', endColorstr='#00bd55', GradientType=1);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
}

.staff:hover,
.staff:focus {
	-webkit-box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.11);
	-moz-box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.11);
	box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.11);
}

.staff:hover .ca-social,
.staff:focus .ca-social {
	opacity: 1;
	top: -60px;
}

/* 员工头像向上移动10px */
.staff:hover .img,
.staff:focus .img {
	margin-top: -10px;
}

.staff:hover .text,
.staff:focus .text {
	background: #00bd56;
	color: rgba(255, 255, 255, 0.8);
}

.staff:hover .text h3,
.staff:focus .text h3 {
	color: #fff;
}

.staff:hover .text .position,
.staff:focus .text .position {
	color: rgba(255, 255, 255, 0.4);
}


.ca-social {
	padding: 0;
}

.ca-social li {
	list-style: none;
	margin-right: 20px;
	display: inline-block;
}