/*


/*
===========================
CONTENTS:

01 General
02 Typography
03 Non-semantic
04 Navbar
05 Page sections
06 Footer
07 Icons
08 Buttons
09 Media queries 
===========================
*/
/* Import css */

/* bootstrap */
@import url("bootstrap.css");
/* bootstrap responsive */
@import url("bootstrap-responsive.css");
/* prettyPhoto */
@import url("prettyPhoto.css");
/* flexslider */
@import url("flexslider.css");

/* font awesome */
@import url("font-awesome.css");
/* overwrite */
@import url("overwrite.css");
/* animation */
@import url("animate.css");



/* =========================================================
01. General
============================================================ */

div,
article,
section,
header,
footer,
nav,
li {
	position: relative;
}

.group:after {
	display: block;
	height: 0;
	clear: both;
	content: ".";
	visibility: hidden;
	/* For clearing */
}

body {
	background: #fff;
	color: #444;
	font-size: 16px;
	font-weight: 300;
	font-family: 'Open Sans', Arial, sans-serif;
}

body {
	padding-top: 60px;
	/* 60px to make the container go all the way to the bottom of the topbar */
}

::-moz-selection {
	color: #333;
}

::selection {
	color: #333;
}

/* 隐藏水平滚动条 */
body::-webkit-scrollbar {
	width: 0.2em;
}

body::-webkit-scrollbar,
body::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0);
}

body::-webkit-scrollbar-thumb {
	background: none;
}

body {
	-ms-overflow-style: none;
	/* IE 10+ */
	scrollbar-width: none;
	/* Firefox */
}

body,
html {
	width: 100%;
	/* 确保内容不超过视口宽度 */
	max-width: 100%;
	/* 防止某些内容超出 */
}

/* scroll to top */
.scrollup {
	position: fixed;
	width: 32px;
	height: 32px;
	bottom: 20px;
	right: 20px;
}

a.scrollup {
	outline: 0;
	text-decoration: none;
}

a.scrollup:hover,
a.scrollup:active,
a.scrollup:focus {
	opacity: 1;
	text-decoration: none;
	-webkit-transition: all 400ms ease-out 0s;
	-moz-transition: all 400ms ease-out 0s;
	-o-transition: all 400ms ease-out 0s;
	transition: all 400ms ease-out 0s;
}

a.scrollup i:hover {
	text-decoration: none;
}

.blankdivider10 {
	height: 10px;
	display: block;
}

.blankdivider20 {
	height: 20px;
	display: block;
}

.blankdivider30 {
	height: 30px;
	display: block;
}

.row {
	margin-bottom: 30px;
}

.row .row {
	margin-bottom: 30px;
}

.row.nomargin {
	margin-bottom: 0;
}

.copyrights {
	text-indent: -9999px;
	height: 0;
	line-height: 0;
	font-size: 0;
	overflow: hidden;
}

/*---------- forms ----------*/

input[type=text],
input[type=submit],
textarea {
	width: 100%;
	padding: 0.5em;
	font-size: 1em;
	margin-bottom: 1.5em;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

input,
button,
select,
textarea {
	font-family: 'Open Sans', Arial, sans-serif;
}

/* =========================================================
02. Typography
============================================================ */

p {
	line-height: 1.6em;
	margin: 0 0 10px 0;
}

blockquote {
	font-size: 18px;
	border: none;
	padding: 0;
}

blockquote.large {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.1em;
}

blockquote.large:before {
	font-size: 64px;
	font-family: FontAwesome;
	content: "\f10d";
	margin-right: 20px;
}

blockquote cite {
	display: block;
	font-size: 12px;
}

blockquote cite:before {
	content: "\2014 \0020";
}

blockquote cite a,
blockquote cite a:visited,
blockquote cite a:visited {
	color: #555;
}

ul,
ol {
	font-size: 1em;
	/* 16px */
	line-height: 1.5;
	/* 24px */
	margin: 0 0 1.5em 0;
}

body,
input,
textarea {}

a {
	color: #86ABBD;
	text-decoration: none;
}

a:hover,
a:active {
	text-decoration: underline;
	color: #ffe3fc
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
	color: #312f2b;
	line-height: 1.1em;
	font-family: 'Open Sans', Arial, sans-serif;
}

h1 {
	font-size: 36px;
	margin-bottom: 20px;
}

h2 {
	font-size: 30px;
	margin-bottom: 20px;
}

h3 {
	font-size: 26px;
	margin-bottom: 20px;
}

h4 {
	font-size: 22px;
	margin-bottom: 20px;
}

h5 {
	font-size: 18px;
	margin-bottom: 15px;
}

h6 {
	font-size: 16px;
	margin-bottom: 10px;
}

strong {
	font-weight: 700;
	font-family: 'Open Sans', sans-serif;
}

small {
	font-size: 0.75em;
	/* 12px */
	line-height: 2;
	/* 24px */
	margin-top: 2em;
	margin-bottom: 0em;
}

em {
	font-style: normal;
	font-family: 'Open Sans';
}

.muted {
	color: #A5A5A2;
}

.impressed {
	text-shadow:
		-1px -1px 0 rgba(0, 0, 0, 0.5),
		/* shadow */
		1px 1px 0 rgba(255, 255, 255, 0.9);
	/* highlight */
}

h2.pagetitle {
	color: #fff;
	font-size: 46px;
}

/* =========================================================
03. Misc
============================================================ */

.hide-text {
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	font-size: 1em;
}

.alignright {
	text-align: right;
}

.alignleft {
	text-align: left;
}

.aligncenter {
	text-align: center;
}

.medium {
	font-weight: normal;
}

/* =========================================================
04. Navigation
============================================================ */

.navbar-fixed-top .container {
	/* Uncomment to make nav expand full width */
	/*	width: auto; */
}

.navbar .brand {
	margin-left: 0;
	padding: 0;
	margin-top: 1.5em;
}

.navbar .brand a {
	padding: 0;
	color: #fff;
	font-size: 1.75em;
	margin-left: 0;
	font-weight: 400;
	text-transform: uppercase;
}

.navbar .brand a:hover {
	text-decoration: none;
	transition: color .15s linear;
	-webkit-transition: color .15s linear;
	-moz-transition: color .15s linear;
}

.navbar .brand a:focus {
	outline: none;
}

.navbar-inner {
	min-height: 4.75em;
}


.navbar-wrapper {
	overflow: hidden;
}

#menu-main {
	margin-top: 1.125em;
}

ul#menu-main>li>a {
	font-weight: 600;
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
}

ul#menu-main>li>a:hover {
	padding: 9px 15px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}

ul#menu-main>li>a:focus {
	outline: 0;
}

.navbar-inverse .brand,
.navbar-inverse .nav>li>a {
	text-shadow: none;
}


/* =========================================================
05. Page sections
============================================================ */

/* === section header === */

#header-wrapper {
	width: 100%;
	min-height: 600px;
	margin-top: -60px;
	padding-top: 160px;
	text-align: center;
}


#header-wrapper h1 {
	color: #FFFFFF;
	font-size: 4em;
	font-weight: 400;
	margin: 1em 0;
}

#header-wrapper h2 {
	color: #fff;
	font-family: 'Open Sans', sans serif;
	font-size: 2em;
	font-weight: normal;
	margin: 0.5em 0;
	text-shadow: 1px 1px 1px #333333;
}

header .logo {
	text-align: center;
	margin: auto;
	width: 30%;
	padding: 40px;
}

