@charset "UTF-8";

body {
    font-family: "微軟正黑體", "Alef Hebrew", "Noto Sans TC", "cwTeXHei", "Arial", "新細明體", sans-serif;
    background: rgb(225,225,225);
    background: -moz-linear-gradient(top,  rgba(225,225,225,1) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(225,225,225,1) 0%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom,  rgba(225,225,225,1) 0%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e1e1e1', endColorstr='#ffffff',GradientType=0 );
}

img {
	max-width: 100%;
}
img.member_photo {
    width: 100px;
    max-width: none;
}
table {
    width: 100% !important;
}
table th {
    white-space: nowrap;
}
table th.name {
    width: 100px;
}
.table > thead > tr > td {
    border-top-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
}
.table > tfoot > tr > td {
    border-color: transparent;
}
.page-header {
    margin-top: 10px;
    font-size: 24px;
}

.article_block img {
    height: auto !important;
}

.table.active_table>tbody>tr.active>th {
    background-color: #2472AD;
    color: #fff;
}
.table-striped.active_table>tbody>tr:nth-of-type(even) {
    background-color: #F5F5F5;
}
.table-striped.active_table>tbody>tr:nth-of-type(odd) {
    background-color: #E0EAF3;
}

.pt_20 {
	padding-top: 20px;
}
.pt_40 {
	padding-top: 40px;
}
.pb_40 {
	padding-bottom: 40px;
}

.mb_0 {
	margin-bottom: 0;
}
.mb_10 {
    margin-bottom: 10px;
}
.mb_15 {
    margin-bottom: 15px;
}
.mt_20 {
    margin-top: 20px;
}

.inline-block {
	display: inline-block;
}

.nowrap {
	white-space: nowrap;
}

.va_top {
	vertical-align: top;
}

.relative {
	position: relative;
}

.dp_table {
	display: table;
	width: 100%;
}
.dp_table > div {
	display: table-cell;
	float: none;
	vertical-align: top;
}
.index_title {
	color: #060606;
	font-size: 18px;
	padding-bottom: 10px;
	margin-bottom: 0;
	border-bottom: 1px solid #a7a7a7;
}
.index_title .title_en {
	color: #6b6b6b;
	font-weight: normal;
	padding-left: 0.5em;
}
.index_title .list_icon {
	float: right;
	color: #4c4c4c;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.index_title .list_icon:hover {
	color: #000;
}
.bg_gray {
	/* background-color: #f7f7f7; */
}
.bg_white {
    background-color: #fff;
}
.bg_green {
	/* background-color: #777346; */
	background-color: #620035;
}
.section_bg {
	background-image: url(../images/section_bg.png);
	background-position: center bottom;
	background-repeat: no-repeat;
}
.fixed_height {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
}
.fixed_height .news {
	position: absolute;
	top: 49px;
	right: 25px;
	bottom: 0;
	left: 25px;
	padding-right: 10px;
}

.fixed_height .news.even {
	right: 15px;
	left: 15px;
}

.breadcrumb {
    background-color: #f0f0f0;
}

.input-group .form-control {
    box-shadow: none;
}

.img_bg {
    background-color: #fff;
    background-image: url(../images/section_bg.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-top: 50px;
}


/* ==============================
   Page loader
   ============================== */

.page-loader{
    display:block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fefefe;
    z-index: 100000;    
}

.loader{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    font-size: 10px;
    text-indent: -12345px;
    border-top: 1px solid rgba(0,0,0, 0.08);
    border-right: 1px solid rgba(0,0,0, 0.08);
    border-bottom: 1px solid rgba(0,0,0, 0.08);
    border-left: 1px solid rgba(0,0,0, 0.5);
  
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  
    -webkit-animation: spinner 700ms infinite linear;
    -moz-animation: spinner 700ms infinite linear;
    -ms-animation: spinner 700ms infinite linear;
    -o-animation: spinner 700ms infinite linear;
    animation: spinner 700ms infinite linear;
  
    z-index: 100001;
}

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


/*header*/
.header_top {
	border-top: 17px solid #000;
	min-height: 105px;
	background-color: rgba(0,0,0,.3);
	padding-top: 10px;
	position: relative;
	background-color: #000;
	background-image: url(../images/header_bg.png);
}
.header_top_border {
	height: 26px;
	/* background-color: #666; */
	background-color: #620035;
}
.header_top .container {
	position: relative;
}
.header_top .logo {
	/*display: inline-block;*/
	position: absolute;
	display: table;
	/*bottom: -20px;*/
	/*left: 137px;*/
}
.header_top .logo > a {
    display: table-cell;
}
.header_top .logo > a:nth-child(2) img {
    margin-left: 10px;
    margin-bottom: 30px;
    width: 386px;
    max-width: 100%;
}

.header_right {
	float: right;
	margin-top: 20px;
}
.header_right ul {
	float: left;
	list-style: none;
	padding-left: 0;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-bottom: 17px;
}
.header_right ul li {
	float: left;
	border-right: 1px solid #fff;
}
.header_right ul li:last-child {
	border-right: none;
}
.header_right ul li a {
	display: block;
	color: #fff;
	font-size: 12px;
	padding: 0 10px;
	line-height: 1em;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-transform: uppercase;
}
.header_right ul li a:hover,
.header_right ul li a:focus {
	color: #f3ad00;
}
#search {
	float: left;
	width: 215px;
	margin-left: 20px;
	margin-bottom: 17px;
}
#s {
	background-color: #343434;
	color: #fff;
	border: none;
	height: 32px;
	font-size: 12px;
	border-radius: 0;
}
#s::-webkit-input-placeholder {
	color: #fff;
}
#s:-moz-placeholder {
	color: #fff;
}
#s::-moz-placeholder {
	color: #fff;
}
#s:-ms-input-placeholder {
	color: #fff;
}
.search_btn {
	background-color: #474747;
	color: #fff;
	border: none;
	padding: 6px 16px;
	border-radius: 0;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.search_btn:hover,
.search_btn:focus {
	color: #fff;
	background-color: #f3ad00;
}
#search .form-control:focus {
	box-shadow: none;
}

