body{
	font-family: Calibri !important;
}
.MsoNormal span,.page-content>p,.page-content>p span,.common-content p span,.common-content p{
	font-size: 16pt !important;
	line-height: 2rem !important;
}
.MsoNormal img{
	width: 60% !important;
	margin: 0 auto;
	display: block;
}
:root {
	--body-width: calc(100vw - 200px);
	--custom-height: calc(var(--body-width) * 0.035);
	--banner-padding: calc(var(--custom-height) * 2.5);
}

img {
	vertical-align: middle;
}

html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Arial', sans-serif;
}

.tab {
	display: none;
}

.active {
	display: block;
}

#content {
	/* margin-left: 200px; */
	min-height: 100vh;
	/* width: calc(100% - 200px); */
}

.banner {
	min-height: 100vh;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

/* navbar */
.navbar {
	color: #fff;
	padding: 10px 0px;
	bottom: 0;
	transition: all 0.2s;
	z-index: 1031;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #88c7ec;
	height: 140px;
}

.navbar-igem-logo {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 90%;
}

.navbar-igem-logo .img1 {
	width: 9rem;
	object-fit: contain;
	cursor: pointer;
}

.navbar-igem-logo .img2 {
	width: 7rem;
	object-fit: contain;
	cursor: pointer;
}

.sticky {
	position: fixed !important;
	top: 0;
	width: 100%;
	left: 0;
	z-index: 1030;
}

.common-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-size: 100% 100%;
	/* min-height: 1800px; */
	padding-bottom: 10rem;
	margin: 50px auto 0 auto;
}

.common-content {
	/* width: 60%; */
	max-width: 900px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem;
	color: #000 !important;
	font-size: 16px;
}

/* sidebar */
#sidebar {
	z-index: 100;
	background-color: #fff;
	color: #fff;
	width: 200px;
	height: 60vh;
	font-size: 20px;
	position: fixed;
	top: 140px;
	right: 30px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	visibility: hidden;
	overflow: hidden;
	overflow-y: auto;
}

#sidebar .avatar {
	width: 80px;
	border-radius: 50%;
	margin-bottom: 20px;
}

#sidebar ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	width: 100%;
}

#sidebar ul .menu-item {
	margin-bottom: 10px;
	padding: 5px;
}

#sidebar ul .menu-item .menu-item-first:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 5px 0 5px;
	border-color: #000 transparent transparent transparent;
	position: absolute;
	right: 20%;
	transform-origin: center center;
	transition: transform 0.3s ease;
}

#sidebar ul li a {
	color: #000;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#sidebar .sub-menu {
	padding: 10px 0;
	display: none;
	background-color: #fff;
	margin-top: 10px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

#sidebar .sub-menu li:hover {
	background-color: #f5f5f5;
}

#sidebar ul ul li {
	padding: 10px;
	margin-bottom: 0;
}

#sidebar ul .menu-item.active .sub-menu {
	display: block;
	max-height: 1000px;
}

#sidebar ul li.active ul li:hover {
	cursor: pointer;
}


#sidebar ul li ul a {
	color: #111111;
	justify-content: flex-start;
	font-size: 14px;
	color: #333;
}

#sidebar .arrow::before {
	content: "^";
	margin-right: 5px;
	margin-left: 10px;
	transition: transform 0.3s ease;
	font-weight: 700;
	font-size: 20px;
}

#sidebar ul li.active .arrow::before {
	transform: rotate(90deg);
}

/* home */
.home-banner img {
	width: 100%;
	min-height: auto;
	vertical-align: middle;
}

.home-banner {
	position: relative;
}

.home-banner-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/* home banner1 */
.home-banner1 {
	margin-top: 120px;
}

.home-banner1-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	width: 90%;
	height: 100%;
	margin: 0 auto;
	padding: calc(var(--custom-height) * 4.5) 33% calc(var(--custom-height) * 4.5) 0;
	box-sizing: border-box;
}

.home-banner1-wrapper .home-banner1-title {
	color: #9796a6;
	font-weight: bold;
	font-style: italic;
	position: relative;
	font-size: 4rem;
	text-align: center;
	display: block;
}