/* --- Header slider --- */
#header-wrapper.header-slider {
	position: relative;
	overflow: hidden;
}

#header-wrapper.header-slider video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	/* 使视频在内容下方 */
}

#main-flexslider ul.slides li p {
	font-size: 72px;
	text-transform: none;
	position: relative;
	margin-bottom: 0px;
	text-align: center;
	line-height: 1;
	color: #fff;
}

#main-flexslider.flexslider {
	margin: 0;
	background: none;
	border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-o-border-radius: 0;
	border-radius: 0;
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-o-box-shadow: none;
}



/* --- Header subscribe form --- */

#header-wrapper input[type=text] {
	background: rgba(227, 231, 228, 1);
	font-family: 'Open Sans', sans serif;
	font-size: 1.3125em;
	border: 0;
	text-align: center;
	vertical-align: middle;
	margin-bottom: 0 !important;
}

#header-wrapper input[type=text]:focus {
	background: #43413e;
	color: #eff1ef;
	transition: background 0.25 ease-in;
	-moz-transition: background 0.25 ease-in;
	-webkit-transition: background 0.25 ease-in;
}

#header-wrapper input[type=text] {
	height: 2.9em;
	width: 50%;
}

#header-wrapper input[type=submit] {
	color: #fff;
	width: 185px;
	height: 2.9em;
	font-size: 1.3125em;
	/* 21px */
	padding: 0.5em;
	letter-spacing: 0.05em;
	margin: 0;
	border: 0;
	text-transform: none;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

#header-wrapper input[type=submit]:hover,
#header-wrapper input[type=submit]:active {
	background: #43413e !important;
}


section.section {
	padding: 100px 0 80px;
}

section.section h4 {
    position: relative; /* 设置相对位置以便于伪元素的定位 */
    margin-bottom: 40px;
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -1px;
	padding-top: 40px;
}

section.section h4::before {
    content: '●'; /* 使用●作为黑点 */
    position: absolute;
    left: -1em; /* 调整黑点的位置 */
    top: 70%;
    transform: translateY(-50%); /* 垂直居中 */
    font-size: 46px; /* 使得黑点大小与h4文本一致 */
}

section.inner {
	padding: 50px 0 50px;
}



.section.orange h4,
.section.green h4 {
	color: #fcfcfc;
}

.section.orange p,
.section.green p {
	color: #f7f7f7;
}


/* === section spacer === */

section.spacer {
	padding: 90px 0 70px;
	color: #fcfcfc;
}

section.spacer.border {
    text-shadow: 
      -1px -1px 0 #86ABBD,  
      1px -1px 0 #86ABBD,
      -1px 1px 0 #86ABBD,
      1px 1px 0 #86ABBD;
}

section.spacer.darkpink {
	color: #d6b3d3;
}

.spacer.green,
.section.green {
	background: #A0CA37;
}

.spacer.green,
.section.green h4 {
	color: #fff;
}

.spacer.darkblue,
.section.darkblue {
	background: #86ABBD;
	padding: 90px 0 70px;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.spacer.blue,
.section.blue {
	background: #b6e9fe;
	padding: 150px 0 200px;
	text-align: center;
	position: relative;
}

.spacer.darkpink,
.section.darkpink {
	background: #d6b3d3;
	padding: 90px 0 70px;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.spacer.pink,
.section.pink {
	background: #ffe3fc;
	padding: 150px 0 200px;
	text-align: center;
	position: relative;
}

.spacer.orange,
.section.orange {
	background: #f36f36;
}

section.spacer.bg2 {
	background: url("../img/bg/bg-2.jpg")
		/*tpa=http://iweb-studio.com/wrapbootstrap/maxim/img/bg/bg-2.jpg*/
		50% 0 no-repeat fixed;
	width: 100%;
	height: auto;
	margin: 0;
}

section.spacer.bg3 {
	background: url("../img/bg/bg-3.jpg")
		/*tpa=http://iweb-studio.com/wrapbootstrap/maxim/img/bg/bg-3.jpg*/
		50% 0 no-repeat fixed;
	width: 100%;
	height: auto;
	margin: 0;
}

section.spacer blockquote.large:before {
	color: #eee;
	opacity: 0.6;
}

section.spacer blockquote cite {
	color: #555;
}



/* === section works === */

#works h4 {
	margin-bottom: 20px;
}

#portfolio {
	padding-bottom: 0;
}

/* === portfolio filter === */

#filters {
	margin-bottom: 0px;
	text-align: center;
	display: block;
	float: none;
	z-index: 2;
	position: relative;
}

#filters ul {
	margin: 0 0 20px;
	list-style: none;
	padding: 0;
}

#filters ul li {
	display: inline-block;
}

#filters ul li a {
	display: block;
	float: left;
	padding: 2px 5px;
	color: inherit;
	margin-right: 5px;
	margin-bottom: 5px;
	font-weight: 600;
}

#filters ul li a:hover,
#filters ul li a:focus {
	text-decoration: none;
	outline: 0;
}

#filters ul li a h5 {
	font-size: 14px;
	padding: 5px 10px 5px;
	border: 2px solid #f2f2f2;
}

#filters ul li a:hover h5,
#filters ul li a.active h5 {
	color: #fcfcfc;
}




/* === portfolio wrap - grid === */
#portfolio-wrap {
	position: relative;
	padding: 0;
	width: 100.1%;
	margin: 0 auto;
	display: block;
}

#portfolio-wrap .grid {
	margin: 0;
	overflow: hidden;
	line-height: 0;
	width: 20%;
	border: 0;
	padding: 0;
}

.portfolio-item.current {
	z-index: 101;
}

.portfolio-item {
	padding: 0;
	position: relative;
	overflow: hidden;
}

.portfolio-item .portfolio-image {
	overflow: hidden;
	display: block;
	position: relative;
}

.portfolio-item .portfolio-image img {
	width: 100%;
	height: auto;
}

.portfolio .portfolio-overlay {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	display: block;
	z-index: 4;
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.portfolio>a,
.portfolio>a:hover {
	color: #ffffff;
}

.portfolio-item .portfolio>a:hover>.portfolio-overlay {
	opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
}

.portfolio>a img {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.portfolio>a:hover img {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.portfolio .thumb-info {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.portfolio a:hover .portfolio-overlay .thumb-info {
	opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
}

.portfolio-overlay .thumb-info i {
	top: 50%;
}

.portfolio-overlay .thumb-info h5 {
	top: 20%;
	font-size: 18px;
}

.portfolio-overlay .thumb-info p {
	top: 50%;
	font-size: 13px;
}

.portfolio-overlay .thumb-info h5 {
	color: #ffffff;
	width: 100%;
	position: absolute;
	text-align: center;
}

.portfolio-overlay .thumb-info p {
	color: #ffffff;
	width: 100%;
	position: absolute;
	text-align: center;
	font-weight: bold;
}

.portfolio-overlay .thumb-info i {
	color: #ffffff;
	width: 100%;
	position: absolute;
	text-align: center;
	display: block;
}

/* === Isotope CSS3 transitions === */

.isotope,
.isotope .isotope-item {
	-webkit-transition-duration: 0.8s;
	-moz-transition-duration: 0.8s;
	-ms-transition-duration: 0.8s;
	-o-transition-duration: 0.8s;
	transition-duration: 0.8s;
}

.isotope {
	-webkit-transition-property: height, width;
	-moz-transition-property: height, width;
	-ms-transition-property: height, width;
	-o-transition-property: height, width;
	transition-property: height, width;
}

.isotope .isotope-item {
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform, opacity;
	-ms-transition-property: -ms-transform, opacity;
	-o-transition-property: -o-transform, opacity;
	transition-property: transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
	-webkit-transition-duration: 0s;
	-moz-transition-duration: 0s;
	-ms-transition-duration: 0s;
	-o-transition-duration: 0s;
	transition-duration: 0s;
}


/* === section services === */

section#services h2 {
	font-size: 22px;
	margin-bottom: 15px;
	margin-top: 10px;
	text-align: center;
}

section#services p {
	margin: 10px;
}


section#services .service-box {
	text-align: center;
	padding: 20px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

section#services .span3:hover {
	background: #e3e3e3;
}

section#services .service-box h2 {
	color: #f7f7f7;
	font-weight: 700;
}

