@charset "utf-8";
body {
	font-family: 微软雅黑;
	margin: 0 auto;
	padding: 0;
	max-width: 750px;
}

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: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box; /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox; /* 混合版本语法: IE 10 */
    display: -webkit-flex; /* 新版本语法: Chrome 21+ */
    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;
}
.container{
	padding: 0;
	width: 100%;
}
/* 头尾 */
.footer{
	background-color: #232323;
	color: #FFF;
}
.copyright{
	background-color: #000000;
	text-align: center;
	color: #FFFFFF;
	font-size: 12px;
	padding:15px 10px;
	font-family: Myriad Pro;
}
.foot-hd{
	margin-bottom: 40px;
}
.foot-item {
	padding: 8px 0;
	font-size: 20px;
}
.foot-item img{
	margin-right: 10px;
}
.foot-hd .foot-tt{
	position: relative;
	font-size: 25px;
	display: inline-block;
}
.foot-hd .foot-en{
	font-size: 12px;
	font-weight: bold;
}
.foot-hd .foot-tt::after{
	content: '';
	background: url(../images/foot-tt.png) no-repeat;
	position: absolute;
	left: 105%;
	top: 50%;
	width: 24px;
	height: 14px;
	margin-top: -7px;
}
.foot-wx{
	padding: 30px;
	text-align: center;
}
.foot-wx img{
	width: 130px;
	height: 130px;
}
.foot-wx p{
	font-size: 20px;
	margin-top: 30px;
}
.foot-row{
	display: block;
}
.foot-item{
	font-size: 14px;
}
.foot-wx{
	padding: 0;
}

.index-section{
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}
.dym-section{
	background-image:url(../images/dymbg.png);
	padding: 30px 15px;
}
.partner-section{
	background-image:url(../images/hezuo.jpg);
	padding: 30px 0!important;
}
.serve-section{
	padding: 20px 0!important;
	background-image:url(../images/ffbg.jpg);
}
.fir-section{
	padding: 40px 0;
	background-image: url(../images/about-bg.jpg);
}


