.nav {
	--bg-color: #fff;
	--color: #3e8789;
	transition: all 0.3s;
	width: 100%;
	height: 96px;
	display: flex;
	align-items: center;
	border-top: 3px solid var(--color);
	border-bottom: 3px solid var(--color);
	color: var(--color);
	z-index: 10;
	padding-left: 12vw;
	background: var(--bg-color);
}
.nav.navdeep {
	--bg-color: #3e8789;
	--color: #fff;
}
.nav .logo {
	width: auto;
	height: 64px;
}
.nav-tabs {
	display: flex;
	align-items: center;
	font-size: 24px;
	margin-left: 133px;
}
.nav-tabs li > img {
	width: 32px;
}
.nav-tabs > li {
	width: 187px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 23px 0 60px;
	cursor: pointer;
	position: relative;
	background-repeat: no-repeat;
	background-size: 32px;
	background-position: 20px center;
}
.nav-tabs .login{
	padding-left: 23px;
	width: 144px;
	border-radius: 25px;
	color: #fff;
	background: var(--color);
	transition: all .2s;
	height: 42px;
	line-height: 42px;
}
.nav-tabs .login:hover{
	transform:scale(1.1);
}
.nav.navdeep .login{
	color: var(--bg-color);
	background:var(--color);
}
.nav-tabs > li.active:not(.login)::after {
	content: '';
	--w: 8px;
	width: var(--w);
	height: var(--w);
	background: linear-gradient(135deg, #fff 50%,transparent 0);
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: rotate(45deg);
}
.nav-tabs > li:not(.login):hover {
	border-radius: 25px;
	background-color: var(--color);
	color: var(--bg-color);
}
.nav-tabs > li:not(:first-child) {
	margin-left: 40px;
}
.nav-tabs > li:not(:first-child,.login)::before {
	content: '';
	border-left: 1px dashed var(--color);
	position: absolute;
	left: -20px;
	height: 20px;
	top: 50%;
	transform: translateY(-50%);
}
.nav .medicine-tab {
	background-image: url(../images/icon/medicine-y.png);
}
.nav .medicine-tab:hover {
	background-image: url(../images/icon/medicine.png);
}
.nav .about-tab {
	background-image: url(../images/icon/about-y.png);
}
.nav .about-tab:hover {
	background-image: url(../images/icon/about.png);
}
.nav .contact-tab {
	background-image: url(../images/icon/contact-y.png);
}
.nav .contact-tab:hover {
	background-image: url(../images/icon/contact.png);
}
.nav.navdeep .medicine-tab {
	background-image: url(../images/icon/medicine.png);
}
.nav.navdeep .medicine-tab:hover {
	background-image: url(../images/icon/medicine-y.png);
}
.nav.navdeep .about-tab {
	background-image: url(../images/icon/about.png);
}
.nav.navdeep .about-tab:hover {
	background-image: url(../images/icon/about-y.png);
}
.nav.navdeep .contact-tab {
	background-image: url(../images/icon/contact.png);
}
.nav.navdeep .contact-tab:hover {
	background-image: url(../images/icon/contact-y.png);
}


.home-footer {
	background: #000;
	font-size: 16px;
	color: #9c9fa4;
	height: 69px;
	line-height: 69px;
	text-transform: uppercase;
}
.home-footer-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 1280px;
	margin: 0 auto;
}
.footer-nav {
	display: flex;
	align-items: center;
}
.footer-nav > a {
	height: 14px;
	line-height: 14px;
}
.footer-nav > a:not(:first-child) {
	margin-left: 10px;
	padding-left: 10px;
	border-left: 1px solid #9c9fa4;
}

.drug {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 379px;
	border-bottom: 1px dashed #ebebeb;
}
.drug .left {
	width: 311px;
	height: 311px;
	box-shadow: 0px 0px 8px 0px rgba(35, 24, 21, 0.1);
	border-radius: 5px;
	object-fit: contain;
	object-position: center center;
	padding: 5px;
}
.drug .right {
	width: 858px;
	height: 80%;
	font-size: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.drug .right > p {
	width: 100%;
}
.drug .right h3 {
	display: flex;
	justify-content: space-between;
}
.drug .right p b {
	font-weight: normal;
	width: 120px;
	text-align: justify;
	text-align-last: justify;
	display: inline-block;
}
.drug .show-detail {
	height: 36px;
	background: url(../images/medicine/show-detail1.png) no-repeat;
	background-size: auto 100%;
	width: 200px;
	cursor: pointer;
}
.drug .show-detail:hover {
	background: url(../images/medicine/show-detail2.png) no-repeat;
	background-size: auto 100%;
}
.drug .tags .tag {
	background: #1a7a7a19;
	border-radius: 5px;
	color: #1a7a7a;
	padding: 1px 5px;
	margin-top: 3px;
}
.drug .tags .tag:not(:first-child) {
	margin-left: 5px;
}