section#services.section.orange .service-box:hover {
	background: #f36518;
}


/* === section blog === */

section#blog {
	background: #e3f7ff;
}

.home-post {
	background: #fff;

}

.home-post:hover {
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}


.home-post .entry-content {
	padding: 20px;
}

.home-post .entry-content h5 a {
	font-size: 22px;
}

.home-post .entry-content h5 a:hover {
	color: #312f2b;
	text-decoration: none;
}

.home-post .entry-content a.more {
	font-size: 13px;
}

.home-post .post-meta {
	padding: 20px;
	overflow: hidden;
	color: #fcfcfc;
}

.home-post .post-meta i {
	float: left;
	margin-right: 20px;
}

.home-post .post-meta span {
	margin-top: 10px;
}

.home-post .post-meta span.date {
	font-weight: 700;
	font-size: 13px;
	float: left;
}

.home-post .post-meta span.tags {
	font-weight: 700;
	font-size: 13px;
	float: right;
	color: #ddd;
}

.home-post .post-meta span.tags a {
	color: #fcfcfc;
}



/* === section about === */

section#about {
	background: #f2f2f2;
}

.people {
	text-align: center;
}

.people h3 {
	margin-bottom: 10px;
	font-weight: 700;
	letter-spacing: -1px;
}

.team-thumb {
	margin-top: 26px;
	text-align: center;
}

/* (spacer) latest tweet */
#tweet {
	text-align: center;
	margin: 20px 0 0;
	font-size: 20px;
	color: #fff;
}

#tweet ul {
	float: left;
	width: 100%;
	text-align: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

#tweet ul li {
	display: inline-block;
	list-style: none;
	margin: 0 0 20px;
	padding: 0 0 0 34px;
	font-size: 20px;
	line-height: 1.5em;
}

#tweet ul li:before {
	font-family: 'FontAwesome';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	content: "\f099";
	margin-right: 20px;
}

/* === Contact section === */


/* Contact Form */

.validation {
	display: none;
	margin: -10px 0 20px;
	color: #fff;
	font-weight: 700;
	font-size: 13px;
}

#sendmessage {
	border: 1px solid #fff;
	display: none;
	text-align: center;
	padding: 15px 12px 15px;
	margin: 10px 0;
	font-weight: 600;
	margin-bottom: 30px;
}

#sendmessage.show,
.show {
	display: block;
}

#contact-form {
	position: relative;
	z-index: 999;
}

#contact-form input[type=text],
.contactForm textarea {
	background: rgba(227, 231, 228, 1);
	font-family: 'Open Sans', sans serif;
	border: 0;
	font-size: 16px;
	text-align: left;
	vertical-align: middle;
}

#contact-form input[type=text]:focus,
.contactForm textarea:focus {
	background: rgba(101, 106, 100, 1);
	color: #eff1ef;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	transition: background 0.25 ease-in;
	-moz-transition: background 0.25 ease-in;
	-webkit-transition: background 0.25 ease-in;
}

#contact-form input[type=text] {
	height: 60px;
	margin-bottom: 30px;
}

#contact-form input[type=submit] {
	color: #fff;
	width: 185px;
	height: 60px;
	text-shadow: none;
	font-size: 16px;
	padding: 0.5em;
	letter-spacing: 0.05em;
	margin: 0 0 20px 0;
	display: block;
	border: 0;
	text-transform: none;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}

#contact-form input[type=submit]:hover,
#contact-form input[type=submit]:active {
	background: #43413e !important;
}

#contact-form textarea {
	padding-top: 1em;
}

