* {
	margin: 0;
	padding: 0;
}
body {
	    scroll-behavior: smooth;
}
/* 全局隐藏滚动条但保留滚动功能 */
html, body {
	height: 100%;
	-ms-overflow-style: none; /* IE/旧 Edge */
	scrollbar-width: none; /* Firefox */
}
body::-webkit-scrollbar {
	width: 0;
	height: 0;
}
/* 局部滚动容器隐藏滚动条（用于外层滚动容器） */
.scroll-container::-webkit-scrollbar {
	width: 0;
	height: 0;
}
.tabs::-webkit-scrollbar {
	    width: 0;
	    height: 0; /* 隐藏Chrome和Safari浏览器的滚动条 */
}
.header-signs {
	display: flex;
	justify-content: space-between;
	position: fixed;
	top:0;
	/*background-color: #08206c;*/
	background-color: #fff;
	width: 100%;
	max-width: 1200px;
	height: 80px;
	z-index:9999;
	border-bottom: 1px solid #edf2fa;
	left: 50%;
	transform: translateX(-50%);
}
.loginBtn {
	cursor: pointer;
	margin-right: 50px;
	/*width: 100px;*/
	/*height: 40px;*/
	margin-top: 20px;
	margin-left: 50px;
	background-color:#016fa0;
	border:none;
	color:#fff;
	font-weight: bold;
	border-radius: 7px;
    font-size: 15px;
    padding: 8px 40px;
}