.header_bottom {
	/* background-color: #fff; */
	background-color: #620035;
}
.fixed_top .header_bottom {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	-moz-box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
}
.fixed_top .navbar-brand img {
	margin: 0;
	height: 100%;
}
.fixed_top .header_top {
	margin-bottom: 50px;
}


/*nav*/
.navbar {
	margin-bottom: 0;
	border: none;
	border-radius: 0;
	background-color: transparent;
}
.navbar-nav {
	padding-left: 90px;
	float: right;
	margin-left: -15px;
	margin-right: -15px;
}
.navbar>.container-fluid .navbar-brand {
	height: 60px;
	padding: 0;
	margin: 0;
}
.navbar-brand img {
	margin-top: -96px;
}
.navbar-default .navbar-nav>li>a {
	color: #fff;
	text-align: center;
	-webkit-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
    padding: 10px 15px;
    font-weight: bold;
    line-height: 30px;
}
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover {
	color: #f3ad00;
}
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
	background-color: transparent;
	color: #f3ad00;
}
.nav_tw {
	display: block;
	font-size: 15px;
	/* font-weight: bold; */
}
.nav_en {
	display: block;
	color: #000;
	font-size : 10px;
	-webkit-transform : scale(0.83);
	-o-transform : scale(0.83);
}
.navbar-nav li .dropdown-menu {
    width: 200px;
    background-color: rgba(255, 255, 255, .9);
    padding-top: 0;
    padding-bottom: 10px;
    margin: 0;
    border: none;
    border-bottom: 5px solid #316515;
    border-radius: 0;
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.38) !important;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.38) !important;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.navbar-nav > li:nth-last-child(1) > .dropdown-menu,
.navbar-nav > li:nth-last-child(2) > .dropdown-menu {
    left: auto;
    right: 0;
}
.dropdown-menu > li > a {
    padding: 10px 15px;
    color: #636161;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    white-space: normal;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
    background-color: transparent;
    color: #f3ad00;
    border-color: #316515;
}