div.cform-response-output {
	max-width: 60%;
	text-align: center;
	margin-left: 40% !important;
	margin-top: 0.5em !important;
	padding: 0.5em !important;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

.cform-not-valid-tip {
	color: #888;
	border: 1px dotted #ad3729 !important;
	width: 100% !important;
	left: 0 !important;
	padding: 0.5em !important;
	font-family: 'Open Sans', sans-serif;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}


/* =========================================================
07. Icons
============================================================ */

/* bg */
i.icon-bglight {
	color: #444;
	background: #f7f7f7;
}

i.icon-bglight.active {
	color: #fff;
}

i.icon-bglight.active:hover {
	color: #444;
	background: #f7f7f7;
}

i.icon-bgdark {
	color: #f7f7f7;
	background: transparent;
}

i.icon-bgdark:hover {
	color: #fff;
}

i.icon-bgdark.active:hover {
	color: #f7f7f7;
	background: #333;
}

/* square */
i.icon-square {
	display: inline-block;
	text-align: center;
	width: 24px !important;
	height: 24px !important;
	line-height: 24px !important;
}

i.icon-square.icon-2x {
	width: 48px !important;
	height: 48px !important;
	line-height: 48px !important;
}

i.icon-square.icon-3x {
	width: 72px !important;
	height: 72px !important;
	line-height: 72px !important;
}

i.icon-square.icon-4x {
	width: 96px !important;
	height: 96px !important;
	line-height: 96px !important;
}

i.icon-square.icon-5x {
	width: 120px !important;
	height: 120px !important;
	line-height: 120px !important;
}

/* rounded */
i.icon-rounded {
	display: inline-block;
	border-radius: 6px !important;
	-moz-border-radius: 6px !important;
	-webkit-border-radius: 6px !important;
	-o-border-radius: 6px !important;
	-ms-border-radius: 6px !important;
	text-align: center;
	width: 24px !important;
	height: 24px !important;
	line-height: 24px !important;
}

.icon-rounded.icon-2x {
	width: 48px !important;
	height: 48px !important;
	line-height: 48px !important;
}

.icon-rounded.icon-3x {
	width: 72px !important;
	height: 72px !important;
	line-height: 72px !important;
	border-radius: 8px !important;
	-moz-border-radius: 8px !important;
	-webkit-border-radius: 8px !important;
	-o-border-radius: 8px !important;
	-ms-border-radius: 8px !important;
}

.icon-rounded.icon-4x {
	width: 96px !important;
	height: 96px !important;
	line-height: 96px !important;
	border-radius: 10px !important;
	-moz-border-radius: 10px !important;
	-webkit-border-radius: 10px !important;
	-o-border-radius: 10px !important;
	-ms-border-radius: 10px !important;
}

.icon-rounded.icon-5x {
	width: 120px !important;
	height: 120px !important;
	line-height: 120px !important;
	border-radius: 12px !important;
	-moz-border-radius: 12px !important;
	-webkit-border-radius: 12px !important;
	-o-border-radius: 12px !important;
	-ms-border-radius: 12px !important;
}


/* circled */
i.icon-circled {
	display: inline-block;
	border-radius: 1000px !important;
	-moz-border-radius: 1000px !important;
	-webkit-border-radius: 1000px !important;
	-o-border-radius: 1000px !important;
	-ms-border-radius: 1000px !important;
	text-align: center;
	width: 24px !important;
	height: 24px !important;
	line-height: 24px !important;
}

.icon-circled.icon-2x {
	width: 48px !important;
	height: 48px !important;
	line-height: 48px !important;
}

.icon-circled.icon-3x {
	width: 72px !important;
	height: 72px !important;
	line-height: 72px !important;
}

.icon-circled.icon-4x {
	width: 96px !important;
	height: 96px !important;
	line-height: 96px !important;
}

.icon-circled.icon-5x {
	width: 120px !important;
	height: 120px !important;
	line-height: 120px !important;
}

i.icon-white {
	color: #fff;
}


/* more icon sizes for font-awesome icons */

.icon-6x {
	font-size: 6em;
}

.icon-6x.icon-border {
	border-width: 6px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}

.icon-7x {
	font-size: 7em;
}

.icon-6x.icon-border {
	border-width: 6px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}

.icon-8x {
	font-size: 8em;
}

.icon-6x.icon-border {
	border-width: 6px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}

.icon-9x {
	font-size: 9em;
}

.icon-6x.icon-border {
	border-width: 6px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}

.icon-10x {
	font-size: 10em;
}

.icon-6x.icon-border {
	border-width: 6px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}



/* =========================================================
08. Buttons
============================================================ */

.btn {
	color: #fff;
	text-shadow: none;
	font-size: 16px;
	padding: 11px 19px;
	letter-spacing: 0.05em;
	border: 0;
	text-transform: none;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	background-color: #545454;
	border-color: none;
	*background-color: #545454;
	background-image: none;
	/* Darken IE7 buttons by default so they stand out more given they won't have borders */
	filter: none;
	border: none;
	*border: 0;
	border-bottom-color: none;
}

.btn:link,
.btn:visited {
	color: #fff;
}

.btn:hover {
	background: #b6e9fe !important;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
	color: #fff;
	background-color: #333;
	*background-color: #333;
}


.btn.btn-theme:hover {
	background: #333 !important;
}

/* size */
.btn-large {
	padding: 18px 25px;
	font-size: 24px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.btn-large [class^="icon-"],
.btn-large [class*=" icon-"] {
	margin-top: 4px;
}

.btn-small {
	padding: 6px 13px;
	font-size: 11.9px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.btn-small [class^="icon-"],
.btn-small [class*=" icon-"] {
	margin-top: 0;
}

.btn-mini [class^="icon-"],
.btn-mini [class*=" icon-"] {
	margin-top: -1px;
}

.btn-mini {
	padding: 0 6px;
	font-size: 10.5px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

/* end size */

.btn-primary {
	color: #ffffff;
	text-shadow: none;
	background-color: #86ABBD;
	background-image: none;
	border-color: none;
	filter: none;
	text-align: left;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
	color: #ffffff;
	background: #b6e9fe;
}

.btn-primary:active,
.btn-primary.active {
	background-color: #b6e9fe;
}

.btn-warning {
	color: #ffffff;
	text-shadow: none;
	background-color: #ffe873;
	*background-color: #ffe873;
	background-image: none;
	border-color: none;
	filter: none;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
	color: #ffffff;
	background: #b88f22;
	*background: #b88f22;
}

.btn-warning:active,
.btn-warning.active {
	background: #b88f22 \9;
}


.btn-danger {
	color: #ffffff;
	text-shadow: none;
	background-color: #f36f36;
	*background-color: #f36f36;
	background-image: none;
	border-color: none;
	filter: none;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
	color: #ffffff;
	background: #db5f58;
	*background: #db5f58;
}

.btn-danger:active,
.btn-danger.active {
	background: #db5f58 \9;
}

.btn-success {
	color: #ffffff;
	text-shadow: none;
	background-color: #1bac91;
	*background-color: #1bac91;
	background-image: none;
	border-color: none;
	filter: none;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
	color: #ffffff;
	background: #55ba93;
	*background: #55ba93;
}

.btn-success:active,
.btn-success.active {
	background: #55ba93 \9;
}

.btn-info {
	color: #ffffff;
	text-shadow: none;
	background-color: #4dbdc6;
	*background-color: #4dbdc6;
	background-image: none;
	border-color: none;
	filter: none;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
	color: #ffffff;
	background: #6a9ad0;
	*background: #6a9ad0;
}

.btn-info:active,
.btn-info.active {
	background: #6a9ad0 \9;
}

.btn-inverse {
	color: #ffffff;
	text-shadow: none;
	background-color: #3c3c3c;
	*background-color: #3c3c3c;
	background-image: none;
	border-color: none;
	filter: none;
}

.btn-inverse:hover,
.btn-inverse:focus,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
	color: #ffffff;
	background: #2b2a2a;
	*background: #2b2a2a;
}

.btn-inverse:active,
.btn-inverse.active {
	background: #2b2a2a \9;
}


/* button flat */
.btn-flat {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

/* button rounded */
.btn-rounded {
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}

.btn-large.btn-rounded {
	-webkit-border-radius: 28px;
	-moz-border-radius: 28px;
	border-radius: 28px;
}


.navbar-inverse .btn-navbar {
	width: auto;
	height: auto;
}

/* =========================================================
09. Media queries
============================================================ */


@media (min-width: 768px) and (max-width: 979px) {
	body {
		padding-left: 0;
		padding-right: 0;
		padding: 0;
	}

	.navbar-inner {
		padding-right: 20px;
		padding-left: 20px;
	}

	.navbar-inner h1.brand {
		margin-left: 20px;
	}

	.navbar-inner .btn-navbar {
		margin: 20px 20px 0;
	}

	.container {
		padding-right: 20px;
		padding-left: 20px;
	}

	.navbar-inverse .navbar-inner {
		padding: 0 0 30px;
	}

	.nav-collapse {
		text-align: center;
		width: 100%;
	}

}

@media (max-width: 767px) {
	body {
		padding-left: 0;
		padding-right: 0;
		padding: 0;
	}

	.navbar-inner {
		padding-right: 20px;
		padding-left: 20px;
	}

	.navbar-inner h1.brand {
		margin-left: 20px;
	}

	.navbar-inner .btn-navbar {
		margin: 20px 20px 0;
	}

	.container {
		padding-right: 20px;
		padding-left: 20px;
	}

	.navbar-inverse .navbar-inner {
		padding: 0 20px 30px;
	}

	.nav-collapse {
		text-align: center;
		width: 100%;
	}

	#portfolio-wrap .grid {
		width: 25%;
	}
}

/* Smaller screens ----------- */
@media (max-width : 480px) {
	#header-wrapper {
		padding-top: 80px;
	}

	#team .team-thumb {
		margin-right: auto;
		margin-left: auto;
		width: 150px;
		display: block;
		text-align: center;
	}

	#portfolio-wrap .grid {
		width: 50%;
	}

}

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {

	section.section {
		padding: 1em 0;
	}

	#works .container {
		top: 0 !important;
	}

	.max-img {
		width: 100%;
	}

	.max-img {
		margin-right: auto;
		margin-left: auto;
		display: block;
	}

	section#services h2 {
		margin-bottom: 0.25em;
	}

	section#services h2,
	section#services ul {
		text-align: center;
	}


	/* team */

	#team .team-thumb {
		margin-right: auto;
		margin-left: auto;
		width: 150px;
		display: block;
		text-align: center
	}

	.job-position: {
		margin-bottom: 1.5em;
	}

	.navbar-fixed-top,
	.navbar-fixed-bottom,
	.navbar-static-top {
		margin-left: auto;
		margin-right: auto;
	}

	/* Contact Form */
	#contact-form {
		overflow: hidden;
	}

	#contact-form input[type=submit] {
		width: 100%;
	}
}