.se-head{
	text-align: center;
}
.se-head .ch{
	padding: 20px 0;
}
.se-head .en{
	font-size: 13px;
	font-weight: bold;
	color: #ff0022;
}
.se-head .dot{
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../images/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:17px;
	color: #333333;
	line-height: 1.8;
}
.swiper-dyms .dym-box .dym-time{
	font-size: 22px;
	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: 40px;
	line-height: 40px;
	bottom: 25px;
	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: 18px;
	font-weight: bold;
}
.se-head .desc{
	margin-top: 10px;
	font-size:13px;
}
.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(../images/step-hd.png) no-repeat;
}
.step-text{
	margin-top: 24px;
	font-size: 18px;
}
.step-arrow{
	margin-top:24px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url(../images/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{
	font-size: 22px;
    font-family: "youhe";
}
.red{
	color: #d51932;
}
.about-panel .text{
	line-height: 1.6;
	color: #666666;
	font-size: 12px;
}
.about-section{
	padding-bottom: 30px;
}
.lc-section{
	padding-top: 30px;
}
.partner-section .se-head *{
	color: #FFFFFF!important;
}
.partner-section .se-head .dot{
	background-image: url(../images/sec-tt-2.png);
}
.data-section .se-head *{
	color: #FFFFFF!important;
}
.data-section .se-head .dot{
	background-image: url(../images/sec-tt-2.png);
}
.par-heading{
	padding: 0 15px!important;
	color: #FFFFFF;
	margin-bottom: 30px;
}
.par-heading .text{
	font-size: 16px;
	margin-bottom:5px;
}
.par-heading .text-sm{
	font-size:11px;
}
.par-cells{
	position: relative;
}
.swiper-par .swiper-slide{
	width: 370px;
}
.doctor-box{
	display: block;
	text-align: center;
}
.doctor-box .do-grid{
	padding: 15px 0;
}
.doctor-box .do-name{
	color: #fff;
	font-size: 14px;
	margin-bottom: 5px;
}
.doctor-box .do-desc{
	font-size: 12px;
	color: #fff;
}
.serv-cells{
	margin: 0 -10px;
}
.serv-cells>div{
	padding:10px;
}
.serv-box{
	padding: 30px 10px;
	text-align: center;
	border-radius: 5px;
	box-shadow: 0 0 6px rgba(0,0,0,.03);
	background-color: #FFFFFF;
	margin-bottom: 15px;
}
.serv-box .serv-line{
	display: none;
}
.serv-box  .serv-tit{
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
	margin-top: 10px;
}
.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-radius: 40px;
	padding: 0 14px;
	color: #333;
}
.par-tabs li.active a{
	background-color: #d51932;
	color: #FFFFFF;
}
.logo-panel{
}
.logo-list{
	overflow: hidden;
}
.logo-list li{
	text-align: center;
	padding: 10px 0;
	float: left;
	width: 20%;
	position: relative;
}
.logo-list li p{
	margin-top: 10px;
	font-size: 12px;
}
.logo-list li img{
	height: 25px;
}

.fir-row{
	margin: 0;
	text-align: center;
	color: #FFFFFF;
}
.fir-row>div{
	padding: 0;
}
.fir-box .fir-h{
	font-size: 0;
	margin-bottom: 25px;
}
.fir-box .fir-tit{
	font-size: 26px;
	font-family: "youhe";
}
.fir-icon{
	font-size: 0;
	margin-bottom: 10px;
}
.fir-icon img{
	width: 30px;
}
.fir-box .fir-en{
	font-size: 12px;
	opacity: .5;
}
.fir-box .fir-desc{
	line-height: 2;
	font-size: 12px;
	color: #FFFFFF;
	margin-top: 10px;
}
.fir-box .fir-line{
	height: 2px;
	width: 10px;
	margin: 10px auto;
	background-color: #fff;
}
.fir-row >div:first-child{
	margin-bottom: 36px;
}
.dd-box{
	text-align: center;
	background-color: #fbe8ea;
	width: 48%;
	margin: 5px 1%;
	padding: 20px 0;color: #d51932;
}
.dd-box .dd-txt{
	font-size: 14px;
}
.dd-box .dd-value{
	font-size: 14px;
	color: #d51932;
	line-height: 1;
	margin-bottom: 10px;
}
.dd-box .dd-value .v{
	font-weight: bold;
	font-size: 25px;
}
.show-row{
	margin: 0;
}
.show-row>div{
	padding: 0;
}
.show-cell{
	padding: 20px 0;
	box-shadow: 0 0 30px rgba(0,0,0,.1);
	background-color: #FFFFFF;
	margin-bottom: 30px;
	overflow: hidden;
	border-radius: 5px;
	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: 16px;
	line-height: 2;
	opacity: .8;
	max-width: 90%;
}
.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: 330px;
}
.navbar-yl{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 999;
	width: 100%;
	border: 0;
	margin: 0;
}
@media (min-width:750px) {
	.navbar-yl{
		width: 750px;
		left: 50%;
		margin-left: -375px;
	}
}
.navbar-brand{
	display: block;
	min-height: auto;
	height: auto;
}
.navbar-brand img{
	height: 30px;
}
.banner-m-grid{
	padding-top: 80px;
}
.banner-m-grid img{
	width: 165px;
}
.navbar-nav>li>a{
	line-height: 50px;
	font-size: 18px;
	color: #FFFFFF;
}
.nav>li>a:focus, .nav>li>a:hover{
	background-color: transparent;
}
.navbar-nav>li.active>a{
	background-color: #d51932;
}
.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{
	margin-bottom: 8px;
}
.serv-box .serv-desc{
	padding: 0 10px;
	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: 25px;
	padding: 10px 0;
}
.se-head{
	margin-bottom: 20px;
}
.index-section{
	padding: 30px 15px;
}
.se-head .desc{
	font-size: 12px;
}
.serv-icon img{
	width: 35px;
}
.swiper-par .swiper-slide{
	width: 300px;
}
.footer .container{
	padding: 20px 15px;
}
.foot-hd{
	margin-bottom: 20px;
}
.foot-item{
	display: flex;
	align-items: center;
}
.foot-item span{
	flex: 1;
}
.foot-wx{
	display: flex;
	align-items: center;
	border-top: 1px solid #4b4a4a;
	padding: 20px;
}
.foot-wx img{
	width: 80px;
	height: 80px;
	margin-right: 20px;
}
.foot-wx p{
	margin-top: 0;
	font-size: 13px;
}
.step-arrow{
	width: 5px;
	height: 10px;
	margin-top: 10px;
	background-image: url(../images/sm-arrow.png);
}
.step-cells{
	margin: 0 -6px;
}
.par-tabs li{
	padding: 0;
}
.par-tabs li a{
	height:30px;
	line-height: 28px;
	padding: 0 18px;
	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: 25px;
	padding-left: 10px;
}
.show-grid .show-icon img{
	width: 50px;
}
.show-cell{
	padding: 20px 5px 20px 15px;
	margin-bottom: 15px;
	border-radius: 5px;
}
.show-popover .show-tt{
	margin-bottom: 5px;
	font-size: 16px;
}
.show-popover .show-line{
	display: none;
}
.show-popover .show-info{
	max-width: 100%;
	font-size: 12px;
}
.show-grid{
	padding: 0;
}

.data-section{
	padding: 15px;
}
.swiper-serv .swiper-slide{
	width: 250px;
}
.swiper-par .swiper-slide{
	width: 190px;
	transform: scale(.7);
}

.swiper-par .swiper-slide-active{
	transform: scale(1);
}
.swiper-par{
	padding-bottom: 20px;
}
.swiper-par .swiper-pagination{
	bottom: 0px;
}
.swiper-par .swiper-pagination-bullet{
	background-color: #FFFFFF;
	border-radius: 10px;
}
.swiper-par .swiper-pagination-bullet-active{
	width: 20px;
}


