.navbar-default .navbar-toggle {
    border-color: transparent;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #1274ad;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: transparent;
}
.navbar-default .navbar-toggle:hover .icon-bar {
    background-color: #1274ad;
}
.navbar-toggle.collapsed .icon-bar {
    background-color: #98978b;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #605f54;
}
.navbar-default .navbar-nav .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: #316515;
    padding-left: 18px;
    padding-right: 12px;
}
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu > a > i {
    line-height: 22px;
    font-size: 16px;
}
.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
}
.navbar-nav > li:nth-last-child(1) > .dropdown-menu .dropdown-menu,
.navbar-nav > li:nth-last-child(2) > .dropdown-menu .dropdown-menu {
    left: auto;
    right: 100%;
}
.navbar-default .navbar-nav .open .dropdown-menu > li.dropdown-submenu.open > a.dropdown-toggle {
    color: #fff;
    background-color: #316515;
    padding-left: 18px;
}
.dropdown-submenu.pull-left {
    float: none;
}
.dropdown-submenu.pull-left > .dropdown-menu {
    left: -100%;
    margin-left: 10px;
}


/*slider*/
#index_slider {
	margin-bottom: -50px;
}
#index_slider.owl-carousel .item {
	/*height: 380px;*/
	-webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background-position: center;
}
#index_slider.owl-theme .owl-nav {
	position: absolute;
    bottom: 0;
    right: 0;
    margin: 0;
}
#index_slider.owl-theme .owl-nav [class*='owl-'] {
	margin: 0;
	background-color: #8c8989;
	border-radius: 0;
	width: 50px;
	height: 50px;
	padding: 0;
}
#index_slider.owl-theme .owl-nav .owl-prev {
	border-right: 1px solid #777346;
	width: 51px;
}

.gallery_slider {
	padding: 20px 17px;
}
.gallery_slider .owl-theme .owl-nav {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 0;
	margin-top: 25%;
}
.gallery_slider .owl-theme .owl-nav [class*='owl-'] {
	margin: 0;
	padding: 0;
	-webkit-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0);
    position: absolute;
    left: 0;
}
.gallery_slider .owl-theme .owl-nav .owl-next {
	left: auto;
	right: 0;
	-webkit-transform: translate3d(50%,-50%,0);
    transform: translate3d(50%,-50%,0);
}
.gallery_slider .owl-theme .owl-nav .disabled {
	opacity: 0.6;
}
/* .gallery_slider .img_box:hover .img_layout img {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
} */
.gallery_slider .text_box {
	margin-bottom: 0;
}
.gallery_slider .text_box p {
	margin-bottom: 0;
}
.slider_title {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 101px;
	color: #fff;
	padding: 8px 20px;
	background-color: rgba(0,0,0,.5);
}
.slider_title span {
	line-height: 34px;
	font-size: 16px;
}
.count_list {
	background-color: #070707;
	float: right;
	padding: 0 10px;
	line-height: 34px;
}