body {
	padding-top: 56px;
}

.left-aligned {
	margin-left: auto;
}

.bg-dark {
	background-color: #343a40 !important;
}

.bg-hero {
	background-color: #45b06cff;
}

/* CALLOUT */
.bd-callout {
	padding: 1.25rem;
	margin-top: 1.25rem;
	margin-bottom: 1.25rem;
	border: 1px solid #e9ecef;
	border-left-width: .25rem;
	border-radius: .25rem
}

.bd-callout h4 {
	margin-bottom: .25rem
}

.bd-callout p:last-child {
	margin-bottom: 0
}

.bd-callout code {
	border-radius: .25rem
}

.bd-callout+.bd-callout {
	margin-top: -.25rem
}

.bd-callout-info {
	border-left-color: #5bc0de
}

.bd-callout-warning {
	border-left-color: #f0ad4e
}

.bd-callout-danger {
	border-left-color: #d9534f
}

#loading-page {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
    flex-direction: column;
    align-items: center;
}

.loader {
	text-align: center;
}

.loader .ball-pulse>div {
	font-size: 120%
	color: #86ABBD
	animation: ball-pulse 1s ease-in-out infinite;
}

@keyframes ball-pulse {

	0%,
	80%,
	100% {
		transform: scale(0);
	}

	40% {
		transform: scale(1);
	}
}

/* sidebar */
#sidebar {
	position: sticky;
	top: 7rem;
	left: 2rem;
	width: 11vw;
	padding: 10px 3%;
	z-index: 10;
	background-color: #86ABBD;
	border-radius: 10px;
	float: left;
}

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

#sidebar li {
	border-bottom: 2px solid white;
	margin-top: 10px;
	padding-bottom: 3px;
	text-align: center;
	cursor: pointer;
}

/* 未激活链接的样式 */
#sidebar a {
	color: white;
	text-decoration: none;
	font-size: 100%;
	display: block;
	padding: 5px;
	transition: color 0.3s, transform 0.3s;
}

/* 激活链接的样式 */
#sidebar a.active {
	color: #86ABBD;
	transform: scale(1.05);
	background-color: #b6e9fe;
	/* 你可以改成其他颜色，以给活动链接提供一些背景 */
	border-radius: 10px;
}

/* 链接悬停时的样式 */
#sidebar a:hover {
	color: #ffe3fc;
	transform: scale(1.05);
}

#sidebar .sub-list {
    padding-left: 20px;  /* 缩进二级标题 */
}

#sidebar li:not(.active) .sub-list {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s, max-height 0.3s;  /* 过渡效果 */
}

#sidebar .sub-list li {
	text-align: left;
    font-size: 0.9em;
	border-bottom: none;
	line-height: 1.3;
}

#sidebar li:hover .sub-list,
#sidebar li a.active + .sub-list {
    opacity: 1;
    max-height: 500px;  /* 一个足够大的值，以确保子标题完全可见 */
    transition: opacity 0.3s, max-height 0.3s;
}

#sidebar .sub-list a.active {
    background-color: #b6e9fe;  /* 举例的背景色 */
    color: #86ABBD;             /* 举例的文字颜色 */
    border-radius: 10px;        /* 圆角效果 */
    padding: 5px;              /* 确保有足够的空间以显示背景色 */
}

/* sidebar end */

.content-area {
    margin-left: auto;
    max-width: 80%; /* 防止内容过宽 */
    width: 100%;
}

.reference-offset::before {
	display: block;
	content: " ";
	height: 80px;
	/* 根据需要调整，例如页面顶部导航的高度 */
	margin-top: -80px;
	/* 与height的值相反 */
	visibility: hidden;
}

.top-layer {
	position: relative;
	/* 或者使用其他定位方式，如absolute，取决于您的布局需要 */
	z-index: 1000;
	/* 设置一个相对较高的值以确保其位于其他内容之上 */
	display: flex;
	/* 使用flex布局 */
	justify-content: center;
	/* 水平居中 */
	align-items: center;
	/* 垂直居中 */
}


section.spacer.bg_description {
	background: url("https://static.igem.wiki/teams/4766/wiki/wiki/img/title-bg/bg-notfinal.jpg") 50% 0 no-repeat fixed;
	width: 100%;
	height: 70vh;
	margin: 0;
	position: relative;
	/* 这是为了确保z-index属性生效 */
	z-index: 1000;
	/* 确保该元素位于其他内容之上 */
}

section.spacer.bg_dry-lab {
	background: url("https://static.igem.wiki/teams/4766/wiki/wiki/img/title-bg/bg-dry-lab.jpg") 50% 0 no-repeat fixed;
	background-size: cover;
	width: 100%;
	height: 70vh;
	margin: 0;
	position: relative;
	/* 这是为了确保z-index属性生效 */
	z-index: 1000;
	/* 确保该元素位于其他内容之上 */
}

section.spacer.bg_entre {
	background: url("https://static.igem.wiki/teams/4766/wiki/wiki/img/pages/entrepreneurship/entre2-3.png") 50% 0 no-repeat fixed;
	background-size: cover;
	width: 100%;
	height: 70vh;
	margin: 0;
	position: relative;
	/* 这是为了确保z-index属性生效 */
	z-index: 1000;
	/* 确保该元素位于其他内容之上 */
}

section.spacer.bg_wet-lab {
	background: url("https://static.igem.wiki/teams/4766/wiki/wiki/img/title-bg/bg-wet-lab.jpg") 50% 0 no-repeat fixed;
	background-size: cover;
	width: 100%;
	height: 70vh;
	margin: 0;
	position: relative;
	/* 这是为了确保z-index属性生效 */
	z-index: 1000;
	/* 确保该元素位于其他内容之上 */
}

section.spacer.bg_education {
	background: url("https://static.igem.wiki/teams/4766/wiki/wiki/img/title-bg/education.jpg") 50% 0 no-repeat fixed;
	background-size: cover;
	width: 100%;
	height: 70vh;
	margin: 0;
	position: relative;
	/* 这是为了确保z-index属性生效 */
	z-index: 1000;
	/* 确保该元素位于其他内容之上 */
}

section.spacer.bg_collaboration {
	background: url("https://static.igem.wiki/teams/4766/wiki/wiki/img/title-bg/collaboration.jpg") 50% 0 no-repeat fixed;
	background-size: cover;
	width: 100%;
	height: 70vh;
	margin: 0;
	position: relative;
	/* 这是为了确保z-index属性生效 */
	z-index: 1000;
	/* 确保该元素位于其他内容之上 */
}

section.spacer.bg_hp {
	background: url("https://static.igem.wiki/teams/4766/wiki/wiki/img/title-bg/hp.jpg") 50% 0 no-repeat fixed;
	background-size: cover;
	width: 100%;
	height: 70vh;
	margin: 0;
	position: relative;
	/* 这是为了确保z-index属性生效 */
	z-index: 1000;
	/* 确保该元素位于其他内容之上 */
}

