body {
	padding-top: 15px;
	padding-bottom: 0px;
}


/* Custom container */

.container {
	margin: 0 auto;
	max-width: 1000px;
}

.container>hr {
	margin: 20px 0
}


/* Customize the navbar links to be fill the entire space of the .navbar */

.navbar .navbar-inner {
	padding: 0
}

.navbar .nav {
	margin: 0;
	display: table;
	width: 100%;
}

.navbar .nav li {
	display: table-cell;
	width: 1%;
	float: none;
}

.navbar .nav li a {
	font-weight: bold;
	text-align: center;
	border-left: 1px solid rgba(255, 255, 255, .75);
	border-right: 1px solid rgba(0, 0, 0, .1);
}

.navbar .nav li:first-child a {
	border-left: 0;
	border-radius: 3px 0 0 3px;
}

.navbar .nav li:last-child a {
	border-right: 0;
	border-radius: 0 3px 3px 0;
}

body>.navbar {
	font-size: 13px
}


/* Change the docs' brand */

body>.navbar .brand {
	padding-right: 0;
	padding-left: 0;
	margin-left: 20px;
	float: right;
	font-weight: bold;
	color: #000;
	text-shadow: 0 1px 0 rgba(255, 255, 255, .1), 0 0 30px rgba(255, 255, 255, .125);
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	transition: all .2s linear;
}

body>.navbar .brand:hover {
	text-decoration: none;
	text-shadow: 0 1px 0 rgba(255, 255, 255, .1), 0 0 30px rgba(255, 255, 255, .4);
}


/* Sidenav for Docs
         -------------------------------------------------- */

@media screen and (max-width: 768px) {
	.bs-docs-sidenav {
		display: none !important;
	}
}

.bs-docs-sidenav {
    width: 140px;  
    margin: 20px 0 0; 
    padding: 0;
    background-color: #fff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .065);
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, .065);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .065);
}

.bs-docs-sidenav > li > a {
    display: block;
    width: 120px; 
    margin: 0 0 -1px;
    padding: 5px 10px;  
    border: 1px solid #e5e5e5;
    font-size: 10px;  
}

.bs-docs-sidenav > li > a.subhead {
    display: block;
    width: 105px;  
    margin: 0 0 -1px;
    padding: 6px 20px;  
    border: 1px solid #e5e5e5;
    font-size: 9px;  
}

.bs-docs-sidenav>li:first-child>a {
	-webkit-border-radius: 6px 6px 0 0;
	-moz-border-radius: 6px 6px 0 0;
	border-radius: 6px 6px 0 0;
}

.bs-docs-sidenav>li:last-child>a {
	-webkit-border-radius: 0 0 6px 6px;
	-moz-border-radius: 0 0 6px 6px;
	border-radius: 0 0 6px 6px;
}

.bs-docs-sidenav>.active>a {
	position: relative;
	z-index: 2;
	padding: 5px 10px;
	border: 1px solid #e5e5e5;;
	text-shadow: 0 1px 0 rgba(0, 0, 0, .15);
	-webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, .1), inset -1px 0 0 rgba(0, 0, 0, .1);
	-moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, .1), inset -1px 0 0 rgba(0, 0, 0, .1);
	box-shadow: inset 1px 0 0 rgba(0, 0, 0, .1), inset -1px 0 0 rgba(0, 0, 0, .1);
}

.bs-docs-sidenav>li>a:hover {
	background-color: #f5f5f5
}

.bs-docs-sidenav a:hover .icon-chevron-right {
	opacity: .5
}

.bs-docs-sidenav.affix {
	top: 10px
}

.bs-docs-sidenav.affix-bottom {
	position: absolute;
	top: auto;
	bottom: 270px;
}


/* Responsive
         -------------------------------------------------- */

.affix {
	top: 0px
}

#media {
	margin-top: 30px
}

#media .header {
	margin-left: 0;
	margin-bottom: 30px;
	margin-top: 15px;
}

#media .post_row {
	margin-left: 0;
	margin-bottom: 40px;
}

#media .lastpost_row {
	margin-bottom: 0
}

#media .post_row .post {
    background: #fff;
    border-radius: 6px;                /* 稍微增加圆角，更柔和 */
    border: 1px solid #eaeaea;          /* 添加浅色边框，边缘立即清晰 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); /* 更深、更明显的阴影 */
    width: 50%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    height: auto;
    box-sizing: border-box;             /* 重要：让宽度包含 padding 和 border */
    transition: all 0.3s ease;          /* 过渡效果，悬停时平滑变化 */
}