.body-data {
	position: relative;
	height: 400px;
	width: 100%;
	max-width: 1200px;
	margin: 100px auto -80px auto;
	background: linear-gradient(90deg, #9faacc, #6a78a3, #57679b, #43558f, #1c3278);
	color:#fff;
	z-index:999;
}
.service-data {
	margin-top: 20px;
	margin-bottom: 50px;
	padding-top: 100px;
	text-align: center;
	font-size: 42px;
	font-weight: 700;
}
.img-svg-data {
	display: flex;
	justify-content: space-around;
	margin-top: 30px;
}
.img-svg-data p{
    font-weight: 700;
}
.exam-num-p {
	margin-left: -3px;
}
.exam-num-two {
	margin-left: 6px;
}
.img-svg-data .num{
    font-weight: 700;
	margin-left: 25px;
	font-size: 20px;
}
.img-svg-data .num-one{
	font-weight: 700;
	margin-left: 15px;
	font-size: 20px;
}
.body-data img {
	width: 90px;
	margin: 10px 0;
}
  /* 设置锚点位置的偏移量，使目标元素保持在原来的位置 */
:target {
	/* 设置偏移量，根据需要调整数值 */
    scroll-margin-top: 160px;
}
/* Hide all tabs content */
.tab-content {
	max-width: 1200px;
	margin: 100px auto 0 auto;
	padding: 0 45px;
	box-sizing: border-box;
}
.tabs {
	margin-top: -80px;
 }
.tabs-item a {
	text-decoration: none; /* 去掉链接的下划线 */
	color: #7f7f7f;
 }
.tabs-item {
	background-color:rgba(1, 111, 160, 0.09803921568627451);
	/*padding:10px 0;*/
	/* 水平居中 */
	text-align: center;
	/* 防止tab栏换行 */
	white-space: nowrap;
	/* 移除滚动条 */
	overflow: hidden;
}
.tab-container {
	position: relative;
	background-color: #fff;
	margin-top: 80px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
/* 当 Tab 固定时的样式 */
.tab-container.fixed {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1200px;
	z-index: 1000;
}

/* 响应式设计，确保tab栏在小屏幕上也能正常显示 */
@media screen and (max-width: 1200px) {
	.tabs-item {
		padding: 1px 20px;
	}

	.tab-btn {
		padding: 8px 15px;
		font-size: 20px;
		margin: 0 3px;
	}

	.tab-content {
		padding: 0 20px;
	}

	.lcfy-product {
		font-size: clamp(40px, 6vw, 60px);
		padding: 15px 20px;
	}
}

@media screen and (max-width: 768px) {
	.tabs-item {
		padding: 1px 10px;
	}

	.tab-btn {
		padding: 6px 10px;
		font-size: 20px;
		margin: 0 2px;
	}

	.tab-content {
		padding: 0 15px;
	}

	.join-us {
		flex-direction: column;
		text-align: center;
	}

	.join-us img {
		margin: 20px auto;
	}

	.join-us-left {
		margin: 20px auto;
		text-align: center;
	}

	.container-bottom {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

@media screen and (max-width: 480px) {
	.header-signs {
		padding: 0 20px;
	}

	.loginBtn {
		margin-right: 20px;
		margin-left: 20px;
		width: 80px;
	}

	.tab-content {
		padding: 0 10px;
	}

	.lcfy-product {
		font-size: clamp(30px, 5vw, 40px);
		padding: 10px 15px;
	}
}
 /* Add styles to buttons and set initial state of first button as "active" */
.tab-btn {
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	/* 防止tab按钮换行 */
	white-space: nowrap;
	display: inline-block;
	/* 确保按钮间距一致 */
	margin: 0 5px;
	color:rgba(1, 111, 160, 0.992);
}

.tab-btn.active {
	color:rgba(1, 111, 160, 0.992);
	/* background-color: #fff; */
	border-bottom: 1px solid blue;
}
.background-image {
	width: 200px;
	height: 380px;
    object-fit: fill;
	margin-right: 20px;
    margin-left: 20px;
	margin-top: 20px;
}
.background-image-hospital {
	max-width: 400px;
	aspect-ratio: 4/3;
    object-fit: fill;
	margin-left: 60px;
	margin-right: 50px;
	margin-top: 20px;
}
.background-image-contain {
	width: 200px;
	height: 380px;
    object-fit: fill;
	margin-right: 10px;
	margin-top: 20px;
}
.background-image-pc-border {
	position: absolute;
	margin-left: 45px;
	top: 8px;
}
.background-image-pc {
	width: 50%;
	aspect-ratio: 4/3;
	margin-left: -50px;
	z-index:9;
}
.main-function {
	width: 255px;
	height: 45px;
	line-height: 45px;
	background-color: #2444b7;
	color:#fff;
	font-size: 23px;
	font-weight: 700;
	padding: 0px 20px;
	border-radius: 23px;
	margin-left: 20PX;
}
.main-function-pdca {
	width: 95px;
	height: 45px;
	line-height: 45px;
	background-color: #2444b7;
	color:#fff;
	font-size: 23px;
	font-weight: 700;
	padding: 0px 20px;
	border-radius: 23px;
	margin-left: 20PX;
}
.main-fun-feature {
	margin-left: 10px;
}
.main-fun-feature ul {
	margin-top:20px;
	margin-left: 20px;
}
.lcfy-product {
	font-size: clamp(60px, 8vw, 100px);
	margin-top: 40px;
	padding: 15px 45px;
	background-color: #2444b7;
	color:#fff;
	border-radius: 8px;
	width: 90%;
	max-width: 100%;
}
.lcfy-background-image {
    margin-left: 520px;
	width: 50%;
    margin-top: -330px;
}
.lcfy-image-pc {
	width: 50%;
	max-width: 500px;
    height: 500px;
	margin-left: 0;
	margin-top: 30px;
}
.pdca-background-image {
	top: 50px;
	margin-top: 200px;
	width: 100%;
	max-width: 500px;
	height: auto;
	aspect-ratio: 3/4;
	margin-right: 20px;
}
.pdca-img-bottom {
	display: flex;
	justify-content: space-between;
}
.pdca-img-bottom img{
	margin-left: 5%;
	width: 85%;
}
.scheduling-img {
	margin: 0 40px;
	margin-top: -100px;
	width: 220px;
}
.scheduling-img-two {
	margin-top: -100px;
	width: 403px;
	margin-left: -55px;
}
.scheduling-img-fun {
	width: 350px;
	height: 300px;
}
.pdca-item-fun {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 125px;
	height: 290px;
	border-radius: 12px;
	border: 3px dotted #2444b7;
}
.pdca-item-fun .item {
	font-size: 12px;
   border: 1px solid #7f7fa8;
   width: 110px;
   margin: 8px;
}
.pdca-item-fun .item-two {
	font-size: 12px;
	border: 1px solid #7f7fa8;
	width: 110px;
	margin: 8px;
 }
.pdca-item-fun .item p{
	font-size: 12px;
    padding: 3px 15px;
	text-align: center;
}
.pdca-item-fun .item-two p{
	font-size: 14px;
    padding: 3px 15px;
	text-align: center;
}
.pdca-item-bottom {
	border: 2px solid #2444b7;
	width: 400px;
	height: 70px;
	border-radius: 12px;
	margin-top: -160px;
	margin-left: 100px;
	padding: 20px 30px;
}
.pdca-item-bottom  .item{
	margin-left: -10px;
}
.pdca-item-bottom  .item p{
	display: inline-block;
	width: 100px;
	height: 25px;
	line-height: 25px;
	background-color: #2444b7;
	color:#fff;
	border-radius: 8px;
	border: 1px solid #7f7fa8;
	margin-top: -10px;
	font-size: 14px;
    padding: 3px 10px;
	margin-left: 10px;
	text-align: center;
 }

.fj-img {
	width: 100%;
	max-width: 300px;
	margin-top:-350px;
	margin-left: 180px;
	margin-right: 20px;
}
.service-url {
	border: 3px dotted #2444b7;
	border-radius: 8px;
	margin-top: 150px;
	padding: 15px;
	margin-right: 20px;
	/*line-height: 30px;*/
	/*margin-left: 0px;*/
}
.join-us {
	display: flex;
	align-items: center;
    justify-content: flex-start;
	margin-top: 50px;
	width: 100%;
	max-width: 95%;
	height: auto;
	min-height: 160px;
	border-radius: 10px;
	box-shadow: 2px 2px 5px rgba(38, 86, 255, 0.29803);
    padding: 20px;
}
.join-us img {
	width: 100%;
	max-width: 130px;
	height: auto;
	aspect-ratio: 1/1;
    margin-left: 20px;
	margin-right: 20px;
}
.join-us-left {
	font-size: 18px;
	margin-top: -50px;
	margin-left: 20px;
}
.join-us-left .title {
	margin-top: 25px;
	font-weight: 700;
}
.join-us-left p {
	margin-top: 10px;
	line-height: 30px;
}
.cooperationCaseContainer {
	position: relative;
	margin-top: 32px;
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* 每行 4 列 */
	gap: 20px;
}
.cooperationCaseContainer .hospital{
	border: 2px solid #e2e2e2; /* 底部边框样式 */
	/*flex-basis: 20%;*/
	height: 120px;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 2px 2px 5px rgba(38, 86, 255, 0.29803);
}
.cooperationCaseContainer .hospital img{
	float: left;
	margin-left: 10px;
    max-width: 90px;
	aspect-ratio: 1/1;
}
.cooperationCaseContainer .hospital div{
	margin-left: 200px;
	margin-top: 20px;
}
.join-us-bottom {
	margin-top: 50px;
}
.join-us-bottom .background-join-us {
	text-align: center;
	width: 100%;
	height: 670px;
    background-color: #eee;
	/* border: 2px solid #eee; */
}
.join-us-bottom .background-join-us .contact {
	font-size: 25px;
	height: 25px;
	width: 100px;
	padding: 10px 40px 20px 40px;
	margin-top: 50px;
	margin-left: 45%;
	background-color: #016fa0;
	color:#fff;
	border-radius: 50px;
	cursor: pointer;
}
.join-us-bottom .background-join-us p {
    font-size: 30px;
	padding-top: 50px;
}
.join-us-bottom .background-join-us img {
    width: 600px;
	height: 330px;
	margin-top: 80px;
}
.container-bottom {
	display: flex;
	justify-content: space-around;
	margin: 60px;
	margin-top: 100px;
	margin-bottom: 100px;
}
.container-bottom ul {
	list-style: none;
	color:#7f7fa8;
	line-height: 30px;
}
.container-bottom img {
	width: 245px;
	height: 245px;
	margin-left: -80px;
}
.container-bottom ul li a {
	color:#7f7fa8;
	text-decoration: none; /* 去掉链接的下划线 */
}
.container-bottom ul li a:hover {
	color:blue;
}
.contact-us-page {
    display: none;
	width: 100%;
	max-width: 95%;
	height: auto;
	min-height: 500px;
	background-color: #fff;
	border: 3px solid #eee;
	margin: 100px auto 0 auto;
	border-radius: 10px;
}
.contact-us-page .contactus-show {
    font-size: 26px;
	margin-bottom: 40px;
	margin-top: 50px;
	margin-left: 200px;
}
.contact-us-page ul {
	margin-left: 180px;
	list-style: none;
	line-height: 36px;
}
.pay-attention-us {
	margin-left: auto;
	margin-right: 20px;
	margin-top: 20px;
	text-align: center;
}
.pay-attention-us img{
	width: 100%;
	max-width: 245px;
	height: auto;
	aspect-ratio: 1/1;
}
.contact-us-page ul li img{
	width: 28px;
    margin: 0 10px -6px;
}
.loadMoreButton {
	float: right;
	margin-right: 80px;
	font-size: 14px;
	padding: 5px 15px;
	background-color:#fce5c6;
	color:#f59b6d;
	border-radius: 5px;
	cursor: pointer;
	border: 1px solid #f59b6d;
}

.workContainer {
	position: relative;
	margin-top: 25px;
	display: grid;
	grid-template-columns: repeat(5, 1fr); /* 每行 4 列 */
	gap: 25px;
}
.workInfo {
    border-radius: 8px;
	border: 2px solid #eee;
	box-shadow: 2px 2px 5px rgba(38, 86, 255, 0.29803);
   /*width: 176px;*/
}
.companyInfo {
	display: flex;
	justify-content: flex-start;
	border-radius: 8px;
	border: 2px solid #eee;
	box-shadow: 2px 2px 5px rgba(38, 86, 255, 0.29803);
	padding: 20px;
}
.company-name {
	padding-top: 45px;
	margin-left: 10px;
}
.avatar-hospital {
	width: 50%;
	aspect-ratio: 1/1;
    border-radius: 5px;
}
.workInfoProduct {
	padding: 5px;
}
.avatar {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: initial; /* 图片等比例缩放并填满容器 */
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.loginDialog {
	position: absolute; /* 绝对定位，相对于 container */
	left: 50%;
	transform: translateX(-50%); /* 水平居中 */
	z-index: 9; /* 确保遮盖列表内容 */
    margin-top: 150px;
	background: white;
	width: 500px;
	height: 400px;
	border-radius: 20px;
	text-align: center;
	display: none; /* 默认隐藏 */
	img {
		width: 500px;
		height: 400px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
		border-radius: 16px;
	}
	.welcome-hi {
		position: absolute;
		top: 15%;
		left: 17%;
		transform: translate(-50%, -50%);
		color: #113552;
	}
	.welcome {
        top: 27%;
		left: 21%;
	}
	p {
		position: absolute;
		color: #113552;
		top: 37%;
		left: 8%;
	}
	.get-more {
		top: 47%;
	}
	.to-login {
		cursor: pointer;
		position: absolute;
		top: 70%;
		left: 50%;
		transform: translate(-50%, -50%);
		color: white;
		font-size: 16px;
		background-color: #016794;
		padding: 10px 40px;
		border-radius: 10px;
	}
	.no-login {
		position: absolute;
        cursor: pointer;
		top: 85%;
		left: 50%;
		transform: translate(-50%, -50%);
		color: #016794;
		font-size: 16px;
	}
}
.clicks {
	font-size: 10px;
	position: relative;
	float:right;
	margin-top: -28px;
	margin-right: 3px;
	color:#fff;
	border-radius: 30px;
	background-color:rgba(150, 150, 150, 0.3);
	padding: 2px 8px;
}
.name-price {
    height: 60px;
}
.title-style {
	display: flex;
	align-items: center;
	font-size: 12px;
	word-wrap: break-word;
	padding: 0 5px;
}
.collect-value {
	display: flex;
	justify-content: space-between;
	padding: 0 5px 0 5px;
    font-size: 12px;
    color: #aaaaaa;
    margin-top: 8px;
}
.free-value {
    color: #5daf34;
}
.number-value {
    color: #d9001b;
}
.collect-icon {
	width: 14px;
	height: 14px;
	vertical-align: middle;
}
.author-msg {
	margin-top: 10px;
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	font-size: 10px!important;
}
.avatar-author {
	width: 20px;
	height: 20px;
	border-radius: 50%; /* 将图片显示为圆形 */
	margin-top: -2px;
	border: 1px solid #e2dbdb;
	vertical-align: middle;
    margin-left: 5px;
}
.nick-name {
	font-size: 10px;
	margin-left: 32px;
	margin-top: -20px;
	color: #616161;
}
.work-time {
	font-size: 10px;
	color: #797777;
    margin-right: 6px;
}
.comma-icon {
    width: 50px;
    height: auto;
    display: none;            /* 使用伪元素在文本后显示右引号 */
}
#TASprofile, #PDCAprofile, #schedulDo {
    display: inline;          /* 与图标保持同排，允许正常换行 */
}

/* 让右引号图标紧跟在段落最后一行后 */
#TASprofile::after, #PDCAprofile::after, #schedulDo::after{
    content: '';
    display: inline-block;
    width: 50px;
    height: 40px;             /* 与 #TASprofile 的 line-height 相近，避免上下偏移 */
    background: url('https://ud-files.oss-cn-hangzhou.aliyuncs.com/onvip/site/images/left.svg') no-repeat center / contain;
    vertical-align: text-bottom;
    margin-left: 80px;         /* 与文字保持间距 */
    position: relative;
    top: 26px;
}

/* 作品蒙版样式 */
.work-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 8;
	display: none; /* 默认隐藏 */
}
.internet-content-provider {
    text-align: center;
    padding-bottom: 60px;
    margin-top: -60px;
}