section.spacer.bg_hardware {
	background: url("https://static.igem.wiki/teams/4766/wiki/wiki/img/title-bg/hardware.png") 50% 0 no-repeat fixed;
	background-size: cover;
	width: 100%;
	height: 70vh;
	margin: 0;
	position: relative;
	/* 这是为了确保z-index属性生效 */
	z-index: 1000;
	/* 确保该元素位于其他内容之上 */
}

section.spacer.bg_safety {
	background: url("https://static.igem.wiki/teams/4766/wiki/wiki/img/title-bg/safety.jpg") 50% 0 no-repeat fixed;
	background-size: cover;
	width: 100%;
	height: 70vh;
	margin: 0;
	position: relative;
	/* 这是为了确保z-index属性生效 */
	z-index: 1000;
	/* 确保该元素位于其他内容之上 */
}

blockquote.title {
	font-size: 72px;
	font-weight: 700;
	line-height: 1.1em;
}

blockquote.title:before {
	position: relative;
	top: -20px;
	/* 向上偏移10px，可以根据需要调整 */
	font-size: 80px;
	font-family: FontAwesome;
	content: "\f10d";
	margin-right: 20px;
	color: #eee;
	opacity: 0.6;
}

blockquote.title {
	opacity: 1;
	/* 一开始完全可见 */
	transition: opacity 0.3s;
	/* 添加渐变效果 */
}

h4#project-description {
	opacity: 0;
	/* 一开始完全不可见 */
	transition: opacity 0.3s;
	/* 添加渐变效果 */
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-10px);
	}

	60% {
		transform: translateY(-5px);
	}
}

.scroll-arrow {
	font-size: 3em;
	/* 调整大小到你觉得满意为止 */
	animation: bounce 2s infinite;
	display: inline-block;
}

.scroll-text {
	display: block;
	margin-top: 10px;
}

/* 测试粒子元素 */
#particles-js {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
}

/* 测试球体照片墙 */

.photo-sphere-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	overflow: hidden;
	background-color: #eee;
}

.photo-sphere-canvas {
	border: 1px solid #333;
}

/* 创建一个包裹层 team的球形照片墙 化学2102林凯 */
.threejs-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90%;
	height: 100vh;
	margin: 0 auto;
	overflow: hidden;
}

.threejs-canvas {
	width: 100% !important;
	height: 100% !important;
	display: block;
}

/* 这个是homepage左右留边调色的 */
.bg4 {
	background-color: #86ABBD
}

/* 这个是导航栏的图片尺寸调控 */
.brand img {
	margin-top: -30px;
	height: 80px;
	/* 或您需要的任何高度 */
	width: auto;
	/* 保持原始宽高比 */
}

/* homepage布局 */
.section.darkblue h1,
.section.darkpink h1 {
	color: white;
	/* 设置h1标题的默认颜色为白色 */
	font-size: 32px;
}

/* title滑入动画 */
.animated-title {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* 将 .highlight 的定义放在其他规则的后面，以确保它的特定性更高 */
.highlight {
	color: #FFF64F;
	white-space: nowrap;
	transition: transform 1s;
	transform: translateX(-75%);
	font-size: 45px;
}

.animated-title>span:not(.highlight) {
	white-space: nowrap;
	transform: translateX(50%);
	transition: transform 1s, opacity 1s;
	opacity: 0;
}

.animated-title.active .highlight {
	transform: translateX(5%);
}


.animated-title.active>span:not(.highlight) {
	transform: translateX(0%);
	opacity: 1;
}


/* 气泡部分如下，化学2102林凯 */
.bubble {
	position: relative;
	display: inline-block;
}

.bubble-bg,
.bubble-content {
	display: block;
	width: 100%;
}

.bubble-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70%;
	/* 调整此值以改变内容的大小 */
	height: auto;
	z-index: 20;
}

.center-bubble {
	width: 400px;
}

.side-bubble {
	width: 300px;
}

.bubble-wrapper {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #86ABBD;
	font-size: 30px;
}

.bubbles-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.biomarker-labels {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 0 10%;
	/* 这将给标签一些空间，以便它们不会靠近气泡的边缘。 */
	z-index: 20;
}

.top-labels {
	margin-bottom: 10px;
	/* 根据需要调整间距 */
}

.bottom-labels {
	margin-top: 10px;
	/* 根据需要调整间距 */
}

/* 调整位置 */
.biomarker-labels.top-labels {
	position: absolute;
	top: 0;
	left: 5%;
	width: 90%;
	display: flex;
	justify-content: space-between;
	height: 100%;
}

.biomarker-labels.bottom-labels {
	position: absolute;
	bottom: 0;
	left: 5%;
	width: 90%;
	display: flex;
	justify-content: space-between;
	height: 200%;
}

/* biomakers蹦出动画 */
/* 标签样式调整 */
/* 使用绝对位置调整 */
/* 初始位置 */
.bubble-wrapper .biomarker-labels span {
	opacity: 0;
	/* 最初透明 */
	transition: all 0.5s ease-out;
	/* 平滑的过渡效果 */
}

.bubble-wrapper .tnf-alpha {
	position: absolute;
	top: 20%;
	/* 初始位置调整 */
	left: 5%;
}

.bubble-wrapper .mr-proanp {
	position: absolute;
	top: 10%;
	/* 初始位置调整 */
	left: 25%;
}

.bubble-wrapper .hs-tnt {
	position: absolute;
	top: 10%;
	/* 初始位置调整 */
	left: 48%;
}

.bubble-wrapper .il-4 {
	position: absolute;
	top: 20%;
	/* 初始位置调整 */
	left: 73%;
}

.bubble-wrapper .il-1beta {
	position: absolute;
	bottom: 20%;
	/* 初始位置调整 */
	left: 5%;
}

.bubble-wrapper .tgf-beta {
	position: absolute;
	bottom: 25%;
	/* 初始位置调整 */
	left: 20%;
}

.bubble-wrapper .nt-probnp {
	position: absolute;
	bottom: 30%;
	/* 初始位置调整 */
	left: 35%;
}

.bubble-wrapper .il-6 {
	position: absolute;
	bottom: 25%;
	/* 初始位置调整 */
	left: 57%;
}

.bubble-wrapper .il-10 {
	position: absolute;
	bottom: 20%;
	/* 初始位置调整 */
	left: 72%;
}

/* 动画位置（当.animate-labels类添加时） */
.bubble-wrapper.animate-labels .biomarker-labels span {
	opacity: 1;
}

.bubble-wrapper.animate-labels .tnf-alpha {
	top: 0%;
}

.bubble-wrapper.animate-labels .mr-proanp {
	top: -10%;
}

.bubble-wrapper.animate-labels .hs-tnt {
	top: -10%;
}

.bubble-wrapper.animate-labels .il-4 {
	top: 0%;
}

.bubble-wrapper.animate-labels .il-1beta {
	bottom: 0%;
}

.bubble-wrapper.animate-labels .tgf-beta {
	bottom: -5%;
}

.bubble-wrapper.animate-labels .nt-probnp {
	bottom: -10%;
}

.bubble-wrapper.animate-labels .il-6 {
	bottom: -5%;
}

.bubble-wrapper.animate-labels .il-10 {
	bottom: 0%;
}

/* biomakers蹦出动画end */

/* 气泡漂浮动画效果 */
@keyframes floatAnimation {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}

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

.bubble,
.biomarker-labels span {
	animation: floatAnimation 3s infinite ease-in-out;
}