#media .post_row .last {
	margin-right: 0
}

#media .post_row .post .img {
	position: relative;
	text-align: center;
}

#media .post_row .post .img .date {
	background: #E8554E;
	position: absolute;
	padding: 2px 5px;
	top: 0;
	left: 11px;
}

#media .post_row .post .img .date p {
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	font-style: italic;
	margin: 0;
}

#media .post_row .post .img img {
	height: auto;
	width: 60%;
}

#media .post_row .post .text {
	margin: 18px auto 0;
	width: 90%;
}

#media .post_row .post .text h5 {
	margin: 0 0 8px 0;
	font-size: 20px;
	line-height: 23px;
}

#media .post_row .post .text h5 a {
	color: #333
}

#media .post_row .post .text span.date {
	color: #9F9F9F;
	display: block;
	margin-bottom: 12px;
	font-style: italic;
	font-size: 13px;
}

#media .post_row .post .text p {
	margin: 0;
	line-height: 21px;
	font-size: 14px;
}

#media .post_row .post .author_box {
	margin: 12px auto 20px;
	border-top: 1px solid #EDEDED;
	overflow: hidden;
	text-align: left;
	width: 85%;
	padding-top: 12px;
} 

#media .post_row .post .author_box h6 {
	margin: 0 0 3px 0;
	font-size: 13px;
	line-height: 15px;
	font-style: italic;
	font-weight: normal;
	color: #B2B2B2;
}

#media .post_row .post .author_box p {
	color: #B2B2B2;
	font-style: italic;
	font-size: 13px;
	line-height: 14px;
	margin: 0;
}

#media .post_row .post .author_box img {
	float: right
}

#media .post_row .post a.plus_wrapper {
	width: 99%;
	text-align: center;
	background: #fff;
	display: none;
	border-radius: 0px 0px 4px 4px;
	padding: 6px 0px 2px;
	margin: 0 auto 1px;
}

#media .post_row .post a.plus_wrapper span {
	color: #1189D9;
	font-size: 30px;
	font-weight: bold;
}

#media .post_row .post:hover a.plus_wrapper {
	display: block
}

#media .post_row .post:hover {
	box-shadow: 0px 1px 5px 1px rgb(216, 216, 216)
}

#media .post_row .post:hover .text h5 a {
	color: #1189D9
}

.map .box_wrapp {
	position: absolute;
	margin: 15px auto;
	box-shadow: 0 0 7px 0 rgba(26, 26, 26, 0.4);
	padding: 30px 0 30px;
	background: white;
	border-radius: 4px;
	margin-top: 25px;
}

.map .box_wrapp .box_cont {
	margin: 30px auto;
	width: 76%;
}

.section-header {
	text-align: center;
	margin-bottom: 35px;
}

.section-header h1,
.title-text {
	font-weight: bold;
	font-size: 30px;
	margin: 12.5px 0;
	font-weight: 100;
	margin-bottom: 25px;
	line-height: 100px;
}

.feature-item {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* 默认轻微阴影 */
    border-radius: 6px; /* 圆角 */
    border: 1px solid #eaeaea; /* 轻微边框 */
    padding: 15px;
    margin-bottom: 20px;
    background-color: #fff;
    transition: all 0.3s ease; /* 添加过渡动画 */
}

.feature-item:hover {
    transform: translateY(-5px); /* 向上浮动5像素 */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* 更深的阴影 */
    border-color: #ddd; /* 加深边框颜色 */
}

.feature-item img {
	margin-left: 15px;
	margin-right: 15px;
	max-width: 90%;
	height: 155px;
}

/* 为news卡片的date添加统一样式 */
.feature-item .date {
    display: block;
    font-weight: bold;
    font-size: 12px;
    color: #4c4e4d; 
    margin-bottom: 5px;
    text-align: center;
}

.feature-item h5 {
	margin-left: 15px;
	margin-right: 15px;
	margin-top: 5px;
	margin-bottom: 10px;
}

.feature-item p {
	margin-left: 15px;
	margin-right: 15px;
	line-height: 1.2;
	margin-top: 5px;
}

.feature-heading {
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 15px;
	margin-right: 15px;
	height: 80px;
	line-height: 1.3;
}

.feature-heading a:hover {
	text-decoration: none;
}

.feature-button {
	font-size: 16px;
	background-image: none;
	box-shadow: none;
	margin-bottom: 10px;
}

.centered {
	text-align: center;
}

.subhead {
	text-align: left;
	border-bottom: 1px solid #ddd;
}