.home-banner1-wrapper .home-banner1-title::after {
	content: attr(data-text);
	position: absolute;
	top: -5px;
	right: 5px;
	color: #e69e37;
	-webkit-text-stroke: 1px #e69e37;
	text-stroke: 1px #e69e37;
}

.home-banner1-wrapper .home-banner1-sub-title {
	color: #000;
	font-size: 1.5rem;
	font-weight: bold;
}

/* home banner2 */
.home-banner2-wrapper {
	width: 80%;
	margin: 0 auto;
	display: flex;
	justify-content: flex-end;
}

.home-banner2-content {
	width: 45%;
	padding: var(--banner-padding) 0;
	box-sizing: border-box;
}

.home-banner3-content {
	width: 50%;
	padding: var(--banner-padding) 0 var(--banner-padding) var(--banner-padding);
	box-sizing: border-box;
}

.home-banner4-content {
	width: 50%;
	padding: var(--banner-padding) var(--banner-padding) var(--banner-padding) 0;
	box-sizing: border-box;
	margin-left: auto;
}

.home-banner2-content, .home-banner3-content, .home-banner4-content {
	font-size: 1.5rem;
	line-height: 45px;
	height: 100%;
}

/* home banner5 */
.home-banner5, .home-banner6, .home-banner7 {
	background-color: #faf4ec;
	padding: 50px 0 100px 0;
}

.home-banner5-content {
	max-width: 800px;
	width: 800px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.home-banner5 .home-banner5-item img {
	width: 100px;
}

.home-banner5 .home-banner5-item {
	padding-bottom: 10px;
	border-bottom: 2px solid #ded9d2;
	margin-top: 50px;
	font-size: 24px;
	color: #83caee;
	-webkit-text-stroke: 1px #60a0d0;
	text-stroke: 1px #60a0d0;
	display: flex;
	align-items: center;
	width: 350px;
}

.home-banner5 .home-banner5-item:nth-child(2n+1) {
	margin-right: 50px;
}

/* home banner6 */
.home-banner6-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 80%;
	margin: 0 auto;
}

.home-banner6 .home-banner6-item {
	width: 460px;
	height: 350px;
	background-color: #494949;
	border-radius: 20px;
	color: #fff;
	font-size: 1.5rem;
	font-weight: bold;
	position: relative;
	margin-right: 20px;
}

.home-banner6 .home-banner6-item a {
	text-decoration: none;
	color: #fff;
}

.home-banner6 .home-banner6-item img {
	/* transform: scale(1.5); */
	position: absolute;
	bottom: 0;
}

.home-banner6 .home-banner6-item-text {
	position: absolute;
	top: 30px;
	z-index: 100;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	text-align: center;
}

/* home banner7 */
.home-banner7-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 70%;
	margin: 0 auto;
	background-color: #e2eff7;
}

.home-banner7 .home-banner7-item {
	width: 260px;
	height: 350px;
	font-size: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0px 30px;
}

/* .home-banner6 .home-banner6-item img {
	position: absolute;
	bottom: 0;
} */

/* .home-banner6 .home-banner6-item-text {
	position: absolute;
	top: 30px;
	z-index: 100;
	left: 50%;
	transform: translateX(-50%);
} */

/* members */
.member-wrapper, .description-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: url(./static/img/member-bg.png) no-repeat;
	background-size: 100% 100%;
	min-height: 100vh;
	padding-bottom: 200px;
}

.member-content, .description-content {
	max-width: 910px;
	display: flex;
	flex-direction: column;
	/* align-items: center; */
	padding: 50px;
}

.member-title, .description-title {
	color: #e3a343;
	font-size: 100px;
	font-weight: bold;
	text-align: center;
	/* margin-top: 150px; */
}

.member-group-name {
	width: 300px;
	color: #fff;
	font-size: 36px;
	font-weight: 400;
	padding: 10px;
	background-color: #88c7ec;
	text-align: center;
	margin-bottom: 80px;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
}

.member-group {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 100px;
}

.member {
	border: 2px solid #88c7ec;
	width: 230px;
	height: 350px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	background-color: #ffffff;
	color: #111;
	border-radius: 20px;
	margin: 30px 20px;
	transition: box-shadow 0.3s ease;
}