.bubble:nth-child(1),
.biomarker-labels span:nth-child(1) {
	animation-delay: 0.2s;
}

.bubble:nth-child(2),
.biomarker-labels span:nth-child(2) {
	animation-delay: 0.4s;
}

.bubble:nth-child(3),
.biomarker-labels span:nth-child(3) {
	animation-delay: 0.6s;
}

.corner-element {
	position: absolute;
	width: 300px;
	/* 原先的60px乘以5 */
	height: 300px;
	/* 原先的60px乘以5 */
	z-index: 1;
	/* 确保元素位于其他内容的上方 */
}

.top-left {
	top: -5%;
	/* 根据实际位置调整 */
	left: -5%;
	/* 根据实际位置调整 */
}

.bottom-right {
	bottom: -5%;
	right: 0;
}

/* 粉色部分的相关css */
.bubble2-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	/* 调整气泡之间的间距 */
}

.bubble2-container {
	position: relative;
	display: flex;
	align-items: center;
}

.bubble2 {
	max-width: 80%;
	/* 使气泡的大小适应容器 */
}

.bubble2-text {
	position: absolute;
	color: #86ABBD;
	/* 文字颜色 */
	font-size: 30px;
	/* 调整字体大小 */
	text-align: left;
	/* 文字左对齐 */
	width: 80%;
	/* 控制文字宽度 */
	line-height: 1.5;
	/* 增加行间距 */
}

.left-text {
	right: 120%;
	/* 调整到气泡左侧 */
}

.right-text {
	left: 140%;
	/* 调整到气泡右侧 */
}

.right-bubble2 {
	right: -23%;
}

.left-bubble2 {
	left: -23%;
	flex-direction: row-reverse;
	/* 使气泡和文字互换位置 */
}

.bubble2-inner-text {
	position: absolute;
	top: 50%;
	left: 40%;
	transform: translate(-50%, -50%);
	/* 使内容完全居中 */
	color: #000;
	/* 根据您的设计更改颜色 */
	font-size: 30px;
	/* 根据需要调整 */
	text-align: center;
	width: 70%;
	/* 根据气泡的实际大小调整 */
	word-wrap: break-word;
	/* 如果需要，可以自动换行 */
	line-height: 1.5;
	/* 增加行间距 */
	color: #86ABBD;
	/* 文字颜色 */
}

.bubble2-inner-text.left-only {
	left: 60%;
}

.number-text {
	font-size: 50px;
	/* 根据需要调整 */
	display: block;
	/* 如果你想让数字独占一行 */
}

/* 设置navbar的一个全局变化 */
:root {
    --navbar-bg-color: #86ABBD;
    /* 这里可以添加更多的变量 */
}

/* dropdownmenu的hover触发 */
.dropdown-menu {
    display: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
}

/* AED的圆角矩形 */
.rounded-rectangle {
	margin-left: auto;
    margin-right: auto;
	top: 100px;
	width: 60em; /* 你可以根据需要调整宽度 */
	height: 30em; /* 你可以根据需要调整高度 */
	background-color: #fffcb9;
	border: 2px solid #C3C4FC; /* 添加2px颜色为#C3C4FC的边框 */
	border-radius: 50px; /* 圆角大小 */
}

.image-268{
	position: absolute;
	top: -20%;
	/* 初始位置调整 */
	left: 0%;
	width: 45%;
}

.image-249{
	position: absolute;
	top: 70%;
	/* 初始位置调整 */
	left: 85%;
	width: 20%;
}

.text-content {
    position: absolute;
    top: 40%;
    left: 65%;
    transform: translate(-50%, -50%);
	line-height: 1.5;
	width: 30em;
}

.minutes-text {
    font-size: 5em;
    font-weight: bold;
	color:#86ABBD ;
}

.description-text {
    font-size: 2em;
	color: #d6b3d3;
}

/* 4min心跳动画 */
@keyframes customPulse {
    0% { transform: scale(1); }	
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse-effect {
    display: inline-block;  /* 使 transform 属性生效 */
    animation: customPulse 1.5s infinite;  /* 使用自定义动画 */
}

.introduction{
	padding-top: 15%;
}

#typeEffect {
    border-right: .15em solid;
    white-space: nowrap;
    overflow: hidden;
    width: 0;  /* Initial width, set to 0 */
}

.typingEffect {
    animation: typing 5s steps(60, end), blink .5s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

/* homepage logo hover颜色 */
.navbar .brand .brand-link {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    text-indent: -9999px;
    color: transparent;  
}

.content-layout-wrapper {
    display: flex;
    align-items: center; 
    justify-content: space-between; 
    padding: 70px;
}

.content-left-section, .content-center-section, .content-right-section {
    flex: 1; 
}

.content-center-section p {
    text-align: center;
}

.content-left-section img, .content-right-section img {
    max-width: 70%; /* 根据需要调整 */
    display: block;
    margin: 0 auto;  /* 居中显示 */
}

.features-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 20px 0;
}

.features-left, .features-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-box {
    width: 300px;  /* 设定了固定宽度 */
    height: 100px;  /* 设定了固定高度 */
    padding: 20px;
    border-radius: 10px;
    background-color: #fffcb9;  /* 这是示例颜色，请根据需要进行更改 */
    display: flex;
    flex-direction: column;
    justify-content: space-between;  /* 使内容垂直分布 */
}

.feature-box h4 {
    font-size: 24px;
	color: #86ABBD;
}

.feature-box p {
    margin: 0;  /* 移除段落的外边距 */
	font-size: 18px;
	color: #d6b3d3;
}

.features-wrapper2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.feature-box2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;  /* 增加容器宽度 */
    padding: 10px;
}

.feature-box2 img {
    max-width: 160px;  /* 增加图片的最大宽度 */
    margin-bottom: 15px;  /* 为图片和描述之间增加一些空间 */
}

.feature-box2 p {
    text-align: center;
    font-size: 24px;
	color: #d6b3d3;
}

.image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	padding: 20px;
	width: 70%;
	margin: auto;
}

.image-container img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.image-container p {
    text-align: center;
}

.medium-title{
	font-size: 200%;
}

.main-text{
	font-size: 130%;
	padding-top: 20px;
	padding-bottom: 40px;
}

.main-bg{
	position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0px;
	max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
}

.main-bg1,.main-bg2,.main-bg3,.main-bg4,.main-bg5{
	position: fixed;
	width: 25vw;
    display: flex;
    align-items: center;
    justify-content: center;
	max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
}

.main-bg6,.main-bg7,.main-bg8{
	position: fixed;
	width: 15vw;
    display: flex;
    align-items: center;
    justify-content: center;
	max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
}

.main-bg1{
    left: 30.5vw;
    top: 43.3vh;
	transform: translateX(-50%) rotate(135deg); 
}

.main-bg2{
    left: 29.5vw;
	top: 14.7vh;
    transform: translateX(-50%) rotate(176deg);  
}

.main-bg3{
    left: 69.6vw;
	top: 11.69vh;
    transform: translateX(-50%) rotate(322deg);  
}

.main-bg4{
	left: 59.96vw;
	top: -9.13vh;
    transform: translateX(-50%) rotate(283deg);  
}

.main-bg5{
	left: 120vw;
	top: 120vh;
    transform: translateX(-50%) rotate(56deg);  
}

.main-bg6{
	left: 120vw;
	top: 120vh;
    transform: translateX(-50%) rotate(338deg);  
}

