/* 合作伙伴的css样式 */

/* 合作伙伴的全部内容所在的div块  */
.he_quan_div{
	width:1100px;height: 650px;margin: 0px auto;padding: 30px 0px 0px 0px;
}
/* 左侧关于我们div底色样式 */
.he_zuo_guanyuwomendivdise{
	width: 230px;height: 90px; background: #4B1141;text-align: center; float: left;
}
/* 左侧关于我们的文字位置 样式 */
.he_zuo_guanyuwomenweizhi{
	width: 150px;height: 90px;margin: auto; padding: 10px 0px 0px 0px;
}
/* 左侧关于我们  四个子的文字样式 */
.he_zuo_guanyuwomen{
	color: #fff;font-size: 28px;font-family: '微软雅黑';
}
/* About us 的文字样式 */
.he_zuo_about{
	color: #fff;font-size: 28px;font-family: arial;
}
/* 右侧合作伙伴文字和位置 样式 */
.he_you_heZuoDiv{
	color:#000; width: 400px;height: 89px;float: left; margin-left: 30px;line-height: 147px;font-size: 20px;border-bottom: 2px solid #000;
}
/* 右侧您的位置  文字和div样式 */
.he_you_weiZhiDiv{
	color:#000; width: 440px;height: 89px;float: left;line-height: 152px;font-size: 15px;border-bottom: 2px solid #000;
}
/* 左侧超链接div底色 */
.he_zuo_chaoLianJieDiSe{
	width: 230px;height: 330px;background: #ddd;text-align: center;line-height: 40px;float: left;margin-top: -1px;
}
/* 左侧虚线 */
.he_zuo_xuxian{
	border: 1px dashed #666;width: 170px;
}
/* 右侧详细内容所在 的div块 */
.he_you_neiRongDiv{
	width: 870px;height: 500px;float: right;
}
/* 详细内容（图片）的div底色he边框 */
.he_you_neiRongDiKuang{
	width: 258px;height: 130px;border: 1px solid #000;background: #ddd;float: left;margin-left:30px ;margin-top: 30px;text-align: center;position:relative;overflow: hidden;
}
.he_you_neiRongDiv img{
  cursor: pointer;
  transition: all 0.6s;
}
.he_you_neiRongDiv img:hover{
  transform: scale(1.3);
}




/* 详细内容的图片样式 */
.he_you_neiRongTuPian{
	margin: auto;  position: absolute;  top: 0; left: 0; bottom: 0; right: 0;
}
/* 详细内容的内码div */
.he_you_yeMa{
	width: 840px;height: 30px;float: left;margin-left:30px ;margin-top: 10px;text-align: center;line-height: 30px;
}




























.wrapper {
	width: 258px;
	height: 130px;
	background: #ddd;
	float: left;
	margin-left: 30px;
	margin-top: 30px;
	text-align: center;
	position: relative;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.wrapper .row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 10px 0;
}

.button {
	position: relative;
	cursor: pointer;
	color: white;
	font-family: "Lato";
	font-size: 1.5em;
	padding: 0px;
}

.button .inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.button:before,
.button:after,
.button .row .inner:before,
.button .row .inner:after {
	background-color: #481940;
}

.button:before,
.button:after,
.button .inner:before,
.button .inner:after {
	position: absolute;
	content: "";
	display: block;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

.button.horizontal:before,
.button.horizontal:after,
.button.both:before,
.button.both:after {
	left: 0;
	width: 100%;
	height: 2px;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
}

.button.horizontal .inner:before,
.button.horizontal .inner:after,
.button.both .inner:before,
.button.both .inner:after {
	top: 0;
	width: 2px;
	height: 100%;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
}

.button.horizontal .inner:before,
.button.both .inner:before {
	left: 0;
}

.button.horizontal .inner:after,
.button.both .inner:after {
	right: 0;
}

.button.horizontal .inner:hover:before,
.button.horizontal .inner:hover:after,
.button.both .inner:hover:before,
.button.both .inner:hover:after {
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}

.button.horizontal:before,
.button.both:before {
	top: 0;
}

.button.horizontal:after,
.button.both:after {
	bottom: 0;
}

.button.horizontal:hover:before,
.button.horizontal:hover:after,
.button.both:hover:before,
.button.both:hover:after {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.button.horizontal:hover .inner:before,
.button.horizontal:hover .inner:after,
.button.both:hover .inner:before,
.button.both:hover .inner:after {
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}

.button.horizontal.clockwise .inner:before,
.button.both.clockwise .inner:before {
	-webkit-transform-origin: top center;
	transform-origin: top center;
}

.button.horizontal.clockwise .inner:after,
.button.both.clockwise .inner:after {
	-webkit-transform-origin: bottom center;
	transform-origin: bottom center;
}

.button.horizontal.clockwise:before,
.button.both.clockwise:before {
	-webkit-transform-origin: right center;
	transform-origin: right center;
}

.button.horizontal.clockwise:after,
.button.both.clockwise:after {
	-webkit-transform-origin: left center;
	transform-origin: left center;
}

.button.horizontal.clockwise:hover .inner:before,
.button.both.clockwise:hover .inner:before {
	-webkit-transform-origin: bottom center;
	transform-origin: bottom center;
}

.button.horizontal.clockwise:hover .inner:after,
.button.both.clockwise:hover .inner:after {
	-webkit-transform-origin: top center;
	transform-origin: top center;
}

.button.horizontal.clockwise:hover:before,
.button.both.clockwise:hover:before {
	-webkit-transform-origin: left center;
	transform-origin: left center;
}

.button.horizontal.clockwise:hover:after,
.button.both.clockwise:hover:after {
	-webkit-transform-origin: right center;
	transform-origin: right center;
}

.button.horizontal.counterclockwise .inner:before,
.button.both.counterclockwise .inner:before {
	-webkit-transform-origin: bottom center;
	transform-origin: bottom center;
}

.button.horizontal.counterclockwise .inner:after,
.button.both.counterclockwise .inner:after {
	-webkit-transform-origin: top center;
	transform-origin: top center;
}

.button.horizontal.counterclockwise:before,
.button.both.counterclockwise:before {
	-webkit-transform-origin: left center;
	transform-origin: left center;
}

.button.horizontal.counterclockwise:after,
.button.both.counterclockwise:after {
	-webkit-transform-origin: right center;
	transform-origin: right center;
}

.button.horizontal.counterclockwise:hover .inner:before,
.button.both.counterclockwise:hover .inner:before {
	-webkit-transform-origin: top center;
	transform-origin: top center;
}

.button.horizontal.counterclockwise:hover .inner:after,
.button.both.counterclockwise:hover .inner:after {
	-webkit-transform-origin: bottom center;
	transform-origin: bottom center;
}

.button.horizontal.counterclockwise:hover:before,
.button.both.counterclockwise:hover:before {
	-webkit-transform-origin: right center;
	transform-origin: right center;
}

.button.horizontal.counterclockwise:hover:after,
.button.both.counterclockwise:hover:after {
	-webkit-transform-origin: left center;
	transform-origin: left center;
}