/*banner背景图片动画*/
@-webkit-keyframes scale-bg {
	from {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes scale-bg {
	from {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

/*banner */
.index_main {
	background: #f7f7f7;
}

.index_main .section1 {
	position: relative;
}

.index_main .section1 .index_banner .item {
	background-size: cover;
	-webkit-background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100vh;
	position: relative;
}

.index_main .section1 .index_banner .item.slick-current .scaleBg {
	visibility: visible;
	/* -webkit-animation:scale-bg 6s linear forwards;
	animation:scale-bg 6s linear forwards; */
}

.index_main .section1 .index_banner .items {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.index_main .section1 .index_banner .items:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	/*background: rgba(0,0,0,0.2);*/
}

.index_main .section1 .index_banner .item .inner .block_txt {
	position: absolute;
	top: 44%;
	right: 10px;
	left: 10px;
	opacity: 0;
	transform: translateY(40px);
	-webkit-transform: translateY(40px);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.index_main .section1 .index_banner .item.active .inner .block_txt {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 100ms;
	transition-delay: 100ms;
}

.index_main .section1 .index_banner .item .inner .block_txt h4 {
	font-size: 30px;
	color: #fff;
	text-align: center;
	font-family: 'COCO';
}

.index_main .section1 .index_banner .item .inner .block_txt h2 {
	color: #fff;
	font-size: 60px;
	font-weight: bold;
	text-align: center;

}

.index_main .section1 .index_banner .item .inner .block_txt h2 span {
	color: #d30d19;
	display: inline-block;

}

.index_main .section1 .index_banner .item .inner .block_txt h3 {
	color: #fff;
	font-size: 42px;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 50px;
	letter-spacing: 3px;
}

.index_main .section1 .slick_txt {
	width: 30%;
	height: 100%;
	background-color: transparent;
	transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	font-size: 0;
	outline: none;
	border: 0;
}

.index_main .section1 .left {
	left: 0;
}

.index_main .section1 .right {
	right: 0;
}

.index_main .section1 .slick_txt:hover .slick_arrow {
	opacity: 1;
	visibility: visible;
}

.index_main .section1 .slick_txt .slick_arrow {
	width: 20px;
	height: 36px;
	background-repeat: no-repeat;
	background-position: center;
	margin-top: -18px;
	position: absolute;
	top: 50%;
	cursor: pointer;
	transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	opacity: 0;
	visibility: hidden;
}

.index_main .section1 .slick_txt .prev {
	background-image: url(../images/ban_prev.png);
	left: 60px;
}

.index_main .section1 .slick_txt .next {
	background-image: url(../images/ban_next.png);
	right: 60px;
}

.index_main .section1 .slick_txt .prev:hover {
	background-image: url(../images/ban_prev_hover.png);
}

.index_main .section1 .slick_txt .next:hover {
	background-image: url(../images/ban_next_hover.png);
}

.index_main .section1 .number {
	position: absolute;
	bottom: 8%;
	left: 50%;
	padding-bottom: 5px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	display: table;
	padding: 0 20px;
	width: auto;
	text-align: center;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.index_main .section1 .number span {
	font-family: "Myriad Pro", "Microsoft YaHei";
	font-size: 14px;
	color: #fff;
	margin-right: 100px;
	display: inline-block;
	cursor: pointer;
	position: relative;
	transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
}

.index_main .section1 .number span:last-child {
	margin-right: 0;
}

.index_main .section1 .number span:after {
	content: "";
	display: inline-block;
	width: 0;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	bottom: -20px;
	opacity: 0;
	visibility: hidden;
	transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
}

.index_main .section1 .number span.active:after {
	width: 100%;
	opacity: 1;
	visibility: visible;
}

/* 公司简介 */
.index_main .section2 {
	width: 100%;
	height: 100%;
	background: url(../images/about.jpg) center no-repeat;
	background-size: 100% 100%;
}

.index_main .section2 h3 {
	text-align: center;
}

/* 公司优势 */
.index_main .section3 {
	width: 100%;
	height: 100%;
	background: url(../images/youshi.jpg) center no-repeat;
	background-size: 100% 100%;
}

.index_main .section3 h3 {
	text-align: center;
}

/* 产品展示 */
.index_main .section4 {
	width: 100%;
	height: 100%;
	background: url(../images/product.jpg) center no-repeat;
	background-size: 100% 100%;
}

.index_main .section4 h3 {
	text-align: center;
}
.index_product_mian{
	width: 100%;
	height: auto;
	overflow: hidden;
	margin: 50px auto;
}
.index_product_mian_box{
	width: 100%;
	height: auto;
	overflow: hidden;
}
.index_product_mian_box img{
	max-width: 100%;
}
.index_product_mian_box span{
	display: block;
	text-align: center;
	line-height: 45px;
	font-size: 18px;
}

/* 合作伙伴 */
.index_main .section5 {
	width: 100%;
	height: 100%;
	background: url(../images/hezuo.jpg) center no-repeat;
	background-size: 100% 100%;
}

.index_main .section5 h3 {
	text-align: center;
}

/* 新闻资讯 */
.index_main .section6 {
	width: 100%;
	height: 100%;
	background: url(../images/news.jpg) center no-repeat;
	background-size: 100% 100%;
}

/* .index_main .section6 h3{
	text-align: center;
} */

/* 联系我们 */
.index_main .section7 {
	width: 100%;
	height: 100%;
	background: url(../images/contact.jpg) center no-repeat;
	background-size: cover;
}

/* .index_main .section7 h3{
	text-align: center;
} */






@media only screen and (max-width: 1600px) {
	.index_main .section1 .index_banner .item .inner .block_txt h4 {
		font-size: 28px;
	}

	.index_main .section1 .index_banner .item .inner .block_txt h2 {
		font-size: 60px;
	}

	.index_main .section1 .index_banner .item .inner .block_txt h3 {
		font-size: 20px;
	}
}

@media only screen and (max-width: 1440px) {
	.index_main .section1 .index_banner .item .inner .block_txt h4 {
		font-size: 24px;
	}

	.index_main .section1 .index_banner .item .inner .block_txt h2 {
		font-size: 40px;
	}

	.index_main .section1 .index_banner .item .inner .block_txt h3 {
		font-size: 18px;
		margin-top: 5px;
	}
}

@media only screen and (max-width: 1366px) {
	.index_main .section1 .index_banner .item .inner .block_txt h4 {
		font-size: 20px;
	}

	.index_main .section1 .index_banner .item .inner .block_txt h2 {
		font-size: 26px;
	}

	.index_main .section1 .index_banner .item .inner .block_txt h3 {
		font-size: 16px;
	}

	.index_main .section1 .index_banner .slick-arrow {
		background-size: auto 30px;
	}
}

@media only screen and (max-width: 1300px) {}

@media only screen and (max-width: 1199px) {
	.index_main .section1 .index_banner .item .inner .block_txt h4 {
		font-size: 18px;
	}

	.index_main .section1 .index_banner .item .inner .block_txt h2 {
		font-size: 22px;
	}

	.index_main .section1 .index_banner .item .inner .block_txt h3 {
		font-size: 14px;
	}
}

@media only screen and (max-width: 992px) {
	.index_main .section1 .index_banner .item {
		height: 100vh;
	}

	.index_main .section1 .index_banner .item .inner .block_txt {
		left: 0;
		right: 0;
		margin: 0 auto;
		padding: 0 20px;
		top: 42%;
	}

	.index_main .section1 .index_banner .slick-arrow {
		display: none !important;
	}

	.index_main .section1 .index_banner .slick-dots {
		position: absolute;
		bottom: 12px;
	}

	.index_main .section1 .index_banner .slick-dots li {
		width: 12px;
		height: 12px;
		border-radius: 50%;
		border: 2px solid #fff;
	}

	.index_main .section1 .index_banner .slick-dots li button {
		display: none;
	}

	.index_main .section1 .index_banner .slick-dots li.slick-active {
		background: #fff;
	}

	.index_main .section1 .number {
		bottom: 12%;
		display: none;
	}

	.index_main .section1 .number span {
		margin-right: 22px;
	}

	.index_main .section1 .number span:after {
		bottom: -14px;
	}

}

@media only screen and (max-width: 767px) {}

@media only screen and (max-width: 340px) {}

@media only screen and (max-width: 320px) {}






@media screen and (min-width: 1200px) {


	/* 公司简介 */
	.index_about {
		width: 1200px;
		height: auto;
	}

	.index_bt {
		width: 1200px;
		margin: 0px auto;
		text-align: center;
		margin-top: 10%;
	}

	.index_bt_cn {
		color: #0e5b9e;
		font-size: 40px;
		font-weight: bold;

	}

	.index_bt_en {
		color: #999;
		font-size: 26px;
	}

	.xian {
		height: 3px;
		width: 80px;
		margin: 10px auto;
		background: #0e5b9e;
	}

	.index_about_main {
		width: 100%;
		height: auto;
		overflow: hidden;
		margin: 30px auto;
		/* background: rgba(255, 255, 255, 0.5); */
	}

	.index_about_left {
		float: left;
		width: 100%;
		height: auto;
		overflow: hidden;
	}

	.index_about_right {
		float: left;
		width: 100%;
		height: auto;
		overflow: hidden;
		margin-top: 50px;
		padding: 50px;
	}

	.index_about_mingzi {

		width: 100%;
		font-size: 26px;
		font-weight: bold;
		color: #333333;
		text-align: center;
	}

	.index_about_right .ge {

		height: 3px;
		width: 80px;
		margin: 30px auto;
		background: #0e5b9e;
	}

	.index_about_right .des {

		width: 100%;
		height: auto;
		overflow: hidden;
		font-size: 16px;
		color: #333333;
		line-height: 35px;
	}

	.index_about_right .des p {
		text-indent: 30px;
	}

	.index_about_right .more {

		width: 150px;
		height: auto;
		line-height: 50px;
		text-align: center;
		border-radius: 30px;
		background: #0e5b9e;
		margin: 50px auto;
	}

	.index_about_right .more a {
		color: #fff;
		display: block;
		font-size: 16px;
	}


	/* 公司优势 */

	.index_youshi {
		width: 100%;
		height: auto;
		overflow: hidden;
	}

	.index_youshi ul li {
		float: left;
	}

	.index_youshi li {
		width: 25%;
		height: 100%;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
	}

	.index_youshi li:nth-child(1) {
		width: 25%;
		height: 100%;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
	}

	.index_youshi li:nth-child(2) {
		width: 25%;
		height: 100%;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 25%;
	}

	.index_youshi li:nth-child(3) {
		width: 25%;
		height: 100%;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 50%;
	}

	.index_youshi li:nth-child(4) {
		width: 25%;
		height: 100%;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 75%;
	}

	.index_youshi li:hover {
		background: rgba(103, 176, 233, 0.5);
	}


	.index_youshi_zhuti {
		width: 80%;
		height: auto;
		text-align: center;
		margin: 0px auto;
		margin-top: 80%;

		transition: 0.5s;

	}

	.index_youshi_zhuti_tp {
		text-align: center;
		margin: 30px auto;
	}

	.index_youshi_zhuti_mz {
		font-size: 30px;
		font-weight: bold;
		color: #ffffff;
	}

	.index_youshi_zhuti_mz em {
		font-size: 50px;
		font-weight: bold;
		font-style: italic;
		color: #ffffff;
		margin-right: 5px;
	}


	.index_youshi_dex {
		display: none;

		width: 85%;
		height: auto;
		line-height: 30px;
		margin: 10px auto;
		text-align: center;
		font-size: 16px;
		color: #ffffff;
	}

	.index_youshi_dex img {
		display: block;
		margin: 30px auto;
	}

	.index_youshi li:hover {
		/* background: rgba(0, 88, 142, 0.5); */
		background: rgba(14, 91, 158, 0.5);
	}

	.index_youshi li:hover .index_youshi_zhuti {
		margin-top: 50%;
	}

	.index_youshi li:hover .index_youshi_dex {
		display: block;
	}


	/* 产品展示 */
	.index_product {
		width: 1200px;
		height: auto;
		margin: 0px auto;
		overflow: hidden;
		margin-top: 20vh;
	}

	.index_product_dbt {
		width: 430px;
		height: auto;
		margin: 0px auto;
		overflow: hidden;
		text-align: center;
		margin-bottom: 5vh;
	}

	.index_product_dbt em {
		float: left;
		width: 3px;
		height: 35px;
		background: #0e5b9e;
		display: block;
		margin: 0px 10px;
	}

	.index_product_dbt_cn {
		float: left;
		width: 150px;
		height: 35px;
		line-height: 35px;
		font-size: 35px;
		font-weight: bold;
		color: #0e5b9e;
	}

	.index_product_dbt_en {
		float: left;
		width: auto;
		height: 35px;
		line-height: 35px;
		font-size: 35px;
		/* font-weight: bold; */
		color: #999999;
	}

	.index_product_main {
		width: 1200px;
		height: auto;
		overflow: hidden;
	}

	#box {
		width: 1200px;
		height: auto;
		overflow: hidden;
		/* margin: 50px auto; */
	}

	#myouter {
		width: 100%;
	}

	#mytab {
		height: 40px;
		width: 100%;
	}

	#mytab li {
		list-style-type: none;
		width: 25%;
		float: left;
		text-align: center;
	}

	#mytab li {
		float: left;
		height: 65px;
		cursor: pointer;
		line-height: 65px;
		font-size: 20px;
		background-color: #CCCCCC;
	}

	#mytab li.current {
		background-color: #0e5b9e;
		color: #fff;
	}

	#mycontent {
		width: 1200px;
		height: auto;
		overflow: hidden;
		background-color: #fff;
	}

	#mycontent ul {
		line-height: 25px;
		display: none;
	}

	.index_product_main_box {
		float: left;
		width: 1200px;
		height: auto;
		overflow: hidden;
		margin: 0px auto;
	}

	.product_box_img {
		float: left;
		width: 610px;
		height: auto;
		overflow: hidden;
	}

	.product_box_img img {
		width: 80%;
	}

	.product_box_txt {
		float: left;
		width: 590px;
		height: auto;
		overflow: hidden;
		margin-top: 3vh;
	}

	.product_box_txt_bt {
		width: 100%;
		font-size: 20px;
		color: #0e5b9e;
		font-weight: bold;
		height: 35px;
		line-height: 35px;
	}

	.product_box_txt_ge {
		float: left;
		height: 3px;
		width: 40px;
		background: #0e5b9e;
		margin: 20px 0px;
	}

	.product_box_txt_syfw {
		float: left;
		width: 100%;
		font-size: 16px;
		color: #333333;
		height: auto;
		overflow: hidden;
		line-height: 35px;
	}

	.product_box_txt_td {
		float: left;
		width: 100%;
		font-size: 16px;
		color: #333333;
		height: auto;
		overflow: hidden;
		line-height: 35px;
	}

	.product_box_txt_td i {
		color: #017cc9;
	}


	/* 合作伙伴 */
	.index_huoban {}

	.index_huoban_dbt {
		width: 430px;
		height: auto;
		overflow: hidden;
		text-align: center;
	}

	.index_huoban_dbt em {
		float: left;
		width: 3px;
		height: 35px;
		background: #0e5b9e;
		display: block;
		margin: 0px 10px;
	}

	.index_huoban_dbt_cn {
		float: left;
		width: 150px;
		height: 35px;
		line-height: 35px;
		font-size: 35px;
		font-weight: bold;
		color: #fff;
	}

	.index_huoban_dbt_en {
		float: left;
		width: auto;
		height: 35px;
		line-height: 33px;
		font-size: 45px;
		/* font-weight: bold; */
		color: #b9d1ea;
	}

	.index_huoban_main {
		width: 1200px;
		height: auto;
		overflow: hidden;
		margin: 0px auto;
	}

	/* 必要布局样式css */
	.o-m {
		background: #f8f8f8;
		width: 1200px;
		margin: 50px auto;
	}

	.o-m .ul-o {
		float: left;
		width: 190px;
		position: relative;
		border-right: 1px solid #80bbe3;
		padding-right: 60px;
	}

	.o-m .ul-o li {
		width: 100%;
		cursor: pointer;
		position: relative;
		z-index: 2;
		margin: 20px 0px;
	}

	/* .o-m .ul-o li:hover{
		background:#d30d19;
	} */
	.o-m .ul-o li p {
		line-height: 35px;
		color: #fff;
		font-size: 18px;
		width: 130px;
		text-align: center;
	}

	.o-m .ul-o li b {
		position: absolute;
		display: block;
		width: 15px;
		height: 32px;
		top: 50%;
		margin-top: -16px;
		right: -15px;
		display: none
	}

	.o-m .ul-o .li-mask {
		background: #d30d19;
		position: absolute;
		left: 0;
		top: 0;
		width: 130px;
		height: 35px;
		margin: 20px 0px;
	}

	.o-m .ul-o li.on b {
		display: block;
	}

	.o-m .ul-t {
		width: 950px;
		float: left;
		height: auto;
		overflow: hidden;
		margin-left: 60px;
	}

	.o-m .ul-t li {
		list-style-type: none;
		position: relative;
		height: 100%;
		display: none;
	}


	.index_huoban_main_box {}

	.huoban_box_bt {
		color: #ffffff;
		font-size: 28px;
		width: 100%;
		height: auto;
		overflow: hidden;
		margin: 20px 0px;
	}

	.huoban_box_des {
		font-size: 16px;
		color: #b8cee9;
		width: 100%;
		height: auto;
		overflow: hidden;
		margin: 20px 0px;
		line-height: 35px;
	}

	.huoban_box_des b {
		font-size: 18px;
		color: #ffffff;
		width: 100%;
		height: auto;
		overflow: hidden;
		margin: 20px 0px;
	}

	.huoban_box_img {
		font-size: 18px;
		color: #ffffff;
		width: 100%;
		height: auto;
		overflow: hidden;
		margin: 20px 0px;
	}

	.huoban_box_img b {
		font-size: 18px;
		color: #ffffff;
		width: 100%;
		height: auto;
		overflow: hidden;
		line-height: 65px;
	}

	.huoban_box_img img {
		float: left;
		margin-right: 30px;
		width: 160px;
		margin-bottom: 20px;
	}


	/* 新闻开始 */
	.index_news {}

	.index_news_dbt {
		width: 430px;
		height: auto;
		overflow: hidden;
		text-align: center;
	}

	.index_news_dbt em {
		float: left;
		width: 3px;
		height: 35px;
		background: #0e5b9e;
		display: block;
		margin: 0px 10px;
	}

	.index_news_dbt_cn {
		float: left;
		width: 150px;
		height: 35px;
		line-height: 35px;
		font-size: 35px;
		font-weight: bold;
		color: #0e5b9e;
	}

	.index_news_dbt_en {
		float: left;
		width: auto;
		height: auto;
		line-height: 35px;
		font-size: 35px;
		/* font-weight: bold; */
		color: #999;
	}

	.index_news_main {
		width: 1200px;
		height: auto;
		overflow: hidden;
		margin: 0px auto;
	}

	/*主体列表*/
	.col-sm-4 {
		float: left;
		position: relative;
		width: 33.33333333%
	}

	.selected-solution {
		position: relative;
		margin: 100px auto 50px;
	}

	.selected-solution .solution-cardlist {
		max-width: 1200px;
		margin: 20px auto 0
	}

	.swiper-slide,
	.swiper-wrapper {
		height: 420px !important
	}

	.selected-solution .solution-cardlist .col-sm-4 {
		padding: 0 10px;
		top: 0;
		transition: all .15s linear;
		box-sizing: border-box
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card {
		height: auto;
		background: #fff;
		border-radius: 6px;
		text-align: left;
		overflow: hidden;
		transition: all .15s linear;
		padding: 20px;
	}
	
	.selected-solution .solution-cardlist .col-sm-4 .solution-card img{
		width: 100%;
	}

	.selected-solution .solution-cardlist .col-sm-4:hover {
		position: relative;
		top: -20px;
		transition: all .25s linear
	}

	.selected-solution .solution-cardlist .col-sm-4:hover .solution-card {
		height: auto;
		box-shadow: 0 10px 40px 0 rgba(0, 0, 0, .1);
		transition: all .2s linear
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card img {
		width: 100%;
		height: 200px;
		transition: all .2s linear
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card h3 {
		margin: 10px auto;
		font-size: 18px;
		color: #252b3a;
		text-align: left;
		line-height: 30px;
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card p {
		margin: 10px auto;
		
		font-size: 14px;
		color: #666a75;
		line-height: 25px;
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card dl {
		margin: 0 30px;
		overflow: visible
	}

	.cf:after,
	.cf:before {
		content: " ";
		display: table;
		line-height: 0
	}

	.cf:after {
		clear: both
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card dl dt {
		margin-bottom: 10px;
		font-size: 14px;
		color: #252b3a;
		letter-spacing: .51px;
		line-height: 19px;
		position: relative
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card dl dt:before {
		position: absolute;
		display: inline-block;
		left: -8px;
		top: 7px;
		content: '';
		vertical-align: middle;
		width: 4px;
		height: 4px;
		border-radius: 50%;
		background: #252b3a
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card dl dd {
		float: left;
		width: 50%;
		margin-bottom: 6px;
		font-size: 12px;
		color: #a0a2a8;
		letter-spacing: .44px;
		line-height: 20px
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card>span {
		margin: 20px 30px 0;
		font-size: 14px;
		display: inline-block;
		color: #666a75;
		letter-spacing: .51px;
		line-height: 22px;
		opacity: 0;
		transition: opacity .15s linear
	}

	.selected-solution .solution-cardlist .col-sm-4:hover .solution-card>span {
		opacity: 1;
		transition: opacity .2s linear 50ms
	}

	/*了解更多*/
	.selected-solution .solution-cardlist .col-sm-4 .solution-card>span a span {
		display: inline-block;
		vertical-align: middle
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card>span a span.arrow-f {
		width: 13px;
		height: 13px;
		background: url(../images/marketplace-selected-arrow0.svg);
		display: inline-block;
		vertical-align: middle;
		margin-left: 5px;
		position: relative;
		transition: .3s ease-out
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card>span a:hover {
		color: #0e5b9e
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card>span a:hover span.arrow-f {
		transform: translate(4px, 0);
		background: url(../images/marketplace-selected-arrow2.svg)
	}

	/*重置swiper*/
	.swiper-container-horizontal>.swiper-pagination-bullets.solution-pagination {
		bottom: 15px
	}

	.solution-pagination .swiper-pagination-bullet {
		width: 24px;
		height: 4px;
		border-radius: 100px;
		overflow: hidden;
		background: #dfe1f1;
		border: none;
		cursor: pointer;
		content: '';
		display: inline-block;
		box-sizing: border-box;
		opacity: 1;
		vertical-align: middle
	}

	.solution-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
		background: #0e5b9e;
		box-sizing: border-box
	}

	.swiper-container-solution .swiper-button-prev {
		left: 0;
		width: 14.5px;
		height: 30px;
		margin-top: 0;
		background-image: url(../images/marketplace-home-arrow_big.svg);
		background-size: cover;
		transition: background-image .15s;
		font-size: 35px;
	}

	.swiper-container-solution .swiper-button-next {
		right: 0;
		width: 14.5px;
		height: 30px;
		margin-top: 0;
		background-image: url(../images/marketplace-home-arrow_big.svg);
		transform: rotate(180deg);
		background-size: cover;
		transition: background-image .15s
	}

	.swiper-container-solution .swiper-button-next:hover,
	.swiper-container-solution .swiper-button-prev:hover {
		background-image: url(../images/marketplace-home-arrow_big_hover.svg);
		transition: background-image .2s
	}


	/* 联系我们 */

	.index_contact {}

	.index_contact_dbt {
		float: left;
		width: 100%;
		height: auto;
		overflow: hidden;
		text-align: left;
	}

	.index_contact_dbt em {
		float: left;
		width: 100px;
		height: 2px;
		background: #0e5b9e;
		display: block;
		margin: 10px 0px;
	}

	.index_contact_dbt_cn {
		float: left;
		width: 100%;
		height: 35px;
		line-height: 35px;
		font-size: 35px;
		font-weight: bold;
		color: #0e5b9e;
	}

	.index_contact_dbt_en {
		float: left;
		width: 100%;
		height: 35px;
		line-height: 33px;
		font-size: 45px;
		/* font-weight: bold; */
		color: #ffffff;
		margin: 10px 0px;
	}

	.index_contact_main {
		width: 1200px;
		height: auto;
		overflow: hidden;
		margin: 0px auto;
	}

	.index_contact_main_left {
		width: 100%;
		float: left;
		height: auto;
		overflow: hidden;
	}

	.contact_txt {
		float: left;
		width: 100%;
		height: auto;
		overflow: hidden;
		margin-top: 50px;
		font-size: 15px;
	}

	.contact_txt ul li {
		float: left;
		
	}

	.contact_txt li {
		width: 25%;
		color: #0e5b9e;
		height: 80px;
		font-size: 16px;
	}

	.contact_txt li .contact_txt_img {
		float: left;
		width: 42px;
		height: 42px;
		margin-right: 10px;
	}

	.contact_biaodan {
		width: 100%;
		float: left;
		height: auto;
		overflow: hidden;
		margin-top: 50px;
	}

	.biaodan_bt {
		width: 150px;
		font-size: 24px;
		color: #ffffff;
		height: 50px;
		line-height: 50px;
		border-bottom: 1px solid #ffffff;
	}

	.biaodan_form {
		width: 100%;
		margin: 30px 0px;
	}

	.biaodan_form_content {
		float: left;
		width: 540px;
		height: 40px;
		line-height: 40px;
		background-color: transparent;
		border-bottom: 1px solid #ffffff;
		border-top: 0px;
		border-left: 0px;
		border-right: 0px;
		outline: none;
		color: #ffffff;
	}

	.biaodan_form_name {
		float: left;
		width: 250px;
		height: 40px;
		line-height: 40px;
		margin-right: 40px;
		background-color: transparent;
		border-bottom: 1px solid #ffffff;
		border-top: 0px;
		border-left: 0px;
		border-right: 0px;
		color: #ffffff;
	}

	.biaodan_form_phone {
		float: left;
		width: 250px;
		height: 40px;
		line-height: 40px;
		background-color: transparent;
		border-bottom: 1px solid #ffffff;
		border-top: 0px;
		border-left: 0px;
		border-right: 0px;
		color: #ffffff;
	}

	.biaodan_tijiao {
		float: left;
		width: 80px;
		height: 32px;
		line-height: 32px;
		background-color: transparent;
		border: 1px solid #ffffff;
		color: #ffffff;
		margin-top: 20px;
		border-radius: 5px;
	}

	.index_contact_main_right {
		margin-top: 3.125rem;
	}

	.index_contact_main_right img {
		border-radius: 20px;
	}

	.index_dibu {
		width: 100%;
		height: auto;
		line-height: 25px;
		background: rgb(0, 0, 0, 0.5);
		position: absolute;
		bottom: 0;
		color: #ffffff;
		text-align: center;
		font-size: 16px;
		padding: 20px 0;
	}

	.index_dibu a {
		color: #ffffff;
	}


}


@media (max-width: 768px) {

	/* 公司简介 */
	.index_about {
		width: 100%;
		height: auto;
	}

	.index_bt {
		width: 100%;
		margin: 0px auto;
		text-align: center;
		margin-top: 10%;
	}

	.index_bt_cn {
		color: #0e5b9e;
		font-size: 2.5rem;
		font-weight: bold;

	}

	.index_bt_en {
		color: #ffffff;
		font-size: 2rem;
		font-weight: 500;
	}

	.xian {
		height: 1px;
		width: 80px;
		margin: 10px auto;
		background: #0e5b9e;
	}

	.index_about_main {
		width: 98%;
		padding: 2%;
		height: auto;
		overflow: hidden;
		margin: 30px auto;
		background: rgba(255, 255, 255, 0.8);
	}

	.index_about_left {
		float: left;
		width: 100%;
		height: auto;
		overflow: hidden;
	}

	.index_about_left img {
		display: none;
	}

	.index_about_right {
		text-align: center;
		width: 100%;
		height: auto;
		overflow: hidden;
		margin-top: 3.125rem;
	}

	.index_about_mingzi {
		float: left;
		width: 100%;
		font-size: 1.625rem;
		font-weight: bold;
		color: #333333;
	}

	.index_about_right .ge {
		height: 1px;
		width: 5rem;
		margin: 30px auto;
		background: #0e5b9e;
	}

	.index_about_right .des {
		width: 100%;
		height: auto;
		overflow: hidden;
		font-size: 1.25rem;
		color: #333333;
		line-height: 2.1875rem;
		text-align: left;
	}

	.index_about_right .more {
		width: 7.8125rem;
		height: 2.5rem;
		line-height: 2.5rem;
		text-align: center;
		border-radius: 0.625rem;
		background: #0e5b9e;
		margin: 3.125rem auto;
	}

	.index_about_right .more a {
		color: #fff;
		display: block;
	}


	/* 公司优势 */

	.index_youshi {
		width: 100%;
		height: auto;
		overflow: hidden;
	}

	.index_youshi ul li {
		float: left;
	}

	.index_youshi li {
		width: 50%;
		height: 50%;
		position: absolute;
		top: 0;
		bottom: 50%;
		left: 0;
	}

	.index_youshi li:nth-child(1) {
		width: 50%;
		height: 50%;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
	}

	.index_youshi li:nth-child(2) {
		width: 50%;
		height: 50%;
		position: absolute;
		top: 0;
		bottom: 50%;
		left: 50%;
	}

	.index_youshi li:nth-child(3) {
		width: 50%;
		height: 50%;
		position: absolute;
		top: 50%;
		bottom: 0;
		left: 0%;
	}

	.index_youshi li:nth-child(4) {
		width: 50%;
		height: 50%;
		position: absolute;
		top: 50%;
		bottom: 0;
		left: 50%;
	}

	.index_youshi li:hover {
		background: rgba(103, 176, 233, 0.5);
	}


	.index_youshi_zhuti {
		width: 80%;
		height: auto;
		text-align: center;
		margin: 0px auto;
		margin-top: 50%;
		transition: 0.5s;

	}

	.index_youshi_zhuti_tp {
		text-align: center;
		margin: 1.875rem auto;
	}

	.index_youshi_zhuti_mz {
		font-size: 1.875rem;
		font-weight: bold;
		color: #ffffff;
	}

	.index_youshi_zhuti_mz em {
		font-size: 3.125rem;
		font-weight: bold;
		font-style: italic;
		color: #ffffff;
		margin-right: 5px;
	}


	.index_youshi_dex {
		display: none;

		width: 80%;
		height: auto;
		line-height: 2.1875rem;
		margin: 0px auto;
		text-align: center;
		font-size: 1.25rem;
		color: #ffffff;
	}

	.index_youshi_dex img {
		display: none;
	}

	.index_youshi li:hover {
		background: rgba(0, 88, 142, 0.5);
	}

	.index_youshi li:hover .index_youshi_zhuti {
		margin-top: 50%;
	}

	.index_youshi li:hover .index_youshi_dex {
		display: block;
	}




	/* 产品展示 */
	.index_product {
		width: 100%;
		height: auto;
		margin: 0px auto;
		overflow: hidden;
	}

	.index_product_dbt {
		width: 100%;
		height: auto;
		margin: 0px auto;
		overflow: hidden;
		text-align: center;
	}

	.index_product_dbt em {
		display: none;

		float: left;
		width: 3px;
		height: 35px;
		background: #0e5b9e;
		margin: 0px 10px;
	}

	.index_product_dbt_cn {
		width: 100%;
		height: 2.1875rem;
		line-height: 2.1875rem;
		font-size: 2.1875rem;
		font-weight: bold;
		color: #0e5b9e;
		text-align: center;
	}

	.index_product_dbt_en {
		width: 100%;
		height: 2.1875rem;
		line-height: 2.1875rem;
		font-size: 1.1875rem;
		/* font-weight: bold; */
		color: #999999;
	}

	.index_product_main {
		width: 100%;
		height: auto;
		overflow: hidden;
	}

	#box {
		width: 100%;
		height: auto;
		overflow: hidden;
		/* margin: 50px auto; */
	}

	#myouter {
		width: 100%;
	}

	#mytab {
		height: 2.5rem;
		width: 100%;
	}

	#mytab li {
		list-style-type: none;
		width: 25%;
		float: left;
		text-align: center;
	}

	#mytab li {
		float: left;
		height: 4.0625rem;
		cursor: pointer;
		line-height: 4.0625rem;
		font-size: 1.25rem;
		background-color: #CCCCCC;
	}

	#mytab li.current {
		background-color: #0e5b9e;
		color: #fff;
	}

	#mycontent {
		width: 100%;
		height: auto;
		overflow: hidden;
		background-color: #fff;
	}

	#mycontent ul {
		line-height: 25px;
		display: none;
	}

	.index_product_main_box {
		float: left;
		width: 100%;
		height: auto;
		overflow: hidden;
		margin: 0px auto;
	}

	.product_box_img {
		width: 100%;
		height: auto;
		overflow: hidden;
		margin: 0px auto;

		display: table-cell;
		vertical-align: middle;
		text-align: center;

	}

	.product_box_img img {
		width: 85%;
	}

	.product_box_txt {
		width: 98%;
		padding: 2%;
		height: auto;
		overflow: hidden;
	}

	.product_box_txt_bt {
		width: 100%;
		font-size: 1.25rem;
		color: #0e5b9e;
		font-weight: bold;
		height: 2.1875rem;
		line-height: 2.1875rem;
		text-align: center;
	}

	.product_box_txt_ge {
		float: left;
		height: 0.1875rem;
		width: 2.5rem;
		background: #0e5b9e;
		margin: 1.25rem 0px;
	}

	.product_box_txt_syfw {
		width: 100%;
		font-size: 1.25rem;
		color: #333333;
		height: auto;
		overflow: hidden;
		line-height: 2rem;
	}

	.product_box_txt_td {
		float: left;
		width: 100%;
		font-size: 1.25rem;
		color: #333333;
		height: auto;
		overflow: hidden;
		line-height: 2rem;
	}

	.product_box_txt_td i {
		color: #017cc9;
	}


	/* 合作伙伴 */
	.index_huoban {}

	.index_huoban_dbt {
		width: 100%;
		height: auto;
		overflow: hidden;
		text-align: center;
	}

	.index_huoban_dbt em {
		/* float: left; */
		display: none;
		width: 3px;
		height: 2.1875rem;
		background: #0e5b9e;
		/* display: block; */
		margin: 0px 10px;
	}

	.index_huoban_dbt_cn {
		text-align: center;
		width: 100%;
		height: 2.1875rem;
		line-height: 2.1875rem;
		font-size: 2.1875rem;
		font-weight: bold;
		color: #fff;
	}

	.index_huoban_dbt_en {
		width: 100%;
		height: 3.1875rem;
		line-height: 3.1875rem;
		font-size: 2.2125rem;
		/* font-weight: bold; */
		color: #b9d1ea;
	}

	.index_huoban_main {
		width: 100%;
		height: auto;
		overflow: hidden;
		margin: 0px auto;
	}

	/* 必要布局样式css */
	.o-m {
		background: #f8f8f8;
		width: 100%;
		margin: 3.125rem auto;
	}

	.o-m .ul-o {
		float: left;
		width: 100%;
		position: relative;
	}

	.o-m .ul-o li {
		float: left;
		width: 25%;
		cursor: pointer;
		position: relative;
		z-index: 2;
		margin: 0.25rem 0px;
	}

	/* .o-m .ul-o li:hover{
		background:#d30d19;
	} */
	.o-m .ul-o li p {
		line-height: 2.1875rem;
		color: #fff;
		font-size: 1.5rem;
		width: 100%;
		text-align: center;
	}

	.o-m .ul-o li b {
		position: absolute;
		display: block;
		width: 15px;
		height: 32px;
		top: 50%;
		margin-top: -16px;
		right: -15px;
		display: none
	}

	.o-m .ul-o .li-mask {
		background: #d30d19;
		position: absolute;
		left: 0;
		top: 0;
		width: width:100%;
		height: 2.1875rem;
		margin: 0.25rem 0px;
	}

	.o-m .ul-o li.on b {
		display: block;
	}

	.o-m .ul-t {
		width: 98%;
		float: left;
		height: auto;
		overflow: hidden;
		padding: 2%;
		border-top: 1px solid #ddd;
	}

	.o-m .ul-t li {
		list-style-type: none;
		position: relative;
		height: 100%;
		display: none;
	}


	.index_huoban_main_box {}

	.huoban_box_bt {
		width: 100%;
		color: #ffffff;
		font-size: 1.75rem;
		width: 100%;
		height: auto;
		overflow: hidden;
		margin: 1.25rem 0px;
		text-align: center;
	}

	.huoban_box_des {
		font-size: 1.25rem;
		color: #efefef;
		width: 100%;
		height: auto;
		overflow: hidden;
		margin: 1.25rem 0px;
		line-height: 2.5rem;
	}

	.huoban_box_des b {
		font-size: 1.5rem;
		color: #ffffff;
		width: 100%;
		height: auto;
		overflow: hidden;
		margin: 1.25rem 0px;
	}

	.huoban_box_img {
		font-size: 2rem;
		color: #ffffff;
		width: 100%;
		height: auto;
		overflow: hidden;
		margin: 1.25rem 0px;
	}

	.huoban_box_img b {
		font-size: 1.5rem;
		color: #ffffff;
		width: 100%;
		height: auto;
		overflow: hidden;
		line-height: 4.0625rem;
	}

	.huoban_box_img img {
		float: left;
		margin-right: 1%;
		width: 24%;
	}


	/* 新闻开始 */
	.index_news {}

	.index_news_dbt {
		width: 100%;
		height: auto;
		overflow: hidden;
		text-align: center;
	}

	.index_news_dbt em {
		float: left;
		width: 3px;
		height: 35px;
		background: #0e5b9e;
		display: block;
		margin: 0px 10px;
	}

	.index_news_dbt_cn {
		float: left;
		width: 100px;
		height: 35px;
		line-height: 35px;
		font-size: 24px;
		font-weight: bold;
		color: #0e5b9e;
	}

	.index_news_dbt_en {
		float: left;
		width: auto;
		height: 35px;
		line-height: 33px;
		font-size: 24px;
		font-weight: bold;
		color: #ffffff;
	}

	.index_news_main {
		width: 100%;
		height: auto;
		overflow: hidden;
		margin: 0px auto;
	}

	/*主体列表*/
	.col-sm-4 {
		float: left;
		position: relative;
		width: 33.33333333%
	}

	.selected-solution {
		position: relative;
		margin: 50px auto
	}

	.selected-solution .solution-cardlist {
		max-width: 1200px;
		margin: 20px auto 0
	}

	.swiper-slide,
	.swiper-wrapper {
		height: 420px !important
	}

	.selected-solution .solution-cardlist .col-sm-4 {
		padding: 0 10px;
		top: 0;
		transition: all .15s linear;
		box-sizing: border-box
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card {
		height: auto;
		background: #fff;
		border-radius: 6px;
		text-align: left;
		overflow: hidden;
		transition: all .15s linear
	}

	.selected-solution .solution-cardlist .col-sm-4:hover {
		position: relative;
		top: -20px;
		transition: all .25s linear
	}

	.selected-solution .solution-cardlist .col-sm-4:hover .solution-card {
		height: auto;
		box-shadow: 0 10px 40px 0 rgba(0, 0, 0, .1);
		transition: all .2s linear
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card img {
		width: auto;
		height: 200px;
		transition: all .2s linear
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card h3 {
		margin: 20px 30px 10px;
		font-size: 18px;
		color: #252b3a;
		letter-spacing: .65px;
		text-align: left
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card p {
		margin: 0 30px;
		padding-bottom: 30px;
		font-size: 14px;
		color: #666a75;
		letter-spacing: .51px
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card dl {
		margin: 0 30px;
		overflow: visible
	}

	.cf:after,
	.cf:before {
		content: " ";
		display: table;
		line-height: 0
	}

	.cf:after {
		clear: both
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card dl dt {
		margin-bottom: 10px;
		font-size: 14px;
		color: #252b3a;
		letter-spacing: .51px;
		line-height: 19px;
		position: relative
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card dl dt:before {
		position: absolute;
		display: inline-block;
		left: -8px;
		top: 7px;
		content: '';
		vertical-align: middle;
		width: 4px;
		height: 4px;
		border-radius: 50%;
		background: #252b3a
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card dl dd {
		float: left;
		width: 50%;
		margin-bottom: 6px;
		font-size: 12px;
		color: #a0a2a8;
		letter-spacing: .44px;
		line-height: 20px
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card>span {
		margin: 20px 30px 0;
		font-size: 14px;
		display: inline-block;
		color: #666a75;
		letter-spacing: .51px;
		line-height: 22px;
		opacity: 0;
		transition: opacity .15s linear
	}

	.selected-solution .solution-cardlist .col-sm-4:hover .solution-card>span {
		opacity: 1;
		transition: opacity .2s linear 50ms
	}

	/*了解更多*/
	.selected-solution .solution-cardlist .col-sm-4 .solution-card>span a span {
		display: inline-block;
		vertical-align: middle
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card>span a span.arrow-f {
		width: 13px;
		height: 13px;
		background: url(../images/marketplace-selected-arrow0.svg);
		display: inline-block;
		vertical-align: middle;
		margin-left: 5px;
		position: relative;
		transition: .3s ease-out
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card>span a:hover {
		color: #0e5b9e
	}

	.selected-solution .solution-cardlist .col-sm-4 .solution-card>span a:hover span.arrow-f {
		transform: translate(4px, 0);
		background: url(../images/marketplace-selected-arrow2.svg)
	}

	/*重置swiper*/
	.swiper-container-horizontal>.swiper-pagination-bullets.solution-pagination {
		bottom: 15px
	}

	.solution-pagination .swiper-pagination-bullet {
		width: 24px;
		height: 4px;
		border-radius: 100px;
		overflow: hidden;
		background: #dfe1f1;
		border: none;
		cursor: pointer;
		content: '';
		display: inline-block;
		box-sizing: border-box;
		opacity: 1;
		vertical-align: middle
	}

	.solution-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
		background: #0e5b9e;
		box-sizing: border-box
	}

	.swiper-container-solution .swiper-button-prev {
		left: 0;
		width: 14.5px;
		height: 30px;
		margin-top: 0;
		background-image: url(../images/marketplace-home-arrow_big.svg);
		background-size: cover;
		transition: background-image .15s;
		font-size: 35px;
	}

	.swiper-container-solution .swiper-button-next {
		right: 0;
		width: 14.5px;
		height: 30px;
		margin-top: 0;
		background-image: url(../images/marketplace-home-arrow_big.svg);
		transform: rotate(180deg);
		background-size: cover;
		transition: background-image .15s
	}

	.swiper-container-solution .swiper-button-next:hover,
	.swiper-container-solution .swiper-button-prev:hover {
		background-image: url(../images/marketplace-home-arrow_big_hover.svg);
		transition: background-image .2s
	}


	/* 联系我们 */

	.index_contact {}

	.index_contact_dbt {
		width: 100%;
		height: auto;
		overflow: hidden;
		text-align: center;
	}

	.index_contact_dbt em {
		display: none;

		float: left;
		width: 100px;
		height: 2px;
		background: #0e5b9e;
		margin: 10px 0px;
	}

	.index_contact_dbt_cn {
		float: left;
		width: 100%;
		height: 2.1875rem;
		line-height: 2.1875rem;
		font-size: 2.1875rem;
		font-weight: bold;
		color: #0e5b9e;
	}

	.index_contact_dbt_en {
		float: left;
		width: 100%;
		height: 2.1875rem;
		line-height: 2.1875rem;
		font-size: 2.8125rem;
		/* font-weight: bold; */
		color: #ffffff;
		margin: 10px 0px;
	}

	.index_contact_main {
		width: 96%;
		padding: 2%;
		height: auto;
		overflow: hidden;
		margin: 0px auto;
	}

	.index_contact_main_left {
		width: 100%;
		float: left;
		height: auto;
		overflow: hidden;
	}

	.contact_txt {
		float: left;
		width: 100%;
		height: auto;
		overflow: hidden;
		margin-top: 3.125rem;
		font-size: 15px;
	}

	.contact_txt ul li {
		float: left;
	}

	.contact_txt li {
		width: 100%;
		color: #ffffff;
		height: 5rem;
	}

	.contact_txt li .contact_txt_img {
		float: left;
		width: 42px;
		height: 42px;
		margin-right: 10px;
	}

	.contact_biaodan {
		width: 100%;
		float: left;
		height: auto;
		overflow: hidden;
		margin-top: 3.125rem;
	}

	.biaodan_bt {
		width: 150px;
		font-size: 24px;
		color: #ffffff;
		height: 50px;
		line-height: 50px;
		border-bottom: 1px solid #ffffff;
	}

	.biaodan_form {
		width: 96%;
		padding: 2%;
		margin: 1.875rem 0px;
	}

	.biaodan_form_content {
		width: 100%;
		height: 3.5rem;
		line-height: 3.5rem;
		background-color: transparent;
		border-bottom: 1px solid #ffffff;
		border-top: 0px;
		border-left: 0px;
		border-right: 0px;
		outline: none;
		color: #ffffff;
	}

	.biaodan_form_name {
		width: 100%;
		height: 3.5rem;
		line-height: 3.5rem;
		background-color: transparent;
		border-bottom: 1px solid #ffffff;
		border-top: 0px;
		border-left: 0px;
		border-right: 0px;
		color: #ffffff;
	}

	.biaodan_form_phone {
		width: 100%;
		height: 3.5rem;
		line-height: 3.5rem;
		background-color: transparent;
		border-bottom: 1px solid #ffffff;
		border-top: 0px;
		border-left: 0px;
		border-right: 0px;
		color: #ffffff;
	}

	.biaodan_tijiao {
		float: left;
		width: 80px;
		height: 32px;
		line-height: 32px;
		background-color: transparent;
		border: 1px solid #ffffff;
		color: #ffffff;
		margin-top: 20px;
		border-radius: 5px;
	}

	.index_contact_main_right {
		margin-top: 3.125rem;
	}

	.index_contact_main_right img {
		display: none;
		border-radius: 20px;
	}

	.index_dibu {

		width: 100%;
		height: 3.125rem;
		line-height: 3.125rem;
		background: rgb(0, 0, 0, 0.5);
		position: absolute;
		bottom: 0;
		color: #ffffff;
		text-align: center;
		font-size: 1.2rem;
	}

	.index_dibu a {
		display: none;
		color: #ffffff;
	}



}
