@keyframes line1 {

	50%,
	100% {
		left: 100%;
	}
}

@keyframes line2 {

	50%,
	100% {
		top: 100%;
	}
}

@keyframes line3 {

	50%,
	100% {
		left: -100%;
	}
}

@keyframes line4 {

	50%,
	100% {
		top: -100%;
	}
}

@keyframes xia {
	0% {
		transform: translateY(-30%);
	}

	100% {
		transform: translateY(0%);
	}
}

@keyframes headmove {
	0% {
		opacity: 0;
		transform: translateX(-50%) scale(0.8);
	}

	100% {
		opacity: 1;
		transform: translateX(0%) scale(1);
	}
}

@keyframes headmove2 {
	0% {
		transform: translateX(-80%);
	}

	100% {
		transform: translateX(0%);
	}
}

@keyframes by2 {
	0% {
		transform: rotateY(0deg);
	}

	100% {
		transform: rotateY(-90deg);
		opacity: 0;
	}
}

@keyframes by22 {
	0% {
		transform: rotateY(-90deg);
	}

	100% {
		transform: rotateY(0deg);
		opacity: 1;
	}
}

@keyframes by3 {
	0% {
		transform: scale(0.7);
	}

	100% {
		transform: scale(0.7);
		opacity: 1;
	}
}

@keyframes by4 {
	0% {
		transform: scale(0);
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes by-slide2 {
	0% {
		opacity: 0;
		transform: translateY(-80%);
	}

	100% {
		opacity: 1;
		transform: translateY(0%);
	}
}

@keyframes videoPlay {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.05);
	}
}

@keyframes ripples {
	0% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 1;
	}

	100% {
		transform: translate(-50%, -50%) scale(1.4);
		opacity: 0;
	}
}

html,
body,
h5 {
	margin: 0%;
	padding: 0%;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
	color: unset;
}

p,
span,
h4,
table {
	font-family: "Microsoft YaHei";
}

.bg_header {
	position: relative;
}

.bg_header img {
	width: 100%;
	display: block;
	transition: 0.5s;
}

.bg_header>img:nth-of-type(2) {
	display: none;
}

.bg-head-content {
	position: absolute;
	width: 38%;
	top: 28%;
	right: 11%;
}

.bg-head-content .head-top {
	width: 100%;
	padding-left: 8%;
}

.bg-head-content .head-top>img {
	display: inline-block;
	width: 52%;
	animation: headmove 0.8s linear 1;
}

.bg-head-content .head-top .top-right {
	float: right;
	margin-right: 5%;
	margin-top: 4%;
	width: 40%;
}

.bg-head-content .head-top .top-right img:nth-of-type(1) {
	width: 55%;
	margin-left: 4%;
	margin-top: 5%;
}

.bg-head-content .head-top .top-right img:nth-of-type(2) {
	display: inline-block;
	margin-top: 2%;
	width: 76%;
}

.bg-head-content .head-middle {
	position: relative;
	width: 80%;
	margin: 7% auto 5%;
}

.bg-head-content .head-middle img:nth-of-type(2) {
	position: absolute;
	display: block;
	top: 28%;
	left: 10%;
	width: 80%;
}

.bg-head-content .head-bottom {
	width: 65%;
	margin-left: 35%;
}

.head-top-1 {
	width: 100%;
}

.head-top-2 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 88%;
	margin: 5% 0;
	margin-left: 12%;
}

.head-top-2 img:nth-of-type(1) {
	width: 23%;
}

.head-top-2 img:nth-of-type(2),
.head-top-2 img:nth-of-type(3) {
	width: 30%;
}


h4,
p,
ul {
	margin: 0;
	padding: 0;
}

.content1 {
	width: 100%;
	margin: 0 auto;
	margin-top: 4%;
}

.content1 .headline .horizontalLine img {
	width: 440px;
}

.content1 .jsp {
	width: 68%;
	margin: 0 auto;
}

.content1 .jsp ul {
	display: flex;
	justify-content: space-between;
	margin-top: 5%;
	flex-wrap: wrap;
}

.content1 .jsp ul li {
	position: relative;
	overflow: hidden;
	transition: 0.5s;
	width: 32%;
}

.content1 .jsp ul li:nth-of-type(n + 4) {
	margin-top: 7%;
}

.content1 .jsp ul li img {
	width: 100%;
}

.content1 .jsp ul li>span {
	position: absolute;
}

