/* 基础的样式设定 */
body {
	font-family: "Montserrat", Arial, sans-serif;
	background-color: #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.9);
	font-weight: 400;
}

.warp {
	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);

}

.warp {
	z-index: 1;
}

.warp {
	color: #fff;
}

.warp .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: #00bd56;
	border-color: #00bd56;
}

.social-media p a:hover span {
	color: #fff;
}



/* 菜单栏:背景色设置 */
.navbar {
	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);
}

@media (max-width991.98px) {
	.navbar {
		background: #fff;
		position: relative;
		top: 0;
		padding: 10px 15px;
	}
}

/* 菜单:品牌名称字号设置 */
.navbar .navbar-brand {
	color: #000000;
	font-weight: 800;
	font-size: 28px;
	line-height: 1;
}

.navbar .navbar-brand span {
	color: #00bd56;
}

.navbar .navbar-brand:hover,
.navbar .navbar-brand:focus {
	color: #000000;
}

/* 菜单:不同屏幕尺寸时，相对位置 */
@media (max-width: 767.98px) {
	.navbar-light .navbar-brand {
		margin: 10px 0;
	}
}

@media (max-width: 991.98px) {
	.navbar-light .navbar-nav {
		padding-bottom: 10px;
	}
}

/* 菜单:调整链接文字样式 */
.navbar .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高度的伪元素 */
.navbar .navbar-nav>.nav-item>.nav-link:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0px;
	left: 0;
	background-color: #00bd56;

	/* 默认设置为隐藏 */
	visibility: hidden;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-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;
}

.navbar .navbar-nav>.nav-item>.nav-link:hover {
	color: #00bd56;
}

/* 鼠标划过菜单项时,为元素设置显示 */
.navbar .navbar-nav>.nav-item>.nav-link:hover:before {
	visibility: visible;
	background-color: #00bd56;
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}


/* 菜单:菜单项被选中(激活)状态的样式 */
.navbar .navbar-nav>.nav-item.active>a {
	color: #00bd56;
}


.navbar .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) {
	.navbar .navbar-nav>.nav-item.active>a {
		color: #000000;
	}

	.navbar .navbar-nav>.nav-item.active>a:before {
		display: none;
	}
}

/* 面包屑样式设置 */
.breadcrumbs-wrap {
	height: 500px;
}

.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: 500px;
}

.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;
}
/* ================[section中文章]样式设置================= */
.mb-30 {
  margin-bottom: 30px;
}
.padDiv {
  padding: 30px 20px;
}

/* ================[页尾]样式设置================= */

/* 页尾:设定背景色 */
.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: 20px;
	margin-bottom: 30px;
	font-weight: 800;
	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;
}


/* section{
	height: 400px;
} */
/* ================[兽医]样式设置================= */


.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: 10px;
	display: inline-block;
}
/* 空白过度 */
.transition-white {
	height: 40px;
}

/* 第二幅:柔性生产线 */
.parts {
	height: 1200px;
	background-image: url("../images/jijin.jpg");
	background-color: #ADD8E6;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
}

.parts >.btn {
	width: 150px;
	height: 80px;
	line-height: 75px;
	background-color: lightblue;
	color: white;
	font-size: 25px;
	text-align: center;
	border-radius: 5px;
}
