@charset "utf-8";
body {
	font-family: 微软雅黑;
	margin: 0;
	padding: 0;
	background: #f5f5f5;
}

img {
	max-width: 100%;
}

ul,
h3,
h2,
h1,
li,
p {
	padding: 0;
	margin: 0;
	list-style: none;
}
a:hover,
a:focus{
	text-decoration: none;
}
.btn:focus,
.btn:active,
.btn:focus:active{
	outline: 0;
}
.flex{
    display: flex; /* 新版本语法: Opera 12.1, Firefox 22+ */
}

/* 主轴居中 */
.flex-hc {
    -webkit-box-pack: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
}

/* 主轴两端对齐 */
.flex-zBetween {
    -webkit-box-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

/* 主轴end对齐 */
.flex-zEnd {
    -webkit-box-pack: end;
    -moz-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

/* 主轴start对齐 */
.flex-zStart {
    -webkit-box-pack: start;
    -moz-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

/* 侧轴居中 */
.flex-ac {
    -webkit-box-align: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    align-items: center;
}

/* 侧轴start对齐 */
.flex-cStart {
    -webkit-box-align: start;
    -moz-align-items: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

/* 侧轴底部对齐 */
.flex-cEnd {
    -webkit-box-align: end;
    -moz-align-items: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

/* 侧轴文本基线对齐 */
.flex-cBaseline {
    -webkit-box-align: baseline;
    -moz-align-items: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
}

/* 侧轴上下对齐并铺满 */
.flex-cStretch {
    -webkit-box-align: stretch;
    -moz-align-items: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
}

/* 主轴从上到下 */
.flex-zTopBottom {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

/* 主轴从下到上 */
.flex-zBottomTop {
    -webkit-box-pack: end;
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -moz-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

/* 主轴从左到右 */
.flex-zLeftRight {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
}

/* 主轴从右到左 */
.flex-zRightLeft {
    -webkit-box-pack: end;
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -moz-flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}


/* 不允许子元素缩小 */
.flex-shrink {
    -webkit-box-flex: 0;
    -moz-flex-shrink: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

/*各个行中间对齐*/
.flex-center {
    -webkit-align-content: center;
    align-content: center;
}

/*各个行中间对齐*/
.flex-start {
    -webkit-align-content: flex-start;
    align-content: flex-start;
}

/*各个行中间对齐*/
.flex-end {
    -webkit-align-content: flex-end;
    align-content: flex-end;
}

/*各个行平均分布*/
.flex-between {
    -webkit-align-content: space-between;
    align-content: space-between;
}

/*各个行两端保留子元素与子元素之间间距大小的一半*/
.flex-container {
    -webkit-align-content: space-around ;
    align-content: space-around ;
}

/*父元素-横向换行 */
.flex-wrap{
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap:wrap;
}

/*父元素-不允许横向换行 */
.flex-nowrap{
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    -o-flex-wrap: nowrap;
    flex-wrap:nowrap;
}
/*充满父元素*/
.flex_bd{
    -prefix-box-flex: 1;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/* 显示两行文字 */
.line-2{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;   
}
.line-3{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;   
}

.fl {
    float: left;
}

.fr {
    float: right;
}

/* 文字省略号 */
.ellipsis{
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.margin-left-auto {
	margin-left: auto;
}
.margin-right-auto {
	margin-right: auto;
}

@media (min-width:1200px) {
	.container{
		padding: 0;
		width: 1200px;
	}
}
/* 头尾 */
.footer{
	background-color: #232323;
	color: #FFF;
	padding:30px 15px;
}
 
 
.foot-item {
	padding: 8px 0;
	font-size: 14px;
}
 
 
 
 
 
 

.index-section{
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding:30px 0;
	overflow: hidden;
}
 
.fir-section{
	margin-top: -80px;
}
 

.se-head{
	text-align: center;
	margin-bottom:50px;
}
.se-head .ch{
	font-size: 50px;
	padding: 20px 0;
}
.se-head .en{
	font-size: 14px;
	font-weight: bold;
	color: #ff0022;
}
.se-head .ch{
	font-size: 50px;
}
.se-head .dot{
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../index/se-tt.png);
	width: 24px;
	height: 14px;
	margin: 0 auto;
}
.dym-cells{
	position: relative;
}
.swiper-dyms .dym-box{
	position: relative;
	display: block;
	padding:30px 20px;
	text-align: center;
	background-color: #FFFFFF;
}
.swiper-dyms .dym-box .dym-title{
	font-size:20px;
	color: #333333;
	line-height: 1.8;
}
.swiper-dyms .dym-box .dym-time{
	font-size: 34px;
	color: #d51932;
	font-family: "youhe";
}
.swiper-dyms .dym-box .dym-line{
	width: 24px;
	height: 6px;
	background-color: #d51932;
	margin: 30px auto;
}
.sw-prev,
.sw-next{
	position: absolute;
	width: 50px;
	height: 80px;
	top: 50%;
	margin-top: -40px;
	line-height: 80px;
	background-color: #FFFFFF;
	color: #d51932;
	text-align: center;
	z-index: 99;
}
.sw-prev{
	left: 0;
}
.sw-next{
	right: 0;
}
.sw-prev .iconfont,
.sw-next .iconfont{
	font-size: 26px;
	font-weight: bold;
}
.sw-prev:hover,
.sw-next:hover{
	background-color: #d51932;
	color: #FFFFFF;	
}
.se-head .desc{
	margin-top: 10px;
	font-size: 20px;
}
.step-cell{
	text-align: center;
}
.step-cell .step-hd{
	width: 110px;
	margin: 0 auto;
	height: 49px;
	line-height: 40px;
	font-size: 16px;
	font-weight: bold;
	color: #FFFFFF;
	margin-bottom: 40px;
	background: url(../index/step-hd.png) no-repeat;
}
.step-text{
	margin-top: 24px;
	font-size: 18px;
}
.step-arrow{
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url(../index/arrow.png);
	width: 34px;
	height: 17px;
}
.step-cells{
	margin: 0 auto;
	max-width: 1100px;
}
.about-panel{
	position: relative;
	z-index: 99;
	padding: 20px;
	margin: 0 20px;
	margin-top: -50px;
	background-color: #FFFFFF;
	box-shadow: 0 0 30px rgba(0,0,0,.1);
}
.about-hd{
	margin-bottom: 20px;
}
.about-panel .text{
	line-height: 1.6;
	color: #666666;
	font-size: 18px;
}
.about-section{
	padding-bottom: 30px;
}
.lc-section{
	padding-top: 30px;
}
 
 
.serv-cells{
	margin: 0 -10px;
}
.serv-cells>div{
	padding:10px;
}
.serv-cells .serv-box{
	padding: 40px 10px;
	text-align: center;
	border-radius: 5px;
	box-shadow: 0 0 6px rgba(0,0,0,.03);
	background-color: #FFFFFF;
}
.serv-box .serv-line{
	width: 28px;
	height: 5px;
	margin: 20px auto;
	background-color: #dddddd;
}
.serv-box  .serv-tit{
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 15px;
}
.serv-box  .serv-desc{
	font-size: 16px;
	color: #666666;
	line-height: 1.8;
}
.par-tabs{
	margin-bottom: 30px;
}
.par-tabs li{
	padding:5px;
}
.par-tabs li a{
	display: block;
	height: 50px;
	line-height: 48px;
	border: 1px solid #d51932;
	border-radius: 40px;
	padding: 0 24px;
	color: #d51932;
}
.par-tabs li.active a{
	background-color: #d51932;
	color: #FFFFFF;
}
.logo-panel{
	box-shadow: 0 0 30px rgba(0,0,0,.1);
	background-color: #FFFFFF;
	padding:15px 20px;
}
.logo-list{
	overflow: hidden;
}
.logo-list li{
	text-align: center;
	padding: 10px 0;
	float: left;
	width: 33.33%;
	position: relative;
}
.logo-list li p{
	margin-top: 15px;
	font-size: 16px;
}
.logo-list li img{
	height: 70px;
}

.fir-row{
	margin: 0;
	background-color: #FFFFFF;
	text-align: center;
}
.fir-row>div{
	padding: 0;
}
.fir-box{
	height: 365px;
	padding: 70px 0 0 0;
}
.fir-row>div:first-child .fir-box{
	background: #fad0cf;
}
.fir-box .fir-h{
	font-size: 0;
	margin-bottom: 25px;
}
.fir-box .fir-tit{
	font-size: 22px;
	font-weight: bold;
}
.fir-box .fir-desc{
	line-height: 2;
	color: #666666;
}
.fir-box .fir-line{
	height: 1px;
	background-color: #f4f4f4;
	margin: 25px 10px;
}
.dd-box{
	text-align: center;
	background-color: #fff7f5;
	width: 48%;
	margin: 5px 1%;
	padding: 30px 0;
}
.dd-box .dd-txt{
	font-size: 16px;
}
.dd-box .dd-value{
	font-size: 18px;
	color: #d51932;
	line-height: 1;
	margin-bottom: 20px;
}
.dd-box .dd-value .v{
	font-weight: bold;
	font-size: 40px;
}
.show-row{
	margin: 0;
	padding: 20px 0;
	box-shadow: 0 0 30px rgba(0,0,0,.1);
	background-color: #FFFFFF;
	margin-bottom: 30px;
	overflow: hidden;
	border-radius: 5px;
}
.show-row>div{
	padding: 0;
}
.show-cell{
	position: relative;
	overflow: hidden;
	background-color: #FFFFFF;
}
.show-popover{
	padding: 30px 20px;
	color: #FFFFFF;
	position: absolute;
	visibility: hidden;
	opacity: 0;
	width: 100%;
	height: 100%;
}
.show-grid{
	padding:20px 40px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.show-grid .show-icon{
	margin-bottom: 10px;
}
.show-grid .show-tt{
	margin-bottom: 10px;
	font-size: 24px;
}
.show-grid .show-desc{
	color: #999999;
}
.show-popover .show-tt{
	font-size: 24px;
}
.show-popover .show-desc{
	font-size:14px;
}
.show-popover .show-info{
	font-size: 15px;
	line-height: 2;
	opacity: .8;
	max-width: 100%;
}
.show-popover .show-line{
	margin: 25px 0;
	background-color: #FFFFFF;
	height: 1px;
	opacity: .3;
	max-width: 70%;
}
.index-banner{
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	text-align: center;
	height: 350px;
}
.navbar-yl{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 999;
	width: 100%;
	border: 0;
	margin: 0;
}
.navbar-brand{
	display: block;
	font-weight: 700;
	color: #fff;
	font-size: 28px;
}
.navbar-brand img{
	height: 30px;
}
.banner-m-grid{
	padding-top: 80px;
}
.banner-m-grid img{
	width: 200px;
}
.navbar-nav>li>a{
	line-height: 50px;
	font-size: 22px;
	color: #FFFFFF;
}
.nav>li>a:focus, .nav>li>a:hover{
	background-color: transparent;
}
.navbar-nav>li.active>a{
	background-color: #d51932;
}

.index-banner{
	height: 500px;
}
.data-section {
  overflow: visible;}
.banner-grid{
	display: block;
	padding-top: 250px;
}
@media (min-width:1200px) {
	.navbar-brand{
		padding: 15px 0;
	}
	.navbar-nav>li{
		padding: 20px 0;
	}
	.navbar-nav>li>a{
		padding: 0 44px;
		text-align: center;
	}
	.navbar-yl{
		padding: 15px 0;
	}
	.navbar-brand img{
		height: 60px;
	}
	.show-popover{
		visibility: visible;
		opacity: 1;
		left: 0;
		top: 0;
		background:#d51932;
	    transform: translateY(100%);
		transition: .3s all;
	}
	.show-cell:hover .show-popover{
		transform: translateY(0);
	}

	.show-row{
		padding: 0;
	}
	
	.show-grid{
		height: 308px;
		padding:40px;
		text-align: center;
	}
	
	.show-grid .show-icon{
		margin-bottom: 30px;
	}
	
	.dd-box .dd-value .v{
		font-size: 46px;
	}
	.dd-box:hover{
		background-color: #d51932;
	}
	.dd-box:hover *{
		color: #fff;
	}
	.logo-panel{
		padding: 30px;
	}
	.logo-list li{
		padding: 25px 0;
		width: 20%;
	}
	.logo-list li::after{
		width: 1px;
		height: 100px;
		content: '';
		background-color: #eeeeee;
		position: absolute;
		right: 0;
		top: 50%;
		margin-top: -50px;
	}
	.logo-list li p{
		font-size: 18px;
	}
	.logo-list li:nth-child(5n)::after{
		display: none;
	}
	.par-tabs{
		margin-bottom: 40px;
	}
	.par-tabs li{
		padding: 0 10px;
	}
	.par-tabs li a{
		font-size: 18px;
	}
	.par-heading .text{
		font-size: 30px;
	}
	.swiper-dyms .dym-box{
		padding: 30px 36px;
	}
	.sw-prev{
		left: -100px;
	}
	.sw-next{
		right: -100px;
	}
	.swiper-dyms .sw-prev{
		left: -100px;
		top: 100px;
		margin: 0;
	}
	.swiper-dyms .sw-next{
		right: -100px;
		top: 100px;
		margin: 0;
	}
	
	.swiper-dyms .swiper-slide{
		padding-bottom: 60px;
	}
	.swiper-dyms .swiper-slide::after{
		width: 20px;
		height: 20px;
		content: '';
		background-color: #d51932;
		border-radius: 40px;
		position: absolute;
		bottom:0;
		left: 50%;
		margin-left: -10px;
	}
	.dym-section{
		position: relative;
		padding-bottom: 20px;
	}
	.dym-section::after{
		width: 100%;
		content: '';
		background-color: #d51932;
		position: absolute;
		height: 1px;
		bottom:30px;
		left:0;
		right: 0;
	}
	.about-panel{
		position: relative;
		z-index: 99;
		padding: 40px;
		margin: 0;
		background-color: #FFFFFF;
		box-shadow: 0 0 30px rgba(0,0,0,.1);
	}
	.about-panel .text{
		line-height: 2;
		font-size: 20px;
	}
	.fir-box{
		height: 440px;
	}
	.fir-box .fir-line{
		margin: 25px 70px;
	}
	.fir-box .fir-tit{
		font-size: 26px;
	}
	.fir-box .fir-desc{
		font-size: 20px;
	}
}

@media (max-width:756px) {
    .fir-section {
     margin-top: -60px;
    }
    .banner-m-grid {
     padding-top: 60px;
     }
    .index-banner {
       height: 300px;
     }
     .logo-list li p{
 
	font-size: 14px;
}
.about-panel .text{font-size:12px;}
.logo-list li img{
	height: 50px;
}
	.navbar-nav>li>a{
		text-align: center;
	}
	.navbar-toggle{
		margin:15px 10px;
	}
	.navbar-toggle .icon-bar{
		background-color: #d51932;
	}
	.navbar-collapse{
		background-color: #d51932;
	}
	.data-rows{
		flex-wrap: wrap;
		justify-content:flex-start
	}
	.par-tabs{
		justify-content: space-between;
	}
	.serv-cells .serv-box{
		padding: 26px 0;
	}
	.serv-box  .serv-tit{
		font-size: 16px;
		margin-bottom: 8px;
	}
	.serv-box .serv-desc{
		padding: 0 10px;
		height: 62px;
		font-size: 12px;
	}
	.step-cell{
		width: 55px;
	}
	.step-cell .step-hd{
		margin-bottom:5px;
		width: 55px;
		height: 28px;
		font-size: 12px;
		line-height: 22px;
		background-size:100% 100%;
	}
	.step-text{
		margin-top: 10px;
		font-size: 10px;
		transform: scale(.8);
		transform-origin: center;
		white-space: nowrap;
		margin-left: -8px;
	}
	
	.se-head .ch{
		font-size: 35px;
		padding: 10px 0;
	}
	.se-head{
		margin-bottom: 30px;
	}
 
	.se-head .desc{
		font-size: 16px;
	}
	.swiper-par .swiper-slide{
		width: 300px;
	}
	.footer{
		padding: 30px 15px 0 15px;
	}
 
	.step-arrow{
		width: 5px;
		height: 10px;
		background-image: url(../index/sm-arrow.png);
	}
	.step-cells{
		margin: 0 -6px;
	}
	.par-tabs li{
		padding: 0;
	}
	.par-tabs li a{
		height:30px;
		line-height: 28px;
		padding: 0 12px;
		font-size: 12px;
	}
	.show-row{
		background-color: transparent;
		padding: 0;
	}
	.show-cell{
		display: flex;align-items: center;
	}
	.show-popover{
		position: static;
		display: block;
		color: #333333;
		visibility: visible;
		opacity: 1;
		padding: 0;
	}
	.show-grid .show-tt{
		display: none;
	}
	.show-grid .show-desc{
		display: none;
	}
	.show-popover .show-desc{
		display: none;
	}
	.show-grid .show-icon{
		margin: 0;
		margin-right: 15px;
	}
	.show-grid .show-icon img{
		width: 50px;
	}
	.show-row{
		margin:0 -5px;
	}
	.show-cell{
		padding: 20px 5px 20px 15px;
		margin-bottom: 15px;
		border-radius: 5px;
	}
	.show-popover .show-tt{
		margin-bottom: 5px;
		font-size: 18px;
	}
	.show-popover .show-line{
		display: none;
	}
	.show-popover .show-info{
		max-width: 100%;
		font-size: 12px;
	}
	.show-grid{
		padding: 0;
	}
	.dd-box{
		border-radius: 40px;
	}
	.sw-prev{background-color: #d51932;
    color: #FFFFFF;
		width: 40px;
		padding-right: 10px;
		border-radius: 0 16px 16px 0;
	}
	.sw-next{background-color: #d51932;
    color: #FFFFFF;
		width: 40px;
		padding-left: 10px;
		border-radius:16px 0 0 16px;
	}
}