.main-bg7{
	left: 120vw;
	top: 120vh;
    transform: translateX(-50%) rotate(109deg);  
}

.main-bg8{
	left: 120vw;
	top: 120vh;
    transform: translateX(-50%) rotate(208deg);  
}

#header-wrapper.header-slider img {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1; /* 使图片在内容下方 */
}

.blur-bg{
	filter: blur(10px);
}

footer {
    background-color: #86ABBD;
    padding: 30px 0;
    color: #fff;
	text-align: center;
}

footer h4 {
    font-weight: bold;
    margin-bottom: 15px;
	color: #fff;
}

footer a{
	color: #fff;
}

address {
    font-size: 14px;
    line-height: 1.8;
}

address a {
    text-decoration: none;
}

address a:hover {
    text-decoration: underline;
	color: #ffe3fc;
}

.copyright {
    font-size: 60%;
}

.sponsor-logos {
    margin-top: 20px;
}

.sponsor-logos img {
    width: 20%;
    height: auto;
    margin-right: 15px;
    transition: opacity 0.3s;
}

.sponsor-logos.college{
	margin-top: 0%;
}

.college img{
	width: 60%;
}

.sponsor-logos img:hover {
    opacity: 0.7;
}

.footer-row {
    margin: auto;
    height: 20vh;
    padding: 20px;
    display: flex;  /* 使用flex布局 */
    justify-content: space-between;  /* 均匀分布三个板块 */
}

.span4 {
    flex: 1;  /* 使每个板块都有相同的宽度 */
    padding-right: 20px;  /* 如果需要的话，为竖线添加点空间 */
    border-right: 1px solid white;  /* 添加白色竖线 */
    box-sizing: border-box;  /* 避免宽度超出 */
}

.span4:last-child {
    border-right: none;  /* 确保最后一个板块没有竖线 */
}

.footer-content{
	height: 25vh;
    margin: auto;
    max-width: 80%;
	z-index: 20;
}

.bold-text{
	font-weight: bold;
	font-size: 130%;
}

.table-responsive{
	max-width: 80%;
}

.table-centered {
    text-align: center;
}

.table td, .table th {
    text-align: center;           /* 水平居中 */
    vertical-align: middle;       /* 垂直居中 */
}

@keyframes glowingEffect {
    0% {
        box-shadow: 0 0 5px #fffcb9;
    }
    50% {
        box-shadow: 0 0 20px #ffe3fc, 0 0 30px #ffe3fc;
    }
    100% {
        box-shadow: 0 0 5px #fffcb9;
    }
}

.elementWithGlow {
    font-size: 48px;
    padding: 20px;
    background-color: #fffcb9;
    border-radius: 10px;
    animation: glowingEffect 1.5s infinite;
    text-align: center;
    margin: 50px auto;  /* centering the div on the page */
    max-width: 30vw;  /* setting a maximum width */
	line-height: 1.5;
	z-index: 2;
}

.btn-outer-container{
	padding-top: 5%;
}

.btn-inner-container{
	padding-top: 1%;
}

.track {
    width: 0; /* 更粗的线条 */
    background-color: transparent;
    height: 350vh; /* 您可以设置为您需要的高度 */
    margin: 0 auto;
    position: relative;
}

.filling-line {
    width: 30px;
	left: -15px;
    background-color: #fffcb9;
    height: 0;  /* 初始高度为0 */
    position: absolute;
    top: 0; /* 从顶部开始填充 */
    animation: glowingEffect 1.5s infinite;
    visibility: hidden;  /* 初始设置为隐藏 */
	max-height: 100%;
	top:-10vh
}

.outside-bg {
    position: relative;
    height: 100%; 
	width: 78vw;
	left: -35vw;
	overflow: hidden;
}

.source36{
	position: absolute;
    top: 5%;
    left: 40%;
    width: 50vw;
}

.source40{
	position: absolute;
    top: 20%;
    left: 10%;
    width: 20vw;
}

.source38{
	position: absolute;
    top: 30%;
    left: 60%;
    width: 20vw;
}

.source9{
	position: absolute;
    top: 37%;
    left: 0%;
    width: 28vw;
}

.source39{
	position: absolute;
    top: 50%;
    left: 10%;
    width: 20vw;
}

.source44{
	position: absolute;
    top: 56%;
    left: 40%;
    width: 60vw;
}

.ppl-btn {
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
    padding: 0;
    margin: 0;
    display: inline-block;
	opacity: 0;  /* 默认透明 */
    transition: opacity 0.5s;  /* 平滑过渡效果 */
}

.ppl-btn:hover {
    transform: scale(1.1);
}

.ppl1-btn{
	position: absolute;
    top: 2%;
    left: 11%;
    width: 26vw;
}

.ppl2-btn{
	position: absolute;
    top: 9%;
    left: 11%;
    width: 26vw;
}

.ppl3-btn{
	position: absolute;
    top: 16%;
    left: 11%;
    width: 26vw;
}

.ppl4-btn{
	position: absolute;
    top: 32%;
    left: 11%;
    width: 26vw;
}

.ppl5-btn{
	position: absolute;
    top: 40%;
    left: 46%;
    width: 26vw;
}

.ppl6-btn{
	position: absolute;
    top: 47%;
    left: 46%;
    width: 26vw;
}

.ppl7-btn{
	position: absolute;
    top: 65%;
    left: 11%;
    width: 26vw;
}

.ppl8-btn{
	position: absolute;
    top: 73%;
    left: 11%;
    width: 26vw;
}

.ppl9-btn{
	position: absolute;
    top: 80%;
    left: 11%;
    width: 26vw;
}

.ppl10-btn{
	position: absolute;
    top: 89%;
    left: 11%;
    width: 26vw;
}

.text1-btn{
	position: absolute;
    top: 0;
    left: 46%;
    width: 25vw;
}

.text2-btn{
	position: absolute;
    top: 22%;
    left: 46%;
    width: 10vw;
}

.text3-btn{
	position: absolute;
    top: 24%;
    left: 46%;
    width: 21vw;
}

.text4-btn{
	position: absolute;
    top: 26%;
    left: 46%;
    width: 10vw;
}

.text5-btn{
	position: absolute;
    top: 51%;
    left: 13.1%;
    width: 24vw;
}

.text6-btn{
	position: absolute;
    top: 55%;
    left: 46%;
    width: 26vw;
}

.text7-btn{
	position: absolute;
    top: 59%;
    left: 46%;
    width: 10vw;
}

.text8-btn{
	position: absolute;
    top: 59%;
    left: 15%;
    width: 23vw;
}

.text9-btn{
	position: absolute;
    top: 93%;
    left: 46%;
    width: 22vw;
}

.video-background {
    position: fixed;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    top: 0;
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15); /* This adds a slight white tint, you can adjust as needed */
    backdrop-filter: blur(10px); /* This applies the blur */
    pointer-events: none; /* This ensures the overlay doesn't interfere with interactions */
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
	z-index: 9999;
}

.modal-content {
    position: relative;
    margin: 10% auto;
    padding: 20px;
    width: 60%;
    background-color: #86ABBD;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	color: #fff;
	max-height: 65vh; /* 限制最大高度为视口高度的80% */
    overflow-y: auto; /* 当内容超出高度时，显示垂直滚动条 */
}

.close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
	opacity: 0.7;
}

.close:hover {
    color: #000;
}

.window-text{
	font-size: 130%;
	padding-top: 20px;
}

#fullscreen-image {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1; 
}