/*江晓东 18.02.27*/

/*
    text-overflow: ellipsis;
    white-space: nowrap;
    
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    -webkit-background-clip: content;
    -moz-background-clip: content;
    background-clip: content;
    
    box-shadow: 0px 0px 5px rgba(153,153,153,0.5);  
	
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;  
	
	//四边
    content: " ";
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #e6e6e6;
    box-sizing: border-box;
    -webkit-transform: scale(.5);
    transform: scale(.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
	
*/
/* 全局  */

@charset "UTF-8";
body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,
ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td,img {
	border: medium none;
	margin: 0;
	padding: 0;
}
* {
	margin: 0px;
	padding: 0px;
}
html {
	overflow-x: hidden;
	height: 100%;
}
body {
	font-family: Helvetica;
	background: #fff;
	font-size: 12px;
	color: #666;
	height: 100%;
}
input,textarea {
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    font-family: Helvetica;
}
table{border-collapse: collapse;}
i,em{
	font-style: normal;
}
a {
	outline: none;
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	font-family: "microsoft yahei";
	text-decoration: none;
	color: #666;
}
.shadow{
	box-shadow:0 2px 2px #dddddd;
}
input[type="button"],
input[type="submit"],
input[type="reset"] {
	-webkit-appearance: none;
}
a:visited {
	color: #666;
	outline: none;
}
a:hover {
	color: #fc8b1c;
	outline: none;
}
a:active {
	color: #666;
	outline: none;
}
ul,ol {
	list-style: none;
	vertical-align: middle;
}
img {
	border: 0px;
	vertical-align: middle
}
.fl {
	float: left;
	display: inline;
}
.fr {
	float: right;
	display: inline;
}
.clear {
	clear: both;
	overflow: hidden;
	height: 0;
}
.h5 {height: 0.25rem;}
.h10 {height: 0.5rem;}
.h15 {height: 0.75rem;}
.h20 {height: 1rem;}
.h25 {height: 1.25rem;}
.h30 {height: 1.5rem;}

.whiteBg {
	background: #fff;
	overflow: hidden;
}
.wbox {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.wbox-flex {
	-webkit-flex: 1!important;
	-webkit-box-flex: 1
}
/* 动态设置字体大小 */
@media screen and (min-width:541px){
    html{ font-size: 28px;
    }}
@media screen and (min-width:375px) and (max-width: 540px){ 
    html{ font-size: calc(100vw / 375 * 20);}
}
@media screen and (max-width:375px){ 
    html{ font-size: 20px;}
}
/*
* css截取字数串
*/
.clamp1{
    white-space: normal;
	text-overflow: ellipsis;
    overflow: hidden;
}
.clamp2{
    word-break: break-all;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp3{
    word-break: break-all;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp4{
    word-break: break-all;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp5{
    word-break: break-all;
    display: -webkit-box !important;
    -webkit-line-clamp: 5 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp6{
    word-break: break-all;
    display: -webkit-box !important;
    -webkit-line-clamp: 6 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/*
* 细线边框
*/
.bd_a,
.bd_d,
.bd_t{
    position: relative;
}
.bd_t:before{
    content: " ";
    width: 200%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    border-bottom: 1px solid #e6e6e6;
    box-sizing: border-box;
    -webkit-transform: scale(.5);
    transform: scale(.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}
.bd_d:after{
    content: " ";
    width: 200%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #e6e6e6;
    box-sizing: border-box;
    -webkit-transform: scale(.5);
    transform: scale(.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}
.bd_a:after{
    content: " ";
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #e6e6e6;
    box-sizing: border-box;
    -webkit-transform: scale(.5);
    transform: scale(.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}
.imgBox{
	position: relative;
	overflow: hidden;
}
.imgBox:after{
	content: '';
	display: block;
}
.imgBox img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/*浏览器滚动条*/
::-webkit-scrollbar {
	width: 0px;
	background-color: #fff;
}
::-webkit-scrollbar-button {}
::-webkit-scrollbar-track {}
::-webkit-scrollbar-track-piece {}
::-webkit-scrollbar-thumb {
	border: solid 0px #5d5d5d;
	width: 0px;
	background-color: #fff;
}
::-webkit-scrollbar-corner {
	background-color: #5d5d5d;
}
::-webkit-resizer {}
::-webkit-scrollbar:horizontal {
	height: 9px;
}
/**
 * 框架部分 begin
 * @return
 */
.texiao{
    opacity: 0;
}
#mobileTop {
    clear: both;
    position: fixed;
    z-index: 5;
    width: 100%;
    left: 0;
    top: 0;
    transform: translateX(0px);
    transition:all 0.3s linear;
}
#mobileCon {
    overflow: hidden;
    overflow-y: auto;
    clear: both;
    background: #fff;
    position: relative;
    z-index: 4;
    left: 0;
    transform: translateX(0px);
    transition:all 0.3s linear;
}
#mobileFooter{
    clear: both;
    width: 100%;
    z-index: 4;
    transform: translateX(0px);
    transition:all 0.3s linear;
}
.mobileFooter2{
    position: fixed;
    bottom: 0;
}
#mobileMenu{
    height:100%;
    position:fixed; 
    top:0px;
    width:200px;
    z-index:999999;
    background:#333;
    right: 0px;
    overflow:hidden;
    -webkit-transform: translateX(200px);
    -ms-transform: translateX(200px);
    -o-transform: translateX(200px);
    transform: translateX(200px);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
#mobileBg {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.3);
    z-index: 50;
    left: 0;
    top: 0px;
    z-index: 6;
    display: none;
}
#mobileConH {
    overflow: hidden;
	min-height: calc(100% - 6rem);
}
#mobileTop.hide{
    overflow: hidden;
    -webkit-transform: translateX(-200px);
    -ms-transform: translateX(-200px);
    -o-transform: translateX(-200px);
    transform: translateX(-200px);
}
#mobileCon.hide{
    overflow: hidden;
    -webkit-transform: translateX(-200px);
    -ms-transform: translateX(-200px);
    -o-transform: translateX(-200px);
    transform: translateX(-200px);
}
#mobileMenu.show{
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
}
/*导航展开*/
@-webkit-keyframes menu{
    0%  {transform: scale(1.2);}
    100%{transform: scale(1);}
}
@-moz-keyframes menu{
    0%  {transform: scale(1.2);}
    100%{transform: scale(1);}
}
@-o-keyframes menu{
    0%  {transform: scale(1.2);}
    100%{transform: scale(1);}
}
@keyframes menu{
    0%  {transform: scale(1.2);}
    100%{transform: scale(1);}
}

#mobileMenu.show{}/*导航关闭*/
#mobileBg.hide{-webkit-transition: all 0.6s;-webkit-transform: translateX(0px);}
#mobileBg.show{-webkit-transition: all 0.6s;-webkit-transform: translateX(0px);}


/*导航关闭*/

#mobileBg.hide {
    -webkit-transition: all 0.6s;
    -webkit-transform: translateX(-250px);
}

#mobileBg.show {
    -webkit-transition: all 0.6s;
}
/**
 * 手机顶部
 * @author 杨朝杰
 * @return
 */

#toolbarnav {
	display: block;
	height: 2.25rem;
	width: 100%;
	max-width: 100%;
	position: relative;
	color: #fff;
	background: #fff;
	overflow: hidden;
}
.logo{
	padding: 0.5rem 0 0 0.5rem;
}
.logo a{
	display: block;
}
.logo img{
	height: 1.2rem;
}
.womanTop{
	padding: 0.5rem 0.5rem 0 0;
}
.womanTop img{
	height: 1.2rem;
}
#toolbarnav h1 {
	text-align: center;
	display: block;
	text-align: center;
	line-height: 2.25rem;
	color: #333;
	font-size: 0.8rem;
	padding: 0 0.5rem 0 0;
}

#go-back {
	position: absolute;
	top: 0;
	width: 2.0rem;
	height: 2.25rem;
	display: block;
	left: 0;
	font-size: 1.0rem;
	opacity: 0.7;
}

#go-back span {
	color: #666;
	font-size: 1.2rem;
	display: block;
	margin: 0.5rem 0 0 0.6rem;
}

#menu-btn {
	display: block;
	width: 2.0rem;
	height: 2.25rem;
	position: absolute;
	right: 0;
	top: 0;
	text-align: center;
}

#menu-btn span {
	font-size: 1.0rem;
	color: #333;
	opacity: 0.7;
	height: 2.25rem;
	line-height: 2.25rem;
	text-align: center;
}

#menu-btn em {
	font-size: 1.0rem;
	color: #333;
	opacity: 0.7;
	display: none;
	height: 2.25rem;
	line-height: 2.25rem;
	text-align: center;
}

#sub-btn {
	display: block;
	width: 2.5rem;
	height: 2.25rem;
	position: absolute;
	right: 0;
	top: 0;
}
#sub-btn span {
	font-size: 1.0rem;
	color: #fff;
	margin: 0.6rem 0 0 0.8rem;
	display: block;
}
#articleTool {
	position: relative;
	display: block;
	height: 2.25rem;
	width: 100%;
	max-width: 100%;
	position: relative;
	color: #333;
	background: #f9fafb;
}
#articleTool:after {
	content: " ";
	width: 200%;
	height: 200%;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #e6e6e6;
	box-sizing: border-box;
	-webkit-transform: scale(.5);
	transform: scale(.5);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	display: none;
}

#articleTool h1 {
	overflow: hidden;
	text-align: center;
	display: block;
	text-align: center;
	line-height: 2.25rem;
	color: #333;
	font-size: 0.8rem;
	margin: 0 2.0rem;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-background-clip: content;
	-moz-background-clip: content;
	background-clip: content;
}

