@charset "utf-8";
/*banner*/
.banner{position: relative;width: 100%;overflow: hidden;}
.banner .swiper-slide{height: 100vh;}
.banner .swiper-slide .pic{display: block;height: 100%;background-position: center;background-size: cover;background-repeat: no-repeat;}
.banner .swiper-pagination{z-index: 1;bottom: 22px;font-size: 0;}
.banner .swiper-pagination-bullet{width: 10px;height: 10px;background-color: transparent;border: 1px solid #ccc;border-radius: 50%;opacity: 1;}
.banner .swiper-pagination-bullet-active{position: relative;background-color: #00b1b7;border-color: #00b1b7;}
.banner .swiper-pagination-bullet-active:after{content: "";position: absolute;left: 50%;top: 50%;width: 14px;height: 14px;margin: -8px 0 0 -8px;border: 1px solid #00b1b7;border-radius: 50%;}
.banner .btn{z-index: 1;position: absolute;top: 50%;width: 30px;height: 30px;margin-top: -15px;background: url(../images/icons_arrowLR_30_white.png) no-repeat;cursor: pointer;transition: 0.3s;}
.banner .prev-btn{left: 0;background-position: 0 0;transform: translateX(-100%);}
.banner .next-btn{right: 0;background-position: -30px 0;transform: translateX(100%);}
.banner:hover .prev-btn{transform: translateX(50%);}
.banner:hover .next-btn{transform: translateX(-50%);}

/******首页******/
html,body{overflow-x: hidden;}
body{background-color: #121212;}
.index-content{}
/*标题*/
.index-title{padding-bottom: 40px;text-align: center;}
.index-title .name .cn{display: inline-block;font-size: 36px;color: #fff;}
.index-title .ani-icon{position: relative;display: inline-block;margin-top: 15px;font-size: 0;}
.index-title .ani-icon .svg{width: 60px;height: 30px;fill: transparent;stroke-width: 2px;stroke: #00b1b7;stroke-dasharray: 125;stroke-dashoffset: 125;animation: indexTitleSvg 2s ease-in-out infinite;}
.index-title .ani-icon .dot{position: absolute;left: 0;top: 0;width: 6px;height: 6px;background-color: #00b1b7;border-radius: 50%;box-shadow: 0 0 4px #00b1b7;offset-path: path("M0 20 L16 20 L20 7 L27 30 L37 0 L40 20 L60 20");animation: dotMove 2s ease-in-out infinite;}
@keyframes indexTitleSvg{
	to{stroke-dashoffset: 0;}
}
@keyframes dotMove{
	to{offset-distance: 100%;}
}
/*布局*/
.index-content .part{}
.index-content .part .content{}
.index-content .part1{padding: 90px 0 240px;background: url(../images/index_part1_bg.png) center no-repeat;background-size: cover;}
.index-content .part2{padding: 70px 0 100px;background: url(../images/index_part2_bg.png) center no-repeat;background-size: cover;}
.index-content .part3{padding: 70px 0 0;}
.index-content .part4{position: relative;padding: 120px 0 150px;}
.index-content .part4:before{content: "";z-index: -1;position: absolute;left: 50%;top: 50%;width: 42%;padding-top: 42%;background: url(../images/index_part4_ball_bg.png) center no-repeat;background-size: 100% 100%;transform: translate(-50%,-55%);animation: ballRotate 240s linear infinite;}
.index-content .part4:after{content: "";z-index: -1;position: absolute;left: 0;top: -5%;width: 100%;padding-top: 90%;background: url(../images/index_part4_bg.png) center no-repeat;background-size: cover;}
@keyframes ballRotate{
	to{transform: translate(-50%,-55%) rotate(360deg);}
}
.index-content .part5{position: relative;padding: 50px 0 0;}
.index-content .part5 .content{padding: 240px 0 20px;background: url(../images/life_bg.png) center bottom no-repeat;background-size: contain;}

/*新闻区*/
.news-box{z-index: 1;position: relative;padding-top: 66px;}
/*内容展示*/
.news-swiper{position: relative;padding-left: 200px;overflow: hidden;}
.news-swiper:after{content: "";position: absolute;}
.news-swiper .swiper-slide{display: block;padding-right: 45px;transition: none;}
.news-swiper .swiper-slide .pic{position: relative;overflow: hidden;}
.news-swiper .swiper-slide .pic:after{content: "";position: absolute;left: 0;right: 0;top: 0;bottom: 0;background-color: rgba(0,0,0,.5);transition: 0.3s;}
.news-swiper .swiper-slide .pic em{display: block;padding-top: 64%;background-position: center;background-size: cover;background-repeat: no-repeat;transition: 0.5s;}
.news-swiper .swiper-slide .info{padding-top: 40px;font-size: 16px;text-align: center;color: #fff;}
.news-swiper .swiper-slide .info .date{position: relative;padding-bottom: 20px;line-height: 20px;}
.news-swiper .swiper-slide .info .date:before{content: "";position: absolute;left: 0;bottom: 0;width: calc(100% + 45px);height: 1px;background-color: rgba(255,255,255,.2);}
.news-swiper .swiper-slide .info .date:after{content: "";position: absolute;left: 0;bottom: 0;width: 100%;height: 1px;background-color: #fff;transform: scaleX(0);transition: 1s;}
.news-swiper .swiper-slide .info .txt{height: 72px;margin-top: 10px;line-height: 36px;text-align: center;overflow: hidden;transition: 0.3s;}
.news-swiper .swiper-slide .more-btn{position: relative;display: inline-block;width: 200px;height: 60px;margin-top: 25%;border: 2px solid #00b1b7;border-radius: 30px;font-size: 16px;line-height: 56px;text-align: center;color: #fff;overflow: hidden;}
.news-swiper .swiper-slide .more-btn:after{content: "";z-index: -1;position: absolute;left: 0;top: 0;width: 100%;height: 100%;background-image: linear-gradient(90deg,#24b9b3,#01b5f9);transform: scaleX(0);transition: 0.3s;}
.news-swiper .swiper-slide .more-btn:hover:after{transform: scaleX(1);}
.news-swiper .swiper-slide:hover .pic:after{opacity: 0;}
.news-swiper .swiper-slide:hover .pic em{transform: scale(1.1);}
.news-swiper .swiper-slide:hover .info .date:after{transform: scaleX(1);}
.news-swiper .swiper-slide:hover .info .txt{transform: translateY(.5em);}
.news-swiper .btn{z-index: 3;position: absolute;top: 50%;width: 108px;height: 88px;background-color: #122022;cursor: pointer;transform: translateY(-50%);transition: 0.3s;}
.news-swiper .btn .icon{position: absolute;top: 50%;width: 56px;height: 56px;background: url(../images/icons_btnLR_60.png) no-repeat;background-size: auto 56px;transform: translateY(-50%);}
/* .news-swiper .prev-btn{right: -108px;border-radius: 44px 0 0 44px;} */
.news-swiper .prev-btn{right: 0;border-radius: 44px 0 0 44px;}
.news-swiper .prev-btn .icon{left: 16px;background-position: -56px 0;}
.news-swiper .next-btn{left: 0;border-radius: 0 44px 44px 0;}
.news-swiper .next-btn .icon{right: 16px;background-position: 0 0;}
/* .news-swiper .prev-btn.show{right: 0;} */
/*背景图*/
.news-bg-swiper{z-index: -1;position: absolute;left: 0;top: 0;width: 100%;overflow: hidden;}
.news-bg-swiper .swiper-wrapper{transition-delay: 0.2s;transition-timing-function: cubic-bezier(0.520, -0.185, 0.910, 0.380);}
.news-bg-swiper .swiper-slide{padding: 0 18.75%;}
.news-bg-swiper .swiper-slide .pic{position: relative;padding-top: 50%;background-position: center;background-size: cover;background-repeat: no-repeat;opacity: .4;}
.news-bg-swiper .swiper-slide .pic:before{content: "";position: absolute;left: 0;right: 0;top: 0;bottom: 0;backdrop-filter: blur(10px);-webkit-backdrop-filter: blur(10px);}

/*产品中心*/
.product-show-box{}
/*选项卡*/
.product-show-box .tabs{border-bottom: 1px solid rgba(255,255,255,.2);font-size: 0;text-align: center;}
.product-show-box .tabs span{position: relative;display: inline-block;margin: 0 30px;font-size: 24px;line-height: 50px;color: #fff;cursor: pointer;}
.product-show-box .tabs span:after{content: "";position: absolute;left: 50%;bottom: 0;width: 46px;height: 2px;margin-left: -23px;background-image: linear-gradient(90deg,#81c8b5,#00b1b7);transform: scaleX(0);transition: 0.3s;}
.product-show-box .tabs span.on{color: #00b1b7;}
.product-show-box .tabs span.on:after{transform: scaleX(1);}
.product-show-box .tab-content{position: relative;margin-top: 48px;}
.product-show-box .tab-content > .item{height: 0;opacity: 0;overflow: hidden;transition: 0.3s;}
.product-show-box .tab-content > .item.show{height: auto;opacity: 1;}
/*产品轮播*/
.product-swiper{position: relative;overflow: hidden;}
.product-swiper .swiper-slide{overflow: hidden;padding: 0 7%;transition: 0.3s;}
.product-swiper .swiper-slide > .con-l{float: left;width: 36%;}
.product-swiper .swiper-slide > .con-l .info{}
.product-swiper .swiper-slide > .con-l .info .title{color: #fff;}
.product-swiper .swiper-slide > .con-l .info .title .big{font-size: 40px;}
.product-swiper .swiper-slide > .con-l .info .title .big sup{display: inline-block;margin-left: 10px;font-size: 20px;}
.product-swiper .swiper-slide > .con-l .info .title .small{margin-top: 20px;font-size: 24px;}
.product-swiper .swiper-slide > .con-l .info .desc{margin-top: 50px;font-size: 30px;color: #00b1b7;}
.product-swiper .swiper-slide > .con-l .info .more{position: relative;display: inline-block;padding: 0 3.5em 0 2em;margin-top: 50px;background-image: linear-gradient(180deg,#82c9b5,#01b2b5);font-size: 18px;line-height: 60px;text-align: center;color: #fff;}
.product-swiper .swiper-slide > .con-l .info .more:before{content: "";position: absolute;right: 48px;top: 50%;width: 8px;height: 8px;border-top: 1px solid #fff;border-right: 1px solid #fff;transform: rotate(45deg) translate(0,-50%);}
.product-swiper .swiper-slide > .con-l .info .more:after{content: "";position: absolute;right: 40px;top: 50%;width: 8px;height: 8px;border-top: 1px solid #fff;border-right: 1px solid #fff;transform: rotate(45deg) translate(0,-50%);}
.product-swiper .swiper-slide > .con-r{position: relative;margin-left: 36%;}
.product-swiper .swiper-slide > .con-r .pic{display: block;padding-top: 69%;background-position: center;background-size: cover;background-repeat: no-repeat;border: 1px solid rgba(255,255,255,.2);}
.product-swiper .swiper-slide > .con-r .bg{z-index: -1;position: absolute;left: 0;right: 0;top: 0;bottom: 0;background-color: rgba(0,177,183,.3);background-position: center;background-size: cover;background-repeat: no-repeat;}
.product-swiper .btn{z-index: 1;position: absolute;bottom: 30px;width: 30px;height: 30px;background: url(../images/icons_arrowLR_30_white.png);background-size: auto 100%;cursor: pointer;}
.product-swiper .prev-btn{right: 8%;background-position: 0 0;}
.product-swiper .next-btn{right: 4%;background-position: -30px 0;}
.product-swiper .swiper-pagination{z-index: 1;left: 7%;bottom: 0;width: auto;font-size: 0;}
.product-swiper .swiper-pagination-bullet{position: relative;width: 40px;height: 40px;background-color: transparent;border: 2px solid rgba(255,255,255,.2);border-radius: 50%;font-size: 14px;line-height: 36px;color: #999;opacity: 1;}
.product-swiper .swiper-pagination-bullet svg{position: absolute;left: -2px;top: -2px;width: 40px;height: 40px;fill: transparent;stroke-width: 2px;stroke: #00b1b7;stroke-dasharray: 126;stroke-dashoffset: -126;}
.product-swiper .swiper-pagination-bullet-active{color: #00b1b7;}
.product-swiper .swiper-pagination-bullet-active svg{animation: loopSvg 5s linear;}
@keyframes loopSvg{
	to{stroke-dashoffset: 0;}
}

/*临床应用*/
.clinic-box{font-size: 0;}
.clinic-box > .item{position: relative;display: inline-block;vertical-align: top;width: 25%;border-left: 8px solid transparent;border-bottom: 11px solid transparent;font-size: 24px;color: #fff;overflow: hidden;}
.clinic-box > .item .pic{padding-top: 66.66%;background-position: center;background-size: cover;background-repeat: no-repeat;opacity: .7;transition: 0.3s;}
.clinic-box > .item .info{position: absolute;left: 0;right: 0;top: 0;bottom: 0;background-color: rgba(0,177,183,.6);transition: 0.3s;transform: scaleY(0);transform-origin: bottom;}
.clinic-box > .item .info .name{position: absolute;left: 50%;top: 50%;max-width: 90%;height: 60px;padding: 0 2em;border: 1px solid #fff;border-radius: 30px;line-height: 58px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;transform: translate(-50%,-50%);}
.clinic-box > .item:nth-child(1){float: left;border-left-width: 0;border-left-width: 0;}
.clinic-box > .item:nth-child(1) .pic{padding-top: 133.32%;}
.clinic-box > .item:nth-child(3){width: 50%;}
.clinic-box > .item:nth-child(3) .pic{padding-top: 33%;}
.clinic-box > .item:hover .pic{transform: scale(1.05);}
.clinic-box > .item:hover .info{transform: scaleY(1);}

/*关于我们*/
.about-box{position: relative;padding-left: 7%;}
/*图片展示*/
.about-pic-show{position: relative;width: 900px;height: 664px;}
.about-pic-show > .item{position: absolute;cursor: pointer;}
.about-pic-show > .item .name{position: absolute;font-size: 28px;line-height: 30px;color: #fff;white-space: nowrap;transition: 0.5s;}
.about-pic-show > .item .icon{position: absolute;width: 82px;height: 82px;border: 3px solid #00b1b7;border-radius: 50%;transition: 0.5s;}
.about-pic-show > .item .icon img{position: absolute;left: 0;right: 0;top: 0;bottom: 0;width: 36px;height: 36px;margin: auto;}
.about-pic-show > .item .pic{width: 100%;height: 100%;background-position: center;background-size: cover;background-repeat: no-repeat;opacity: 0;transition: 1s linear;}
.about-pic-show > .item .svg{position: absolute;left: 0;top: 0;width: 100%;height: 100%;fill: rgba(0,177,183,.05);stroke-width: 1px;stroke: rgba(255,255,255,.3);}
.about-pic-show > .item:hover .name{color: #00b1b7;}
.about-pic-show > .item:hover .icon{width: 36px;height: 36px;border: 0;}
.about-pic-show > .item:hover .pic{opacity: 1;}
.about-pic-show .mid-svg{position: absolute;left: 467px;top: 242px;width: 93px;height: 92px;fill: rgba(0,177,183,.1);stroke-width: 1px;stroke: rgba(255,255,255,.3);transform: scale(1.15);}
/*item1*/
.about-pic-show > .item1{left: 305px;top: 0;width: 196px;height: 238px;}
.about-pic-show > .item1 .pic{clip-path: url(#aboutClipPath1);-webkit-clip-path: url(#aboutClipPath1);}
.about-pic-show > .item1 .name{left: -150px;top: 80px;}
.about-pic-show > .item1 .icon{left: 56px;top: 56px;}
.about-pic-show > .item1:hover .icon{left: 188px;top: 266px;}
/*item2*/
.about-pic-show > .item2{right: 1px;top: 7px;width: 334px;height: 274px;}
.about-pic-show > .item2 .pic{clip-path: url(#aboutClipPath2);-webkit-clip-path: url(#aboutClipPath2);}
.about-pic-show > .item2 .name{left: 270px;top: 116px;}
.about-pic-show > .item2 .icon{right: 96px;top: 96px;}
.about-pic-show > .item2:hover .icon{right: 368px;top: 260px;}
/*item3*/
.about-pic-show > .item3{left: 0;bottom: 0;width: 462px;height: 376px;}
.about-pic-show > .item3 .pic{clip-path: url(#aboutClipPath3);-webkit-clip-path: url(#aboutClipPath3);}
.about-pic-show > .item3 .name{left: -40px;bottom: 166px;}
.about-pic-show > .item3 .icon{left: 146px;bottom: 146px;}
.about-pic-show > .item3:hover .icon{left: 494px;bottom: 358px;}
/*item4*/
.about-pic-show > .item4{right: 239px;bottom: 169px;width: 130px;height: 156px;}
.about-pic-show > .item4 .pic{clip-path: url(#aboutClipPath4);-webkit-clip-path: url(#aboutClipPath4);}
.about-pic-show > .item4 .name{left: 50px;bottom: -40px;}
.about-pic-show > .item4 .icon{right: 24px;bottom: 24px;}
.about-pic-show > .item4:hover .icon{right: 128px;bottom: 188px;}
/*信息展示*/
.about-info-show{position: absolute;right: 0;bottom: 0;width: 600px;font-size: 0;text-align: center;}
.about-info-show > .item{position: relative;display: inline-block;padding: .5em 1em 1em;margin: 0 5px 40px;font-size: 16px;line-height: 32px;color: #fff;}
.about-info-show > .item span{display: inline-block;padding-top: 20px;margin: 0 5px;font-size: 48px;color: #00b1b7;letter-spacing: -2px;}
.about-info-show > .item canvas{z-index: -1;position: absolute;left: 0;top: 0;width: 100%;height: 100%;}
/*part4区域logo元素飘动*/
.logo-svg-content{z-index: -1;position: absolute;left: 0;top: 0;width: 100%;height: 100%;overflow: hidden;}
.logo-svg-content .logo-svg{z-index: -1;position: absolute;left: 0;top: 0;width: 194px;height: 161px;fill: transparent;stroke-width: 1px;stroke: rgba(255,255,255,.3);animation: logoSvgAni 60s linear infinite;}
.logo-svg-content .logo-svg:nth-child(2){animation-name: logoSvgAniTwo;}
.logo-svg-content .logo-svg:nth-child(3){animation-name: logoSvgAniThree;}
.logo-svg-content .logo-svg:nth-child(4){animation-name: logoSvgAniFour;}
.logo-svg-content .logo-svg:nth-child(5){animation-name: logoSvgAniFive;}
@keyframes logoSvgAni{
	100%{transform: translate(200%,0) rotate(360deg);}
}
@keyframes logoSvgAniTwo{
	100%{transform: translate(-200%,0) rotate(-360deg);}
}
@keyframes logoSvgAniThree{
	100%{transform: translate(200%,200%) rotate(360deg);}
}
@keyframes logoSvgAniFour{
	100%{transform: translate(-200%,-200%) rotate(-360deg);}
}
@keyframes logoSvgAniFive{
	100%{transform: translate(0,200%) rotate(360deg);}
}

/*让生命赞美医学*/
.life-box{font-size: 0;text-align: center;}
.life-box > .item{position: relative;display: inline-block;vertical-align: top;width: 38%;overflow: hidden;}
.life-box > .item .pic{padding-top: 69%;background-position: center;background-size: cover;background-repeat: no-repeat;}
.life-box > .item .info{position: absolute;left: 0;right: 0;top: 0;bottom: 0;padding-top: 31%;background-color: rgba(12,17,65,.4);text-align: center;color: #fff;transition: 0.3s;}
.life-box > .item .info .tit{font-size: 28px;line-height: 40px;}
.life-box > .item .info .txt{margin-top: 5%;font-size: 16px;line-height: 30px;opacity: 0;transition: 0.3s;}
.life-box > .item:hover .info{padding-top: 16%;background-color: rgba(12,17,65,.6);}
.life-box > .item:hover .txt{opacity: 1;}

/*中屏PC:<=1440px(针对1366*650)*/
@media screen and (max-width: 1440px){
	/******首页******/
	/*标题*/
	.index-title{padding-bottom: 20px;}
	.index-title .name .cn{font-size: 26px;}
	/*布局*/
	.index-content .part1{padding: 60px 0;}
	.index-content .part2{padding: 60px 0;}
	.index-content .part3{padding: 60px 0 0;}
	.index-content .part4{padding: 60px 0;}
	.index-content .part5{padding: 60px 0 0;}
	.index-content .part5 .content{padding: 130px 0 0px;}
	.news-swiper .swiper-slide .info .txt{height: 56px;line-height: 28px;}
	.product-show-box .tabs span{font-size:22px;}
	.product-swiper .swiper-slide > .con-l .info .title .big{font-size: 30px;}
	.product-swiper .swiper-slide > .con-l .info .desc{font-size: 24px;}
	
	
	/*关于我们*/
	.about-box{padding: 0 80px;}
	/*图片展示*/
	.about-pic-show{zoom: .8;}
	/*item3*/
	.about-pic-show > .item3 .name{left: -20px;}
	/*信息展示*/
	.about-info-show{right: 50px;width: 485px;}
	.about-info-show > .item{padding: .5em 1em;margin: 0 5px 10px;font-size: 14px;line-height: 24px;}
	.about-info-show > .item span{padding-top: 5px;font-size: 30px;}
}

/*小屏PC:>=1025px && <=1280px*/
@media screen and (max-width: 1280px){
	/*关于我们*/
	.about-box{padding: 0 40px;}
	/*图片展示*/
	.about-pic-show{zoom: .7;}
	/*信息展示*/
	.about-info-show{right: 20px;width: 485px;}
}

/*pad横屏:>=769px && <=1024px*/
@media screen and (max-width: 1024px){
	/*关于我们*/
	/*图片展示*/
	.about-pic-show{zoom: .6;}
}

/*phone:<=768px*/
@media screen and (max-width: 768px){
	/*banner*/
	.banner .swiper-slide{height: 40vh;}
	.banner .swiper-pagination{bottom: 6px;}
	.banner .swiper-pagination-bullet{width: 6px;height: 6px;}
	.banner .swiper-pagination-bullet-active:after{width: 10px;height: 10px;margin: -6px 0 0 -6px;}
	.banner:hover .prev-btn{transform: translateX(0) scale(.6);}
	.banner:hover .next-btn{transform: translateX(0) scale(.6);}

	/******首页******/
	/*标题*/
	.index-title{padding-bottom: 0;}
	.index-title .name .cn{font-size: 18px;}
	.index-title .ani-icon{margin-top: 0;transform: scale(.6) translateY(-10px);}
	.index-title .ani-icon .dot{display: none;}
	/*布局*/
	.index-content .part1{padding: 40px 0 20px;}
	.index-content .part2{padding: 40px 0 20px;}
	.index-content .part3{padding: 20px 0 0;}
	.index-content .part4{padding: 40px 0 20px;overflow: hidden;}
	.index-content .part4:before{width: 96%;padding-top: 96%;transform: translate(-50%,-70%);}
	.index-content .part4:after{top: 0;}
	.index-content .part5{padding: 20px 0 0;}
	.index-content .part5 .content{padding: 0 0 20px;background-size: cover;background:none;}

	/*新闻区*/
	.news-box{padding-top: 10px;}
	/*内容展示*/
	.news-swiper{padding-left: 0;}
	.news-swiper .swiper-slide{padding: 0 5%;}
	.news-swiper .swiper-slide .info{padding-top: 10px;}
	.news-swiper .swiper-slide .info .date{padding-bottom: 10px;font-size: 14px;}
	.news-swiper .swiper-slide .info .txt{height: 48px;padding: 0 1em;font-size: 14px;line-height: 24px;}
	.news-swiper .swiper-slide .more-btn{width: 120px;height: 40px;border-width: 1px;font-size: 14px;line-height: 38px;}
	.news-swiper .btn{display: none;transform: translateY(-50%) scale(.5);}
	.news-swiper .prev-btn{right: -10px;transform-origin: right;}
	.news-swiper .next-btn{left: -10px;transform-origin: left;}
	.news-swiper .prev-btn.show{right: -10px;}
	/*背景图*/
	.news-bg-swiper{display: none;}

	/*产品中心*/
	/*选项卡*/
	.product-show-box .tabs span{margin: 0 10px;font-size: 16px;line-height: 40px;}
	.product-show-box .tab-content{margin-top: 20px;}
	/*产品轮播*/
	.product-swiper{padding-bottom: 50px;}
	.product-swiper .swiper-slide{padding: 0 10px;}
	.product-swiper .swiper-slide > .con-l{float: none;width: 100%;}
	.product-swiper .swiper-slide > .con-l .info .title .big{display: inline-block;font-size: 16px;}
	.product-swiper .swiper-slide > .con-l .info .title .big sup{margin-left: 0;font-size: 12px;transform: scale(.7);}
	.product-swiper .swiper-slide > .con-l .info .title .small{margin: -20px 0 0 120px;font-size: 12px;line-height: 20px;}
	.product-swiper .swiper-slide > .con-l .info .desc{margin-top: 10px;font-size: 12px;}
	.product-swiper .swiper-slide > .con-l .info .more{display: none;padding: 0 2em;margin-top: 20px;font-size: 14px;line-height: 30px;}
	.product-swiper .swiper-slide > .con-l .info .more:before{display: none;}
	.product-swiper .swiper-slide > .con-l .info .more:after{display: none;}
	.product-swiper .swiper-slide > .con-r{margin-left: 0;margin-top: 20px;}
	.product-swiper .btn{display: none;}
	.product-swiper .swiper-pagination{left: 0;width: 100%;}
	.product-swiper .swiper-pagination-bullet{margin: 0!important;font-size: 16px;transform: scale(.8);}

	/*临床应用*/
	.clinic-box > .item{width: 50%;border-left-width: 4px;border-bottom-width: 4px;font-size: 14px;}
	.clinic-box > .item .info{background-color: rgba(0,177,183,.1);transform: scaleY(1);}
	.clinic-box > .item .info .name{max-width: 96%;height: auto;padding: 5px 1em;border-radius: 15px;line-height: 20px;}
	.clinic-box > .item:nth-child(1){float: none;border-left-width: 4px;border-bottom-width: 4px;}
	.clinic-box > .item:nth-child(1) .pic{padding-top: 66.66%;}
	.clinic-box > .item:nth-child(3) .pic{padding-top: 66.66%;}

	/*关于我们*/
	.about-box{padding: 0;}
	/*图片展示*/
	.about-pic-show{zoom: .35;}
	.about-pic-show > .item .pic{display: none;}
	.about-pic-show > .item .name{font-size: 1rem;}
	.about-pic-show > .item2 .name{left: 240px;top: 200px;}
	.about-pic-show > .item3 .name{left: 0;bottom: 80px;}
	/*信息展示*/
	.about-info-show{position: static;width: 100%;margin-top: 20px;}
	.about-info-show > .item{padding: .5em;margin: 0 0.5% 5px;font-size: 12px;}
	.about-info-show > .item span{padding-top: 0;margin: 0 2px;font-size: 20px;}
	.about-info-show > .item:nth-child(1){width: 55%;}
	.about-info-show > .item:nth-child(2){width: 43%;}
	.about-info-show > .item:nth-child(3){width: 60%;}
	.about-info-show > .item:nth-child(4){width: 38%;}
	/*part4区域logo元素飘动*/
	.logo-svg-content{display: none;}

	/*让生命赞美医学*/
	.life-box > .item{width: 50%;}
	.life-box > .item .info{padding-top: 28%;}
	.life-box > .item .info .tit{font-size: 14px;line-height: 20px;}
	.life-box > .item .info .txt{display: none;}
	.life-box > .item:hover .info{padding-top: 28%;background-color: rgba(12,17,65,.4);}
}