.content1 .jsp ul li>span:nth-of-type(1) {
	left: -100%;
	top: 0px;
	width: 100%;
	height: 2px;
	background: -webkit-linear-gradient(left, transparent, #4199c4);
}

.content1 .jsp ul li>span:nth-of-type(2) {
	right: 0;
	top: -100%;
	width: 2px;
	height: 100%;
	background: -webkit-linear-gradient(top, transparent, #4199c4);
}

.content1 .jsp ul li>span:nth-of-type(3) {
	left: 100%;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: -webkit-linear-gradient(left, transparent, #4199c4);
}

.content1 .jsp ul li>span:nth-of-type(4) {
	left: 0;
	top: 100%;
	width: 2px;
	height: 100%;
	background: -webkit-linear-gradient(top, transparent, #4199c4);
}

.content1 .jsp ul li:hover {
	transform: scale(1.1);
}

.content1 .jsp ul li:hover span:nth-of-type(1) {
	animation: line1 1s linear infinite;
}

.content1 .jsp ul li:hover span:nth-of-type(2) {
	animation: line2 1s 0.25s linear infinite;
}

.content1 .jsp ul li:hover span:nth-of-type(3) {
	animation: line3 1s 0.5s linear infinite;
}

.content1 .jsp ul li:hover span:nth-of-type(4) {
	animation: line4 1s 0.75s linear infinite;
}

.content2 {
	margin: 4% auto;
	position: relative;
	overflow: hidden;
}

.content2 .content2_intro {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1400px;
	margin: 3% auto 0;
}

.content2 .content2_intro .intro_img {
	position: relative;
	width: 48%;
}

.content2 .content2_intro .intro_img img {
	width: 100%;
}

.content2 .content2_intro .intro_img .play {
	position: absolute;
	top: 43%;
	left: 44%;
	padding: 1%;
	border-radius: 50%;
	background: #0ca0e8;
	transition: 0.5s;
	animation: videoPlay 1s infinite linear;
}

.content2 .content2_intro .intro_img .play svg:nth-of-type(1) {
	display: block;
}

.content2 .content2_intro .intro_img .play svg:nth-of-type(2) {
	display: none;
}

.content2 .content2_intro .intro_text {
	width: 48%;
	font-size: 28px;
	line-height: 1.5em;
	color: #1a1a1a;
}

.content2 .content2_intro .intro_text p {
	text-indent: 2em;
}

.content2 .content2_intro .intro_text p:nth-of-type(1) span {
	color: #1499da;
}

.content2 ul {
	width: 1400px;
	margin: 3% auto 0;
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.content2 ul li {
	position: relative;
	text-align: center;
	overflow: hidden;
}

.content2 ul li img {
	display: block;
	width: 100%;
	transition: 0.8s;
}

.content2 ul li .mb {
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background: #1499da;
	opacity: 0.3;
	z-index: 2;
	transition: 0.8s;
}

.content2 ul li p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 28px;
	padding: 10px 0px;
	width: 70%;
	background: #1499da;
	border: 2px solid #ffffff;
	opacity: 0.9;
	z-index: 3;
	transition: 0.8s;
	line-height: 1.3em;
}

.content2 ul li:nth-of-type(1) img {
	transform: scale(1.1);
}

.content2 ul li:nth-of-type(1) .mb {
	opacity: 0;
}

.content2 ul li:nth-of-type(1) p {
	top: 90%;
	width: 100%;
	opacity: 0.6;
	border: unset;
}

/* .content2 ul li:hover img{
	  transform: scale(1.1);
  }
  .content2 ul li:hover .mb{
	  opacity:0;
  }
  .content2 ul li:hover p {
	top: 90%;
	width: 100%;
	opacity: 0.6;
	border: unset;
  } */
.content3 {
	width: 100%;
	margin: 4% auto;
	background: #F0FAFF;
	overflow: hidden;
}

.content3 .headline h5 {
	padding-top: 3%;
}

.content3 table {
	width: 60%;
	margin: 3% auto 5%;
	background: #f6f6f6;
	border-collapse: collapse;
	text-align: center;
	padding: 20px 0px;
}

.content3 table tr th {
	padding: 3% 0;
	font-size: 1.7vw;
}

.content3 table tr th:nth-of-type(1) {
	background: #E4EEF6;
}

.content3 table tr th:nth-of-type(2) {
	background: #f6f6f6;
}

.content3 table tr th:nth-of-type(3) {
	background: #fff;
	color: #0796ec;
}

.content3 table tr td:nth-of-type(3) {
	background: #fff;
	color: #0796ec;
}

.content3 table tr:not(:nth-of-type(1)) td:nth-of-type(1) {
	width: 20%;
	padding: 3% 0;
	font-size: 1.5vw;
	text-align: center;
	background: #e4eef6;
}

.content3 table tr:not(:nth-of-type(1)) td:nth-of-type(2),
.content3 table tr:not(:nth-of-type(1)) td:nth-of-type(3) {
	width: 40%;
	padding: 3% 2%;
	font-size: 1.2vw;
}

.content3 table tr:nth-of-type(2) td {
	position: relative;
}

.content3 table tr:nth-of-type(2) td:not(:nth-of-type(1)) {
	padding: 0%;
}

.content3 table tr:nth-of-type(2) td:not(:nth-of-type(1)) img {
	display: block;
	float: left;
	width: 50%;
}

.content3 table tr:nth-of-type(2) td:not(:nth-of-type(1)) img:nth-of-type(2) {
	opacity: 0;
	transition-delay: 1.8s;
	transition-duration: 1s;
}

.content3 table tr:nth-of-type(2) td:not(:nth-of-type(1)) .imgText {
	font-family: "Microsoft YaHei";
	position: absolute;
	width: 50%;
	height: 100%;
	top: 0%;
	right: 0%;
	padding: 12% 5% 0%;
	box-sizing: border-box;
	text-align: left;
	line-height: 1.5em;
	opacity: 0;
	transition-delay: 1.8s;
	transition-duration: 1s;
}

.content3 table tr:nth-of-type(2) td:not(:nth-of-type(1)) .img-mb {
	position: absolute;
	width: 50%;
	height: 100%;
	top: 0%;
	left: 0%;
	background: #f6f6f6;
	opacity: 0.4;
	transition-delay: 0.5s;
	transition-duration: 1s;
}

.content3 table tr:nth-of-type(2) td:nth-of-type(2) .imgText {
	background: #E8F3FB;
}

.content3 table tr:nth-of-type(2) td:nth-of-type(3) .imgText {
	background: #D2E7F7;
}

.content3 table tr:nth-of-type(2) .part4_yuanquan {
	position: absolute;
	top: 37%;
	left: 50%;
	width: 40%;
	height: 50%;
	transform: translate(-50%);
}

.content3 table tr:nth-of-type(2) .part4_yuanquan div:nth-of-type(1) {
	width: 9%;
	height: 17%;
	border: 2px solid #0796ec;
	opacity: 0.45;
	border-radius: 50%;
	margin-top: 6%;
	margin-left: 7%;
}

.content3 table tr:nth-of-type(2) .part4_yuanquan div:nth-of-type(2) {
	width: 0%;
	height: 2px;
	border-top: 1px solid #fff;
	position: absolute;
	top: 11%;
	left: 16%;
	transform: rotate(-45deg);
	transition-delay: 0.7s;
	transition-duration: 0.5s;
	transform-origin: left;
}

.content3 table tr:nth-of-type(2) .part4_yuanquan div:nth-of-type(3) {
	width: 0%;
	height: 2px;
	border-top: 1px solid #fff;
	position: absolute;
	top: -21%;
	left: 32%;
	transition-duration: 0.5s;
	transition-delay: 1.1s;
	transform: rotate(-11deg);
	transform-origin: left;
}

.content3 table tr:nth-of-type(2) .part4_yuanquan div:nth-of-type(4) {
	width: 6%;
	height: 11%;
	background: #0796ec;
	border-radius: 50%;
	position: absolute;
	top: -37%;
	left: 60%;
	transition-delay: 1.4s;
	transition-duration: 1s;
	opacity: 0;
}

.content4 {
	width: 100%;
	margin: 4% auto;
	overflow: hidden;
}

.content4 .content4-neirong img {
	width: 50%;
}

.content4 .content4-neirong .text_style {
	width: 50%;
	position: relative;
	margin-top: 3%;
}

.content4 .content4-neirong .text_style .baya {
	padding: 1% 0;
	text-align: center;
	font-size: 1.4vw;
	color: #055074;
	background: linear-gradient(90deg, #22a4e4 0%, rgba(34, 164, 228, 0) 100%);
	font-family: "Microsoft YaHei";
	letter-spacing: 5px;
}

.content4 .content4-neirong .text_style .baya-item {
	display: flex;
	justify-content: space-between;
	font-size: 1.2vw;
	color: #1a1a1a;
	margin-top: 4%;
	line-height: 1.5em;
	word-break: break-word;
	overflow-wrap: break-word;
}

.content4 .content4-neirong .text_style .baya-item p:nth-of-type(1) {
	float: left;
	width: 22%;
	text-align: center;
}

.content4 .content4-neirong .text_style .baya-item p:nth-of-type(2) {
	float: left;
	width: 68%;
}

.content4 .content4-neirong .text_style .baya-item p::after {
	content: "";
	display: block;
	height: 0;
	clear: both;
}

.content4 .content4-neirong .text_style .baya-item::after {
	content: "";
	display: block;
	height: 0;
	clear: both;
}

.content4 .content4-neirong .up_style {
	width: 100%;
	margin-top: 4%;
}

.content4 .content4-neirong .up_style img {
	float: left;
}

.content4 .content4-neirong .up_style .text_style {
	float: left;
}

.content4 .content4-neirong .up_style .text_style .baya-neirong {
	margin-left: 5%;
	width: 70%;
}

.content4 .content4-neirong .up_style::after {
	content: "";
	display: block;
	height: 0;
	clear: both;
}

.content4 .content4-neirong .bottom_style {
	width: 100%;
}

.content4 .content4-neirong .bottom_style img {
	float: right;
}

.content4 .content4-neirong .bottom_style .text_style {
	float: right;
}

.content4 .content4-neirong .bottom_style .text_style .baya-neirong {
	margin-left: 27%;
	width: 70%;
}

.content4 .content4-neirong .bottom_style::after {
	content: "";
	display: block;
	height: 0;
	clear: both;
}

.content4 .content4-neirong::after {
	content: "";
	display: block;
	height: 0;
	clear: both;
}

.content5_2 {
	width: 100%;
	margin: 4% auto;
	overflow: hidden;
}

.content5_2 .content5-bottom {
	position: relative;
	width: 70%;
	margin: 80px auto 0;
	min-width: 1300px;
}

.content5_2 .content5-bottom .content5-bottom-item {
	display: flex;
	justify-content: space-between;
}

.content5_2 .content5-bottom .content5-bottom-item:not(:nth-of-type(1)) {
	margin-top: 30px;
}

.content5_2 .content5-bottom .content5-bottom-item:nth-of-type(2n) .content5-b-item-text {
	padding-left: 10%;
}

.content5_2 .content5-bottom .content5-bottom-item .content5-b-item-img {
	width: 40%;
}

.content5_2 .content5-bottom .content5-bottom-item .content5-b-item-img img {
	display: block;
	width: 100%;
}

.content5_2 .content5-bottom .content5-bottom-item .content5-b-item-text {
	width: 40%;
	box-sizing: border-box;
	padding-top: 50px;
}

.content5_2 .content5-bottom .content5-bottom-item .content5-b-item-text h5 {
	font-size: 25px;
	margin: 20px auto;
}

.content5_2 .content5-bottom .content5-bottom-item .content5-b-item-text p {
	font-size: 20px;
}

.content5_2 .content5-bottom .content5-circle {
	position: absolute;
	top: 100px;
	left: 50%;
	transform: translateX(-50%);
}

.content5_2 .content5-bottom .content5-circle ul {
	padding: 0;
	margin: 0 auto;
	text-align: center;
	position: relative;
}

.content5_2 .content5-bottom .content5-circle ul li {
	background: white;
	border: 1px solid white;
	border-radius: 50%;
	box-sizing: border-box;
	position: relative;
	width: 50px;
	height: 50px;
	line-height: 29px;
	padding: 11px;
	box-shadow: 0px 0px 15px #4aaedf;
	color: #369ed1;
	transition: 0.7s;
	z-index: 999;
}

.content5_2 .content5-bottom .content5-circle ul li:not(:nth-of-type(1)) {
	margin-top: 270px;
}

.content5_2 .content5-bottom .content5-circle ul li::after {
	display: block;
	content: "";
	position: absolute;
	top: -12px;
	left: -12px;
	box-shadow: 0px 0px 10px #b7d7e6;
	padding: 35px;
	border-radius: 50%;
}

.content5_2 .content5-bottom .content5-circle ul::after {
	position: absolute;
	display: block;
	content: "";
	top: 3%;
	left: 50%;
	transform: translateX(-50%);
	background: #4aaedf;
	width: 2px;
	height: 94%;
	z-index: 99;
}

.harm {
	margin: 4% auto;
}

.harm .headline .horizontalLine img {
	width: 1000px;
}

.harm .harm_content {
	width: 90%;
	margin: 3% auto 0;
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-around;
}

.harm .harm_content li {
	width: 24%;
}

.harm .harm_content li .harm_img {
	position: relative;
}

.harm .harm_content li .harm_img img {
	display: block;
	width: 100%;
}

.harm .harm_content li .harm_img img:nth-of-type(2) {
	position: absolute;
	bottom: 2%;
	right: 1%;
	width: 50px;
}

.harm .harm_content li .harm_text {
	text-align: center;
	background: #eef8fc;
	padding-top: 4%;
	height: 150px;
}

.harm .harm_content li .harm_text p {
	line-height: 1.5em;
}

.harm .harm_content li .harm_text p:nth-of-type(1) {
	font-size: 1.5vw;
	color: #1499da;
}

.harm .harm_content li .harm_text p:nth-of-type(2) {
	font-size: 1.3vw;
	color: #333333;
	padding: 0 10px;
}

.advantage {
	background-color: #58a3ca;
	padding-bottom: 60px;
}

.advantage .headline h5 {
	color: #fff;
	padding-top: 3%;
}

.advantage .headline .subtitle {
	color: #fff;
	margin-top: 0px;
}

.advantage .headline hr {
	background: #fff;
	width: 80%;
	margin: 0 auto;
}

.advantage ul {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	width: 90%;
	margin: 3% auto 0;
	padding: 0%;
}

.advantage ul li {
	width: 30%;
}

.advantage ul li .caption {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}

.advantage ul li .caption img {
	width: 40px;
}

.advantage ul li .caption span {
	font-size: 25px;
	color: #fff;
	margin-left: 2%;
}

.advantage ul li .advantage_img {
	margin-top: 3%;
	width: 100%;
	overflow: hidden;
}

.advantage ul li .advantage_img img {
	width: 100%;
	transition: 0.5s;
}

.advantage ul li:hover .advantage_img img {
	transform: scale(1.2);
}

.advantage ul li .advantage_text {
	font-size: 23px;
	color: #fff;
	line-height: 1.5em;
	text-indent: 2em;
	letter-spacing: 1px;
	margin-top: 2%;
}

.advantage ul li:nth-of-type(n + 4) {
	margin-top: 3%;
}

.content6 {
	width: 100%;
	margin: 4% auto;
}

.content6 .price_wrapper {
	width: 1200px;
	margin: 65px auto 0;
	background: #eef7fb;
	padding: 1% 2%;
	overflow: hidden;
}

.content6 .price_wrapper .price_img {
	float: left;
	width: 50%;
}

.content6 .price_wrapper .price_img img {
	width: 100%;
}

.content6 .price_wrapper .price_content {
	float: left;
	width: 45%;
	margin-left: 5%;
}

.content6 .price_wrapper .price_content .introduce {
	margin-top: 1%;
	font-size: 22px;
	line-height: 1.5em;
	font-weight: 400;
}

.content6 .price_wrapper .price_content .introduce span:nth-of-type(1) {
	color: #1499da;
	font-size: 24px;
}

.content6 .price_wrapper .price_content table,
.content6 .price_wrapper .price_content tr,
.content6 .price_wrapper .price_content th,
.content6 .price_wrapper .price_content td {
	border: 1px solid black;
	border-collapse: collapse;
	text-align: center;
	vertical-align: middle;
}

.content6 .price_wrapper .price_content table {
	width: 100%;
	margin-top: 3%;
}

.content6 .price_wrapper .price_content table tr:first-child {
	font-size: 22px;
	font-weight: bold;
}

.content6 .price_wrapper .price_content th,
.content6 .price_wrapper .price_content td {
	padding: 3.5% 1%;
}

.content6 .price_wrapper .price_content tr th:first-child,
.content6 .price_wrapper .price_content tr td:first-child {
	width: 40%;
}

.content6 .price_wrapper .price_content tr td:not(:last-child) {
	font-size: 20px;
	font-weight: 400;
}

.content6 .price_wrapper .price_content tr td:last-child {
	font-size: 22px;
	color: #e60000;
	font-weight: bold;
}

.content6 .price_wrapper .price_down tr th:first-child {
	width: 20%;
}

.content6 .price_wrapper .price_down tr th:nth-of-type(2) {
	width: 30%;
}

.content6 .price_wrapper .price_down tr th:nth-of-type(3) {
	width: 15%;
}

.content6 .price_wrapper .price_down tr th:nth-of-type(4) {
	width: 25%;
}

.content6 .price_wrapper .price_down tr td:nth-of-type(1) {
	width: 20%;
}

.content6 .price_wrapper .price_down tr td:nth-of-type(3) {
	width: 8%;
}

.content6 .price_wrapper .price_down tr td:nth-of-type(4) {
	width: 45%;
}

.content6 .price_wrapper::after {
	content: "";
	height: 0;
	display: block;
	clear: both;
}

.content8 {
	margin: 4% auto;
	overflow: hidden;
}

.content8 .headline .horizontalLine img {
	width: 370px;
}

.content8 .doctor {
	display: -webkit-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-around;
	width: 1250px;
	margin: 4% auto 0;
}

.content8 .doctor .doctor_img {
	position: relative;
	width: 37%;
	transition: 0.5s;
}

.content8 .doctor .doctor_img img {
	display: block;
	width: 100%;
	transition: 0.5s;
}

.content8 .doctor .doctor_img .img_mb {
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
	transition: 0.5s;
}

.content8 .doctor .doctor_img .consult {
	position: absolute;
	display: none;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30%;
	height: 30%;
	border-radius: 50%;
	background: rgba(9, 140, 232, 0.5);
	color: #fff;
	text-align: center;
	z-index: 999;
	transition: 0.5;
}

.content8 .doctor .doctor_img .consult p {
	margin-top: 50%;
	width: 100%;
	font-size: 25px;
	letter-spacing: 2px;
	transform: translateY(-50%);
}

.content8 .doctor .doctor_img .ripples {
	position: absolute;
	display: none;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30%;
	height: 30%;
	border-radius: 50%;
	background: rgba(9, 140, 232, 0.7);
	animation: ripples 2s linear infinite;
	animation-delay: calc(0.8s * var(--i));
	z-index: 9;
}

.content8 .doctor .doctor_introduction {
	width: 50%;
}

.content8 .doctor .doctor_introduction .name {
	margin-bottom: 2%;
}

.content8 .doctor .doctor_introduction .name span:nth-of-type(1) {
	font-size: 30px;
	color: #009af4;
}

.content8 .doctor .doctor_introduction .name span:nth-of-type(2) {
	font-size: 22px;
	color: #272727;
	margin-left: 2%;
}

.content8 .doctor .doctor_introduction .intro p {
	margin-bottom: 2%;
	position: relative;
	font-size: 22px;
	color: #333;
	padding-left: 3%;
}

.content8 .doctor .doctor_introduction .intro p::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #1499DA;
}

.content8 .doctor .good p {
	color: #333;
}

.content8 .doctor .good p:nth-of-type(1) {
	font-size: 22px;
	margin-bottom: 10px;
	margin: 3% auto;
	font-weight: bold;
}

.content8 .doctor .good p:nth-of-type(2),
.content8 .doctor .good p:nth-of-type(3) {
	font-size: 22px;
	margin: 0%;
	line-height: 1.5em;
}

.content8 .doctor:nth-of-type(3) {
	margin-top: 4%;
}

.content8 .button {
	margin-top: 5%;
}

.content9 {
	width: 100%;
	position: relative;
	margin-top: 4%;
}

.content9 .headline {
	position: absolute;
	top: 2%;
	left: 10%;
}

.content9 .headline hr {
	margin: 0% auto;
}

.content9 .headline .subtitle {
	color: #808080;
}

.content9 .content-bg {
	width: 100%;
}

.content9 .content-bg img {
	width: 100%;
}

.content9 .content-bg img:nth-of-type(1) {
	display: table;
}

.content9 .content-bg img:nth-of-type(2) {
	display: none;
}

.content9 .hot_response {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 15%;
	position: absolute;
	left: 0;
	bottom: 20%;
}

.content9 .hot_response .hot_response-item {
	padding: 0% 1% 1%;
	width: 21%;
	background: #fff;
	border-radius: 10px;
}

.content9 .hot_response .hot_response-item .hot_resonse-qa {
	margin-top: 5%;
}

.content9 .hot_response .hot_response-item .hot_resonse-qa:nth-of-type(1) span:nth-child(2) {
	font-size: 1.2vw;
	color: #1a1a1a;
	font-weight: bold;
}

.content9 .hot_response .hot_response-item .hot_resonse-qa span:nth-child(1) {
	float: left;
	border-radius: 50%;
	background-color: #1499da;
	font-size: 1vw;
	width: 1.1vw;
	height: 1.1vw;
	line-height: 1.1vw;
	text-align: center;
	color: #fff;
	padding: 4px;
}

.content9 .hot_response .hot_response-item .hot_resonse-qa span:nth-child(2) {
	float: left;
	width: 85%;
	margin-left: 0.641vw;
	font-size: 1.1vw;
	line-height: 30px;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

.content9 .hot_response .hot_response-item .hot_resonse-qa::after {
	content: "";
	height: 0;
	display: block;
	clear: both;
}

.content9 .hot_response .hot_response-item:nth-child(2) {
	margin: 0 3%;
}

.content9 .content9-bottom {
	position: absolute;
	bottom: 8%;
	left: 50%;
	transform: translateX(-50%);
}

.content9 .content9-bottom div {
	width: 153px;
	text-align: center;
	margin: 0 auto;
}

.content9 .content9-bottom div img {
	width: 30px;
	margin: 0 auto;
	display: block;
	margin-bottom: 12px;
	margin-top: 20px;
	animation: xia 0.5s linear infinite alternate;
	transition: opacity 0.3s linear;
}

.content9 .content9-bottom a {
	color: #fff;
}

.content9 .content9-bottom a span {
	display: block;
	text-align: center;
	padding: 9px 20px;
	box-sizing: border-box;
	background: #0da7f2;
	box-shadow: 0px 4px 4px 0px rgba(45, 175, 238, 0.5);
	border-radius: 10px;
}

.content10 h5 {
	margin: 0%;
	font-size: 48px;
	color: #008FE2;
	text-align: center;
	padding: 10px 0;
	font-family: 'siyuan';
	background: #FFF;
}

.content10 .content10_img {
	display: flex;
	flex-wrap: wrap;
}

.content10 .content10_img li {
	position: relative;
	width: 25%;
	overflow: hidden;
}

.content10 .content10_img li img {
	display: block;
	width: 100%;
}

.content10 .content10_img li p {
	position: absolute;
	top: 0%;
	left: 0%;
	background: rgba(12, 107, 182, 0.8);
	font-size: 1.3vw;
	color: #fff;
	border-radius: 0 0 15px 0;
	padding: 6px;
	width: 60%;
	text-align: center;
}


.headline {
	text-align: center;
}

.headline h5 {
	font-size: 36px;
	color: #3fabe1;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.headline .horizontalLine img {
	display: block;
	margin: 0 auto;
	width: 300px;
	height: 22px;
}

.headline .subtitle {
	font-size: 24px;
	color: #595959;
	text-transform: uppercase;
	margin-top: -10px;
}

.headline hr {
	height: 4px;
	width: 100px;
	background-color: #59abdb;
	border: unset;
	margin-bottom: 20px;
}

.all_button {
	position: relative;
	width: 100%;
	text-align: center;
	margin-top: -5%;
}

.all_button button {
	font-size: 1.15vw;
	font-weight: bold;
	color: #1d98cd;
	background: #fff;
	border-radius: 10px;
	border: 1px solid #1d98cd;
	outline: none;
	padding: 5px 30px;
	transition: 0.5s;
}

.all_button button:first-child {
	background: #1d98cd;
	margin-top: 5px;
	transition: 0.5s;
}

.all_button button:last-child {
	position: absolute;
	left: 50%;
	transform: translate(-50%);
}

.up_active button {
	background: #fff !important;
	color: #1d98cd !important;
}

.up_active button::after {
	content: "";
	background: #1d98cd !important;
}

.anniu {
	margin-top: 3%;
}

.anniu div {
	width: 153px;
	margin: 0 auto;
	text-align: center;
}

.anniu div img {
	width: 20px;
	margin: 0 auto;
	display: block;
	margin-bottom: 12px;
	margin-top: 20px;
	animation: xia 0.5s linear infinite alternate;
	transition: opacity 0.3s linear;
}

.anniu a {
	color: #0da7f2;
}

.anniu a span {
	border: 1px solid #0da7f2;
	background: #fff;
	padding: 8px 20px;
	display: block;
	margin: 0 auto;
	text-align: center;
	box-sizing: border-box;
	width: 285px;
	font-size: 24px;
	border-radius: 10px;
	box-shadow: 0px 1px 4px 0px rgba(7, 105, 153, 0.5);
	transition: 0.5s;
}

.anniu a span:hover {
	color: #fff;
	background: #0da7f2;
}

@media screen and (max-width: 1400px) {
	.content2 .content2_intro {
		width: 1000px;
	}

	.content2 .content2_intro .intro_text {
		font-size: 21px;
	}

	.content2 ul {
		width: 1000px;
	}

	.content2 ul li p {
		font-size: 21px;
	}

	.content3 table {
		width: 80%;
	}

	.content3 table tr:not(:nth-of-type(1)) td:nth-of-type(1) {
		font-size: 1.6vw;
	}

	.content3 table tr:not(:nth-of-type(1)) td:nth-of-type(2),
	.content3 table tr:not(:nth-of-type(1)) td:nth-of-type(3) {
		font-size: 1.5vw;
	}
}

@media screen and (max-width: 1300px) {
	.content5_2 .content5-bottom {
		min-width: 908px;
	}

	.content5_2 .content5-bottom .content5-bottom-item .content5-b-item-text {
		padding-top: 30px;
	}

	.content5_2 .content5-bottom .content5-circle {
		top: 90px;
	}

	.content5_2 .content5-bottom .content5-circle ul li:not(:nth-of-type(1)) {
		margin-top: 180px;
	}
}

@media screen and (max-width: 1250px) {
	.content4 .content4-neirong .text_style .baya {
		font-size: 1.8vw;
	}

	.content4 .content4-neirong .text_style .baya-item {
		font-size: 1.4vw;
		margin-top: 3%;
	}

	.harm .headline .horizontalLine img {
		width: 100vw;
	}

	.harm .harm_content li .harm_text {
		height: 120px;
	}

	.harm .harm_content li .harm_text p:nth-of-type(1) {
		font-size: 1.8vw;
	}

	.harm .harm_content li .harm_text p:nth-of-type(2) {
		font-size: 1.5vw;
	}

	.advantage ul li .caption span {
		font-size: 23px;
	}

	.advantage ul li .advantage_text {
		font-size: 20px;
	}

	.content6 .price_wrapper {
		width: 86%;
	}

	.content6 .price_wrapper .price_content .introduce {
		font-size: 2vw;
	}

	.content6 .price_wrapper .price_content .introduce span:nth-of-type(1) {
		font-size: 2.2vw;
	}

	.content6 .price_wrapper .price_content table tr:first-child {
		font-size: 2vw;
	}

	.content6 .price_wrapper .price_content tr td:not(:last-child) {
		font-size: 1.6vw;
	}

	.content6 .price_wrapper .price_content tr td:last-child {
		font-size: 1.8vw;
	}

	.content8 .doctor {
		width: 980px;
	}

	.content8 .doctor .doctor_introduction .name span:nth-of-type(1) {
		font-size: 27px;
	}

	.content8 .doctor .doctor_introduction .name span:nth-of-type(2) {
		font-size: 20px;
	}

	.content8 .doctor .doctor_introduction .intro p {
		font-size: 20px;
	}

	.content8 .doctor .doctor_introduction .good p:nth-of-type(2),
	.content8 .doctor .doctor_introduction .good p:nth-of-type(3) {
		font-size: 19px;
	}

	.headline h5 {
		font-size: 32px;
	}

	.headline .subtitle {
		font-size: 20px;
	}
}

@media screen and (max-width: 1220px) {
	.advantage .right_top {
		margin: 100px auto 50px;
	}

	.advantage ul {
		width: 96%;
	}
}

@media screen and (max-width: 1200px) {
	.content9 .content9-bottom {
		bottom: 3%;
	}
}

@media screen and (max-width: 1000px) {
	.content2 .content2_intro {
		width: 768px;
	}

	.content2 .content2_intro .intro_text {
		font-size: 18px;
	}

	.content2 ul {
		width: 768px;
	}

	.content2 ul li p {
		font-size: 18px;
	}

	.content3 table tr th:nth-of-type(n + 2) {
		font-size: 22px;
	}

	.content3 table tr:not(:nth-of-type(1)) td:nth-of-type(1) {
		font-size: 20px;
	}

	.content3 table tr:not(:nth-of-type(1)) td:nth-of-type(2),
	.content3 table tr:not(:nth-of-type(1)) td:nth-of-type(3) {
		font-size: 18px;
	}
}

@media screen and (max-width: 980px) {
	.content3 table {
		width: 80%;
	}

	.harm .harm_content li .harm_text {
		height: 120px;
	}

	.harm .harm_content li .harm_text p:nth-of-type(1) {
		font-size: 18px;
	}

	.harm .harm_content li .harm_text p:nth-of-type(2) {
		font-size: 16px;
	}

	.advantage ul li .advantage_text {
		font-size: 18px;
	}

	.content5 .course_content {
		width: 100%;
	}

	.content5 .course_content .course_num {
		margin: 0 auto;
	}

	.content5 .course_content .course_num .concentricBorder {
		width: 9vw;
		height: 9vw;
		padding: 0;
	}

	.content5 .course_content .course_num .concentricBorder .circle {
		font-size: 15px;
		width: 4vw;
		height: 4vw;
		margin: 12%;
		line-height: 5vw;
		text-align: center;
		box-shadow: 0 0 0.9615vw #4aaedf;
	}

	.content5 .course_content .course_num .vertical {
		height: 17vw;
	}

	.content8 .doctor {
		width: 768px;
	}

	.content8 .doctor .doctor_img {
		margin-top: 4%;
	}

	.content8 .doctor .doctor_img .consult {
		width: 42%;
		height: 42%;
	}

	.content8 .doctor .doctor_img .consult p {
		font-size: 20px;
	}

	.content8 .doctor .doctor_img .ripples {
		width: 42%;
		height: 42%;
	}

	.content8 .doctor .doctor_introduction .name span:nth-of-type(1) {
		font-size: 25px;
	}

	.content8 .doctor .doctor_introduction .name span:nth-of-type(2) {
		font-size: 18px;
	}

	.content8 .doctor .doctor_introduction .intro p {
		font-size: 17px;
	}

	.content8 .doctor .doctor_introduction .good p:nth-of-type(2),
	.content8 .doctor .doctor_introduction .good p:nth-of-type(3) {
		font-size: 16px;
	}

	.headline h5 {
		font-size: 28px;
	}

	.headline .subtitle {
		font-size: 18px;
	}
}

@media screen and (max-width: 908px) {
	.content5_2 .content5-bottom {
		min-width: 733px;
		width: 90%;
	}

	.content5_2 .content5-bottom .content5-bottom-item:nth-of-type(2n) .content5-b-item-text {
		padding-left: 5%;
		padding-top: 10px;
	}

	.content5_2 .content5-bottom .content5-bottom-item:nth-of-type(2n) .content5-b-item-text h5 {
		margin: 10px auto;
	}

	.content5_2 .content5-bottom .content5-bottom-item .content5-b-item-text h5 {
		font-size: 20px;
		margin: 10px auto;
	}

	.content5_2 .content5-bottom .content5-bottom-item .content5-b-item-text p {
		font-size: 16px;
	}

	.content5_2 .content5-bottom .content5-circle {
		top: 60px;
	}

	.content5_2 .content5-bottom .content5-circle ul li {
		width: 40px;
		height: 40px;
		padding: 7px;
	}

	.content5_2 .content5-bottom .content5-circle ul li:not(:nth-of-type(1)) {
		margin-top: 436%;
	}

	.content5_2 .content5-bottom .content5-circle ul li::after {
		top: -11px;
		left: -11px;
		padding: 30px;
	}

	.anniu a span {
		font-size: 18px;
	}
}

@media screen and (max-width: 840px) {
	.content5_2 .content5-bottom .content5-circle ul li:not(:nth-of-type(1)) {
		margin-top: 400%;
	}
}

@media screen and (max-width: 768px) {
	.bg_header>img:nth-of-type(1) {
		display: none;
	}

	.bg_header>img:nth-of-type(2) {
		display: block;
	}

	.bg-head-content {
		width: 60%;
		top: 40%;
		right: 4%;
	}



	.bg-head-content .head-top>img {
		width: 58%;
	}

	.bg-head-content .head-top .top-right {
		width: 35%;
	}

	.bg-head-content .head-top .top-right img:nth-of-type(1) {
		display: inline-block;
		width: 70%;
	}

	.bg-head-content .head-top .top-right img:nth-of-type(2) {
		width: 90%;
	}

	.bg-head-content .head-middle {
		width: 83%;
	}

	.bg-head-content .head-middle img {
		display: inline-block;
	}



	.content1 {
		margin-top: 6%;
	}

	.content1 .jsp {
		width: 95%;
	}

	.content2 {
		margin: 6% auto;
	}

	.content2 .content2_intro {
		flex-wrap: wrap;
		width: 100%;
	}

	.content2 .content2_intro .intro_img {
		width: 100%;
	}

	.content2 .content2_intro .intro_img .play svg:nth-of-type(1) {
		display: none;
	}

	.content2 .content2_intro .intro_img .play svg:nth-of-type(2) {
		display: block;
	}

	.content2 .content2_intro .intro_text {
		width: 100%;
		font-size: 24px;
		padding: 0 20px;
		margin: 3% auto;
	}

	.content2 ul {
		width: 100%;
		flex-wrap: wrap;
	}

	.content2 ul li {
		width: 50%;
	}

	.content2 ul li p {
		font-size: 24px;
	}

	.content3 {
		margin: 6% auto;
	}

	.content3 .headline h5 {
		padding-top: 5%;
	}

	.content3 table {
		width: 96%;
	}

	.content3 table tr th:nth-of-type(n + 2) {
		font-size: 23px;
	}

	.content3 table tr:not(:nth-of-type(1)) td:nth-of-type(1) {
		font-size: 22px;
	}

	.content3 table tr:not(:nth-of-type(1)) td:nth-of-type(2),
	.content3 table tr:not(:nth-of-type(1)) td:nth-of-type(3) {
		font-size: 20px;
	}

	.content3 table tr:nth-of-type(2) td:nth-of-type(2) .imgText,
	.content3 table tr:nth-of-type(2) td:nth-of-type(3) .imgText {
		padding: 12% 0% 0% 5%;
		font-size: 0.6rem;
	}

	.content3 table tr:nth-of-type(2) .part4_yuanquan div:nth-of-type(1) {
		border: 1px solid #0796ec;
	}

	.content3 table tr:nth-of-type(2) .part4_yuanquan div:nth-of-type(4) {
		width: 7%;
		height: 14%;
	}

	.content4 {
		margin: 6% auto;
	}

	.content4 .content4-neirong .up_style {
		width: 100%;
		margin-top: 5%;
	}

	.content4 .content4-neirong .up_style img {
		float: unset;
		width: 100%;
	}

	.content4 .content4-neirong .up_style .text_style {
		float: unset;
		width: 100%;
	}

	.content4 .content4-neirong .up_style .text_style .baya-neirong {
		width: 90%;
		margin: 0 auto;
	}

	.content4 .content4-neirong .up_style .text_style .baya {
		font-size: 25px;
	}

	.content4 .content4-neirong .up_style .text_style .baya-item {
		font-size: 20px;
	}

	.content4 .content4-neirong .up_style .text_style .baya-item p:nth-of-type(1) {
		width: 25%;
		text-align: center;
	}

	.content4 .content4-neirong .up_style .text_style .baya-item p:nth-of-type(2) {
		width: 70%;
	}

	.content4 .content4-neirong .bottom_style {
		margin-top: 5%;
	}

	.content4 .content4-neirong .bottom_style img {
		float: unset;
		width: 100%;
	}

	.content4 .content4-neirong .bottom_style .text_style {
		float: unset;
		width: 100%;
	}

	.content4 .content4-neirong .bottom_style .text_style .baya-neirong {
		margin: 0 auto;
		width: 94%;
	}

	.content4 .content4-neirong .bottom_style .text_style .baya-neirong .baya {
		font-size: 25px;
	}

	.content4 .content4-neirong .bottom_style .text_style .baya-neirong .baya-item {
		font-size: 20px;
	}

	.content4 .content4-neirong .bottom_style .text_style .baya-neirong .baya-item p:nth-of-type(1) {
		width: 25%;
		text-align: center;
	}

	.content4 .content4-neirong .bottom_style .text_style .baya-neirong .baya-item p:nth-of-type(2) {
		width: 70%;
	}

	.content5_2 {
		margin: 6% auto;
	}

	.content5_2 .content5-bottom {
		width: 100%;
		min-width: unset;
		margin: 5% auto 0;
	}

	.content5_2 .content5-bottom .content5-bottom-item {
		margin-top: 2%;
	}

	.content5_2 .content5-bottom .content5-bottom-item .content5-b-item-text h5 {
		margin: 10px auto;
	}

	.content5_2 .content5-bottom .content5-bottom-item .content5-b-item-text p {
		padding-right: 10px;
	}

	.content5_2 .content5-bottom .content5-circle ul li:not(:nth-of-type(1)) {
		margin-top: 380%;
	}

	.harm {
		margin: 6% auto;
	}

	.harm .harm_content {
		width: 100%;
		flex-wrap: wrap;
		margin: 5% auto 0;
	}

	.harm .harm_content li {
		width: 48%;
	}

	.harm .harm_content li:nth-of-type(n+3) {
		margin-top: 2%;
	}

	.harm .harm_content li .harm_img img:nth-of-type(2) {
		width: 15%;
	}

	.harm .harm_content li .harm_text {
		height: 120px;
	}

	.harm .harm_content li .harm_text p:nth-of-type(1) {
		font-size: 24px;
	}

	.harm .harm_content li .harm_text p:nth-of-type(2) {
		font-size: 18px;
	}

	.advantage {
		margin: 6% auto;
	}

	.advantage .headline h5 {
		padding-top: 5%;
	}

	.advantage ul li {
		width: 46%;
	}

	.advantage ul li .caption img {
		width: 35px;
	}

	.advantage ul li .caption span {
		font-size: 20px;
	}

	.advantage ul li .advantage_text {
		font-size: 18px;
	}

	.advantage ul li:nth-of-type(n + 3) {
		margin-top: 5%;
	}

	.content6 {
		margin: 6% auto;
	}

	.content6 .price_wrapper {
		width: 94%;
		padding: 5% 2%;
		margin: 5% auto 0;
	}

	.content6 .price_wrapper .price_img {
		float: unset;
		width: 100%;
	}

	.content6 .price_wrapper .price_content {
		float: unset;
		width: 100%;
		margin: 0;
	}

	.content6 .price_wrapper .price_content .introduce {
		margin: 0 0 2%;
		text-align: left;
		font-size: 20px;
		text-indent: 2em;
	}

	.content6 .price_wrapper .price_content .introduce span:nth-of-type(1) {
		font-size: 22px;
	}

	.content6 .price_wrapper .price_content table tr:first-child {
		font-size: 20px;
	}

	.content6 .price_wrapper .price_content table tr td:not(:last-child) {
		font-size: 18px;
	}

	.content6 .price_wrapper .price_content table tr td:last-child {
		font-size: 20px;
	}

	.content6 .price_wrapper .price_down tr td:nth-of-type(3) {
		width: 13%;
	}

	.content6 .price_wrapper .price_down tr td:nth-of-type(4) {
		width: 42%;
	}

	.content8 {
		margin: 6% auto;
	}

	.content8 .headline .horizontalLine img {
		width: 330px;
	}

	.content8 .doctor {
		width: 100%;
		flex-wrap: wrap;
	}

	.content8 .doctor .doctor_img {
		width: 64%;
	}

	.content8 .doctor .doctor_img .consult {
		width: 26%;
		height: 26%;
	}

	.content8 .doctor .doctor_img .consult p {
		font-size: 0.7rem;
	}

	.content8 .doctor .doctor_img .ripples {
		width: 26%;
		height: 26%;
	}

	.content8 .doctor .doctor_introduction {
		width: 90%;
		margin-top: 2%;
	}

	.content8 .doctor .doctor_introduction .name {
		text-align: center;
		margin-bottom: 3%;
		margin-top: 3%;
	}

	.content8 .doctor .doctor_introduction .name span:nth-of-type(1) {
		font-size: 28px;
	}

	.content8 .doctor .doctor_introduction .name span:nth-of-type(2) {
		font-size: 20px;
	}

	.content8 .doctor .doctor_introduction .intro p {
		font-size: 21px;
	}

	.content8 .doctor .doctor_introduction .good p:nth-of-type(2),
	.content8 .doctor .doctor_introduction .good p:nth-of-type(3) {
		font-size: 21px;
	}

	.content8 .doctor .good p:nth-of-type(1) {
		font-weight: bold;
	}

	.content8 .doctor:nth-of-type(3) .doctor_img {
		order: 1;
	}

	.content8 .doctor:nth-of-type(3) .doctor_introduction {
		order: 2;
	}

	.content9 {
		margin: 6% auto;
	}

	.content9 .content-bg img:nth-of-type(1) {
		display: none;
	}

	.content9 .content-bg img:nth-of-type(2) {
		display: block;
	}

	.content9 .hot_response {
		flex-direction: column;
		margin-top: 0;
		bottom: 3%;
	}

	.content9 .hot_response .hot_response-item {
		width: 80%;
		margin: 0 auto;
	}

	.content9 .hot_response .hot_response-item:nth-child(2) {
		margin: 5% auto;
	}

	.content9 .hot_response .hot_response-item .hot_resonse-qa {
		margin-top: 2%;
	}

	.content9 .hot_response .hot_response-item .hot_resonse-qa:nth-of-type(1) span:nth-child(2) {
		font-size: 18px;
	}

	.content9 .hot_response .hot_response-item .hot_resonse-qa span:nth-child(1) {
		font-size: 2vw;
		width: 3vw;
		height: 3vw;
		text-align: center;
		line-height: 3vw;
	}

	.content9 .hot_response .hot_response-item .hot_resonse-qa span:nth-child(2) {
		width: 90%;
		margin-left: 1%;
		font-size: 16px;
	}

	.content9 .content9-bottom {
		display: none;
	}

	.content10 h5 {
		font-size: 37px;
	}

	.content10 .content10_img li {
		width: 50%;
	}

	.content10 .content10_img li p {
		font-size: 0.85rem;
		width: 70%;
	}

	.headline h5 {
		font-size: 32px;
	}

	.headline .horizontalLine img {
		width: 180px;
	}

	.headline .subtitle {
		font-size: 20px;
	}

	.anniu {
		margin-top: 6%;
	}

	.anniu a span {
		padding: 7px;
		font-size: 16px;
	}

	.headline hr {
		height: 2px;
	}
}

@media screen and (max-width: 700px) {
	.content5_2 .content5-bottom .content5-circle ul li:not(:nth-of-type(1)) {
		margin-top: 350%;
	}
}

@media screen and (max-width: 620px) {
	.content5_2 .content5-bottom .content5-bottom-item:nth-of-type(2n) .content5-b-item-text {
		padding-left: 10px;
		padding-top: 0px;
	}

	.content5_2 .content5-bottom .content5-bottom-item .content5-b-item-img {
		margin-top: 10px;
	}

	.content5_2 .content5-bottom .content5-bottom-item .content5-b-item-text {
		padding-top: 7px;
	}

	.content5_2 .content5-bottom .content5-circle {
		top: 70px;
	}

	.content5_2 .content5-bottom .content5-circle ul li:not(:nth-of-type(1)) {
		margin-top: 310%;
	}
}

@media screen and (max-width: 560px) {
	.content4 .content4-neirong .up_style .text_style .baya-neirong .baya-item p:nth-of-type(1) {
		width: 30%;
	}

	.content4 .content4-neirong .bottom_style .text_style .baya-neirong .baya-item p:nth-of-type(1) {
		width: 30%;
	}

	.content9 .hot_response .hot_response-item .hot_resonse-qa:nth-of-type(1) span:nth-child(2) {
		font-size: 16px;
	}

	.content9 .hot_response .hot_response-item .hot_resonse-qa span:nth-child(2) {
		font-size: 14px;
	}
}

@media screen and (max-width: 500px) {
	.content1 .headline .horizontalLine img {
		width: 20rem;
	}

	.content1 .jsp ul li {
		width: 48%;
	}

	.content1 .jsp ul li:nth-of-type(n + 3) {
		margin-top: 7%;
	}

	.content2 .content2_intro .intro_text {
		font-size: 1rem;
	}

	.content2 ul li p {
		font-size: 1rem;
		padding: 3% 0;
	}

	.content3 table {
		width: 96%;
	}

	.content3 table tr th:nth-of-type(n + 2) {
		font-size: 1rem;
	}

	.content3 table tr:not(:nth-of-type(1)) td:nth-of-type(1) {
		font-size: 0.9rem;
	}

	.content3 table tr:not(:nth-of-type(1)) td:nth-of-type(2),
	.content3 table tr:not(:nth-of-type(1)) td:nth-of-type(3) {
		font-size: 0.75rem;
	}

	.content3 table tr:nth-of-type(2) td:nth-of-type(2) .imgText,
	.content3 table tr:nth-of-type(2) td:nth-of-type(3) .imgText {
		padding: 12% 0% 0% 5%;
		font-size: 0.65rem;
		float: left;
	}

	.content4 {
		margin-top: 5%;
	}

	.content4 .content4-neirong .text_style .baya-item {
		line-height: 1.2em;
	}

	.content4 .content4-neirong .up_style .text_style .baya-neirong .baya {
		font-size: 22px;
	}

	.content4 .content4-neirong .up_style .text_style .baya-neirong .baya-item {
		font-size: 16px;
	}

	.content4 .content4-neirong .up_style .text_style .baya-neirong .baya-item p:nth-of-type(1) {
		width: 35%;
		text-align: center;
	}

	.content4 .content4-neirong .up_style .text_style .baya-neirong .baya-item p:nth-of-type(2) {
		width: 60%;
	}

	.content4 .content4-neirong .bottom_style .text_style .baya-neirong .baya {
		font-size: 22px;
	}

	.content4 .content4-neirong .bottom_style .text_style .baya-neirong .baya-item {
		font-size: 16px;
		display: flex;
		justify-content: space-between;
	}

	.content4 .content4-neirong .bottom_style .text_style .baya-neirong .baya-item p:nth-of-type(1) {
		width: 30%;
		text-align: center;
	}

	.content4 .content4-neirong .bottom_style .text_style .baya-neirong .baya-item p:nth-of-type(2) {
		width: 60%;
	}

	.content5_2 .content5-bottom .content5-bottom-item {
		align-items: center;
	}

	.content5_2 .content5-bottom .content5-bottom-item:not(:nth-of-type(1)) {
		margin-top: 6%;
	}

	.content5_2 .content5-bottom .content5-bottom-item:nth-of-type(2n) .content5-b-item-text h5 {
		margin: 10px auto;
	}

	.content5_2 .content5-bottom .content5-bottom-item .content5-b-item-text h5 {
		font-size: 1rem;
	}

	.content5_2 .content5-bottom .content5-bottom-item .content5-b-item-text p {
		font-size: 0.8rem;
		line-height: 1.3em;
	}

	.content5_2 .content5-bottom .content5-circle {
		top: 6%;
	}

	.content5_2 .content5-bottom .content5-circle ul {
		margin-top: -5%;
	}

	.content5_2 .content5-bottom .content5-circle ul li {
		width: 30px;
		height: 30px;
		line-height: 23px;
		padding: 4px;
	}

	.content5_2 .content5-bottom .content5-circle ul li::after {
		top: -8px;
		left: -9px;
		padding: 23px;
	}

	.content5_2 .content5-bottom .content5-circle ul li:not(:nth-of-type(1)) {
		margin-top: 10rem;
	}

	.content6 .price_wrapper .price_content th,
	.content6 .price_wrapper .price_content td {
		padding: 2% 1%;
	}

	.harm .harm_content {
		width: 100%;
		flex-wrap: wrap;
	}

	.harm .harm_content li .harm_text {
		height: 0px;
		padding-bottom: 50%;
	}

	.harm .harm_content li .harm_text p:nth-of-type(1) {
		font-size: 1rem;
	}

	.harm .harm_content li .harm_text p:nth-of-type(2) {
		font-size: 0.8rem;
	}

	.advantage ul li {
		width: 88%;
	}

	.advantage ul li:nth-of-type(n + 2) {
		margin-top: 8%;
	}

	.advantage ul li .caption img {
		width: 2rem;
	}

	.advantage ul li .caption span {
		font-size: 1.2rem;
	}

	.advantage ul li .advantage_text {
		font-size: 1rem;
	}

	.content6 .price_wrapper .price_content .introduce {
		font-size: 1rem;
	}

	.content6 .price_wrapper .price_content .introduce span:nth-of-type(1) {
		font-size: 1.1rem;
	}

	.content6 .price_wrapper .price_content table {
		line-height: 1.3em;
	}

	.content6 .price_wrapper .price_content table tr:first-child {
		font-size: 1rem;
	}

	.content6 .price_wrapper .price_content table tr td:not(:last-child) {
		font-size: 0.95rem;
	}

	.content6 .price_wrapper .price_content table tr td:last-child {
		font-size: 1rem;
	}

	.content8 .headline .horizontalLine img {
		width: 14rem;
	}

	.content8 .doctor .doctor_img .consult {
		width: 35%;
		height: 35%;
	}

	.content8 .doctor .doctor_img .consult p {
		font-size: 1rem;
	}

	.content8 .doctor .doctor_img .ripples {
		width: 35%;
		height: 35%;
	}

	.content8 .doctor .doctor_introduction {
		width: 90%;
	}

	.content8 .doctor .doctor_introduction .name span:nth-of-type(1) {
		font-size: 1.3rem;
	}

	.content8 .doctor .doctor_introduction .name span:nth-of-type(2) {
		font-size: 0.9rem;
	}

	.content8 .doctor .doctor_introduction .intro p {
		font-size: 1rem;
		padding-left: 4%;
	}

	.content8 .doctor .doctor_introduction .good p:nth-of-type(2),
	.content8 .doctor .doctor_introduction .good p:nth-of-type(3) {
		font-size: 1rem;
	}

	.content8 .doctor .good p:nth-of-type(1) {
		font-size: 1.05rem;
	}

	.content8 .anniu a span {
		width: 260px;
	}

	.content9 .hot_response .hot_response-item {
		padding: 2% 2% 4%;
	}

	.content9 .hot_response .hot_response-item .hot_resonse-qa:nth-of-type(1) span:nth-of-type(2) {
		font-size: 0.9rem;
	}

	.content9 .hot_response .hot_response-item .hot_resonse-qa span:nth-child(1) {
		font-size: 0.8rem;
		width: 0.8rem;
		height: 0.8rem;
		line-height: 0.8rem;
	}

	.content9 .hot_response .hot_response-item .hot_resonse-qa span:nth-child(2) {
		line-height: 1.5em;
		font-size: 0.8rem;
	}

	.content10 h5 {
		font-size: 1.5rem;
	}

	.content10 .content10_img li p {
		padding: 4px;
	}

	.headline h5 {
		font-size: 1.4rem;
		padding: 0 1%;
	}

	.headline .subtitle {
		font-size: 1rem;
	}

	.advantage .headline hr {
		width: 94%;
	}

	.anniu a span {
		width: 230px;
		font-size: 1rem;
	}
}

@media screen and (max-width: 400px) {
	.content9 .hot_response .hot_response-item .hot_resonse-qa span:nth-child(2) {
		font-size: 13px;
	}
}