#articleTool #go-back span {
	color: #333;
}
/**
 * 一级导航
 * @author 杨朝杰
 * @return
 */
.toEn{
    overflow: hidden;
    width: 100%;
    height: 2.25rem;
    line-height: 2.25rem;
    background: #5e2c65;
}
.toEn a{
    display: block;
    overflow: hidden;
    padding:0 10px;
    height: 100%;
    color: #fff;
    font-size: 16px;
}
.toEn a span{
    float: right;
    margin-top: 0.5rem;
    font-size: 25px;
}
.mobileMenuBox{
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
}
.menu_dl{
    overflow: hidden;
}
.menu_dl dd{
    overflow: hidden;
    position: relative;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    opacity: 0;
}
#mobileMenu.show .menu_dl dd{
    opacity: 1;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
}
#mobileMenu.show .menu_dl dd:nth-child(1){
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
#mobileMenu.show .menu_dl dd:nth-child(2){
    -webkit-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    transition-delay: 0.4s;
}
#mobileMenu.show .menu_dl dd:nth-child(3){
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
}
#mobileMenu.show .menu_dl dd:nth-child(4){
    -webkit-transition-delay: 0.8s;
    -o-transition-delay: 0.8s;
    transition-delay: 0.8s;
}
#mobileMenu.show .menu_dl dd:nth-child(5){
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
}
#mobileMenu.show .menu_dl dd:nth-child(6){
    -webkit-transition-delay: 1.2s;
    -o-transition-delay: 1.2s;
    transition-delay: 1.2s;
}
#mobileMenu.show .menu_dl dd:nth-child(7){
    -webkit-transition-delay: 1.4s;
    -o-transition-delay: 1.4s;
    transition-delay: 1.4s;
}
#mobileMenu.show .menu_dl dd:nth-child(8){
    -webkit-transition-delay: 1.6s;
    -o-transition-delay: 1.6s;
    transition-delay: 1.6s;
}
#mobileMenu.show .menu_dl dd:nth-child(9){
    -webkit-transition-delay: 1.8s;
    -o-transition-delay: 1.8s;
    transition-delay: 1.8s;
}
#mobileMenu.show .menu_dl dd:nth-child(10){
    -webkit-transition-delay: 2s;
    -o-transition-delay: 2s;
    transition-delay: 2s;
}
#mobileMenu.show .menu_dl dd:nth-child(11){
    -webkit-transition-delay: 2.2s;
    -o-transition-delay: 2.2s;
    transition-delay: 2.2s;
}#mobileMenu.show .menu_dl dd:nth-child(12){
    -webkit-transition-delay: 2.4s;
    -o-transition-delay: 2.4s;
    transition-delay: 2.4s;
}#mobileMenu.show .menu_dl dd:nth-child(13){
    -webkit-transition-delay: 2.6s;
    -o-transition-delay: 2.6s;
    transition-delay: 2.6s;
}
.menu_dl dd:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 100%;
    height: 1px;
    background: #676767;
    position: absolute;
    left: 0px;
    bottom: 0px;
    -webkit-transform: scaleY(0.5);
    -ms-transform: scaleY(0.5);
    -o-transform: scaleY(0.5);
    transform: scaleY(0.5);
}
.menu_dl dd:last-child:after{
    display: none;
}
.oneMenu{
	display: flex;
}
.menu_a{
    flex: 1;
    height: 40px;
    overflow: hidden;
    line-height: 40px;
    padding: 0px 10px;
}
.menu_a i{
    display: block;
    
    overflow: hidden;
    font-size: 14px;
    color:#fff;
}

.menu_dl dd.hover .menu_a i{
    color:#009E96;
}
.oneMenu span{
    width: 40px;
    height: 16px;
    font-size: 20px;
    color:#fff;
    display: none;
    line-height: 14px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    text-align: center;
    margin: 12px 0px;
}

.menu_dl dd.hover .oneMenu span{
    color:#009E96;
    
}
.menu_dl dd.active .oneMenu span{
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.menuDiv{
    overflow: hidden;
    display: none;
}
.menu_ul{
    background: #404040;
    overflow: hidden;
    padding: 5px 20px;
}
.menu_ul li{
    height: 35px;
    line-height: 35px;
    overflow: hidden;
}
.menu_ul li a{
    display: block;
    overflow: hidden;
    font-size: 12px;
    color:#fff;
}
.menu_ul li a span{
    display: block;
    position: relative;
    padding-left: 10px;
}
.menu_ul li a span:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 4px;
    height: 7px;
    overflow: hidden;
    background: url(../images/triangle.png) left center no-repeat;
    margin-top: -3px;
    position: absolute;
    left: 0px;
    top: 50%;
}
.menu_ul li.hover a span{
    color:#ff7e00;
}
.menu_ul li.hover a span:after{
    background: #ff7e00;
}
/**
 * 二级导航
 */

#mobileSubNav {
	height: 2.0rem;
	position: relative;
	z-index: 999999999999999;
	margin: 0 auto;
	background: #fff;
}
.mobileSubNav_title {
	height: 2.0rem;
	position: relative;
	z-index: 999999999999999999;
	margin-bottom: 0.5rem;
	width: calc(100% - 2rem);
}

.mobileSubNav_title:before {
	content: " ";
	width: 200%;
	height: 200%;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #e6e6e6;
	border-right: none;
	box-sizing: border-box;
	-webkit-transform: scale(.5);
	transform: scale(.5);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}
.mobileSubNav_title .swiper-container{
	width: 100%;
	height: 100%;
	position: relative;
}
.mobileSubNav_title  .swiper-slide {
      text-align: center;
      font-size: 0.7rem;
      float: left;
      /* Center slide text vertically */
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
}

.mobileSubNav_title ul li:before {
	content: " ";
	position: absolute;
	left: -1px;
	top: 0;
	width: 0.05rem;
	height: 1.95rem;
	border-right: 1px solid #ccc;
	-webkit-transform-origin: scaleX(0.3);
	transform-origin: scaleX(0.3);
	-webkit-transform: scaleX(0.3);
	transform: scaleX(0.3);
}

.mobileSubNav_title .swiper-button-next{
	position: absolute;
	top: auto;
	bottom: 0;
	right: -2rem;
	width: 2rem;
	height: 2rem;
	background: #fff;
	text-align: center;
	line-height: 2rem;
	font-size: 1.2rem;
}
.mobileSubNav_title .swiper-button-next:after{
	content: '';
	display: block;
	height: 100%;
	border-left: 1px solid #e5e5e5;
	-webkit-transform-origin: scaleX(0.5);
	transform-origin: scaleX(0.5);
	-webkit-transform: scaleX(0.5);
	transform: scaleX(0.5);
	top: 0;
	position: absolute;
}
.mobileSubNav_title .swiper-button-next:before{
	content: '';
	display: block;
	width: 100%;
	border-bottom: 1px solid #e5e5e5;
	-webkit-transform: scaleY(0.5);
	transform: scaleY(0.5);
	top: 0;
	position: absolute;
}
.mobileSubNav_title .swiper-button-disabled{
	opacity: 0.6 !important;
}
.mobileSubNav_title ul li.hover:after {
	content: '';
	border-bottom: 2px solid #139f99;
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
}

.mobileSubNav_title ul li.hover {
	height: calc(2rem - 1px);
	
}
.mobileSubNav_title ul li.hover a{
	color: #139f99;
}

.mobileSubNav_title ul li a {
	display: block;
	line-height: 2.0rem;
	text-align: center;
}

/**
 * 固定的底部
 * @author 杨朝杰
 * @return
 */
.footerBar {
	font-size: 0.6rem;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-background-clip: content;
	-moz-background-clip: content;
	background-clip: content;
	width: 100%;
	background: #009e96;
	padding: 0.5rem;
}
.footerEwm{
	padding: 0.2rem 0 0 0;
}
.footerEwm img{
	height: 6.5rem;
	width: 6.5rem;
}
.footerR{
	overflow: hidden;
	padding-left: 0.5rem;
	color: #fff;
}
.footTel{
	padding-left: 1.8rem;
	background: url(../images/footTel.png) left center no-repeat;
	background-size: 1.6rem;
}
.footTel span{
	font-size: 0.7rem;
	display: block;
}
.footTel em{
	font-size: 1rem;
    font-weight: bold;
}
.footLink,
.footSite{
	color: #fff;
	font-size: 0.6rem;
}
.footLink a{
	color: #fff;
}
.footerbtm{
	color: #fff;
	text-align: center;
	width: 95%;
	margin: 0 auto;
	font-size: 0.45rem;
	line-height: 0.9rem;
}
.footerbtm a{
	color: #fff;
}

.footerFlo {
	font-size: 0.6rem;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-background-clip: content;
	-moz-background-clip: content;
	background-clip: content;
	width: 100%;
	height: 2.4rem;
	background: #139f99;
	position: absolute;
	left: 0;
	bottom: 0;
    border-top: 1px solid #fff;
    transition: all 0.3s linear;
}
.footerFlo.hide{
    transform: translateX(-200px);
    -webkit-transform: translateX(-200px);
}
.footerFlo div {
	height: 2.4rem;
	width: 25%;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-background-clip: content;
	-moz-background-clip: content;
	background-clip: content;
	text-align: center;
	overflow: hidden;
	position: relative;
}

.footerFlo div a {
	display: block;
	height: 1.85rem;
	width: 100%;
	color: #fff;
	padding: 4px 0 0 0;
}

