@charset "utf-8";
/*----公司简介----*/
#content .profile {
	line-height:1.6;
}
#content .profile ul {
	margin-bottom: 1.5rem;
}
#content .profile ul li {
	list-style: disc;
	list-style-position: outside;
	margin-left: 17px;
}
#content .profile>h2 {
	font-size:2rem;
	margin-bottom: 10px;
}
#content .profile>h3 {
	font-size:1.8rem;
	margin-bottom: 8px;
}
#content .profile>p {
	margin-bottom: 1.5rem;
}
#content .profile>img {
	margin-right: 15px;
	-webkit-border-radius: .3em;
	-moz-border-radius: .3em;
	border-radius: .3em;
}
/*----旋转木马轮播---*/
#content .profile .company-active {
	width: 100%;
	margin: 0 auto;
	padding:20px;
	position: relative;
}
.company-active .col {
	text-align: center;
	padding: 0 10px;
	position: relative;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
.company-active .col .single-brand {
	border: 1px solid #e6e6e6;
	-webkit-border-radius: .5rem;
	-moz-border-radius: .5rem;
	border-radius: .5rem;
	position: relative;
	overflow: hidden;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
.company-active .col .single-brand img {
	width: 100%;
	vertical-align: middle;
	text-align: center;
	-webkit-transition: transform 0.6s ease 0s;  /*过渡效果，所有属性改变|变换延续的时间0.6秒|逐渐变慢*/
	-moz-transition: transform 0.6s ease 0s;
	-o-transition: transform 0.6s ease 0s;
	transition: transform 0.6s ease 0s;
}
.company-active .col .single-brand:hover img {
	-webkit-transform: scale(1.1, 1.1); /*放大1.1倍*/
	-moz-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}
.company-active .col .single-brand .cover {
	color: #fff;
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	line-height: 28px;
	height: 28px;
	background-color: rgba(51, 51, 51, 0.6);
}
/*--箭头---*/
.owl-carousel .owl-controls .owl-nav div {
	background: #fff none repeat scroll 0 0;
	border: 2px solid #ebebeb;
	border-radius: 0;
	color: #ebebeb;
	font-size: 18px;
	height: 40px;
	left:0;
	/*left: -30px;*/
	line-height: 34px;
	margin-top: -20px;
	opacity: 0;
	padding: 0;
	position: absolute;
	text-align: center;
	top: 50%;
	transition: all 400ms ease-in 0s;
	width: 40px;
}
.owl-carousel .owl-controls .owl-nav div.owl-next {
	left: auto;
	right:0;
	/*right: -30px;*/
}
.owl-carousel:hover .owl-controls .owl-nav div {
	opacity: 1
}
.owl-carousel .owl-controls .owl-nav div:hover {
	color: #0067ac;
	border-color: #0067ac;
}