/*event*/
.news {
	padding-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 25px;
	/*border-top: 1px solid #a7a7a7;*/
	border-bottom: 1px solid #a7a7a7;
}
.news_item {
    margin-bottom: 10px;
}
.news_date {
    width: 55px;
    text-align: center;
}
.news_day {
    display: block;
    color: #434343;
    background-color: #f6f6f6;
    border: 1px solid #ebebeb;
    font-size: 16px;
    line-height: 30px;
}
.news_month {
    display: block;
    color: #f6f6f6;
    background-color: #434343;
    border: 1px solid #323232;
    font-size: 12px;
    line-height: 20px;
}
.news_content {
    padding-left: 20px;
}
.news_content h5 {
    margin-top: 0;
    margin-bottom: 5px;
    color: #fa8d00;
    font-size: 12px;
}
.news_content a {
	color: #003262;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}


/*news*/
.bg_purple {
	/* background-color: #620035; */
	background-color: #a82a7c;
	padding-left: 25px;
	padding-right: 25px;
}
.bg_purple .news {
	border-color: #fff;
}
.bg_purple .news_content a {
	color: #fff;
}
.bg_purple .index_title {
	color: #fff;
	border-color: #fff;
}
.bg_purple .index_title .title_en {
	color: #fff;
}
.bg_purple .index_title .list_icon {
	color: #fff;
}
.bg_purple .news_content {
	padding-left: 0;
}

.bg_white .mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail,
.bg_white .mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
	background-color: rgba(0,0,0,.1);
}
.bg_white .mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.bg_white .mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background-color: rgba(0,0,0,.75);
}
.bg_white .mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {

}
.mCSB_outside + .mCSB_scrollTools {
	right: -10px;
}


/*img_block*/
.img_content {
	padding-top: 20px;
	/*padding-bottom: 20px;*/
	margin-bottom: 30px;
}
.img_content > .row {
    margin-left: -5px;
    margin-right: -5px;
}
.img_content > .row > div {
    padding-left: 5px;
    padding-right: 5px;
}
.img_box {
	display: block;
	border-bottom: 8px solid transparent;
	padding-top: 50%;
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
}
.img_box.pt_45 {
    padding-top: 44.5%;
}
.img_box .img_layout {
	position: absolute;
	top: 50%;
	width: 100%;
	-webkit-transform: translate3d(0,-50%,0);
    transform: translate3d(0,-50%,0);
}
.img_box iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.img_layout img {
	width: 100%;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.img_title {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	color: #fff;
	padding: 10px 15px;
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%);
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 50%,rgba(0,0,0,0.8) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 50%,rgba(0,0,0,0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 );
}
.img_content .img_box:hover .img_layout img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.img_box.red {
	border-color: #c4120e;
}
.img_box.green {
	border-color: #45ab27;
}
.img_box.purple {
	border-color: #a842d7;
}
.img_box.light_blue {
	border-color: #2aa4cb;
}
.img_box.blue {
	border-color: #0e4fc4;
}
.img_box.dark_red {
	border-color: #c40e3d;
}
.img_box.golden {
	border-color: #a87b2a;
}
.img_box.dark_green {
	border-color: #1f7b66;
}
.img_box.map {
	border-color: #a82a7c;
}
.text_box {
	margin-bottom: 20px;
	color: #003262;
	height: 40px;
	font-size: 16px;
}


/*quick_link*/
.quick_link {
	list-style: none;
	padding-left: 0;
}
.quick_link li {
	border-bottom: 1px solid #d7d7d7;
}
.quick_link li:last-child {
	border-bottom: none;
}
.quick_link li a {
	display: block;
	color: #003262;
	padding: 6px 0;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background-repeat: no-repeat;
    background-position: 10px center;
}
.quick_link li a i {
    width: 30px;
    display: inline-block;
    text-align: center;
    margin-right: 5px;
}
.quick_link li a:hover i {
    text-decoration: none;
}


/*map*/
/* .map_block {
    position: relative;
    padding-top: 61.8%;
    border-bottom: 8px solid #a82a7c;
}
.map_block iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} */
.map_layout {
    width: 100%;
    padding-top: calc(61.8% - 50px * 0.618);
    min-height: 200px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}