.footerFlo div a em {
	display: block;
	width: 100%;
	height: 1rem;
	padding-bottom: 0.25rem;
	clear: both;
	text-align: center;
	margin: 0 auto;
}
.footerFlo div a em.footIco1{
	background: url(../images/footIco1.png) center center no-repeat;
	background-size: 0.95rem;
}
.footerFlo div a em.footIco2{
	background: url(../images/footIco2.png) center center no-repeat;
	background-size: 0.95rem;
}
.footerFlo div a em.footIco3{
	background: url(../images/footIco3.png) center center no-repeat;
	background-size: 1rem;
}
.footerFlo div a em.footIco4{
	background: url(../images/footIco4.png) center center no-repeat;
	background-size:  0.95rem;
}
.footerFlo div a span {
	display: block;
	clear: both;
	font-size: 0.6rem;
	text-align: center;
}
.footerFlo div i {
	height: 0.75rem;
	font-size: 1.0rem;
	margin: 0.5rem 0 0 0;
	display: block;
}
/**
 * 固定的底部2
 * @author 杨朝杰
 * @return
 */	
.footerBar2{
	font-size:12px;
	overflow: hidden;
	color: #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-background-clip: content;
	-moz-background-clip: content;
	background-clip: content;
	width: 100%;
	height:45px;
	background:#fff;
	position:relative;
}
.footerBar2:after{
    content: " ";
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    border-top:1px solid #ededed;
    box-sizing: border-box;
    -webkit-transform: scale(.5);
    transform: scale(.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
	z-index:1;
	}
.footerBar2 .shareBt:after{ display:none;}

.footerBar2 div{
	overflow:hidden;
	position:relative;
	z-index:2;
	}
.phoneBt{
	width:30%;
	float:right;
	}
.phoneBt a {
    width: 100%;
    display: block;
    line-height: 45px;
    background: #ff7800;
    color: #fff !important;
    text-align: center;
}
.goBack2{
	width:16%;
	float:left;
	}
.goBack2 a{
    display: block;
    height:45px;
    background: url(../images/jt6.png) no-repeat 10px center;
    background-size: 26px;
    color: #666 !important;
    text-align: center;
	}
.marker, .shareDiv{
	float:right;
	line-height:45px;
	font-size:14px;
	padding:0 15px 0 0;
	}

.shareDiv .shareBt{ width:100%;}

.marker span, .shareDiv span{padding:0 0 0 6px;}
.marker em, .shareDiv em{color:#999;}


/**
 * 返回顶部
 * @author 杨朝杰
 * @return
 */

#scrollTop {
	width: 1.75rem;
	height: 1.75rem;
	line-height: 1.75rem;
	text-align: center;
	border-radius: 100%;
	background: rgba(255, 255, 255, 0.9);
	position: fixed;
	right: 0.5rem;
	bottom: 3.0rem;
	z-index: 9999;
	display: none;
	-webkit-box-shadow: 0px 0px 0.25rem rgba(153, 153, 153, 0.5);
	-moz-box-shadow: 0px 0px 0.25rem rgba(153, 153, 153, 0.5);
	box-shadow: 0px 0px 0.25rem rgba(153, 153, 153, 0.5);
}

#scrollTop em {
	font-size: 1.3rem;
	color: #666;
	padding: 0.15rem 0 0 0;
}


/**
 * page
 * @author 杨朝杰
 * @return
 */

.ajaxLoad {
	color: #666;
	height: 2.0rem;
	line-height: 2.0rem;
	text-align: center;
	clear: both;
	position: relative;
	background: #fff;
	margin: 0.25rem 0 0 0;
}

.ajaxLoad i {
	font-size: 0.8rem;
	margin: 0 0.25rem 0 0;
	color: #fc8b1c;
}


/**
 * 文章阅读页
 * @author 杨朝杰
 * @return
 */	