.jumbotron {
    position: relative;
    padding: 10px 0px 10px 0px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .4), 0 0 30px rgba(0, 0, 0, .075);
    background: #2E8B57;
    background: -moz-linear-gradient(45deg, #2E8B57 0%, #1C5D3A 100%);
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #2E8B57), color-stop(100%, #1C5D3A));
    background: -webkit-linear-gradient(45deg, #2E8B57 0%, #1C5D3A 100%);
    background: -o-linear-gradient(45deg, #2E8B57 0%, #1C5D3A 100%);
    background: -ms-linear-gradient(45deg, #2E8B57 0%, #1C5D3A 100%);
    background: linear-gradient(45deg, #2E8B57 0%, #1C5D3A 100%) repeat;
    -webkit-box-shadow: inset 0 3px 7px rgba(0, 0, 0, .2), inset 0 -3px 7px rgba(0, 0, 0, .2);
    -moz-box-shadow: inset 0 3px 7px rgba(0, 0, 0, .2), inset 0 -3px 7px rgba(0, 0, 0, .2);
    box-shadow: inset 0 3px 7px rgba(0, 0, 0, .2), inset 0 -3px 7px rgba(0, 0, 0, .2);
}

/* 固定 Logo 图片大小，并适配移动设备 */
.jumbotron img {
    width: 100px;          /* 固定宽度
    max-width: 100%;       /* 在窄屏幕上自动缩小，防止溢出 */
    height: auto;          /* 高度自适应，保持原始比例 */
    display: block;        /* 块级化，便于居中 */
    margin: 0 auto;        /* 水平居中（父容器 .jumbotron 已有 text-align: center，但 block 需要 margin auto） */
	margin-bottom: 0;
}

.jumbotron h3 {
    margin-top: 0;
    margin-bottom: 5px;      /* 可根据喜好调整，0 则完全紧贴 */
    line-height: 1.2;
}

.jumbotron:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: .4;
}

.lead {
	margin-bottom: 0px;
	font-size: 21px;
	font-weight: 200;
	line-height: 15px;
}

img.float-left {
	float: left;
	margin-top: 9px;
	margin-left: 0px;
	margin-right: 30px;
	margin-bottom: 12px;
}

img.float-right {
	float: right;
	margin-top: 9px;
	margin-right: 0px;
	margin-bottom: 12px;
	margin-left: 30px;
}

img.publications-thumb {
	width: 82px;
	height: 100px;
}

.caption {
	margin: 10px;
}

.responsive-video {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 60px;
	overflow: hidden;
}

.responsive-video iframe,
.responsive-video object,
.responsive-video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 93.5%;
	height: 93.5%;
}

.video-caption {
	margin: 10px;
}

.accordion {
	margin-bottom: 20px;
	margin-right: 40px;
}

.thumbnail>img.sponsor {
	width: 212px;
	height: 150px;
}

img.carousel-image {
	width: 100%;
}

li.publication {
	margin-bottom: 20px;
}

.page-header h3 a:hover {
	text-decoration: none;
}

iframe.map-frame {
	border: none;
	overflow: hidden;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 0px;
	margin-right: 0px;
	height: 550px;
	width: 100%;
}

ul.sponsors {
	margin-top: 40px;
	margin-bottom: 40px;
}

#footer {
	z-index: 10;
	margin-top: 50px;
	margin-bottom: 0px;
	padding-bottom: 25px;
	border-top-width: 8px;
	border-top-style: solid;
	border-top-color: #2F2F2F;
	background-color: #2E8B57;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	text-align: center;
}

#footer h3 {
	font-size: 19px;
	text-transform: uppercase;
	font-family: BebasNeueRegular;
	color: #ffffff;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffffff;
	line-height: 35px;
	margin-bottom: 20px;
	margin-top: 25px;
	font-weight: normal;
}

#footer a img {
	margin-top: 40px;
}

#footer p,
#footer address {
	color: #ffffff;
	font-size: 11px;
}


/* 轮播图容器统一尺寸 */
.carousel-inner {
    height: 500px; /* 根据实际需求调整高度 */
}

/* 统一所有轮播图图片尺寸 */
.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保持图片比例并填充容器 */
    object-position: center; /* 确保图片居中显示 */
}