.map_layout iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* portfolio-item */
.portfolio {
    border-bottom: 1px solid #eeeeee;
}
.portfolio-item {
    border-top: 10px solid;
    margin-bottom: 20px;
}
.portfolio > div:nth-child(3n+1) .portfolio-item {
    border-color: #71a3a0;
}
.portfolio > div:nth-child(3n+2) .portfolio-item {
    border-color: #34466b;
}
.portfolio > div:nth-child(3n+3) .portfolio-item {
    border-color: #d65d33;
}
.portfolio_link {
    display: block;
    position: relative;
    padding-top: 61.8%;
    overflow: hidden;
}
.portfolio_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
	background-position: center;
	-webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.portfolio_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    z-index: 9;
}
.portfolio_link:hover .portfolio_img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.portfolio_link:hover .portfolio_overlay {
    background-color: rgba(0,0,0,.3);
}
.portfolio_text {
    padding: 0.5em 1em;
    height: 7em;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-top: none;
}
.portfolio-item h3 {
    font-size: 14px;
    margin-top: 0px;
    margin-bottom: 1em;
    line-height: 1.5em;
}
.portfolio-item h3 a {
    color: #455d6b;
    font-family: 'Heiti TC';
}
.portfolio-item h3 a:hover,
.portfolio-item h3 a:focus {
    color: #730707;
}
#content figure {
    margin: 0 0 2em;
    border-top: 10px solid;
}
#content figure:nth-child(3n+1) {
    border-color: #71a3a0;
}
#content figure:nth-child(3n+2) {
    border-color: #34466b;
}
#content figure:nth-child(3n+3) {
    border-color: #d65d33;
}
figure img {
    width: 100%;
}
figcaption {
    font-size: 13px;
    padding: 0.5em;
    height: 4em;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-top: none;
}