.member:last-child {
	margin-right: auto;
}

.member:hover {
	box-shadow: 0 0 10px #88c7ec;
}

.member .avatar {
	width: 100px;
	height: 100px;
	border: 2px solid #88c7ec;
	border-radius: 50%;
	/* margin-top: -3rem; */
	background-color: #ffffff;
	flex-shrink: 0;
}

.member .name {
	font-weight: bold;
	color: #88c7ec;
	font-size: 22px;
}

.member .info {
	word-break: break-all;
	overflow-y: auto;
	padding: 0 1rem;
	position: relative;
}

.member .group {
	/* background: linear-gradient(to top, #453dc0, #fff);
	color: #ffffff;
	width: 100%;
	text-align: center;
	height: 50px;
	line-height: 50px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px; */
	/* width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #88c7ec transparent transparent transparent; */
}

.info::-webkit-scrollbar {
	display: none;
}

/* .info::-webkit-scrollbar-track {
	background: #e8e8e8;
	border-radius: 2px;
}

.info::-webkit-scrollbar-thumb {
	background: #EAB3D1;
	border-radius: 10px;
}

.info::-webkit-scrollbar-thumb:hover {
	background: #EAB3D1;
}

.info::-webkit-scrollbar-corner {
	background: #e8e8e8;
} */

/* description */
.description-wrapper {
	min-height: 1800px;
}

.description-banner {
	background: unset;
}

.description-content {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	margin-top: 100px;
	position: relative;
}

.description-name {
	width: 350px;
	color: #ffffff;
	font-size: 22px;
	font-weight: 400;
	background-color: #88c7ec;
	text-align: center;
	border-radius: 20px;
	padding: 6px;
}


.description-wrapper .description {
	display: flex;
	flex-direction: column;
	line-height: 2rem;
	text-align: left;
	font-size: 16px;
	max-width: 800px;
	color: #000;
	margin-bottom: 100px !important;
}

.description-wrapper .description div {
	margin: 20px auto;
}

.description-wrapper .left-menu {
	display: flex;
	width: 100px;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	justify-content: space-between;
	background-color: #88c7ec;
	z-index: 1000;
}

.description-wrapper .left-menu a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	padding: 10px;
	width: 300px;
	font-size: 16px;
	transition: transform 0.3s ease-in-out;
	transform: translateX(0);
	color: #fff;
	margin-bottom: 10px;
}

/* .description-wrapper .left-menu a.active {
	font-weight: bold;
	transition: transform 0.3s ease-in-out;
	color: #ffffff;
	border-radius: 20px;
} */

/* .description-wrapper .left-menu a:hover .title,
.description-wrapper .left-menu a.active .title {
	background-color: #de8c45;
	color: #fff;
	width: 100px;
	display: inline-block;
	margin-left: 10px;
	padding: 5px 20px;
	border-radius: 20px;
} */

.description-wrapper ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: flex-start;
}

.description-wrapper ul li {
	position: relative;
	display: flex;
	align-items: center;
}

#parts td {
	border: 1px solid #000;
	padding: 8px;
}

.footer {
	height: 252px;
	/* width: 100vw; */
	background-color: #88c7ec;
	color: #fff;
	text-align: center;
	font-size: 16px;
	line-height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	/* padding: 2rem; */
	position: absolute;
	/* bottom: 0; */
	left: 0;
	right: 0;
}

/* 大于 1024px 小于等于 1440px 的设备 */
/* @media screen and (min-width: 1025px) and (max-width: 1440px) {
  .home-banner1-wrapper .home-banner1-title {
    font-size: 5rem;
  }
} */

/* 大于 1440px 的设备 */
@media screen and (min-width: 1441px) {
	.home-banner1-wrapper .home-banner1-title {
		font-size: 5rem;
	}

	.home-banner1-wrapper {
		padding: calc(var(--custom-height) * 4.5) 33% calc(var(--custom-height) * 4) 0;
	}

	.home-banner1-wrapper .home-banner1-sub-title {
		font-size: 3rem;
	}

	.home-banner2-content, .home-banner3-content, .home-banner4-content {
		font-size: 2.5rem;
		line-height: 4rem;
		font-weight: 100;
	}
}
