@charset "UTF-8";
/* 共通*/
/* 此變數為框架之整體變數，控制整體網站之設定，包含 顏色、文字、格線系統*/
/* 於mixins 資料夾內，各個模組也有其個別使用的變數，請至個別檔案設定，個別使用變數不含在此設定*/
/*-------------------------------------------------------------顏色---------//*/
/* 定義顏色 此顏色可自由變換*/
/*主色 */
/*輔色*/
/*點綴*/
/*連結*/
/*重要*/
/*關鍵字*/
/* 但注意真實顏色與語意的關聯必須易於辨識*/
/*hr顏色*/
/*white顏色*/
/*black顏色*/
/* 連結顏色*/
/* 表單focus顏色*/
/*表單*/
/*表單說明字*/
/*-------------------------------------------------------------字型--------//*/
/* 字型設定*/
/*-------------------------------------------------------------格線系統-----//*/
/* 格線系統*/
/*格線欄位數*/
/*左右padding*/
/*container最大寬*/
/*mediaquery*/
/*電腦*/
/*平板*/
/*手機*/
/*極小尺寸*/
/*-------------------------------------------------------------客製化------//*/
/* 圖片*/
/*圖片導角*/
/*變數*/
/*Normalize.scss settings*/
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #f7b80e;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*reset*/
/*  MIXIN*/
/*清除浮動*/
/*mediaquery*/
/*圖片RWD設定*/
/* @include transition(all,2s,ease-out); */
/*動畫*/
/*透明度*/
/*box-sizing*/
/*導角*/
/*http://w3bits.com/sass-mixins/*/
/* 範例：*/
/* .gradient {*/
/*   @include gradient(#07c, #06f, vertical);*/
/* }*/
/*漸層*/
/*http://w3bits.com/sass-mixins/*/
/*置中*/
/*https://codepen.io/iMarkup/pen/LEjMZN*/
/*範例：*/
/* p {*/
/*   background-color: $gray;*/
/*   color: white;*/
/*   padding: 10px 20px;*/
/*   width: 300px;*/
/*   margin: 0 auto;*/
/*   @include text-overflow;*/
/* }*/
/*ellipsis 字多點點*/
/*陰影*/
/*清除li格式*/
.row {
  margin-left: -15px;
  margin-right: -15px;
  clear: both;
  zoom: 1;
}
.row:before, .row:after {
  content: "";
  display: table;
}
.row:after {
  clear: both;
}
.row > div {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.container {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  clear: both;
  zoom: 1;
}
.container:before, .container:after {
  content: "";
  display: table;
}
.container:after {
  clear: both;
}

/*格線系統*/
.container {
  max-width: 1200px;
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  clear: both;
  zoom: 1;
}
.container-fluid:before, .container-fluid:after {
  content: "";
  display: table;
}
.container-fluid:after {
  clear: both;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
  clear: both;
  zoom: 1;
}
.row:before, .row:after {
  content: "";
  display: table;
}
.row:after {
  clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.33333%;
}

.col-xs-2 {
  width: 16.66667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.33333%;
}

.col-xs-5 {
  width: 41.66667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.33333%;
}

.col-xs-8 {
  width: 66.66667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.33333%;
}

.col-xs-11 {
  width: 91.66667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.33333%;
}

.col-xs-pull-2 {
  right: 16.66667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.33333%;
}

.col-xs-pull-5 {
  right: 41.66667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.33333%;
}

.col-xs-pull-8 {
  right: 66.66667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.33333%;
}

.col-xs-pull-11 {
  right: 91.66667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.33333%;
}

.col-xs-push-2 {
  left: 16.66667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.33333%;
}

.col-xs-push-5 {
  left: 41.66667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.33333%;
}

.col-xs-push-8 {
  left: 66.66667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.33333%;
}

.col-xs-push-11 {
  left: 91.66667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.33333%;
}

.col-xs-offset-2 {
  margin-left: 16.66667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333%;
}

.col-xs-offset-5 {
  margin-left: 41.66667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333%;
}

.col-xs-offset-8 {
  margin-left: 66.66667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333%;
}

.col-xs-offset-11 {
  margin-left: 91.66667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }

  .col-sm-1 {
    width: 8.33333%;
  }

  .col-sm-2 {
    width: 16.66667%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.33333%;
  }

  .col-sm-5 {
    width: 41.66667%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-7 {
    width: 58.33333%;
  }

  .col-sm-8 {
    width: 66.66667%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-10 {
    width: 83.33333%;
  }

  .col-sm-11 {
    width: 91.66667%;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-pull-1 {
    right: 8.33333%;
  }

  .col-sm-pull-2 {
    right: 16.66667%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-4 {
    right: 33.33333%;
  }

  .col-sm-pull-5 {
    right: 41.66667%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-7 {
    right: 58.33333%;
  }

  .col-sm-pull-8 {
    right: 66.66667%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-10 {
    right: 83.33333%;
  }

  .col-sm-pull-11 {
    right: 91.66667%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-push-1 {
    left: 8.33333%;
  }

  .col-sm-push-2 {
    left: 16.66667%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-4 {
    left: 33.33333%;
  }

  .col-sm-push-5 {
    left: 41.66667%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-7 {
    left: 58.33333%;
  }

  .col-sm-push-8 {
    left: 66.66667%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-10 {
    left: 83.33333%;
  }

  .col-sm-push-11 {
    left: 91.66667%;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }

  .col-md-1 {
    width: 8.33333%;
  }

  .col-md-2 {
    width: 16.66667%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.33333%;
  }

  .col-md-5 {
    width: 41.66667%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.33333%;
  }

  .col-md-8 {
    width: 66.66667%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.33333%;
  }

  .col-md-11 {
    width: 91.66667%;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-pull-0 {
    right: auto;
  }

  .col-md-pull-1 {
    right: 8.33333%;
  }

  .col-md-pull-2 {
    right: 16.66667%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-4 {
    right: 33.33333%;
  }

  .col-md-pull-5 {
    right: 41.66667%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-7 {
    right: 58.33333%;
  }

  .col-md-pull-8 {
    right: 66.66667%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-10 {
    right: 83.33333%;
  }

  .col-md-pull-11 {
    right: 91.66667%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-push-0 {
    left: auto;
  }

  .col-md-push-1 {
    left: 8.33333%;
  }

  .col-md-push-2 {
    left: 16.66667%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-4 {
    left: 33.33333%;
  }

  .col-md-push-5 {
    left: 41.66667%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-7 {
    left: 58.33333%;
  }

  .col-md-push-8 {
    left: 66.66667%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-10 {
    left: 83.33333%;
  }

  .col-md-push-11 {
    left: 91.66667%;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333%;
  }

  .col-md-offset-2 {
    margin-left: 16.66667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333%;
  }

  .col-md-offset-5 {
    margin-left: 41.66667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333%;
  }

  .col-md-offset-8 {
    margin-left: 66.66667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333%;
  }

  .col-md-offset-11 {
    margin-left: 91.66667%;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1400px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }

  .col-lg-1 {
    width: 8.33333%;
  }

  .col-lg-2 {
    width: 16.66667%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.33333%;
  }

  .col-lg-5 {
    width: 41.66667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.33333%;
  }

  .col-lg-8 {
    width: 66.66667%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.33333%;
  }

  .col-lg-11 {
    width: 91.66667%;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-pull-0 {
    right: auto;
  }

  .col-lg-pull-1 {
    right: 8.33333%;
  }

  .col-lg-pull-2 {
    right: 16.66667%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-4 {
    right: 33.33333%;
  }

  .col-lg-pull-5 {
    right: 41.66667%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-7 {
    right: 58.33333%;
  }

  .col-lg-pull-8 {
    right: 66.66667%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-10 {
    right: 83.33333%;
  }

  .col-lg-pull-11 {
    right: 91.66667%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-push-0 {
    left: auto;
  }

  .col-lg-push-1 {
    left: 8.33333%;
  }

  .col-lg-push-2 {
    left: 16.66667%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-4 {
    left: 33.33333%;
  }

  .col-lg-push-5 {
    left: 41.66667%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-7 {
    left: 58.33333%;
  }

  .col-lg-push-8 {
    left: 66.66667%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-10 {
    left: 83.33333%;
  }

  .col-lg-push-11 {
    left: 91.66667%;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0%;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
/*格線系統*/
/*sr-only*/
/* card caption的共用設定*/
/* caption設定*/
/* gridBoxMask*/
@-webkit-keyframes gridBoxMask {
  0% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
@keyframes gridBoxMask {
  0% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
/*卡片caption*/
/* 客製化*/
/*客製化繼承*/
/*fatfooter*/
/* https://github.com/twbs/bootstrap-sass/blob/master/assets/stylesheets/bootstrap/mixins/_image.scss*/
/*https://css-tricks.com/snippets/sass/maintain-aspect-ratio-mixin/*/
/* 圖片列表mixin*/
/*img設定*/
/*客製MIXIN*/
html {
  font-size: 100%;
  line-height: 1em;
}

.vertical_rhythm {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSI1JSIgc3RvcC1jb2xvcj0iI2JiYmJiYiIgc3RvcC1vcGFjaXR5PSIwLjQiLz48c3RvcCBvZmZzZXQ9IjUlIiBzdG9wLWNvbG9yPSIjYmJiYmJiIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(5%, rgba(187, 187, 187, 0.4)), color-stop(5%, rgba(187, 187, 187, 0)));
  background-image: -moz-linear-gradient(bottom, rgba(187, 187, 187, 0.4) 5%, rgba(187, 187, 187, 0) 5%);
  background-image: -webkit-linear-gradient(bottom, rgba(187, 187, 187, 0.4) 5%, rgba(187, 187, 187, 0) 5%);
  background-image: linear-gradient(to top, rgba(187, 187, 187, 0.4) 5%, rgba(187, 187, 187, 0) 5%);
  -moz-background-size: 100% 1.8em;
  -o-background-size: 100% 1.8em;
  -webkit-background-size: 100% 1.8em;
  background-size: 100% 1.8em;
  background-position: left top;
}
.vertical_rhythm img {
  float: left;
  margin: 0 16px 0 0;
}

/* Alignment*/
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* Transformation*/
.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

/* Contextual colors*/
.text-muted {
  color: #999;
}

.innerpage h1 {
  font-size: 2em;
  line-height: 1.5em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.innerpage h2 {
  font-size: 1.5em;
  line-height: 2em;
  margin-top: 0.5em;
  margin-bottom: 0.6666em;
}
.innerpage h3 {
  font-size: 1.5em;
  line-height: 2em;
  margin-top: 0.5em;
  margin-bottom: 0.6666em;
}
.innerpage h4 {
  font-size: 1.25em;
  line-height: 1.6em;
  margin-top: 0.5em;
  margin-bottom: 1.6em;
}
.innerpage h5 {
  font-size: 1.125em;
  line-height: 2.22222em;
  margin-top: 0.5em;
  margin-bottom: 1.5em;
}
.innerpage h6 {
  font-size: 1em;
  line-height: 2em;
  margin-top: 0em;
  margin-bottom: 0em;
}
.innerpage blockquote {
  background: #f2f2f2;
  font-style: normal;
  display: block;
  font-size: 1em;
  line-height: 2em;
  border-left: 5px solid #1493df;
  padding: 32px;
  box-sizing: border-box;
  margin-left: .5em;
  margin-right: .5em;
}
.innerpage ul,
.innerpage ol,
.innerpage article,
.innerpage p,
.innerpage dd,
.innerpage figure {
  font-size: 1em;
  line-height: 1.8em;
  /* @include trailer(1);*/
  margin-top: 0em;
  margin-bottom: 2em;
}
.innerpage ul {
  padding-left: 2em;
  list-style: disc;
}
.innerpage ol {
  padding-left: 2em;
  list-style: decimal;
}
.innerpage img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .innerpage img {
    max-width: 100%;
    overflow: hidden;
    *zoom: 1;
  }
}

/*CP文字排版*/
body {
  font-size: 1em;
  font-weight: normal;
  color: #333;
  line-height: 1.45em;
  font-family: Lato, "PingFang TC", "Helvetica Neue", Helvetica, 微軟正黑體, 新細明體, Arial, sans-serif;
  -webkit-text-size-adjust: none;
  color: #333;
}
@media print {
  body {
    font-size: .75em;
  }
}

a {
  color: #333;
  -webkit-text-decoration: none;
  text-decoration: none;
}
a:hover, a:focus {
  color: #1493df;
  cursor: pointer;
}

.keyword {
  color: #f06;
}

/*文字設定*/
/* 元素*/
.breadcrumb {
  padding: .75em 1em;
  font-size: .938em;
  margin: 0px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 1.5em;
  border-bottom: solid 1px #eaeaea;
}
.breadcrumb ul {
  padding: 0;
  margin: 0 auto;
  max-width: 1100px;
  text-align: left;
}
.breadcrumb ul li {
  display: inline-block;
}
.breadcrumb ul li:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 10px;
  margin-right: 6px;
  background: #bbb;
}
.breadcrumb ul li:first-child:before {
  display: none;
}
.breadcrumb ul li:last-child:before {
  margin-right: .75em;
}
.breadcrumb a {
  color: #333;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #222;
  padding: .25em .75em;
  border-radius: 3px;
}
.breadcrumb a:hover, .breadcrumb a:focus {
  color: #1493df;
  cursor: pointer;
}
.breadcrumb a:hover, .breadcrumb a:focus {
  background: #5d18bc;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    line-height: 1;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.75);
    border-bottom: 2px solid #222;
  }
}

/*麵包屑*/
.divider, .divider-vertical {
  text-align: center;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-size: .813em;
  color: grey;
  text-shadow: 0 1px 1px #fff;
  cursor: default;
  display: block;
  overflow: hidden;
  *zoom: 1;
}

.divider {
  display: table;
  line-height: 1;
  margin: 20px 0;
}
.divider:after, .divider:before {
  content: '';
  display: table-cell;
  position: relative;
  top: 50%;
  width: 50%;
  background-repeat: no-repeat;
  background-image: url("../images/basic/divider.jpg");
}
.divider:before {
  background-position: right 1em top 50%;
}
.divider:after {
  background-position: left 1em top 50%;
}

.divider-vertical {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: auto;
  height: 50%;
  line-height: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.divider-vertical:after, .divider-vertical:before {
  content: '';
  position: absolute;
  left: 50%;
  z-index: 3;
  width: 0;
  height: calc(100% - 1.2rem);
  border-left: 1px solid #cfcfcf;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.divider-vertical:before {
  top: -100%;
}
.divider-vertical:after {
  bottom: 0;
}

/*分隔線*/
/* 按鈕設定*/
/* 按鈕外框*/
/* .btn_grp {*/
/*     text-align: center;*/
/*     padding: 15px 0;*/
/*     clear: both;*/
/* }*/
/* 按鈕的共用設定*/
/* 按鈕預設陰影*/
.btn, .btn .btn-block, .fav, .btn-func .btn-outline, .btn-gray, .btn-primary, .btn-extra, .btn-green, .btn-blue, .btn-yellow, .btn-orange, .btn-red, .btn-purple, form button,
form input[type="button"],
form button[type="button"], form input[type="reset"], form button[type="reset"], .upload_grp .upload_btn,
.upload_grp .search_btn,
.search_grp .upload_btn,
.search_grp .search_btn {
  /* @include text-shadow(RGBA(0, 0, 0, .3) 1px 1px 1px);*/
  background-image: none;
  /*修正firefox*/
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  white-space: nowrap;
  line-height: normal;
  min-width: 80px;
  width: auto;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn {
  padding: 0.5em 2em;
  font-size: 1em;
  touch-action: manipulation;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #1493df;
  border: 1px solid #1493df;
  color: #333;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.btn:hover, .btn:focus {
  background: #1074b0;
  border: 1px solid #1074b0;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
.btn:hover span, .btn:focus span {
  padding-right: 25px;
}
.btn:hover span:after, .btn:focus span:after {
  opacity: 1;
  right: 0;
}
.btn:hover span.sr-only, .btn:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
.btn.active {
  background: #1074b0;
  border: 1px solid #1074b0;
  cursor: pointer;
}
.btn:hover, .btn:focus {
  color: #333;
  background: #f7f7f7;
  /* Old browsers*/
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFF7F7F7', endColorstr='#FFEAEAEA');
  /* IE6-9*/
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3ZjdmNyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2VhZWFlYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(100%, #eaeaea));
  background-image: -moz-linear-gradient(top, #f7f7f7 0%, #eaeaea 100%);
  background-image: -webkit-linear-gradient(top, #f7f7f7 0%, #eaeaea 100%);
  background-image: linear-gradient(to bottom, #f7f7f7 0%, #eaeaea 100%);
}
.btn .btn-block {
  display: block;
  min-width: auto;
  width: 100% !important;
}

.readmore,
a.readmore {
  position: absolute !important;
  right: 0;
  color: #222;
  width: auto !important;
  height: auto !important;
  display: inline-block;
  margin: 0 !important;
  text-align: right;
  font-weight: normal;
  /* text-transform: uppercase; */
  width: auto;
  height: auto;
  background: transparent;
  border: none;
}
.readmore:hover, .readmore:focus,
a.readmore:hover,
a.readmore:focus {
  text-decoration: underline;
}

a.readmore {
  position: absolute !important;
  z-index: 10;
  right: 0;
  color: #222;
  margin-top: 1em !important;
  margin-right: 1em !important;
  padding: .3em 0;
  border-bottom: 4px solid #222;
  bottom: 28px;
}
a.readmore:hover, a.readmore:focus {
  text-decoration: none;
  color: #781F79;
  border-bottom: 4px solid #781F79;
}

.fav {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #1493df;
  border: 1px solid #1493df;
  color: #333;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  min-width: auto;
  border: 0;
  border-radius: 0;
  color: #fff;
  line-height: 34px;
  padding-left: 30px;
  padding-right: 16px;
  background: url(../images/icon/icon_fav.svg) 10px 50% no-repeat, #5366a4;
  background-size: 16px 16px;
}
.fav:hover, .fav:focus {
  background: #1074b0;
  border: 1px solid #1074b0;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
.fav:hover span, .fav:focus span {
  padding-right: 25px;
}
.fav:hover span:after, .fav:focus span:after {
  opacity: 1;
  right: 0;
}
.fav:hover span.sr-only, .fav:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
.fav.active {
  background: #1074b0;
  border: 1px solid #1074b0;
  cursor: pointer;
}
.fav:hover, .fav:focus {
  border: 0;
  background: url(../images/icon/icon_fav.svg) 10px 50% no-repeat, #e4047f;
  background-size: 16px 16px;
}
.fav.saved {
  background: url(../images/icon/icon_faved.svg) 10px 50% no-repeat, #e4047f;
  background-size: 16px 16px;
}

.member .btn {
  padding: .25em .5em;
}
.member .act {
  color: #fff;
}
.member .act:hover {
  background: #1074b0;
}
.member .act:active, .member .act:focus {
  background: #0e6599;
}
.member .copy {
  background: url(../images/icon/icon-copy.png) 50% 50% no-repeat;
  background-size: contain;
  font-size: 0;
  height: 30px;
  border: 0;
}
.member .copy:hover, .member .copy:active, .member .copy:focus {
  filter: brightness(0.5);
}

.btn-switch {
  font-size: 1.2em;
  background: #333;
  border: 1px solid #1493df;
  color: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 0;
  -moz-box-shadow: 0px;
  -webkit-box-shadow: 0px;
  box-shadow: 0px;
  background: rgba(20, 147, 223, 0.2);
  -moz-transition: ease-in 0.2s;
  -o-transition: ease-in 0.2s;
  -webkit-transition: ease-in 0.2s;
  transition: ease-in 0.2s;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#B3690E86', endColorstr='#B33257AF');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzY5MGU4NiIgc3RvcC1vcGFjaXR5PSIwLjciLz48c3RvcCBvZmZzZXQ9IjE1MCUiIHN0b3AtY29sb3I9IiMzMjU3YWYiIHN0b3Atb3BhY2l0eT0iMC43Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(105, 14, 134, 0.7)), color-stop(150%, rgba(50, 87, 175, 0.7)));
  background-image: -moz-linear-gradient(top, rgba(105, 14, 134, 0.7) 0%, rgba(50, 87, 175, 0.7) 150%);
  background-image: -webkit-linear-gradient(top, rgba(105, 14, 134, 0.7) 0%, rgba(50, 87, 175, 0.7) 150%);
  background-image: linear-gradient(to bottom, rgba(105, 14, 134, 0.7) 0%, rgba(50, 87, 175, 0.7) 150%);
  /*  &.active{
       @include box-shadow(0px 0px 0px 1px #3257af) ;
   } */
}
.btn-switch:hover, .btn-switch:focus {
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
.btn-switch:hover span, .btn-switch:focus span {
  padding-right: 25px;
}
.btn-switch:hover span:after, .btn-switch:focus span:after {
  opacity: 1;
  right: 0;
}
.btn-switch:hover span.sr-only, .btn-switch:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
.btn-switch.active {
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
  cursor: pointer;
}
.btn-switch.active, .btn-switch:hover, .btn-switch:focus {
  border: 0;
  -moz-box-shadow: 0px;
  -webkit-box-shadow: 0px;
  box-shadow: 0px;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF690E86', endColorstr='#FF3257AF');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzY5MGU4NiIvPjxzdG9wIG9mZnNldD0iMTUwJSIgc3RvcC1jb2xvcj0iIzMyNTdhZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #690e86), color-stop(150%, #3257af));
  background-image: -moz-linear-gradient(top, #690e86 0%, #3257af 150%);
  background-image: -webkit-linear-gradient(top, #690e86 0%, #3257af 150%);
  background-image: linear-gradient(to bottom, #690e86 0%, #3257af 150%);
}

.btnfilter .btn_grp {
  display: block;
}
.btnfilter .RWDselect {
  display: none;
}
@media screen and (max-width: 767px) {
  .btnfilter {
    margin-bottom: 1em;
  }
  .btnfilter .btn_grp {
    display: none;
  }
  .btnfilter .RWDselect {
    display: block;
  }
}

.icon-addDate {
  color: #1493df;
}
.icon-addDate img {
  height: 26px;
  margin: 0 3px 0 10px;
  vertical-align: middle;
}

span.favorite {
  cursor: pointer;
  position: absolute;
  top: 29px;
  right: 10px;
  font-size: 1.5em;
}
span.favorite.active {
  color: white;
}
span.favorite.active i {
  color: #fff100;
}

.btn_grp {
  margin: 0.2em 0 2em !important;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  *zoom: 1;
}
.btn_grp button,
.btn_grp input[type="button"],
.btn_grp button[type="button"],
.btn_grp button[type="submit"],
.btn_grp input[type="reset"],
.btn_grp input[type="submit"],
.btn_grp button[type="submit"],
.btn_grp button[type="reset"] {
  padding: 0.5em 4em !important;
  min-width: 100px;
  margin-left: 3px;
  margin-right: 3px;
}
@media screen and (max-width: 767px) {
  .btn_grp button,
  .btn_grp input[type="button"],
  .btn_grp button[type="button"],
  .btn_grp button[type="submit"],
  .btn_grp input[type="reset"],
  .btn_grp input[type="submit"],
  .btn_grp button[type="submit"],
  .btn_grp button[type="reset"] {
    padding: 8px;
    min-width: 70px;
    padding: 0.5em 2em !important;
  }
  .btn_grp button:before,
  .btn_grp input[type="button"]:before,
  .btn_grp button[type="button"]:before,
  .btn_grp button[type="submit"]:before,
  .btn_grp input[type="reset"]:before,
  .btn_grp input[type="submit"]:before,
  .btn_grp button[type="submit"]:before,
  .btn_grp button[type="reset"]:before {
    width: 130%;
    top: -15px;
  }
}

.btn-more {
  background: #2f549c;
  border: 1px solid #1493df;
  color: white;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #2f549c;
  position: relative;
}
.btn-more:hover, .btn-more:focus {
  background: #233f75;
  border: 1px solid #233f75;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
.btn-more:hover span, .btn-more:focus span {
  padding-right: 25px;
}
.btn-more:hover span:after, .btn-more:focus span:after {
  opacity: 1;
  right: 0;
}
.btn-more:hover span.sr-only, .btn-more:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
.btn-more.active {
  background: #233f75;
  border: 1px solid #233f75;
  cursor: pointer;
}
.btn-more:after {
  position: absolute;
  content: "";
  display: block;
}
.btn-more:after {
  top: 15px;
  right: 18px;
  width: 8px;
  height: 8px;
  line-height: 1.25em;
  border: 1px solid white;
  border-top: none;
  border-left: none;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.btn-more:hover, .btn-more:focus {
  background: #1493df;
  border: 1px solid #1493df;
  color: white;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #1493df;
}
.btn-more:hover:hover, .btn-more:hover:focus, .btn-more:focus:hover, .btn-more:focus:focus {
  background: #1074b0;
  border: 1px solid #1074b0;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
.btn-more:hover:hover span, .btn-more:hover:focus span, .btn-more:focus:hover span, .btn-more:focus:focus span {
  padding-right: 25px;
}
.btn-more:hover:hover span:after, .btn-more:hover:focus span:after, .btn-more:focus:hover span:after, .btn-more:focus:focus span:after {
  opacity: 1;
  right: 0;
}
.btn-more:hover:hover span.sr-only, .btn-more:hover:focus span.sr-only, .btn-more:focus:hover span.sr-only, .btn-more:focus:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
.btn-more:hover.active, .btn-more:focus.active {
  background: #1074b0;
  border: 1px solid #1074b0;
  cursor: pointer;
}

.btn-left {
  float: left;
}

.btn-right {
  float: right;
}

.btn-func {
  margin: 2px 0;
  /* 按鈕icon*/
}
.btn-func form select,
.btn-func form input {
  width: auto;
  min-width: 100px;
}
.btn-func .col-right {
  text-align: right;
}
.btn-func .searchBox {
  display: inline-block;
  width: auto;
  overflow: inherit;
}
.btn-func .btn-outline {
  margin-bottom: 5px;
  margin-right: 5px;
}
.btn-func .btn-outline {
  padding: 0.3em 1.5em;
  background: white;
  border: 1px solid #1493df;
  color: #1493df;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-box-shadow: 0 2px 2px 0 rgba(66, 165, 245, 0.14), 0 3px 1px -2px rgba(66, 165, 245, 0.2), 0 1px 5px 0 rgba(66, 165, 245, 0.12);
  -webkit-box-shadow: 0 2px 2px 0 rgba(66, 165, 245, 0.14), 0 3px 1px -2px rgba(66, 165, 245, 0.2), 0 1px 5px 0 rgba(66, 165, 245, 0.12);
  box-shadow: 0 2px 2px 0 rgba(66, 165, 245, 0.14), 0 3px 1px -2px rgba(66, 165, 245, 0.2), 0 1px 5px 0 rgba(66, 165, 245, 0.12);
  -moz-transition: ease-in 0.2s;
  -o-transition: ease-in 0.2s;
  -webkit-transition: ease-in 0.2s;
  transition: ease-in 0.2s;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFFFFFFF', endColorstr='#FFFFFFFF');
  /* IE6-8*/
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #ffffff));
  background-image: -moz-linear-gradient(top, #ffffff 0%, #ffffff 100%);
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
  background-image: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
}
.btn-func .btn-outline:hover, .btn-func .btn-outline:focus {
  background: #1493df;
  color: white;
  -moz-box-shadow: 0 2px 2px 0 rgba(66, 165, 245, 0.14), 0 3px 1px -2px rgba(66, 165, 245, 0.2), 0 1px 5px 0 rgba(66, 165, 245, 0.12);
  -webkit-box-shadow: 0 2px 2px 0 rgba(66, 165, 245, 0.14), 0 3px 1px -2px rgba(66, 165, 245, 0.2), 0 1px 5px 0 rgba(66, 165, 245, 0.12);
  box-shadow: 0 2px 2px 0 rgba(66, 165, 245, 0.14), 0 3px 1px -2px rgba(66, 165, 245, 0.2), 0 1px 5px 0 rgba(66, 165, 245, 0.12);
}
.btn-func .icon-add,
.btn-func .icon-del {
  background-size: 24% !important;
  background-position: 10px center !important;
  background-repeat: no-repeat !important;
}
.btn-func .icon-add:before,
.btn-func .icon-del:before {
  content: "";
}
.btn-func .icon-add {
  background: url("../images/icon-add.png");
}
.btn-func .icon-add:hover, .btn-func .icon-add:hover {
  background-color: #1493df;
  background-image: url("../images/icon-add-hover.png") !important;
}
.btn-func .icon-del {
  background: url("../images/icon-del.png");
}
.btn-func .icon-del:hover, .btn-func .icon-del:hover {
  background-color: #1493df;
  background-image: url("../images/icon-del-hover.png") !important;
}

/* 驗證碼置中*/
#g-recaptcha > div {
  margin: 0 auto !important;
  text-align: center !important;
}

/*按鈕顏色*/
/*@include btn_setting(按鈕顏色,字的顏色);*/
.btn-gray {
  background: #666666;
  border: 1px solid #1493df;
  color: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #666666;
}
.btn-gray:hover, .btn-gray:focus {
  background: #4d4d4d;
  border: 1px solid #4d4d4d;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
.btn-gray:hover span, .btn-gray:focus span {
  padding-right: 25px;
}
.btn-gray:hover span:after, .btn-gray:focus span:after {
  opacity: 1;
  right: 0;
}
.btn-gray:hover span.sr-only, .btn-gray:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
.btn-gray.active {
  background: #4d4d4d;
  border: 1px solid #4d4d4d;
  cursor: pointer;
}
.btn-gray:hover, .btn-gray:focus {
  background: #1493df;
  border: 1px solid #1493df;
  color: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.btn-gray:hover:hover, .btn-gray:hover:focus, .btn-gray:focus:hover, .btn-gray:focus:focus {
  background: #1074b0;
  border: 1px solid #1074b0;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
.btn-gray:hover:hover span, .btn-gray:hover:focus span, .btn-gray:focus:hover span, .btn-gray:focus:focus span {
  padding-right: 25px;
}
.btn-gray:hover:hover span:after, .btn-gray:hover:focus span:after, .btn-gray:focus:hover span:after, .btn-gray:focus:focus span:after {
  opacity: 1;
  right: 0;
}
.btn-gray:hover:hover span.sr-only, .btn-gray:hover:focus span.sr-only, .btn-gray:focus:hover span.sr-only, .btn-gray:focus:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
.btn-gray:hover.active, .btn-gray:focus.active {
  background: #1074b0;
  border: 1px solid #1074b0;
  cursor: pointer;
}

.btn-primary {
  padding: 0.3em 1.5em;
  background: #1493df;
  border: 1px solid #1493df;
  color: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #1493df;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1074b0;
  border: 1px solid #1074b0;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
.btn-primary:hover span, .btn-primary:focus span {
  padding-right: 25px;
}
.btn-primary:hover span:after, .btn-primary:focus span:after {
  opacity: 1;
  right: 0;
}
.btn-primary:hover span.sr-only, .btn-primary:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
.btn-primary.active {
  background: #1074b0;
  border: 1px solid #1074b0;
  cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1493df;
  border: 1px solid #1493df;
  color: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.btn-primary:hover:hover, .btn-primary:hover:focus, .btn-primary:focus:hover, .btn-primary:focus:focus {
  background: #1074b0;
  border: 1px solid #1074b0;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
.btn-primary:hover:hover span, .btn-primary:hover:focus span, .btn-primary:focus:hover span, .btn-primary:focus:focus span {
  padding-right: 25px;
}
.btn-primary:hover:hover span:after, .btn-primary:hover:focus span:after, .btn-primary:focus:hover span:after, .btn-primary:focus:focus span:after {
  opacity: 1;
  right: 0;
}
.btn-primary:hover:hover span.sr-only, .btn-primary:hover:focus span.sr-only, .btn-primary:focus:hover span.sr-only, .btn-primary:focus:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
.btn-primary:hover.active, .btn-primary:focus.active {
  background: #1074b0;
  border: 1px solid #1074b0;
  cursor: pointer;
}

.btn-default {
  background: #333;
  border: 1px solid #1493df;
  color: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.btn-default:hover, .btn-default:focus {
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
.btn-default:hover span, .btn-default:focus span {
  padding-right: 25px;
}
.btn-default:hover span:after, .btn-default:focus span:after {
  opacity: 1;
  right: 0;
}
.btn-default:hover span.sr-only, .btn-default:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
.btn-default.active {
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
  cursor: pointer;
}

.btn-link {
  background: #fff;
  border: 1px solid #1493df;
  color: #333;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.btn-link:hover, .btn-link:focus {
  background: #e6e6e6;
  border: 1px solid #e6e6e6;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
.btn-link:hover span, .btn-link:focus span {
  padding-right: 25px;
}
.btn-link:hover span:after, .btn-link:focus span:after {
  opacity: 1;
  right: 0;
}
.btn-link:hover span.sr-only, .btn-link:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
.btn-link.active {
  background: #e6e6e6;
  border: 1px solid #e6e6e6;
  cursor: pointer;
}
.btn-link:hover, .btn-link:focus {
  color: #1493df !important;
}

.btn_grp button.login-button {
  display: inline-block;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  position: relative;
  z-index: 0;
  margin: 0.8em 0;
  padding: 0.7em 2em !important;
  font-size: 1.2em !important;
  overflow: hidden;
  min-width: 300px !important;
  transition: color 0.3s cubic-bezier(0, 0.25, 0.5, 1);
  background: #3c7cd1;
  border: 1px solid #3c7cd1;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF3C7CD1', endColorstr='#FF58389B');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzNjN2NkMSIvPjxzdG9wIG9mZnNldD0iMTIwJSIgc3RvcC1jb2xvcj0iIzU4Mzg5YiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3c7cd1), color-stop(120%, #58389b));
  background-image: -moz-linear-gradient(top, #3c7cd1 0%, #58389b 120%);
  background-image: -webkit-linear-gradient(top, #3c7cd1 0%, #58389b 120%);
  background-image: linear-gradient(to bottom, #3c7cd1 0%, #58389b 120%);
  -moz-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
  /* &:after{
        width: 300px;
        height: 120px;
        z-index: 2;
        top: -50%;left: -50%;
        @include transform(skew(-78deg));
        background: rgba(white,0.05);
    } */
}
.btn_grp button.login-button.no-bg {
  background: none;
  box-shadow: inset 0 0 0 2px #fff;
}
.btn_grp button.login-button.done {
  background: #607d8b !important;
  box-shadow: inset 0 0 0 2px #607d8b;
  border: 1px solid #607d8b;
  -moz-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
}
.btn_grp button.login-button.done:before, .btn_grp button.login-button.done:after {
  display: none;
}
.btn_grp button.login-button:before, .btn_grp button.login-button:after {
  content: "";
  position: absolute;
  display: block;
}
.btn_grp button.login-button:before {
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  -moz-transform: skewX(-78deg) translateX(-50%);
  -ms-transform: skewX(-78deg) translateX(-50%);
  -webkit-transform: skewX(-78deg) translateX(-50%);
  transform: skewX(-78deg) translateX(-50%);
  -moz-transition: all 0.3s cubic-bezier(0, 0.25, 0.5, 1);
  -o-transition: all 0.3s cubic-bezier(0, 0.25, 0.5, 1);
  -webkit-transition: all 0.3s cubic-bezier(0, 0.25, 0.5, 1);
  transition: all 0.3s cubic-bezier(0, 0.25, 0.5, 1);
  background-color: rgba(255, 255, 255, 0.1);
}
.btn_grp button.login-button:hover:before, .btn_grp button.login-button:active:before {
  -webkit-transform: skewX(-15deg) translateX(0) scaleX(1.35);
  transform: skewX(-15deg) translateX(0) scaleX(1.35);
  background-color: #2a64b0;
}
.btn_grp button.login-button:hover, .btn_grp button.login-button:active {
  color: white;
  -moz-box-shadow: 0 1px 2px 0 rgba(194, 194, 194, 0.5);
  -webkit-box-shadow: 0 1px 2px 0 rgba(194, 194, 194, 0.5);
  box-shadow: 0 1px 2px 0 rgba(194, 194, 194, 0.5);
}
@media screen and (max-width: 767px) {
  .btn_grp button.login-button {
    min-width: inherit !important;
  }
}

.member .boxRight .btn_grp button.login-button {
  min-width: 180px !important;
}

@media screen and (max-width: 767px) {
  .signupBox .btn_grp button.login-button,
  .modalSignup .btn_grp button.login-button {
    min-width: 300px !important;
  }
}

.btn-icon {
  background: #1493df;
  border: 1px solid #1493df;
  color: #333;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  min-width: auto !important;
  padding: 3px;
  margin: 0 0 5px 0;
  background: #39aaed;
  border: 1px solid #1493df;
  color: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.btn-icon:hover, .btn-icon:focus {
  background: #1074b0;
  border: 1px solid #1074b0;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
.btn-icon:hover span, .btn-icon:focus span {
  padding-right: 25px;
}
.btn-icon:hover span:after, .btn-icon:focus span:after {
  opacity: 1;
  right: 0;
}
.btn-icon:hover span.sr-only, .btn-icon:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
.btn-icon.active {
  background: #1074b0;
  border: 1px solid #1074b0;
  cursor: pointer;
}
.btn-icon:hover, .btn-icon:focus {
  background: #1493df;
  border: 1px solid #1493df;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
.btn-icon:hover span, .btn-icon:focus span {
  padding-right: 25px;
}
.btn-icon:hover span:after, .btn-icon:focus span:after {
  opacity: 1;
  right: 0;
}
.btn-icon:hover span.sr-only, .btn-icon:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
.btn-icon.active {
  background: #1493df;
  border: 1px solid #1493df;
  cursor: pointer;
}
.btn-icon.icon-logout {
  color: #dc3545 !important;
  border: 1px solid #dc3545 !important;
  background: #f3b7bd !important;
}
.btn-icon.icon-logout:hover, .btn-icon.icon-logout:focus {
  color: white !important;
  background: #2f549c !important;
}
.btn-icon.icon-trash-empty {
  font-size: 1.5em;
  color: #333;
  background: transparent;
  border: none !important;
}
.btn-icon i {
  font-style: normal;
}
.btn-icon.active {
  background: #0e6599;
  border: 1px solid #1493df;
}
.btn-icon.active:hover, .btn-icon.active:focus {
  color: white;
}
.btn-icon:hover, .btn-icon:focus {
  color: white !important;
  background: #1074b0 !important;
}

.btn-extra {
  background: #666666;
  border: 1px solid #1493df;
  color: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #666666;
  box-shadow: none;
  min-width: auto;
  width: auto;
  font-size: 0.9em;
  padding: 0.4em;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.btn-extra:hover, .btn-extra:focus {
  background: #4d4d4d;
  border: 1px solid #4d4d4d;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
.btn-extra:hover span, .btn-extra:focus span {
  padding-right: 25px;
}
.btn-extra:hover span:after, .btn-extra:focus span:after {
  opacity: 1;
  right: 0;
}
.btn-extra:hover span.sr-only, .btn-extra:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
.btn-extra.active {
  background: #4d4d4d;
  border: 1px solid #4d4d4d;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .btn-extra {
    font-size: 0.8em;
  }
}

.btn-green {
  background: #5CB85C;
  border: 1px solid #1493df;
  color: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.btn-green:hover, .btn-green:focus {
  background: #449d44;
  border: 1px solid #449d44;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
.btn-green:hover span, .btn-green:focus span {
  padding-right: 25px;
}
.btn-green:hover span:after, .btn-green:focus span:after {
  opacity: 1;
  right: 0;
}
.btn-green:hover span.sr-only, .btn-green:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
.btn-green.active {
  background: #449d44;
  border: 1px solid #449d44;
  cursor: pointer;
}

.btn-blue {
  background: #007bff;
  border: 1px solid #1493df;
  color: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.btn-blue:hover, .btn-blue:focus {
  background: #0062cc;
  border: 1px solid #0062cc;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
.btn-blue:hover span, .btn-blue:focus span {
  padding-right: 25px;
}
.btn-blue:hover span:after, .btn-blue:focus span:after {
  opacity: 1;
  right: 0;
}
.btn-blue:hover span.sr-only, .btn-blue:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
.btn-blue.active {
  background: #0062cc;
  border: 1px solid #0062cc;
  cursor: pointer;
}

.btn-yellow {
  background: #FCC211;
  border: 1px solid #1493df;
  color: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.btn-yellow:hover, .btn-yellow:focus {
  background: #d7a303;
  border: 1px solid #d7a303;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
.btn-yellow:hover span, .btn-yellow:focus span {
  padding-right: 25px;
}
.btn-yellow:hover span:after, .btn-yellow:focus span:after {
  opacity: 1;
  right: 0;
}
.btn-yellow:hover span.sr-only, .btn-yellow:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
.btn-yellow.active {
  background: #d7a303;
  border: 1px solid #d7a303;
  cursor: pointer;
}

.btn-orange {
  background: #F77810;
  border: 1px solid #1493df;
  color: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.btn-orange:hover, .btn-orange:focus {
  background: #cd6007;
  border: 1px solid #cd6007;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
.btn-orange:hover span, .btn-orange:focus span {
  padding-right: 25px;
}
.btn-orange:hover span:after, .btn-orange:focus span:after {
  opacity: 1;
  right: 0;
}
.btn-orange:hover span.sr-only, .btn-orange:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
.btn-orange.active {
  background: #cd6007;
  border: 1px solid #cd6007;
  cursor: pointer;
}

.btn-red {
  background: #dc3545;
  border: 1px solid #1493df;
  color: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.btn-red:hover, .btn-red:focus {
  background: #bd2130;
  border: 1px solid #bd2130;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
.btn-red:hover span, .btn-red:focus span {
  padding-right: 25px;
}
.btn-red:hover span:after, .btn-red:focus span:after {
  opacity: 1;
  right: 0;
}
.btn-red:hover span.sr-only, .btn-red:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
.btn-red.active {
  background: #bd2130;
  border: 1px solid #bd2130;
  cursor: pointer;
}

.btn-purple {
  background: #AA5AC5;
  border: 1px solid #1493df;
  color: #fff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.btn-purple:hover, .btn-purple:focus {
  background: #923daf;
  border: 1px solid #923daf;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
.btn-purple:hover span, .btn-purple:focus span {
  padding-right: 25px;
}
.btn-purple:hover span:after, .btn-purple:focus span:after {
  opacity: 1;
  right: 0;
}
.btn-purple:hover span.sr-only, .btn-purple:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
.btn-purple.active {
  background: #923daf;
  border: 1px solid #923daf;
  cursor: pointer;
}

/* 按鈕大小*/
.btn-xl,
.text-xl {
  font-size: 1.5em;
  /*24px*/
}

.btn-lg,
.text-lg {
  font-size: 1.25em;
  /*20px*/
}

.btn-sm,
.text-sm {
  font-size: 0.938em;
  /*15px*/
}

.btn-xs,
.text-xs {
  font-size: 0.75em;
  /*12px*/
}

/* label style*/
.label {
  display: inline-block;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  padding: 4px 8px;
  border-radius: 2px;
  font-size: 0.8em;
  font-weight: 400;
  color: #fff;
}
.label.label-square {
  border-radius: 0;
}
.label.label-default {
  background-color: #b0bec5;
}
.label.label-primary {
  background-color: #1493df;
}
.label.label-secondary {
  background-color: #781F79;
  color: #fff;
}
.label.label-info {
  background-color: #007bff;
}
.label.label-success {
  background-color: #5CB85C;
}
.label.label-warning {
  background-color: #FCC211;
}
.label.label-danger {
  background-color: #dc3545;
}
.label.label-reject {
  background-color: #F77810;
}
.label.label-OK {
  background-color: #0ffaf9;
}

/*按鈕設定*/
/*
    ==========================
    checkboxes & radio buttons
    ==========================
*/
.ex-checkbox, .ex-radio {
  position: relative;
  margin: 12px 0;
  font-size: 14px;
}

.ex-checkbox label, .ex-radio label {
  padding-left: 32px;
  line-height: 140%;
  font-weight: normal;
  display: inline-block;
  position: relative;
}

.ex-checkbox input[type=checkbox], .ex-radio input[type=radio] {
  margin: 0;
  opacity: 0;
  cursor: pointer;
  width: 20px;
  height: 20px;
  z-index: 10;
  position: absolute;
}

/*
    ==========================
    checkboxes
    ==========================
*/
.ex-checkbox input[type=checkbox] + label::before {
  border: 1px solid #bfbfbf;
  width: 20px;
  height: 20px;
  content: '';
  position: absolute;
  left: 0;
  background-color: #fff;
}
.ex-checkbox input[type=checkbox]:hover + label::before {
  border: 2px solid #1493df;
}
.ex-checkbox input[type=checkbox]:focus + label::before {
  box-shadow: 0 0 1px #1493df;
  outline: none;
}
.ex-checkbox input[type=checkbox]:checked + label::before {
  border: 1px solid transparent;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ij48cGF0aCBmaWxsPSIjMDI4OGQxIiBkPSJNMTguOSA4LjhsLTguNyA4LjdjLS4xLjEtLjIuMS0uMyAwbC00LjktNC45Yy0uMS0uMS0uMS0uMiAwLS4zbDEuMi0xLjJjLjEtLjEuMi0uMS4zIDBsMy42IDMuNiA3LjMtNy4zYy4xLS4xLjItLjEuMyAwbDEuMiAxLjJjLjEgMCAuMS4xIDAgLjJ6IiAvPjwvc3ZnPg==") no-repeat center center;
  background-size: 24px 24px;
}
.ex-checkbox input[type=checkbox]:checked:hover + label::before {
  background-size: 30px 30px;
}
.ex-checkbox input[type=checkbox]:disabled {
  cursor: not-allowed;
}
.ex-checkbox input[type=checkbox]:disabled + label {
  color: #bcbcbc;
  cursor: not-allowed;
}
.ex-checkbox input[type=checkbox]:disabled:checked + label::before {
  border: 1px solid transparent;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ij48cGF0aCBmaWxsPSIjYmNiY2JjIiBkPSJNMTguOSA4LjhsLTguNyA4LjdjLS4xLjEtLjIuMS0uMyAwbC00LjktNC45Yy0uMS0uMS0uMS0uMiAwLS4zbDEuMi0xLjJjLjEtLjEuMi0uMS4zIDBsMy42IDMuNiA3LjMtNy4zYy4xLS4xLjItLjEuMyAwbDEuMiAxLjJjLjEgMCAuMS4xIDAgLjJ6IiAvPjwvc3ZnPg==") no-repeat center center;
}
.ex-checkbox input[type=checkbox]:disabled + label::before {
  border: 1px solid #bcbcbc;
}

/*
    ==========================
    radio buttons
    ==========================
*/
.ex-radio input[type=radio] + label::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  border: 1px solid #bfbfbf;
  border-radius: 50%;
  background-color: #fff;
  transition: border 0.3s ease-in-out;
}
.ex-radio input[type=radio]:hover + label::before {
  border: 2px solid #1493df;
}
.ex-radio input[type=radio]:focus + label::before {
  box-shadow: 0 0 1px #1493df;
  outline: none;
}
.ex-radio input[type=radio]:checked + label::before, .ex-radio input[type=radio]:checked:hover + label::before {
  border: 1px solid #1493df;
}
.ex-radio input[type=radio]:checked + label::after {
  background-color: #1493df;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.ex-radio input[type=radio] + label::after {
  position: absolute;
  content: " ";
  width: 12px;
  height: 12px;
  left: 4px;
  top: 4px;
  border-radius: 50%;
  background-color: #ffffff;
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.ex-radio input[type="radio"]:disabled {
  cursor: not-allowed;
}
.ex-radio input[type="radio"]:disabled + label {
  color: #bcbcbc;
  cursor: not-allowed;
}
.ex-radio input[type=radio]:disabled + label::before {
  border: 1px solid #bcbcbc;
}
.ex-radio input[type=radio]:checked:disabled + label::before {
  border: 1px solid #bcbcbc;
}
.ex-radio input[type=radio]:checked:disabled + label::after {
  background-color: #bcbcbc;
}

/*按鈕設定*/
/* $hrColor from _variable.scss*/
/* $hrColor:$color-word;*/
hr {
  margin: 1em 0px;
  display: block;
  border: none;
  clear: both;
}

hr {
  border-top: 1px solid #666;
}
hr.hr1 {
  border-top: 3px double #666;
}
hr.hr2 {
  border-top: 1px dashed #666;
}
hr.hr3 {
  border-top: 1px dotted #666;
}
hr.hr4 {
  background-color: #fff;
  border-top: 2px dashed #666;
}
hr.hr5 {
  background-color: #fff;
  border-top: 2px dotted #666;
}
hr.hr6 {
  border-top: 1px solid #666;
  border-bottom: 1px solid #fff;
}
hr.hr7 {
  border-top: 1px solid #666;
  border-bottom: 1px solid #fff;
}
hr.hrline {
  background: url("../images/hrline.png") repeat-x 0 0;
  width: 100%;
  height: 30px;
  border-top: none;
}

/*分隔線*/
img.img_rounded {
  /*導角，可自訂*/
  -moz-border-radius: 16px;
  -webkit-border-radius: 16px;
  border-radius: 16px;
}
img.img_circle {
  /*圓形*/
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.single_setting .thumbnail {
  position: relative;
  margin: 1%;
  display: block;
  padding: 0;
  float: left;
  width: 31.33333%;
  overflow: hidden;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 767px) {
  .single_setting .thumbnail {
    float: none;
    display: inline-block;
    width: 98%;
    margin: 1% auto;
  }
}
.single_setting .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
}
.single_setting .thumbnail:nth-child(1) .imgOuter {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.single_setting .thumbnail:nth-child(1) .imgOuter:before {
  display: block;
  content: "";
  padding-top: 100%;
}
.single_setting .thumbnail:nth-child(1) .imgOuter img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.single_setting .thumbnail:nth-child(2) .imgOuter {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.single_setting .thumbnail:nth-child(2) .imgOuter:before {
  display: block;
  content: "";
  padding-top: 75%;
}
.single_setting .thumbnail:nth-child(2) .imgOuter img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.single_setting .thumbnail:nth-child(3) .imgOuter {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.single_setting .thumbnail:nth-child(3) .imgOuter:before {
  display: block;
  content: "";
  padding-top: 56.25%;
}
.single_setting .thumbnail:nth-child(3) .imgOuter img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

/* 設定img 在IE9+ SAFARI FIREFOX CHROME -fit*/
/*for IE */
.img-container {
  width: 100%;
  position: relative;
  /* @include aspect-ratio(10, 3);*/
}
.img-container.Size11 {
  position: relative;
  overflow: hidden;
  background: #fff;
  height: 450px;
}
.img-container.Size11:before {
  display: block;
  content: "";
  padding-top: 100%;
}
.img-container.Size11 img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.img-container.Size43 {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.img-container.Size43:before {
  display: block;
  content: "";
  padding-top: 75%;
}
.img-container.Size43 img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.img-container.Size169 {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.img-container.Size169:before {
  display: block;
  content: "";
  padding-top: 56.25%;
}
.img-container.Size169 img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .img-container {
    width: 100%;
    height: inherit;
  }
  .img-container.Size11 {
    height: 300px;
  }
}
.img-container a {
  /* display: block;
  height: 100%;
  width: 100%;
  position: relative; */
}
.img-container a:hover .cardText h3, .img-container a:focus .cardText h3 {
  overflow: inherit;
  white-space: normal;
  text-overflow: inherit;
}
.img-container .caption {
  position: absolute;
  width: 100%;
  padding: 1em .5em .5em;
  font-size: 1.125em;
  color: #FFF;
  margin: 0;
  text-align: center;
  bottom: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.img-container .caption .cardText h3 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /* values are: clip, ellipsis, or a string*/
}
.img-container img {
  width: 100%;
  height: 100%;
}
.img-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.ie-object-cover, .ie-object-fill, .ie-object-contain {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
}
.ie-object-cover img, .ie-object-fill img, .ie-object-contain img {
  opacity: 0;
  width: 0px;
  height: 0px;
}

.ie-object-cover {
  background-size: cover;
}

.ie-object-fill {
  background-size: auto;
}

.ie-object-contain {
  background-size: contain;
}

.fill {
  -o-object-fit: fill;
  object-fit: fill;
}

.contain {
  -o-object-fit: contain;
  object-fit: contain;
}

.cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.none {
  -o-object-fit: none;
  object-fit: none;
}

.scale-down {
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

/*圖片*/
[tooltip] {
  position: relative;
}

[tooltip]::before,
[tooltip]::after {
  text-transform: none;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}

[tooltip]::before {
  content: '';
  border: 5px solid transparent;
  z-index: 1001;
}

[tooltip]::after {
  content: attr(tooltip);
  text-align: left;
  min-width: 150px;
  line-height: 1.5em;
  max-width: 300px;
  font-size: .813em;
  max-height: 5.18288em;
  overflow: hidden;
  padding: .5em;
  border-radius: 4px;
  box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
  background: #333;
  color: #fff;
  z-index: 1000;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

[tooltip='']::before,
[tooltip='']::after {
  display: none !important;
}

[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #333;
}

[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}

[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -0.5em);
}

[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}

[tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}

[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, 0.5em);
}

[tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #333;
  left: calc(0em - 5px);
  transform: translate(-0.5em, -50%);
}

[tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-0.5em, -50%);
}

[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(0em - 5px);
  transform: translate(0.5em, -50%);
}

[tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(0.5em, -50%);
}

@keyframes tooltips-vert {
  to {
    opacity: .9;
    transform: translate(-50%, 0);
  }
}
@keyframes tooltips-horz {
  to {
    opacity: .9;
    transform: translate(0, -50%);
  }
}
/* FX All The Things */
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}

/*tooltip*/
.tabBox {
  overflow: hidden;
  *zoom: 1;
  margin: 1em 2em;
    /* @include screen('xs_mobile') {
        .tab_container{
            padding: 0em;
        }
        .tabs {
            display: none;
        }
        .tab_content{ padding: 0; }
        .tab_drawer_heading {
            display: block;
            background-color:  darken($color-gray,15);
            color: #fff;
            border-top: none;
            text-align: center;
            margin: 0 auto !important ;
            font-size: 1.5em !important;
            padding: 5px;
            display: block;
            cursor: pointer;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;

        }

        .d_active {
            background-color: $secondaryColor;
            color: #fff;
        }
    } */
}
.tabBox ul.tabs {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 47px;
  width: 100%;
  border-bottom: 1px solid #CCC;
  background: #f2f2f2;
}
.tabBox ul.tabs li {
  float: left;
  display: inline-block;
  cursor: pointer;
  padding: 1px 2em;
  font-size: 1.25em;
  height: 47px;
  line-height: 47px;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  color: gray;
  overflow: hidden;
  position: relative;
}
.tabBox ul.tabs li:hover, .tabBox ul.tabs li:focus {
  color: #8c8c8c;
  color: #333;
}
.tabBox ul.tabs li:hover:before, .tabBox ul.tabs li:hover:after, .tabBox ul.tabs li:focus:before, .tabBox ul.tabs li:focus:after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.tabBox ul.tabs li.active {
  background-color: white;
  color: #333;
  -moz-box-shadow: #CCC 0 0 0px 1px inset;
  -webkit-box-shadow: #CCC 0 0 0px 1px inset;
  box-shadow: #CCC 0 0 0px 1px inset;
  display: block;
  position: relative;
  overflow: inherit;
  z-index: 0;
}
.tabBox ul.tabs li.active:before, .tabBox ul.tabs li.active:after {
  position: absolute;
  content: "";
}
.tabBox ul.tabs li.active:before {
  height: 100%;
  width: 100%;
  top: 1px;
  left: 1px;
  right: 1px;
  z-index: -1;
  background: white;
  border-top: 5px solid #781F79;
}
.tabBox ul.tabs li.active:after {
  top: 0;
  right: -10px;
  left: inherit;
  z-index: -3;
  width: 25px;
  height: 47px;
  -webkit-transform: skew(-20deg);
  transform: skew(-20deg);
  background: transparent;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#00000000', endColorstr='#FF808080');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI1JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjgwJSIgc3RvcC1jb2xvcj0iIzgwODA4MCIgc3RvcC1vcGFjaXR5PSIwLjYiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(5%, rgba(0, 0, 0, 0)), color-stop(80%, rgba(128, 128, 128, 0.6)));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 5%, rgba(128, 128, 128, 0.6) 80%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 5%, rgba(128, 128, 128, 0.6) 80%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 5%, rgba(128, 128, 128, 0.6) 80%);
}
.tabBox .tab_last {
  border-right: 0;
}
.tabBox .tab_container {
  border-top: none;
  clear: both;
}
.tabBox .tab_content {
  padding: 2em 0;
  display: none;
}
.tabBox .tab_drawer_heading {
  display: none;
}
@media screen and (max-width: 991px) {
  .tabBox {
    margin: 1em 0em;
  }
}
@media screen and (max-width: 767px) {
  .tabBox {
    margin: 0 0 2em 0;
    -moz-box-shadow: #e7eaf2 0 0 0px 1px inset;
    -webkit-box-shadow: #e7eaf2 0 0 0px 1px inset;
    box-shadow: #e7eaf2 0 0 0px 1px inset;
  }
  .tabBox .tab_container {
    padding: 0 1em;
  }
}

/*頁籤*/
/*http://lab.25sprout.com/responsive_table/*/
table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #a6a6a6;
}
@media screen and (max-width: 575px) {
  table {
    /* width:auto;*/
    position: relative;
  }
}
table caption {
  margin: 0em 0 0 0px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  color: #0e6599;
}
table th,
table td {
  padding: .5em;
  empty-cells: show;
}
table .Num {
  color: #dc3545;
  margin: 0 2px;
}
table .num {
  text-align: center;
}
table td {
  border: 1px solid #e6e6e6;
}
table td a {
  color: #1493df;
}
table th {
  background-color: #F3F3F3;
  color: #333;
  border: 1px solid #999999;
  white-space: normal;
}
table th[scope="row"] {
  text-align: left;
  width: 15%;
}
table tr.unRead {
  background: rgba(204, 204, 204, 0.5) !important;
}
table tr.unRead td {
  font-weight: bold !important;
}
table tr.Read td {
  font-weight: normal !important;
}
table.table_hover tr:hover {
  background: #c5e6fa;
}
table.table_hover tr:nth-child(even):hover {
  background: #c5e6fa;
}
table.table_sprite tr:nth-child(even) {
  background: #f9f9f9;
}
table.table_list {
  border: none;
  clear: both;
  margin: 0 0 1.5em 0;
}
table.table_list th {
  color: white;
  background: #5586c1;
  border: 1px solid #89ade9;
}
table.table_list td button {
  margin-bottom: 0.3em;
}
table.table_list td .logo-xs {
  max-height: 40px;
}
table.table_list td .btn-primary {
  font-size: 0.938em;
  padding: 0.3em;
}
table.table_list td[data-title="Date"] {
  width: 95px;
  text-align: center;
}
table.table_list td[data-title="Venue"] {
  text-align: left !important;
}
table.table_list td[data-title="Ticket Amount"], table.table_list td[data-title="Price(NT$)"] {
  text-align: center;
}
table.table_list tr.borderNone {
  background: transparent !important;
}
table.table_list tr.borderNone:hover, table.table_list tr.borderNone:focus {
  background: transparent !important;
}
table.table_list tr.borderNone td {
  white-space: nowrap;
  border: none !important;
}
table.table_list tr.borderNone td:nth-child(4), table.table_list tr.borderNone td:nth-child(5), table.table_list tr.borderNone td:nth-child(6), table.table_list tr.borderNone td:nth-child(7) {
  border-bottom: 3px solid #333 !important;
}
table.table_list tr.borderNone td:nth-child(4) {
  font-weight: bold;
}
table.table_list tr.borderNone td:nth-child(6) {
  color: #dc3545;
}
@media screen and (max-width: 575px) {
  table.table_list {
    border: none;
    background-color: transparent !important;
    /*Force table to not be like tables anymore*/
  }
  table.table_list thead,
  table.table_list tbody,
  table.table_list th,
  table.table_list td,
  table.table_list tr {
    display: block;
    width: 100%;
  }
  table.table_list thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  table.table_list thead tr:nth-child(1) {
    border: none;
  }
  table.table_list tr {
    margin-bottom: 2em;
    border: 2px solid #ccc;
  }
  table.table_list tr:hover {
    background: transparent;
  }
  table.table_list tr:nth-child(even):hover {
    background: transparent;
  }
  table.table_list tr.borderNone {
    border: none;
    margin-top: -60px;
  }
  table.table_list tr.borderNone td {
    border-width: 2px;
  }
  table.table_list tr td:nth-child(7) {
    border-bottom: none !important;
  }
  table.table_list th {
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: .5em;
  }
  table.table_list td {
    /* Behave  like a "row"*/
    border: none !important;
    border-bottom: 1px solid #eee !important;
    position: relative;
    padding-left: 38% !important;
    white-space: normal;
    text-align: left !important;
    width: auto;
    color: #666666;
  }
  table.table_list td:before {
    content: attr(data-title);
    position: absolute;
    top: .5em;
    left: .5em;
    width: 30%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
    color: #333;
  }
  table.table_list td .logo-xs {
    height: auto;
  }
}
table.table_list.table_include > th[scope="row"] {
  text-align: right !important;
}
table.table_list.table_include > th[scope="row"] > th[scope="row"] {
  text-align: left !important;
}

.col-6.topTB-func .container {
  overflow: inherit;
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.col-6.topTB-func .col .form_grp {
  margin-bottom: 5px;
}
.col-6.topTB-func .btn-func {
  margin-top: 0 !important;
}

.table-style-1 {
  padding: 1em 0;
  background: #f5f5f5;
  margin-top: 1em;
}
.table-style-1 table {
  border: 0;
}
.table-style-1 table th, .table-style-1 table td {
  padding: .25em;
  border: 0;
}
.table-style-1 table th {
  border: 0;
  background: none;
  width: 120px;
  text-align: right;
  vertical-align: top;
}
.table-style-1 table td input {
  padding: 2px 10px;
  color: #fff;
  margin-bottom: 5px;
}
.table-style-1 table td input:hover {
  color: #fff;
  background: #1074b0;
  border: 1px solid #1074b0;
}

.fix_th_table {
  margin: 1em 0;
}
@media screen and (max-width: 767px) {
  .fix_th_table {
    position: relative;
    width: 100%;
    overflow: hidden !important;
  }
  .fix_th_table td {
    border: 0;
  }
}
.fix_th_table table {
  border: 0;
}
@media screen and (max-width: 767px) {
  .fix_th_table table {
    display: block;
    width: 100%;
    overflow-x: scroll;
    padding-bottom: 1em;
  }
}
.fix_th_table th,
.fix_th_table td {
  width: 10em;
  padding: .8em 0;
  text-align: center;
  line-height: 1.2;
}
.fix_th_table th a,
.fix_th_table th span.text-muted,
.fix_th_table th span.status,
.fix_th_table td a,
.fix_th_table td span.text-muted,
.fix_th_table td span.status {
  display: block;
  padding: .25em;
}
.fix_th_table th span.status,
.fix_th_table td span.status {
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  background: #555;
  border-radius: 4px;
  padding: .25em .5em;
}
@media screen and (max-width: 767px) {
  .fix_th_table th,
  .fix_th_table td {
    display: inline-block;
    margin-right: -6px;
    margin-left: 0;
    margin-top: -1px;
  }
}
.fix_th_table th:first-child {
  width: 4em;
  white-space: normal;
}
@media screen and (max-width: 767px) {
  .fix_th_table th:first-child {
    position: absolute !important;
    left: 0;
    top: auto;
    height: 100%;
  }
}
.fix_th_table tr {
  border-bottom: solid 1px #ddd;
}
@media screen and (max-width: 767px) {
  .fix_th_table tr {
    display: block;
    clear: both;
    width: auto;
    padding-left: 4em;
  }
  .fix_th_table tr:first-child {
    border-top: #ddd 1px solid;
    white-space: nowrap;
  }
}

.table_wrapper {
  overflow-x: scroll;
}
.table_wrapper table {
  border: 0;
}
.table_wrapper table a,
.table_wrapper table span.text-muted,
.table_wrapper table span.status {
  display: block;
  padding: .25em;
}
.table_wrapper table span.status {
  width: fit-content;
  color: #fff;
  background: #555;
  border-radius: 4px;
  padding: .25em .5em;
}
@media screen and (max-width: 767px) {
  .table_wrapper {
    width: 100%;
    display: block;
    overflow: hidden;
    *zoom: 1;
    padding-bottom: 1em;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translate3d(0, 0, 0);
  }
  .table_wrapper table {
    width: 100%;
    min-width: 545px;
  }
}

/*表格*/
/*參照雅瓊範例*/
select::-ms-expand {
  display: none;
}

.short {
  box-shadow: 0 0px 0px 1px #ccc inset !important;
  width: auto;
  margin-left: 15px;
  margin-right: 8px;
}

.form_grid {
  margin: 0em;
}
.form_grid .form_grp {
  padding: .2em;
}

.form_grp a {
  color: #1493df;
}
.form_grp a:hover, .form_grp a:focus {
  text-decoration: underline;
}
.form_grp .form_content .container {
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.form_grp .form_content label {
  font-weight: normal;
  color: #4d4d4d;
  padding-left: 15px;
  padding-right: 15px;
}
.form_grp .form_content .form_grp label.form_title {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.one-pair {
  overflow: hidden;
  *zoom: 1;
  margin-bottom: 10px;
}

form input.calendar {
  box-shadow: 0 0px 0px 1px #ccc inset !important;
  width: auto !important;
  margin-left: 15px;
}

form {
  /* form 全域行內設定*/
  /*---------------------------------------------下拉選單--------//*/
  /*---------------------------------------------預設設定--------//*/
  /*---------------------------------------------文字輸入表單--------//*/
  /**/
  /*---------------------------------------------下拉選單--------//*/
  /*---------------------------------------------reset--------//*/
  /*---------------------------------------------checkbox & radio--------//*/
  /*---------------------------------------------readonly disable -------//*/
}
form .form_grp,
form .check_grp,
form .radio_grp,
form .btn_grp,
form .upload_grp {
  margin-bottom: .2em;
}
form .btn_grp {
  vertical-align: middle;
}
form .btn_grp button[type="button"], form .btn_grp button[type="submit"] {
  position: relative;
}
form .btn_grp button[type="button"] .icon-search, form .btn_grp button[type="submit"] .icon-search {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 20px;
}
form .check_grp,
form .radio_grp {
  /* radio與check個別行內設定*/
}
form .check_grp label,
form .radio_grp label {
  display: block;
}
form .check_grp.form_inline label,
form .radio_grp.form_inline label {
  display: inline-block;
  margin: .2em .5em 0 0;
}
form .check_grp img.calendar,
form .radio_grp img.calendar {
  display: inline-block;
  cursor: pointer;
  padding: 6px;
  margin-left: 14px;
  vertical-align: top;
}
form .check_grp button.check_file,
form .radio_grp button.check_file {
  margin: 0 16px;
}
form .form_grp,
form .upload_grp {
  /* 文字表單個別行內設定*/
}
form .form_grp.form_inline label,
form .upload_grp.form_inline label {
  display: inline-block;
  margin-right: .5em;
}
form .form_grp.form_inline input,
form .form_grp.form_inline textarea,
form .form_grp.form_inline select,
form .upload_grp.form_inline input,
form .upload_grp.form_inline textarea,
form .upload_grp.form_inline select {
  width: auto;
}
form.form_inline label {
  display: inline-block;
  vertical-align: middle;
  /* margin-right: .5em;*/
}
form.form_inline label ~ input, form.form_inline label ~ textarea {
  display: inline-block;
  width: auto;
  vertical-align: middle;
}
form.form_inline input[type="text"],
form.form_inline input[type="password"],
form.form_inline select,
form.form_inline textarea {
  width: auto;
  display: inline-block;
}
form.form_inline .form_grp,
form.form_inline .check_grp,
form.form_inline .radio_grp,
form.form_inline .upload_grp {
  display: inline-block;
  margin-right: 0em;
}
form.form_inline .btn_grp .btn,
form.form_inline .btn_grp input[type="submit"],
form.form_inline .btn_grp input[type="reset"],
form.form_inline .btn_grp input[type="button"],
form.form_inline .btn_grp input[type="search"],
form.form_inline .btn_grp button[type="submit"],
form.form_inline .btn_grp button[type="reset"],
form.form_inline .btn_grp button[type="button"],
form.form_inline .btn_grp button[type="search"] {
  padding: .45em 1.2em;
}
form.form_inline .btn_grp input[type="submit"],
form.form_inline .btn_grp button[type="submit"] {
  box-shadow: 0 0px 0px 1px #1493df inset;
}
form.form_inline select,
form.form_inline textarea {
  width: auto;
}
@media screen and (max-width: 767px) {
  form .col-6 .container, form .col-12 .container {
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  form .col-6 .container .col, form .col-12 .container .col {
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
form .upload_customize .inner {
  width: 100%;
  margin-top: 5px;
}
form .upload_customize .inner .file_name {
  padding: 8px 80px 8px 8px;
  margin-bottom: 5px;
  box-sizing: border-box;
  border-bottom: solid 1px #ddd;
}
form .upload_customize .inner .file_name span {
  margin-right: 10px;
  color: #000;
}
form .upload_customize .inner .file_name .delete {
  display: block;
  float: right;
  margin-right: -72px;
}
form .upload_customize .inner .file_name .delete a {
  color: #fff;
  background: url("../images/icon/icon_close2.png") 50% 50% no-repeat;
  background-size: contain;
  font-size: 0;
  display: block;
  width: 26px;
  height: 26px;
}
form .upload_customize .inner .file_name.type-2 {
  border-bottom: 0;
  padding: 8px;
}
form .upload_customize .inner .file_name.type-2 .inner {
  padding: 8px 80px 8px 8px;
  margin-bottom: 5px;
  box-sizing: border-box;
  border-bottom: solid 1px #ddd;
}
form .upload_customize .inner .progress_bar {
  float: right;
  display: none;
  margin-top: 7px;
  margin-right: 10px;
  width: 150px;
  height: 8px;
  border: 1px solid #999999;
  text-align: left;
  background-color: white;
  padding: 1px;
}
form .upload_customize .inner .progress_bar .bar {
  width: 100%;
  height: 100%;
  background-color: #6989e0;
}
form .upload_customize .inner .status {
  float: right;
  margin-right: 10px;
  color: #ff0000;
  display: none;
}
form .form-type2 .form_grp {
  margin-bottom: .45em;
}
form .form-type2 .form_grp .col .form_grp {
  margin-bottom: 0 !important;
}
form .form-type2 .form_content {
  position: relative;
}
form .form-type2 .form_content span.title {
  color: #222;
  margin-bottom: .25em;
  display: inline-block;
  font-weight: 500;
}
form .form-type2 .form_content span.title.necessary:before {
  content: '*';
  display: inline-block;
  padding-right: 5px;
  color: #ba0012;
}
form .form-type2 .form_content .phoneCol.type-input .col, form .form-type2 .form_content .phoneCol.type-select .col, form .form-type2 .form_content .address.type-input .col, form .form-type2 .form_content .address.type-select .col {
  position: relative;
}
form .form-type2 .form_content .phoneCol.type-input .col:before, form .form-type2 .form_content .phoneCol.type-select .col:before, form .form-type2 .form_content .address.type-input .col:before, form .form-type2 .form_content .address.type-select .col:before {
  content: '';
  position: absolute;
  display: block;
  width: 10px;
  height: 2px;
  background: #000;
}
form .form-type2 .form_content .phoneCol.type-input .col:before, form .form-type2 .form_content .address.type-input .col:before {
  right: -4px;
  top: 30px;
}
@media screen and (max-width: 767px) {
  form .form-type2 .form_content .phoneCol.type-input .col:before, form .form-type2 .form_content .address.type-input .col:before {
    right: -16px;
  }
}
form .form-type2 .form_content .phoneCol.type-input .col input, form .form-type2 .form_content .address.type-input .col input {
  margin-top: 0;
}
form .form-type2 .form_content .phoneCol.type-input .col input + span.title, form .form-type2 .form_content .address.type-input .col input + span.title {
  top: 20px;
  left: 16px;
}
form .form-type2 .form_content .phoneCol.type-input .col input:focus + span.title, form .form-type2 .form_content .address.type-input .col input:focus + span.title {
  top: 10px;
}
form .form-type2 .form_content .phoneCol.type-input .col input[value] + span.title, form .form-type2 .form_content .phoneCol.type-input .col input[placeholder] + span.title, form .form-type2 .form_content .address.type-input .col input[value] + span.title, form .form-type2 .form_content .address.type-input .col input[placeholder] + span.title {
  top: 10px;
}
form .form-type2 .form_content .phoneCol.type-select .col:before, form .form-type2 .form_content .address.type-select .col:before {
  right: -4px;
  top: 56px;
}
@media screen and (max-width: 767px) {
  form .form-type2 .form_content .phoneCol.type-select .col:before, form .form-type2 .form_content .address.type-select .col:before {
    right: -16px;
  }
}
form .form-type2 .form_content .phoneCol.type-select .col input, form .form-type2 .form_content .address.type-select .col input {
  margin-top: 27px !important;
}
form .form-type2 .form_content .phoneCol.type-select .col input + span.title, form .form-type2 .form_content .address.type-select .col input + span.title {
  top: 47px;
  left: 16px;
}
form .form-type2 .form_content .phoneCol.type-select .col input:focus + span.title, form .form-type2 .form_content .address.type-select .col input:focus + span.title {
  top: 37px;
}
form .form-type2 .form_content .phoneCol.type-select .col input[value] + span.title, form .form-type2 .form_content .phoneCol.type-select .col input[placeholder] + span.title, form .form-type2 .form_content .address.type-select .col input[value] + span.title, form .form-type2 .form_content .address.type-select .col input[placeholder] + span.title {
  top: 37px;
}
@media screen and (max-width: 767px) {
  form .form-type2 .form_content .phoneCol.type-select .col input, form .form-type2 .form_content .address.type-select .col input {
    margin-top: 0 !important;
  }
  form .form-type2 .form_content .phoneCol.type-select .col input + span.title, form .form-type2 .form_content .address.type-select .col input + span.title {
    top: 20px;
  }
  form .form-type2 .form_content .phoneCol.type-select .col input:focus + span.title, form .form-type2 .form_content .address.type-select .col input:focus + span.title {
    top: 10px;
  }
}
form .form-type2 .form_content .phoneCol .col:after, form .form-type2 .form_content .address .col:after {
  display: none !important;
}
form .form-type2 .form_content .address .container {
  display: flex;
  flex-flow: row nowrap;
}
form .form-type2 .form_content .address .container .col:before {
  display: none;
}
form .form-type2 .form_content .address .container .col.country, form .form-type2 .form_content .address .container .col.zone {
  flex: 0 0 180px;
  margin-right: 15px;
}
form .form-type2 .form_content .address .container .col:last-child {
  flex: 1 1 auto;
  flex-basis: calc(100% - 360px - 30px);
}
@media screen and (max-width: 991px) {
  form .form-type2 .form_content .address .container {
    flex-flow: row wrap;
  }
  form .form-type2 .form_content .address .container .col.country, form .form-type2 .form_content .address .container .col.zone, form .form-type2 .form_content .address .container .col:last-child {
    flex-basis: 100%;
  }
}
form .form-type2 .form_content input {
  color: #333;
  font-size: 1em;
  border: 0;
  padding: .45em 1em;
  background: #fff;
  vertical-align: middle;
  margin-bottom: .3em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-transition: border, 0.2s, ease-out;
  -o-transition: border, 0.2s, ease-out;
  -webkit-transition: border, 0.2s, ease-out;
  transition: border, 0.2s, ease-out;
  -moz-transition: box-shadow, 0.2s, ease-out;
  -o-transition: box-shadow, 0.2s, ease-out;
  -webkit-transition: box-shadow, 0.2s, ease-out;
  transition: box-shadow, 0.2s, ease-out;
  box-shadow: 0 0px 0px 1px #CCC inset;
  padding: 22px 16px 0 16px;
  height: 3.8em;
  margin-bottom: 0;
}
form .form-type2 .form_content input + span.title {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  left: 16px;
  top: 20px;
  color: #222;
  font-size: 1.125em;
  font-weight: 400;
  transition: all .3s ease;
}
form .form-type2 .form_content input:focus + span.title {
  color: #aaa;
  top: 10px;
  font-size: 86%;
  font-weight: 400;
}
form .form-type2 .form_content select {
  line-height: inherit;
  height: 3.8em;
  padding: .5em 24px .5em 1em;
}
form .form-type2 .form_content input[value] + span.title, form .form-type2 .form_content input[placeholder] + span.title {
  color: #aaa;
  top: 10px;
  font-size: 86%;
  font-weight: 400;
}
form .form-type2 .form_content input[placeholder] + span.title {
  color: #222;
}
form .form-type2 .form_grp.has-danger > .form_content {
  font-family: auto;
}
form .form-type2 .form_grp.has-danger > .form_content span.title {
  color: #ba0012;
}
form .form-type2 .form_grp.has-danger > .form_content input, form .form-type2 .form_grp.has-danger > .form_content select, form .form-type2 .form_grp.has-danger > .form_content textarea {
  box-shadow: 0 0 0 1px #ba0012 inset;
}
form .form-type2 .result .btn_grp button, form .form-type2 .result .btn_grp button[type="button"] {
  padding: .25em .5em !important;
  background: #777777;
  border: 1px solid #919191;
}
form .form-type2 .result .btn_grp button:hover, form .form-type2 .result .btn_grp button[type="button"]:hover {
  color: #fff;
  background: #2f2f2f;
  border: 1px solid #2f2f2f;
}
form .form-type2 .result .radio_grp .col-3 {
  padding: 0 0 1em;
}
form .form-type2 .result .result-type2 {
  display: flex;
  flex-flow: row wrap;
}
form .form-type2 .result .result-type2 .col {
  flex: 0 0 auto;
  flex-basis: calc(25% - 4px);
  background: url(../images/icon/icon_add.svg) right 12px top 50% no-repeat, #e6e6e6;
  background-size: 20px 20px;
  color: #272727;
  padding: .5em 2.2em .5em 1em;
  border-radius: 4px;
  margin: 2px 2px;
  box-sizing: border-box;
  cursor: pointer;
}
form .form-type2 .result .result-type2 .col:hover, form .form-type2 .result .result-type2 .col:focus {
  color: #fff;
  background: url(../images/icon/icon_add.svg) right 12px top 50% no-repeat, #2a7abd;
  background-size: 20px 20px;
}
@media screen and (max-width: 991px) {
  form .form-type2 .result .result-type2 .col {
    flex-basis: calc(100% / 3 - 4px);
  }
}
@media screen and (max-width: 767px) {
  form .form-type2 .result .result-type2 .col {
    flex-basis: calc(100% / 2 - 4px);
  }
}
form .form-type2 .Checked_Item {
  padding: 1em 0;
}
form .form-type2 .Checked_Item h4 {
  margin-top: .5em !important;
  margin-bottom: 0 !important;
  font-weight: bold !important;
}
form .form-type2 .Checked_Item .Items input.btn {
  border: 0 !important;
  height: auto !important;
  font-size: 1em;
  color: #fff;
}
form .form-type2 .add_new .btn_grp {
  margin-top: 1em !important;
}
form .form-type2 .check_grp input,
form .form-type2 .radio_grp input {
  margin-top: 0 !important;
  height: auto;
  width: 20px;
  padding: 10px;
}
form .form-type2 .radio_grp input {
  border-radius: 50%;
}
form .form-type2 hr {
  margin: 1.5em 0;
  border-top: 1px dotted #e3e3e3;
}
form .form-type2 *[class*="notice_normal"],
form .form-type2 *[class*="notice_info"],
form .form-type2 *[class*="notice_success"],
form .form-type2 *[class*="notice_warning"],
form .form-type2 *[class*="notice_error"] {
  background: none;
  border-left: 0;
  padding: 1px 1.5em;
  margin: 0;
}
form .form-type2 *[class*="notice_normal"]:before,
form .form-type2 *[class*="notice_info"]:before,
form .form-type2 *[class*="notice_success"]:before,
form .form-type2 *[class*="notice_warning"]:before,
form .form-type2 *[class*="notice_error"]:before {
  top: 6px;
  left: 2px;
}
form .form-type2 *[class*="notice_normal"] span.pass,
form .form-type2 *[class*="notice_info"] span.pass,
form .form-type2 *[class*="notice_success"] span.pass,
form .form-type2 *[class*="notice_warning"] span.pass,
form .form-type2 *[class*="notice_error"] span.pass {
  display: inline-block;
  color: #009000;
}
form .form-type2 *[class*="notice_normal"] span.pass:before,
form .form-type2 *[class*="notice_info"] span.pass:before,
form .form-type2 *[class*="notice_success"] span.pass:before,
form .form-type2 *[class*="notice_warning"] span.pass:before,
form .form-type2 *[class*="notice_error"] span.pass:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-bottom: -2px;
  margin-right: 2px;
  background: url(../images/icon/icon_checked.svg) 50% 50% no-repeat;
}
form .captcha {
  width: 400px;
  margin: auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
form .captcha .col {
  padding: 0 .5em;
}
form .captcha .col input {
  padding: 1.5em 1em;
}
form .captcha .col.code a {
  display: block;
}
form .captcha .col .has-danger input {
  box-shadow: 0 0 0 1px #ba0012 inset;
}
@media screen and (max-width: 767px) {
  form .captcha {
    flex-flow: row wrap;
    width: 100%;
  }
  form .captcha .col {
    flex: 1 1 100%;
  }
  form .captcha .col.code {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
  }
  form .captcha .col:last-child {
    margin-top: 16px;
  }
}
form label,
form legend {
  margin: .5em 0;
}
form label.inline input,
form label.inline select,
form label.inline textarea,
form legend.inline input,
form legend.inline select,
form legend.inline textarea {
  width: auto;
}
form fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
form input,
form textarea,
form select,
form button {
  color: #333;
  font-size: 1em;
  border: 0;
  padding: .45em 1em;
  background: #fff;
  vertical-align: middle;
  margin-bottom: .3em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-transition: border, 0.2s, ease-out;
  -o-transition: border, 0.2s, ease-out;
  -webkit-transition: border, 0.2s, ease-out;
  transition: border, 0.2s, ease-out;
  -moz-transition: box-shadow, 0.2s, ease-out;
  -o-transition: box-shadow, 0.2s, ease-out;
  -webkit-transition: box-shadow, 0.2s, ease-out;
  transition: box-shadow, 0.2s, ease-out;
  box-shadow: 0 0px 0px 1px #CCC inset;
}
form input,
form select,
form textarea {
  width: 100%;
  -webkit-appearance: none;
  /*清除 safari 的預設樣式*/
  -moz-appearance: none;
  appearance: none;
}
form input[type="text"]::-webkit-input-placeholder,
form input[type="password"]::-webkit-input-placeholder,
form input[type="file"]::-webkit-input-placeholder,
form input[type="button"]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #CCC;
}
form input[type="text"]::-moz-placeholder,
form input[type="password"]::-moz-placeholder,
form input[type="file"]::-moz-placeholder,
form input[type="button"]::-moz-placeholder {
  /* Firefox 19+ */
  color: #CCC;
}
form input[type="text"]:-ms-input-placeholder,
form input[type="password"]:-ms-input-placeholder,
form input[type="file"]:-ms-input-placeholder,
form input[type="button"]:-ms-input-placeholder {
  /* IE 10+ */
  color: #CCC;
}
form input[type="text"]:-moz-placeholder,
form input[type="password"]:-moz-placeholder,
form input[type="file"]:-moz-placeholder,
form input[type="button"]:-moz-placeholder {
  /* Firefox 18- */
  color: #CCC;
}
form button,
form input[type="button"],
form button[type="button"] {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #1493df;
  border: 1px solid #1493df;
  color: #FFF;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
form button:hover, form button:focus,
form input[type="button"]:hover,
form input[type="button"]:focus,
form button[type="button"]:hover,
form button[type="button"]:focus {
  background: #1074b0;
  border: 1px solid #1074b0;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
form button:hover span, form button:focus span,
form input[type="button"]:hover span,
form input[type="button"]:focus span,
form button[type="button"]:hover span,
form button[type="button"]:focus span {
  padding-right: 25px;
}
form button:hover span:after, form button:focus span:after,
form input[type="button"]:hover span:after,
form input[type="button"]:focus span:after,
form button[type="button"]:hover span:after,
form button[type="button"]:focus span:after {
  opacity: 1;
  right: 0;
}
form button:hover span.sr-only, form button:focus span.sr-only,
form input[type="button"]:hover span.sr-only,
form input[type="button"]:focus span.sr-only,
form button[type="button"]:hover span.sr-only,
form button[type="button"]:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
form button.active,
form input[type="button"].active,
form button[type="button"].active {
  background: #1074b0;
  border: 1px solid #1074b0;
  cursor: pointer;
}
form input[type="button"]:hover,
form button[type="button"]:hover {
  background: #1074b0;
  border: 1px solid #1074b0;
}
form input[type="button"]:focus,
form button[type="button"]:focus {
  background: #1493df;
  border: 1px solid #1493df;
}
form textarea {
  color: #333;
  font-size: 1em;
  border: 0;
  padding: .45em 1em;
  background: #fff;
  vertical-align: middle;
  margin-bottom: .3em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-transition: border, 0.2s, ease-out;
  -o-transition: border, 0.2s, ease-out;
  -webkit-transition: border, 0.2s, ease-out;
  transition: border, 0.2s, ease-out;
  -moz-transition: box-shadow, 0.2s, ease-out;
  -o-transition: box-shadow, 0.2s, ease-out;
  -webkit-transition: box-shadow, 0.2s, ease-out;
  transition: box-shadow, 0.2s, ease-out;
  box-shadow: 0 0px 0px 1px #CCC inset;
  height: 5em;
  overflow-y: scroll;
}
@media screen and (max-width: 575px) {
  form textarea {
    width: 100%;
  }
}
form input[type="radio"]:focus,
form input[type="checkbox"]:focus,
form input[type="text"]:focus,
form input[type="reset"]:focus,
form input[type="file"]:focus,
form input[type="button"]:focus,
form input[type="password"]:focus,
form button[type="text"]:focus,
form button[type="reset"]:focus,
form button[type="file"]:focus,
form button[type="password"]:focus,
form textarea:focus,
form select:focus {
  box-shadow: 0px 0px 0px 1px #ccc inset;
  outline: none;
}
form select {
  line-height: 2.4em;
  height: 2.4em;
  padding: 0 24px 0 .5em;
  background: #fff url(../images/basic/icon_select_arrow.png) no-repeat right 8px center;
  background-size: 18px;
}
form select option {
  outline: none;
  border: none;
}
form select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
form input[type="reset"], form button[type="reset"] {
  background: #999999;
  border: 1px solid #1493df;
  color: #FFF;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #999999;
  text-shadow: none;
}
form input[type="reset"]:hover, form input[type="reset"]:focus, form button[type="reset"]:hover, form button[type="reset"]:focus {
  background: gray;
  border: 1px solid gray;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
form input[type="reset"]:hover span, form input[type="reset"]:focus span, form button[type="reset"]:hover span, form button[type="reset"]:focus span {
  padding-right: 25px;
}
form input[type="reset"]:hover span:after, form input[type="reset"]:focus span:after, form button[type="reset"]:hover span:after, form button[type="reset"]:focus span:after {
  opacity: 1;
  right: 0;
}
form input[type="reset"]:hover span.sr-only, form input[type="reset"]:focus span.sr-only, form button[type="reset"]:hover span.sr-only, form button[type="reset"]:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
form input[type="reset"].active, form button[type="reset"].active {
  background: gray;
  border: 1px solid gray;
  cursor: pointer;
}
form input[type="checkbox"],
form input[type="radio"] {
  font-size: 1em;
  margin: -2px 5px 2px 1px;
  width: 20px;
  height: 20px;
  background-color: #f7f6ee;
  border: none;
  background-position: center center;
  background-size: 40%;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
form input[type="radio"] {
  border-radius: 50%;
}
form input[type="checkbox"]:checked,
form input[type="radio"]:checked {
  border-color: #1493df;
  background-color: #1493df;
  outline: none;
}
form input[type="checkbox"]:checked {
  background-image: url(../images/basic/icon_check.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 80%;
  box-shadow: #1493df 0 0 0 1px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
form input[type="radio"]:checked {
  box-shadow: #fff 0 0 0 3px inset, #1493df 0 0 0 1px;
}
form input[readonly],
form input[disable] {
  background: #f2f2f2;
  color: #b3b3b3;
  border-color: #b3b3b3;
}
form input[readonly] ~ label,
form input[disable] ~ label {
  color: #b3b3b3;
}
form input[readonly]:hover, form input[readonly]:focus,
form input[disable]:hover,
form input[disable]:focus {
  border-color: #b3b3b3;
  /*box-shadow: none;  cursor: not-allowed;*/
}

/* 檔案上傳*/
/* https://codepen.io/shubhamc_007/pen/oZyodd*/
.upload_grp,
.search_grp {
  position: relative;
}
.upload_grp input[readonly],
.upload_grp input[disable],
.search_grp input[readonly],
.search_grp input[disable] {
  background: transparent;
  color: #666;
}
.upload_grp .upload_btn,
.upload_grp .search_btn,
.search_grp .upload_btn,
.search_grp .search_btn {
  position: absolute;
  overflow: hidden;
  top: 0px;
  right: 0px;
  min-width: auto;
  height: 38px;
  line-height: 28px;
  box-sizing: border-box;
  background: #1493df;
  border: 1px solid #1493df;
  color: #FFF;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 5px 1em !important;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.upload_grp .upload_btn:hover, .upload_grp .upload_btn:focus,
.upload_grp .search_btn:hover,
.upload_grp .search_btn:focus,
.search_grp .upload_btn:hover,
.search_grp .upload_btn:focus,
.search_grp .search_btn:hover,
.search_grp .search_btn:focus {
  background: #1074b0;
  border: 1px solid #1074b0;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
.upload_grp .upload_btn:hover span, .upload_grp .upload_btn:focus span,
.upload_grp .search_btn:hover span,
.upload_grp .search_btn:focus span,
.search_grp .upload_btn:hover span,
.search_grp .upload_btn:focus span,
.search_grp .search_btn:hover span,
.search_grp .search_btn:focus span {
  padding-right: 25px;
}
.upload_grp .upload_btn:hover span:after, .upload_grp .upload_btn:focus span:after,
.upload_grp .search_btn:hover span:after,
.upload_grp .search_btn:focus span:after,
.search_grp .upload_btn:hover span:after,
.search_grp .upload_btn:focus span:after,
.search_grp .search_btn:hover span:after,
.search_grp .search_btn:focus span:after {
  opacity: 1;
  right: 0;
}
.upload_grp .upload_btn:hover span.sr-only, .upload_grp .upload_btn:focus span.sr-only,
.upload_grp .search_btn:hover span.sr-only,
.upload_grp .search_btn:focus span.sr-only,
.search_grp .upload_btn:hover span.sr-only,
.search_grp .upload_btn:focus span.sr-only,
.search_grp .search_btn:hover span.sr-only,
.search_grp .search_btn:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
.upload_grp .upload_btn.active,
.upload_grp .search_btn.active,
.search_grp .upload_btn.active,
.search_grp .search_btn.active {
  background: #1074b0;
  border: 1px solid #1074b0;
  cursor: pointer;
}
.upload_grp .upload_btn:hover, .upload_grp .upload_btn:focus,
.upload_grp .search_btn:hover,
.upload_grp .search_btn:focus,
.search_grp .upload_btn:hover,
.search_grp .upload_btn:focus,
.search_grp .search_btn:hover,
.search_grp .search_btn:focus {
  cursor: pointer !important;
}
.upload_grp .upload_btn:hover span, .upload_grp .upload_btn:focus span,
.upload_grp .search_btn:hover span,
.upload_grp .search_btn:focus span,
.search_grp .upload_btn:hover span,
.search_grp .upload_btn:focus span,
.search_grp .search_btn:hover span,
.search_grp .search_btn:focus span {
  padding-right: 0 !important;
}
.upload_grp .search_btn,
.search_grp .search_btn {
  padding: 0 0 !important;
  border: 0 !important;
}

input[type="file"],
input[type="button"]
input.search_check {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

/*---------------------------------------------form setting--------//*/
form .form_grp,
form .check_grp,
form .radio_grp,
form .btn_grp,
form .upload_grp,
form .search_grp {
  margin-bottom: .2em;
}
form .btn_grp {
  clear: both;
}
form .form_grp {
  margin-bottom: 2em;
}
form .upload_grp .upload_btn {
  -moz-border-radius: 0px 4px 4px 0;
  -webkit-border-radius: 0px;
  border-radius: 0px 4px 4px 0;
}
form .check_grp,
form .radio_grp {
  /* radio與check個別行內設定*/
}
form .check_grp label,
form .radio_grp label {
  display: block;
}
form .check_grp.form_inline label,
form .radio_grp.form_inline label {
  display: inline-block;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
form .check_grp.form_vertical label,
form .radio_grp.form_vertical label {
  display: block;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
form .form_grp,
form .upload_grp {
  /* 文字表單個別行內設定*/
}
form .form_grp.form_inline label,
form .upload_grp.form_inline label {
  display: inline-block;
  margin-right: .5em;
}
form .form_grp.form_inline input,
form .form_grp.form_inline textarea,
form .form_grp.form_inline select,
form .upload_grp.form_inline input,
form .upload_grp.form_inline textarea,
form .upload_grp.form_inline select {
  width: auto;
}
form .upload_grp input {
  height: 38px;
}
form.form_inline fieldset, form.form_vertical fieldset {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
form.form_inline fieldset:before, form.form_vertical fieldset:before {
  text-align: center;
  font-weight: bold;
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  z-index: -1;
  top: 20px;
  left: 0;
  margin: 0 auto;
  background: #CCC;
}
form.form_inline fieldset legend, form.form_vertical fieldset legend {
  padding: 10px 1em;
  background: #FFF;
  border: 1px solid #CCC;
}
form.form_inline .col-6 .calendar .col,
form.form_inline .col-12 .calendar .col, form.form_vertical .col-6 .calendar .col,
form.form_vertical .col-12 .calendar .col {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  form.form_inline .col-6 .calendar .col,
  form.form_inline .col-12 .calendar .col, form.form_vertical .col-6 .calendar .col,
  form.form_vertical .col-12 .calendar .col {
    float: left;
    width: 50%;
  }
}
form.form_inline .col-6 .calendar .col img,
form.form_inline .col-12 .calendar .col img, form.form_vertical .col-6 .calendar .col img,
form.form_vertical .col-12 .calendar .col img {
  display: inline-block;
  vertical-align: middle;
}
form.form_inline .col-6 .calendar .col:last-child,
form.form_inline .col-12 .calendar .col:last-child, form.form_vertical .col-6 .calendar .col:last-child,
form.form_vertical .col-12 .calendar .col:last-child {
  text-align: right;
}
@media screen and (max-width: 767px) {
  form.form_inline .col-6 .calendar .col:last-child,
  form.form_inline .col-12 .calendar .col:last-child, form.form_vertical .col-6 .calendar .col:last-child,
  form.form_vertical .col-12 .calendar .col:last-child {
    text-align: left;
  }
}
form.form_inline .col-6 .calendar.time p.date,
form.form_inline .col-12 .calendar.time p.date, form.form_vertical .col-6 .calendar.time p.date,
form.form_vertical .col-12 .calendar.time p.date {
  margin: 0 0 5px;
  color: #666666;
}
form.form_inline .col-6 .calendar.time .col,
form.form_inline .col-12 .calendar.time .col, form.form_vertical .col-6 .calendar.time .col,
form.form_vertical .col-12 .calendar.time .col {
  text-align: center;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
form.form_inline .col-6 .calendar.time .col select,
form.form_inline .col-12 .calendar.time .col select, form.form_vertical .col-6 .calendar.time .col select,
form.form_vertical .col-12 .calendar.time .col select {
  width: 30% !important;
}
form.form_inline .col-6 .calendar.time .col:nth-child(2):after,
form.form_inline .col-12 .calendar.time .col:nth-child(2):after, form.form_vertical .col-6 .calendar.time .col:nth-child(2):after,
form.form_vertical .col-12 .calendar.time .col:nth-child(2):after {
  display: block;
  position: absolute;
  content: '~';
  top: 6px;
  right: 0;
}
form.form_inline .col-6 .col,
form.form_inline .col-12 .col, form.form_vertical .col-6 .col,
form.form_vertical .col-12 .col {
  margin-bottom: .5em;
}
form.form_inline .col-6 .col.clearfix,
form.form_inline .col-12 .col.clearfix, form.form_vertical .col-6 .col.clearfix,
form.form_vertical .col-12 .col.clearfix {
  clear: both;
  zoom: 1;
}
form.form_inline .col-6 .col.clearfix:before, form.form_inline .col-6 .col.clearfix:after,
form.form_inline .col-12 .col.clearfix:before,
form.form_inline .col-12 .col.clearfix:after, form.form_vertical .col-6 .col.clearfix:before, form.form_vertical .col-6 .col.clearfix:after,
form.form_vertical .col-12 .col.clearfix:before,
form.form_vertical .col-12 .col.clearfix:after {
  content: "";
  display: table;
}
form.form_inline .col-6 .col.clearfix:after,
form.form_inline .col-12 .col.clearfix:after, form.form_vertical .col-6 .col.clearfix:after,
form.form_vertical .col-12 .col.clearfix:after {
  clear: both;
}
form.form_inline .col-6 .col .col-12 .col,
form.form_inline .col-12 .col .col-12 .col, form.form_vertical .col-6 .col .col-12 .col,
form.form_vertical .col-12 .col .col-12 .col {
  width: 100% !important;
}
form.form_inline .col-6 .col .col-12 .col input,
form.form_inline .col-12 .col .col-12 .col input, form.form_vertical .col-6 .col .col-12 .col input,
form.form_vertical .col-12 .col .col-12 .col input {
  width: 90%;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  form.form_inline .col-6 .col .col-12 .col input,
  form.form_inline .col-12 .col .col-12 .col input, form.form_vertical .col-6 .col .col-12 .col input,
  form.form_vertical .col-12 .col .col-12 .col input {
    width: 90%;
  }
}
@media screen and (max-width: 575px) {
  form.form_inline .col-6 .col .col-12 .col input,
  form.form_inline .col-12 .col .col-12 .col input, form.form_vertical .col-6 .col .col-12 .col input,
  form.form_vertical .col-12 .col .col-12 .col input {
    width: 87%;
  }
}
form.form_inline label {
  display: inline-block;
  vertical-align: middle;
  /* margin-right: .5em;*/
}
form.form_inline label ~ input, form.form_inline label ~ textarea {
  display: inline-block;
  width: auto;
  vertical-align: middle;
}
form.form_inline input[type="text"],
form.form_inline input[type="password"],
form.form_inline select,
form.form_inline textarea {
  width: auto;
  display: inline-block;
}
form > .col-12 > .col > .form_grp > .form_title {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 0;
}
@media (min-width: 992px) {
  form > .col-12 > .col > .form_grp > .form_title {
    float: left;
    width: 25%;
  }
}
@media screen and (max-width: 991px) {
  form > .col-12 > .col > .form_grp > .form_title {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  form > .col-12 > .col > .form_grp > .form_title {
    width: 100%;
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
form > .col-12 > .col > .form_grp > .form_content {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  form > .col-12 > .col > .form_grp > .form_content {
    float: left;
    width: 58.33333%;
  }
}
@media screen and (max-width: 991px) {
  form > .col-12 > .col > .form_grp > .form_content {
    width: 68%;
  }
}
@media screen and (max-width: 767px) {
  form > .col-12 > .col > .form_grp > .form_content {
    width: 100%;
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
form .form_vertical .col-12 .form_grp .form_title {
  padding-left: 0;
}

.inline {
  display: inline-block;
}
.inline .form_title,
.inline .form_content {
  display: inline-block;
  float: left !important;
  width: inherit !important;
}

.form_grid {
  margin: 0 auto 1em auto;
  clear: both;
  /* 特殊版型:標題文字置左,*/
}
.form_grid h3 {
  margin: 0em 0 5px 0;
  text-align: left;
  font-size: 1.25em;
  font-weight: bold;
  color: #222;
}
.form_grid .form_grp {
  clear: both;
  /* padding: 5px; */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.form_grid .form_title {
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: bold;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .form_grid .form_title {
    text-align: left;
  }
}
.form_grid .form_content {
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .form_grid .form_content {
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.form_grid.variable .form_grp {
  width: 100% !important;
}
.form_grid.variable .form_grp .form_title {
  text-align: left;
  white-space: nowrap;
  width: 8%;
}
@media screen and (max-width: 991px) {
  .form_grid.variable .form_grp .form_title {
    width: 10%;
  }
}
@media screen and (max-width: 767px) {
  .form_grid.variable .form_grp .form_title {
    width: 100%;
  }
}
.form_grid.variable .form_grp .form_content {
  width: 92%;
}
@media screen and (max-width: 991px) {
  .form_grid.variable .form_grp .form_content {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .form_grid.variable .form_grp .form_content {
    width: 100%;
  }
}
.form_grid.variable .form_grp .form_content .row-space {
  margin-bottom: 5px;
}
.form_grid.variable .form_grp .form_content .row-space label {
  display: inline-block;
}
.form_grid.variable .form_grp .form_content .row-space .col-10-2.block .col:nth-child(1) {
  padding-left: 0;
  width: 90%;
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 1399px) {
  .form_grid.variable .form_grp .form_content .row-space .col-10-2.block .col:nth-child(1) {
    width: 88%;
  }
}
@media screen and (max-width: 991px) {
  .form_grid.variable .form_grp .form_content .row-space .col-10-2.block .col:nth-child(1) {
    width: 85%;
  }
}
@media screen and (max-width: 767px) {
  .form_grid.variable .form_grp .form_content .row-space .col-10-2.block .col:nth-child(1) {
    width: 100%;
    margin-bottom: 0;
  }
}
.form_grid.variable .form_grp .form_content .row-space .col-10-2.block .col:nth-child(2) {
  width: auto;
  padding-right: 0;
  margin: 0;
  position: relative;
  min-height: 1px;
  padding-left: 2px;
  padding-right: 2px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.form_content .col-3.check_grp .col:nth-child(5n),
.form_content .col-3.radio_grp .col:nth-child(5n) {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  *zoom: 1;
  clear: both;
}
.form_content .col-4.check_grp .col:nth-child(4n),
.form_content .col-4.radio_grp .col:nth-child(4n) {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  *zoom: 1;
  clear: both;
}
.form_content .col-6.check_grp .col:nth-child(3n),
.form_content .col-6.radio_grp .col:nth-child(3n) {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  *zoom: 1;
  clear: both;
}
.form_content .chosen-container-single {
  font-size: 1em;
  text-align: left;
  width: 100% !important;
}
.form_content .chosen-container-single .chosen-single {
  position: relative;
  border-radius: 5px;
  width: 100%;
  line-height: 2.4em;
  height: 2.4em;
  padding: 0 24px 0 .5em;
  border: 1px solid #CCC;
  background: #fff url(../../images/basic/icon_select_arrow.png) no-repeat right center !important;
  background-size: 20px !important;
  background-image: none;
  box-shadow: none;
}
.form_content .chosen-container-single .chosen-single div {
  display: none;
}
.form_content .chosen-container-single .chosen-single abbr {
  top: 12px;
}
.form_content .chosen-container-single.chosen-container-active.chosen-with-drop .chosen-single {
  border: 2px solid #1493df;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form_vertical h3 {
  margin: 1em 0 6px 0em;
  text-align: left;
  font-size: 1.25em;
  font-weight: bold;
  color: #565656;
  clear: both;
}
.form_vertical .form_grp {
  display: block;
  margin: 1em 2em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  *zoom: 1;
}
.form_vertical .form_grp .form_title, .form_vertical .form_grp .form_content {
  float: none !important;
  width: 100% !important;
  text-align: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  *zoom: 1;
}
@media screen and (max-width: 767px) {
  .form_vertical .form_grp .form_title, .form_vertical .form_grp .form_content {
    text-align: left;
  }
}

.form_inline .col {
  text-align: left;
  min-height: 1px;
  font-size: 1em;
  padding: 2px 0;
}
.form_inline .col .form_grp {
  display: block;
}
.form_inline .col .form_grp .form_title {
  float: left;
  font-weight: bold;
  padding-top: 5px;
  line-height: 1;
  text-align: right;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .form_inline .col .form_grp .form_title {
    text-align: left !important;
    float: none !important;
    width: 100% !important;
    display: block !important;
  }
}
@media screen and (max-width: 575px) {
  .form_inline .col .form_grp .form_content {
    width: 100% !important;
    display: block !important;
  }
}
.form_inline .col .form_grp .form_content input[type="text"],
.form_inline .col .form_grp .form_content input[type="password"],
.form_inline .col .form_grp .form_content select,
.form_inline .col .form_grp .form_content textarea {
  width: 100%;
  display: block;
}

.result {
  padding: 0 0 1.5em;
  margin-bottom: 1.5em;
  border-bottom: solid 1px #adadad;
}
.result .btn_grp {
  margin-bottom: 0 !important;
}
.result .btn_grp button, .result .btn_grp button[type="button"] {
  padding: .25em .5em !important;
  background: #777777;
  border: 1px solid #919191;
}
.result .btn_grp button:hover, .result .btn_grp button[type="button"]:hover {
  color: #fff;
  background: #2f2f2f;
  border: 1px solid #2f2f2f;
}
.result .radio_grp .col-3 {
  padding: 0 0 1em;
}

.Checked_Item {
  padding: 1em 0;
}
.Checked_Item h4 {
  margin-top: .5em !important;
  margin-bottom: 0 !important;
  font-weight: bold !important;
}
.Checked_Item .Items {
  background: #f5f5f5;
  padding: 1em 1em;
  margin: .5em 0 1em;
}
.Checked_Item .Items.form-control-danger {
  box-shadow: 0 0px 0px 1px #dc3545 inset;
}
.Checked_Item .Items.form-control-danger h3 {
  color: #dc3545;
}
.Checked_Item .Items h3 {
  margin: 0 !important;
  font-weight: normal;
  text-align: center;
}
.Checked_Item .Items input.btn {
  background: url("../images/icon/icon_close.png") right 50% no-repeat, #4460ba !important;
  border: 1px solid #4460ba !important;
  background-size: contain !important;
  padding: .5em 2.5em .5em 1.2em !important;
  margin: 2px;
}
.Checked_Item .Items input.btn:hover, .Checked_Item .Items input.btn:focus {
  background: url("../images/icon/icon_close.png") right 50% no-repeat, #5d18bc !important;
  background-size: contain !important;
}

.add_new {
  text-align: center;
}
.add_new h4 {
  margin-bottom: .5em !important;
  font-weight: bold !important;
  text-align: left;
}
.add_new p {
  margin-bottom: 0 !important;
}
.add_new .btn_grp {
  margin-bottom: 0 !important;
}
.add_new .btn_grp button, .add_new .btn_grp button[type="button"] {
  padding: .25em .5em !important;
  background: #777777;
  border: 1px solid #919191;
}
.add_new .btn_grp button:hover, .add_new .btn_grp button[type="button"]:hover {
  color: #fff;
  background: #2f2f2f;
  border: 1px solid #2f2f2f;
}

.has-danger .form-check-label,
.has-danger .form-control-feedback,
.has-danger .form_title,
.has-danger .form_content,
.has-danger .check_grp.form-control-danger input,
.has-danger h4 {
  color: #ba0012 !important;
  font-family: Arial;
}

.has-danger .form-control-danger label {
  margin-bottom: 0 !important;
}

.has-danger .form-control-danger input,
.has-danger .form-control-danger textarea,
.has-danger .form-control-danger select,
.has-danger .form-control-danger .phoneCol input,
.has-danger .form-control-danger .search_btn button,
.has-danger .form-control-danger .upload_btn,
.has-danger .radio_grp.form-control-danger,
.has-danger .check_grp.form-control-danger,
.has-danger .my-upload {
  border: none;
  outline: none;
  -moz-box-shadow: 0 0 0 1px #ba0012 inset;
  -webkit-box-shadow: 0 0 0 1px #ba0012 inset;
  box-shadow: 0 0 0 1px #ba0012 inset;
}

.my-upload {
  border-radius: 4px;
  padding: .6em 15px !important;
}

.has-danger .form-control-danger textarea {
  box-shadow: none;
  border: solid 1px #ba0012;
  border-right: solid 0.1em #ba0012;
}

.form_content label + textarea,
.form_content .upload_grp + textarea,
.form_content input.upload_grp,
.form_content .inner-wrap + textarea,
.has-danger .form-control-danger label + textarea,
.has-danger .form-control-danger .upload_grp + textarea,
.has-danger .form-control-danger.my-upload textarea,
.has-danger .form-control-danger > .inner-wrap + textarea {
  margin: 0 1em .75em;
  width: calc(100% - 30px);
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.form_content textarea,
.upload_customize + textarea {
  margin-top: .5em !important;
}

.has-danger .form-control-danger.my-upload textarea {
  margin: 0 0 .75em;
  width: 100%;
}

.form_content .upload_grp,
.has-danger .form-control-danger .upload_grp {
  margin: 0 1em .5em;
  width: calc(100% - 30px);
  box-shadow: none !important;
  outline: none;
}

.has-danger .form-control-danger .upload_btn,
.has-danger .form-control-danger .upload_grp .upload_file {
  -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset;
}

.has-danger .radio_grp.form-control-danger,
.has-danger .check_grp.form-control-danger {
  padding: .45em 0;
}

.has-danger .form-control-danger label input {
  -moz-box-shadow: 0 0px 0px 1px #ccc inset;
  -webkit-box-shadow: 0 0px 0px 1px #ccc inset;
  box-shadow: 0 0px 0px 1px #ccc inset;
}

.has-danger .form-control-danger label input[type="radio"]:checked {
  box-shadow: #fff 0 0 0 3px inset, #1493df 0 0 0 1px;
}

.has-danger .form-control-danger label input[type="checkbox"]:checked {
  box-shadow: #1493df 0 0 0 1px inset, #1493df 0 0 0 1px;
}

.has-danger .form-control-danger input:focus,
.has-danger .form-control-danger select:focus,
.has-danger .form-control-danger .upload_btn:focus,
.has-danger .radio_grp.form-control-danger:focus,
.has-danger .check_grp.form-control-danger:focus,
.has-danger .form_inline.form-control-danger:focus {
  border: none;
  outline: none;
  -moz-box-shadow: 0px 0px 0px 1px #ba0012 inset;
  -webkit-box-shadow: 0px 0px 0px 1px #ba0012 inset;
  box-shadow: 0px 0px 0px 1px #ba0012 inset;
}

.modalBox form input:hover, .modalBox form input:focus {
  -moz-box-shadow: 0 0px 0px 1px #1493df inset;
  -webkit-box-shadow: 0 0px 0px 1px #1493df inset;
  box-shadow: 0 0px 0px 1px #1493df inset;
}

.modalBox .has-danger .form-control-danger input,
.modalBox .has-danger .form-control-danger input:hover,
.modalBox .has-danger .form-control-danger input:focus {
  box-shadow: 0px 0px 0px 1px #ccc inset;
}

.has-danger .form_inline.form-control-danger,
.has-danger .radio_grp.form-control-danger,
.has-danger .check_grp.form-control-danger {
  -moz-border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  border-radius: 0.25rem;
}

.form-control-danger, .form-control-success,
.form-control-warning {
  padding-right: 2.25rem;
  background-repeat: no-repeat;
  background-position: center right .5625rem;
  background-size: 1.125rem 1.125rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: .3rem .5rem;
  font-size: 1rem;
  line-height: 1.25;
  color: #464a4c;
  background-image: none;
  background-repeat: no-repeat;
  background-position: right center;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: .25rem;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.input-group {
  display: inline-table;
  vertical-align: middle;
}
.input-group .input-group-addon,
.input-group .input-group-btn,
.input-group .form-control {
  width: auto;
}

/* Input groups need that 100% width though*/
.input-group > .form-control {
  width: 100%;
}

.has-feedback {
  position: relative;
}

.has-feedback .form-control {
  padding-right: 42.5px;
}

.has-feedback .form-control-feedback {
  position: absolute;
  top: 25px;
  right: 0;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
  color: #3c763d;
}

.has-success .form-control {
  border-color: #3c763d;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus {
  border-color: #2b542c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}

.has-success .form-control-feedback {
  color: #3c763d;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
  color: #8a6d3b;
}

.has-warning .form-control {
  border-color: #8a6d3b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .form-control:focus {
  border-color: #66512c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}

.has-warning .form-control-feedback {
  color: #8a6d3b;
}

.has-danger .help-block,
.has-danger .control-label,
.has-danger .radio,
.has-danger .checkbox,
.has-danger .radio-inline,
.has-danger .checkbox-inline {
  color: #ba0012;
}

/* .has-danger .form-control {
    border-color: $importantColor;;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-danger .form-control:focus {
    border-color: #843534;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483
} */
.has-danger .input-group-addon {
  color: #ba0012;
  border-color: #ba0012;
  background-color: #f2dede;
}

.form-control-static {
  margin-bottom: 0;
}

.help-danger {
  color: #ba0012;
}

.help-block {
  display: block;
  padding: 5px;
  margin-bottom: 10px;
  color: #888;
}
.help-block label {
  display: inline-block;
}

.help-inline {
  margin-bottom: 10px;
  color: #888;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .input-group > .form-control {
    width: 100%;
  }

  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }

  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    vertical-align: middle;
  }

  .form-inline .radio input[type=radio],
  .form-inline .checkbox input[type=checkbox] {
    float: none;
    margin-left: 0;
  }

  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
/*---------------------------------------------captcha--------//*/
img.captcha {
  display: inline-block;
  vertical-align: middle;
  max-height: 2.4em;
  margin-bottom: .5em;
}
img.captcha + input {
  display: inline-block;
  width: auto;
  vertical-align: middle;
}
img.captcha ~ img {
  display: inline-block;
  vertical-align: middle;
  max-height: 2.4em;
  margin-bottom: .5em;
}

/*---------------------------------------------必填欄位說明--------//*/
abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

/*表單*/
[class^="i_"]:before {
  content: "";
  display: inline-block;
  height: 1em;
  width: 1em;
  /* margin: -0.4em 0em;*/
  vertical-align: middle;
  speak: none;
}

/* 反轉*/
.i_invert:before {
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

/* tts_icon setting*/
input[checked="checked"] .i_grid:before, input[checked="checked"] .i_calendar:before, input[checked="checked"] .i_forward:before, input[checked="checked"] .i_afterward:before {
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

.i_grid:before {
  background-image: url(../images/icon/icon_grid.png);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_calendar:before {
  background-image: url(../images/icon/icon_calendar.png);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_forward:before {
  background-image: url(../images/icon/icon_forward.png);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_afterward:before {
  background-image: url(../images/icon/icon_afterward.png);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

/* hyui_icon setting*/
.i_apple:before {
  background-image: url(../images/icon/icon_apple.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_arrow_left:before {
  background-image: url(../images/icon/icon_arrow_left.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_arrow_right:before {
  background-image: url(../images/icon/icon_arrow_right.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_bookmark:before {
  background-image: url(../images/icon/icon_bookmark.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_chat:before {
  background-image: url(../images/icon/icon_chat.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_check:before {
  background-image: url(../images/icon/icon_check.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_clock:before {
  background-image: url(../images/icon/icon_clock.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_close:before {
  background-image: url(../images/icon/icon_close.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_edit:before {
  background-image: url(../images/icon/icon_edit.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_facebook:before {
  background-image: url(../images/icon/icon_facebook.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_googleplus:before {
  background-image: url(../images/icon/icon_googleplus.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

/* .i_grid {*/
/*     @include hyui_icon('icon_grid');*/
/* }*/
.i_heart:before {
  background-image: url(../images/icon/icon_heart.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_home:before {
  background-image: url(../images/icon/icon_home.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_info:before {
  background-image: url(../images/icon/icon_info.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_link:before {
  background-image: url(../images/icon/icon_link.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_linkedin:before {
  background-image: url(../images/icon/icon_linkedin.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_lock:before {
  background-image: url(../images/icon/icon_lock.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_mail:before {
  background-image: url(../images/icon/icon_mail.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_rss:before {
  background-image: url(../images/icon/icon_rss.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_setting:before {
  background-image: url(../images/icon/icon_setting.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_star:before {
  background-image: url(../images/icon/icon_star.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_twitter:before {
  background-image: url(../images/icon/icon_twitter.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_video:before {
  background-image: url(../images/icon/icon_video.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_vimeo:before {
  background-image: url(../images/icon/icon_vimeo.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

.i_youtube:before {
  background-image: url(../images/icon/icon_youtube.svg);
  background-size: cover;
  margin-top: -0.1em;
  margin-bottom: .1em;
}

/*圖示*/
body {
  -webkit-text-size-adjust: none;
}

/* tab的外框線*/
a:focus,
button:focus {
  outline: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  /* @include box-shadow(0 0px 0px 1px $primaryColor inset);*/
}

/* 導盲磚*/
.accesskey {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 9;
  color: #333;
  font-size: 1em;
}
@media screen and (max-width: 767px) {
  .accesskey {
    display: none;
  }
}

/* 隱藏*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* more按鈕*/
a.more {
  display: block;
  width: 10em;
  text-align: center;
  height: 2.5em;
  margin: .5em auto .5em;
  line-height: 2.5;
  color: #1493df;
  border: 1px solid #1493df;
  text-align: center;
  overflow: hidden;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  transition-property: color;
  transition-duration: 0.2s;
}
a.more:after {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid #FFF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: -10px;
  top: 14px;
  border-left: none;
  border-bottom: none;
  transition: .3s ease-out;
}
a.more:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1493df;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
}
a.more:hover, a.more:focus, a.more.active {
  color: white;
}
a.more:hover:before, a.more:focus:before, a.more.active:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}
a.more:hover:after, a.more:focus:after, a.more.active:after {
  right: 15px;
}

/* scrollTop*/
.scrollToTop {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url(../images/icon/icon_top.png) no-repeat center top rgba(0, 0, 0, 0.4);
  text-align: center;
  color: #FFF;
  line-height: 50px;
  text-decoration: none;
  position: fixed;
  bottom: 10px;
  right: 20px;
  transition: .3s ease-out;
  display: none;
  z-index: 9;
  text-indent: -999999px;
}
.scrollToTop:hover {
  color: #FFF !important;
  background: url(../images/icon/icon_top.png) no-repeat center top rgba(0, 0, 0, 0.8);
}

.scroll-block {
  position: absolute;
  left: 50%;
  bottom: 0;
  margin: 0 0 40px -39.5px;
  width: 60px;
  border: 0;
  height: 60px;
  outline: 0;
  background: none;
}
.scroll-block:after {
  content: "";
  top: 0;
  left: 50%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  border: 1px rgba(63, 68, 71, 0.3) dashed;
  margin: 0 auto;
  display: block;
}

.scroll-block.active:hover .scroll-text {
  -webkit-transform: translate3d(0, -25px, 0);
  transform: translate3d(0, -25px, 0);
}

.scroller-arrow {
  width: 81px;
  height: 19px;
  margin: auto;
  position: absolute;
  top: 54%;
  left: -6px;
  right: 0;
  -webkit-animation: arrowPulse 1.5s ease-in-out infinite alternate;
  animation: arrowPulse 1.5s ease-in-out infinite alternate;
  margin-bottom: 15px;
}
.scroller-arrow:before {
  width: 45px;
  background: #333;
  height: 4px;
  content: '';
  left: 0;
  position: absolute;
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  -webkit-transform: rotate(27deg);
  transform: rotate(27deg);
  border-radius: 3px;
}
.scroller-arrow:after {
  width: 45px;
  background: #333;
  height: 4px;
  content: '';
  right: 0;
  position: absolute;
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  -webkit-transform: rotate(-27deg);
  transform: rotate(-27deg);
  border-radius: 3px;
  top: 20px;
}

@-webkit-keyframes arrowPulse {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 30px, 0);
    opacity: 0;
  }
}
@keyframes arrowPulse {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    opacity: 0;
  }
}
/* RigisterModel*/
.RigisterModel {
  width: 75px;
  height: 50px;
  padding-top: 25px;
  border-radius: 50%;
  background: url(../images/basic/top.png) no-repeat center -4px #2f549c;
  text-align: center;
  color: #FFF;
  line-height: 1.2;
  text-decoration: none;
  position: fixed;
  bottom: 80px;
  right: 10px;
  display: none;
  z-index: 99999999;
  transition: .3s ease-out;
}
.RigisterModel:hover {
  border: 0;
  color: #FFF !important;
  background: url(../images/basic/top.png) no-repeat center -8px rgba(47, 84, 156, 0.8);
}
@media screen and (max-width: 767px) {
  .RigisterModel {
    display: block !important;
  }
}

/* img*/
img.img-responsive {
  display: block;
  max-width: 100%;
  /* Part 1: Set a maximum relative to the parent*/
  height: auto;
  /* Part 2: Scale the height according to the width, otherwise you get stretching*/
}

/* Contextual colors*/
.text-muted {
  color: #999;
  padding: 1.25em .5em;
}

.necessary {
  color: #d63c59;
  margin: 0px .2em;
}

.tooltip {
  text-align: center;
  padding: 40px 0;
}
.tooltip span {
  display: inline-block;
  background: #DEDEDE;
  text-align: center;
  padding: 10px;
  width: 100px;
  height: 20px;
  line-height: 20px;
  vertical-align: baseline;
}
.tooltip p > em {
  color: #d63c59;
}

.hr_block {
  text-align: left;
}
.hr_block span {
  font-size: .75em;
}
.hr_block hr {
  margin: 10px 0 !important;
}

.show {
  display: block !important;
}

.hidden {
  display: none !important;
}

/*檔案下載*/
.file_download {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  *zoom: 1;
}
.file_download h3 {
  font-size: 1.5em;
  padding: 12px 0px 15px 0px;
  margin: 0.5em 0px 0.2em;
  border-bottom: 1px solid #1493df;
}
.file_download ul {
  counter-reset: counter;
  list-style-type: none;
  padding: 0;
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  .file_download ul {
    margin-left: 0;
  }
}
.file_download li {
  position: relative;
  margin-bottom: 10px;
  border-bottom: 1px solid #EEE;
}
.file_download li .update,
.file_download li .file_view {
  font-size: .813em;
  color: #AAA;
  width: 100px;
  float: right;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .file_download li .update,
  .file_download li .file_view {
    display: inline-block;
    float: none;
    width: auto;
    margin-top: 0;
  }
}
@media screen and (max-width: 575px) {
  .file_download li .update,
  .file_download li .file_view {
    display: none;
  }
}
.file_download li .update {
  width: 150px;
}
@media screen and (max-width: 767px) {
  .file_download li .update {
    margin-left: 5px;
  }
}
.file_download li a {
  padding: .2em 0px .2em 65px;
  position: relative;
  height: auto;
  line-height: 1.45em;
  display: inline-block;
  width: 45%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /* values are: clip, ellipsis, or a string*/
}
.file_download li a:before {
  position: absolute;
  /* outline: 1px solid red;*/
  top: 5px;
  left: 0px;
  text-align: right;
  width: 30px;
  counter-increment: counter;
  content: counters(counter,".") " . ";
}
@media screen and (max-width: 767px) {
  .file_download li a {
    margin-right: 0px;
    /* display: block;*/
    width: 85%;
  }
}
.file_download li a .kb {
  font-size: .75em;
  color: #666;
  display: inline-block;
  margin: 0px .5em;
}
.file_download li a:after {
  content: "";
  background: url(../images/basic/icon_other.jpg);
  width: 21px;
  height: 24px;
  position: absolute;
  top: 2px;
  left: 35px;
  text-align: right;
}
.file_download li a[href$="doc"]:after {
  background: url(../images/basic/icon_doc.jpg);
}
.file_download li a[href$="odf"]:after {
  background: url(../images/basic/icon_odf.jpg);
}
.file_download li a[href$="pdf"]:after {
  background: url(../images/basic/icon_pdf.jpg);
}
.file_download li a[href$="xls"]:after {
  background: url(../images/basic/icon_xls.jpg);
}
.file_download li a[href$="ppt"]:after {
  background: url(../images/basic/icon_ppt.jpg);
}
.file_download li a[href$="jpg"]:after {
  background: url(../images/basic/icon_jpg.jpg);
}
.file_download li a[href$="mp3"]:after {
  background: url(../images/basic/icon_mp3.jpg);
}
.file_download li a[href$="mov"]:after {
  background: url(../images/basic/icon_mov.jpg);
}
.file_download li a[href$="txt"]:after {
  background: url(../images/basic/icon_txt.jpg);
}
.file_download li a[href$="dot"]:after {
  background: url(../images/basic/icon_doc.jpg);
}
.file_download li a[href$="zip"]:after {
  background: url(../images/basic/icon_zip.jpg);
}
.file_download li a:hover, .file_download li a:focus {
  color: #1493df !important;
}

/* 外部連結*/
.web_link {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  *zoom: 1;
}
.web_link h3 {
  font-size: 1.5em;
  padding: 12px 0px 15px 0px;
  margin: 0.5em 0px 0.2em;
  border-bottom: 1px solid #1493df;
}
.web_link ol,
.web_link ul {
  counter-reset: counter;
  list-style-type: none;
  padding: 0;
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  .web_link ol,
  .web_link ul {
    margin-left: 0;
  }
}
.web_link li {
  position: relative;
  margin-bottom: 10px;
  border-bottom: 1px solid #EEE;
}
.web_link li a {
  padding: .2em 0px .2em 35px;
  position: relative;
  height: auto;
  line-height: 1.45em;
  display: block;
}
.web_link li a:before {
  position: absolute;
  /* outline: 1px solid red;*/
  top: 5px;
  left: 0px;
  text-align: right;
  width: 30px;
  counter-increment: counter;
  content: counters(counter,".") " . ";
}

/*小元素*/
/* OPTIONS */
.dropdown {
  text-align: left;
  color: #343C3F;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  margin-bottom: 1em;
}
.dropdown.closed .dropdown-menu {
  margin-top: 0px;
  border: none;
}
.dropdown.closed .dropdown-menu li {
  height: 0px;
}
.dropdown.closed .title {
  border-bottom: none;
  /* &:after {*/
  /*   top: 8px;*/
  /*   @include transform(rotate(0deg));*/
  /* }*/
}
.dropdown .title {
  display: block;
  position: relative;
  cursor: pointer;
  color: white;
  display: block;
  padding: 8px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border-color: #2f549c;
  -moz-box-shadow: 0 0px 0px 1px #2f549c inset;
  -webkit-box-shadow: 0 0px 0px 1px #2f549c inset;
  box-shadow: 0 0px 0px 1px #2f549c inset;
  background: #2f549c url(../images/basic/icon_select_arrow-white.png) no-repeat right center;
  /* &:after {*/
  /*   display: block;*/
  /*   content: "▾";*/
  /*   position: absolute;*/
  /*   right: 14px;*/
  /*   top: 10px;*/
  /*   @include transform(rotate(180deg));*/
  /* }*/
}
.dropdown .title a {
  color: white;
}
.dropdown .dropdown-menu {
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  border: 1px solid #CCC;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.dropdown ul {
  position: absolute;
  top: 30px;
  width: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}
.dropdown ul li {
  display: block;
  border-bottom: 1px solid #D9E1E4;
  padding: 8px;
  vertical-align: top;
  overflow: hidden;
  cursor: pointer;
  -moz-transition: margin-top 0.5s, height 0.5s;
  -o-transition: margin-top 0.5s, height 0.5s;
  -webkit-transition: margin-top 0.5s, height 0.5s;
  transition: margin-top 0.5s, height 0.5s;
}
.dropdown ul li:hover {
  background-color: #D9E1E4;
  color: #343C3F;
}
.dropdown ul li.is-selected {
  background-color: #1493df;
}
.dropdown ul li.is-hidden {
  height: 0;
  padding: 0;
  margin: 0;
  border: none;
}
.dropdown .typeahead {
  width: 99%;
  height: 30px;
  position: absolute;
  z-index: 100;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #efefef;
}

/*下彈選單*/
*[class^="notice"] {
  padding: .4em 2em .4em 2em;
  display: block;
  font-size: .938em;
  margin: .2em 0;
  position: relative;
  color: #666;
  background-color: #f2f2f2;
  vertical-align: middle;
  position: relative;
  border-left: .5em solid #f2f2f2;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
*[class^="notice"]:before {
  position: absolute;
  top: .7em;
  left: .5em;
  display: block;
  vertical-align: middle;
  width: 15px;
  height: 15px;
  content: "";
}
*[class^="notice"]:before img {
  width: 100%;
}
*[class^="notice"] a.close {
  position: absolute;
  width: 12px;
  height: 12px;
  top: .4em;
  right: 1em;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
*[class^="notice"] a.close:hover, *[class^="notice"] a.close:focus {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
*[class^="notice"] a.close img {
  width: 12px;
  height: 12px;
}

*[class*="notice_normal"] {
  padding: 0 .5em !important;
  background: none;
  border-left: 0;
}
*[class*="notice_normal"]:before {
  display: none;
}

*[class*="notice_info"] {
  border: none;
  color: #00529B;
  background-color: #BDE5F8;
  border-left: .5em solid #BDE5F8;
}
*[class*="notice_info"]:before {
  background: url(../images/basic/icon_info.svg) no-repeat center center;
  background-size: 15px;
}

*[class*="notice_success"] {
  border: none;
  color: #4F8A10;
  background-color: #DFF2BF;
  border-left: .5em solid #DFF2BF;
}
*[class*="notice_success"]:before {
  background: url(../images/basic/icon_success.svg) no-repeat center center;
  background-size: 15px;
}

*[class*="notice_warning"] {
  border: none;
  color: #CE5605;
  background-color: #FEEFB3;
  border-left: .5em solid #FEEFB3;
}
*[class*="notice_warning"]:before {
  background: url(../images/basic/icon_warning.svg) no-repeat center center;
  background-size: 15px;
}

*[class*="notice_error"] {
  border: none;
  color: #D8000C;
  background-color: #FFD2D2;
  border-left: .5em solid #FFD2D2;
}
*[class*="notice_error"]:before {
  background: url(../images/basic/icon_error.svg) no-repeat center center;
  background-size: 15px;
}

/* 模組*/
/*header*/
.header {
  position: relative;
  z-index: 99;
  -moz-box-shadow: 0px 2px 5px RGBA(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 2px 5px RGBA(0, 0, 0, 0.3);
  box-shadow: 0px 2px 5px RGBA(0, 0, 0, 0.3);
  background-color: white;
  /* mobile btn*/
  /* 導覽列*/
}
.header .MemberNav {
  display: none;
}
@media screen and (max-width: 991px) {
  .header {
    overflow: hidden;
    *zoom: 1;
    position: fixed;
    width: 100%;
    min-height: 55px;
    /* MemberNav*/
  }
  .header .MemberNav {
    display: block;
    box-sizing: border-box;
    position: absolute;
    top: 60px;
    text-align: left;
    width: 100%;
    padding: 1em;
    margin: 0;
    list-style: none;
    background: #FFF;
    -moz-box-shadow: 0px 8px 12px 8px rgba(14, 14, 14, 0.2);
    -webkit-box-shadow: 0px 8px 12px 8px rgba(14, 14, 14, 0.2);
    box-shadow: 0px 8px 12px 8px rgba(14, 14, 14, 0.2);
  }
  .header .MemberNav:before {
    display: block;
    position: absolute;
    content: "";
    top: -5px;
    right: 85px;
    width: 7px;
    height: 7px;
    background: #FFF;
    border: 1px solid #d6d5d5;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-left-style: none;
    border-bottom-style: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transform-origin: center;
    transform-origin: center;
  }
  .header .MemberNav > ul {
    padding: 0;
    margin: 0;
    overflow-y: auto;
    width: 100%;
    height: 300px;
    list-style: none;
    box-sizing: border-box;
  }
  .header .MemberNav > ul li {
    line-height: 2;
    padding-left: 15px;
    color: gray;
    position: relative;
  }
  .header .MemberNav > ul li:before {
    position: absolute;
    content: "-";
    top: 0;
    left: 2px;
    color: gray;
  }
  .header .MemberNav > ul li ul {
    padding: 0;
    list-style: none;
    margin: 5px 0 5px -15px;
  }
  .header .MemberNav > ul li ul li {
    padding: 2px 5px 2px 17px;
    margin-bottom: 3px;
    background: #efefef;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: gray;
  }
  .header .MemberNav > ul li ul li:before {
    display: none;
  }
  .header .MemberNav > ul li ul li a {
    color: gray;
  }
  .header .MemberNav > ul li ul li a:hover, .header .MemberNav > ul li ul li a:focus {
    color: #1493df;
  }
  .header .MemberNav > ul li a {
    display: block;
    color: gray;
  }
  .header .MemberNav > ul li a:hover, .header .MemberNav > ul li a:focus {
    color: #1493df !important;
  }
  .header .MemberNav > ul li.active {
    color: #333;
  }
  .header .MemberNav > ul li.active > a {
    color: #333 !important;
    font-weight: 600;
  }
  .header .MemberNav > ul li.active > a:hover, .header .MemberNav > ul li.active > a:focus {
    color: #1493df !important;
  }
  .header .MemberNav > ul li.active ul li.active {
    line-height: 1.65;
    background: #CCC !important;
  }
  .header .MemberNav > ul li.active ul li.active a {
    color: #333;
    font-weight: 400;
  }
  .header .MemberNav > ul li:nth-child(1):before {
    display: none;
  }
  .header .MemberNav > ul li.userName {
    padding: 0;
    border-bottom: 1px solid #d6d5d5;
  }
  .header .MemberNav > ul li.userName span {
    color: #333;
  }
  .header .MemberNav > ul li.userName span:nth-child(2) {
    font-weight: bold;
  }
  .header .MemberNav > ul li.signout {
    text-align: center;
    border-top: 1px solid #d6d5d5;
    color: white;
    padding: 0;
  }
  .header .MemberNav > ul li.signout:before {
    display: none;
  }
  .header .MemberNav > ul li.signout a {
    text-align: center;
    background: #1493df;
    margin-top: 10px;
    display: block;
    padding: 5px;
    color: white;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header .MemberNav > ul li.signout a:hover, .header .MemberNav > ul li.signout a:focus {
    color: white !important;
    background: #1074b0;
  }
}
@media screen and (max-width: 375px) {
  .header .MemberNav:before {
    right: 25%;
  }
}
.header > .container .sidebarCtrl, .header > .container .searchCtrl,
.header > .container .userCtrl {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 15px;
  left: 1em;
  display: block;
  color: white;
  padding: 17px 17px;
  margin: 0;
  z-index: 1;
  line-height: 1;
  min-width: auto;
  min-height: auto;
  background: black;
  border: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .header > .container .sidebarCtrl, .header > .container .searchCtrl,
  .header > .container .userCtrl {
    top: 0;
    left: 0;
  }
}
.header > .container {
  max-width: 100%;
  overflow: visible;
  position: relative;
  text-align: center;
  /* menu*/
  /* search*/
  /* userCtrl*/
}
.header > .container .sidebarCtrl span {
  width: 100%;
  height: 1px;
  margin: 0px 0 6px;
  display: block;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #FFF;
}
.header > .container .sidebarCtrl.is-active span:nth-child(2), .header > .container .sidebarCtrl.is-active span:nth-child(4) {
  width: 88%;
}
.header > .container .sidebarCtrl.is-active span:nth-child(3) {
  background-color: transparent;
}
.header > .container .sidebarCtrl.is-active span:nth-child(2) {
  -moz-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  -webkit-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}
.header > .container .sidebarCtrl.is-active span:nth-child(4) {
  -moz-transform: translateY(-6px) rotate(-45deg);
  -ms-transform: translateY(-6px) rotate(-45deg);
  -webkit-transform: translateY(-6px) rotate(-45deg);
  transform: translateY(-6px) rotate(-45deg);
}
.header > .container .sidebarCtrl .dataText {
  position: absolute;
  content: '';
  bottom: 13px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.8em;
  background: transparent;
}
.header > .container .searchCtrl,
.header > .container .userCtrl {
  display: none;
  right: 0px;
  left: inherit;
  font-size: 0;
  background: transparent;
  -webkit-transform-origin: center;
  transform-origin: center;
}
.header > .container .searchCtrl:before,
.header > .container .userCtrl:before {
  display: block;
  position: absolute;
  content: "";
  top: 14px;
  right: 20px;
  width: 16px;
  height: 16px;
  border: 2px solid #333;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  border-left-style: none;
  border-bottom-style: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transform-origin: center;
  transform-origin: center;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header > .container .searchCtrl.is-active:before,
.header > .container .userCtrl.is-active:before {
  top: 26px;
  -moz-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
@media screen and (max-width: 991px) {
  .header > .container .searchCtrl,
  .header > .container .userCtrl {
    display: block;
  }
}
@media screen and (max-width: 375px) {
  .header > .container .searchCtrl,
  .header > .container .userCtrl {
    width: 45px;
    padding: 17px 8px;
  }
  .header > .container .searchCtrl:before,
  .header > .container .userCtrl:before {
    right: 15px;
  }
}
.header > .container .userCtrl {
  color: #333;
  right: 60px;
  font-size: 1.2em;
}
.header > .container .userCtrl:before {
  display: none !important;
}
.header > .container .userCtrl:after {
  font-family: 'fontello';
  content: "\E8FE";
}
@media screen and (max-width: 375px) {
  .header > .container .userCtrl {
    right: 45px;
  }
}
.header h1 {
  margin: 0 auto;
  display: inline-block;
}
.header .logo {
  width: 334px;
  height: 60px;
  margin: 10px auto;
  padding: 0;
  float: none;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .header .logo {
    padding: 0;
    display: inline-block;
    margin: -15px 0 5px 0;
  }
}
.header .logo img {
  display: block;
  max-width: 100%;
  height: 100%;
}
.header .logo:hover {
  outline: 0;
}
.header .navigation {
  position: absolute;
  top: 0px;
  right: 15px;
  /* 預設選單 li*/
}
.header .navigation > ul {
  text-align: left;
  padding: 0;
  margin: 0;
  /* 第一層選單樣式*/
}
.header .navigation > ul > li {
  display: inline-block;
  vertical-align: top;
  line-height: 60px;
}
.header .navigation > ul > li:nth-child(1) {
  padding: 0;
}
.header .navigation > ul > li:nth-child(1) a:nth-child(1) {
  background: url(../images/icon/icon_2020_login.png) 12px 50% no-repeat;
  background-size: 30px 30px;
}
.header .navigation > ul > li:nth-child(1) a:nth-child(2) {
  background: url(../images/icon/icon_2020_signup.png) 12px 50% no-repeat;
  background-size: 30px 30px;
}
.header .navigation > ul > li:nth-child(1) a:after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 10px;
  background: #222;
  vertical-align: baseline;
  margin-left: 1.5em;
}
.header .navigation > ul > li:nth-child(2) {
  padding: 0;
}
.header .navigation > ul > li:nth-child(2) > a {
  background: #eee;
  background: url(../images/icon/icon_2020_language.png) 12px 50% no-repeat;
}
.header .navigation > ul > li:last-child:after {
  display: none;
}
.header .navigation > ul > li > a {
  display: inline-block;
  padding: 0 0 0 3em;
  font-weight: bold;
}
.header .navigation > ul > li > a:last-child {
  position: relative;
}
.header .navigation > ul > li > a:last-child:hover, .header .navigation > ul > li > a:last-child:focus {
  color: #1493df;
}
.header .navigation > ul > li > a:last-child:hover:before, .header .navigation > ul > li > a:last-child:focus:before {
  color: #4d4d4d;
}
.header .navigation > ul ul {
  display: none;
  overflow: visible;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  padding: 0;
  z-index: 999999;
  position: absolute;
  top: auto;
  right: 0;
  list-style: none;
  text-align: center;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  overflow: hidden;
}
.header .navigation > ul ul ul {
  top: 0;
  left: 170px;
}
.header .navigation li {
  position: relative;
  /* 第二層選單樣式*/
}
.header .navigation li a {
  outline: none;
  color: #4d4d4d;
  text-decoration: none;
}
.header .navigation li a:hover, .header .navigation li a:focus {
  color: #1493df;
}
.header .navigation li.hasChild > a {
  position: relative;
  display: block;
  text-align: center;
}
.header .navigation li#langMenu > a:after, .header .navigation li.hasChild > a:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/basic/icon_arrow_down-2.svg) 50% 50% no-repeat;
  background-size: contain;
  vertical-align: sub;
  margin-left: 8px;
}
.header .navigation li#langMenu:hover > ul, .header .navigation li.hasChild:hover > ul {
  display: block;
}
.header .navigation li li {
  float: none;
  line-height: 1;
}
.header .navigation li li a {
  padding: 1em .95em;
  display: block;
  color: #4d4d4d;
}
.header .navigation li li a:hover, .header .navigation li li a:focus {
  color: #FFF;
  background: #1493df;
}
@media screen and (max-width: 991px) {
  .header .navigation > ul > li > a {
    padding: 0 0.5em;
  }
}

/*inner-kv 內頁形象圖*/
.inner-kv {
  position: relative;
  display: block;
  margin-top: 60px;
}
.inner-kv > .container {
  max-width: 100%;
  margin: 0 auto;
  z-index: 0;
  text-align: center;
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.inner-kv > .container .menu2020 {
  padding: 1em 0;
  background: url(../images/bg-mp2020-1.jpg) 50% 10% no-repeat;
  border-bottom: solid 1px #cecece;
}
@media screen and (max-width: 991px) {
  .inner-kv > .container .menu2020 {
    display: none;
  }
}
.inner-kv > .container .btn_sort {
  position: absolute;
  bottom: 3em;
  z-index: 1;
  left: 0;
  right: 0;
  display: block;
}
.inner-kv > .container h1 {
  position: absolute;
  top: 45%;
  width: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  font-weight: 500;
  font-size: 3em;
  line-height: 1;
  margin: auto;
  text-align: center;
  display: inline-block;
  color: white;
  z-index: 1;
  text-shadow: 0px 2px 5px RGBA(0, 0, 0, 0.8);
}
.inner-kv > .container h1:after {
  position: absolute;
  z-index: 1;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  line-height: 5.5;
}
.inner-kv > .container h1 a {
  color: white !important;
  display: inline-block;
  position: relative;
  z-index: 2;
  line-height: 1.2;
  width: auto;
  height: auto;
}
.inner-kv > .container h1 a:hover, .inner-kv > .container h1 a:focus {
  box-shadow: none;
}
.inner-kv > .container .img-container {
  position: relative;
  display: block;
  line-height: 5;
  height: 220px;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.inner-kv > .container .img-container:before {
  display: block;
  content: "";
  padding-top: 100%;
}
.inner-kv > .container .img-container img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.inner-kv > .container .img-container:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#99000000', endColorstr='#00000000');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjYiLz48c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjQiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.6)), color-stop(40%, rgba(0, 0, 0, 0.4)), color-stop(100%, rgba(0, 0, 0, 0)));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (max-width: 991px) {
  .inner-kv > .container .img-container {
    height: 180px;
  }
}
@media screen and (max-width: 991px) {
  .inner-kv > .container .img-container:after {
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjYiLz48c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjQiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.6)), color-stop(40%, rgba(0, 0, 0, 0.4)), color-stop(100%, rgba(0, 0, 0, 0)));
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
  }
}

.inner-kv-banner {
  position: relative;
  display: block;
  margin-top: 60px;
}
.inner-kv-banner > .container {
  max-width: 100%;
  margin: 0 auto;
  z-index: 0;
  text-align: center;
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.inner-kv-banner > .container .menu2020 {
  padding: 1em 0;
  background: url(../images/bg-mp2020-1.jpg) 50% 10% no-repeat;
  border-bottom: solid 1px #cecece;
}
@media screen and (max-width: 991px) {
  .inner-kv-banner > .container .menu2020 {
    display: none;
  }
}
.inner-kv-banner > .container .btn_sort {
  position: absolute;
  bottom: 3em;
  z-index: 1;
  left: 0;
  right: 0;
  display: block;
}
.inner-kv-banner > .container .img-container {
  position: relative;
  display: block;
  line-height: 5;
  height: 420px;
  background: #000;
}
.inner-kv-banner > .container .img-container:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#99000000', endColorstr='#00000000');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjYiLz48c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjQiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.6)), color-stop(40%, rgba(0, 0, 0, 0.4)), color-stop(100%, rgba(0, 0, 0, 0)));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (max-width: 991px) {
  .inner-kv-banner > .container .img-container {
    height: 240px;
  }
}
.inner-kv-banner > .container .breadcrumb {
  background: #fff;
  margin-bottom: 0;
}

/*search*/
.search {
  vertical-align: middle;
  padding: 0em;
  font-size: 0.938em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.search label {
  font-size: 0;
}
.search .form_grp {
  margin-bottom: 0;
  margin-right: 0;
}
.search .form_grp input {
  width: 400px !important;
  height: 40px;
  margin: -0.2em 0 0;
  padding: .5em 1.25em;
  background: #f3f3f3;
  box-shadow: 0 0px 0px 1px #e2e2e2 inset;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.search .form_grp input:hover, .search .form_grp input:focus {
  color: #333;
  -moz-box-shadow: 0px 0px 0px 1px #ccc inset !important;
  -webkit-box-shadow: 0px 0px 0px 1px #ccc inset !important;
  box-shadow: 0px 0px 0px 1px #ccc inset !important;
}
@media screen and (max-width: 1200px) {
  .search .form_grp input {
    width: 300px !important;
  }
}
.search .btn_grp {
  padding: 0em;
  margin: -3px 0px 0 -30px !important;
  display: inline-block;
  position: relative;
}
.search .btn_grp .btn-close {
  position: absolute;
  content: '';
  z-index: 1;
  top: 7px;
  right: 12px;
  font-size: 1.5em;
  color: gray;
}
.search .btn_grp button {
  margin: 0;
  color: transparent;
  margin-top: 0;
  padding: 0 !important;
  min-width: 48px;
  height: 40px;
  position: relative;
  -moz-border-radius: 0 5px 5px 0;
  -webkit-border-radius: 0;
  border-radius: 0 5px 5px 0;
  background: #5d18bc;
  border-left: none;
  border-color: #CCC;
}
.search .btn_grp button:before {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  width: 48px;
  height: 100%;
  background: url("../images/icon/icon_search.png") 50% 50% no-repeat;
  background-size: 20px;
  -webkit-filter: brightness(10);
  filter: brightness(10);
}
.search .btn_grp button:hover, .search .btn_grp button:focus {
  color: transparent;
  background: #1493df;
  border: 1px solid #1493df;
  border-left: none;
}
.search.m_search {
  width: 100% !important;
  max-width: 100% !important;
  min-width: auto;
  padding: 0;
  display: block;
  height: auto;
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 98;
  text-align: center;
  background: RGBA(0, 0, 0, 0.9);
}
.search.m_search .form_inline {
  width: 100%;
  margin: 0 auto;
  display: inline-block;
  text-align: center;
}
.search.m_search .form_inline label {
  font-size: 0;
  line-height: 0;
}
.search.m_search .form_inline .form_grp {
  width: 90%;
  padding: 1.5em 0 2.75em;
  text-align: right;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.search.m_search .form_inline .form_grp input {
  width: 100% !important;
  margin: -0.2em 0 0;
  padding: .5em 1em .4em;
}
.search.m_search .form_inline .btn_grp {
  padding: .2em;
  margin-bottom: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.search.m_search .form_inline .btn_grp input {
  width: 80% !important;
  margin: 0;
}
.search.m_search .form_inline .btn-adv {
  display: inline;
  padding: 5px 0px;
}
.search.m_search .form_inline .keywordHot {
  padding-left: 5%;
}
.search.m_search .form_inline .keywordHot a {
  color: #FFF;
}
.search.m_search .form_inline .keywordHot a:hover, .search.m_search .form_inline .keywordHot a:focus {
  color: #1493df;
}
@media screen and (max-width: 991px) {
  .search.m_search .navigation {
    width: 95%;
    margin: 0 auto;
    display: inline-block;
    text-align: center;
    display: block;
  }
  .search.m_search .navigation ul {
    margin: 0;
    padding: 0;
  }
  .search.m_search .navigation ul li {
    padding: 0;
    display: block;
    text-align: center;
  }
  .search.m_search .navigation ul li + ul {
    display: block !important;
  }
  .search.m_search .navigation ul li.hasChild > a {
    display: none !important;
  }
  .search.m_search .navigation ul li a {
    color: white !important;
    display: block;
    font-size: 1.2em;
    padding: 1em;
    border-bottom: 1px solid rgba(204, 204, 204, 0.2);
  }
  .search.m_search .navigation ul li a.iframe, .search.m_search .navigation ul li a.user {
    display: none;
  }
  .search.m_search .navigation ul li a:hover, .search.m_search .navigation ul li a:after {
    color: #1493df !important;
  }
}

.log_area {
  display: none;
  width: 60%;
  height: 500px;
  overflow-y: auto;
  padding: 1em;
  position: absolute;
  top: 1em;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9999;
  background: RGBA(0, 0, 0, 0.8);
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-box-shadow: 0px 2px 5px RGBA(0, 0, 0, 0.8);
  -webkit-box-shadow: 0px 2px 5px RGBA(0, 0, 0, 0.8);
  box-shadow: 0px 2px 5px RGBA(0, 0, 0, 0.8);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.log_area:before {
  content: "";
  width: 280px;
  position: absolute;
  top: 0;
  left: 0;
  color: #FFF;
  width: 100%;
  height: 3em;
  background: transparent;
  padding: 0 1em;
  line-height: 3em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.log_area h2, .log_area h3 {
  color: white;
}

/* header fix*/
.header.fixed {
  position: fixed;
  width: 100%;
  height: 60px;
  right: 0;
  top: 0;
  line-height: 15px;
  z-index: 999;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header.fixed .container {
  padding: 0px 0;
  text-align: center;
}
.header.fixed .container h1 {
  float: left;
  display: inline-block;
}
.header.fixed .container .logo {
  float: left;
  width: auto;
  height: 32px;
  margin: 16px 0 0 16px;
}
.header.fixed .container .sidebarCtrl {
  width: 60px !important;
  height: 60px !important;
  top: 0px;
  left: 0;
  display: none;
}
@media screen and (max-width: 991px) {
  .header.fixed .container .sidebarCtrl {
    display: block;
  }
}
.header.fixed .container .search {
  position: absolute;
  top: 15px;
  right: 0;
  left: 0;
  width: 36%;
  margin: auto;
  display: inline-block !important;
}
.header.fixed .container .search.m_search .navigation ul {
  display: block;
}
@media screen and (max-width: 991px) {
  .header.fixed {
    overflow: visible;
  }
  .header.fixed .container h1 {
    float: none;
  }
  .header.fixed .container .logo {
    float: none;
    display: inline-block;
    text-align: center;
    height: 32px;
    margin: 14px auto;
  }
  .header.fixed .container .search .form_grp input {
    width: 220px !important;
  }
  .header.fixed .container .search, .header.fixed .container .navigation {
    display: none !important;
  }
}
@media screen and (max-width: 360px) {
  .header.fixed .container .logo {
    height: 26px;
    margin: 17px auto;
  }
}

@media screen and (max-width: 991px) {
  .inner-kv > .container h1 {
    width: 90%;
    font-size: 3em;
    top: 32%;
  }
}
@media screen and (max-width: 767px) {
  .inner-kv > .container .decoration {
    display: none;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
  .inner-kv > .container h1 {
    width: 90%;
    font-size: 2.5em;
  }
  .inner-kv > .container .img-container {
    height: 280px;
  }
}
@media screen and (max-width: 575px) {
  .inner-kv .container h1 {
    font-size: 1.8em;
  }
  .inner-kv .container .img-container {
    height: 240px;
  }
}
/*header*/
/* 行動版選單sidebar*/
.menu {
  display: none;
}
@media screen and (max-width: 991px) {
  .menu {
    display: block;
  }
}

.menu2020 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
.menu2020 ul li a {
  color: #fff;
  font-size: 1.125em;
  display: block;
  padding: .5em 1em;
  background: rgba(255, 255, 255, 0);
  font-weight: 500;
  transition: all .3s ease;
}
.menu2020 ul li a:hover, .menu2020 ul li a:focus {
  background: rgba(0, 0, 0, 0.35);
}

.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  height: 100%;
  width: 280px;
  z-index: 99999999;
  display: none;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.sidebar > .menu_overlay {
  background: RGBA(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 9;
  display: none;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}
.sidebar .m_area {
  width: 100%;
  height: 100%;
  padding: 1em;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  overflow-y: auto;
  z-index: 9999;
  background: RGBA(0, 0, 0, 0.9);
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.sidebar .m_area .menu {
  width: 100%;
  display: block;
  margin-bottom: 1em;
}
.sidebar .m_area .menu a {
  display: block;
  color: white;
  text-decoration: none;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebar .m_area .menu a:hover, .sidebar .m_area .menu a:after {
  background: #5d18bc;
}
.sidebar .m_area .menu ul {
  padding: 1em 0;
}
.sidebar .m_area .menu li {
  display: block;
  float: none;
  width: 100%;
}
.sidebar .m_area .menu li ul {
  background: #FFF;
}
.sidebar .m_area .menu li:last-child a {
  border-bottom: 1px solid transparent;
}
.sidebar .m_area .menu li > a {
  padding: .8em 1em;
  font-size: 1.2em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.sidebar .m_area .menu li.hasChild > a {
  padding: .5em 1em;
  color: #222;
  background: #FFF;
  padding-right: 36px;
  position: relative;
}
.sidebar .m_area .menu li.hasChild > a:after {
  content: '';
  position: absolute;
  right: 16px;
  top: 1.5em;
  width: 5px;
  line-height: 1.25em;
  height: 5px;
  border: 2px solid #222;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: none;
  border-left: none;
  transition: .3s;
}
.sidebar .m_area .menu li li {
  background: #FFF;
}
.sidebar .m_area .menu li li a {
  padding: 1em 1em 1em 2em !important;
  background: rgba(0, 0, 0, 0.05);
}
.sidebar .m_area .menu li li a:hover, .sidebar .m_area .menu li li a:focus {
  color: #000;
  background: rgba(0, 0, 0, 0.15);
}
.sidebar .m_area .menu li li.hasChild a {
  background: rgba(0, 0, 0, 0.05);
  padding: 1em 1em 1em 2em;
}
.sidebar .m_area .menu li li.hasChild a:hover, .sidebar .m_area .menu li li.hasChild a:focus {
  background: rgba(0, 0, 0, 0.05);
}
.sidebar .m_area .menu li li li a {
  background: rgba(0, 0, 0, 0.15) !important;
  padding: .8em 1em .8em 4em !important;
  border-bottom: 1px solid #BBB;
}
.sidebar .m_area .menu li li li a:hover, .sidebar .m_area .menu li li li a:focus {
  background: rgba(0, 0, 0, 0.25) !important;
}
.sidebar .m_area .menu li li li a:after {
  display: none !important;
}
.sidebar .navigation {
  position: relative;
  text-align: left;
}
.sidebar .navigation ul {
  float: none;
  width: 100%;
  padding: 1em 5%;
  box-sizing: border-box;
  overflow: hidden;
  list-style: none;
  background: #222;
}
.sidebar .navigation ul li {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.sidebar .navigation ul li a {
  display: block;
  height: 3em;
  line-height: 2em;
  padding: .5em 0 .5em 3.5em;
  font-size: .938em;
  color: #FFF;
  font-weight: bold;
  text-decoration: none;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.sidebar .navigation ul li:nth-child(1) a:nth-child(1) {
  background: url(../images/icon/icon_2020_login.png) 12px 50% no-repeat;
  background-size: 30px 30px;
}
.sidebar .navigation ul li:nth-child(1) a:nth-child(1):hover, .sidebar .navigation ul li:nth-child(1) a:nth-child(1):focus {
  color: rgba(255, 255, 255, 0.75);
  background: url(../images/icon/icon_2020_login.png) 12px 50% no-repeat, #5d18bc;
  background-size: 30px 30px;
}
.sidebar .navigation ul li:nth-child(1) a:nth-child(2) {
  background: url(../images/icon/icon_2020_signup.png) 12px 50% no-repeat;
  background-size: 30px 30px;
}
.sidebar .navigation ul li:nth-child(1) a:nth-child(2):hover, .sidebar .navigation ul li:nth-child(1) a:nth-child(2):focus {
  color: rgba(255, 255, 255, 0.75);
  background: url(../images/icon/icon_2020_signup.png) 12px 50% no-repeat, #5d18bc;
  background-size: 30px 30px;
}
.sidebar .navigation ul li:nth-child(2) > a {
  background: url(../images/icon/icon_2020_language.png) 12px 50% no-repeat;
  background-size: 30px 30px;
}
.sidebar .navigation ul li:nth-child(2) > a:hover, .sidebar .navigation ul li:nth-child(2) > a:focus {
  color: rgba(255, 255, 255, 0.75);
  background: url(../images/icon/icon_2020_language.png) 12px 50% no-repeat, #5d18bc;
  background-size: 30px 30px;
}
.sidebar .navigation ul li:nth-child(2) > a + ul {
  margin: 0;
  padding: 0 5%;
  width: 100%;
}
.sidebar .navigation ul li:nth-child(2) > a + ul li:last-child a {
  border-bottom: 1px dotted transparent;
}
.sidebar .navigation ul li:nth-child(2) > a + ul a {
  background: none !important;
  color: rgba(238, 238, 238, 0.5);
  border-bottom: 1px dotted rgba(105, 105, 105, 0.5);
}
.sidebar .navigation ul li:nth-child(2) > a + ul a:hover, .sidebar .navigation ul li:nth-child(2) > a + ul a:focus {
  color: rgba(255, 255, 255, 0.75);
  background: #5d18bc !important;
}
.sidebar .navigation .language {
  position: relative;
  width: 100%;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.sidebar .navigation .language a {
  padding: .6em 1em;
  background: rgba(0, 0, 0, 0.4);
}
.sidebar .navigation .language a:after {
  top: 1.3em;
}
.sidebar .navigation .language a:before {
  top: .8em;
}
.sidebar .navigation .language ul {
  width: 100%;
  margin: 0;
  position: relative;
  top: 0;
  padding: 0;
  border: none;
  background: none;
}
.sidebar .navigation .language ul li {
  width: 100% !important;
}
.sidebar .navigation .language ul li a {
  border: none;
  background: rgba(0, 0, 0, 0.4);
}
.sidebar button.sidebarClose {
  position: absolute;
  display: block;
  width: 3em !important;
  height: 3em !important;
  padding: 0;
  min-width: auto;
  top: 0px;
  right: 0px;
  margin: 0;
  text-indent: -9999px;
  border: none;
  background: none;
  border: none;
}
.sidebar button.sidebarClose:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  content: "";
  top: 15px;
  right: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-right: none;
  border-top: none;
}

/*animation*/
@-webkit-keyframes showMenu {
  0% {
    left: 20px;
  }
  100% {
    left: 0px;
  }
}
@keyframes showMenu {
  0% {
    left: 20px;
  }
  100% {
    left: 0px;
  }
}
button.close {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 40px;
  z-index: 999999;
  height: 40px;
  display: block;
  font-size: 0;
  border: none;
  background: transparent;
}
button.close:before, button.close:after {
  position: absolute;
  top: 50%;
  left: 5px;
  width: 30px;
  height: 2px;
  background: #fff;
  content: "";
}
button.close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
button.close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
button.close:hover, button.close:focus {
  cursor: pointer;
}
button.close:hover:before, button.close:focus:before {
  background: #fff;
}
button.close:hover:after, button.close:focus:after {
  background: #fff;
}

/*menu*/
footer {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  text-align: center;
  font-size: 0.938em;
  padding: 0;
  background: url(../images/bg-mp2020-2.jpg) 50% top no-repeat;
  background-size: cover;
  padding-top: 8em;
}
footer p {
  line-height: 1.4;
}
footer > div:first-child {
  background: rgba(0, 0, 0, 0.66);
}
footer .container {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
footer .container:nth-child(2) {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}
footer .container > div {
  padding-top: 1em;
}
footer .container .footer_link {
  text-align: right;
  margin: 0 0;
}
footer .container .footer_link li {
  display: inline-block;
  position: relative;
}
footer .container .footer_link li:last-child:after {
  display: none;
}
footer .container .footer_link li:after {
  content: '';
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  display: block;
  position: absolute;
  right: -3px;
  top: calc(50% - 5px);
}
footer .container .footer_link li a {
  display: block;
  color: #fff;
  padding: .75em .75em;
}
footer .container .footer_link li a:hover, footer .container .footer_link li a:focus {
  background: #781F79;
}
footer .container .footer_logo {
  text-align: left;
  -webkit-order: 1;
  order: 1;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 0 1em 0;
}
@media (min-width: 768px) {
  footer .container .footer_logo {
    float: left;
    width: 58.33333%;
  }
}
@media (min-width: 992px) {
  footer .container .footer_logo {
    float: left;
    width: 58.33333%;
  }
}
@media (min-width: 1400px) {
  footer .container .footer_logo {
    float: left;
    width: 58.33333%;
  }
}
footer .container .footer_logo ul {
  overflow: hidden;
  *zoom: 1;
}
footer .container .footer_logo ul li {
  float: left;
  display: inline-block;
}
footer .container .footer_logo .img-responsive {
  height: 60px;
  margin: 0px 0px 5px 0px;
}
footer .container .footer_logo .footer_info {
  overflow: hidden;
  padding: 1em 0;
}
footer .container .footer_logo .footer_info p {
  margin: 5px 0 0 0;
  color: #fff;
  font-size: 0.938em;
}
footer .container .footer_logo .footer_info p:last-child {
  color: rgba(255, 255, 255, 0.5);
}
footer .container .footer_logo .footer_info .copyright {
  color: #0ffaf9;
  margin-bottom: 5px;
}
footer .container .footer_icon {
  text-align: left;
  float: none;
  -webkit-order: 2;
  order: 2;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  footer .container .footer_icon {
    float: left;
    width: 41.66667%;
  }
}
@media (min-width: 992px) {
  footer .container .footer_icon {
    float: left;
    width: 41.66667%;
  }
}
@media (min-width: 1400px) {
  footer .container .footer_icon {
    float: left;
    width: 41.66667%;
  }
}
footer .container .footer_icon ul {
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .container .footer_icon ul li {
  text-align: center;
  display: inline-block;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
footer .container .footer_icon ul li:nth-child(1) {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
footer .container .footer_icon ul li:nth-child(1), footer .container .footer_icon ul li:nth-child(2) {
  width: calc(40% - 4px);
}
footer .container .footer_icon ul li:last-child {
  width: calc(20% - 4px);
  vertical-align: bottom;
}
footer .container .footer_icon ul li .img-responsive {
  height: 80px;
  margin: 0 auto;
}
footer .container .footer_icon ul li.QRcode:after {
  display: none;
}
footer .container .footer_icon ul img {
  height: 60px;
  display: block;
  margin: 0 auto;
}
footer .container .footer_icon ul a {
  color: white;
  float: none;
  display: block;
  vertical-align: top;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
footer .container .footer_icon ul a:hover, footer .container .footer_icon ul a:focus {
  color: #0ffaf9;
}
footer .container .footer_icon ul a:hover img, footer .container .footer_icon ul a:focus img {
  -webkit-filter: sepia(1) hue-rotate(100deg) saturate(10);
  filter: sepia(1) hue-rotate(100deg) saturate(10);
}
@media screen and (max-width: 575px) {
  footer .container .footer_icon ul {
    overflow: hidden;
    padding: 0;
    margin: 0;
  }
  footer .container .footer_icon ul li:last-child {
    vertical-align: super;
  }
  footer .container .footer_icon ul li img {
    height: 64px !important;
  }
}
@media screen and (max-width: 767px) {
  footer .container:nth-child(2) {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  footer .container .footer_logo {
    -webkit-order: 2;
    order: 2;
    margin: 1em auto;
    text-align: center;
  }
  footer .container .footer_logo .img-responsive {
    margin: 0 auto 1em auto;
  }
  footer .container .footer_logo .footer_info {
    border-top: none;
  }
  footer .container .footer_icon {
    margin-bottom: 1em;
    -webkit-order: 1;
    order: 1;
  }
}
@media screen and (max-width: 575px) {
  footer .container .footer_link li {
    float: none;
    display: block;
    text-align: center;
  }
  footer .container .footer_link li:after {
    display: none;
  }
}
footer .container a {
  text-decoration: none;
  color: #1493df;
}
footer .container a:hover, footer .container a:focus {
  color: #1074b0;
}

/*footer*/
.function ul li.icon_back a:before, .function ul li.icon_print a:before, .function ul li.icon_forward a:before {
  vertical-align: middle;
  content: "";
  width: 1.2em;
  height: 1.2em;
  margin-right: .2em;
  display: inline-block;
}

.function {
  margin: 0px;
  overflow: hidden;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.function ul {
  padding: 0;
  margin: 0;
}
.function ul li {
  list-style: none;
  display: block;
  float: left;
  margin: 0 3px 3px 0;
}
.function ul li button,
.function ul li a {
  font-size: .813em;
  display: block;
  padding: .2em 1em;
  background: #888;
  border-color: #888;
  color: #FFF;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.function ul li button:hover, .function ul li button:focus,
.function ul li a:hover,
.function ul li a:focus {
  background: #6f6f6f;
  border-color: #6f6f6f;
}
.function ul li.icon_back a:before {
  background: url(../images/basic/icon_back.svg) no-repeat center center;
  background-size: cover;
}
.function ul li.icon_print a:before {
  background: url(../images/basic/icon_print.svg) no-repeat center center;
  background-size: cover;
}
.function ul li.icon_forward a:before {
  background: url(../images/basic/icon_forward.svg) no-repeat center center;
  background-size: cover;
}

/*function功能區塊*/
.modal {
  /*  position: fixed;
   display: none;
   width:60%;
   height:500px;
   overflow-y: auto;
   padding: 1em;
   position:absolute;
   top:20%;bottom:20%;
   left: 0;right:0;
   margin:auto;
   z-index: 9999;
   background: RGBA(0, 0, 0, .8);
   -webkit-overflow-scrolling: touch;
   -webkit-transform: translate3d(0, 0, 0);
   @include box-shadow(0px 2px 5px RGBA(0, 0, 0, .8));
   @include box-sizing;
   &:before {
       content: "";
       width: 280px;
       position: absolute;
       top: 0;
       left: 0;
       color: #FFF;
       width: 100%;
       height: 3em;
       background:transparent;
       padding: 0 1em;
       line-height: 3em;
       @include box-sizing;
   } */
}
.modal h2 {
  padding-bottom: .5em;
  color: white;
  margin: 10px 0 0 10px;
}
.modal h3 {
  text-align: center;
  color: white;
  font-size: 1.35em;
  margin-bottom: 2em;
}
.modal p {
  font-size: 1em;
  text-align: center;
  margin: 0.2em auto;
  color: #CCC;
}
.modal p a {
  color: #1493df;
  margin-left: 30px;
}
.modal .modalBox {
  width: 80%;
  margin: 0 auto 1em auto;
  color: white;
}
.modal .modalBox .category {
  margin: 1em auto;
}
.modal .modalBox .dragList {
  color: #333;
  background-color: #FFF;
}
.modal .modalBox.modalSignup {
  width: 304px;
}
.modal .modalBox.modalSignup #g-recaptcha > div .rc-anchor-light.rc-anchor-normal {
  width: 98% !important;
}
.modal .modalBox.modalSignup .has-danger .form-control-feedback {
  color: #f00;
}
.modal .modalBox p {
  color: white;
}
.modal .modalBox a {
  color: #1493df;
}
.modal .modalBox.RQCodeBox .singleSlider .gridBox {
  padding-bottom: 4em;
}
.modal .modalBox.RQCodeBox .singleSlider .gridBox .img-container {
  height: 250px;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.modal .modalBox.RQCodeBox .singleSlider .gridBox .img-container:before {
  display: block;
  content: "";
  padding-top: 100%;
}
.modal .modalBox.RQCodeBox .singleSlider .gridBox .img-container img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.modal .modalBox.RQCodeBox .singleSlider .gridBox .text {
  margin: 0 auto 10px auto;
  text-align: center;
}
.modal .modalBox.RQCodeBox .singleSlider .slick-dots {
  bottom: 15px;
}
.modal .modalBox.RQCodeBox .singleSlider .slick-prev, .modal .modalBox.RQCodeBox .singleSlider .slick-next {
  border: 2px solid #333;
  -webkit-filter: brightness(0);
  filter: brightness(0);
}
.modal .modalBox.RQCodeBox .singleSlider .slick-next {
  right: 5px;
}
.modal .modalBox.RQCodeBox .singleSlider .slick-prev {
  left: 5px;
}
.modal .modalBox #g-recaptcha > div {
  margin: 0 auto !important;
  text-align: center !important;
}
.modal .modalBox .text-left {
  float: left;
}
.modal .modalBox .text-left label {
  display: inline-block;
}
.modal .modalBox .text-right {
  float: right;
}
.modal .modalBox .form_vertical .form_grp {
  color: #CCC;
  margin: 0;
  margin-bottom: 0.5em;
}
.modal .modalBox .form_vertical .form_title {
  font-size: 0em;
  margin-bottom: 0;
  position: absolute;
  bottom: 0;
  left: 0;
}
.modal .modalBox .form_vertical input, .modal .modalBox .form_vertical input label {
  margin-bottom: 0;
  vertical-align: middle;
}
.modal .modalBox .form_vertical .btn_grp button.login-button {
  border: 1px solid #4f4895;
}
.modal .agreeBox {
  text-align: left;
  padding: 1em;
  height: 500px;
  overflow: auto;
  color: #333;
  background: white;
  border: 1px solid white;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.modal .agreeBox p {
  text-align: left;
  margin: 0;
  color: #333;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .modal .modalBox {
    width: 90%;
  }
}
@media screen and (max-width: 575px) {
  .modal h2 {
    font-size: 1.25em;
  }
  .modal p {
    font-size: 1em;
  }
  .modal p a {
    display: block;
    margin-left: 0;
  }
  .modal .modalBox.modalSignup {
    width: 90%;
    font-size: 0.85em;
  }
}
.modal button.close {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 40px;
  z-index: 999999;
  height: 40px;
  display: block;
  font-size: 0;
  border: none;
  background: transparent;
}
.modal button.close:before, .modal button.close:after {
  position: absolute;
  top: 50%;
  left: 5px;
  width: 30px;
  height: 2px;
  background: #fff;
  content: "";
}
.modal button.close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.modal button.close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.modal button.close:hover, .modal button.close:focus {
  cursor: pointer;
}
.modal button.close:hover:before, .modal button.close:focus:before {
  background: #fff;
}
.modal button.close:hover:after, .modal button.close:focus:after {
  background: #fff;
}

@-webkit-keyframes scaleUp {
  0% {
    -webkit-transform: scale(1) translateY(-100px);
    transform: scale(1) translateY(-100px);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1) translateY(-100px);
    transform: scale(1) translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1) translateY(0px);
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
}
@keyframes scaleUp {
  0% {
    -webkit-transform: scale(1) translateY(-100px);
    transform: scale(1) translateY(-100px);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1) translateY(-100px);
    transform: scale(1) translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1) translateY(0px);
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
}
.modal_overlay {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: RGBA(0, 0, 0, 0.8);
  z-index: 9998;
}

/*pop視窗*/
/*pagination*/
.pagination {
  margin: 0 auto 1em auto;
  padding: 0px;
  display: block;
  text-align: center;
  clear: both;
  position: relative;
  font-size: 1.1em;
  overflow: hidden;
  *zoom: 1;
  /* outline: 1px solid red;*/
}
.pagination span {
  color: #781F79;
  margin: 0px 4px;
}
.pagination input, .pagination select, .pagination textarea {
  width: auto !important;
}
.pagination .total {
  display: inline-block;
  color: #666666;
}
.pagination .page {
  display: inline-block;
  margin: auto;
  padding-left: 0;
}
.pagination .page li {
  display: inline-block;
  list-style: none;
  margin: 0 2px;
   /* &.first a,
   &.prev a,
   &.next a,
   &.last a{
     &:hover,
     &:focus {
        text-indent: -9999px;
    }
} */
}
.pagination .page li.first a, .pagination .page li.prev a, .pagination .page li.next a, .pagination .page li.last a {
  font-size: 1.2em;
  position: relative;
  color: #333;
  display: block;
  background: transparent;
  color: transparent;
  border: none;
}
.pagination .page li.first a:before, .pagination .page li.prev a:before, .pagination .page li.next a:before, .pagination .page li.last a:before {
  color: #333;
}
.pagination .page li.first a:hover, .pagination .page li.first a:focus, .pagination .page li.prev a:hover, .pagination .page li.prev a:focus, .pagination .page li.next a:hover, .pagination .page li.next a:focus, .pagination .page li.last a:hover, .pagination .page li.last a:focus {
  background: transparent;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.pagination .page li.first a:hover:before, .pagination .page li.first a:focus:before, .pagination .page li.prev a:hover:before, .pagination .page li.prev a:focus:before, .pagination .page li.next a:hover:before, .pagination .page li.next a:focus:before, .pagination .page li.last a:hover:before, .pagination .page li.last a:focus:before {
  color: #781F79;
}
.pagination .page li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  white-space: nowrap;
  color: #333;
  background-color: #fff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 3px;
  border: none;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.pagination .page li a:hover, .pagination .page li a:focus {
  background: #781F79;
  color: #fff !important;
}
.pagination .page li a:before {
  font-family: 'fontello';
}
.pagination .page li.active a {
  color: #fff !important;
  background: #781F79;
}
.pagination .page li.disabled a:before {
  color: #b3b3b3 !important;
  outline: 0;
  font-weight: normal;
  box-shadow: none;
  cursor: no-drop;
}
.pagination .page li.first a:before {
  content: '\E883';
}
.pagination .page li.prev a:before {
  content: '\E87B';
}
.pagination .page li.next a:before {
  content: '\E87C';
}
.pagination .page li.last a:before {
  content: '\E884';
}
.pagination .viewStatus {
  margin: 0px 0;
  padding: 0;
  line-height: 0.8;
  float: right;
  list-style: none;
}
.pagination .viewStatus li {
  display: inline-block;
  list-style: none;
}
.pagination .viewStatus li.viewList a, .pagination .viewStatus li.viewMap a {
  font-size: 1.2em;
  line-height: 1.5;
  position: relative;
  color: #333;
  display: block;
  background: transparent;
  color: transparent;
  border: 1px solid #CCC;
}
.pagination .viewStatus li.viewList a:before, .pagination .viewStatus li.viewMap a:before {
  color: #333;
}
.pagination .viewStatus li.viewList a:hover, .pagination .viewStatus li.viewList a:focus, .pagination .viewStatus li.viewMap a:hover, .pagination .viewStatus li.viewMap a:focus {
  background: transparent;
  border: 1px solid #1493df;
}
.pagination .viewStatus li.viewList a:hover:before, .pagination .viewStatus li.viewList a:focus:before, .pagination .viewStatus li.viewMap a:hover:before, .pagination .viewStatus li.viewMap a:focus:before {
  color: #1493df;
}
.pagination .viewStatus li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  white-space: nowrap;
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px;
}
.pagination .viewStatus li a:hover, .pagination .viewStatus li a:focus {
  background: #1493df;
  color: #fff !important;
  border: 1px solid #1493df;
}
.pagination .viewStatus li a:before {
  font-family: 'fontello';
}
.pagination .viewStatus li.active a {
  background: #1493df;
  border: #1493df solid 1px;
}
.pagination .viewStatus li.active a:hover:before, .pagination .viewStatus li.active a:focus:before {
  color: #1493df;
}
.pagination .viewStatus li.active a:before {
  color: #fff;
}
.pagination .viewStatus li.viewList a:before {
  content: '\E8BA';
}
.pagination .viewStatus li.viewMap a:before {
  content: '\EAE2';
}

@media screen and (max-width: 767px) {
  .pagination .page {
    position: static;
    clear: both;
    margin-bottom: 5px;
  }
  .pagination .page li {
    margin: 0;
  }
  .pagination .page li a {
    width: 32px;
    height: 32px;
    line-height: 30px;
  }
  .pagination .total {
    clear: both;
    float: none;
    overflow: hidden;
    vertical-align: -4px;
  }
  .pagination .total select.form-control {
    margin: 0px 0px;
    padding: 0;
    text-align: center;
  }
}
/*分頁*/
.thumbnail {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .thumbnail {
    float: left;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .thumbnail {
    float: left;
    width: 33.33333%;
  }
}
@media (min-width: 1400px) {
  .thumbnail {
    float: left;
    width: 33.33333%;
  }
}
.thumbnail a {
  display: block;
  border: 1px solid #DDD;
  padding: .5em;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.thumbnail a:hover, .thumbnail a:focus {
  border: 1px solid #DDD;
  text-decoration: none;
}
.thumbnail a:hover h3, .thumbnail a:focus h3 {
  color: #1493df;
}
.thumbnail a h3 {
  font-size: 1em;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  height: 45px;
  overflow: hidden;
  line-height: 1.45;
}
.thumbnail a p {
  line-height: 1.45;
}
.thumbnail .img-container {
  position: relative;
  overflow: hidden;
  background: #fff;
  /*設定比例ex:4:3 or 16:9*/
}
.thumbnail .img-container:before {
  display: block;
  content: "";
  padding-top: 75%;
}
.thumbnail .img-container img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.thumbnail .caption {
  margin: 5px auto;
}
@media screen and (max-width: 767px) {
  .thumbnail a h3 {
    height: auto;
    overflow: inherit;
  }
}

/*縮圖*/
.category {
  text-align: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 2em auto;
}
.category ul {
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.category ul li {
  margin: 0px 3px 3px 0px;
  display: block;
  float: left;
}
.category a {
  background: #1493df;
  padding: .4em 1em;
  display: block;
  color: #FFF;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.category a:hover, .category a:focus {
  background: #1074b0;
}

/*標籤*/
.gallery .lightbox {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  display: none;
}
.gallery .lightbox .galler_overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  width: 100vw;
  height: 100vh;
  z-index: 1;
  display: block;
}
.gallery .lightbox .caption {
  color: #FFF;
  position: absolute;
  bottom: 0px;
  text-align: center;
  z-index: 999999;
  width: 60%;
  height: 8%;
  left: 50%;
  margin-left: -30%;
  line-height: 1.3em;
}
.gallery .lightbox .light_prev,
.gallery .lightbox .light_next {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  left: 0px;
  width: 80px;
  height: 30px;
  line-height: 30px;
  font-size: .938em;
  color: #FFF;
  z-index: 999;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  transition: .3s ease-out;
}
.gallery .lightbox .light_next {
  right: 0px;
  left: auto;
}
.gallery .lightbox .light_prev:hover,
.gallery .lightbox .light_next:hover {
  background: #FFF;
  color: #000;
  cursor: pointer;
}
.gallery .lightbox .light_close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 80px;
  height: 30px;
  color: #FFF;
  line-height: 30px;
  font-size: .938em;
  z-index: 999;
  background: rgba(0, 0, 0, 0.8);
  transition: .3s ease-out;
  text-align: center;
}
.gallery .lightbox .light_close:hover {
  background: #FFF;
  color: #000;
  cursor: pointer;
}
.gallery .lightbox img {
  max-width: 80vw;
  max-height: 80vh;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*燈箱*/
/* aheadApply*/
.aheadApply ul {
  margin: 3em 0em 2em 0em;
  padding: 0;
}
.aheadApply ul > li {
  list-style: none;
  position: relative;
  display: block;
  z-index: 0;
  font-size: 1.1em;
  background: #FFF;
  margin-bottom: 2px;
}
.aheadApply ul > li span {
  font-weight: 400;
  line-height: 1.45;
  display: block;
  padding: 12px 12px 12px 62px;
}
.aheadApply ul > li .accordion-content {
  padding: 0px 1em 0px 3.5em;
}
.aheadApply ul > li:nth-child(1) span, .aheadApply ul > li:nth-child(1) span a {
  color: #dc2032;
}
.aheadApply ul > li:nth-child(2) span, .aheadApply ul > li:nth-child(2) span a {
  color: #1dbdf1;
}
.aheadApply ul > li:nth-child(3) span, .aheadApply ul > li:nth-child(3) span a {
  color: #85d233;
}
.aheadApply li:before, .aheadApply li:after {
  position: absolute;
  content: "";
  display: block;
  z-index: -1;
}
.aheadApply li:before {
  width: 46px;
  left: 0px;
  bottom: 0;
  top: 0;
  background-size: 80% !important;
  background-repeat: no-repeat !important;
  background-position: 5px 5px !important;
}
.aheadApply li:after {
  top: 15px;
  left: 42px;
  width: 0;
  height: 0;
  border: solid transparent;
  border-width: 10px;
  border-left-color: white;
}
.aheadApply li:nth-child(1):before {
  background: #dc2032 url("../images/icon/icon_VR.png");
}
.aheadApply li:nth-child(1):after {
  border-left-color: #dc2032;
}
.aheadApply li:nth-child(2):before {
  background: #1dbdf1 url("../images/icon/icon_EA.png");
}
.aheadApply li:nth-child(2):after {
  border-left-color: #1dbdf1;
}
.aheadApply li:nth-child(3):before {
  background: #85d233 url("../images/icon/icon_MR.png");
}
.aheadApply li:nth-child(3):after {
  border-left-color: #85d233;
}
.aheadApply li ul {
  margin: 0;
  padding-bottom: 1em;
}
.aheadApply li li {
  margin-left: 0;
  margin-bottom: 4px;
  font-size: 0.8em;
  font-weight: normal;
  padding: 0;
}
.aheadApply li li:before, .aheadApply li li:after {
  display: none !important;
}
.aheadApply li li a {
  color: #333 !important;
  padding: 4px 10px 4px 23px;
  border-radius: 3px;
  font-weight: 500;
  background: #e0e0e0;
  position: relative;
  list-style: none;
}
.aheadApply li li a:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 14px;
  width: 8px;
  height: 8px;
  line-height: 1.25em;
  border: 1px solid gray;
  border-top: none;
  border-left: none;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.aheadApply li li a:hover {
  background: #cccccc;
}

.calendarlist {
  margin: 2em 1em 4em 1em;
}
.calendarlist ul {
  margin: 1em 0;
  padding: 0;
}
.calendarlist ul > li {
  display: block;
  padding: .9em 0;
  position: relative;
  border-top: 1px solid #d9d9d9;
}
.calendarlist ul > li span.favorite {
  color: #CCC;
  display: inline-block;
}
.calendarlist ul > li span.favorite.active {
  color: #ffcf00;
}
.calendarlist ul > li .img-container {
  display: inline-block;
  width: 50px;
  height: 50px;
  vertical-align: middle;
  margin: 0 .5em;
  position: relative;
  overflow: hidden;
  background: #fff;
  background-color: #FFF;
}
.calendarlist ul > li .img-container:before {
  display: block;
  content: "";
  padding-top: 100%;
}
.calendarlist ul > li .img-container img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.calendarlist ul > li .img-container .contain {
  vertical-align: middle;
}
.calendarlist ul > li span.open,
.calendarlist ul > li span.close {
  cursor: pointer;
  position: absolute;
  content: "";
  top: 29px;
  right: 58px;
  width: 28px;
  height: 28px;
  background: red;
  background: url("../images/basic/icon_arrow_down-2.svg") 50% 50% no-repeat;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.calendarlist ul > li span.close {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.calendarlist ul > li .accordion-content {
  line-height: 1.35;
  margin: .5em 0 -.5em;
  font-size: 1.05em;
  font-weight: normal;
  color: #2d2d2d;
  background: #eff0f1;
  padding: 1.25em;
}
.calendarlist ul > li a {
  font-weight: bold;
  font-size: 1.2em;
  color: #1493df;
  white-space: nowrap;
  width: calc(100% - 370px);
  box-sizing: border-box;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  text-overflow: ellipsis;
}
.calendarlist ul > li a span {
  display: table;
  font-size: .72em;
  font-weight: normal;
  color: #4e4e4e;
  background: #ececec;
  padding: 0 .75em;
  border-radius: 4px;
}
.calendarlist ul > li a:focus {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.calendarlist ul > li time {
  font-size: 1em;
  font-weight: normal;
  color: #666666;
}
.calendarlist ul li:first-child {
  border-top: 1px solid transparent;
}
.calendarlist ul li time:nth-child(odd) {
  margin-right: .25em;
}
.calendarlist ul li time:nth-child(even) {
  margin-left: .25em;
}
@media screen and (max-width: 767px) {
  .calendarlist {
    margin: 0em 0em 2em 0em;
  }
  .calendarlist ul > li {
    margin: 0em;
    padding: 10px;
  }
  .calendarlist ul > li a:after {
    top: 7px;
    right: 0;
  }
  .calendarlist ul > li a time,
  .calendarlist ul > li .img-container {
    display: inline-block;
  }
  .calendarlist ul > li a time {
    font-size: 0.75em;
  }
  .calendarlist ul > li time {
    margin-left: 1em;
    font-size: 1.2em;
    line-height: 60px;
  }
  .calendarlist ul > li time + time {
    margin-left: 0;
  }
  .calendarlist ul > li .img-container {
    margin-right: 0;
    width: 60px;
    height: 60px;
    float: left;
  }
  .calendarlist ul > li .img-container img {
    width: auto;
    height: auto;
  }
  .calendarlist ul > li a {
    margin-top: 10px;
    width: calc(100% - 60px);
    clear: both;
    display: block;
    white-space: normal;
    overflow: visible;
    text-overflow: inherit;
  }
  .calendarlist ul > li span.open,
  .calendarlist ul > li span.close {
    top: 80px;
    right: 13px;
  }
  .calendarlist ul > li .accordion-content {
    margin: .5em -.6em -.6em;
  }
}
@media screen and (max-width: 575px) {
  .calendarlist ul > li span.favorite {
    right: 2px;
  }
  .calendarlist ul > li time {
    margin-left: 1em;
    font-size: 1em;
    line-height: 3.5;
  }
  .calendarlist ul > li .img-container {
    width: 50px;
    height: 50px;
  }
  .calendarlist ul > li span.open,
  .calendarlist ul > li span.close {
    top: 80px;
    right: 5px;
  }
}

.gridCard,
.calendarlist {
  margin: 2em 1em 4em 1em;
}
.gridCard h3,
.calendarlist h3 {
  text-align: center;
  font-size: 2em;
  font-weight: 200;
  margin-top: 80px;
}
.gridCard h3 span,
.calendarlist h3 span {
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  padding: .25em 1.5em;
}
@media screen and (max-width: 767px) {
  .gridCard,
  .calendarlist {
    margin: 0 !important;
  }
}

/*accordion*/
/* 頁面*/
body.noscroll, html.noscroll {
  position: static !important;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
  overflow-y: hidden !important;
  margin: 0;
  padding: 0;
}

html {
  overflow-y: scroll;
}

.tie-2021 .signupBox.border {
  padding: .5em 2em;
}
.tie-2021 .Pre-entry {
  padding: 1.5em 2em;
  margin: 1.5em auto;
}
.tie-2021 .Pre-entry.fin {
  text-align: center;
}
.tie-2021 .Pre-entry.fin h3 {
  text-align: center;
  padding: 1em 0;
  margin: 0;
  line-height: 1.3;
  color: #1493df;
  position: relative;
}
.tie-2021 .Pre-entry.fin h3:before {
  content: '';
  position: absolute;
  width: 180px;
  height: 3px;
  background: #1493df;
  left: 50%;
  margin-left: -90px;
  bottom: 12px;
}
.tie-2021 .Pre-entry.fin p {
  font-size: 1em;
  color: #8c8c8c;
}
.tie-2021 .Pre-entry.fin .info {
  text-align: left;
  background: #f5f5f5;
  margin: 0 -2em 10px;
  padding: 1em 3em 5em;
  color: #222;
}
.tie-2021 .Pre-entry.fin .info p {
  margin: 16px 0;
  color: #222;
  line-height: 1.4;
}
.tie-2021 .Pre-entry.fin .info ol, .tie-2021 .Pre-entry.fin .info ul {
  margin-bottom: 10px;
}
.tie-2021 .Pre-entry.fin .info .QRcode img {
  width: 100px;
  height: 100px;
  padding: 8px;
  background: #c1c1c1;
}
.tie-2021 .Pre-entry.fin .btn {
  margin: 4px 0;
}

.steps {
  padding: 1em 0 0;
}
.steps ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: row nowrap;
  overflow: hidden;
}
.steps ul li {
  flex: 1 1 0;
  flex-basis: calc(100% / 3);
  text-align: center;
  position: relative;
}
.steps ul li:before, .steps ul li:after {
  content: "";
  display: block;
  width: calc(50% - 28px);
  height: .1em;
  background: #ddd;
  position: absolute;
  top: 28px;
}
.steps ul li:before {
  left: 0;
}
.steps ul li:after {
  right: 0;
}
.steps ul li:first-child:before {
  display: none;
}
.steps ul li:last-child:after {
  display: none;
}
.steps ul li p {
  color: #666;
  margin-top: .5em;
  margin-bottom: .5em;
  font-size: 1.125em;
}
.steps ul li p b {
  color: #555;
  font-size: small;
}
.steps ul li span {
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  background: #f3f3f3;
  box-shadow: inset 0px 0px 0px 3px #ddd;
  width: 56px;
  height: 56px;
  line-height: 56px;
  font-size: 1.5em;
  color: #666;
  position: relative;
}
.steps ul li.Pass span {
  box-shadow: inset 0px 0px 0px 3px #304faa;
  color: #253d82;
}
.steps ul li.Pass:before, .steps ul li.Pass:after {
  background: #304faa;
}
.steps ul li.Now span {
  background: #304faa;
  color: #fff;
  box-shadow: inset 0px 0px 0px 3px #304faa;
}
.steps ul li.Now span + p {
  color: #2a4696;
  font-weight: bold;
}
.steps ul li.Now:before {
  background: #304faa;
}
.steps ul li.Now:after {
  background: #ddd;
}
.steps ul li:last-child span:after {
  background: #fff;
  width: 200%;
}

.remark b {
  padding: 0 8px;
  color: #dc0000;
}
.remark b.fail {
  border-top: 1px solid #dc0000;
  border-bottom: 1px solid #dc0000;
  display: inline-block;
  margin-right: 10px;
  padding: 5px 8px 5px 28px;
  background: url(../images/basic/icon_error.svg) 8px 50% no-repeat;
  background-size: 15px 15px;
}

.recommend {
  margin-top: 2em;
}
.recommend .inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.recommend .inner .col {
  flex: 1 1 auto;
  flex-basis: calc(100% / 2 - 10px);
  border-bottom: solid 1px #ddd;
  padding: 1em 0 1em;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.recommend .inner .col .foto {
  flex: 0 0 180px;
  max-width: 180px;
  height: 180px;
  text-align: center;
  margin-bottom: 10px;
}
.recommend .inner .col .foto img {
  height: 100%;
}
.recommend .inner .col .foto a {
  display: block;
  height: 180px;
  background: #fff;
  transition: all .3s ease;
}
.recommend .inner .col .foto a:hover, .recommend .inner .col .foto a:focus {
  background: #f5f5f5;
}
.recommend .inner .col .info {
  flex: 1 1 auto;
  flex-basis: calc(100% - 180px);
  padding: 0 1em;
  box-sizing: border-box;
}
.recommend .inner .col .info h3 {
  line-height: 1.4;
  font-size: 1.25em;
  margin-top: 0;
}
.recommend .inner .col .info h3 a {
  display: block;
}
.recommend .inner .col .info .link a {
  background: #f4f4f4;
  color: #222;
  display: inline-block;
  border-radius: 40px;
  padding: .35em 1em;
  margin: .15em 0;
  border-radius: 40px;
  box-shadow: inset 0 0 0 1px #eee;
}
.recommend .inner .col .info .link a:hover, .recommend .inner .col .info .link a:focus {
  background: #5d18bc;
  color: #fff;
  box-shadow: inset 0 0 0 1px #5215a5;
}
@media screen and (max-width: 991px) {
  .recommend .inner .col {
    flex-basis: calc(100% - 10px);
  }
}

.show_info {
  background: #2a7abd;
  color: #fff;
  padding: 1em 2em;
}
.show_info .inner-wrap {
  max-width: 1100px;
  margin: auto;
  text-align: left;
}
.show_info h3.title {
  text-align: center;
  font-size: 1.8em;
  position: relative;
}
.show_info h3.title:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 2px;
  background: #fff;
  left: 50%;
  margin-left: -30px;
  bottom: -14px;
}
.show_info a {
  display: inline-block;
  padding: 2px 8px;
  margin: 0 2px;
  color: yellow;
  text-decoration: underline;
  border-radius: 4px;
  transition: all .3s ease;
}
.show_info a:hover, .show_info a:focus {
  color: #fff;
  background: #1b4f7a;
  text-decoration: none;
}
.show_info p {
  margin-bottom: 1em;
}
.show_info p.center {
  text-align: center;
}
.show_info ol.center li, .show_info ul.center li {
  text-align: center;
}

.login-type h3.title {
  text-align: center;
  margin: 0 auto 1em;
  font-size: 1.8em;
}
.login-type .inner-wrap {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.login-type .inner-wrap section {
  flex: 0 0 auto;
  flex-basis: calc(50% - 30px);
}
.login-type .inner-wrap section:first-child {
  position: relative;
}
.login-type .inner-wrap section:first-child:before {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background: #d4d4d4;
  position: absolute;
  right: -30px;
}
.login-type .inner-wrap section:first-child:after {
  content: 'or';
  display: block;
  background: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  position: absolute;
  right: -46px;
  top: 50%;
  margin-top: -15px;
}
.login-type .inner-wrap section h4 {
  margin: 5px 0;
}
.login-type .inner-wrap section p {
  margin: 5px 0;
}
.login-type .inner-wrap section ul, .login-type .inner-wrap section ol {
  margin-bottom: 12px;
}
.login-type .inner-wrap section hr {
  border-top: 1px dotted #d4d4d4;
}
.login-type .inner-wrap section .btn_grp {
  margin: 0 0 10px !important;
}
.login-type .inner-wrap section .contact {
  background: #f5f5f5;
  padding: 1em;
}
.login-type .inner-wrap section .function h4 {
  text-align: center;
}
@media screen and (max-width: 991px) {
  .login-type .inner-wrap {
    flex-flow: row wrap;
  }
  .login-type .inner-wrap section {
    flex: 1 1 100%;
    padding-bottom: 1em;
    margin-bottom: 1em;
  }
  .login-type .inner-wrap section:first-child:before {
    right: 0;
    width: 100%;
    height: 1px;
    bottom: 0;
  }
  .login-type .inner-wrap section:first-child:after {
    right: 50%;
    top: auto;
    margin-right: -15px;
    margin-top: auto;
  }
}

.need-check > input, .PD-code-search > input {
  padding: 22px 52px 0 16px !important;
}
.need-check .btn-check, .PD-code-search .btn-check {
  font-size: 0;
  position: absolute;
  right: 1px;
  top: 1px;
  min-width: 50px;
  height: 59px;
  border: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  transition: all .3s ease;
}

.need-check .btn-check {
  background: url(../images/basic/icon_arrow_right3.svg) 50% 50% no-repeat, #2a7abd;
  background-size: 24px 24px;
}
.need-check .btn-check:hover, .need-check .btn-check:focus {
  background: url(../images/basic/icon_arrow_right3.svg) 50% 50% no-repeat, #5d18bc;
  background-size: 24px 24px;
}

.PD-code-search .btn-check {
  margin-top: 27px;
  background: url(../images/icon/icon_search2.png) 50% 50% no-repeat, #2a7abd;
  background-size: 24px 24px;
}
.PD-code-search .btn-check:hover, .PD-code-search .btn-check:focus {
  background: url(../images/icon/icon_search2.png) 50% 50% no-repeat, #5d18bc;
  background-size: 24px 24px;
}

.faceID {
  background: #f9f9f9;
  padding: 1em 4em;
  margin-bottom: 1em;
}
.faceID > h3.title {
  font-size: 2em;
  color: #2a7abd;
  position: relative;
}
.faceID > h3.title:after {
  content: '';
  position: absolute;
  width: 125px;
  height: 2px;
  background: #2a7abd;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .faceID {
    padding: 1em 1.75em;
  }
  .faceID > h3.title {
    margin-top: .5em;
  }
}

.drag {
  background: #f5f5f5;
  padding: 1em;
  text-align: center;
  border: dotted 2px #1493df;
}
.drag p {
  line-height: 1.4;
  margin: .25em 0;
  color: #1493df;
  padding-top: 60px;
  background: url(../images/icon/icon_drag.svg) 50% top no-repeat;
  background-size: 60px 60px;
}
.drag img {
  margin-top: .25em;
}
.drag + .btn_grp {
  margin: 10px 0 !important;
}

.buyer {
  padding: 30px 30px;
  margin: 0 -30px 1em;
  background: #4a2a9a;
}

.accordion ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.accordion ul li {
  margin: 4px 0;
}
.accordion ul li > a {
  display: block;
  padding: 8px 16px 8px 42px;
  border-bottom: solid 2px #e5e5e5;
  background: url(../images/basic/icon_arrow_right4.svg) 10px 50% no-repeat;
  background-size: 20px 20px;
  color: #515151;
  line-height: 1.4;
  transition: all .3s ease;
}
.accordion ul li > a.active, .accordion ul li > a:hover, .accordion ul li > a:focus {
  color: #004ba7;
  border-bottom: solid 2px #004ba7;
  background: url(../images/basic/icon_arrow_right5.svg) 10px 50% no-repeat;
  background-size: 20px 20px;
}
.accordion ul li .accordion-content {
  padding: 1em 1.5em;
  background: #f6f6f6;
}
.accordion ul li .accordion-content a {
  display: inline-block;
  padding: 0;
  border-bottom: 0;
  color: #1284c8;
  background: none;
}
.accordion ul li .accordion-content a:hover, .accordion ul li .accordion-content a:focus {
  text-decoration: underline;
}
.accordion ul li .accordion-content ol, .accordion ul li .accordion-content ul, .accordion ul li .accordion-content p {
  margin: 10px 0;
  line-height: 1.6;
}
.accordion ul li .accordion-content ul {
  list-style: disc;
  padding-left: 2em;
}

/* 最外圍預設為100%*/
.wrapper {
  width: 100%;
  margin: 0px auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrapper {
    background: #FFF;
  }
}
.wrapper.MP .main > .container {
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  .wrapper.MP .main > .container {
    background-position: 0 440px;
  }
  .wrapper.MP .main > .container h2 {
    font-size: 2em;
  }
}
@media screen and (max-width: 767px) {
  .wrapper.MP .main > .container:before {
    background-size: contain;
    -webkit-filter: opacity(0.8);
    filter: opacity(0.8);
  }
  .wrapper.MP .main > .container h2 {
    font-size: 2em;
    width: 100%;
    overflow: visible;
    position: relative;
  }
  .wrapper.MP .main > .container h2:after {
    position: absolute;
    content: "";
    bottom: -5px;
    left: 0;
    right: 0;
    width: 40%;
    margin: auto;
  }
  .wrapper.MP .main > .container h2 a:hover, .wrapper.MP .main > .container h2 a:focus {
    text-decoration: underline;
  }
}

/**
 * ----------------------------------------
 * animation color-change-2x
 * ----------------------------------------
 */
@-webkit-keyframes color-change-2x {
  0% {
    background: #07d8df;
  }
  100% {
    background: #a92576;
  }
}
@keyframes color-change-2x {
  0% {
    background: #07d8df;
  }
  100% {
    background: #a92576;
  }
}
/* @-webkit-keyframes AnimationName {
    0%{background-position:50% 0%}
    50%{background-position:51% 100%}
    100%{background-position:50% 0%}
}
@keyframes AnimationName { 
    0%{background-position:50% 0%}
    50%{background-position:51% 100%}
    100%{background-position:50% 0%}
} */
/* 整體共用container樣式，請注意首頁切版頁面的整齊*/
.container {
  margin: 0 auto;
  max-width: 1200px;
  /*請看_variable.scss*/
}

.main {
  position: relative;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  background: #FFF;
  /* 內頁標題設定*/
}
.main .container {
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.main.innerpage .container {
  background: #FFF;
}
@media screen and (max-width: 767px) {
  .main {
    padding-top: 0em;
  }
  .main.innerpage .container {
    max-width: 100% !important;
  }
}
.main h2 {
  line-height: 1.25em;
}

/*//////////////////////////////////////////////////////////*/
/* 為了與首頁區隔，請在內頁加上innerpage ClassName*/
.innerpage {
  position: relative;
  z-index: 1;
}
.innerpage:before {
  content: '';
  width: 100%;
  display: block;
  position: absolute;
  height: 120px;
  background: #fff;
  transform: skewY(-3deg);
  bottom: -50px;
}
.innerpage h2 {
  color: #2f549c;
  font-size: 1.8em;
}
.innerpage > .container {
  min-height: 300px !important;
  position: relative;
  min-height: 1px;
  padding-left: 3em;
  padding-right: 3em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-bottom: 2em;
  position: relative;
  z-index: 0;
  overflow: inherit;
  background: #FFF;
}
@media screen and (max-width: 991px) {
  .innerpage > .container {
    padding: 1em 1em;
  }
}
@media screen and (max-width: 767px) {
  .innerpage > .container {
    margin-top: 0em;
    padding: 1em 1.25em;
  }
}

/* Go from zero to full opacity */
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 滿版*/
.col-12 .col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  border: none;
  /* @include gutter(); //gutter 代表左右要留白*/
}
@media (min-width: 768px) {
  .col-12 .col {
    float: left;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-12 .col {
    float: left;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-12 .col {
    float: left;
    width: 100%;
  }
}

/* 五欄*/
.col-2 .container {
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.col-2 .col {
  position: relative;
  float: left;
  width: 50%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .col-2 .col {
    float: left;
    width: 25%;
  }
}
@media (min-width: 992px) {
  .col-2 .col {
    float: left;
    width: 16.66667%;
  }
}
@media (min-width: 1400px) {
  .col-2 .col {
    float: left;
    width: 16.66667%;
  }
}

.col-5 .container {
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.col-5 .col {
  width: calc(100% / 5);
  display: block;
  float: left;
}
@media screen and (max-width: 991px) {
  .col-5 .col {
    width: calc(100% / 3);
  }
}

/* 三欄*/
.col-4 .container {
  /* @include gutter(); gutter 代表左右要留白*/
}
.col-4 .col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*gutter 代表左右要留白*/
}
@media (min-width: 768px) {
  .col-4 .col {
    float: left;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .col-4 .col {
    float: left;
    width: 33.33333%;
  }
}
@media (min-width: 1400px) {
  .col-4 .col {
    float: left;
    width: 33.33333%;
  }
}

/* 四欄*/
.col-3 .container {
  /* @include gutter(); gutter 代表左右要留白*/
}
.col-3 .col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*gutter 代表左右要留白*/
}
@media (min-width: 768px) {
  .col-3 .col {
    float: left;
    width: 33.33333%;
  }
}
@media (min-width: 992px) {
  .col-3 .col {
    float: left;
    width: 25%;
  }
}
@media (min-width: 1400px) {
  .col-3 .col {
    float: left;
    width: 25%;
  }
}

/* 雙欄*/
.col-6 .container {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*gutter 代表左右要留白*/
}
.col-6 .col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*768px  width:50%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*992px  width:50%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*1400px width:50%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .col-6 .col {
    float: left;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .col-6 .col {
    float: left;
    width: 50%;
  }
}
@media (min-width: 1400px) {
  .col-6 .col {
    float: left;
    width: 50%;
  }
}

/* 雙欄 5-2-5*/
.col-6-2-4 .container {
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.col-6-2-4 .col h3 {
  margin-top: 5px;
  color: #1074b0;
  font-size: 1em;
  margin: 0;
  text-align: left;
}
.col-6-2-4 .col:nth-child(1) {
  position: relative;
  float: left;
  width: 58.33333%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 1.5em;
}
.col-6-2-4 .col:nth-child(2) {
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  vertical-align: middle;
  text-align: center !important;
  position: relative;
  float: left;
  width: 8.33333%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-6-2-4 .col:nth-child(3) {
  position: relative;
  float: left;
  width: 33.33333%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-6-2-4 .col:nth-child(3) ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.col-6-2-4 .col .half {
  margin: 0;
  padding: 0;
}
.col-6-2-4 .col .half li {
  padding: 0;
  width: 47%;
  float: left;
  margin-right: 10px;
  display: inline-block;
}

/* 雙欄 3-9*/
.col-3-9 .col:nth-child(1) {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*gutter 代表左右要留白*/
}
@media (min-width: 768px) {
  .col-3-9 .col:nth-child(1) {
    float: left;
    width: 25%;
  }
}
@media (min-width: 992px) {
  .col-3-9 .col:nth-child(1) {
    float: left;
    width: 25%;
  }
}
@media (min-width: 1400px) {
  .col-3-9 .col:nth-child(1) {
    float: left;
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .col-3-9 .col:nth-child(1) {
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.col-3-9 .col:nth-child(2) {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*992px  width:66.6%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*1400px width:66.6%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*gutter 代表左右要留白*/
}
@media (min-width: 768px) {
  .col-3-9 .col:nth-child(2) {
    float: left;
    width: 75%;
  }
}
@media (min-width: 992px) {
  .col-3-9 .col:nth-child(2) {
    float: left;
    width: 75%;
  }
}
@media (min-width: 1400px) {
  .col-3-9 .col:nth-child(2) {
    float: left;
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .col-3-9 .col:nth-child(2) {
    margin-bottom: 1.5em;
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

/* 雙欄 4-8*/
.col-4-8 .col:nth-child(1) {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*gutter 代表左右要留白*/
}
@media (min-width: 768px) {
  .col-4-8 .col:nth-child(1) {
    float: left;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-4-8 .col:nth-child(1) {
    float: left;
    width: 33.33333%;
  }
}
@media (min-width: 1400px) {
  .col-4-8 .col:nth-child(1) {
    float: left;
    width: 33.33333%;
  }
}
.col-4-8 .col:nth-child(2) {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*992px  width:66.6%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*1400px width:66.6%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*gutter 代表左右要留白*/
}
@media (min-width: 768px) {
  .col-4-8 .col:nth-child(2) {
    float: left;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-4-8 .col:nth-child(2) {
    float: left;
    width: 66.66667%;
  }
}
@media (min-width: 1400px) {
  .col-4-8 .col:nth-child(2) {
    float: left;
    width: 66.66667%;
  }
}

/* 雙欄 8-4*/
.col-8-4 > .col:nth-child(1) {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*gutter 代表左右要留白*/
}
@media (min-width: 768px) {
  .col-8-4 > .col:nth-child(1) {
    float: left;
    width: 66.66667%;
  }
}
@media (min-width: 992px) {
  .col-8-4 > .col:nth-child(1) {
    float: left;
    width: 66.66667%;
  }
}
@media (min-width: 1400px) {
  .col-8-4 > .col:nth-child(1) {
    float: left;
    width: 66.66667%;
  }
}
.col-8-4 > .col:nth-child(2) {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*992px  width:66.6%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*1400px width:66.6%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*gutter 代表左右要留白*/
}
@media (min-width: 768px) {
  .col-8-4 > .col:nth-child(2) {
    float: left;
    width: 33.33333%;
  }
}
@media (min-width: 992px) {
  .col-8-4 > .col:nth-child(2) {
    float: left;
    width: 33.33333%;
  }
}
@media (min-width: 1400px) {
  .col-8-4 > .col:nth-child(2) {
    float: left;
    width: 33.33333%;
  }
}

/* 雙欄 9-3*/
.col-9-3 .col:nth-child(1) {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*992px  width:66.6%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*1400px width:66.6%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*gutter 代表左右要留白*/
}
@media (min-width: 768px) {
  .col-9-3 .col:nth-child(1) {
    float: left;
    width: 75%;
  }
}
@media (min-width: 992px) {
  .col-9-3 .col:nth-child(1) {
    float: left;
    width: 75%;
  }
}
@media (min-width: 1400px) {
  .col-9-3 .col:nth-child(1) {
    float: left;
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .col-9-3 .col:nth-child(1) {
    margin-bottom: 1.5em;
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.col-9-3 .col:nth-child(2) {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*gutter 代表左右要留白*/
}
@media (min-width: 768px) {
  .col-9-3 .col:nth-child(2) {
    float: left;
    width: 25%;
  }
}
@media (min-width: 992px) {
  .col-9-3 .col:nth-child(2) {
    float: left;
    width: 25%;
  }
}
@media (min-width: 1400px) {
  .col-9-3 .col:nth-child(2) {
    float: left;
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .col-9-3 .col:nth-child(2) {
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

/* 雙欄 10-2*/
.col-10-2 .col:nth-child(1) {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*992px  width:66.6%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*1400px width:66.6%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*gutter 代表左右要留白*/
}
@media (min-width: 768px) {
  .col-10-2 .col:nth-child(1) {
    float: left;
    width: 83.33333%;
  }
}
@media (min-width: 992px) {
  .col-10-2 .col:nth-child(1) {
    float: left;
    width: 83.33333%;
  }
}
@media (min-width: 1400px) {
  .col-10-2 .col:nth-child(1) {
    float: left;
    width: 83.33333%;
  }
}
@media screen and (max-width: 767px) {
  .col-10-2 .col:nth-child(1) {
    margin-bottom: 1.5em;
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.col-10-2 .col:nth-child(2) {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*gutter 代表左右要留白*/
}
@media (min-width: 768px) {
  .col-10-2 .col:nth-child(2) {
    float: left;
    width: 16.66667%;
  }
}
@media (min-width: 992px) {
  .col-10-2 .col:nth-child(2) {
    float: left;
    width: 16.66667%;
  }
}
@media (min-width: 1400px) {
  .col-10-2 .col:nth-child(2) {
    float: left;
    width: 16.66667%;
  }
}
@media screen and (max-width: 767px) {
  .col-10-2 .col:nth-child(2) {
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.col-2-10 .col:nth-child(1) {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*992px  width:66.6%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*1400px width:66.6%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*gutter 代表左右要留白*/
}
@media (min-width: 768px) {
  .col-2-10 .col:nth-child(1) {
    float: left;
    width: 16.66667%;
  }
}
@media (min-width: 992px) {
  .col-2-10 .col:nth-child(1) {
    float: left;
    width: 16.66667%;
  }
}
@media (min-width: 1400px) {
  .col-2-10 .col:nth-child(1) {
    float: left;
    width: 16.66667%;
  }
}
@media screen and (max-width: 767px) {
  .col-2-10 .col:nth-child(1) {
    margin-bottom: 1.5em;
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.col-2-10 .col:nth-child(2) {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*gutter 代表左右要留白*/
}
@media (min-width: 768px) {
  .col-2-10 .col:nth-child(2) {
    float: left;
    width: 83.33333%;
  }
}
@media (min-width: 992px) {
  .col-2-10 .col:nth-child(2) {
    float: left;
    width: 83.33333%;
  }
}
@media (min-width: 1400px) {
  .col-2-10 .col:nth-child(2) {
    float: left;
    width: 83.33333%;
  }
}
@media screen and (max-width: 767px) {
  .col-2-10 .col:nth-child(2) {
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

/* 雙欄 8-4*/
.col-8-4 .col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .col-8-4 .col {
    float: left;
    width: 66.66667%;
  }
}
@media (min-width: 992px) {
  .col-8-4 .col {
    float: left;
    width: 66.66667%;
  }
}
@media (min-width: 1400px) {
  .col-8-4 .col {
    float: left;
    width: 66.66667%;
  }
}
.col-8-4 .col:nth-child(2) {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .col-8-4 .col:nth-child(2) {
    float: left;
    width: 33.33333%;
  }
}
@media (min-width: 992px) {
  .col-8-4 .col:nth-child(2) {
    float: left;
    width: 33.33333%;
  }
}
@media (min-width: 1400px) {
  .col-8-4 .col:nth-child(2) {
    float: left;
    width: 33.33333%;
  }
}
.col-8-4 .news {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*992px  width:66.6%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*1400px width:66.6%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*gutter 代表左右要留白*/
}
@media (min-width: 768px) {
  .col-8-4 .news {
    float: left;
    width: 66.66667%;
  }
}
@media (min-width: 992px) {
  .col-8-4 .news {
    float: left;
    width: 66.66667%;
  }
}
@media (min-width: 1400px) {
  .col-8-4 .news {
    float: left;
    width: 66.66667%;
  }
}
.col-8-4 .video {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .col-8-4 .video {
    float: left;
    width: 33.33333%;
  }
}
@media (min-width: 992px) {
  .col-8-4 .video {
    float: left;
    width: 33.33333%;
  }
}
@media (min-width: 1400px) {
  .col-8-4 .video {
    float: left;
    width: 33.33333%;
  }
}

/*版型初始設定*/
.new-bg {
  background: url(../images/bg-mp2020-1.jpg) 50% bottom no-repeat;
  background-size: cover;
}
.new-bg:first-child {
  padding-top: 5em;
}
.new-bg h2 {
  color: white;
}
.new-bg .Video {
  position: relative;
}
.new-bg .Video h2 {
  color: #fff;
  padding-top: 2em;
}
.new-bg .Video:before, .new-bg .Video:after {
  content: '';
  width: 100%;
  display: block;
  position: absolute;
}
.new-bg .Video:before {
  background: #fff;
  height: 360px;
  transform: skewY(-3deg);
  bottom: 0;
}
.new-bg .Photo {
  position: relative;
  padding-top: .5em;
  background: url(../images/bg-mp2020-1.jpg) 50% bottom no-repeat;
  background-size: cover;
}
.new-bg .Photo h2 {
  padding: .5em 0;
}
.new-bg .Photo:before {
  content: '';
  width: 100%;
  display: block;
  position: absolute;
  background: #fff;
  height: 360px;
  transform: skewY(3deg);
  bottom: -100px;
}
@media screen and (max-width: 991px) {
  .new-bg:first-child {
    padding-top: calc(60px - 2em);
  }
  .new-bg .menu2020 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .new-bg:first-child {
    margin-bottom: 1em;
  }
}

.new-bg + .section + .new-bg {
  background: #fff;
}

.section {
  padding: 0 0 1.125em;
  text-align: center;
  position: relative;
}
.section [class^="col"] {
  color: #1493df;
  text-align: center;
  font-weight: bold;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.section h2 {
  font-size: 2.125em;
  letter-spacing: 3px;
}
.section .svgLogo {
  background: url(../images/bg-mp2020-1.jpg) 50% top no-repeat;
  background-size: cover;
  padding: 2em 0 9em;
  position: relative;
}
.section .svgLogo:before {
  content: '';
  position: absolute;
  left: calc( 50% - 12px);
  top: -15px;
  width: 20px;
  height: 20px;
  background: #fff;
  transform: rotate(45deg);
}
.section .svgLogo + .container {
  margin-top: -8em;
}
@media screen and (max-width: 991px) {
  .section .svgLogo {
    display: none;
  }
  .section .svgLogo + .container {
    margin-top: 0;
  }
}
.section + .section h2 {
  overflow: hidden;
  clear: both;
}

.MP .MP-gridCard > .col .readmore {
  z-index: 10;
  right: 30px !important;
  bottom: -20px !important;
}
.MP .MP-gridCard > .col .gridBox {
  right: 0 !important;
  bottom: auto !important;
}
.MP .MP-gridCard > .col .singleSlider {
  display: block;
}

.MP-gridCard .m_singleSlider {
  display: none;
}

/* KV-Banner */
.KV-Banner {
  padding: 0;
}
.KV-Banner .KV-overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: block;
  background: #333 center no-repeat;
  background-size: cover;
  z-index: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -webkit-filter: blur(4px);
  filter: blur(4px);
}
.KV-Banner .BuildingName {
  font-size: 1.25em;
  overflow: hidden;
  display: block;
  text-align: center;
  padding: 20px 12px;
  width: 100%;
  box-sizing: border-box;
  font-weight: 500;
  color: white;
  background: rgba(0, 0, 0, 0.75);
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.KV-Banner .slick-dots {
  bottom: -42px;
}
.KV-Banner .slick-dots li button:before {
  background: #fff;
}
.KV-Banner .slick-dots li.slick-active button:before {
  background: yellow;
}
.KV-Banner .container .col {
  position: relative;
  position: relative;
  min-height: 1px;
  padding-left: 0px;
  padding-right: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.KV-Banner .container .col .singleSlider .img-container {
  overflow: hidden;
  width: calc(100% - 10px);
  height: 390px;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 5px solid #fff;
}
.KV-Banner .container .col .singleSlider .img-container:before {
  display: block;
  content: "";
  padding-top: 33.33333%;
}
.KV-Banner .container .col .singleSlider .img-container img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.KV-Banner .container .col .singleSlider .gridBox:hover .caption .favorite, .KV-Banner .container .col .singleSlider .gridBox:hover .caption .readmore, .KV-Banner .container .col .singleSlider .gridBox:focus .caption .favorite, .KV-Banner .container .col .singleSlider .gridBox:focus .caption .readmore {
  display: block !important;
}
.KV-Banner .container .col .startText, .KV-Banner .container .col .startBtn, .KV-Banner .container .col .BuildingName {
  color: white;
  z-index: 2;
  position: absolute;
  text-shadow: 0 1px 5px #333;
}
.KV-Banner .container .col .startText {
  top: 30%;
  max-width: 700px;
  left: 0;
  right: 0;
  margin: auto;
}
.KV-Banner .container .col .startText .slogan {
  font-size: 3em;
  line-height: 1;
  width: 100%;
  text-transform: uppercase;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.KV-Banner .container .col .startText .slogan span {
  font-size: 0.75em;
  font-weight: 500;
  display: block;
  letter-spacing: 0px;
  text-align: center;
  overflow: hidden;
  width: 75%;
  margin: 10px auto;
}
.KV-Banner .container .col .startText .slogan span:before, .KV-Banner .container .col .startText .slogan span:after {
  content: "";
  display: inline-block;
  height: .65em;
  margin: 0 0px 0 -100%;
  vertical-align: top;
  width: 50%;
  border-bottom: 2px solid #fff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.KV-Banner .container .col .startText .slogan span:after {
  margin: 0 -100% 0 0;
}
.KV-Banner .container .col .startText.zh span {
  width: 45%;
  letter-spacing: 2px;
}
.KV-Banner .container .col .startBtn {
  max-width: 700px;
  bottom: 40%;
  left: 0;
  right: 0;
  margin: auto;
}
.KV-Banner .container .col .startBtn .btn-switch {
  position: relative;
  margin: 0 5px 0 0;
  padding: 10px 15px;
  min-width: 150px;
  border: none;
  -moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-transition: ease-in 0.3s;
  -o-transition: ease-in 0.3s;
  -webkit-transition: ease-in 0.3s;
  transition: ease-in 0.3s;
  background: rgba(78, 0, 102, 0.7);
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#B34E0066', endColorstr='#80F00099');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRlMDA2NiIgc3RvcC1vcGFjaXR5PSIwLjciLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMDAwOTkiIHN0b3Atb3BhY2l0eT0iMC41Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(78, 0, 102, 0.7)), color-stop(100%, rgba(240, 0, 153, 0.5)));
  background-image: -moz-linear-gradient(top, rgba(78, 0, 102, 0.7) 0%, rgba(240, 0, 153, 0.5) 100%);
  background-image: -webkit-linear-gradient(top, rgba(78, 0, 102, 0.7) 0%, rgba(240, 0, 153, 0.5) 100%);
  background-image: linear-gradient(to bottom, rgba(78, 0, 102, 0.7) 0%, rgba(240, 0, 153, 0.5) 100%);
  -moz-transition: all 0.3s cubic-bezier(0.5, 0.24, 0, 1);
  -o-transition: all 0.3s cubic-bezier(0.5, 0.24, 0, 1);
  -webkit-transition: all 0.3s cubic-bezier(0.5, 0.24, 0, 1);
  transition: all 0.3s cubic-bezier(0.5, 0.24, 0, 1);
}
.KV-Banner .container .col .startBtn .btn-switch:before {
  content: '';
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 2;
  width: 0%;
  height: 1px;
  background: #fff;
  display: block;
  -moz-transition: all 0.3s cubic-bezier(0.5, 0.24, 0, 1);
  -o-transition: all 0.3s cubic-bezier(0.5, 0.24, 0, 1);
  -webkit-transition: all 0.3s cubic-bezier(0.5, 0.24, 0, 1);
  transition: all 0.3s cubic-bezier(0.5, 0.24, 0, 1);
}
.KV-Banner .container .col .startBtn .btn-switch:after {
  content: '';
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 2;
  width: 0%;
  height: 1px;
  background: #fff;
  -moz-transition: all 0.3s cubic-bezier(0.5, 0.24, 0, 1);
  -o-transition: all 0.3s cubic-bezier(0.5, 0.24, 0, 1);
  -webkit-transition: all 0.3s cubic-bezier(0.5, 0.24, 0, 1);
  transition: all 0.3s cubic-bezier(0.5, 0.24, 0, 1);
}
.KV-Banner .container .col .startBtn .btn-switch:hover, .KV-Banner .container .col .startBtn .btn-switch:focus {
  -moz-box-shadow: inset 0 0 0 1px #fff;
  -webkit-box-shadow: inset 0 0 0 1px #fff;
  box-shadow: inset 0 0 0 1px #fff;
  background: rgba(48, 0, 102, 0.6);
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#99300066', endColorstr='#CCD21467');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIyMCUiIHN0b3AtY29sb3I9IiMzMDAwNjYiIHN0b3Atb3BhY2l0eT0iMC42Ii8+PHN0b3Agb2Zmc2V0PSIxNTAlIiBzdG9wLWNvbG9yPSIjZDIxNDY3IiBzdG9wLW9wYWNpdHk9IjAuOCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, rgba(48, 0, 102, 0.6)), color-stop(150%, rgba(210, 20, 103, 0.8)));
  background-image: -moz-linear-gradient(top, rgba(48, 0, 102, 0.6) 20%, rgba(210, 20, 103, 0.8) 150%);
  background-image: -webkit-linear-gradient(top, rgba(48, 0, 102, 0.6) 20%, rgba(210, 20, 103, 0.8) 150%);
  background-image: linear-gradient(to bottom, rgba(48, 0, 102, 0.6) 20%, rgba(210, 20, 103, 0.8) 150%);
}
.KV-Banner .container .col .startBtn .btn-switch:hover:before, .KV-Banner .container .col .startBtn .btn-switch:hover:after, .KV-Banner .container .col .startBtn .btn-switch:focus:before, .KV-Banner .container .col .startBtn .btn-switch:focus:after {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .KV-Banner .container .col .singleSlider .img-container {
    height: 450px;
  }
  .KV-Banner .container .col .startBtn {
    bottom: 25%;
  }
  .KV-Banner .container .col .startText .slogan {
    font-size: 2.5em;
  }
  .KV-Banner .container .col .startText {
    top: 36%;
  }
}
@media screen and (max-width: 767px) {
  .KV-Banner .container {
    padding-bottom: 0;
  }
  .KV-Banner .container .col .singleSlider .img-container {
    height: 300px;
  }
  .KV-Banner .container .col .startText {
    top: 36%;
    max-width: 90%;
  }
  .KV-Banner .container .col .startText .slogan {
    font-size: 2em;
  }
  .KV-Banner .container .col .startText span {
    width: 55%;
  }
  .KV-Banner .container .col .BuildingName {
    font-size: 1.2em;
  }
  .KV-Banner .container .col .startBtn {
    bottom: 10%;
  }
  .KV-Banner .container .col .startBtn .btn-switch {
    font-size: 1em;
    margin: 0 0 .25em;
  }
}
@media screen and (max-width: 575px) {
  .KV-Banner .container .col .startText .slogan {
    font-size: 1.5em;
  }
  .KV-Banner .container .col .startBtn {
    width: auto;
  }
  .KV-Banner .container .col .startBtn .btn-switch {
    min-width: 130px;
  }
}

/**
 * ----------------------------------------
 * animation
 * ----------------------------------------
 */
@-webkit-keyframes slide-fwd-center {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  100% {
    -webkit-transform: translateZ(160px);
    transform: translateZ(160px);
  }
}
@keyframes slide-fwd-center {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  100% {
    -webkit-transform: translateZ(160px);
    transform: translateZ(160px);
  }
}
@-webkit-keyframes pull-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    fill-opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    fill-opacity: 1;
  }
}
@keyframes pull-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    fill-opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    fill-opacity: 1;
  }
}
/* 裝飾背景動畫*/
canvas {
  display: block;
  vertical-align: bottom;
}

#particles-js {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}

/* svgLogo*/
.svgLogo {
  display: block;
  position: relative;
}
@media screen and (max-width: 991px) {
  .svgLogo {
    padding: 2em 1em 1em 1em;
    margin: 0px -15px;
    display: none;
  }
}

/* 首頁MP-GridCard*/
.MP-gridCard {
  margin: 0px 0 0 0;
  padding-top: 0 !important;
}
.MP-gridCard a.readmore {
  z-index: 9;
  bottom: -1em;
  right: 2em;
}
.MP-gridCard h2 {
  color: white;
  font-size: 2.5em;
  text-align: left;
  /* width: 30%;*/
  margin: 0.5em 0 1em 1em !important;
  float: left;
  display: inline-block;
}
.MP-gridCard .container {
  background: transparent;
}
.MP-gridCard .singleSlider {
  margin-top: -15%;
}
.MP-gridCard .singleSlider .slick-arrow {
  display: none !important;
}
.MP-gridCard .singleSlider a:hover, .MP-gridCard .singleSlider a:focus {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.MP-gridCard .slick-list {
  overflow: visible;
}
.MP-gridCard .slick-dots {
  bottom: -2em;
  margin: 0 auto;
  padding: 0;
}
.MP-gridCard .slick-dots li {
  width: 70px;
  height: 12px;
  margin: 0 5px;
}
.MP-gridCard .slick-dots li button:before {
  width: 100%;
  height: 100%;
  border-radius: 0px;
  background: rgba(255, 255, 255, 0.3);
}
.MP-gridCard .slick-dots li.slick-active button:before {
  background: #FFF;
}
.MP-gridCard .gridBox {
  padding: 0;
  float: left;
  width: 48%;
  margin: .5em;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  background: rgba(0, 0, 0, 0.9);
  -moz-box-shadow: 0 0 0px 1px inset #333;
  -webkit-box-shadow: 0 0 0px 1px inset #333;
  box-shadow: 0 0 0px 1px inset #333;
}
.MP-gridCard .gridBox:before, .MP-gridCard .gridBox:after {
  display: none;
}
.MP-gridCard .gridBox:nth-child(even) {
  margin-right: 0;
}
.MP-gridCard .gridBox a:hover, .MP-gridCard .gridBox a:focus {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.MP-gridCard .gridBox .img-container {
  position: relative;
  overflow: hidden;
  background: #fff;
  background: transparent;
}
.MP-gridCard .gridBox .img-container:before {
  display: block;
  content: "";
  padding-top: 75%;
}
.MP-gridCard .gridBox .img-container img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.MP-gridCard .gridBox .readmore {
  position: absolute;
  bottom: 8px;
  right: 0;
  font-size: 0.9em;
}
.MP-gridCard .gridBox .readmore:after {
  display: none;
}
.MP-gridCard .gridBox .caption {
  text-align: left;
  color: #fff;
  border-top: none;
  z-index: 1;
  cursor: pointer;
  font-weight: normal;
  margin: 0;
  padding: 0px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-animation: gridBoxMask 0.2s ease;
  -webkit-animation: gridBoxMask 0.2s ease;
  animation: gridBoxMask 0.2s ease;
}
.MP-gridCard .gridBox .caption:before, .MP-gridCard .gridBox .caption:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.MP-gridCard .gridBox .caption:before {
  display: none;
  bottom: 0;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
}
.MP-gridCard .gridBox .caption:after {
  width: 106%;
  height: 106%;
  display: block;
  overflow: hidden;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#00000000', endColorstr='#FF000000');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI0MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(40%, rgba(0, 0, 0, 0)), color-stop(100%, #000000));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 40%, #000000 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 40%, #000000 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, #000000 100%);
}
.MP-gridCard .gridBox .caption .cardText {
  color: white;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 20px;
  box-sizing: border-box;
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-shadow: 0 1px 2px #333;
}
.MP-gridCard .gridBox .caption .cardText time {
  color: white;
  display: block;
  font-size: 0.8em;
}
.MP-gridCard .gridBox .caption .cardText h3 {
  font-size: 1.25em;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  color: #fff;
  font-weight: 500;
  font-size: 1em;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 0;
  border-top: none;
}
.MP-gridCard .gridBox .caption .cardText p {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  font-size: .8em;
  overflow: hidden;
  color: #fff;
  display: none;
  font-weight: 400;
  padding: 6px 0;
  line-height: 1.3;
}
@media screen and (max-width: 991px) {
  .MP-gridCard .gridBox .caption .cardText p {
    height: 60px;
    overflow: hidden;
  }
}
.MP-gridCard .gridBox .caption .favorite,
.MP-gridCard .gridBox .caption .readmore {
  font-size: 0.9em;
  display: none;
  z-index: 1;
  font-weight: normal;
  width: auto;
  height: auto;
  position: absolute;
  top: auto;
  bottom: 8px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.MP-gridCard .gridBox .caption .favorite:hover, .MP-gridCard .gridBox .caption .favorite:focus,
.MP-gridCard .gridBox .caption .readmore:hover,
.MP-gridCard .gridBox .caption .readmore:focus {
  color: white !important;
}
.MP-gridCard .gridBox .caption .favorite {
  left: 16px;
  color: #fff;
}
.MP-gridCard .gridBox .caption .favorite i {
  color: white;
}
.MP-gridCard .gridBox .caption .favorite:hover, .MP-gridCard .gridBox .caption .favorite:focus {
  text-decoration: none;
}
.MP-gridCard .gridBox .caption .favorite.active i {
  color: #fff100;
}
.MP-gridCard .gridBox .caption .readmore {
  right: 3px;
}
.MP-gridCard .gridBox .caption .readmore:after {
  display: none;
}
.MP-gridCard .gridBox .caption:hover, .MP-gridCard .gridBox .caption:focus {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.MP-gridCard .gridBox .caption:hover:before, .MP-gridCard .gridBox .caption:hover:after, .MP-gridCard .gridBox .caption:focus:before, .MP-gridCard .gridBox .caption:focus:after {
  display: block;
}
.MP-gridCard .gridBox .caption:hover:before, .MP-gridCard .gridBox .caption:focus:before {
  display: block;
}
.MP-gridCard .gridBox .caption:hover:after, .MP-gridCard .gridBox .caption:focus:after {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjY1Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(10%, rgba(0, 0, 0, 0.65)), color-stop(100%, #000000));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 10%, #000000 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 10%, #000000 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 10%, #000000 100%);
}
.MP-gridCard .gridBox .caption:hover .cardText, .MP-gridCard .gridBox .caption:focus .cardText {
  display: block;
  height: auto;
  margin-bottom: 35px;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.MP-gridCard .gridBox .caption:hover .cardText:before, .MP-gridCard .gridBox .caption:focus .cardText:before {
  display: none;
}
.MP-gridCard .gridBox .caption:hover .cardText time span, .MP-gridCard .gridBox .caption:focus .cardText time span {
  padding: 5px 10px;
  background: #a12177;
  border-radius: 3px;
}
.MP-gridCard .gridBox .caption:hover .cardText h3, .MP-gridCard .gridBox .caption:focus .cardText h3 {
  padding: 8px 0;
}
.MP-gridCard .gridBox .caption:hover .favorite,
.MP-gridCard .gridBox .caption:hover .readmore, .MP-gridCard .gridBox .caption:focus .favorite,
.MP-gridCard .gridBox .caption:focus .readmore {
  display: block !important;
}
@media screen and (max-width: 1399px) {
  .MP-gridCard .gridBox .caption .favorite,
  .MP-gridCard .gridBox .caption .readmore {
    font-size: 0.8em;
  }
}
@media screen and (max-width: 767px) {
  .MP-gridCard .gridBox .caption {
    margin: 0em 0 0 0;
    float: none;
    width: 100%;
    height: 100%;
    display: block;
  }
  .MP-gridCard .gridBox .caption:hover .cardText h3, .MP-gridCard .gridBox .caption:hover .cardText p, .MP-gridCard .gridBox .caption:focus .cardText h3, .MP-gridCard .gridBox .caption:focus .cardText p {
    max-height: inherit;
    overflow: visible;
    height: auto;
  }
}
.MP-gridCard .gridBox .caption .readmore:hover, .MP-gridCard .gridBox .caption .readmore:focus {
  text-decoration: none;
}
.MP-gridCard .gridBox .caption:after {
  display: block !important;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjMiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjUiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=') !important;
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.3)), color-stop(50%, rgba(0, 0, 0, 0.5)), color-stop(100%, #000000)) !important;
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, #000000 100%) !important;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, #000000 100%) !important;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, #000000 100%) !important;
}
.MP-gridCard .gridBox:hover, .MP-gridCard .gridBox:focus {
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.MP-gridCard .gridBox:hover .caption:after, .MP-gridCard .gridBox:focus .caption:after {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSI3MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC43Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g') !important;
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(50%, rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.7)), color-stop(100%, #000000)) !important;
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 70%, #000000 100%) !important;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 70%, #000000 100%) !important;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 70%, #000000 100%) !important;
}
.MP-gridCard .gridBox:hover .caption:after h3 a, .MP-gridCard .gridBox:focus .caption:after h3 a {
  color: white !important;
}
@media screen and (max-width: 991px) {
  .MP-gridCard h2 {
    float: none;
    margin: 1em 0 .45em !important;
  }
  .MP-gridCard .singleSlider {
    margin-top: 0;
  }
  .MP-gridCard > .container .col:nth-child(1) .svgLogo {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .MP-gridCard {
    margin: 0 0;
    float: none;
    width: 100%;
    display: block;
  }
  .MP-gridCard a.readmore {
    bottom: -2em;
    right: 15px;
  }
  .MP-gridCard .col {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .MP-gridCard .col:nth-child(2) {
    margin-top: 0 !important;
  }
  .MP-gridCard .m_singleSlider h2 {
    display: none;
  }
  .MP-gridCard .singleSlider {
    margin-left: 0;
    margin-top: 0;
    display: none !important;
  }
  .MP-gridCard h2 {
    margin: 1em 0 1em !important;
    text-align: center;
  }
  .MP-gridCard .m_singleSlider {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }
  .MP-gridCard .m_singleSlider h2 {
    margin: 1em 0 !important;
  }
  .MP-gridCard .m_singleSlider .img-container {
    position: relative;
    overflow: hidden;
    background: #fff;
    margin-bottom: 1em;
  }
  .MP-gridCard .m_singleSlider .img-container:before {
    display: block;
    content: "";
    padding-top: 75%;
  }
  .MP-gridCard .m_singleSlider .img-container img {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  }
  .MP-gridCard .m_singleSlider .slick-dots {
    display: none;
  }
  .MP-gridCard .m_singleSlider .slick-prev,
  .MP-gridCard .m_singleSlider .slick-next {
    top: 37.5%;
  }
  .MP-gridCard .m_singleSlider .slick-list {
    overflow: visible;
  }
  .MP-gridCard .m_singleSlider .caption {
    width: 100%;
    text-align: left;
    display: block;
    position: static;
    color: white;
  }
  .MP-gridCard .m_singleSlider .caption time {
    font-size: 0.9em;
    padding-right: 5px;
    margin: 0 5px 1em 0px;
    font-weight: normal;
  }
  .MP-gridCard .m_singleSlider .caption .favorite {
    font-size: 1em;
    position: static;
    font-weight: normal;
    float: right;
    color: white;
  }
  .MP-gridCard .m_singleSlider .caption h3 {
    font-size: 1.25em;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
    color: white;
    font-size: 1.5em;
    line-height: 1.3;
    max-height: 67px;
    overflow: hidden;
    display: block;
    padding-bottom: .5em;
    box-sizing: border-box;
    border-bottom: 1px solid #fff;
  }
  .MP-gridCard .m_singleSlider .caption h3 a {
    color: white;
  }
  .MP-gridCard .m_singleSlider .caption p {
    margin: 1em 0 0 0;
    font-weight: 400;
    height: 48px;
    overflow: hidden;
  }
  .MP-gridCard .m_singleSlider .caption p a {
    color: white;
  }
  .MP-gridCard .m_singleSlider .caption p a:hover, .MP-gridCard .m_singleSlider .caption p a:focus {
    color: white;
    text-decoration: underline;
  }
}
@media screen and (max-width: 575px) {
  .MP-gridCard .m_singleSlider .slick-prev,
  .MP-gridCard .m_singleSlider .slick-next {
    top: 30%;
  }
}
@media screen and (max-width: 320px) {
  .MP-gridCard .m_singleSlider .slick-prev,
  .MP-gridCard .m_singleSlider .slick-next {
    top: 25%;
  }
}

.topNews {
  position: relative;
  margin: 5em 0 0;
}
.topNews:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: white;
  position: absolute;
  bottom: -8em;
  transform: skewY(-5deg);
}
.topNews .container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.topNews .container .col {
  flex: 1 1 auto;
  flex-basis: calc(50% - 20px);
  max-width: calc(50% - 20px);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: box-shadow .5s ease;
}
.topNews .container .col h3 {
  font-size: 1.35em;
  line-height: 1.3;
  color: #0a58a2;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.topNews .container .col .caption {
  display: flex;
  flex-flow: row nowrap;
}
.topNews .container .col .caption img, .topNews .container .col .caption span {
  flex: 1 1 50%;
  max-width: 50%;
}
.topNews .container .col .caption img {
  max-height: 200px;
}
.topNews .container .col .caption span {
  padding-left: 1.5em;
}
.topNews .container .col .caption span time {
  font-size: 0.9em;
  color: #222;
  font-weight: normal;
}
.topNews .container .col .caption span p {
  margin-top: 8px;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.topNews .container .col .caption span p.more {
  text-align: right;
  font-size: .9em;
}
.topNews .container .col .caption span p.more span {
  background: #5366a4;
  padding: .5em 1.5em;
  display: inline-block;
  color: #fff;
  transition: all .3s ease;
}
.topNews .container .col a {
  display: block;
  background: #fff;
  padding: .5em 1em;
  text-align: left;
}
.topNews .container .col:hover, .topNews .container .col:focus {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.topNews .container .col:hover a .caption span p, .topNews .container .col:focus a .caption span p {
  color: #222;
}
.topNews .container .col:hover a .caption span p.more span, .topNews .container .col:focus a .caption span p.more span {
  background: #781F79;
}
@media screen and (max-width: 991px) {
  .topNews .container {
    flex-flow: row wrap;
    justify-content: center;
  }
  .topNews .container .col {
    flex-basis: calc(100% - 2em);
    max-width: calc(100% - 2em);
    margin-bottom: 1em;
  }
}

/* what's On 最新消息*/
.whatsOn:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: white;
  position: absolute;
  bottom: -8em;
  transform: skewY(-5deg);
}
.whatsOn .container {
  z-index: 1;
  overflow: hidden;
  padding-bottom: 5em;
}
.whatsOn a.readmore {
  margin-top: 1em !important;
  bottom: auto;
}
.whatsOn .singleSlider {
  margin: 0;
}
.whatsOn .singleSlider .slick-prev,
.whatsOn .singleSlider .slick-next {
  top: auto !important;
  bottom: -10%;
  border: solid 2px #222;
  z-index: 10;
  opacity: .5;
}
.whatsOn .singleSlider .slick-prev:hover, .whatsOn .singleSlider .slick-prev:focus,
.whatsOn .singleSlider .slick-next:hover,
.whatsOn .singleSlider .slick-next:focus {
  opacity: 1;
}
.whatsOn .singleSlider .slick-prev {
  left: 0;
  background: url(../vendor/slick/icon_arrow_left_black.png) center center no-repeat;
  background-size: 18px;
}
.whatsOn .singleSlider .slick-next {
  right: auto;
  left: 55px;
  background: url(../vendor/slick/icon_arrow_right_black.png) center center no-repeat;
  background-size: 18px;
}
.whatsOn .singleSlider .slick-dots {
  bottom: -50px;
}
.whatsOn .singleSlider section {
  margin: .75em 0;
}
.whatsOn .singleSlider section a {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  transition: background .3s ease-in;
}
.whatsOn .singleSlider section a .img-container {
  flex: 1 1 35%;
  max-width: 35%;
  height: 220px;
}
.whatsOn .singleSlider section a .caption {
  flex: 1 1 65%;
  max-width: 65%;
  text-align: left;
  padding: 1em 1.25em;
}
.whatsOn .singleSlider section a .caption time {
  font-weight: normal;
}
.whatsOn .singleSlider section a .caption h3 {
  font-size: 1.35em;
  line-height: 1.3;
  color: #0a58a2;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.whatsOn .singleSlider section a .caption p {
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.whatsOn .singleSlider section a:hover, .whatsOn .singleSlider section a:focus {
  background: #eee;
}
.whatsOn .singleSlider section a:hover .caption time, .whatsOn .singleSlider section a:hover .caption p, .whatsOn .singleSlider section a:focus .caption time, .whatsOn .singleSlider section a:focus .caption p {
  color: #222;
}
@media screen and (max-width: 991px) {
  .whatsOn .singleSlider section a .img-container {
    height: auto;
  }
  .whatsOn .singleSlider section a .caption p {
    height: 69px;
  }
}
@media screen and (max-width: 767px) {
  .whatsOn a.readmore {
    right: 15px;
  }
  .whatsOn .singleSlider {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .whatsOn .singleSlider .slick-prev,
  .whatsOn .singleSlider .slick-next {
    bottom: -8%;
  }
  .whatsOn .singleSlider .slick-next {
    right: 25px;
  }
}
@media screen and (max-width: 575px) {
  .whatsOn .singleSlider .slick-prev,
  .whatsOn .singleSlider .slick-next {
    top: 30%;
  }
}
@media screen and (max-width: 320px) {
  .whatsOn .singleSlider .slick-prev,
  .whatsOn .singleSlider .slick-next {
    top: 25%;
  }
}

.photoVideo {
  clear: both;
}
.photoVideo .container {
  position: relative;
  min-height: 1px;
  padding-left: 0px;
  padding-right: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.photoVideo a.readmore {
  right: 15px;
  bottom: -1.5em;
}
.photoVideo .m_singleSlider {
  display: none;
}
@media screen and (max-width: 767px) {
  .photoVideo a.readmore {
    bottom: -2em;
    right: 15px;
  }
}
@media screen and (max-width: 991px) {
  .photoVideo h2 {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .photoVideo h2 {
    width: 45%;
  }
  .photoVideo .m_singleSlider {
    display: block;
  }
  .photoVideo .m_singleSlider .slick-prev,
  .photoVideo .m_singleSlider .slick-next {
    top: 35%;
  }
  .photoVideo .m_singleSlider .img-container {
    position: relative;
    overflow: hidden;
    background: #fff;
    margin-bottom: 1em;
  }
  .photoVideo .m_singleSlider .img-container:before {
    display: block;
    content: "";
    padding-top: 75%;
  }
  .photoVideo .m_singleSlider .img-container img {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  }
  .photoVideo .m_singleSlider .img-container span.icon-play {
    color: black;
    font-size: 2.5em;
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    line-height: 100px;
    width: 100px;
    height: 100px;
    display: block;
    z-index: 2;
    background: rgba(255, 255, 255, 0.8);
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
    opacity: 0.6;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .photoVideo .m_singleSlider .img-container span.icon-play:before {
    margin-right: 0;
  }
  .photoVideo .m_singleSlider .img-container a:hover span.icon-play, .photoVideo .m_singleSlider .img-container:focus span.icon-play {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
  .photoVideo .m_singleSlider .caption {
    text-align: left;
    color: white;
  }
  .photoVideo .m_singleSlider .caption h3 {
    font-size: 1.25em;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
    color: white;
    margin: 0px;
    max-height: 60px;
    overflow: hidden;
    font-size: 1.5em;
    line-height: 1.35;
    padding-bottom: 5px;
    border-bottom: 2px solid #fff;
  }
  .photoVideo .m_singleSlider .caption h3 a {
    color: white;
  }
  .photoVideo .col .masonry-container {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .photoVideo h2 {
    width: 45%;
  }
  .photoVideo .m_singleSlider {
    display: block;
  }
  .photoVideo .m_singleSlider .slick-prev,
  .photoVideo .m_singleSlider .slick-next {
    top: 35%;
  }
}
@media screen and (max-width: 320px) {
  .photoVideo .m_singleSlider .slick-prev,
  .photoVideo .m_singleSlider .slick-next {
    top: 25%;
  }
}

/*photo & video*/
.masonry-container {
  width: 100%;
  max-width: 1200px;
  padding-bottom: 2em;
  position: relative;
  margin: 0 auto;
}

.panel {
  position: relative;
  display: inline-block;
  width: calc((100% - 60px)/3);
  height: calc((90vw - 60px)/3);
  margin-left: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-out;
  float: left;
}
.panel:hover {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.55);
  transition: all 0.2s ease-out;
}
.panel .panel-wrapper {
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-out;
}
.panel .panel-wrapper:hover {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.55);
  transition: all 0.2s ease-out;
}
.panel .panel-wrapper .img-container {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.panel .panel-wrapper .img-container:before {
  display: block;
  content: "";
  padding-top: 100%;
}
.panel .panel-wrapper .img-container img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.panel .panel-wrapper .img-container .caption:after {
  width: 103%;
  height: 100%;
}
.panel:nth-child(3n+1) {
  margin-left: 0;
  width: calc((100% - 60px)/3);
}
.panel:nth-child(9n+4), .panel:nth-child(9n+7) {
  width: calc( (100%/5)*3);
}
.panel:nth-child(9n+5), .panel:nth-child(9n+6) {
  width: calc( ((100% - 100px)/5)*2);
}
.panel:nth-child(9n+6), .panel:nth-child(9n+8) {
  margin-left: 0;
}
.panel:nth-child(9n+7) {
  margin-left: 20px;
}
.panel:nth-child(9n+8), .panel:nth-child(9n+9) {
  width: calc((100% - 40px)/2);
}

.panel-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
}
.panel-wrapper .img-container {
  height: 100%;
  z-index: 1;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.panel-wrapper .img-container:before {
  display: none;
}
.panel-wrapper .img-container span.icon-play {
  color: black;
  font-size: 2.5em;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  line-height: 100px;
  width: 100px;
  height: 100px;
  display: block;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.panel-wrapper .img-container span.icon-play:before {
  margin-right: 0;
}
.panel-wrapper .img-container:hover .caption:before, .panel-wrapper .img-container:focus .caption:before {
  display: none;
}
.panel-wrapper .img-container:hover .caption:after, .panel-wrapper .img-container:focus .caption:after {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSI3MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC43Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g') !important;
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(50%, rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.7)), color-stop(100%, #000000)) !important;
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 70%, #000000 100%) !important;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 70%, #000000 100%) !important;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 70%, #000000 100%) !important;
}
.panel-wrapper .img-container:hover .caption .cardText, .panel-wrapper .img-container:focus .caption .cardText {
  margin-bottom: 5px;
}
.panel-wrapper .img-container:hover .caption .cardText h3,
.panel-wrapper .img-container:hover .caption .cardText time, .panel-wrapper .img-container:focus .caption .cardText h3,
.panel-wrapper .img-container:focus .caption .cardText time {
  max-height: inherit;
  overflow: visible;
}
.panel-wrapper .img-container:hover span.icon-play, .panel-wrapper .img-container:focus span.icon-play {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.panel-wrapper .caption {
  text-align: left;
  color: #fff;
  border-top: none;
  z-index: 1;
  cursor: pointer;
  font-weight: normal;
  margin: 0;
  padding: 0px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-animation: gridBoxMask 0.2s ease;
  -webkit-animation: gridBoxMask 0.2s ease;
  animation: gridBoxMask 0.2s ease;
}
.panel-wrapper .caption:before, .panel-wrapper .caption:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.panel-wrapper .caption:before {
  display: none;
  bottom: 0;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
}
.panel-wrapper .caption:after {
  width: 106%;
  height: 106%;
  display: block;
  overflow: hidden;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#00000000', endColorstr='#FF000000');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI0MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(40%, rgba(0, 0, 0, 0)), color-stop(100%, #000000));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 40%, #000000 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 40%, #000000 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, #000000 100%);
}
.panel-wrapper .caption .cardText {
  color: white;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 20px;
  box-sizing: border-box;
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-shadow: 0 1px 2px #333;
}
.panel-wrapper .caption .cardText time {
  color: white;
  display: block;
  font-size: 0.8em;
}
.panel-wrapper .caption .cardText h3 {
  font-size: 1.25em;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  color: #fff;
  font-weight: 500;
  font-size: 1em;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 0;
  border-top: none;
}
.panel-wrapper .caption .cardText p {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  font-size: .8em;
  overflow: hidden;
  color: #fff;
  display: none;
  font-weight: 400;
  padding: 6px 0;
  line-height: 1.3;
}
@media screen and (max-width: 991px) {
  .panel-wrapper .caption .cardText p {
    height: 60px;
    overflow: hidden;
  }
}
.panel-wrapper .caption .favorite,
.panel-wrapper .caption .readmore {
  font-size: 0.9em;
  display: none;
  z-index: 1;
  font-weight: normal;
  width: auto;
  height: auto;
  position: absolute;
  top: auto;
  bottom: 8px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.panel-wrapper .caption .favorite:hover, .panel-wrapper .caption .favorite:focus,
.panel-wrapper .caption .readmore:hover,
.panel-wrapper .caption .readmore:focus {
  color: white !important;
}
.panel-wrapper .caption .favorite {
  left: 16px;
  color: #fff;
}
.panel-wrapper .caption .favorite i {
  color: white;
}
.panel-wrapper .caption .favorite:hover, .panel-wrapper .caption .favorite:focus {
  text-decoration: none;
}
.panel-wrapper .caption .favorite.active i {
  color: #fff100;
}
.panel-wrapper .caption .readmore {
  right: 3px;
}
.panel-wrapper .caption .readmore:after {
  display: none;
}
.panel-wrapper .caption:hover, .panel-wrapper .caption:focus {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.panel-wrapper .caption:hover:before, .panel-wrapper .caption:hover:after, .panel-wrapper .caption:focus:before, .panel-wrapper .caption:focus:after {
  display: block;
}
.panel-wrapper .caption:hover:before, .panel-wrapper .caption:focus:before {
  display: block;
}
.panel-wrapper .caption:hover:after, .panel-wrapper .caption:focus:after {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjY1Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(10%, rgba(0, 0, 0, 0.65)), color-stop(100%, #000000));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 10%, #000000 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 10%, #000000 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 10%, #000000 100%);
}
.panel-wrapper .caption:hover .cardText, .panel-wrapper .caption:focus .cardText {
  display: block;
  height: auto;
  margin-bottom: 35px;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.panel-wrapper .caption:hover .cardText:before, .panel-wrapper .caption:focus .cardText:before {
  display: none;
}
.panel-wrapper .caption:hover .cardText time span, .panel-wrapper .caption:focus .cardText time span {
  padding: 5px 10px;
  background: #a12177;
  border-radius: 3px;
}
.panel-wrapper .caption:hover .cardText h3, .panel-wrapper .caption:focus .cardText h3 {
  padding: 8px 0;
}
.panel-wrapper .caption:hover .favorite,
.panel-wrapper .caption:hover .readmore, .panel-wrapper .caption:focus .favorite,
.panel-wrapper .caption:focus .readmore {
  display: block !important;
}
@media screen and (max-width: 1399px) {
  .panel-wrapper .caption .favorite,
  .panel-wrapper .caption .readmore {
    font-size: 0.8em;
  }
}
@media screen and (max-width: 767px) {
  .panel-wrapper .caption {
    margin: 0em 0 0 0;
    float: none;
    width: 100%;
    height: 100%;
    display: block;
  }
  .panel-wrapper .caption:hover .cardText h3, .panel-wrapper .caption:hover .cardText p, .panel-wrapper .caption:focus .cardText h3, .panel-wrapper .caption:focus .cardText p {
    max-height: inherit;
    overflow: visible;
    height: auto;
  }
}
.panel-wrapper .caption:before {
  display: none;
}
.panel-wrapper .caption:after {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjMiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjUiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.3)), color-stop(50%, rgba(0, 0, 0, 0.5)), color-stop(100%, #000000));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, #000000 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, #000000 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, #000000 100%);
}

.test-A .panel {
  position: relative;
  display: inline-block;
  width: calc((100% - 60px)/3);
  height: calc((90vw - 60px)/3);
  margin-left: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-out;
  float: left;
}
.test-A .panel:hover {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.55);
  transition: all 0.2s ease-out;
}
.test-A .panel .panel-wrapper {
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-out;
}
.test-A .panel .panel-wrapper:hover {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.55);
  transition: all 0.2s ease-out;
}
.test-A .panel .panel-wrapper .img-container {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.test-A .panel .panel-wrapper .img-container:before {
  display: block;
  content: "";
  padding-top: 100%;
}
.test-A .panel .panel-wrapper .img-container img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.test-A .panel .panel-wrapper .img-container .caption:after {
  width: 103%;
  height: 100%;
}
.test-A .panel:nth-child(3n+1) {
  margin-left: 0;
}

.test-B .panel {
  position: relative;
  display: inline-block;
  width: calc((100% - 60px)/3);
  height: calc((90vw - 60px)/3);
  margin-left: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-out;
  float: left;
}
.test-B .panel:hover {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.55);
  transition: all 0.2s ease-out;
}
.test-B .panel .panel-wrapper {
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-out;
}
.test-B .panel .panel-wrapper:hover {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.55);
  transition: all 0.2s ease-out;
}
.test-B .panel .panel-wrapper .img-container {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.test-B .panel .panel-wrapper .img-container:before {
  display: block;
  content: "";
  padding-top: 100%;
}
.test-B .panel .panel-wrapper .img-container img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.test-B .panel .panel-wrapper .img-container .caption:after {
  width: 103%;
  height: 100%;
}
.test-B .panel:nth-child(3n+1) {
  margin-left: 0;
  width: calc((100% - 60px)/3);
}
.test-B .panel:nth-child(9n+4), .test-B .panel:nth-child(9n+7) {
  width: calc( (100%/5)*3);
}
.test-B .panel:nth-child(9n+5), .test-B .panel:nth-child(9n+6) {
  width: calc( ((100% - 100px)/5)*2);
}
.test-B .panel:nth-child(9n+6), .test-B .panel:nth-child(9n+8) {
  margin-left: 0;
}
.test-B .panel:nth-child(9n+7) {
  margin-left: 20px;
}
.test-B .panel:nth-child(9n+8), .test-B .panel:nth-child(9n+9) {
  width: calc((100% - 40px)/2);
}

@media screen and (max-width: 767px) {
  .masonry-container .panel {
    width: calc((90vw - 60px)/2);
    height: calc((90vw - 60px)/2);
    margin-left: 0;
    margin-right: 20px;
    float: none;
  }
}
@media screen and (max-width: 575px) {
  .masonry-container .panel {
    width: calc((100vw - 60px)/1);
    height: calc((100vw - 60px)/1);
    margin-left: 0;
    margin-right: 0px;
  }
}
/*TTSintro*/
.TTSintro {
  overflow: hidden;
  text-align: center;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjMiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4zIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g'), url("../images/ttsintroBg.jpg");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.3)), color-stop(100%, rgba(0, 0, 0, 0.3))), url("../images/ttsintroBg.jpg");
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), url("../images/ttsintroBg.jpg");
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), url("../images/ttsintroBg.jpg");
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), url("../images/ttsintroBg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
  min-height: 1px;
  padding-left: 0px;
  padding-right: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 3em 0;
}
.TTSintro:before, .TTSintro:after {
  position: absolute !important;
  content: "";
  display: block;
}
.TTSintro:before {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.TTSintro h2 {
  z-index: 1;
  display: inline-block;
  position: relative;
  margin-top: 0;
}
.TTSintro .col {
  padding: 3em 12em;
  z-index: 2;
  min-height: 250px;
  text-shadow: 0 1px 5px #333;
}
.TTSintro .col p {
  color: white !important;
  font-size: 1.1em;
  line-height: 1.68;
  text-align: left;
  font-weight: normal;
  margin: 0 auto 1em auto;
}
@media screen and (max-width: 1399px) {
  .TTSintro .col {
    padding: 3em 9em;
  }
}
@media screen and (max-width: 991px) {
  .TTSintro .container .col {
    padding: 3em 6em;
  }
}
@media screen and (max-width: 767px) {
  .TTSintro {
    background-attachment: inherit;
  }
  .TTSintro .container .col {
    padding: 0 1em;
  }
}

/*signUp*/
.signUp {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjMiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4zIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g'), url("../images/signUpBg.jpg");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.3)), color-stop(100%, rgba(0, 0, 0, 0.3))), url("../images/signUpBg.jpg");
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), url("../images/signUpBg.jpg");
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), url("../images/signUpBg.jpg");
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), url("../images/signUpBg.jpg");
  background-repeat: no-repeat;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  color: white;
  text-align: center;
  padding: 3em 0;
}
.signUp:before, .signUp:after {
  position: absolute !important;
  content: "";
  display: block;
}
.signUp h2 {
  margin-top: 0;
}
.signUp .col {
  z-index: 1;
  padding: 3em 12em;
  text-shadow: 0 1px 5px #333;
}
.signUp .col .btn-link {
  color: #1493df;
  border: none;
  margin: 10px auto 10px 16px;
  text-transform: uppercase;
}
.signUp .col .btn-link:hover, .signUp .col .btn-link:focus {
  color: white !important;
  background: #1493df;
}
.signUp .col h2 {
  text-transform: normal;
}
.signUp .col p {
  margin: 0 auto 1em auto;
  text-align: center;
  color: white;
  font-weight: normal;
  font-size: 1.2em;
}
@media screen and (max-width: 1399px) {
  .signUp .col {
    padding: 3em 9em;
  }
}
@media screen and (max-width: 991px) {
  .signUp .col {
    padding: 3em 6em;
  }
  .signUp .col .btn-link {
    clear: both;
    display: block;
    margin: 20px auto;
  }
}
@media screen and (max-width: 767px) {
  .signUp {
    min-height: inherit;
    background-position: 36% center;
    background-attachment: inherit;
  }
  .signUp .container {
    height: inherit;
  }
  .signUp .container:after {
    position: static !important;
  }
  .signUp .container .col {
    padding: 0 1em;
  }
  .signUp .container .col .btn-link {
    display: block;
  }
}

/* partners*/
.partners {
  background: #FFF;
  padding-bottom: 0;
  position: relative;
}
.partners:after {
  content: '';
  width: 100%;
  display: block;
  position: absolute;
  height: 100px;
  background: #fff;
  top: -70px;
}
.partners:before {
  content: '';
  width: 100%;
  display: block;
  position: absolute;
  height: 120px;
  background: #fff;
  transform: skewY(-3deg);
  bottom: -12%;
}
.partners h2 {
  color: #4d4d4d !important;
  padding: 1.25em 0 1.125em;
  margin: 0;
}
.partners .m_adSlider {
  display: none;
}
.partners .container {
  position: relative;
  min-height: 1px;
  padding-left: 2em;
  padding-right: 2em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.partners .img-container {
  position: relative;
  overflow: hidden;
  background: #fff;
  height: 68px;
}
.partners .img-container:before {
  display: block;
  content: "";
  padding-top: 40%;
}
.partners .img-container img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.partners .img-container img {
  width: auto;
  height: auto;
}
.partners .col {
  margin-bottom: 3em;
}
@media screen and (max-width: 767px) {
  .partners h2 {
    margin: 0em auto 1em auto  !important;
  }
  .partners .container {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .partners .m_adSlider {
    display: block;
    width: 100%;
    /* .img-container{
      img{
        width: 100%;
        height: 100%;
      }
    } */
  }
  .partners .m_adSlider .slick-list {
    margin: 0 2.5em;
  }
  .partners .m_adSlider .slick-prev, .partners .m_adSlider .slick-next {
    -webkit-filter: brightness(0.3);
    filter: brightness(0.3);
  }
  .partners .m_adSlider .slick-prev {
    left: 0;
  }
  .partners .m_adSlider .slick-next {
    right: 0;
  }
  .partners .col {
    display: none;
    padding: 0em;
    position: relative;
    float: left;
    width: 50%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 575px) {
  .partners .col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 320px) {
  .partners h2 {
    margin: 0 auto 1em auto !important;
  }
}

/* 裝飾背景圖*/
.decoration {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.decoration .line {
  position: absolute;
  content: "";
  display: block;
  width: 276px;
  height: 276px;
}
.decoration .line:nth-child(1) {
  top: 1200px;
  left: -5px;
  background: url("../images/line-left.png");
}
.decoration .line:nth-child(2) {
  top: 2000px;
  left: 350px;
  background: url("../images/line-right.png");
}
.decoration .line:nth-child(3) {
  top: 2600px;
  left: -20px;
  background: url("../images/line-right.png");
}
.decoration .line:nth-child(4) {
  top: 2900px;
  left: 380px;
  background: url("../images/line-left.png");
}
@media screen and (max-width: 767px) {
  .decoration {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: 0.5;
  }
}

/*首頁*/
.list ul,
.list ol {
  list-style-type: none;
  padding: 0;
  border-top: 2px solid #1493df;
}
.list ul li,
.list ol li {
  padding: 1em 0;
  overflow: hidden;
  border-bottom: 1px solid #DDD;
  position: relative;
  /* outline: 1px solid blue;*/
}
.list ul li a,
.list ol li a {
  position: relative;
}
.list ul li a .num,
.list ol li a .num {
  width: 1.5em;
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
}
.list ul li a .num:after,
.list ol li a .num:after {
  content: ".";
  display: inline-block;
}
.list ul li span.dept,
.list ol li span.dept {
  display: inline-block;
  font-size: .938em;
}
@media screen and (max-width: 767px) {
  .list ul li span.dept,
  .list ol li span.dept {
    display: block;
  }
}

.list-img {
  overflow: hidden;
  margin: 0 auto 2em auto;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #e0e0e0;
  -moz-box-shadow: 0 2px 8px 0 rgba(194, 194, 194, 0.5);
  -webkit-box-shadow: 0 2px 8px 0 rgba(194, 194, 194, 0.5);
  box-shadow: 0 2px 8px 0 rgba(194, 194, 194, 0.5);
}
.list-img:hover, .list-img:hover {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(20, 147, 223, 0.4);
  -moz-box-shadow: 0 2px 8px 0 rgba(20, 147, 223, 0.5);
  -webkit-box-shadow: 0 2px 8px 0 rgba(20, 147, 223, 0.5);
  box-shadow: 0 2px 8px 0 rgba(20, 147, 223, 0.5);
}
.list-img .container {
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.list-img a {
  padding: 1em;
  display: block;
}
.list-img a h3 {
  color: #2f549c;
  display: block;
}
.list-img a:hover h3, .list-img a:focus h3 {
  color: #1493df;
}
.list-img a:hover img, .list-img a:focus img {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.list-img a:hover .btn-more, .list-img a:focus .btn-more {
  background: #1493df;
  border: 1px solid #1493df;
  color: white;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #1493df;
}
.list-img a:hover .btn-more:hover, .list-img a:hover .btn-more:focus, .list-img a:focus .btn-more:hover, .list-img a:focus .btn-more:focus {
  background: #1074b0;
  border: 1px solid #1074b0;
  cursor: pointer;
  color: #fff;
  content: "";
  outline: none;
}
.list-img a:hover .btn-more:hover span, .list-img a:hover .btn-more:focus span, .list-img a:focus .btn-more:hover span, .list-img a:focus .btn-more:focus span {
  padding-right: 25px;
}
.list-img a:hover .btn-more:hover span:after, .list-img a:hover .btn-more:focus span:after, .list-img a:focus .btn-more:hover span:after, .list-img a:focus .btn-more:focus span:after {
  opacity: 1;
  right: 0;
}
.list-img a:hover .btn-more:hover span.sr-only, .list-img a:hover .btn-more:focus span.sr-only, .list-img a:focus .btn-more:hover span.sr-only, .list-img a:focus .btn-more:focus span.sr-only {
  margin: 0;
  overflow: inherit;
}
.list-img a:hover .btn-more.active, .list-img a:focus .btn-more.active {
  background: #1074b0;
  border: 1px solid #1074b0;
  cursor: pointer;
}
.list-img a:hover .btn-more:after, .list-img a:focus .btn-more:after {
  right: 16px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.list-img time {
  display: block;
  font-size: 1em;
  margin-bottom: 3px;
  font-weight: 500;
  color: #1493df;
}
.list-img h3 {
  font-size: 1.25em;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  color: #2f549c;
  line-height: 1.45;
}
.list-img p {
  font-size: 1em;
  color: #666666;
  margin-bottom: 1em;
}
.list-img .btn-more {
  float: right;
}
.list-img .img-container {
  overflow: hidden;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.list-img .img-container:before {
  display: block;
  content: "";
  padding-top: 75%;
}
.list-img .img-container img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.list-img .img-container img {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .list-img .container .col {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .list-img .container .col .img-container {
    margin-bottom: 1em;
  }
}

.col-4-8.list-img .container .col:nth-child(1) {
  position: relative;
  min-height: 1px;
  padding-left: 0px;
  padding-right: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.col-12.list-img .container .col {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.lp table td {
  text-align: left;
}
.lp table td.date {
  text-align: center;
  color: #666;
}
@media screen and (max-width: 767px) {
  .lp table td.date {
    text-align: left;
  }
}
.lp table td.num {
  text-align: center;
  color: #666;
}
@media screen and (max-width: 767px) {
  .lp table td.num {
    text-align: left;
  }
}

.album {
  margin: 1em auto;
  overflow: hidden;
}
.album ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.album ul li {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .album ul li {
    float: left;
    width: 33.33333%;
  }
}
@media (min-width: 992px) {
  .album ul li {
    float: left;
    width: 33.33333%;
  }
}
@media (min-width: 1400px) {
  .album ul li {
    float: left;
    width: 33.33333%;
  }
}
.album ul li a {
  display: block;
  text-align: center;
}
.album ul li .imgOuter {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.album ul li .imgOuter:before {
  display: block;
  content: "";
  padding-top: 75%;
}
.album ul li .imgOuter img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

/*LP*/
/*@import "page/_np";						NP*/
.cp img.float_left {
  float: left;
  margin: 0px 1em 1em 0;
}
.cp img.float_right {
  float: right;
  margin: 0px 0 1em 1em;
}
.cp a {
  color: #1493df;
}
.cp a:hover, .cp a:focus {
  text-decoration: underline;
}
.cp .MetaDate {
  display: block;
  color: #2f549c;
  margin-bottom: 1em;
}
.cp .info {
  font-size: 0.938em;
  line-height: 1.5em;
  list-style: none;
  margin: 0 0 1em 0;
  border-left: solid 5px #1493df;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0.8em 1.5em 0.8em;
  background: #F2F2F2;
}
.cp .info li {
  width: 30%;
  margin-bottom: .5em;
  display: inline-block;
  vertical-align: top;
}
@media screen and (max-width: 991px) {
  .cp .info li {
    width: 48%;
    margin-bottom: .2em;
    font-size: 0.875em;
  }
}
@media screen and (max-width: 767px) {
  .cp .info li {
    width: 100%;
    display: block;
  }
}
.cp .videoRatio .container {
  position: relative;
  min-height: 1px;
  padding-left: 0px;
  padding-right: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*CP*/
.fp {
  margin: 1em auto;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1em;
}

/*Forward*/
/* SignUp Box*/
.signupBox {
  width: 75%;
  margin: 1em auto 2em auto;
}
.signupBox.border {
  border: 1px solid #e0e0e0;
  padding: 2em;
  -moz-box-shadow: 0 2px 8px 0 rgba(194, 194, 194, 0.5);
  -webkit-box-shadow: 0 2px 8px 0 rgba(194, 194, 194, 0.5);
  box-shadow: 0 2px 8px 0 rgba(194, 194, 194, 0.5);
}
.signupBox.border p {
  font-size: 1.05em;
  width: 75%;
  margin: 0 auto 2em auto;
  color: #8c8c8c;
}
.signupBox a {
  color: #1493df;
}
.signupBox a:hover, .signupBox a:focus {
  text-decoration: underline;
}
.signupBox h3 {
  margin: 0 auto 1.5em auto;
  text-align: center;
  position: relative;
  z-index: 0;
  width: 85%;
  padding: 1em 0;
  line-height: 1.3;
  color: #1493df;
}
.signupBox h3:before, .signupBox h3:after {
  position: absolute;
  content: "";
  display: block;
  text-align: center;
  left: 0;
  right: 0;
}
.signupBox h3:after {
  bottom: 10px;
  width: 25%;
  height: 3px;
  margin: auto;
  z-index: -2;
  background: #1493df;
}
.signupBox .col-6 .container {
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.signupBox .col-6 .col {
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 0;
  padding: 0 !important;
}
.signupBox .col-6 .col .form_grp {
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .signupBox {
    width: 85%;
  }
  .signupBox.border p {
    width: 90%;
  }
  .signupBox h3 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .signupBox {
    width: auto;
  }
  .signupBox .form_vertical .form_grp {
    margin: 0 0 1em 0;
  }
  .signupBox.border {
    padding: 1em;
  }
  .signupBox.border p {
    width: 100%;
  }
  .signupBox h2 {
    margin: 0 auto;
    text-align: center;
  }
  .signupBox h3 {
    width: auto;
    padding-top: 0;
  }
  .signupBox h3:after {
    top: 77%;
  }
  .signupBox .login-button {
    font-size: 1.2em;
    padding: 1em;
    min-width: auto;
  }
}

/* Pre-entry*/
.Pre-entry {
  padding: 2em 2em;
  margin: 0 auto 4em auto;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  -moz-box-shadow: 0 2px 8px 0 rgba(194, 194, 194, 0.5);
  -webkit-box-shadow: 0 2px 8px 0 rgba(194, 194, 194, 0.5);
  box-shadow: 0 2px 8px 0 rgba(194, 194, 194, 0.5);
}
.Pre-entry .form_grp .container {
  background: transparent;
}
.Pre-entry .form_grp .form_title {
  font-weight: bold;
  font-size: 1.2em;
}
.Pre-entry .form_grp .form_content {
  color: gray;
  /* .form_grp{margin-bottom: 0 !important;} */
}
.Pre-entry .form_grp .form_content .form_content {
  margin: 0;
}
.Pre-entry .form_grp .form_content .form_grp {
  margin-bottom: 5px;
}
.Pre-entry .form_grp .form_content .phoneCol .col {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.Pre-entry .form_grp .form_content .phoneCol .col:nth-child(1), .Pre-entry .form_grp .form_content .phoneCol .col:nth-child(2) {
  position: relative;
  float: left;
  width: 25%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 767px) {
  .Pre-entry .form_grp .form_content .phoneCol .col:nth-child(1), .Pre-entry .form_grp .form_content .phoneCol .col:nth-child(2) {
    position: relative;
    float: left;
    width: 50%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.Pre-entry .form_grp .form_content .phoneCol .col:nth-child(3) {
  position: relative;
  float: left;
  width: 50%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .Pre-entry .form_grp .form_content .phoneCol .col:nth-child(3) {
    float: left;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .Pre-entry .form_grp .form_content .phoneCol .col:nth-child(3) {
    float: left;
    width: 50%;
  }
}
@media (min-width: 1400px) {
  .Pre-entry .form_grp .form_content .phoneCol .col:nth-child(3) {
    float: left;
    width: 50%;
  }
}
.Pre-entry .form_grp .form_content .phoneCol .col:nth-child(3):after {
  display: none;
}
.Pre-entry .form_grp .form_content .phoneCol .col:after {
  display: block;
  position: absolute;
  content: '-';
  top: 10px;
  right: -3px;
  color: #333;
}
.Pre-entry .form_grp .form_content .form_title {
  font-weight: normal;
  font-size: 1em;
}
.Pre-entry .form_grp .form_content .check_grp.form_inline label,
.Pre-entry .form_grp .form_content .radio_grp.form_inline label {
  position: relative;
  min-height: 1px;
  padding-left: 0px;
  padding-right: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.Pre-entry .form_grp .form_content .col-4 .col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .Pre-entry .form_grp .form_content .col-4 .col {
    float: left;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .Pre-entry .form_grp .form_content .col-4 .col {
    float: left;
    width: 33.33333%;
  }
}
@media (min-width: 1400px) {
  .Pre-entry .form_grp .form_content .col-4 .col {
    float: left;
    width: 33.33333%;
  }
}
.Pre-entry .form_grp .form_content .col-3 .col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .Pre-entry .form_grp .form_content .col-3 .col {
    float: left;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .Pre-entry .form_grp .form_content .col-3 .col {
    float: left;
    width: 25%;
  }
}
@media (min-width: 1400px) {
  .Pre-entry .form_grp .form_content .col-3 .col {
    float: left;
    width: 25%;
  }
}
.Pre-entry .form_grp .form_content .col-6 .col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .Pre-entry .form_grp .form_content .col-6 .col {
    float: left;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .Pre-entry .form_grp .form_content .col-6 .col {
    float: left;
    width: 50%;
  }
}
@media (min-width: 1400px) {
  .Pre-entry .form_grp .form_content .col-6 .col {
    float: left;
    width: 50%;
  }
}
.Pre-entry .form_grp .form_content .col-6 .container,
.Pre-entry .form_grp .form_content .col-4 .container,
.Pre-entry .form_grp .form_content .col-3 .container,
.Pre-entry .form_grp .form_content .col-4-8 .container,
.Pre-entry .form_grp .form_content .col-8-4 .container,
.Pre-entry .form_grp .form_content .phoneCol .container {
  position: relative;
  min-height: 1px;
  padding-left: 0px;
  padding-right: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 -15px;
}
.Pre-entry .form_grp .form_content .col-6 .container .col,
.Pre-entry .form_grp .form_content .col-4 .container .col,
.Pre-entry .form_grp .form_content .col-3 .container .col,
.Pre-entry .form_grp .form_content .col-4-8 .container .col,
.Pre-entry .form_grp .form_content .col-8-4 .container .col,
.Pre-entry .form_grp .form_content .phoneCol .container .col {
  margin-bottom: 0;
}
.Pre-entry .form_grp .form_content .col-6 .container .col .form_grp,
.Pre-entry .form_grp .form_content .col-4 .container .col .form_grp,
.Pre-entry .form_grp .form_content .col-3 .container .col .form_grp,
.Pre-entry .form_grp .form_content .col-4-8 .container .col .form_grp,
.Pre-entry .form_grp .form_content .col-8-4 .container .col .form_grp,
.Pre-entry .form_grp .form_content .phoneCol .container .col .form_grp {
  margin-bottom: 1em !important;
}
.Pre-entry .form_grp .form_content .phoneCol .container {
  margin: 0 -15px;
}
.Pre-entry .form_grp .form_content .col-4-8 .col:first-child {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .Pre-entry .form_grp .form_content .col-4-8 .col:first-child {
    float: left;
    width: 41.66667%;
  }
}
@media (min-width: 992px) {
  .Pre-entry .form_grp .form_content .col-4-8 .col:first-child {
    float: left;
    width: 33.33333%;
  }
}
@media (min-width: 1400px) {
  .Pre-entry .form_grp .form_content .col-4-8 .col:first-child {
    float: left;
    width: 33.33333%;
  }
}
.Pre-entry .form_grp .form_content .col-4-8 .col:last-child {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .Pre-entry .form_grp .form_content .col-4-8 .col:last-child {
    float: left;
    width: 58.33333%;
  }
}
@media (min-width: 992px) {
  .Pre-entry .form_grp .form_content .col-4-8 .col:last-child {
    float: left;
    width: 66.66667%;
  }
}
@media (min-width: 1400px) {
  .Pre-entry .form_grp .form_content .col-4-8 .col:last-child {
    float: left;
    width: 66.66667%;
  }
}
.Pre-entry .form_grp .form_content .col-8-4 .col:first-child {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .Pre-entry .form_grp .form_content .col-8-4 .col:first-child {
    float: left;
    width: 58.33333%;
  }
}
@media (min-width: 992px) {
  .Pre-entry .form_grp .form_content .col-8-4 .col:first-child {
    float: left;
    width: 66.66667%;
  }
}
@media (min-width: 1400px) {
  .Pre-entry .form_grp .form_content .col-8-4 .col:first-child {
    float: left;
    width: 66.66667%;
  }
}
.Pre-entry .form_grp .form_content .col-8-4 .col:last-child {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .Pre-entry .form_grp .form_content .col-8-4 .col:last-child {
    float: left;
    width: 41.66667%;
  }
}
@media (min-width: 992px) {
  .Pre-entry .form_grp .form_content .col-8-4 .col:last-child {
    float: left;
    width: 33.33333%;
  }
}
@media (min-width: 1400px) {
  .Pre-entry .form_grp .form_content .col-8-4 .col:last-child {
    float: left;
    width: 33.33333%;
  }
}
.Pre-entry .form_grp.has-danger .form_title {
  color: #ba0012;
}
.Pre-entry .form_grp.has-danger .form_content.form-control-danger .col {
  padding-top: 5px;
  padding-bottom: 5px;
}
.Pre-entry .form_grp.has-danger .form_content.form-control-danger .col label {
  margin: 0;
  display: block;
}
.Pre-entry .form_grp.has-danger .form_content.form-control-danger .phoneCol .container {
  margin: 0 -15px;
}
.Pre-entry .form_grp.has-danger .form_content.form-control-danger .phoneCol .container .col {
  margin: 0;
}
.Pre-entry .form_grp.has-danger .form_content.form-control-danger .phoneCol .container .col input {
  margin: 0.3em 0;
}
.Pre-entry .form_grp.has-danger .form_content.form-control-danger .phoneCol .container .col:after {
  color: #ba0012;
}
@media screen and (max-width: 767px) {
  .Pre-entry {
    padding: 1em;
  }
  .Pre-entry .form_grp .form_title {
    padding: 0;
  }
  .Pre-entry .form_grp .form_content {
    padding: 0em;
  }
  .Pre-entry .form_grp .form_content .col-6 .container, .Pre-entry .form_grp .form_content .col-4 .container, .Pre-entry .form_grp .form_content .col-3 .container, .Pre-entry .form_grp .form_content .phoneCol .container {
    position: relative;
    min-height: 1px;
    padding-left: 0px;
    padding-right: 0px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 0;
  }
  .Pre-entry .form_grp .form_content .col-6 .container .col, .Pre-entry .form_grp .form_content .col-4 .container .col, .Pre-entry .form_grp .form_content .col-3 .container .col, .Pre-entry .form_grp .form_content .phoneCol .container .col {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .Pre-entry .form_grp .form_content .col-6 .container .col label, .Pre-entry .form_grp .form_content .col-4 .container .col label, .Pre-entry .form_grp .form_content .col-3 .container .col label, .Pre-entry .form_grp .form_content .phoneCol .container .col label {
    position: relative;
    min-height: 1px;
    padding-left: 0px;
    padding-right: 0px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .Pre-entry .form_grp.has-danger .form-control-danger .col-6 .container, .Pre-entry .form_grp.has-danger .form-control-danger .col-4 .container, .Pre-entry .form_grp.has-danger .form-control-danger .col-3 .container, .Pre-entry .form_grp.has-danger .form-control-danger .phoneCol .container {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .Pre-entry .form_grp.has-danger .form-control-danger .col-6 .container .col, .Pre-entry .form_grp.has-danger .form-control-danger .col-4 .container .col, .Pre-entry .form_grp.has-danger .form-control-danger .col-3 .container .col, .Pre-entry .form_grp.has-danger .form-control-danger .phoneCol .container .col {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.searchResult .calendarlist li span.favorite {
  right: 0;
}
.searchResult .calendarlist li a {
  overflow: inherit;
  text-overflow: inherit;
  white-space: normal;
}
.searchResult .calendarlist .keyword {
  color: white;
  padding: 0 5px;
  background: #f06;
}

/*SignUp page*/
/* sitemap */
.sitemap {
  margin: 0px auto 1em;
  color: #666;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
  *zoom: 1;
}
.sitemap .accesskeyDefine {
  padding: 1em 2em;
  background: #EEE;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.cascading {
  margin: 0;
  padding: 0;
  border-top: 1px solid #CCC;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.cascading li {
  margin: 0 1% 1em;
  line-height: 1.5em;
  font-size: 1em;
  list-style: none;
  width: 22%;
  display: inline-block;
  vertical-align: top;
}
.cascading li a {
  margin: 10px 0px;
  color: #333;
  padding: .5em;
  display: block;
  font-size: 1.25em;
  font-weight: bold;
  border-bottom: 2px solid #1493df;
}
.cascading li a:hover, .cascading li a:focus {
  color: #1493df !important;
  text-decoration: none;
}
.cascading li ul {
  margin-left: 0px;
  padding-left: 0%;
}
.cascading li ul li {
  width: 100%;
  display: block !important;
  margin-bottom: 0;
}
.cascading li ul li a {
  margin-top: 0px;
  margin-bottom: 0px;
  display: block;
  font-size: 1em;
  border-bottom: 1px dotted #ccc;
  background-color: transparent;
  font-weight: normal;
  color: #666;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .cascading {
    width: 95%;
    margin: 0px auto;
  }
  .cascading li {
    width: 100%;
  }
}

/*Sitemap*/
.box_title {
  font-size: 1.2em;
  color: #2f549c;
  position: relative;
  font-weight: 600;
  margin: 0 0 0 15px;
  padding: 5px 0 5px 35px;
}
.box_title:before, .box_title:after {
  position: absolute;
  content: "";
  display: block;
}
.box_title:before {
  top: 13px;
  left: 7px;
  width: 8px;
  height: 8px;
  line-height: 1.25em;
  border: 2px solid #2f549c;
  border-top: none;
  border-left: none;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.box_title:after {
  width: 28px;
  height: 28px;
  top: 3px;
  left: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #2f549c;
}
@media screen and (max-width: 767px) {
  .box_title {
    margin: 1em 0;
  }
}

.box_content {
  padding: 0.5em 0;
  overflow: hidden;
}

.event-calendar .btnDisplay .container {
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*gutter 代表左右要留白*/
}
.event-calendar .btnDisplay .col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*768px  width:50%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*992px  width:50%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*1400px width:50%*/
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .event-calendar .btnDisplay .col {
    float: left;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .event-calendar .btnDisplay .col {
    float: left;
    width: 50%;
  }
}
@media (min-width: 1400px) {
  .event-calendar .btnDisplay .col {
    float: left;
    width: 50%;
  }
}
.event-calendar .btnDisplay .col:nth-child(1) {
  position: relative;
}
.event-calendar .btnDisplay .col:nth-child(1):after {
  position: absolute;
  content: "";
  height: 100%;
  top: 0;
  right: 0px;
  border-right: 1px solid #dbdbdb;
}
.event-calendar .btnDisplay .col .ex-radio label {
  transition: all .2s ease;
}
.event-calendar .btnDisplay .col .ex-radio label:hover, .event-calendar .btnDisplay .col .ex-radio label:focus {
  background: #eee;
}
.event-calendar .ex-checkbox, .event-calendar .ex-radio {
  margin: 0;
  font-size: inherit;
}
.event-calendar .ex-radio {
  position: relative;
  float: left;
  width: 50%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  font-size: inherit;
  margin-bottom: 1em;
  display: inline-block;
}
.event-calendar .ex-radio input[type=radio] + label {
  display: block;
  font-size: 1.05em;
  font-weight: normal;
  color: #999999;
  margin: auto;
  padding: .75em 1em !important;
  text-align: center;
  position: relative;
  cursor: pointer;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #CCC;
  /*   span:before{*/
  /*     width: 2.5em;*/
  /*     height: 2.5em;*/
  /*     margin-right: 6px;*/
  /* }*/
}
.event-calendar .ex-radio input[type=radio] + label::before, .event-calendar .ex-radio input[type=radio] + label::after {
  display: none;
}
.event-calendar .ex-radio input[type=radio] + label i {
  font-size: 2em;
  margin-right: .5em;
  vertical-align: -5px;
  display: inline-block;
  line-height: 1;
}
.event-calendar .ex-radio input[type=radio] + label p {
  color: #CCC;
}
.event-calendar .ex-radio input[type="radio"]:checked:hover + label,
.event-calendar .ex-radio input[type="radio"]:checked + label {
  cursor: pointer;
  color: white;
  background: #2f549c;
}
.event-calendar .ex-radio input[type="radio"]:checked:hover + label i[class^="i_"]:before,
.event-calendar .ex-radio input[type="radio"]:checked + label i[class^="i_"]:before {
  -webkit-filter: brightness(10);
  filter: brightness(10);
}
.event-calendar .ex-radio input[type="radio"]:checked:hover + label::before,
.event-calendar .ex-radio input[type="radio"]:checked + label::before {
  top: 14px;
  left: 3px;
  border: 2px solid white;
  background: #2f549c;
}
.event-calendar .ex-radio input[type="radio"]:checked:hover + label::after,
.event-calendar .ex-radio input[type="radio"]:checked + label::after {
  top: 20px;
  left: 9px;
  background: white;
}
.event-calendar .ex-radio.checked input[type="checkbox"]:checked:hover + label,
.event-calendar .ex-radio.checked input[type="checkbox"]:checked + label,
.event-calendar .ex-radio.checked input[type="radio"]:checked:hover + label,
.event-calendar .ex-radio.checked input[type="radio"]:checked + label {
  cursor: pointer;
  color: white;
  background: #2f549c;
}
.event-calendar .ex-radio.checked input[type="checkbox"]:checked:hover + label i[class^="i_"]:before,
.event-calendar .ex-radio.checked input[type="checkbox"]:checked + label i[class^="i_"]:before,
.event-calendar .ex-radio.checked input[type="radio"]:checked:hover + label i[class^="i_"]:before,
.event-calendar .ex-radio.checked input[type="radio"]:checked + label i[class^="i_"]:before {
  -webkit-filter: brightness(10);
  filter: brightness(10);
}
.event-calendar .ex-radio.checked input[type="checkbox"]:checked:hover + label:before,
.event-calendar .ex-radio.checked input[type="checkbox"]:checked + label:before,
.event-calendar .ex-radio.checked input[type="radio"]:checked:hover + label:before,
.event-calendar .ex-radio.checked input[type="radio"]:checked + label:before {
  top: 14px;
  left: 3px;
  border: 2px solid white;
  background: #2f549c;
}
.event-calendar .ex-radio.checked input[type="checkbox"]:checked:hover + label:after,
.event-calendar .ex-radio.checked input[type="checkbox"]:checked + label:after,
.event-calendar .ex-radio.checked input[type="radio"]:checked:hover + label:after,
.event-calendar .ex-radio.checked input[type="radio"]:checked + label:after {
  top: 20px;
  left: 9px;
  background: white;
}
@media screen and (max-width: 991px) {
  .event-calendar .ex-radio input[type=radio] + label {
    padding: 5px 10px 5px 18px;
  }
  .event-calendar .ex-radio input[type=radio] + label i {
    font-size: 1.6em;
  }
}
.event-calendar .btnShow .box_content {
  display: flex;
  flex-flow: row wrap;
}
.event-calendar .btnShow .box_content .col {
  flex: 1 1 auto;
  flex-basis: calc(100% / 3 - 30px);
  max-width: calc(100% / 3 - 30px);
  border: 1px solid #ccc;
  margin: 0 15px 15px !important;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.event-calendar .btnShow .box_content .col.checked {
  background: #2f549c;
}
.event-calendar .btnShow .box_content .col.checked .item, .event-calendar .btnShow .box_content .col.checked .member {
  color: #fff !important;
}
.event-calendar .btnShow .box_content .col .ex-radio {
  margin: 0 !important;
  padding: 0;
}
.event-calendar .btnShow .box_content .col .ex-radio label {
  border: transparent;
}
.event-calendar .btnType .box_content {
  display: flex;
  flex-flow: row wrap;
}
.event-calendar .btnType .box_content .col {
  flex: 1 1 auto;
  flex-basis: calc(100% / 4 - 30px);
  max-width: calc(100% / 4 - 30px);
  border: 1px solid #ccc;
  margin: 0 15px 15px !important;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.event-calendar .btnType .box_content .col.checked {
  background: #2f549c;
}
.event-calendar .btnType .box_content .col.checked .item, .event-calendar .btnType .box_content .col.checked .member {
  color: #fff !important;
}
.event-calendar .btnType .box_content .col .ex-radio {
  margin: 0 !important;
  padding: 0;
}
.event-calendar .btnType .box_content .col .ex-radio label {
  border: none;
}
.event-calendar .btnShow .container,
.event-calendar .btnType .container {
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.event-calendar .btnShow .col,
.event-calendar .btnType .col {
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  transition: all .2s ease;
}
.event-calendar .btnShow .col:first-child,
.event-calendar .btnType .col:first-child {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .event-calendar .btnShow .col:first-child,
  .event-calendar .btnType .col:first-child {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .event-calendar .btnShow .col:first-child,
  .event-calendar .btnType .col:first-child {
    margin-left: 0%;
  }
}
@media (min-width: 1400px) {
  .event-calendar .btnShow .col:first-child,
  .event-calendar .btnType .col:first-child {
    margin-left: 0%;
  }
}
.event-calendar .btnShow .col:hover, .event-calendar .btnShow .col:focus,
.event-calendar .btnType .col:hover,
.event-calendar .btnType .col:focus {
  background: #eee;
}
.event-calendar .btnShow .col .ex-radio,
.event-calendar .btnType .col .ex-radio {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  width: 100% !important;
  float: none !important;
  display: block !important;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 1400px) {
  .event-calendar .btnShow .col .ex-radio,
  .event-calendar .btnType .col .ex-radio {
    float: left;
    width: 100%;
  }
}
.event-calendar .btnShow .col .ex-radio input[type=radio] + label,
.event-calendar .btnType .col .ex-radio input[type=radio] + label {
  display: block;
  position: relative;
}
.event-calendar .btnShow .col .ex-radio input[type=radio] + label:before, .event-calendar .btnShow .col .ex-radio input[type=radio] + label:after,
.event-calendar .btnType .col .ex-radio input[type=radio] + label:before,
.event-calendar .btnType .col .ex-radio input[type=radio] + label:after {
  display: none;
}
.event-calendar .btnShow .col .ex-radio input[type=radio] + label p,
.event-calendar .btnType .col .ex-radio input[type=radio] + label p {
  color: #2f549c;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.event-calendar .btnShow .col .ex-radio input[type=radio] + label p span,
.event-calendar .btnType .col .ex-radio input[type=radio] + label p span {
  flex: 1 1 auto;
  line-height: 1.4;
}
.event-calendar .btnShow .col .ex-radio input[type=radio] + label p span.item,
.event-calendar .btnType .col .ex-radio input[type=radio] + label p span.item {
  flex-basis: calc(100% - 30% );
  max-width: calc(100% - 30% );
  border-right: dotted 1px #ddd;
  padding-right: .75em;
}
.event-calendar .btnShow .col .ex-radio input[type=radio] + label p span.member,
.event-calendar .btnType .col .ex-radio input[type=radio] + label p span.member {
  flex-basis: 30%;
  max-width: 30%;
  color: #999999;
  font-size: 1em;
  font-weight: normal;
}
.event-calendar .btnShow .col .ex-radio input[type="radio"]:checked:hover + label p,
.event-calendar .btnShow .col .ex-radio input[type="radio"]:checked + label p,
.event-calendar .btnType .col .ex-radio input[type="radio"]:checked:hover + label p,
.event-calendar .btnType .col .ex-radio input[type="radio"]:checked + label p {
  color: white;
}
.event-calendar .btnShow .col .ex-radio input[type="radio"]:checked:hover + label p span.member,
.event-calendar .btnShow .col .ex-radio input[type="radio"]:checked + label p span.member,
.event-calendar .btnType .col .ex-radio input[type="radio"]:checked:hover + label p span.member,
.event-calendar .btnType .col .ex-radio input[type="radio"]:checked + label p span.member {
  color: white;
}
@media screen and (max-width: 991px) {
  .event-calendar .btnDisplay .col,
  .event-calendar .btnType .col {
    position: relative;
    min-height: 1px;
    padding-left: 0px;
    padding-right: 0px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 991px) and (min-width: 992px) {
  .event-calendar .btnDisplay .col,
  .event-calendar .btnType .col {
    float: left;
    width: 50%;
  }
}
@media screen and (max-width: 991px) {
  .event-calendar .box_grp .box_content .ex-radio label {
    line-height: 2.6;
  }
  .event-calendar .box_grp .box_content .ex-radio label span:before {
    width: 1.5em;
    height: 1.5em;
    margin-right: 4px;
  }
  .event-calendar .box_grp .box_content .ex-radio:nth-child(2) {
    padding-right: 15px;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .event-calendar .btnDisplay, .event-calendar .btnType {
    display: none;
  }
  .event-calendar .btnDisplay .container {
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .event-calendar .btnDisplay .container .col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .event-calendar .btnType .col {
    width: inherit;
    position: relative;
    float: left;
    width: 50%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .event-calendar .box_grp .box_content .ex-radio:nth-child(1), .event-calendar .box_grp .box_content .ex-radio:nth-child(2) {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 575px) {
  .event-calendar .btnDisplay .container {
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .event-calendar .btnDisplay .container .col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .event-calendar .btnDisplay .container .col:nth-child(1):after {
    display: none;
  }
  .event-calendar .btnDisplay .container .col .ex-radio {
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .event-calendar .btnType .col {
    width: inherit;
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .event-calendar .box_grp .box_content .ex-radio {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .event-calendar .box_grp .box_content .ex-radio label span:before {
    width: 2em;
    height: 2em;
  }
}

.event-detail .container {
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.event-detail .col.boxLeft {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*gutter 代表左右要留白*/
}
@media (min-width: 768px) {
  .event-detail .col.boxLeft {
    float: left;
    width: 33.33333%;
  }
}
@media (min-width: 992px) {
  .event-detail .col.boxLeft {
    float: left;
    width: 33.33333%;
  }
}
@media (min-width: 1400px) {
  .event-detail .col.boxLeft {
    float: left;
    width: 33.33333%;
  }
}
.event-detail .col.boxRight {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*992px  width:66.6%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*1400px width:66.6%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*gutter 代表左右要留白*/
  padding-right: 0 !important;
}
@media (min-width: 768px) {
  .event-detail .col.boxRight {
    float: left;
    width: 66.66667%;
  }
}
@media (min-width: 992px) {
  .event-detail .col.boxRight {
    float: left;
    width: 66.66667%;
  }
}
@media (min-width: 1400px) {
  .event-detail .col.boxRight {
    float: left;
    width: 66.66667%;
  }
}
.event-detail .boxLeft {
  padding: 1em 2em 2em 0;
  background: #e7eaf2;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.event-detail .boxLeft:after {
  position: absolute;
  content: "";
  top: -2em;
  left: 0em;
  width: 0;
  height: 0;
  z-index: -1;
  border-top: 300px solid transparent;
  border-left: 300px solid #a5b0ce;
  border-bottom: 300px solid transparent;
}
.event-detail .boxLeft a {
  color: #2f549c;
  display: block;
}
.event-detail .boxLeft .cardBox {
  background: white;
  padding: 2em 2em 0 2em;
  margin: 0em auto 1em auto;
}
.event-detail .boxLeft .cardBox .img-container {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.event-detail .boxLeft .cardBox .img-container:before {
  display: block;
  content: "";
  padding-top: 100%;
}
.event-detail .boxLeft .cardBox .img-container img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.event-detail .boxLeft .cardBox .img-container img {
  width: auto;
}
.event-detail .boxLeft .cardBox .caption {
  font-size: 1.25em;
  font-weight: bold;
  margin: 1.25em auto;
  text-align: center;
  color: #2f549c;
}
.event-detail .boxLeft .cardBox .btn_grp {
  background: #2f549c !important;
  margin: 0 -2em !important;
  padding: 1em 2em;
}
.event-detail .boxLeft .cardBox .btn_grp a {
  color: white;
}
.event-detail .boxLeft .cardBox .btn_grp a.active:before {
  color: #fff100;
}
@media screen and (max-width: 1000px) {
  .event-detail .boxLeft .cardBox .btn_grp {
    padding: 1em 1em;
  }
}
.event-detail .boxRight {
  padding-left: 30px;
  padding-right: 0px;
}
.event-detail .boxRight h3 {
  font-size: 1.25em;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  color: #335aa8;
  font-size: 1.5em;
  line-height: 1.35;
  display: block;
  padding-left: 1.6em;
  margin-bottom: 1em;
  position: relative;
}
.event-detail .boxRight h3:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  display: block;
  background: url("../images/icon/show-h3.png") no-repeat 0 0;
  background-size: contain;
}
.event-detail .boxRight a {
  color: #1493df;
}
.event-detail .boxRight a:hover, .event-detail .boxRight a:focus {
  text-decoration: underline;
}
.event-detail .boxRight .img-container {
  position: relative;
  overflow: hidden;
  background: #fff;
  margin-bottom: 1em;
}
.event-detail .boxRight .img-container:before {
  display: block;
  content: "";
  padding-top: 14.28571%;
}
.event-detail .boxRight .img-container img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.event-detail .boxRight .form_inline {
  border-bottom: 1px solid #CCC;
  padding-bottom: 2em;
  margin-bottom: 1em;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.event-detail .boxRight .form_vertical {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.event-detail .boxRight .form_vertical ul, .event-detail .boxRight .form_vertical p {
  margin: 0;
  padding: 0 0 0 0em;
  list-style: none;
}
.event-detail .boxRight .form_vertical ul li, .event-detail .boxRight .form_vertical p li {
  position: relative;
  list-style: none;
}
.event-detail .boxRight .form_vertical ul li:before, .event-detail .boxRight .form_vertical p li:before {
  content: '';
  position: absolute;
  left: -1em;
  top: 11px;
  width: 8px;
  height: 8px;
  line-height: 1.25em;
  border: 1px solid #bfbfbf;
  border-top: none;
  border-left: none;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.event-detail .boxRight .form_vertical ul {
  margin: 0 0 0 1em;
}
.event-detail .boxRight .form_grp {
  margin: 0em 0 1em 0;
  overflow: hidden;
}
.event-detail .boxRight .form_grp .form_title {
  text-align: left;
  color: #335aa8;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 0;
}
@media (min-width: 992px) {
  .event-detail .boxRight .form_grp .form_title {
    float: left;
    width: 16.66667%;
  }
}
.event-detail .boxRight .form_grp .form_content {
  color: #8c8c8c;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .event-detail .boxRight .form_grp .form_content {
    float: left;
    width: 83.33333%;
  }
}

.RWDselect {
  display: none;
}

@media screen and (max-width: 991px) {
  .boxRight .form_title {
    width: 100%;
    padding-left: 0;
  }
  .boxRight .form_content {
    width: 100%;
  }
  .boxRight .form_content ul, .boxRight .form_content p {
    padding: 0 0 0 1em;
  }
}
@media screen and (max-width: 767px) {
  .RWDselect {
    display: block;
  }
  .RWDselect .box_title {
    margin: 0 !important;
  }
  .RWDselect select {
    display: block;
    width: 100%;
    height: 40px;
    border: none;
    line-height: 2.4em;
    height: 2.4em;
    padding: 0 24px 0 .5em;
    -moz-box-shadow: 0 0px 0px 1px #CCC inset;
    -webkit-box-shadow: 0 0px 0px 1px #CCC inset;
    box-shadow: 0 0px 0px 1px #CCC inset;
    background: #fff url(../images/basic/icon_select_arrow.png) no-repeat right center;
    background-size: 18px;
  }
  .RWDselect .form_grp {
    margin-bottom: 1em !important;
  }

  .boxLeft {
    overflow: inherit;
    height: auto;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 1em;
  }
  .boxLeft .img-container {
    height: 300px;
  }

  .boxRight {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .boxRight .form_title, .boxRight .form_content {
    width: 100%;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .boxRight .form_inline, .boxRight .form_vertical {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}
@media screen and (max-width: 575px) {
  .boxLeft .img-container {
    height: 100%;
  }

  .boxRight h3 {
    padding-left: 0 !important;
  }
  .boxRight h3:before {
    display: none !important;
  }
  .boxRight .form_inline .col, .boxRight .form_vertical .col {
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .boxRight .form_title, .boxRight .form_content {
    width: 100%;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 320px) {
  .boxLeft .img-container {
    height: auto;
  }
}
/*event*/
.member .container {
  position: relative;
  min-height: 1px;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.member .searchFun .form_grp {
  margin-bottom: 1em;
}
.member .searchFun .form_grp label {
  margin-right: 0;
}
.member .boxLeft {
  position: relative;
}
.member .boxLeft .userInfo {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}
.member .boxLeft .userInfo h4 {
  margin-bottom: 5px;
  color: #333;
}
.member .boxLeft .userInfo span {
  color: #666666;
}
.member .boxRight {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.member .boxRight p.tip {
  margin-bottom: .25em;
}
.member .boxRight .clear {
  overflow: hidden;
  *zoom: 1;
}
.member .boxRight .clear .searchFun {
  float: left;
}
.member .boxRight .clear .btn_grp.function-right {
  text-align: right;
  float: right;
}
.member .boxRight .clear .btn_grp.function-right .btn {
  color: #fff;
  padding: .25em .75em !important;
  margin-bottom: 3px;
}
.member .boxRight .box_content {
  margin: 0 auto 4em auto;
  padding: 1em;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  -moz-box-shadow: 0 2px 8px 0 rgba(194, 194, 194, 0.5);
  -webkit-box-shadow: 0 2px 8px 0 rgba(194, 194, 194, 0.5);
  box-shadow: 0 2px 8px 0 rgba(194, 194, 194, 0.5);
}
.member .boxRight .box_content .showlist {
  padding: 1.5em 0;
  border-bottom: 1px solid #CCC;
}
.member .boxRight .box_content .showlist:last-child {
  border-bottom: none;
}
.member .boxRight .box_content .showlist h3 {
  line-height: 1.4;
}
.member .boxRight .box_content .showlist h3 > a {
  margin-right: 10px;
}
.member .boxRight .box_content .showlist h3 a.link-website {
  margin-right: 0;
}
.member .boxRight .box_content .showlist span.favorite {
  top: 2px;
  color: #CCC;
  display: inline-block;
}
.member .boxRight .box_content .showlist span.favorite.active {
  color: #ffcf00;
}
@media screen and (max-width: 767px) {
  .member .boxRight .box_content .showlist span.favorite {
    top: -180px;
  }
}
.member .boxRight .box_content .showlist input {
  padding: 2px 10px;
  color: #fff;
  margin-bottom: 5px;
}
.member .boxRight .box_content .showlist input:hover {
  color: #fff;
  background: #1074b0;
  border: 1px solid #1074b0;
}
.member .boxRight .box_content .showlist .form_grp .form_title {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 0px;
  padding-right: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  font-weight: bold;
  text-align: right;
}
@media (min-width: 768px) {
  .member .boxRight .box_content .showlist .form_grp .form_title {
    float: left;
    width: 25%;
  }
}
@media (min-width: 992px) {
  .member .boxRight .box_content .showlist .form_grp .form_title {
    float: left;
    width: 25%;
  }
}
@media (min-width: 1400px) {
  .member .boxRight .box_content .showlist .form_grp .form_title {
    float: left;
    width: 16.66667%;
  }
}
.member .boxRight .box_content .showlist .form_grp .form_content {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 0px;
  padding-right: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
@media (min-width: 768px) {
  .member .boxRight .box_content .showlist .form_grp .form_content {
    float: left;
    width: 75%;
  }
}
@media (min-width: 992px) {
  .member .boxRight .box_content .showlist .form_grp .form_content {
    float: left;
    width: 75%;
  }
}
@media (min-width: 1400px) {
  .member .boxRight .box_content .showlist .form_grp .form_content {
    float: left;
    width: 83.33333%;
  }
}
.member .boxRight .box_content .img-container {
  text-align: center;
}
.member .boxRight .box_content .img-container img {
  margin: auto;
  position: relative;
  overflow: hidden;
  background: #fff;
  background: transparent;
}
.member .boxRight .box_content .img-container img:before {
  display: block;
  content: "";
  padding-top: 100%;
}
.member .boxRight .box_content .img-container img img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.member .boxRight .box_content .col-3-9 .col:nth-child(1) {
  position: relative;
  min-height: 1px;
  padding-left: 0px;
  padding-right: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .member .boxRight .box_content .col-3-9 .col:nth-child(1) {
    height: 180px;
  }
}
.member .boxRight .box_content .col-3-9 .img-container {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.member .boxRight .box_content .col-3-9 .img-container:before {
  display: block;
  content: "";
  padding-top: 100%;
}
.member .boxRight .box_content .col-3-9 .img-container img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.member .boxRight .box_content .col-3-9 .img-container img {
  width: auto;
  height: auto;
}
@media screen and (max-width: 767px) {
  .member .boxRight .box_content .col-3-9 .img-container {
    margin: 0 auto;
    margin-bottom: 1em;
  }
  .member .boxRight .box_content .col-3-9 .img-container img {
    width: 100%;
    height: 100%;
  }
}
.member .boxRight .box_content .col-2-10 .col:nth-child(1) {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .member .boxRight .box_content .col-2-10 .col:nth-child(1) {
    float: left;
    width: 25%;
  }
}
@media (min-width: 992px) {
  .member .boxRight .box_content .col-2-10 .col:nth-child(1) {
    float: left;
    width: 25%;
  }
}
@media (min-width: 1400px) {
  .member .boxRight .box_content .col-2-10 .col:nth-child(1) {
    float: left;
    width: 16.66667%;
  }
}
.member .boxRight .box_content .col-2-10 .col:nth-child(2) {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .member .boxRight .box_content .col-2-10 .col:nth-child(2) {
    float: left;
    width: 75%;
  }
}
@media (min-width: 992px) {
  .member .boxRight .box_content .col-2-10 .col:nth-child(2) {
    float: left;
    width: 75%;
  }
}
@media (min-width: 1400px) {
  .member .boxRight .box_content .col-2-10 .col:nth-child(2) {
    float: left;
    width: 83.33333%;
  }
}
.member .boxRight .box_content .col-2-10 .img-container {
  height: 100px;
}
.member .boxRight .box_content h3 {
  font-size: 1.25em;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  margin: 0 36px 10px 0;
}
.member .boxRight .box_content h3 a.link-website {
  display: inline-block;
  font-size: 1em;
  font-weight: normal;
  color: #999999;
}
.member .boxRight .box_content h3 a.link-website.icon-globe:before {
  font-size: 1.3em;
}
.member .boxRight .box_content h3 a:hover, .member .boxRight .box_content h3 a:focus {
  color: #1493df;
}
.member .boxRight .box_content h3 a:hover.link-website, .member .boxRight .box_content h3 a:focus.link-website {
  text-decoration: none;
}
.member .boxRight .box_content time,
.member .boxRight .box_content .form_grp {
  color: #333;
}
.member .boxRight .box_content .form_grp {
  margin: 10px 0;
  overflow: hidden;
}
.member .boxRight .box_content .form_grp:first-child {
  margin-top: 1em;
}
.member .boxRight .box_content .form_grp .form_title {
  font-weight: normal;
}
.member .boxRight .box_content .form_grp .form_content .label {
  margin-right: 3px;
  min-width: auto;
  padding: 0;
  margin-bottom: 5px;
  font-size: 1em;
  background: transparent !important;
}
.member .boxRight .box_content .form_grp .form_content .label.label-default {
  color: #666 !important;
}
.member .boxRight .box_content .form_grp .form_content .label.label-reject {
  color: #fa7c04 !important;
}
.member .boxRight .box_content .form_grp .form_content .label.label-OK {
  color: #01bbc3 !important;
}
.member .boxRight .box_content .form_grp .form_content .btn {
  margin-bottom: 5px;
  margin-top: 5px;
  line-height: 1.2;
}
.member .boxRight .box_content .table_wrapper {
  margin: .75em 0;
  overflow-x: scroll !important;
  overflow: hidden;
  *zoom: 1;
}
.member .boxRight .box_content .member .btn_grp .btn {
  color: #fff;
  padding: .25em .75em !important;
  margin-bottom: 3px;
}
@media screen and (max-width: 1399px) {
  .member .boxRight .clear .searchFun {
    float: none;
  }
  .member .boxRight .clear .searchFun .form_grp {
    margin-bottom: .25em;
  }
  .member .boxRight .clear .btn_grp.function-right {
    text-align: left;
    float: none;
    margin: .2em 0 .5em !important;
  }
  .member .boxRight .box_content .showlist .col .container {
    margin-bottom: 1em;
  }
  .member .boxRight .box_content .showlist .form_grp .form_title {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    min-height: 1px;
    padding-left: 0px;
    padding-right: 0px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1399px) and (min-width: 768px) {
  .member .boxRight .box_content .showlist .form_grp .form_title {
    float: left;
    width: 25%;
  }
}
@media screen and (max-width: 1399px) and (min-width: 992px) {
  .member .boxRight .box_content .showlist .form_grp .form_title {
    float: left;
    width: 25%;
  }
}
@media screen and (max-width: 1399px) and (min-width: 1400px) {
  .member .boxRight .box_content .showlist .form_grp .form_title {
    float: left;
    width: 25%;
  }
}
@media screen and (max-width: 1399px) {
  .member .boxRight .box_content .showlist .form_grp .form_content {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    min-height: 1px;
    padding-left: 0px;
    padding-right: 0px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1399px) and (min-width: 768px) {
  .member .boxRight .box_content .showlist .form_grp .form_content {
    float: left;
    width: 75%;
  }
}
@media screen and (max-width: 1399px) and (min-width: 992px) {
  .member .boxRight .box_content .showlist .form_grp .form_content {
    float: left;
    width: 75%;
  }
}
@media screen and (max-width: 1399px) and (min-width: 1400px) {
  .member .boxRight .box_content .showlist .form_grp .form_content {
    float: left;
    width: 75%;
  }
}

@media screen and (max-width: 767px) {
  .member .boxRight {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .member .boxRight .signupBox .form_title,
  .member .boxRight .signupBox .form_content {
    padding: 0;
  }
  .member .boxRight .searchFun .form_title {
    display: inline-block;
  }
  .member .boxRight .box_content .showlist .form_grp {
    margin-bottom: 1em;
  }
  .member .boxRight .box_content .showlist .form_grp .form_title, .member .boxRight .box_content .showlist .form_grp .form_content {
    width: 100%;
    padding: 0;
    float: none;
    text-align: left;
  }
  .member .boxRight .box_content .showlist .icon-addDate span {
    display: none;
  }
}

/*-----------------------------------------------------nav menu--------//*/
.memberMenu ul {
  margin: 0em 0em 0em 0em;
  padding: 0;
}
.memberMenu ul > li {
  list-style: none;
  display: block;
  z-index: 0;
  margin: 3px 0;
  padding: 0;
  border-bottom: 0;
  overflow: visible;
  position: relative;
}
.memberMenu ul > li:after {
  content: '';
  position: absolute;
  right: 15px;
  top: 20px;
  width: 8px;
  height: 8px;
  line-height: 1.25em;
  border: 1px solid gray;
  border-top: none;
  border-left: none;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.memberMenu ul > li > a {
  font-size: 1.1em;
  font-weight: 400;
  display: block;
  color: #8c8c8c;
  padding: 10px 10px 10px 46px;
  border-bottom: 1px solid #e6e6e6;
}
.memberMenu ul > li ul, .memberMenu ul > li .accordion-content {
  padding: 0px;
  margin: 0em 0;
}
.memberMenu ul > li ul a, .memberMenu ul > li .accordion-content a {
  border-bottom: none;
}
.memberMenu ul > li ul li.active a, .memberMenu ul > li .accordion-content li.active a {
  color: #333 !important;
  background: #CCC !important;
}
.memberMenu ul > li ul li.active a:before, .memberMenu ul > li .accordion-content li.active a:before {
  border: 1px solid #333;
  border-top: none;
  border-left: none;
}
.memberMenu ul > .active:before {
  z-index: 1;
  -webkit-filter: brightness(10) !important;
  filter: brightness(10) !important;
}
.memberMenu ul > .active > a {
  color: white !important;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: rgba(20, 147, 223, 0.2);
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FF690E86', endColorstr='#FF3257AF');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzY5MGU4NiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzMyNTdhZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #690e86), color-stop(100%, #3257af));
  background-image: -moz-linear-gradient(left, #690e86 0%, #3257af 100%);
  background-image: -webkit-linear-gradient(left, #690e86 0%, #3257af 100%);
  background-image: linear-gradient(to right, #690e86 0%, #3257af 100%);
}
.memberMenu ul > .active > a:after {
  border-color: white;
}
.memberMenu ul > .active > a.close:after {
  top: 26px;
  border-color: white;
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.memberMenu li:before, .memberMenu li:after {
  position: absolute;
  content: "";
  display: block;
  z-index: -1;
}
.memberMenu li:before {
  width: 46px;
  left: 6px;
  bottom: 0;
  top: 8px;
  background-size: 50% !important;
  background-repeat: no-repeat !important;
  background-position: 5px 5px !important;
}
.memberMenu li.nextshow:before {
  background: url("../images/icon/icon_nextshow.png");
}
.memberMenu li.favorites:before {
  background: url("../images/icon/icon_favorites.png");
}
.memberMenu li.setting:before {
  background: url("../images/icon/icon_setting.png");
}
.memberMenu li.password:before {
  background: url("../images/icon/icon_password.png");
}
.memberMenu li.history:before {
  background: url("../images/icon/icon_history.png");
}
.memberMenu li.exhiibitor:before {
  background: url("../images/icon/icon_exhiibitor.png");
}
.memberMenu li.media:before {
  background: url("../images/icon/icon_media.png");
}
.memberMenu li ul {
  margin: 5px 0;
}
.memberMenu li li {
  margin-left: 0;
  margin-bottom: 4px;
  padding: 0;
}
.memberMenu li li:before, .memberMenu li li:after {
  display: none !important;
}
.memberMenu li li a {
  color: #666 !important;
  padding: 5px 10px 5px 35px;
  border-radius: 3px;
  font-weight: 400;
  font-size: 1em;
  position: relative;
  list-style: none;
  background: none;
  background-color: #efefef;
  border-bottom: none;
}
.memberMenu li li a:before {
  content: '';
  position: absolute;
  left: 15px;
  top: 15px;
  width: 8px;
  height: 8px;
  line-height: 1.25em;
  border: 1px solid gray;
  border-top: none;
  border-left: none;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.memberMenu li li a:after {
  display: none;
}
.memberMenu li li a:hover {
  background: #cccccc;
}

@media screen and (max-width: 991px) {
  .memberMenu ul > li > a:after {
    top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .memberMenu {
    display: none;
  }
}
/*member*/
/* card album*/
.gridCard {
  margin-bottom: 5em;
}
.gridCard .container {
  position: relative;
  min-height: 1px;
  padding-left: 0px;
  padding-right: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.gridCard .col {
  position: relative;
  float: left;
  width: 50%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*576px  width:100%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*768px  width:33.3%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*992px  width:33.3%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*1400px width:33.3%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 2em;
  /* .gridBox .caption{
  	&:before,&:after{
  		position: absolute;
  		content: "";
  		left: 0;right: 0;
  		bottom: 0;
  		@include transition(.3s all);
  	}
  	&:before{
  		display: none;
  	}
  } */
  /* &:hover,&:focus{
  	.gridBox .caption{
  		&:before,&:after{
  			position: absolute;
  			content: "";
  			left: 0;right: 0;
  			bottom: 0;
  			@include transition(.3s all);
  		}
  		&:before{
  			bottom: 0; height: 40px;
  			background-color: rgba(black,0.5);
  		}
  		&:after{
  			width: 105%;height: 108%;
  			display: block;
  			@include filter-gradient(rgba(0,0,0,0), rgba(0,0,0,1), vertical);
  			$experimental-support-for-svg: true;
  			@include background-image(linear-gradient(top, rgba(0,0,0,0) 40%, rgba(0,0,0,1) 100%));
  		}
  		.favorite,.readmore{
  			display: block;
  		}
  		.cardText{
  			@include opacity(1);
  			p{
  				display: block;
  				@include opacity(1);
  			}
  		}
  	}
  } */
  /* .gridBox {*/
  /* 	&:hover,&:focus{*/
  /* 		.caption{*/
  /* 			&:before,&:after{display: none;}*/
  /* 		}*/
  /* 	}*/
  /* }*/
}
@media (min-width: 768px) {
  .gridCard .col {
    float: left;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .gridCard .col {
    float: left;
    width: 33.33333%;
  }
}
@media (min-width: 1400px) {
  .gridCard .col {
    float: left;
    width: 33.33333%;
  }
}
.gridCard .col:nth-child(3n+1) {
  clear: both;
}
.gridCard .col .gridBox .img-container {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.gridCard .col .gridBox .img-container:before {
  display: block;
  content: "";
  padding-top: 75%;
}
.gridCard .col .gridBox .img-container img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.gridCard .col .gridBox .img-container img {
  width: auto;
  height: auto;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.gridCard .col .gridBox .caption {
  text-align: left;
  color: #fff;
  border-top: none;
  z-index: 1;
  cursor: pointer;
  font-weight: normal;
  margin: 0;
  padding: 0px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-animation: gridBoxMask 0.2s ease;
  -webkit-animation: gridBoxMask 0.2s ease;
  animation: gridBoxMask 0.2s ease;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
.gridCard .col .gridBox .caption:before, .gridCard .col .gridBox .caption:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gridCard .col .gridBox .caption:before {
  display: none;
  bottom: 0;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
}
.gridCard .col .gridBox .caption:after {
  width: 106%;
  height: 106%;
  display: block;
  overflow: hidden;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#00000000', endColorstr='#FF000000');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI0MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(40%, rgba(0, 0, 0, 0)), color-stop(100%, #000000));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 40%, #000000 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 40%, #000000 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, #000000 100%);
}
.gridCard .col .gridBox .caption .cardText {
  color: white;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 20px;
  box-sizing: border-box;
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-shadow: 0 1px 2px #333;
}
.gridCard .col .gridBox .caption .cardText time {
  color: white;
  display: block;
  font-size: 0.8em;
}
.gridCard .col .gridBox .caption .cardText h3 {
  font-size: 1.25em;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  color: #fff;
  font-weight: 500;
  font-size: 1em;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 0;
  border-top: none;
}
.gridCard .col .gridBox .caption .cardText p {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  font-size: .8em;
  overflow: hidden;
  color: #fff;
  display: none;
  font-weight: 400;
  padding: 6px 0;
  line-height: 1.3;
}
@media screen and (max-width: 991px) {
  .gridCard .col .gridBox .caption .cardText p {
    height: 60px;
    overflow: hidden;
  }
}
.gridCard .col .gridBox .caption .favorite,
.gridCard .col .gridBox .caption .readmore {
  font-size: 0.9em;
  display: none;
  z-index: 1;
  font-weight: normal;
  width: auto;
  height: auto;
  position: absolute;
  top: auto;
  bottom: 8px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gridCard .col .gridBox .caption .favorite:hover, .gridCard .col .gridBox .caption .favorite:focus,
.gridCard .col .gridBox .caption .readmore:hover,
.gridCard .col .gridBox .caption .readmore:focus {
  color: white !important;
}
.gridCard .col .gridBox .caption .favorite {
  left: 16px;
  color: #fff;
}
.gridCard .col .gridBox .caption .favorite i {
  color: white;
}
.gridCard .col .gridBox .caption .favorite:hover, .gridCard .col .gridBox .caption .favorite:focus {
  text-decoration: none;
}
.gridCard .col .gridBox .caption .favorite.active i {
  color: #fff100;
}
.gridCard .col .gridBox .caption .readmore {
  right: 3px;
}
.gridCard .col .gridBox .caption .readmore:after {
  display: none;
}
.gridCard .col .gridBox .caption:hover, .gridCard .col .gridBox .caption:focus {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gridCard .col .gridBox .caption:hover:before, .gridCard .col .gridBox .caption:hover:after, .gridCard .col .gridBox .caption:focus:before, .gridCard .col .gridBox .caption:focus:after {
  display: block;
}
.gridCard .col .gridBox .caption:hover:before, .gridCard .col .gridBox .caption:focus:before {
  display: block;
}
.gridCard .col .gridBox .caption:hover:after, .gridCard .col .gridBox .caption:focus:after {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjY1Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(10%, rgba(0, 0, 0, 0.65)), color-stop(100%, #000000));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 10%, #000000 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 10%, #000000 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 10%, #000000 100%);
}
.gridCard .col .gridBox .caption:hover .cardText, .gridCard .col .gridBox .caption:focus .cardText {
  display: block;
  height: auto;
  margin-bottom: 35px;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.gridCard .col .gridBox .caption:hover .cardText:before, .gridCard .col .gridBox .caption:focus .cardText:before {
  display: none;
}
.gridCard .col .gridBox .caption:hover .cardText time span, .gridCard .col .gridBox .caption:focus .cardText time span {
  padding: 5px 10px;
  background: #a12177;
  border-radius: 3px;
}
.gridCard .col .gridBox .caption:hover .cardText h3, .gridCard .col .gridBox .caption:focus .cardText h3 {
  padding: 8px 0;
}
.gridCard .col .gridBox .caption:hover .favorite,
.gridCard .col .gridBox .caption:hover .readmore, .gridCard .col .gridBox .caption:focus .favorite,
.gridCard .col .gridBox .caption:focus .readmore {
  display: block !important;
}
@media screen and (max-width: 1399px) {
  .gridCard .col .gridBox .caption .favorite,
  .gridCard .col .gridBox .caption .readmore {
    font-size: 0.8em;
  }
}
@media screen and (max-width: 767px) {
  .gridCard .col .gridBox .caption {
    margin: 0em 0 0 0;
    float: none;
    width: 100%;
    height: 100%;
    display: block;
  }
  .gridCard .col .gridBox .caption:hover .cardText h3, .gridCard .col .gridBox .caption:hover .cardText p, .gridCard .col .gridBox .caption:focus .cardText h3, .gridCard .col .gridBox .caption:focus .cardText p {
    max-height: inherit;
    overflow: visible;
    height: auto;
  }
}
.gridCard .col .gridBox h3 {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gridCard .col .gridBox h3 a {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gridCard .col .gridBox:hover, .gridCard .col .gridBox:focus {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gridCard .col .gridBox:hover h3 a, .gridCard .col .gridBox:focus h3 a {
  color: #1493df !important;
}
.gridCard .col .gridBox:hover .caption, .gridCard .col .gridBox:focus .caption {
  display: block;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.gridCard .col .gridBox:hover .caption:after, .gridCard .col .gridBox:focus .caption:after {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjY1Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(40%, rgba(0, 0, 0, 0.65)), color-stop(100%, #000000));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 40%, #000000 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 40%, #000000 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 40%, #000000 100%);
}
.gridCard .col .gridBox:hover .caption .favorite, .gridCard .col .gridBox:hover .caption .readmore, .gridCard .col .gridBox:focus .caption .favorite, .gridCard .col .gridBox:focus .caption .readmore {
  display: block;
}
.gridCard .col .gridBox:hover .cardText, .gridCard .col .gridBox:focus .cardText {
  display: block;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gridCard .col .gridBox:hover .cardText p, .gridCard .col .gridBox:focus .cardText p {
  display: block;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.gridCard .col .gridBox:hover .img-container img, .gridCard .col .gridBox:focus .img-container img {
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
.gridCard.galleryMode .col .gridBox .img-container img {
  width: 100%;
  height: 100%;
}
.gridCard.galleryMode .col.variable .img-container .m_video {
  display: none;
}
.gridCard.galleryMode .col.variable .img-container a {
  display: block;
}
@media screen and (max-width: 767px) {
  .gridCard.galleryMode .col.variable .img-container .m_video {
    display: block;
  }
  .gridCard.galleryMode .col.variable .img-container a {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .gridCard .col:nth-child(3n+1) {
    clear: none;
  }
  .gridCard .col:nth-child(odd) {
    clear: both;
  }
}
@media screen and (max-width: 767px) {
  .gridCard .col:nth-child(3n+1), .gridCard .col:nth-child(2n+1) {
    clear: none;
  }
  .gridCard .col:nth-child(odd) {
    clear: both;
  }
}
@media screen and (max-width: 575px) {
  .gridCard .col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    min-height: 1px;
    padding-left: 0px;
    padding-right: 0px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

/* gridBoxMask*/
@-webkit-keyframes gridBoxMask {
  0% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
@keyframes gridBoxMask {
  0% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
.gridBox {
  padding: 1em;
  position: relative;
  background: #fff;
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gridBox:hover, .gridBox:focus {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.gridBox .img-container {
  width: 100%;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  background: #fff;
  /* @include aspect-ratio(1, 1);*/
  /* &:before{
  	display: none;
  	content: "";
  	z-index: 1;
  	position: absolute;
  	top: 0;
  	left: 0;
  	display: block;
  	width: 100%;
  	height: 100%;
  	@include opacity(0);
  	@include transform(scaleY(.1));
  	@include transition(all .3s) ;
  } */
}
.gridBox .img-container img:focus {
  border: 2px solid #1493df;
}
.gridBox .caption {
  text-align: left;
  color: #fff;
  border-top: none;
  z-index: 1;
  cursor: pointer;
  font-weight: normal;
  margin: 0;
  padding: 0px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-animation: gridBoxMask 0.2s ease;
  -webkit-animation: gridBoxMask 0.2s ease;
  animation: gridBoxMask 0.2s ease;
  /* time{ display: none; } */
}
.gridBox .caption:before, .gridBox .caption:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gridBox .caption:before {
  display: none;
  bottom: 0;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
}
.gridBox .caption:after {
  width: 106%;
  height: 106%;
  display: block;
  overflow: hidden;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#00000000', endColorstr='#FF000000');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSI0MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(40%, rgba(0, 0, 0, 0)), color-stop(100%, #000000));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 40%, #000000 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 40%, #000000 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, #000000 100%);
}
.gridBox .caption .cardText {
  color: white;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 20px;
  box-sizing: border-box;
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-shadow: 0 1px 2px #333;
}
.gridBox .caption .cardText time {
  color: white;
  display: block;
  font-size: 0.8em;
}
.gridBox .caption .cardText h3 {
  font-size: 1.25em;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  color: #fff;
  font-weight: 500;
  font-size: 1em;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 0;
  border-top: none;
}
.gridBox .caption .cardText p {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  font-size: .8em;
  overflow: hidden;
  color: #fff;
  display: none;
  font-weight: 400;
  padding: 6px 0;
  line-height: 1.3;
}
@media screen and (max-width: 991px) {
  .gridBox .caption .cardText p {
    height: 60px;
    overflow: hidden;
  }
}
.gridBox .caption .favorite,
.gridBox .caption .readmore {
  font-size: 0.9em;
  display: none;
  z-index: 1;
  font-weight: normal;
  width: auto;
  height: auto;
  position: absolute;
  top: auto;
  bottom: 8px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gridBox .caption .favorite:hover, .gridBox .caption .favorite:focus,
.gridBox .caption .readmore:hover,
.gridBox .caption .readmore:focus {
  color: white !important;
}
.gridBox .caption .favorite {
  left: 16px;
  color: #fff;
}
.gridBox .caption .favorite i {
  color: white;
}
.gridBox .caption .favorite:hover, .gridBox .caption .favorite:focus {
  text-decoration: none;
}
.gridBox .caption .favorite.active i {
  color: #fff100;
}
.gridBox .caption .readmore {
  right: 3px;
}
.gridBox .caption .readmore:after {
  display: none;
}
.gridBox .caption:hover, .gridBox .caption:focus {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gridBox .caption:hover:before, .gridBox .caption:hover:after, .gridBox .caption:focus:before, .gridBox .caption:focus:after {
  display: block;
}
.gridBox .caption:hover:before, .gridBox .caption:focus:before {
  display: block;
}
.gridBox .caption:hover:after, .gridBox .caption:focus:after {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjY1Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(10%, rgba(0, 0, 0, 0.65)), color-stop(100%, #000000));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 10%, #000000 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 10%, #000000 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 10%, #000000 100%);
}
.gridBox .caption:hover .cardText, .gridBox .caption:focus .cardText {
  display: block;
  height: auto;
  margin-bottom: 35px;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.gridBox .caption:hover .cardText:before, .gridBox .caption:focus .cardText:before {
  display: none;
}
.gridBox .caption:hover .cardText time span, .gridBox .caption:focus .cardText time span {
  padding: 5px 10px;
  background: #a12177;
  border-radius: 3px;
}
.gridBox .caption:hover .cardText h3, .gridBox .caption:focus .cardText h3 {
  padding: 8px 0;
}
.gridBox .caption:hover .favorite,
.gridBox .caption:hover .readmore, .gridBox .caption:focus .favorite,
.gridBox .caption:focus .readmore {
  display: block !important;
}
@media screen and (max-width: 1399px) {
  .gridBox .caption .favorite,
  .gridBox .caption .readmore {
    font-size: 0.8em;
  }
}
@media screen and (max-width: 767px) {
  .gridBox .caption {
    margin: 0em 0 0 0;
    float: none;
    width: 100%;
    height: 100%;
    display: block;
  }
  .gridBox .caption:hover .cardText h3, .gridBox .caption:hover .cardText p, .gridBox .caption:focus .cardText h3, .gridBox .caption:focus .cardText p {
    max-height: inherit;
    overflow: visible;
    height: auto;
  }
}
.gridBox .caption:before, .gridBox .caption:after {
  display: none;
}
.gridBox h3 {
  margin: 8px 0;
  padding: 8px 0;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  position: static;
}
.gridBox h3 a {
  color: #2f549c;
}
.gridBox h3 a span {
  display: table;
  font-size: .72em;
  font-weight: normal;
  color: #4e4e4e;
  background: #ececec;
  padding: .25em .75em;
  margin-bottom: .5em;
  border-radius: 4px;
}
.gridBox:hover, .gridBox:focus {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gridBox:hover .img-container, .gridBox:focus .img-container {
  color: #1493df !important;
}
.gridBox:hover .img-container .caption:before, .gridBox:hover .img-container .caption:after, .gridBox:focus .img-container .caption:before, .gridBox:focus .img-container .caption:after {
  display: block;
}
.gridBox:hover .img-container .caption:before, .gridBox:focus .img-container .caption:before {
  bottom: 0;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
}
.gridBox:hover .img-container .caption:after, .gridBox:focus .img-container .caption:after {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIzMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC41Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(30%, rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0.5)), color-stop(100%, #000000));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.5) 50%, #000000 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.5) 50%, #000000 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.5) 50%, #000000 100%);
}
.gridBox:hover .img-container .caption .cardText, .gridBox:focus .img-container .caption .cardText {
  display: block;
  height: auto;
  margin-bottom: 35px;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.gridBox:hover .img-container .caption .cardText:before, .gridBox:focus .img-container .caption .cardText:before {
  display: none;
}
.gridBox:hover .img-container .caption .cardText h3, .gridBox:focus .img-container .caption .cardText h3 {
  margin-bottom: 5px;
  height: inherit;
  overflow: hidden;
  padding: 0;
}
.gridBox:hover .img-container .caption .cardText h3 a, .gridBox:focus .img-container .caption .cardText h3 a {
  color: white !important;
}
.gridBox:hover .img-container .caption .cardText p, .gridBox:focus .img-container .caption .cardText p {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  display: block;
  margin: 0;
}
.gridBox:hover .img-container .caption .favorite, .gridBox:hover .img-container .caption .readmore, .gridBox:focus .img-container .caption .favorite, .gridBox:focus .img-container .caption .readmore {
  display: block !important;
}
.gridBox:hover h3, .gridBox:focus h3 {
  color: #1493df;
}
.gridBox:hover h3 a, .gridBox:focus h3 a {
  color: #2f549c;
}

.galleryMode .gridBox h3 {
  padding: 0;
  height: 54px;
  overflow: hidden;
}
.galleryMode .gridBox .img-container span.icon-play {
  color: black;
  font-size: 2.5em;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  line-height: 100px;
  width: 100px;
  height: 100px;
  display: block;
  z-index: 1;
  background: rgba(255, 255, 255, 0.8);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.galleryMode .gridBox .img-container span.icon-play:before {
  margin-right: 0;
}
.galleryMode .gridBox .img-container a:hover span, .galleryMode .gridBox .img-container a:focus span {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  background: rgba(255, 255, 255, 0.8);
}
.galleryMode .gridBox .caption {
  height: 40px;
  overflow: hidden;
}

/* .galleryMode .gridBox .caption{
	height:auto;
	overflow: visible;
} */
@media screen and (max-width: 767px) {
  .gridCard .gridBox .img-container,
  .cardBox .img-container {
    position: relative;
    overflow: hidden;
    background: #fff;
  }
  .gridCard .gridBox .img-container:before,
  .cardBox .img-container:before {
    display: block;
    content: "";
    padding-top: 75%;
  }
  .gridCard .gridBox .img-container img,
  .cardBox .img-container img {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  }
}
@media screen and (max-width: 575px) {
  .gridBox h3 {
    height: auto;
    overflow: inherit;
  }
}
/*card/grid mode*/
/* Pre-entry*/
.Pre-entry {
  padding: 2.5em 3em;
  margin: 0 auto 4em auto;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  -moz-box-shadow: 0 2px 8px 0 rgba(194, 194, 194, 0.5);
  -webkit-box-shadow: 0 2px 8px 0 rgba(194, 194, 194, 0.5);
  box-shadow: 0 2px 8px 0 rgba(194, 194, 194, 0.5);
}
.Pre-entry a {
  text-decoration: none;
}
.Pre-entry label a:after {
  content: '';
  width: 18px;
  height: 18px;
  margin-left: .4em;
  background: url(../images/basic/icon_link.svg) 50% 50% no-repeat;
  background-size: contain;
  vertical-align: sub;
  display: inline-block;
}
.Pre-entry .form_grp {
  padding: 0em;
  margin: 0em 0em 2em 0;
}
.Pre-entry .form_grp > .col-6 h4 {
  margin-bottom: 0 !important;
  font-weight: bold !important;
  text-align: left;
}
.Pre-entry .form_grp .form_title {
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.65em;
  margin-bottom: 10px;
}
.Pre-entry .form_grp .form_title .help-inline {
  font-weight: normal;
  margin-left: 1em;
}
.Pre-entry .form_grp .form_title .tip {
  display: inline-block;
  font-size: .813em;
  background: #671488;
  border-radius: 5px;
  padding: 0 .75em;
  color: #fff;
  margin-right: 1em;
  margin-left: 10px;
}
.Pre-entry .form_grp .form_content {
  color: gray;
}
.Pre-entry .form_grp .form_content h4 {
  font-size: 1em;
  line-height: normal;
  margin-top: .25em;
  margin-bottom: .25em;
  font-weight: normal;
  color: #000;
}
.Pre-entry .form_grp .form_content .form_title {
  display: block;
  margin-bottom: 5px;
}
.Pre-entry .form_grp .form_content .form_content {
  margin: 0;
}
.Pre-entry .form_grp .form_content .form_grp.has-danger .form_title {
  color: #ba0012;
}
.Pre-entry .form_grp .form_content .form_grp.has-danger .form_content.form-control-danger .col label {
  margin: 0;
  display: block;
  padding: .45em;
}
.Pre-entry .form_grp .form_content .form_grp.has-danger .form_content.form-control-danger .phoneCol {
  padding-left: 0px;
  padding-right: 0px;
}
.Pre-entry .form_grp .form_content .form_grp.has-danger .form_content.form-control-danger .phoneCol .container {
  margin: 0 -15px;
  padding-left: 0px;
  padding-right: 0px;
}
.Pre-entry .form_grp .form_content .form_grp.has-danger .form_content.form-control-danger .phoneCol .container .col {
  margin: 0;
}
.Pre-entry .form_grp .form_content .form_grp.has-danger .form_content.form-control-danger .phoneCol .container .col label {
  padding: 0;
}
.Pre-entry .form_grp .form_content .form_grp.has-danger .form_content.form-control-danger .phoneCol .container .col input {
  margin: 0.3em 0;
}
.Pre-entry .form_grp .form_content .form_grp.has-danger .form_content.form-control-danger .phoneCol .container .col:after {
  color: #ba0012;
}
.Pre-entry .form_grp .form_content .phoneCol .col {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.Pre-entry .form_grp .form_content .phoneCol .col:nth-child(1) {
  position: relative;
  float: left;
  width: 25%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /* @include screen('mobile') {
  	@include make-xs-column(6);
  } */
}
.Pre-entry .form_grp .form_content .phoneCol .col:nth-child(2) {
  position: relative;
  float: left;
  width: 75%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .Pre-entry .form_grp .form_content .phoneCol .col:nth-child(2) {
    float: left;
    width: 75%;
  }
}
@media (min-width: 992px) {
  .Pre-entry .form_grp .form_content .phoneCol .col:nth-child(2) {
    float: left;
    width: 75%;
  }
}
@media (min-width: 1400px) {
  .Pre-entry .form_grp .form_content .phoneCol .col:nth-child(2) {
    float: left;
    width: 75%;
  }
}
.Pre-entry .form_grp .form_content .phoneCol .col:nth-child(2):after {
  display: none;
}
.Pre-entry .form_grp .form_content .phoneCol .col:after {
  display: block;
  position: absolute;
  content: '-';
  top: 6px;
  right: -4px;
  color: #333;
}
.Pre-entry .form_grp .form_content .form_title {
  font-weight: normal;
  font-size: 1em;
}
.Pre-entry .form_grp .form_content .check_grp.form_inline label,
.Pre-entry .form_grp .form_content .radio_grp.form_inline label {
  position: relative;
  min-height: 1px;
  padding-left: 0px;
  padding-right: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.Pre-entry .form_grp .form_content .tip {
  color: #8c8c8c !important;
}
.Pre-entry .form_grp .form_content .tip b {
  color: #222;
}
.Pre-entry .form_grp .form_content.form_inline.check_grp {
  padding: .45em 1em !important;
}
.Pre-entry .form_grp .form_content.form_inline.check_grp .container {
  padding: 0 !important;
}
.Pre-entry .form_grp .form_content .col-6 .container,
.Pre-entry .form_grp .form_content .col-4 .container,
.Pre-entry .form_grp .form_content .col-3 .container,
.Pre-entry .form_grp .form_content .phoneCol .container {
  position: relative;
  min-height: 1px;
  padding-left: 0px;
  padding-right: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 -15px;
}
.Pre-entry .form_grp .form_content .col-6 .container .col,
.Pre-entry .form_grp .form_content .col-4 .container .col,
.Pre-entry .form_grp .form_content .col-3 .container .col,
.Pre-entry .form_grp .form_content .phoneCol .container .col {
  margin-bottom: 0;
}
.Pre-entry .form_grp .form_content .col-6 .container .col .form_grp,
.Pre-entry .form_grp .form_content .col-4 .container .col .form_grp,
.Pre-entry .form_grp .form_content .col-3 .container .col .form_grp,
.Pre-entry .form_grp .form_content .phoneCol .container .col .form_grp {
  margin-bottom: 1em !important;
}
.Pre-entry .form_grp .form_content .phoneCol .container {
  margin: 0 -15px;
}
.Pre-entry .form_grp.has-danger .form_title {
  color: #ba0012;
}
.Pre-entry .form_grp.has-danger .form_content.form-control-danger .col {
  padding-top: 0;
  padding-bottom: 0;
}
.Pre-entry .form_grp.has-danger .form_content.form-control-danger .col label {
  margin: 0;
  display: inline-block;
}
.Pre-entry.form-type2 .form_grp .form_content .col-6 .container, .Pre-entry.form-type2 .form_grp .form_content .col-4 .container, .Pre-entry.form-type2 .form_grp .form_content .col-3 .container, .Pre-entry.form-type2 .form_grp .form_content .col-4-8 .container, .Pre-entry.form-type2 .form_grp .form_content .col-8-4 .container, .Pre-entry.form-type2 .form_grp .form_content .phoneCol .container {
  display: flex;
  flex-flow: row wrap;
}
.Pre-entry.form-type2 .form_grp .form_content .col-6 .container .col .form_grp, .Pre-entry.form-type2 .form_grp .form_content .col-4 .container .col .form_grp, .Pre-entry.form-type2 .form_grp .form_content .col-3 .container .col .form_grp, .Pre-entry.form-type2 .form_grp .form_content .col-4-8 .container .col .form_grp, .Pre-entry.form-type2 .form_grp .form_content .col-8-4 .container .col .form_grp, .Pre-entry.form-type2 .form_grp .form_content .phoneCol .container .col .form_grp {
  flex: 1 1 100%;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 991px) {
  .Pre-entry.form-type2 .form_grp .form_content .col-6 .container .col .form_grp, .Pre-entry.form-type2 .form_grp .form_content .col-4 .container .col .form_grp, .Pre-entry.form-type2 .form_grp .form_content .col-3 .container .col .form_grp, .Pre-entry.form-type2 .form_grp .form_content .col-4-8 .container .col .form_grp, .Pre-entry.form-type2 .form_grp .form_content .col-8-4 .container .col .form_grp, .Pre-entry.form-type2 .form_grp .form_content .phoneCol .container .col .form_grp {
    margin-bottom: 6px !important;
  }
}
@media screen and (max-width: 767px) {
  .Pre-entry.form-type2 .form_grp .form_content .col-6 .container, .Pre-entry.form-type2 .form_grp .form_content .col-4 .container, .Pre-entry.form-type2 .form_grp .form_content .col-3 .container, .Pre-entry.form-type2 .form_grp .form_content .col-4-8 .container, .Pre-entry.form-type2 .form_grp .form_content .col-8-4 .container, .Pre-entry.form-type2 .form_grp .form_content .phoneCol .container {
    margin: 0;
  }
  .Pre-entry.form-type2 .form_grp .form_content .col-6 .container .col, .Pre-entry.form-type2 .form_grp .form_content .col-4 .container .col, .Pre-entry.form-type2 .form_grp .form_content .col-3 .container .col, .Pre-entry.form-type2 .form_grp .form_content .col-4-8 .container .col, .Pre-entry.form-type2 .form_grp .form_content .col-8-4 .container .col, .Pre-entry.form-type2 .form_grp .form_content .phoneCol .container .col {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.Pre-entry.form-type2 .form_grp .form_content .phoneCol .col:nth-child(1) {
  position: relative;
  float: left;
  width: 50%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .Pre-entry.form-type2 .form_grp .form_content .phoneCol .col:nth-child(1) {
    float: left;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .Pre-entry.form-type2 .form_grp .form_content .phoneCol .col:nth-child(1) {
    float: left;
    width: 25%;
  }
}
@media (min-width: 1400px) {
  .Pre-entry.form-type2 .form_grp .form_content .phoneCol .col:nth-child(1) {
    float: left;
    width: 25%;
  }
}
.Pre-entry.form-type2 .form_grp .form_content .phoneCol .col:nth-child(2) {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .Pre-entry.form-type2 .form_grp .form_content .phoneCol .col:nth-child(2) {
    float: left;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .Pre-entry.form-type2 .form_grp .form_content .phoneCol .col:nth-child(2) {
    float: left;
    width: 75%;
  }
}
@media (min-width: 1400px) {
  .Pre-entry.form-type2 .form_grp .form_content .phoneCol .col:nth-child(2) {
    float: left;
    width: 75%;
  }
}
.Pre-entry.form-type2 .form_grp .form_content .phoneCol .col:nth-child(2):before {
  display: none;
}
.Pre-entry.form-type2 .form_grp .form_content .col-6 .col input, .Pre-entry.form-type2 .form_grp .form_content .col-4 .col input, .Pre-entry.form-type2 .form_grp .form_content .col-3 .col input, .Pre-entry.form-type2 .form_grp .form_content .col-4-8 .col input, .Pre-entry.form-type2 .form_grp .form_content .col-8-4 .col input {
  margin-top: 27px;
}
.Pre-entry.form-type2 .form_grp .form_content .col-6 .col input + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-4 .col input + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-3 .col input + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-4-8 .col input + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-8-4 .col input + span.title {
  top: 47px;
}
.Pre-entry.form-type2 .form_grp .form_content .col-6 .col input:focus + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-4 .col input:focus + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-3 .col input:focus + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-4-8 .col input:focus + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-8-4 .col input:focus + span.title {
  top: 37px;
}
.Pre-entry.form-type2 .form_grp .form_content .col-6 input[value] + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-6 input[placeholder] + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-4 input[value] + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-4 input[placeholder] + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-3 input[value] + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-3 input[placeholder] + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-4-8 input[value] + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-4-8 input[placeholder] + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-8-4 input[value] + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-8-4 input[placeholder] + span.title {
  top: 37px;
}
.Pre-entry.form-type2 .form_grp .form_content .col-6.input-only input, .Pre-entry.form-type2 .form_grp .form_content .col-4.input-only input, .Pre-entry.form-type2 .form_grp .form_content .col-3.input-only input, .Pre-entry.form-type2 .form_grp .form_content .col-4-8.input-only input, .Pre-entry.form-type2 .form_grp .form_content .col-8-4.input-only input {
  margin-top: 0;
}
.Pre-entry.form-type2 .form_grp .form_content .col-6.input-only input + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-4.input-only input + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-3.input-only input + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-4-8.input-only input + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-8-4.input-only input + span.title {
  top: 20px;
}
.Pre-entry.form-type2 .form_grp .form_content .col-6.input-only input:focus + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-4.input-only input:focus + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-3.input-only input:focus + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-4-8.input-only input:focus + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-8-4.input-only input:focus + span.title {
  top: 10px;
}
.Pre-entry.form-type2 .form_grp .form_content .col-6.input-only input[value] + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-6.input-only input[placeholder] + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-4.input-only input[value] + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-4.input-only input[placeholder] + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-3.input-only input[value] + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-3.input-only input[placeholder] + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-4-8.input-only input[value] + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-4-8.input-only input[placeholder] + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-8-4.input-only input[value] + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-8-4.input-only input[placeholder] + span.title {
  top: 10px;
}
@media screen and (max-width: 767px) {
  .Pre-entry.form-type2 .form_grp .form_content .col-6 .col input, .Pre-entry.form-type2 .form_grp .form_content .col-4 .col input, .Pre-entry.form-type2 .form_grp .form_content .col-3 .col input, .Pre-entry.form-type2 .form_grp .form_content .col-4-8 .col input, .Pre-entry.form-type2 .form_grp .form_content .col-8-4 .col input {
    margin-top: 0;
  }
  .Pre-entry.form-type2 .form_grp .form_content .col-6 .col input + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-4 .col input + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-3 .col input + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-4-8 .col input + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-8-4 .col input + span.title {
    top: 20px;
  }
  .Pre-entry.form-type2 .form_grp .form_content .col-6 .col input:focus + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-4 .col input:focus + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-3 .col input:focus + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-4-8 .col input:focus + span.title, .Pre-entry.form-type2 .form_grp .form_content .col-8-4 .col input:focus + span.title {
    top: 10px;
  }
}
@media screen and (max-width: 991px) {
  .Pre-entry {
    padding: 1em;
  }
}
@media screen and (max-width: 767px) {
  .Pre-entry {
    padding: 1.5em 2em;
  }
  .Pre-entry .form_grp .form_title {
    padding: 0;
  }
  .Pre-entry .form_grp .form_content {
    padding: 0em;
  }
  .Pre-entry .form_grp .form_content .col-6 .container,
  .Pre-entry .form_grp .form_content .col-4 .container,
  .Pre-entry .form_grp .form_content .col-3 .container,
  .Pre-entry .form_grp .form_content .phoneCol .container {
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 0;
  }
  .Pre-entry .form_grp .form_content .col-6 .container .col,
  .Pre-entry .form_grp .form_content .col-4 .container .col,
  .Pre-entry .form_grp .form_content .col-3 .container .col,
  .Pre-entry .form_grp .form_content .phoneCol .container .col {
    padding: 5px 0;
  }
  .Pre-entry .form_grp .form_content .col-6 .container .col label,
  .Pre-entry .form_grp .form_content .col-4 .container .col label,
  .Pre-entry .form_grp .form_content .col-3 .container .col label,
  .Pre-entry .form_grp .form_content .phoneCol .container .col label {
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .Pre-entry .form_grp .form_content .phoneCol .col:nth-child(1) {
    position: relative;
    float: left;
    width: 41.66667%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    padding: 0 1em 0 0;
  }
  .Pre-entry .form_grp .form_content .phoneCol .col:nth-child(2) {
    position: relative;
    float: left;
    width: 58.33333%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    padding: 0 0 0 1em;
  }
  .Pre-entry .form_grp.has-danger .form-control-danger .col-6 .container,
  .Pre-entry .form_grp.has-danger .form-control-danger .col-4 .container,
  .Pre-entry .form_grp.has-danger .form-control-danger .col-3 .container,
  .Pre-entry .form_grp.has-danger .form-control-danger .phoneCol .container {
    margin: 0 0;
  }
  .Pre-entry .form_grp.has-danger .form-control-danger .col-6 .container .col,
  .Pre-entry .form_grp.has-danger .form-control-danger .col-4 .container .col,
  .Pre-entry .form_grp.has-danger .form-control-danger .col-3 .container .col,
  .Pre-entry .form_grp.has-danger .form-control-danger .phoneCol .container .col {
    padding: 5px 0;
  }
  .Pre-entry .form_grp.has-danger .form-control-danger .col-6 .container .col label,
  .Pre-entry .form_grp.has-danger .form-control-danger .col-4 .container .col label,
  .Pre-entry .form_grp.has-danger .form-control-danger .col-3 .container .col label,
  .Pre-entry .form_grp.has-danger .form-control-danger .phoneCol .container .col label {
    position: relative;
    min-height: 1px;
    padding-left: 0;
    padding-right: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .Pre-entry .form_grp.has-danger .form-control-danger .phoneCol .container {
    margin: 0 0 !important;
    padding: 0;
  }
  .Pre-entry .form_grp.has-danger .form-control-danger .phoneCol .container .col:nth-child(1) {
    position: relative;
    float: left;
    width: 41.66667%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    padding: 0 1em 0 0;
  }
  .Pre-entry .form_grp.has-danger .form-control-danger .phoneCol .container .col:nth-child(2) {
    position: relative;
    float: left;
    width: 58.33333%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    padding: 0 0 0 1em;
  }
}

span.number {
  margin-right: 10px;
}

.formQuest .search {
  display: block !important;
  min-width: 100%;
  max-width: 70%;
  float: none;
  margin: 0 auto;
  text-align: center;
}
.formQuest .search .btn_grp .btn-search {
  font-size: 0;
  width: 60px;
  background: url("../images/icon/icon_search2.png") 50% 50% no-repeat, #1493df;
  background-size: 50%;
}
.formQuest .search .btn_grp .btn-search:hover, .formQuest .search .btn_grp .btn-search:focus {
  background: url("../images/icon/icon_search2.png") 50% 50% no-repeat, #1074b0;
  background-size: 50%;
}
.formQuest .btn_grp .btn-search {
  position: relative;
  box-shadow: none;
  padding: 0.8em 3em;
  min-width: 200px;
  display: inline-block;
  background: #1493df;
  font-size: 1.2em;
  border: 1px solid #1493df;
  color: #FFF;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.formQuest .btn_grp .btn-search:hover, .formQuest .btn_grp .btn-search:focus {
  text-decoration: none;
  background: #1074b0;
  border: 1px solid #1074b0;
}
.formQuest .btn_grp .btn-search:before {
  position: absolute;
  content: '';
  display: block;
  top: 12px;
  bottom: 0;
  left: 1em;
  width: 32px;
  height: 32px;
  background: url("../images/icon/icon_search.png") no-repeat 0 center;
  background-size: 80%;
  -webkit-filter: brightness(10);
  filter: brightness(10);
}
.formQuest h3 {
  margin: 1em auto;
  text-align: center;
  position: relative;
}
.formQuest h3:before, .formQuest h3:after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  right: 0;
}
.formQuest h3:before {
  z-index: -1;
  height: 50px;
  width: 35%;
  margin: auto;
  background: white;
}
.formQuest h3:after {
  z-index: -2;
  top: 40%;
  height: 1px;
  width: 100%;
  background: #CCC;
}
.formQuest .form_grp {
  margin-bottom: 2em;
}
.formQuest .form_grp .form_title {
  padding-bottom: .75em;
  padding-left: 2.5em;
  margin-bottom: 1em;
  border-bottom: 2px solid #333;
  line-height: 1.5;
}
.formQuest .form_grp .form_title span.number {
  margin-left: -2.5em;
  display: block;
  float: left;
  width: 2em;
}
.formQuest .form_grp .form_content.form_vertical label {
  display: block;
  margin-bottom: .5em;
}
.formQuest .form_grp .form_content .col-6.interestPD .col, .formQuest .form_grp .form_content .col-4.interestPD .col, .formQuest .form_grp .form_content .col-3.interestPD .col {
  margin-bottom: 5px !important;
}
.formQuest .form_grp.has-danger .form-control-danger label {
  margin-bottom: inherit !important;
}
.formQuest .form_grp.has-danger .radio_grp {
  padding-top: .6em;
  padding-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .formQuest .btn_grp .btn-search {
    padding: 0.8em 0em;
    min-width: inherit;
    display: block;
  }
}
@media screen and (max-width: 575px) {
  .formQuest h3:before {
    width: 70%;
  }
}

.col-6.interestPD .container,
.col-4.interestPD .container,
.col-3.interestPD .container {
  position: relative;
  min-height: 1px;
  padding-left: 30px;
  padding-right: 30px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-bottom: 2em;
}
.col-6.interestPD .col,
.col-4.interestPD .col,
.col-3.interestPD .col {
  color: #999999;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 5px !important;
}
.col-6.interestPD .col p,
.col-4.interestPD .col p,
.col-3.interestPD .col p {
  margin: 0;
  padding: 5px 5px;
  position: relative;
  background: #f2f2f2;
}
.col-6.interestPD .col p span,
.col-4.interestPD .col p span,
.col-3.interestPD .col p span {
  white-space: nowrap;
  width: 70%;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  text-overflow: ellipsis;
}
.col-6.interestPD .col p .num,
.col-4.interestPD .col p .num,
.col-3.interestPD .col p .num {
  margin: 0px 15px 0 5px !important;
  color: #333;
  display: inline-block !important;
  font-weight: bold;
}
.col-6.interestPD .col p .num input[type="checkbox"],
.col-4.interestPD .col p .num input[type="checkbox"],
.col-3.interestPD .col p .num input[type="checkbox"] {
  margin-left: 5px;
}
.col-6.interestPD .col p .btn-close,
.col-4.interestPD .col p .btn-close,
.col-3.interestPD .col p .btn-close {
  display: none;
  position: absolute;
  top: 5px;
  right: 5px;
  margin-right: 5px;
  color: #333;
  font-size: 1.4em;
}
.col-6.interestPD .col p .btn-close:hover, .col-6.interestPD .col p .btn-close:focus,
.col-4.interestPD .col p .btn-close:hover,
.col-4.interestPD .col p .btn-close:focus,
.col-3.interestPD .col p .btn-close:hover,
.col-3.interestPD .col p .btn-close:focus {
  text-decoration: none;
}
.col-6.interestPD .col:hover, .col-6.interestPD .col:focus,
.col-4.interestPD .col:hover,
.col-4.interestPD .col:focus,
.col-3.interestPD .col:hover,
.col-3.interestPD .col:focus {
  text-decoration: none;
}
.col-6.interestPD .col:hover p, .col-6.interestPD .col:focus p,
.col-4.interestPD .col:hover p,
.col-4.interestPD .col:focus p,
.col-3.interestPD .col:hover p,
.col-3.interestPD .col:focus p {
  color: #333;
  background: #b3b3b3;
}
.col-6.interestPD .col:hover p .btn-close, .col-6.interestPD .col:focus p .btn-close,
.col-4.interestPD .col:hover p .btn-close,
.col-4.interestPD .col:focus p .btn-close,
.col-3.interestPD .col:hover p .btn-close,
.col-3.interestPD .col:focus p .btn-close {
  display: block;
}

.badge-preview {
  padding: 3em 0 0 0;
  margin: 0 0 1em 0;
  text-align: center;
  border: 1px solid #CCC;
}
.badge-preview .box_grp {
  display: inline-block !important;
  position: relative;
  display: block;
  text-align: left;
  width: 60%;
  padding-bottom: 2em;
}
.badge-preview .box_grp img {
  margin-bottom: 2em !important;
}
.badge-preview .box_grp img,
.badge-preview .box_grp .img-container img {
  margin: auto;
  display: block;
}
.badge-preview .box_grp .box_title {
  color: #333;
  padding: .35em 0;
  margin: 0;
}
.badge-preview .box_grp .box_title:before, .badge-preview .box_grp .box_title:after {
  display: none;
}
.badge-preview .box_grp .box_content {
  padding: 0px;
  margin: 0 0 1em 0;
}
.badge-preview .box_grp .box_content .text-sm {
  color: #999999;
}
.badge-preview .box_grp .box_content p {
  font-size: 1.125em;
  color: #333;
  white-space: nowrap;
  margin: 0;
  padding: 8px;
  display: block;
  overflow: hidden;
  vertical-align: middle;
  text-overflow: ellipsis;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #CCC;
}
.badge-preview .box_grp .box_content .barcode,
.badge-preview .box_grp .box_content img.country {
  margin: .5em auto;
  display: block;
}
.badge-preview .box_grp .box_content .country {
  color: #333;
  text-align: center;
}
.badge-preview .box_grp .unchangeable {
  overflow: hidden;
  *zoom: 1;
}
.badge-preview .box_grp .unchangeable .box_title {
  float: left;
}
.badge-preview .box_grp .unchangeable .box_content {
  width: 100%;
}
.badge-preview .box_grp .unchangeable .box_content p {
  padding: 0 0;
  border: 1px solid transparent;
  line-height: 1.8;
}
.badge-preview .box_grp .barcode {
  text-align: center;
  padding: 1em 0;
}
.badge-preview .box_grp .barcode .country {
  line-height: 2;
  font-size: 1.25em;
}
.badge-preview .box_grp .barcode img {
  height: 60px;
}
.badge-preview .box_grp .watermarking {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
}
.badge-preview .box_content {
  box-shadow: none !important;
  border: 0 !important;
}
@media screen and (max-width: 767px) {
  .badge-preview .box_grp {
    width: 90%;
  }
}

.confirmText {
  position: relative;
  display: block;
  text-align: left;
  width: 70%;
  margin: 0 auto;
}
.confirmText .show-banner {
  margin: 0 auto;
  display: block;
  text-align: center;
  margin-bottom: 10px;
}
.confirmText p {
  margin: 0 0 5px;
  line-height: 1.6;
}
.confirmText p.text {
  color: #666666;
}
.confirmText ul {
  margin-bottom: 1em;
}
.confirmText table.table_none {
  border: none;
}
.confirmText table.table_none td {
  text-align: center;
  border: none;
}
.confirmText table.table_none td .img-container {
  position: relative;
  overflow: hidden;
  background: #fff;
  height: inherit;
  background: #FFF;
}
.confirmText table.table_none td .img-container:before {
  display: block;
  content: "";
  padding-top: 75%;
}
.confirmText table.table_none td .img-container img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .confirmText {
    width: 100%;
  }
}

.iframBox {
  background: white;
  height: 100%;
}
.iframBox h2 {
  color: white;
  margin: 0;
  padding: 15px 5px;
  background: black;
}
.iframBox form.form_grid {
  height: 400px;
  overflow-y: auto;
}
.iframBox form .col-6 .container .col,
.iframBox form .col-12 .container .col {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.iframBox .search {
  margin: 10px auto;
}
.iframBox .search .form_grp {
  width: 60%;
}
.iframBox .search .form_grp input {
  width: 100% !important;
}
.iframBox .search .btn_grp .btn-search {
  min-width: auto !important;
  -moz-border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0;
  border-radius: 0 4px 4px 0;
}
.iframBox .search .btn_grp .btn-search:before {
  display: none !important;
}
.iframBox .search .btn_grp .btn-search:hover, .iframBox .search .btn_grp .btn-search:focus {
  color: white;
}
.iframBox .form_content {
  padding: 1em 0;
}

.face_id .Foto {
  height: 320px;
  text-align: center;
}
.face_id .Foto img {
  height: auto;
  max-height: 100%;
}
@media screen and (max-width: 991px) {
  .face_id .col:last-child .form_content {
    text-align: center;
  }
  .face_id .col:last-child .form_content .upload_customize {
    text-align: left;
  }
}

/*pre 預登*/
.ticketBox {
  margin: 1em 3em;
}

.ticketInfo {
  margin-bottom: 2em;
  margin-top: 1em;
}
.ticketInfo .col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /*576px  width:100%*/
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  background-position: 8px 6px !important;
  background-repeat: no-repeat !important;
  background-size: 56px !important;
  padding: 10px 10px 10px 80px !important;
}
@media (min-width: 768px) {
  .ticketInfo .col {
    float: left;
    width: 33.33333%;
  }
}
.ticketInfo .col:nth-child(1) {
  background: url("../images/icon/icon-ticket1.png");
}
.ticketInfo .col:nth-child(2) {
  background: url("../images/icon/icon-ticket2.png");
}
.ticketInfo .col:nth-child(3) {
  background: url("../images/icon/icon-ticket3.png");
}
.ticketInfo .col:after {
  position: absolute;
  content: "";
  top: 0;
  right: 10px;
  display: block;
  width: 1px;
  height: 85%;
  background: #a9a9a9;
}
.ticketInfo .col:last-child:after {
  display: none;
}
.ticketInfo .col .form_grp {
  margin: 0;
  padding-right: 1em;
}
.ticketInfo .col .form_grp .form_title {
  padding: 0;
}
.ticketInfo .col .form_grp .form_content {
  color: #1493df !important;
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
}
.ticketInfo .col .form_grp .form_content span {
  display: inline-block;
  margin: auto;
  text-align: center;
}
.ticketInfo .col .form_grp .form_content h3 {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  color: #1493df;
}
.ticketInfo .col .form_grp .form_content h3 a {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  color: #1493df;
}
.ticketInfo .col h3 {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .ticketInfo .col:after {
    display: none;
  }
}

.ticketViewList .col h3 {
  margin-left: 2.5em !important;
}
.ticketViewList .col > label.block {
  margin: 0 3em 0.5em 3em !important;
}
.ticketViewList .col:nth-child(1) p {
  margin-bottom: 0;
}
.ticketViewList .col:nth-child(3) .col-6 .form_grp {
  overflow: hidden;
  height: 90px;
}
.ticketViewList .col .col-6 .col {
  height: 120px;
}
.ticketViewList > .col {
  font-size: 1em;
  padding: 1em 0;
  position: relative;
  margin-bottom: 2em !important;
  background-color: #f2f2f2 !important;
  background-position: right 0 !important;
  background-repeat: no-repeat !important;
  background-size: 170px !important;
}
.ticketViewList > .col .container {
  background: transparent;
  padding: 0 30px;
}
.ticketViewList > .col.form_vertical .form_grp {
  margin: 0 3em 1em 3em;
}
.ticketViewList > .col .No {
  position: absolute;
  overflow: hidden;
  display: block;
  top: -5px;
  left: -5px;
  z-index: 0;
  color: white;
  font-size: 1.5em;
  padding: 8px 0px 0 10px;
  font-style: italic;
  width: 60px;
  height: 60px;
}
.ticketViewList > .col .No:before {
  position: absolute;
  content: "";
  z-index: -1;
  font-size: 1.2em;
  display: block;
  width: 75px;
  height: 60px;
  top: 0;
  left: -44px;
  -moz-transform: skew(-45deg);
  -ms-transform: skew(-45deg);
  -webkit-transform: skew(-45deg);
  transform: skew(-45deg);
  -moz-box-shadow: 5px 5px 0px 0px rgba(51, 51, 51, 0.2);
  -webkit-box-shadow: 5px 5px 0px 0px rgba(51, 51, 51, 0.2);
  box-shadow: 5px 5px 0px 0px rgba(51, 51, 51, 0.2);
  background: rgba(20, 147, 223, 0.2);
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF3257AF', endColorstr='#FF690E86');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzMyNTdhZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzY5MGU4NiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #3257af), color-stop(100%, #690e86));
  background-image: -moz-linear-gradient(top, #3257af 0%, #690e86 100%);
  background-image: -webkit-linear-gradient(top, #3257af 0%, #690e86 100%);
  background-image: linear-gradient(to bottom, #3257af 0%, #690e86 100%);
}
.ticketViewList > .col h3 {
  font-size: 1.15em;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  margin: 1em 2.5em 1em 0;
}
.ticketViewList > .col .block {
  display: block;
  text-align: left;
  font-weight: bold;
}
.ticketViewList > .col .agreeText {
  height: 400px;
  display: block;
  overflow: auto;
  padding: 10px;
  margin: 0 3em 1em 3em;
  border: 1px solid #CCC;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  color: #4d4d4d;
  background: #FFF;
}
.ticketViewList > .col .form_grid {
  overflow: hidden;
}
.ticketViewList > .col .form_grp .form_title {
  padding-bottom: 6px;
}
.ticketViewList > .col .form_grp .form_content {
  position: relative;
  min-height: 1px;
  padding-left: 0px;
  padding-right: 0px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.ticketViewList > .col .form_grp .form_content {
  line-height: 2;
}
.ticketViewList > .col .form_grp .form_content .radio label {
  font-weight: bold;
}
> .ticketViewList > .col:nth-child(1), .ticketViewList > .col:nth-child(3) {
  background: url("../images/icon/ticketview1.png");
}
> .ticketViewList > .col:nth-child(2) {
  background: url("../images/icon/ticketview2.png");
}
> .ticketViewList > .col:nth-child(3) {
  background: url("../images/icon/ticketview3.png");
}
@media screen and (max-width: 1399px) {
  .ticketViewList .col .col-6 > .form_grp label.form_title {
    text-align: left;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    min-height: 1px;
    padding-left: 0px;
    padding-right: 0px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1399px) and (min-width: 768px) {
  .ticketViewList .col .col-6 > .form_grp label.form_title {
    float: left;
    width: 100%;
  }
}
@media screen and (max-width: 1399px) {
  .ticketViewList .col .col-6 > .form_grp > .form_content {
    width: 100% !important;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    min-height: 1px;
    padding-left: 0px;
    padding-right: 0px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1399px) and (min-width: 768px) {
  .ticketViewList .col .col-6 > .form_grp > .form_content {
    float: left;
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .ticketViewList .col .container {
    padding: 0 0;
  }
  .ticketViewList .col .agreeText {
    margin: 0 0 1em 0 !important;
  }
  .ticketViewList .col h3 {
    margin-left: 0 !important;
    text-align: center;
    margin-bottom: -1em 0 1em 1em !important;
  }
  .ticketViewList .col > label.block {
    margin: 0 0 0.5em 0 !important;
  }
  .ticketViewList .col.form_vertical .form_grp {
    margin: 0 0 0.5em 0 !important;
  }
  .ticketViewList .col > .form_grp label.form_title {
    text-align: left;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    min-height: 1px;
    padding-left: 0px;
    padding-right: 0px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .ticketViewList .col > .form_grp label.form_title {
    float: left;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .ticketViewList .col > .form_grp > .form_content {
    width: 100% !important;
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    min-height: 1px;
    padding-left: 0px;
    padding-right: 0px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .ticketViewList .col > .form_grp > .form_content {
    float: left;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .ticketViewList > .col {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767px) {
  .ticketViewList .col .col-6 .col {
    height: auto;
  }
}

.keyCode {
  width: 60%;
  margin: 4em auto 4em auto;
  padding: 1em;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  -moz-box-shadow: 0 2px 8px 0 rgba(194, 194, 194, 0.5);
  -webkit-box-shadow: 0 2px 8px 0 rgba(194, 194, 194, 0.5);
  box-shadow: 0 2px 8px 0 rgba(194, 194, 194, 0.5);
}
.keyCode .col .form_grp .form_title {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .keyCode {
    width: 100%;
    padding: 1em 0;
  }
}

/*購票*/
/* 外掛*/
/*  slick燈箱*/
.lightbox_slider {
  background: #fff;
  padding: 30px 30px 50px;
  clear: both;
  /* dots*/
  /*Arrows*/
}
.lightbox_slider h3 {
  font-size: 1.5em;
  padding: 12px 0px 15px 0px;
  margin: 0.5em 0px 1.2em;
}
.lightbox_slider .imgOuter {
  margin: 0px 15px;
  position: relative;
  overflow: hidden;
  background: #fff;
  height: 200px;
  overflow: hidden;
}
.lightbox_slider .imgOuter:before {
  display: block;
  content: "";
  padding-top: 75%;
}
.lightbox_slider .imgOuter img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.lightbox_slider .imgOuter img {
  vertical-align: middle;
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  display: inline-block;
  position: absolute;
  left: 0 !important;
  top: 0 !important;
  -o-object-fit: contain;
  object-fit: contain;
}
.lightbox_slider .infotxt {
  margin: 0px 10px 0px 20px;
  padding: 0px;
  display: none;
}
.lightbox_slider .slick-dots {
  bottom: -30px !important;
}
@media screen and (max-width: 767px) {
  .lightbox_slider .slick-dots {
    bottom: -40px !important;
    padding: 0;
  }
}
.lightbox_slider .slick-prev,
.lightbox_slider .slick-next {
  top: 50%;
  width: 50px;
  height: 50px;
  transition: .3s ease-out;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.lightbox_slider .slick-prev {
  left: -30px;
  background: url(../vendor/slick/icon_arrow_left.png) center center no-repeat RGBA(0, 0, 0, 0.5);
  background-size: 80%;
}
.lightbox_slider .slick-next {
  right: -30px;
  background: url(../vendor/slick/icon_arrow_right.png) center center no-repeat RGBA(0, 0, 0, 0.5);
  background-size: 80%;
}
.lightbox_slider .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 10px;
}
.lightbox_slider a {
  color: #555;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lightbox_slider a:hover, .lightbox_slider a:focus {
  -moz-box-shadow: 0px 0px 0px 1px #1493df inset;
  -webkit-box-shadow: 0px 0px 0px 1px #1493df inset;
  box-shadow: 0px 0px 0px 1px #1493df inset;
}

/*  slick-lightbox  */
.slick-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 9999999999999;
  width: 100%;
  height: 100%;
  background: black;
  transition: opacity 0.5s ease;
}
.slick-lightbox .slick-loading .slick-list {
  background-color: transparent;
}
.slick-lightbox .slick-prev {
  left: 5px;
  background: url(../vendor/slick/icon_arrow_left.png) center center no-repeat;
  background-size: 80%;
  z-index: 9;
}
.slick-lightbox .slick-next {
  right: 5px;
  background: url(../vendor/slick/icon_arrow_right.png) center center no-repeat;
  background-size: 80%;
  z-index: 9;
}

.slick-lightbox-hide {
  opacity: 0;
}
.slick-lightbox-hide.slick-lightbox-ie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.slick-lightbox-hide-init {
  position: absolute;
  top: -9999px;
  opacity: 0;
}
.slick-lightbox-hide-init.slick-lightbox-ie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.slick-lightbox-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slick-lightbox-slick-item {
  text-align: center;
  overflow: hidden;
}
.slick-lightbox-slick-item:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.slick-caption-bottom .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.slick-caption-dynamic .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  display: block;
  text-align: center;
}

.slick-lightbox-slick-item-inner {
  display: inline-block;
  vertical-align: middle;
  max-width: 90%;
  max-height: 90%;
}

.slick-lightbox-slick-img {
  margin: 0 auto 1em;
  display: block;
  max-width: 90%;
  max-height: 90%;
}

.slick-lightbox-slick-caption {
  margin: 20px 0 0;
  color: white;
  overflow: hidden;
  *zoom: 1;
}

.slick-lightbox-close {
  position: fixed;
  top: 10px;
  right: 10px;
  display: block;
  height: 45px;
  width: 45px;
  line-height: 0;
  font-size: 0em;
  cursor: pointer;
  background: transparent;
  color: transparent;
  padding: 0;
  border: none;
  min-width: auto;
}
.slick-lightbox-close:focus {
  outline: none;
}
.slick-lightbox-close:before {
  content: "";
  height: 6px;
  width: 32px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 18px;
  background: #DDD;
  left: 6px;
  transition: .3s all ease-out;
}
.slick-lightbox-close:after {
  content: "";
  height: 6px;
  width: 32px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 18px;
  background: #DDD;
  left: 6px;
  transition: .3s all ease-out;
}
.slick-lightbox-close:hover, .slick-lightbox-close:focus {
  background: none;
  margin-top: 0;
  border: none;
}
.slick-lightbox-close:hover:before, .slick-lightbox-close:hover:after, .slick-lightbox-close:focus:before, .slick-lightbox-close:focus:after {
  background: #FFF;
}

/*  同步輪播*/
.Syncing_slider {
  overflow: hidden;
  *zoom: 1;
  margin: 2em 0;
}
.Syncing_slider h3 {
  font-size: 1.5em;
  padding: 12px 0px 15px 0px;
  margin: 0.5em 0px 1.2em;
}
.Syncing_slider .imgOuter {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.Syncing_slider .imgOuter:before {
  display: block;
  content: "";
  padding-top: 75%;
}
.Syncing_slider .imgOuter img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.Syncing_slider .imgOuter p {
  position: absolute;
  background: RGBA(0, 0, 0, 0.4);
  text-align: center;
  color: #FFF;
  padding: .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /* values are: clip, ellipsis, or a string*/
  bottom: 0px;
  width: 100%;
  height: 4em;
  line-height: 3em;
  margin: 0px;
}
.Syncing_slider .slick-next {
  background: url(../vendor/slick/icon_arrow_right.png) center center no-repeat;
  background-size: 80%;
}
.Syncing_slider .slick-prev {
  background: url(../vendor/slick/icon_arrow_left.png) center center no-repeat;
  background-size: 80%;
}
.Syncing_slider .Slider-for {
  position: relative;
}
.Syncing_slider .Slider-for .imgOuter {
  max-height: 400px;
}
.Syncing_slider .Slider-nav {
  /*正在動作的縮圖*/
  position: relative;
}
.Syncing_slider .Slider-nav .imgOuter p {
  display: none;
}
.Syncing_slider .Slider-nav .slick-slide.slick-current {
  opacity: 1;
}
.Syncing_slider .Slider-nav .imgOuter {
  max-height: 200px;
}
@media screen and (max-width: 767px) {
  .Syncing_slider .Slider-nav .imgOuter {
    max-height: 150px;
  }
}
.Syncing_slider .slick-dots {
  display: none !important;
}

.mp_slider {
  padding-bottom: 5em;
  overflow: hidden;
}
.mp_slider h2 {
  font-size: 2.125em;
  letter-spacing: 3px;
}
.mp_slider .slick-prev,
.mp_slider .slick-next {
  top: auto !important;
  bottom: 0;
  border: solid 2px #222;
  z-index: 10;
  opacity: .5;
}
.mp_slider .slick-prev:hover, .mp_slider .slick-prev:focus,
.mp_slider .slick-next:hover,
.mp_slider .slick-next:focus {
  opacity: 1;
}
.mp_slider .slick-prev {
  left: 15px;
  background: url(../vendor/slick/icon_arrow_left_black.png) center center no-repeat;
  background-size: 18px;
}
.mp_slider .slick-next {
  right: auto;
  left: 70px;
  background: url(../vendor/slick/icon_arrow_right_black.png) center center no-repeat;
  background-size: 18px;
}
.mp_slider .slick-list {
  overflow: visible;
}
.mp_slider .slick-dots {
  bottom: 26px;
}
.mp_slider .caption {
  padding: 0;
  text-align: left;
}
.mp_slider .caption .fav {
  margin-left: -6px;
  font-size: .813em;
}
.mp_slider .caption time {
  background: #fff;
  color: #222;
  font-size: .9em;
  font-weight: bold;
  letter-spacing: 2px;
  padding: .4em 1.25em;
  display: inline-block;
}
.mp_slider .caption p {
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  margin: 0;
  padding: .75em 3.5em .75em 1.25em;
  position: relative;
}
.mp_slider .caption p:after {
  content: '';
  position: absolute;
  width: 48px;
  height: 48px;
  background: url(../images/basic/icon_arrow_right2.svg) 50% 50% no-repeat, #b02b73;
  background-size: 36px 36px;
  right: 0;
  bottom: .5em;
}
.mp_slider .caption p b {
  display: block;
  margin-bottom: -12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.mp_slider .caption p b:before {
  content: '';
  width: 45px;
  height: 2px;
  margin-top: 4px;
  margin-bottom: 10px;
  background: #fff;
  display: block;
}
.mp_slider .caption p span {
  font-size: .813em;
  color: rgba(255, 255, 255, 0.75);
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.mp_slider .img-container {
  height: 300px;
  margin: 0 15px;
  overflow: hidden;
}
.mp_slider .img-container .caption {
  position: absolute;
  bottom: -60px;
  transition: all .3s ease;
}
.mp_slider a {
  cursor: pointer;
}
.mp_slider a:hover .caption, .mp_slider a:focus .caption {
  bottom: 0px;
}

.Video .mp_slider .caption p {
  padding: .75em 1.25em;
}
.Video .mp_slider .caption p:after {
  display: none;
}
.Video .mp_slider a {
  transition: all .3s ease-in-out;
}
.Video .mp_slider a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  top: 100%;
  transition: all .3s ease-in-out;
}
.Video .mp_slider a:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  background: url(../images/icon/icon_video_play.png) 50% 50% no-repeat;
  top: calc(30% - 30px);
  left: calc(50% - 30px);
  opacity: 0;
  transition: all .3s ease-in-out;
}
.Video .mp_slider a:hover .caption, .Video .mp_slider a:focus .caption {
  bottom: 0;
}
.Video .mp_slider a:hover .caption p, .Video .mp_slider a:focus .caption p {
  background: transparent;
}
.Video .mp_slider a:hover .caption time, .Video .mp_slider a:focus .caption time {
  background: transparent;
  color: #fff;
}
.Video .mp_slider a:hover:before, .Video .mp_slider a:focus:before {
  top: 0;
}
.Video .mp_slider a:hover:after, .Video .mp_slider a:focus:after {
  opacity: 1;
}

/*slick*/
/* 無障礙*/
/* @import "sass/_nojs";	 */
/*無障礙關閉js設定*/
/* 列印*/
@media print {
  header, .fatfooter, footer, .accesskey {
    display: none;
  }

  .cp img {
    float: left;
    width: 40%;
    margin: 0px 1em 1em 0;
  }

  .re_layout {
    display: none;
    opacity: 0;
  }
}
/*列印樣式*/

/*# sourceMappingURL=tts.css.map */