/* 确保轮播图项目高度继承 */
.carousel-inner .item {
    height: 100%;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .carousel-inner {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .carousel-inner {
        height: 250px;
    }
}

/* --- Workflow 页面图片并排样式 --- */
.image-row {
    margin-top: 25px;      /* 与上方说明文字保持间距 */
    margin-bottom: 10px;
}

.image-row .span6 {
    text-align: center;    /* 图片在列内居中（可选） */
}

.image-row img {
    display: block;
	width: 100%;           /* 图片宽度填满列 */
    max-width: 100%;       /* 确保图片不超过父容器宽度 */
    height: auto;          /* 高度自适应，保持原始比例 */
    margin: 0 auto;        /* 水平居中 */
    float: none;           /* 覆盖可能的浮动 */
    /* 如果还有其他干扰样式，可以加上 !important，但不推荐滥用 */
    /* 移除旧 workflow-img 的固定高度和最大宽度限制 */
    max-width: 100% ;  /* 强制覆盖原有的 max-width:20% */
    width: auto;
    height: auto;
}

/* 针对小屏幕的微调（可选） */
@media (max-width: 767px) {
    .image-row {
        margin-top: 15px;
    }
}

/* 优化轮播图箭头样式 */
.carousel-control {
    width: 30px; /* 更小宽度 */
    height: 30px; /* 更小高度 */
    top: 50%;
    transform: translateY(-50%);
    background: none; /* 移除黑色背景 */
    border: none; /* 移除边框 */
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.carousel-control:hover {
    opacity: 1;
    background: none; /* 确保悬停时也没有背景 */
}

/* 左箭头图标 */
.carousel-control.left {
    left: 15px; /* 距离左侧的距离 */
    background-image: none; /* 移除默认背景图像 */
}

/* 右箭头图标 */
.carousel-control.right {
    right: 15px; /* 距离右侧的距离 */
    background-image: none; /* 移除默认背景图像 */
}

/* 使用自定义箭头图标 */
.carousel-control.left:before {
    content: '<';
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.carousel-control.right:before {
    content: '>';
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .carousel-control {
        width: 25px;
        height: 25px;
    }
    
    .carousel-control.left:before,
    .carousel-control.right:before {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .carousel-control {
        width: 20px;
        height: 20px;
    }
    
    .carousel-control.left:before,
    .carousel-control.right:before {
        font-size: 16px;
    }
}


/* ===== 汉堡菜单按钮样式 ===== */
.btn-navbar {
  display: none;
  float: right;
  padding: 7px 10px;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 8px;
  background-color: #2E8B57;
  background-image: none;
  border: 1px solid #1C5D3A;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.btn-navbar:hover,
.btn-navbar:active,
.btn-navbar.active,
.btn-navbar.disabled,
.btn-navbar[disabled] {
  background-color: #1C5D3A;
}

.btn-navbar .icon-bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #f5f5f5;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.btn-navbar .icon-bar + .icon-bar {
  margin-top: 3px;
}

/* 控制在不同设备上的显示 */
.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-phone {
  display: block !important;
}

/* 手机设备（最大宽度 767px） */
@media (max-width: 767px) {
  .visible-phone {
    display: block !important;
  }
  .hidden-phone {
    display: none !important;
  }
  
  .btn-navbar {
    display: block;
  }
  
  /* 确保导航栏在小屏幕上垂直排列 */
  .nav-collapse .nav {
    margin: 0;
    padding: 0;
  }
  
  .nav-collapse .nav > li {
    display: block;
    float: none;
    width: 100%;
  }
  
  .nav-collapse .nav > li > a {
    display: block;
    padding: 10px 15px;
    border-left: 0;
    border-right: 0;
    text-align: left;
    border-radius: 0;
  }
  
  .nav-collapse .nav > li:first-child > a {
    border-radius: 0;
  }
  
  .nav-collapse .nav > li:last-child > a {
    border-radius: 0;
  }
}

/* 平板设备（宽度在 768px 到 979px 之间） */
@media (min-width: 768px) and (max-width: 979px) {
  .visible-tablet {
    display: block !important;
  }
  
  .btn-navbar {
    display: block;
  }
  
  /* 在平板上也使用垂直排列 */
  .nav-collapse .nav {
    margin: 0;
    padding: 0;
  }
  
  .nav-collapse .nav > li {
    display: block;
    float: none;
    width: 100%;
  }
  
  .nav-collapse .nav > li > a {
    display: block;
    padding: 10px 15px;
    border-left: 0;
    border-right: 0;
    text-align: left;
    border-radius: 0;
  }
}

/* 电脑设备（最小宽度 980px） */
@media (min-width: 980px) {
  /* 确保汉堡按钮在电脑上隐藏 */
  .btn-navbar {
    display: none;
  }
  
  /* 确保导航菜单在电脑上展开 */
  .nav-collapse.collapse {
    height: auto !important;
    overflow: visible !important;
  }
}