/* html5lightbox */
#html5-watermark {
    display: none !important;
}
.lightbox_link {
    display: block;
    margin-bottom: 30px;
    position: relative;
}
.lightbox_link:hover,
.lightbox_link:focus {
    text-decoration: none;
}
.lightbox_img {
    padding-top: 56%;
    position: relative;
    overflow: hidden;
}
.image_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.video_link:hover .image_bg {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.play_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.play_bg img {
    width: auto !important;
    max-height: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0);
}
.html5lightbox:hover .image_bg {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.html5lightbox:hover .play_bg {
    background-color: rgba(0,0,0,.3);
}
.lightbox_title {
    display: block;
    padding: 0.5em 1em;
    height: 5.5em;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-top: none;
    overflow: auto;
    z-index: 99;
    font-family: 'Heiti TC';
}
.lightbox_title p {
    font-size: 14px;
    margin-top: 0px;
    margin-bottom: 0;
    line-height: 1.5em;
}
.lightbox_date {
    /* position: absolute;
    right: 15px;
    bottom: 10px; */
    display: block;
    text-align: right;
}


/* video_frame */
.video_header {
    padding-left: 5px;
    margin-bottom: 15px;
    line-height: 1em;
    border-left: 5px solid #c10003;
    font-weight: bold;
}
.video_frame {
    width: 100%;
    padding-top: 57%;
    position: relative;
    margin-bottom: 30px;
}
.video_frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video_link {
    display: block;
    margin-bottom: 30px;
    position: relative;
    color: #455d6b;
    border-top: 10px solid;
}
.video_list > div:nth-child(3n+1) .video_link {
    border-color: #71a3a0;
}
.video_list > div:nth-child(3n+2) .video_link {
    border-color: #34466b;
}
.video_list > div:nth-child(3n+3) .video_link {
    border-color: #d65d33;
}
.video_link:hover,
.video_link:focus {
    /* text-decoration: none; */
    color: #730707;
}
.video_link:hover .img_bg {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.video_link:hover .play_bg {
    background-color: rgba(0,0,0,.3);
}


/*side_menu*/
.side_menu h2 {
	font-size: 24px;
	font-weight: bold;
}
.side_menu .panel {
    /* background-color: rgba(255, 255, 255, .5); */
    /* background-color: rgba(242, 242, 242, 1); */
    background-color:#fff;
    border: none;
    -webkit-box-shadow: noen;
    box-shadow: noen;
}
.side_menu .panel-default > .panel-heading {
    background-color: #620035;
    padding: 0;
}
.side_menu .panel .panel-heading,
.side_menu .panel .panel-title {
    font-size: 14px;
}
.side_menu .panel-title > a:hover,
.side_menu .panel-title > a:focus {
    text-decoration: none;
   /*  color: #1d1c13;
   background-color: #ddd; */
}
.side_menu ul {
    padding-left: 0px;
    list-style: none;
    margin-bottom: 0;
    /* list-style-image: url(../images/icon_hole.png); */
}
.side_menu ul li {
    padding: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.side_menu ul li a {
    color: #444;
    display: block;
    line-height: 1.1em;
    padding: 15px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.side_menu ul li a:hover,
.side_menu ul li a:focus,
.side_menu ul li.active > a {
    /* background-color: #ddd; */
    /* color: #fff; */
    background-color: #D9CCFF;
    text-decoration: none;
}
.side_menu ul li.current > a {
    /* background-color: rgba(87, 195, 234, 1);*/
    background-color: #8261a7;
    color: #fff;
}
/* .side_menu li:hover {
    list-style-image: url(../images/icon_hammer.png);
} */
.side_menu .panel-group .panel,
.side_menu .panel-group .panel + .panel {
    margin-top: 0;
    border-radius: 0;
    border-top: none;
}
/* .side_menu .panel-group .panel:first-child {
    border-top: 1px solid #dfd7ca;
} */
.side_menu .panel-title > a {
    display: block;
    color: #fff;
    font-weight: bold;
	padding: 15px;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.side_menu .panel-title > a[data-toggle="collapse"]:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    line-height: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f067";
    float: right;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.side_menu .panel-title > a[data-toggle="collapse"][aria-expanded="true"]:after {
    /* content: "\f0d8"; */
    -moz-transform:rotate(45deg);
    -webkit-transform:rotate(45deg);
    -o-transform:rotate45deg);
    -ms-transform:rotate(45deg);
    transform:rotate(45deg);
}
.side_menu .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top: none;
    padding: 0;
}
.has_sub > a:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    line-height: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f0d7";
    float: right;
}
.panel.current .panel-title > a {
    color: #fff;
    background-color: rgba(87, 195, 234, 1);
}
.has_sub.active > a:after {
    content: "\f0d8";
}
.side_menu ul li.has_sub {
    overflow: hidden;
    position: relative;
}
.has_sub > .sub_menu2 {
    /* height: 0; */
    position: absolute;
    width: 100%;
    background-color: rgba(242, 242, 242, 1);
    /* background-color: #D9CCFF; */
    /* background-color: rgba(255, 244, 224, 1); */
    /* -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; */
}
.has_sub.active > .sub_menu2 {
    margin-bottom: 0 !important;
    position: static;
   /* height: auto; */
}
.side_menu ul.sub_menu2 li a {
    /* color: #fa8d00; */
    color: #919191;
}
.side_menu ul.sub_menu2 li a:hover,
.side_menu ul.sub_menu2 li a:focus {
    color: #620035;
    background-color: transparent;
}
.side_menu ul.sub_menu2 li.current a {
    color: #620035;
    background-color: transparent;
}


/*footer*/
footer {
	color: rgba(255,255,255,.9);
	background-color: #620035;
	background-image: url(../images/footer_bg.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}
footer a {
	color: rgba(255,255,255,.9);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
footer a:hover,
footer a:focus {
	color: #f3ad00;
}
.footer {
	padding-top: 30px;
}
.footer_menu {
	width: 100%;
	padding: 20px 0;
	border-bottom: 1px solid #414141;
	position: relative;
}
.footer_menu ul {
	margin-bottom: 0;
	padding-left: 0;
	padding-right: 50px;
}
.footer_menu ul li {
	display: inline-block;
	padding: 0 25px;
	background-image: url(../images/list_style_03.png);
	background-repeat: no-repeat;
	background-position: left center;
}
.footer_menu ul li a {
	display: block;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.8em;
}
.totop {
	display: block;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: #767779;
    position: fixed;
    right: 15px;
    bottom: 40px;
    margin-bottom: -20px;
    text-align: center;
    font-size: 12px;
    line-height: 12px;
    padding: 5px 0;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.totop:hover,
.totop:focus {
	text-decoration: none;
	color: #fff;
	opacity: 1;
}
.totop i {
	font-size: 24px;
	line-height: 12px;
}

.footer_menu_list {
	list-style: none;
	padding-left: 0;
	margin: 10px -15px 60px;
}
.footer_menu_list > li {
	float: left;
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 1em;
}
.footer_menu_list > li > a {
	font-size: 14px;
	font-weight: bold;
	white-space: nowrap;
}
.footer_menu_list > li > span {
	display: inline-block;
	font-size: 16px;
	margin: 15px 0 10px;
}
.footer_submenu {
	display: block;
	list-style: none;
	padding-left: 0;
	margin-bottom: 20px;
	margin-top: 10px;
}
.footer_submenu > li {
	text-align: left;
}
.footer_submenu > li > a {
	font-size: 12px;
}

.address {
	margin-bottom: 20px;
}
.address h4 {
	font-size: 13px;
	margin-bottom: 5px;
}
.address p {
	margin-bottom: 5px;
	font-size: 12px;
}
.admin {
	margin-bottom: 20px;
}

.footer_right {
	float: right;
	margin: 10px 0 30px;
	border-left: 1px solid #414141;
}
.footer_logo {
	display: inline-block;
}
.social {
	margin-top: 20px;
}
.social a {
	display: inline-block;
	/* float: left; */
	width: 30px;
	height: 30px;
	margin-left: 5px;
	overflow: hidden;
}
.social a:first-child {
    margin-left: 0;
}
.social a img {
	display: block;
	-webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.social a img:nth-child(2) {
	opacity: 0.6;
}
.social a:hover img:first-child {
	margin-top: -30px;
}

.address .copyright {
	font-size: 13px;
	padding: 10px 0;
}

.master_name {
    position: absolute;
    bottom: 0;
    right: calc(100% + 15px);
    text-align: right;
    width: calc(100% - 30px);
    margin-bottom: 30px;
}
.master_name a {
    text-decoration: underline;
}

@media (min-width: 1200px) {
	.container {
	    width: 1177px;
	    max-width: 100%;
	}
}

@media (min-width: 768px) {
	.dropdown:hover > .dropdown-menu {
	    display: block;
	}
	.dropdown-submenu:hover > .dropdown-menu {
	    display: block;
	}
}


@media only screen and (max-width: 1199px) {
    .navbar-default .navbar-nav>li>a {
    	padding-left: 10px;
    	padding-right: 10px;
    }
    .container {
	    width: 100% !important;
	}
}

@media only screen and (max-width: 991px) {
	.fixed_height {
		position: static;
	}
	.fixed_height .news {
		position: static;
		top: auto;
		left: auto;
		right: auto;
		bottom: auto;
		height: 290px;
	}
	.fixed_height .news.even {
		left: auto;
		right: auto;
	}
	.header_top .logo {
		position: static;
	}
	.header_top .logo > a:nth-child(2) img {
	    margin-bottom: -8px;   
	}
	.header_right {
	   margin-top: 0;
	}
	.header_top_border {
	   display: none;
	}
	.navbar-nav {
		padding-left: 0;
		float: left;
	}
	.navbar-default .navbar-nav>li>a {
    	padding-left: 8px;
    	padding-right: 8px;
    }
    .nav_tw {
    	font-size: 14px;
    }
}


@media only screen and (max-width: 767px) {
	.navbar-nav {
		float: none;
	}
	.header_right ul li a {
		padding-left: 7px;
		padding-right: 7px;
	}
	#search {
		width: 150px;
		margin-left: 10px;
	}
	.search_btn {
		padding-left: 10px;
		padding-right: 10px;
	}
	.master_name {
	    right: 15px;
	    bottom: 100%;
	}
}

@media only screen and (max-width: 599px) {
/*     .gallery_slider .owl-theme .owl-nav {
    margin-top: 30%;
} */
}

@media only screen and (max-width: 480px) {

}