.articleBox{line-height:1.5rem;color:#454545;padding:10px;font-size:0.75rem;background:#fff;}
.articleBox img{max-width:100%;}
.articleTitle{
	font-size: 0.9rem;
    color: #333333;
    text-align: center;
    font-weight: bold;
    padding:10px 50px 0 50px;
    line-height: 1.5rem;
	}
.articleTime{display: block;clear: both;text-align: center;color: #999;font-size:0.6rem;padding:0 0 5px 0;}

.articleTop{
	overflow:hidden;
	background:#f9fafb;
	padding:10px 0;
	}
.articleTop .articleTitle{
	font-size:18px;
	color:#333333;
	text-align:center;
	font-weight:bold;
	padding:0 50px;
	line-height:30px;
	}
.articleTop .articleTime{
	text-align:center;
	padding:10px 0 0 0;
	}

.articleHand{
    clear:both;
    font-size:0.75rem;
    padding:0 0px 20px 0;
    overflow: hidden;
    }
.articleHand a{
    display:block;
    line-height:1.6rem;
    padding:0 20px 0 10px;
    float:left;
    clear: both;
}
.articleHand a i{
	padding:0 5px 0  0;
	}
.articleHand a.word{color:#37a6ff !important; }
.articleHand a.ppt{color:#ff7735 !important;}
.articleHand a.excel{color:#15bf44 !important; }
.articleHand a.pdf{color:#1369c0 !important; }
.articleHand a.zip{color:#ff9779 !important; }

.videoCon{
	position:absolute;
	top:205px;
	bottom:0;
	overflow-y:auto;
	}
.videoCon .articleTitle{
	font-size:18px;
	color:#333333;
	text-align:left;
	font-weight:bold;
	padding:5px 10px 0 10px;
	line-height:30px;
	}
.videoCon .articleTime{
	text-align:left;
	padding:0 0 0 10px;
	}
	
.audiojs{
	width:40px;
	height:40px;
	border-radius:100%;
	background:url(../audiojs/play.png) no-repeat center center;
	background-size:cover; 
	margin:2px 10px 0 0;
	position:relative;
	z-index:9;
	}
.audiojs.playing{
	width:40px;
	height:40px;
	border-radius:100%;
	background:url(../audiojs/play2.png) no-repeat center center;
	background-size:cover;
	}
.audiojs .scrubber{ display:none;}
.audiojs .time{ display:none;}
.audiojs .play-pause {
	width: 25px;
	height: 40px;
	padding:0 6px;
	margin: 0px;
	float: left;
	overflow: hidden;
}
.articelImgSlide{
    padding: 10px;
    overflow: hidden;
}
#articelImgSlide img{
    display: block;
    max-width: 100%;
}
#articelImgSlide{
    /*padding-bottom: 30px;*/
}
#articelImgSlide .swiper-pagination{
    bottom: 5px;
}
.articelImgSlide .swiper-button-prev{
    left: 0px;
    background: url(../images/aboutPrev3.png) no-repeat center center;
    background-size: auto 30px;
    outline: none;
}
.articelImgSlide .swiper-button-next{
    right: 0px;
    background: url(../images/aboutNext3.png) no-repeat center center;
    background-size: auto 30px;
    outline: none;
}
.articelImgSlide .swiper-pagination-bullet{background: #eee;opacity: 1;}
.articelImgSlide .swiper-pagination-bullet-active{background: #007aff;}
.pageUp{
	line-height: 1.5rem;
	font-size: 0.7rem;
	color: #858585;
	padding: 0.5rem;
}
/**
 * 分享
 * @author 杨朝杰
 * @return
 */
.shareBt{display: inline-block;width:20px;position: relative;}
.shareClose{line-height:2rem;text-align:center;padding:3px 0 0 0;font-size:0.8rem;}
.shareBt:after{display: block;content: "";overflow: hidden;width: 100%;padding-top: 100%;background: url(../images/share/share.png) no-repeat center center;background-size: 100% 100%;position: absolute;left: 50%;bottom:-4px;}
.shareBox{width:100%;overflow: hidden;background: #fff;position: fixed;left: 0px;bottom:-100%;z-index: 10000;-webkit-transition: bottom 0.8s;-o-transition: bottom 0.8s;transition: bottom 0.8s;padding:0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
.shareBox.show{bottom:0px;}
.shareCont{overflow: hidden;padding:0.5rem 0px 0.25rem;}
.bdsharebuttonbox p{display: block;width:20%;overflow: hidden;float: left;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;padding:0.25rem;}
.bdsharebuttonbox a{display: block;width: 100%;overflow: hidden;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;margin:0px !important;padding:0 0.5rem !important;background: none !important;height: auto !important;}
.bdsharebuttonbox span{display: block;width: 100%;overflow: hidden;padding: 0px 0.75rem;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
.bdsharebuttonbox i{clear:both;display: block;font-size:0.6rem;color:#666;text-align: center;overflow: hidden;margin:5px 0px;}
.boxShadow{position: fixed;left: 0px;top:0px;width: 100%;height: 100%;overflow: hidden;background: rgba(0,0,0,0.6);z-index: 999;display: none;}
.bdsharebuttonbox a:before{display: block;content: "";overflow: hidden;width: 100%;padding-top: 100%;}

/*.bdsharebuttonbox a.bds_weChat{
    display: none;
}*/
.bdsharebuttonbox a.bds_weChat:before{background: url(../images/share/shareBt5.png) no-repeat center center;background-size:100%;}
.bdsharebuttonbox a.bds_tsina:before{background: url(../images/share/shareBt1.png) no-repeat center center;background-size:100%;}
.bdsharebuttonbox a.bds_tqq:before{background: url(../images/share/shareBt2.png) no-repeat center center;background-size:100%;}
.bdsharebuttonbox a.bds_qzone:before{background: url(../images/share/shareBt3.png) no-repeat center center;background-size:100%;}
.bdsharebuttonbox a.bds_douban:before{background: url(../images/share/shareBt4.png) no-repeat center center;background-size:100%;}
.bdsharebuttonbox a.bds_sqq:before{background: url(../images/share/shareBt6.png) no-repeat center center;background-size:100%;}
.weChatShareTip{
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(0,0,0,0.5) url(../images/share/weChatShare.png) no-repeat calc(100% - 30px) 10px;
    background-size: 90% auto;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 9999999;
}
/**
 * 音乐播放器
 * @author 杨朝杰
 * @return
 */
.audio{margin:0 50px;padding:10px 0 10px 0;}
.audio-tips{margin-top:10px; color: #b1b1b1; text-align: center; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;}
.audio-detail{padding:5px 10px; display: -webkit-box; display: -ms-flexbox; display: flex; background:#f8f8f8;position:relative;}
.audio-detail:after{content: " "; width: 200%; height: 200%; position: absolute; top: 0; left: 0; border: 1px solid #e6e6e6; box-sizing: border-box; -webkit-transform: scale(.5); transform: scale(.5); -webkit-transform-origin: 0 0; transform-origin: 0 0;z-index:1;}
.audio .info{-webkit-box-flex: 1; -ms-flex: 1 0; flex: 1 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; overflow: hidden;line-height:45px;}
.audio .info p{margin: 0; font-size: 15px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #666; text-indent: 0;}
.audio .info .audio-title{-webkit-box-flex: 1.5; -ms-flex: 1.5; flex: 1.5; line-height: 24px;font-size:14px;}
.audio .info .audio-desc{-webkit-box-flex: 1; -ms-flex: 1; flex: 1; line-height: 16px;color:#999 !important;font-size:12px !important;}
.audio .info .audio-desc span{padding:0 15px 0 0;color:#ff000;}


/**++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++以上为模板框架部分（尽量少改）+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++/





/**
 * 全文列表
 * @author 杨朝杰
 * @return
 */

.textList1 {
	display: block;
	clear: both;
	overflow: hidden;
}

.textList1 dd {
	display: block;
	overflow: hidden;
}

.textList1 dd a {
	display: block;
	clear: both;
	height: 1.75rem;
	font-size: 0.7rem;
	padding: 0.1rem 0 0.1rem 0.75rem;
	position: relative;
	background: #fff url(../images/list2.jpg) no-repeat 8px center;
}

.textList1 dd a:after {
	content: " ";
	width: 200%;
	height: 0.05rem;
	position: absolute;
	bottom: 0;
	left: 0;
	border-bottom: 0.05rem solid #e6e6e6;
	box-sizing: border-box;
	-webkit-transform: scale(.5);
	transform: scale(.5);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

.textList1 dd:hover a {
	background: #fff;
}

.textList1 dd a p {
	display: inline-block;
	height: 1.75rem;
	line-height: 1.75rem;
	overflow: hidden;
}

.textList1 dd a span {
	color: #999;
	font-size: 0.6rem;
	overflow: hidden;
	line-height: 1.75rem;
	float: right;
	padding: 0 0.5rem 0 0;
}

.textList1 dd.trBg1 a {
	background: #fcfcfc url(../images/list2.jpg) no-repeat 0.5rem center;
}


/**
 * 全图列表 newsAllImg
 * @author 杨朝杰
 * @return
 */

.imgList1 {
	display: block;
	clear: both;
	overflow: hidden;
	padding: 0.5rem 0;
}

.imgList1 dd {
	display: inline;
	float: left;
	width: 50%;
	padding: 0.25rem;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
}
.imgList1 dd a {
	display: block;
	width: 100%;
	background: #fff;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0.25rem;
	border-radius: 2px;
}

.imgList1 dd .pic_box {
	position: relative;
	background: url(../images/loading.gif) no-repeat center center;
}

.imgList1 dd .pic_box:after {
	content: '';
	display: block;
	width: 100%;
	padding-top: 66.66666666%;
}

.imgList1 dd .pic_box img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
    transform: translate(-50%,-50%);
	display: block;
}

.imgList1 dd a span {
	display: block;
	clear: both;
	width: 100%;
	text-align: center;
	color: #555;
	font-size: 0.6rem;
	line-height: 1.0rem;
	height: 1.0rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 0.25rem 0 0 0;
}

/**
 * 图文列表
 * @author 杨朝杰
 * @return
 */

.textImg1 {
	clear: both;
	overflow: hidden;
}

.textImg1 dd {
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0.5rem;
	background: rgba(255, 255, 255, 1);
	position: relative;
}

.textImg1 dd:after {
	content: " ";
	width: 200%;
	height: 0.05rem;
	position: absolute;
	bottom: 0;
	left: 0;
	border-bottom: 0.05rem solid #e6e6e6;
	box-sizing: border-box;
	-webkit-transform: scale(.5);
	transform: scale(.5);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

.textImg1 dd:hover {
	background: #e1e1e1;
}

.textImg1 dd a {
	display: block;
	height: 4.0rem;
}

.textImg1 dd .pic_box {
	width: 6.0rem;
	height: 100%;
	position: relative;
	background: #f2f2f2 url(../images/loading.gif) no-repeat center center;
	float: left;
}

.textImg1 dd .pic_box img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
    transform: translate(-50%,-50%);
	display: block !important;
}

.textImg1 .divText {
	overflow: hidden;
	padding: 0 0 0 0.5rem;
}

.textImg1 .divText p {
	height: 1.3rem;
	line-height: 1.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: bold;
	font-size: 0.75rem;
	position: relative;
	margin: -0.25rem 0 0 0;
}

.textImg1 .divText span {
	display: block;
	line-height: 0.9rem;
	height: 2.7rem;
	overflow: hidden;
	padding: 0.25rem 0 0 0;
	color: #888;
	font-size: 0.65rem;
}

/**
 * 首页
 */
.shopBanner {
	overflow: hidden;
}
.shopBanner .swiper-pagination-bullet-active{
    background: #12a29b;
}
.shopBanner .swiper-container {
	height: 100%;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.shopBanner .swiper-slide img {
	width: 100%;
	height: 100%;
}
/*column:1*/
.box1{ 
	width:100%; 
	margin-bottom: 0.5rem; 
	background:#fff; 
	position: relative; 
	overflow:hidden;
	padding: 0.25rem 0; 
}
.box1:before{
	content: '';
	display: block;
	border-top:1px solid #e3e3e3;
	position: absolute;
	top: 0;
	width: 100%;
	left: 0;
	transform: scaleY(0.5);
	-webkit-transform: scaleY(0.5);
	
}
.box1_ul{ padding:5px; overflow:hidden;}
.box1_ul li{ width:20%; float:left; text-align:center; box-sizing:border-box;  -webkit-box-sizing: border-box; overflow:hidden; padding:5px 0;}
.box1_ul li a{ display:block; max-width: 130px; margin: 0 auto;}
.box1img1{ 
	padding-top: 80%;
	position: relative;
	overflow: hidden; 
	width: 80%; 
	max-width: 130px; 
	margin: 0 auto 5px auto;
	border-radius: 50%;
}
.box1img1 em{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute; 
	top: 0; 
	left: 0;
}
.box1img1 img{ 
	position: absolute; 
	top: 0; 
	left: 0;
	width: 100% ;
}
.box1ImgBg1{
	background: #4b89de;
}
.box1ImgBg1 em{
	background: url(../images/syIco1.png) center center no-repeat;
	background-size: 1.1rem;
}
.box1ImgBg2{
	background: #d4b53c;
}
.box1ImgBg2 em{
	background: url(../images/syIco5.png) center center no-repeat;
	background-size: 1.35rem;
}
.box1ImgBg3{
	background: #dc773b;
}
.box1ImgBg3 em{
	background: url(../images/syIco2.png) center center no-repeat;
	background-size: 1.05rem ;
}
.box1ImgBg4{
	background: #bc3bdc;
}
.box1ImgBg4 em{
	background: url(../images/syIco9.png) center center no-repeat;
	background-size: 1rem;
}
.box1ImgBg5{
	background: #45c5e0;
}
.box1ImgBg5 em{
	background: url(../images/syIco6.png) center center no-repeat;
	background-size: 1.3rem;
}
.box1ImgBg6{
	background: #c27cef;
}
.box1ImgBg6 em{
	background: url(../images/syIco8.png) center center no-repeat;
	background-size: 1.4rem;
}
.box1ImgBg7{
	background: #d44b48;
}
.box1ImgBg7 em{
	background: url(../images/syIco4.png) center center no-repeat;
	background-size: 1.8rem;
}
.box1ImgBg8{
	background: #58d6b1;
}
.box1ImgBg8 em{
	background: url(../images/syIco3.png) center center no-repeat;
	background-size: 1.05rem ;
}
.box1ImgBg9{
	background: #d44897;
}
.box1ImgBg9 em{
	background: url(../images/syIco7.png) center center no-repeat;
	background-size: 1.2rem;
}
.box1ImgBg10{
	background: #8aca56;
}
.box1ImgBg10 em{
	background: url(../images/syIco10.png) center center no-repeat;
	background-size: 1.2rem;
}
.box1_ul li span{ font-size:0.6rem; color:#555;}
/*column:2*/
.cmnTit{
	padding: 0 0.5rem;
	height: 2rem;
	line-height: 2rem;
}
.cmnTit span{
	float: left;
	color: #333;
	font-size: 0.75rem;
	padding-left: 0.5rem;
	position: relative;
}
.cmnTit span:after{
	content: '';
	display: block;
	border-left: 3px solid #009E96;
	position: absolute;
	height: 0.7rem;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.cmnTit a{
	float: right;
	font-size: 0.65rem;
	color: #999;
}
.ideCet{
	padding: 0.5rem;
	overflow: hidden;
}
.ideCet .imgBox{
	width: 9rem;
}
.ideCet .imgBox:after{
	padding-top: 66.666666%;
}
.ideList{
	overflow: hidden;
}
.ideList dd{
	color: #fff;
	padding: 0 0 0 1rem;
	background: #009F96;
	font-size: 0.55rem;
	margin-bottom: 0.4rem;
	position: relative;
    height: 1.73rem;
    position: relative;
}
.ideList dd span{
    display: block;
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
}
.ideList dd:after{
	content: '';
	display: block;
	height: 0.3rem;
	width: 0.3rem;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	left: 0.45rem;
	top: 50%;
    transform: translateY(-50%);
}
.ideTxt{
	font-size: 0.6rem;
	color: #666;
	line-height: 1rem;
	text-indent: 2em;
	padding:0 0.5rem;
}
.ideTxt a{
    display: block;
    color: #666;
}
.ideTxt span{
    color: #009F96;
}
.hospital{
	margin: 0 0.5rem;
	/*background: #009E96;
	padding: 0.5rem;*/
}
/*.hplBox{
	background: #fff;
	display: flex;
	padding:0.5rem 0.3rem 0.5rem 5rem;
	position: relative;
}*/
.hplBox img{
	max-width: 100%;
}
.hplIco{
	width: 5rem;
	font-size: 0.6rem;
	color: #009E96;
	text-align: center;
	position: absolute;
	padding-top: 2.8rem;
	background: url(../images/hplIco1.png) center top no-repeat;
	background-size: 2.5rem;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.hplList dd{
	line-height: 0.9rem;
	padding: 0.2rem 0;
	padding-left: 1.1rem;
	background: url(../images/hplIco2.png) left center no-repeat;
	background-size: 0.8rem;
}
/*column:3*/
.trStyleBox{
	padding: 0.5rem;
}
.trStyleList dd{
	float: left;
	display: inline;
	width: 31.6%;
	overflow: hidden;
	padding: 0 0 0.3rem 0.3rem;
}
.trStyleList dd.img1{
	width: 66.4%;
	padding: 0;
}
.trStyleList dd.img6{
	width: 66.4%;
	padding-bottom: 0;
	margin-top: -23.2%;
}
.trStyleList dd.img4{
	padding-left: 0;
}
.trStyleList dd.img5{
	clear: both;
	padding: 0;
}
.trStyleList .imgBox:after{
	padding-top: 66.66666%;
}
/*column:3*/
.site{
	background: #F5F5F5;
	padding: 0 0.5rem;
}
.siteList{
	display: flex;
}
.siteList li{
	flex: 1;
	background: #009E96;
	line-height: 1.4rem;
	text-align: center;
	
	font-size: 0.65rem;
}
.siteList li+li{
	margin-left: 0.6rem;
}
.siteList li a{
	color: #fff;
	display: block;
}
.map{
	background: #fcf8ed;
}
.rmcBanner,
.rmcLesion{
	text-align: center;
}
.rmcBanner a{
    display: block;
}
.rmcBanner img,
.rmcLesion img{
	max-width: 100%;
}
/* 
 * 风心病
 */
.surgery{
	background: #009E96;
	padding: 0.5rem 0;
}
.surgeryTit{
	font-size: 0.8rem;
	font-weight: bold;
	color: #fff;
	text-align: center;
}
.surgeryTit span{
	display: inline-block;
	width: 5rem;
	position: relative;
}
.surgeryTit span:after,
.surgeryTit span:before{
	content: '';
	display: block;
	width: 0.4rem;
	height: 0.4rem;
	background: #fff;
	position: absolute;
	top: 50%;
	transform:rotate(45deg) translateY(-50%);
}
.surgeryTit span:after{
	left: -0.4rem;
}
.surgeryTit span:before{
	right: -0.2rem;
}
.surgery1{
	text-align: center;
	font-size: 0;
}
.surgery1 span{
	color: #f00;
	background: #fff;
	display: inline-block;
	margin: 0 0.5rem;
	height: 1.8rem;
	line-height: 1.8rem;
	width: 5rem;
	font-size: 0.7rem;
	box-shadow: 0 1px 3px 2px rgba(0,0,0,0.2);
}
.sxbCmnTit{
	background: #f2f2f2;
	padding: 17px 0;
	text-align: center;
	font-weight: bold;
	font-size: 0.8rem;
	color: #009E96;
}
.sxbCmnTit span{
	display: block;
	padding-bottom: 0.6rem;
	background: url(../images/cmnTitBg1.png) center bottom no-repeat;
	background-size: 5.5rem;
}
.surgeryTxt{
	font-size: 0.65rem;
	color: #333;
	line-height: 1rem;
	text-indent: 2em;
	padding: 0.5rem;
}
.fxbDoctor{
	background: url(../images/dotorBg.jpg);
	background-size: cover;
}
.fdrTit{
	padding: 0 1.5rem;
	position: relative;
}
.fdrTit h4{
	font-size: 0.85rem;
	color: #f00;
	padding-left: 0.95rem;
	background: url(../images/fxbDocIco1.png) left center no-repeat;
	background-size: 0.8rem;
}
.fdrTit span{
	color: #009E96;
	font-size: 0.7rem;
	padding-left: 0.3rem;
}
.fdrTit em{
	color: #009E96;
	font-size: 0.6rem;
	font-weight: normal;
	padding-left: 0.3rem;
}
.fdrInfr{
	padding: 0.3rem 0;font-size: 0.6rem;
	color: #666;
}
.cntDoc{
	position: absolute;
	top: 0.2rem;
	right: 0.7rem;
	width: 5rem;
	height: 2rem;
	background: url(../images/cntDoc.png) center center no-repeat;
	background-size: contain;
}
@media screen and (max-width: 330px) {
	.cntDoc{
		width: 4rem;
	}
}
.fdrList{
	padding:0.5rem 0.5rem 0.5rem 6rem;
	overflow: hidden;
	background: url(../images/czy.png) left bottom no-repeat;
	background-size: 0;
}
.fdrList dd{
	padding:0 0 0 0.8rem ;
	background: url(../images/xx.png) left 0.2rem no-repeat;
	background-size: 0.7rem;
	margin-bottom: 0.4rem;
}
.fdrList span{
	display: block;
	background: #b5b4b4;
}
.fdrList em{
	display: inline-block;
	padding:0 0.5rem;
	line-height: 1.1rem;
	background: #009E96;
	color: #fff;
}
.valve{
	padding: 0.5rem;
}
.valveTit{
	font-size: 0.8rem;
	font-weight: bold;
	color: #009E96;
	text-align: center;
}
.valveInfr{
	line-height: 0.9rem;
	color: #666;
	text-indent: 2em;
	font-size: 0.65rem;
}
.valveImg,
.evtBox{
	text-align: center;
}
.valveImg img,
.evtBox img{
	max-width: 100%;
}
.evtTit{
	font-size: 0.8rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
	background: #009E96;
	padding: 0.8rem;
}
.evtTit span{
	display: inline-block;
    width: 5rem;
    position: relative;
}
.evtTit span:after, .evtTit span:before {
    content: '';
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    top: 50%;
    transform:translateY(-50%);
	background: url(../images/xx2.png) center center no-repeat;
	background-size: 0.8rem;
}
.evtTit span:before {
    right: -0.4rem;
}
.evtTit span:after {
    left: -0.4rem;
}
/* spinalCord */
.sndCmnTit{
	text-align: center;
}
.sndCmnTit i{
	display: block;
	height: 2rem;
	background: center center no-repeat;
}
.sndCmnTit span{
	font-size: 0.9rem;
	color: #10a4c2;
	line-height: 1.2rem;
	display: block;
}
.sndCmnTit em{
	font-size: 0.55rem;
	color: #666;
	text-transform: uppercase;
}
.sndCmnTit.ico1 i{
	background-image: url(../images/jsTit1.png);
	background-size: 1.5rem;
}
.treatBox{
	display: flex;
	padding: 0.5rem;
}
.treatTxt{
	flex: 2;
	border-right: 10px solid #10a4c2;
	font-size: 0.6rem;
	line-height: 0.9rem;
	color: #888;
	text-indent: 2em;
}
.treatImg{
	flex: 3;
	padding-left: 0.5rem;
}
.treatImg .imgBox:after{
	padding-top: 66.6666%;
}
.jsCase{
	
}
.sndCmnTit.ico2 i{
	background-image: url(../images/jsTit2.png);
	background-size: 1.5rem;
}
.jsCasebox{
	position: relative;
	min-height: 5rem;
}
.jsCasebox .block{
	position: absolute;
	height: 5rem;
	background: #10a4c2;
	width: 100%;
}
.jsCasebox .block i{
	display: block;
	height: 0.5rem;
	background: #accb0e;
	position: relative;
}
.jsCasebox .block i:after{
	display: block;
	content: '';
	width: 0.6rem;
	height: 0.6rem;
	background: url(../images/arrow.png) center center no-repeat;
	background-size: 0.6rem;
	position: absolute;
	bottom: -0.6rem;
	left: 50%;
	transform: translateX(-50%);
}
.jsCaseBox1{
	position: relative;
	padding: 0.5rem;
}
.jsCaseImg{
	text-align: center;
}
.jsCaseImg img{
	max-width: 100%;
}
.jsCaseList{
	padding: 0.5rem 0 0 0;
}
.jsCaseList dd{
	position: relative;
	text-indent: 2em;
	font-size: 0.6rem;
	color: #666;
	margin-bottom: 0.5rem;
	overflow: hidden;
}
.jsCaseList dd:after{
	content: '';
	display: block;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: #009E96;
	position: absolute;
	top: 0.3rem;
	left: 0.1rem;
}
.jsCaseList dd:last-of-type:after{
	display: none;
}
.jsCaseList dd em{
	color: #009E96;
	font-size: 0.65rem;
}
.jsCaseList .imgBox.img1{
	width: 6rem;
	margin: 0 auto;
}
.jsCaseList .imgBox.img1:after{
	padding-top: 146.2365%;
}
.jsCaseList .imgBox.img2{
	width: 8rem;
}
.jsCaseList .imgBox.img2:after{
	padding-top: 46.0227%;
}
.jsCaseTxt{
	padding: 0 0 0 0.5rem;
	font-size: 0.55rem;
	overflow: hidden;
}
.jsCaseTxt2{
	padding: 0.5rem;
	border: 2px solid #10a4c2;
	font-size: 0.6rem;
	line-height: 0.95rem;
}
.sndCmnTit.ico3 i{
	background-image: url(../images/jsTit3.png);
	background-size: 1.6rem;
}
.sndCmnTit.style1 span{
	color: #fff;
	background: #ec6941;
	width: 11.8rem;
	margin: 0 auto;
}
.CallForBox{
	padding: 0.5rem;
	text-align: center;
	position: relative;
}
.CallForBox img{
	max-width: 100%;
	position: relative;
}
.CallForBox i{
	display: block;
	height: 4rem;
	position: absolute;
	width: 50%;
	left: 0;
	top:50%;
	transform: translateY(-50%);
	background: #ec6941;
}
.sndCmnTit.style2{
	background: #10a4c2;
}
.sndCmnTit.ico4 i{
	background-image:url(../images/jsTit4.png);
	background-size: 1.4rem;
}
.sndCmnTit.style2 span,.sndCmnTit.style2 em{
	color: #fff;
}
.jsTeamLine{
	border-bottom: 2px solid #10a4c2;
	width: 6rem;
	margin:  0 auto;
}
.jsTeamList{
	padding: 0.5rem;
}
.jsTeamList dd{
	display: flex;
	margin-bottom: 0.5rem;
}
.jsTeamList .listImg{
	width: 5rem;
	margin:0 0.5rem 0 0;
}
.jsTeamList .imgBox{
	top: 50%;
	transform: translateY(-50%);
}
.jsTeamList .imgBox:after{
	padding-top: 129.16666666%;
}
.jsTeamBox{
	flex: 1;
}
.jsTeamList .listTit{
	font-size: 0.75rem;
	color: #1bbaca;
}
.jsTeamList .listTit img{
	width: 0.8rem;
	margin-left: 0.3rem;
}
.jsTeamList .listTit1{
	font-size: 0.65rem;
	color: #f39800;
}
.listInfr{
	font-size: 0.6rem;
	color: #666;
	line-height: 0.9rem;
}
.jsTeamImg{
	padding: 0 0 0.5rem 0;
}
.jsTeamImg img{
	max-width: 100%;
}

.recovery{
	text-align: center;
	padding: 0.5rem;
}
.recovery img{
	max-width: 100%;
}
.damage{
	background: #eeeeee;
	padding: 0.5rem;
}
.sndCmnTit.style3 em{
	line-height: 1.5rem;
	background: #10a4c2;
	display: inline-block;
	padding:0 0.8rem;
	color: #fff;
}
.sndCmnTit.ico5 i{
	background-image: url(../images/jsTit5.png);
	background-size: 1.5rem;
}
.damageList{
	overflow: hidden;
}
.damageList dd{
	float: left;
	display: inline;
	width: 50%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 0 0.5rem;
	color: #666;
}
.damageList .listIco{
	height: 3.2rem;
}
.damageList .listIco.ico1{
	background: url(../images/damageIco1.png) center top no-repeat;
	background-size: 2.8rem;
}
.damageList .listIco.ico2{
	background: url(../images/damageIco2.png) center top no-repeat;
	background-size: 2.8rem;
}
.damageList .listTit{
	font-size: 0.7rem;
	padding: 0.3rem 0;
}
.damageList .listInfr{
	line-height: 0.9rem;
	font-size: 0.6rem;
}
.damageForm{
	border-radius: 0.5rem;
	border: 1px solid #10a4c2;
	overflow: hidden;
	background: #fff;
}
.damageTit{
	text-align: center;
	font-size: 0.8rem;
	color: #fff;
	background: #10a4c2;
	line-height: 1.8rem;
}
.damageForm th,
.damageForm td{
	border: 1px solid #10a4c2;
	padding: 0.3rem;
	text-align: left;
	width: 33.3333%;
	
}
.damageForm th{background: #fff9b7;}
.damageForm tr{
	border: none;
}
.damageForm th:first-of-type,
.damageForm td:first-of-type{
	border-left: none;
}
.damageForm th:last-of-type,
.damageForm td:last-of-type{
	border-right: none;
}
.damageForm tr:last-of-type td{
	border-bottom: none;
}
.damageForm table{
	border: none;
	width: 100%;
}
/**
头部图片
*/
.topImg {
	overflow: hidden;
}
.topImg .imgBox {
	padding-top: 76.25%;
}
/*nav导航*/
.indexBox {
	position: relative;
	background: #fff;
}
.indexBox:before {
	display: block;
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 1px;
	background: #e6e6e6;
	transform: scaleY(0.5);
	-webkit-transform: scaleY(0.5);
}
.indexBox:after {
	display: block;
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 1px;
	background: #e6e6e6;
	transform: scaleY(0.5);
	-webkit-transform: scaleY(0.5)
}
.indexMenu_ul {
	clear: both;
	overflow: hidden;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0.5rem 0.75rem;
	position: relative;
}
.indexMenu_ul ul {
	overflow: hidden;
	border-bottom: 1px solid #b28850;
	padding-bottom: .8rem
}
.indexMenu_ul li {
	float: left;
	overflow: hidden;
	width: 33.3333%;
	text-align: center;
	padding: 0 0.25rem;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.indexMenu_ul li a {
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
	padding: 0.35rem;
}
.indexMenu_ul li a p {
	text-align: center;
}
.indexMenu_ul li a img {
	max-width: 85%;
	width: auto;
}
.indexMenu_ul li a span {
	padding-top: 0.25rem;
	display: block;
	font-size: 0.75rem;
	color: #555;
	line-height: 1.0rem;
	height: 1.0rem;
	clear: both;
	overflow: hidden;
}
.indexMenu_ul li:nth-of-type(2){animation-delay: 0.2s}
.indexMenu_ul li:nth-of-type(3){animation-delay: 0.4s}
.indexMenu_ul li:nth-of-type(4){animation-delay: 0.6s}
.indexMenu_ul li:nth-of-type(5){animation-delay: 0.8s}
.indexMenu_ul li:nth-of-type(6){animation-delay: 1s}
/*index_box2分娩套餐*/
.index_box2 {
	padding: .5rem;
	overflow: hidden
}
.index_title {
	text-align: center;
}
.index_title span {
	display: block;
	font-size: 1rem;
	color: #616161;
	font-weight: bold
}
.index_title i {
	display: block;
	font-size: .45rem;
	color: #03c1ac;
	font-style: normal;
}
.index_box2dl {
	display: block;
	clear: both;
	overflow: hidden;
	padding: .5rem 0;
	margin: 0 -.25rem
}
.index_box2dl dd {
	display: inline;
	float: left;
	width: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
	padding: .25rem 0
}
.index_box2dl dd:nth-of-type(2){animation-delay: 0.2s}
.index_box2dl dd:nth-of-type(3){animation-delay: 0.4s}
.index_box2dl dd:nth-of-type(4){animation-delay: 0.6s}
.index_box2dl dd:nth-of-type(5){animation-delay: 0.8s}
.index_box2dl dd:nth-of-type(6){animation-delay: 1s}
.index_box2dl dd a {
	display: block;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 .25rem;
	position: relative
}
.index_box2dl dd .imgBox {
	padding-top: 89.15254%;
}
.imgText {
	position: absolute;
	left: 0;
	top: .5rem;
	padding: .4rem .5rem;
	width: 75%;
	height: 20%
}
.textCol1 {
	background: rgba(255, 255, 255, .5) url(../images/tao1.png) no-repeat center center;
	background-size: 5.2rem;
}
.textCol2 {
	background: rgba(255, 255, 255, .5) url(../images/tao2.png) no-repeat center center;
	background-size: 5.2rem;
}
.textCol3 {
	background: rgba(255, 255, 255, .5) url(../images/tao3.png) no-repeat center center;
	background-size: 5.2rem;
}
.textCol4 {
	background: rgba(255, 255, 255, .5) url(../images/tao4.png) no-repeat center center;
	background-size: 5.2rem;
}
.in_detail {
	position: absolute;
	bottom: .5rem;
	right: .4rem;
	width: 4.5rem;
	height: 1.4rem;
	line-height: 1.4rem;
	background: #03c1ac;
	border-radius: 1.6rem
}
.in_detail span {
	display: block;
	text-align: center;
	font-size: .65rem;
	color: #fff;
}
/*环境展示服务*/
.evinr_box {
	position: relative;
	overflow: hidden
}
.evinr_box dd {
	margin-bottom: .45rem
}
.evinr_box .dd1 {
	float: left;
	width: 62.5%;
	overflow: hidden
}
.evinr_box .dd1 a {
	display: block;
	width: 100%
}
.evinr_box .dd1 .imgBox {
	padding-top: 66.25%
}
.evinr_box dt {
	width: 35%;
	float: right;
	background: #03c1ac;
	margin: 0 auto;
	text-align: center;
	position: relative
}
.evinr_box dt a {
	display: block;
	padding-top: 119%;
}
.evinr_box dt span {
	font-size: .85rem;
	color: #fff;
	font-weight: bold;
	display: block;
	position: absolute;
	top: 60%;
	width: 100%;
}
.evinr_box dt em {
	display: block;
	position: absolute;
	left: 40%;
	top: 30%;
	width: 1.5rem;
	height: 1.5rem;
	background: url(../images/titIcon1.png) no-repeat center center;
	background-size: 1.5rem
}
.evinr_box .dd2 {
	float: left;
	width: 49%;
	overflow: hidden;
	position: relative
}
.evinr_box .dd2 a {
	display: block;
	width: 100%
}
.evinr_box .dd2 .imgBox {
	padding-top: 69.108%
}
.evinr_box .dd3 {
	float: right;
	width: 49%;
	overflow: hidden
}
.evinr_box .dd3 a {
	display: block;
	width: 100%
}
.evinr_box .dd3 .imgBox {
	padding-top: 69.108%
}
.evinr_box .dd4 {
	float: left;
	width: 100%;
	overflow: hidden;
	position: relative
}
.evinr_box .dd4 a {
	display: block;
	width: 100%
}
.evinr_box .dd4 .imgBox {
	padding-top: 53.125%
}
.dd2_flo {
	position: absolute;
	left: 0;
	top: 50%;
	width: 48%;
	height: 55%;
	background: rgba(3, 193, 172, .6);
	margin-top: -15%;
}
.dd2_flo a {
	display: block;
	text-align: center
}
.dd2_flo span {
	font-size: .75rem;
	color: #fff;
	font-weight: bold;
	padding-top: 2rem;
	display: block
}
.dd2_flo em {
	display: block;
	position: absolute;
	left: 36%;
	top: 17%;
	width: 1.3rem;
	height: 1.3rem;
	background: url(../images/titIcon2.png) no-repeat center center;
	background-size: 1.3rem
}
.dd4_flo {
	position: absolute;
	right: 0;
	top: 50%;
	width: 28%;
	height: 35%;
	background: rgba(3, 193, 172, .6);
	margin-top: -9%;
}
.dd4_flo a {
	display: block;
	text-align: center
}

.dd4_flo span {
	font-size: .75rem;
	color: #fff;
	font-weight: bold;
	padding-top: 2rem;
	display: block
}

.dd4_flo em {
	display: block;
	position: absolute;
	left: 36%;
	top: 17%;
	width: 1.3rem;
	height: 1.3rem;
	background: url(../images/titIcon1.png) no-repeat center center;
	background-size: 1.3rem
}

/*专家团队*/
.teamBox {
	padding: .5rem
}

.teamBox dt {
	text-align: center;
}

.teamBox dt span {
	display: block;
	font-size: 1rem;
	color: #616161;
	font-weight: bold
}

.teamBox dt i {
	display: block;
	font-size: .45rem;
	color: #a9a9a9;
	font-style: normal;
}

.teamBox dd {
	overflow: hidden;
	padding: .5rem 0;
	border-bottom: 1px solid #9a9a9a
}

.imgTeam {
	width: 6rem;
	float: left;
	margin-right: .6rem;
}

.imgTeam a {
	display: block
}

.imgTeam .imgBox {
	padding-top: 118.3177%
}

.teamBox dd .text {
	font-size: .75rem;
	color: #333;
	line-height: 1.2rem
}

.teamBox dd .teTop {
	margin-bottom: .5rem
}

.teamBox dd .intr {
	font-size: .65rem
}

.teamBox dd .intr a {
	color: #029684
}

/*NT检查*/
.lookBox {
	padding: .5rem;
	position: relative;
	margin: 0 -.25rem;
	overflow: hidden
}

.lookBox dd {
	width: 50%;
	float: left;
}

.lookBox dd h3 {
	font-size: .75rem;
	padding: .5rem 0 .8rem;
	text-align: center;
	font-weight: bold
}

.lookBox dd a {
	display: block;
	margin: 0 .25rem;
	padding: .6rem .4rem;
	overflow: hidden;
	background: #b18e62
}

.lookBox dd a .imgBox {
	padding-top: 74.21875%
}

.text {
	font-size: .7rem;
	padding: .2rem 0 0;
	line-height: 1.1rem;
	color: #fff;
    overflow: hidden;
}
.lookBox .text{
    height: 4.4rem;
}
.lookBox span{
    color: #fff;
    font-size: .7rem;
    padding: .2rem 0 0;
    line-height: 1.1rem;
    color: #fff;
    overflow: hidden;
    display: block;
}
.proChaBox {
	overflow: hidden;
	position: relative
}

.proChaBox a {
	display: block
}

.proChaBox .imgBox {
	padding-top: 60.9375%
}
/* 
 * 先心病
 */
.conImg{
	text-align: center;
}
.conImg img{
	max-width: 100%;
}
.conTit1{
	position: relative;
	height: 2rem;
	line-height: 2rem;
	text-align: center;
}
.conTit1:before{
	position: absolute;
	top: 50%;
	content: '';
	display: block;
	width: 100%;
	left: 0;
	border-bottom: 3px solid #39b8d6;
}
.conTit1 span{
	position: relative;
	background: #fff;
	padding: 0 0.5rem;
	font-size: 0.8rem;
	color: #39B8D6;
	font-weight: bold;
}
.costTxt{
	padding: 0.5rem;
}
.costTxt1{
	font-size: 0.6rem;
	color: #39B8D6;
}
.costTxt2{
	font-size: 0.75rem;
	color: #eb6877;
	font-weight: bold;
	padding-left: 0.8rem;
	background: url(../images/xx3.png) left center no-repeat;
	background-size: 0.7rem;
}
.costTxt3{
	font-size: 0.6rem;
	color: #333;
	line-height: 0.9rem;
}
.costTxt3 em{
	color: #39B8D6;
}
.conTit2{
	background: #39b8d6;
	color: #fff;
	line-height: 2.2rem;
	height: 2.2rem;
	text-align: center;
	font-size: 0.85rem;
	font-weight: bold;
	position: relative;
}
.conTit2:after{
	position: absolute;
	bottom: -9px;
	content: '';
	left: 50%;
	transform: translateX(-50%);
	height: 9px;
	width: 25px;
	background: url(../images/arrow2.png) center center no-repeat;
	background-size: 25px;
}
.conTit3{
	text-align: center;
}
.conTit3 img{
	height: 2rem;
}
.conTeamList{
	padding: 0.5rem;
}
.conTeamList dd{
	background: #fff;
	border: 2px solid #39B8D6;
	border-radius: 3px;
	display: flex;
	padding: 0.5rem;
	margin-bottom: 0.5rem;
}
.conTeamList .listImg{
	width: 5rem;
	margin: 0 0.5rem 0 0;
}
.conTeamList .imgBox{
	padding-top: 136.4705%;
	box-shadow: 1px 1px 5px 0 rgba(0,0,0,0.2);
	top: 50%;
	transform: translateY(-50%);
}
.conTeamList .listBox{
	overflow: hidden;
	flex: 1;
}
.conTeamList .listTit{
	font-size: 0.8rem;
	font-weight: bold;
	color: #39B8D6;
}
.conTeamList .listTit em{
	font-size: 0.65rem;
	font-weight: normal;
	padding-left: 0.3rem;
}
.conTeamList .listInfo{
	text-indent: 2em;
	font-size: 0.6rem;
	line-height: 0.9rem;
	color: #333;
}
.conHj .evtTit{
	background: #39B8D6;
}
/* 
* 体检中心
* medical
*/
.medTop img{
	height: 1.2rem;
}
.medTop{
	padding: 0.45rem 0.5rem 0 0;
}
.medBanner .imgBox{
	padding-top: 62.5%;
}
.medImgBg1{
	background: #4b89de;
}
.medImgBg1 em{
	background: url(../images/medIco1.png) center center no-repeat;
	background-size: 1.2rem;
}
.medImgBg2{
	background: #d4b53c;
}
.medImgBg2 em{
	background: url(../images/medIco2.png) 56% center no-repeat;
	background-size: 1.3rem;
}
.medImgBg3{
	background: #dc773b;
}
.medImgBg3 em{
	background: url(../images/medIco3.png) center center no-repeat;
	background-size: 1.3rem;
}
.medImgBg4{
	background: #bc3bdc;
}
.medImgBg4 em{
	background: url(../images/medIco4.png) center center no-repeat;
	background-size: 1.3rem;
}
.medImgBg5{
	background: #45c5e0;
}
.medImgBg5 em{
	background: url(../images/medIco5.png) center center no-repeat;
	background-size: 1.3rem;
}
.medTit1{
	background: #02aebc;
	text-align: center;
	padding: 0.8rem 0;
}
.medTit1 .titBox{
	display: inline-block;
	width: 12rem;
	padding:0.8rem 0 0.5rem 0;
	border: 2px solid #fff;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.2) inset;
}
.medTit1 .titEn{
	font-size: 0.6rem;
	color: #fff;
	line-height: 1.3rem;
}
.medTit1 .titTxt{
	color: #fff;
	font-size: 0.85rem;
	line-height: 1.3rem;
	background: #fff;
	display: inline-block;
	color: #02aebc;
	padding:0 0.8rem;
	border-radius: 1.3rem;
}
.medTit1 .titInfo{
	font-size: 0.65rem;
	color: #fff;
	line-height: 1.3rem;
}
.package2{
	background: #fff;
}
.packageTit{
	text-align: center;
	padding: 0.5rem 0;
}
.packageTit span{
	display: block;
	font-size: 0.8rem;
	color: #02B4C6;
	margin-bottom: 0.2rem;
}
.packageTit em{
	color: #f8b551;
	font-size: 0.6rem;
}
.package1List{
	padding: 0.25rem !important;
	overflow: hidden;
}
.package1List dd{
	float: left;
	display: inline;
	width: 50%;
	padding: 0.25rem;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
.package1List dd a{
	display: block;
	background: #fff;
	overflow: hidden;
	border-radius: 0.2rem;
}
.package1List .imgBox{
	padding-top: 60.6896%;
}
.package1List .listBox{
	padding: 0.3rem;
}
.package1List .listTit{
	font-size: 0.7rem;
	color: #333;
	padding: 0.2rem 0;
}
.package1List .listInfo{
	font-size: 0.6rem;
	color: #666;
    line-height: 1rem;
    height: 2rem;
}
.package1List .listMore{
	font-size: 0.6rem;
	padding-top: 0.3rem;
	overflow: hidden;
}
.package1List .listMore span{
	display: block;
	color: #ff7200;
}
.package1List .listMore em{
	display: block;
	color: #999;
}
.package1List .listPrice{
    font-size: 0.5rem;
    color: #aeaeae;
    padding: 0.3rem 0;
}
.package2List{
	padding: 0.25rem;
	overflow: hidden;
	
}
.package2List dd{
	float: left;
	display: inline;
	width: 33.333333333%;
	padding: 0.25rem;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
.package2List dd a{
	display: block;
	background: #fff;
	overflow: hidden;
	padding-top: 100%;
	background: url(../images/medBg1.png) center top no-repeat;
	background-size: 100%;
	position: relative;
}
.package2List dd .listBox{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.package2List dd .listTit{
    font-size:0.6rem ;
    color: #f8b551;
    text-align: center;
    padding-top: 0.6rem;
    position: relative;
}
.package2List dd .listTit i{
    display: block;
    position: absolute;
    right: 0.4rem;
    top: 0.3rem;
    height: 1rem;
    width: 1rem;
    color: #fff;
    font-size: 0.45rem;
    background: #f8b551;
    text-align: center;
    border-radius: 50%;
}
.package2List dd .listTit i:after{line-height: 1rem;}
.package2List dd:nth-of-type(1) .listTit i:after{content: '1';}
.package2List dd:nth-of-type(2) .listTit i:after{content: '2';}
.package2List dd:nth-of-type(3) .listTit i:after{content: '3';}
.package2List dd:nth-of-type(4) .listTit i:after{content: '4';}
.package2List dd:nth-of-type(5) .listTit i:after{content: '5';}
.package2List dd:nth-of-type(6) .listTit i:after{content: '6';}
.package2List dd:nth-of-type(7) .listTit i:after{content: '7';}
.package2List dd:nth-of-type(8) .listTit i:after{content: '8';}
.package2List dd:nth-of-type(9) .listTit i:after{content: '9';}
.package2List dd .listIfo{
	font-size: 0.45rem;
	color: #444;
} 
.package2List dd .listIfo span{
	display: inline-block;
	width: 60%;
	text-align: right;
}
.package2List dd .listMore {
	position: absolute;
	bottom: 0.2rem;
	left: 0;
	width: 100%;
	text-align: center;
}
.package2List dd .listMore em{
	display: inline-block;
	font-size: 0.6rem;
	color: #fff;
	padding: 0 0.8rem;
	border-radius:1.2rem ;
	height: 1.2rem;
	line-height: 1.2rem;
	background: #02B4C6;
}
.package2 .package2List{
	background: url(../images/medIco6.png) right 0.5rem bottom 0.5rem no-repeat;
	background-size: 7.5rem;
}
.package3{
	background: #fff;
}
.package3 .package2List{
	
}
.package2List dt{
	width: 33.33333%;
	float: left;
	position: relative;
}
.package2List dt:after{
	content: '';
	padding-top: 100%;
	display: block;
}
.package2List dt img{
	position: absolute;
	top: 50%;
	width: 90%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.package2List .dt1{
	background: url(../images/medIco7.png) center center no-repeat;
	background-size: 50%;
}
.packageLine{
	border-bottom: 3px dashed #02B4C6;
	margin: 0 0.5rem;
}
.medTit2{
	text-align: center;
	padding: 1.4rem 0 0.5rem 0;
	position: relative;
}
.medTit2:after{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0.4rem;
	background: #02B4C6;
	box-shadow: 0 2px 10px 0 rgba(0,0,0,0.2);
}
.medTit2 .titBox{
	border: 2px solid #02b4c6;
	width: 14rem;
	margin: 0 auto;
	padding: 0 0 0.5rem 0;
}
.medTit2 .titTxt{
	background: #F5F5F5;
	position: relative;
	display: inline-block;
	padding: 0 0.8rem;
	font-size: 0.85rem;
	color: #02b4c6;
	top: -0.7rem;
	font-weight: bold;
}
.medTit2 .titInfo{
	margin-top: -0.5rem;
	font-size: 0.6rem;
	color: #666;
}
.medYsImg img{
	width: 100%;
}
.serviceBox{
	padding:0 0.5rem;
}
.serviceList dd{
	line-height: 1.5rem;
	text-align: center;
	background: #f8b551;
	color: #fff;
	font-size: 0.7rem;
	margin-bottom: 0.4rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.serviceBox{
	display: flex;
}
.serviceList{
	flex: 1;
	padding-right: 0.5rem;
}
.serviceImg{
	flex: 1;
}
.serviceImg1 .imgBox{
	padding-top: 55.576%;
	border-radius: 0.3rem;
}
.medTeamList{
	padding: 0 0.5rem;
}
.medTeamList .swiper-slide{
    width: 50%;
}
.medTeamList a{
	display: block;
}
.medTeamList .imgBox{
	padding-top: 65.5172%;
}
.medTeamList .listBox{
	padding: 0.3rem;
	background: #fff;
}
.medTeamList .listTit{
	font-size: 0.5rem;
	color: #333;
	line-height: 1.2rem;
}
.medTeamList .listTit em{
	padding-right: 0.5rem;
    font-size: 0.75rem;
}
.medTeamList .listInfo{
	line-height: 1.1rem;
	font-size: 0.6rem;
}
.medTeamList .listMore{
    color: #acacac;
    padding-top: 0.2rem;
    font-size: 0.6rem;
}
.medTeam-next,
.medTeam-prev{
	position: absolute;
	top: 30%;
	height: 1.5rem;
	width: 0.8rem;
	background: #fff;
	line-height: 1.5rem;
	color: #666;
	font-size: 0.9rem;
	z-index: 9;
	text-align: center;
	outline: none;
    display: none;
}
.medTeam-prev{
	left: 0;
}
.medTeam-next{
	right: 0;
}
.medDevice{
	text-align: center;
}
.deviceList{
    padding: 0.25rem;
}
.deviceList dd{
    box-sizing: border-box;
    padding: 0.25rem;
    float: left;
    width: 33.33333%;
}
.deviceList dd a{
    display: block;
}
.deviceList .imgBox{
    padding-top: 65.5172%;
}
.deviceList .listBox{
    padding: 0.3rem 0;
    background: #fff;
}
.deviceList .listTit{
    font-size: 0.35rem;
    color: #333;
    line-height: 1.2rem;
}
/* tc 详情 */
.tcBox{
	padding: 0.5rem;
	background: #fff;
}
.tcImg .imgBox{
	padding-top: 66.666666%;
}
.tcTitle{
	font-size: 0.8rem;
	color: #333;
	font-weight: bold;
	padding: 0.3rem 0;
}
.tcInfo{
	line-height: 1rem;
	font-size: 0.6rem;
}
.tcInfo img{
    max-width: 100%;
}
.tcBuy{
	overflow: hidden;
	background: #fff;
	font-size: 0.65rem;
	height: 2rem;
}
.tcPrice{
	width: 3.5rem;
	line-height: 2rem;
	color: #ff632a;
	background: url(../images/tcIco1.png) 0.5rem center no-repeat;
	background-size: 0.75rem;
	padding-left: 1.5rem;
    font-size: 0.7rem;
    font-weight: bold;
}
.tcConsult{
	width: 4rem;
	line-height: 2rem;
	background: #f0f0f0;
}
.tcConsult a{
	display: block;
	color: #666;
	padding-left: 1.5rem;
	background: url(../images/tcIco2.png) 0.5rem center no-repeat;
	background-size: 0.8rem;
}
.tcBuy1{
	overflow: hidden;
	line-height: 2rem;
	background: #ff632a;
}
.tcBuy1 a{
	display: block;
	color: #fff;
	padding-left: 2rem;
    width: 3rem;
    margin: 0 auto;
	background: url(../images/tcIco3.png) 1rem center no-repeat;
	background-size: 0.8rem;
}
.codeBuy{
	background: #fff;
}
.codeBuyTit{
	line-height: 1.5rem;
	text-align: center;
	font-size: 0.75rem;
	color: #333;
}
.codeBuyImg{
	padding: 0.8rem 0;
	margin: 0 auto;
	width: 6rem;
	text-align: center;
}
.codeBuyImg img{
	width: 6rem;
	height: 6rem;
}
.codeBuyImg span{
	display: block;
	padding-top: 0.3rem;
	color: #444;
}