@charset "UTF-8";
body {
  font-family: Lato, "PingFang TC", "Helvetica Neue", Helvetica, 微軟正黑體, 新細明體, Arial, sans-serif;
  position: relative;
}
body.noscroll {
  overflow: hidden;
}

.goCenter {
  position: absolute;
  top: 5px;
  left: 50px;
  color: #000;
  z-index: 9999;
  border: 1px solid #fff;
  padding: 0px 10px;
  opacity: 0;
}

.goCenter:focus, .goCenter:hover {
  opacity: 1;
  color: #000;
  background-color: #fff;
}

.navbar {
  margin-bottom: 0px;
}

@media (max-width: 991px) {
  .container {
    width: 100%;
  }
}
.welcome_container {
  width: 100%;
  padding: 0px;
  background: #FFF;
  margin-left: auto;
  margin-right: auto;
}

.more {
  clear: both;
  text-align: center;
}

.btn-more {
  display: block;
  width: 34%;
  max-width: 350px;
  border-color: #DDD;
  background-color: #DDD;
  color: #333;
  padding: 10px 0;
  margin: 20px auto;
  font-size: 1em;
  transition: 0.5s;
}
@media (max-width: 480px) {
  .btn-more {
    width: 50%;
    max-width: 350px;
  }
}
.btn-more:hover, .btn-more:focus {
  color: #FFF !important;
  border-color: #132b31;
  background-color: #214b56;
}

body {
  font-size: 1em;
  line-height: 1.75em;
  font-weight: normal;
  color: #333;
  font-size: 1em;
}

a {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #214b56;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

::-moz-selection {
  background: #66ccff;
  color: #000;
}

::selection {
  background: #66ccff;
  color: #000;
}

h1 {
  font-size: 1.5em;
  line-height: 1.75em;
  font-weight: bold;
  margin-top: 0px;
}

h2 {
  font-size: 1.25em;
  line-height: 1.75em;
  font-weight: bold;
  margin-top: 0px;
}

h3 {
  font-size: 1em;
  line-height: 1.75em;
  font-weight: bold;
  margin-top: 0px;
}

h4 {
  font-size: 0.938em;
  line-height: 1.75em;
  font-weight: bold;
  margin-top: 0px;
}

h5 {
  font-size: 0.813em;
  line-height: 1.75em;
  font-weight: bold;
  margin-top: 0px;
}

h6 {
  font-size: 0.813em;
  line-height: 1.75em;
  font-weight: bold;
  margin-top: 0px;
}

p {
  font-size: 1em;
  line-height: 1.75em;
  font-weight: normal;
}

li {
  font-size: 1em;
  line-height: 1.75em;
  font-weight: normal;
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.5em;
    line-height: 1.75em;
    font-weight: bold;
    margin-top: 0px;
  }
  h2 {
    font-size: 1.25em;
    line-height: 1.75em;
    font-weight: bold;
    margin-top: 0px;
  }
  h3 {
    font-size: 1em;
    line-height: 1.75em;
    font-weight: bold;
    margin-top: 0px;
  }
  h4 {
    font-size: 0.938em;
    line-height: 1.75em;
    font-weight: bold;
    margin-top: 0px;
  }
  h5 {
    font-size: 0.875em;
    line-height: 1.75em;
    font-weight: bold;
    margin-top: 0px;
  }
  h6 {
    font-size: 0.875em;
    line-height: 1.75em;
    font-weight: bold;
  }
  p {
    font-size: 1em;
    line-height: 1.75em;
    font-weight: normal;
  }
  li {
    font-size: 1em;
    line-height: 1.75em;
    font-weight: normal;
  }
}
blockquote {
  font-weight: 800;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1em;
  display: block;
  font-style: italic;
  overflow: hidden;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: 0.75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

/*導引磚*/
.accesskey {
  float: left;
  opacity: 1;
  margin: 0px;
  color: #a1dada;
  line-height: 1em;
  font-size: 1em;
  display: inline-block;
}
.accesskey a {
  color: #a1dada;
}
.accesskey a:focus {
  color: #333;
}

@media (max-width: 767px) {
  .accesskey {
    display: none;
  }
}
/* scrollTop */
.scrollToTop {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url(../images/basic/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: 5px;
  right: 1%;
  transition: 0.3s ease-out;
  display: none;
  z-index: 999;
  font-size: 0;
}

.scrollToTop:hover {
  background: url(../images/basic/top.png) no-repeat center top rgba(0, 0, 0, 0.8);
}

/* back_page */
.back_page {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  text-align: center;
  color: #fff;
  line-height: 50px;
  text-decoration: none;
  position: fixed;
  bottom: 5px;
  right: 6%;
  transition: 0.3s ease-out;
  display: none;
  z-index: 999;
  font-size: 1.25em;
}
@media (max-width: 991px) {
  .back_page {
    right: 10%;
  }
}
@media (max-width: 560px) {
  .back_page {
    right: 15%;
  }
}
@media (max-width: 400px) {
  .back_page {
    right: 20%;
  }
}

.back_page:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.back_page:focus {
  color: yellow;
}

/*function*/
.function .btn {
  box-shadow: none;
  margin: 0px 2px 5px;
  padding: 0px 7px 0px 7px;
  background: #666;
  height: 32px;
  line-height: 32px;
  color: #fff !important;
  font-size: 0.75em !important;
}

.function .btn::before {
  font-size: 1em;
  margin-left: 0px;
  margin-right: 5px;
}

.function .icon-reply-1 {
  width: 90px !important;
}

.function .icon-facebook {
  background: #3a579a;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 0px;
}
.function .icon-facebook::before {
  margin: 0px;
}

.function .icon-twitter {
  background: #0e9ff5;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 0px;
}
.function .icon-twitter::before {
  margin: 0px;
}

.function .icon-gplus {
  background: #de4931;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 0px;
}
.function .icon-gplus::before {
  margin: 0px;
}

.function .icon-facebook:hover,
.function .icon-facebook:focus {
  background: #3a579a !important;
}

.function .icon-twitter:hover,
.function .icon-twitter:focus {
  background: #0e9ff5 !important;
}

.function .icon-gplus:hover,
.function .icon-gplus:focus {
  background: #de4931 !important;
}

.function .icon-linkedin:hover,
.function .icon-linkedin:focus {
  background: #ff9710 !important;
}

.function .btn:hover,
.function .btn:focus {
  background: #ff9710;
}

@media (max-width: 767px) {
  .function {
    margin: 0px;
    margin-bottom: 3px;
    clear: both;
    width: 100%;
    padding: 0px;
    display: block;
    text-align: right;
  }
  .function .btn {
    display: none;
  }
  .function .icon-facebook,
  .function .icon-twitter,
  .function .icon-gplus {
    display: inline-block;
  }
}
/*------------------------ page 分頁 */
.page {
  clear: both;
  margin: 5px 0 50px;
  padding: 0;
  overflow: hidden;
  font-size: 1em;
  line-height: 100%;
  position: relative;
  text-align: center;
}
.page span {
  display: inline-block;
  margin: 10px 8px 0 0;
}
.page em {
  font-weight: bold;
  font-style: normal;
  letter-spacing: 0;
  margin: 0 3px;
  color: #111;
}
.page select {
  font-weight: bold;
  font-family: Verdana, Geneva, sans-serif;
  vertical-align: middle;
  margin: 0 3px 5px;
}
.page option {
  font-weight: bold;
  font-family: Verdana, Geneva, sans-serif;
}
.page .number {
  list-style: none;
  overflow: hidden;
  margin: 0px 8px 0 0;
  padding: 0;
  line-height: 100%;
  vertical-align: middle;
  display: inline-block;
}
.page .number li {
  margin: 0px;
  padding: 0;
  float: left;
}
.page .number li a {
  padding: 10px 16px;
  border: 1px solid #bbb;
  color: #666;
  text-decoration: none;
  display: block;
  margin-left: -1px;
  cursor: pointer;
}
.page .number li a:hover {
  color: #214b56;
  text-decoration: none;
  background-color: #e9e9e9;
}
.page .number li:first-child a {
  margin-left: 0px;
  border-radius: 5px 0 0 5px;
}
.page .number li:last-child a {
  border-radius: 0 5px 5px 0;
}
.page .number li.here a {
  color: #fff;
  font-weight: bold;
  background: #367c8d;
  cursor: default;
}
.page .items {
  display: inline-block;
}
.page .items a {
  padding: 0 5px;
  color: #214b56;
}
@media (max-width: 991px) {
  .page .data,
  .page .items {
    display: none;
  }
}

.notfound {
  background: url(../images/404.png) no-repeat left top #f3f3f3;
  border-radius: 15px;
  text-align: center;
  width: 100%;
  max-width: 600px;
  padding: 20px;
  display: block;
  margin: 10px auto;
  min-height: 350px;
  padding-left: 280px;
  clear: both;
  line-height: 1.65em;
  font-size: 1.5em;
  padding-top: 100px;
}
.notfound i {
  font-size: 10em;
  text-align: center;
  display: block;
  margin-bottom: 20px;
}
.notfound a {
  background: #154b15;
}
.notfound a:hover, .notfound a:focus {
  background: #268725;
}

@media (max-width: 600px) {
  .notfound {
    background: url(../images/404.png) no-repeat center bottom #f3f3f3;
    background-size: 80%;
    padding: 20px 0px 360px;
    text-align: center;
    width: 90%;
    min-height: auto;
  }
}
.RWD_table thead {
  white-space: nowrap;
}
.RWD_table thead tr {
  background: #fefefe !important;
}
.RWD_table img {
  max-width: 200px;
}

@media screen and (max-width: 767px) {
  .RWD_table {
    border-bottom: none;
  }
  .RWD_table table {
    border: none !important;
    border-collapse: collapse;
  }
  .RWD_table table a {
    word-break: break-all;
  }
  .RWD_table table thead {
    display: none;
  }
  .RWD_table table tr {
    margin-top: 5px;
    border: 1px solid #ddd;
    border-bottom: 1px solid #000;
    display: block;
    margin-bottom: 5px;
    background: #f2f2f2;
  }
  .RWD_table table td {
    border-bottom: 1px solid #000;
    display: block;
    text-align: left;
    padding-left: 30% !important;
    position: relative;
    border-top: none !important;
  }
  .RWD_table table td::before {
    content: attr(aria-label);
    position: absolute;
    left: 5px;
    top: 7px;
    width: 30%;
  }
}
@media print {
  a[href]:after {
    content: none !important;
  }
}
/* 內頁 */
.np,
.lp,
.cp,
.sitemap {
  position: relative;
}

.MainContent {
  margin: 0px;
}

.Block_incontent {
  background-color: #fff;
  padding: 20px 0 0;
  position: relative;
}
.Block_incontent a {
  color: #333;
}
.Block_incontent a:hover {
  color: #e30000;
  text-decoration: underline;
}
.Block_incontent h2.title {
  font-size: 1.687em;
  color: #367c8d;
  padding: 0px 0px 6px;
  margin: 0 0 15px 0;
  clear: both;
  line-height: 140%;
  border-bottom: 1px solid #367c8d;
  font-weight: 700;
}
.Block_incontent h2.title.poison_h1 {
  text-align: center;
  border: none;
}
.Block_incontent h2.title.poison_h1 span {
  display: block;
  font-size: 0.75em;
}
.Block_incontent .accesskey {
  position: absolute;
  top: 0;
  left: 0;
}
.Block_incontent .accesskey a {
  color: #fff;
}

/*-----------------------------------------------topfunction*/
.topfunction {
  position: absolute;
  top: 10px;
  right: 0px;
}
@media (max-width: 767px) {
  .topfunction {
    position: static;
    float: right;
    margin: 0px 0 10px;
  }
}
.topfunction ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.topfunction ul li {
  float: left;
  margin: 0 0 0 15px;
}
.topfunction ul li a {
  display: block;
  padding: 0 0 0 25px;
}
.topfunction ul li a.rss {
  background-image: url(../images/icon_rss.png);
  background-repeat: no-repeat;
  background-position: 0 center;
}
.topfunction ul li a.condition {
  background-image: url(../images/icon_condition.png);
  background-repeat: no-repeat;
  background-position: 0 center;
}

/*------------------------------------------bottomfunction*/
.bottomfunction {
  background-color: #c6e9eb;
  overflow: hidden;
  padding: 15px 10px 15px 20px;
  clear: both;
  display: flex;
  flex-wrap: wrap;
}
.bottomfunction .share2 {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .bottomfunction .share2 {
    clear: both;
    margin: 0 0 20px 0;
  }
}
.bottomfunction .share2 span {
  float: left;
  margin: 8px 10px 0 0px;
}
@media (max-width: 350px) {
  .bottomfunction .share2 span {
    margin: 3px 10px 0 0px;
  }
}
.bottomfunction .share2 ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.bottomfunction .share2 ul li {
  margin: 0 5px 0 0;
  float: left;
}
.bottomfunction .share2 ul li a {
  display: block;
  background-color: #999;
  border-radius: 5px;
}
.bottomfunction .share2 ul li a.fb {
  background-color: #3b5997;
}
.bottomfunction .share2 ul li a.google {
  background-color: #df2f2f;
}
.bottomfunction .share2 ul li a.twitter {
  background-color: #000;
}
.bottomfunction .share2 ul li a.line {
  background-color: #00c214;
}
.bottomfunction .share2 ul li a.forward {
  background-color: #87cd27;
}
.bottomfunction .share2 ul li a.print {
  background-color: #5c64b5;
}
.bottomfunction .share2 ul li img {
  width: 35px;
  height: 35px;
}
@media (max-width: 350px) {
  .bottomfunction .share2 ul li img {
    width: 32px;
    height: 32px;
  }
}
.bottomfunction .data {
  flex: 1 1 auto;
  margin: 8px 0 0;
}
@media (max-width: 991px) {
  .bottomfunction .data {
    clear: both;
    float: none;
  }
}
.bottomfunction .data ul {
  margin: 0;
  padding: 0;
  text-align: right;
}
@media (max-width: 1200px) {
  .bottomfunction .data ul {
    text-align: left;
  }
}
.bottomfunction .data ul li {
  margin: 0 15px 0 0;
  display: inline-block;
  border-right: 1px solid #999;
  padding: 0 15px 0 0;
}
@media (max-width: 550px) {
  .bottomfunction .data ul li {
    display: block;
    border: none;
    margin: 0 0 7px 0;
    background-image: url(../images/link_icon01.png);
    background-repeat: no-repeat;
    background-position: 0 12px;
    padding: 0 0 0 15px;
  }
}
.bottomfunction .data ul li a {
  color: #333;
  text-decoration: none;
}
.bottomfunction .data ul li a:hover {
  color: #c00;
  text-decoration: underline;
}
.bottomfunction .data ul li:last-child {
  border-right: none;
  margin: 0;
}

.radio {
  margin: 0;
  display: inline;
}

a:focus {
  outline: 2px solid #ffc000;
}

#Header {
  width: 100%;
  margin: 0px auto;
  min-height: 170px;
  box-shadow: 0px 0px 4px RGBA(0, 0, 0, 0.7);
  position: relative;
  z-index: 999;
}
@media (max-width: 767px) {
  #Header {
    min-height: auto;
  }
}
#Header:before {
  background: #7accd1;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 40px;
  position: absolute;
  z-index: -1;
}
#Header.chinesenewyear {
  background-image: url("../images/header_chinesenewyear.png");
  background-repeat: no-repeat;
  background-position: center top;
  position: initial;
}
@media (max-width: 1200px) {
  #Header.chinesenewyear {
    background-position: -140px top;
  }
}
@media (max-width: 992px) {
  #Header.chinesenewyear {
    background-image: url("../images/header_chinesenewyear2.png");
    background-position: -300px top;
  }
}
@media (max-width: 767px) {
  #Header.chinesenewyear {
    background-image: url("../images/header_chinesenewyear.png");
    background-position: left top;
    background-size: 137%;
  }
}
@media (max-width: 480px) {
  #Header.chinesenewyear {
    background-position: left top;
    background-size: 195%;
  }
}
#Header .accesskey {
  z-index: 999;
  position: relative;
}
#Header .accesskey a {
  color: #7accd1;
}
#Header .accesskey a:focus {
  color: #333;
}
#Header .container {
  max-width: 1192px;
  height: 90px;
  position: relative;
}

@media (max-width: 991px) {
  #Header {
    width: 100%;
    height: auto;
    background: none;
  }
  #Header .navbar-collapse {
    padding: 0;
    margin-top: 0px;
  }
  #Header .container {
    width: 100%;
    height: auto;
    position: relative;
  }
}
@media (max-width: 767px) {
  #Header #offcanvas-right {
    background: #333;
  }
  #Header #offcanvas-left {
    background: #214b56;
  }
  #Header::after {
    display: none;
  }
  #Header::before {
    display: none;
  }
}
/* 按鈕樣式 */
.navbar-toggle {
  border: 1px solid #CCC;
  margin: 10px 10px 10px;
  padding: 3px 6px;
  background-color: #fff;
}

/* Logo */
.navbar-header h1 {
  margin: 0;
  padding: 0;
}

.Logo {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 45px;
  display: block;
}
.Logo img {
  margin-top: 0px;
}

@media (max-width: 991px) {
  .Logo {
    width: 100%;
    float: left;
    margin-top: 35px;
    margin-bottom: 0px;
  }
  .Logo img {
    margin-top: 10px;
    width: 100%;
    height: auto !important;
  }
}
@media (max-width: 767px) {
  .Logo {
    width: 60%;
    float: left;
    margin-top: 0px;
    margin-bottom: 5px;
  }
  .Logo img {
    margin-top: 10px;
    width: 100%;
    height: auto !important;
  }
}
@media (max-width: 480px) {
  .Logo {
    width: 60%;
    float: left;
    margin-bottom: 5px;
  }
  .Logo img {
    margin-top: 10px;
    width: 100%;
    height: auto !important;
  }
}
#Header .navbar {
  border: none !important;
}

#Header .Header_Links {
  float: right;
}

/*////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////  Header_Links  ///////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////*/
#Header .Header_Links {
  color: #666;
  position: relative;
  margin-top: 10px;
}
#Header .Header_Links ul {
  float: right;
}
#Header .Header_Links ul li {
  display: inline-block;
}
#Header .Header_Links ul li a {
  display: block;
  padding: 5px 15px;
  border-radius: 5px;
}
#Header .Header_Links ul li a:hover {
  color: #FF0;
}

@media (max-width: 767px) {
  #Header .Header_Links {
    overflow: hidden;
    width: 100%;
    padding: 0px;
    margin: 0px;
  }
  #Header .Header_Links .navbar-nav {
    display: block;
    width: 100%;
    height: auto;
  }
  #Header .Header_Links ul {
    float: none;
    margin-left: 0px;
  }
  #Header .Header_Links ul li {
    padding: 0px;
    display: block;
  }
  #Header .Header_Links ul li a {
    display: inline-block;
    line-height: normal;
    padding: 10px 15px;
    font-size: 0.938em;
    margin: 0px 2.5%;
    width: 45%;
    float: left;
    border-radius: 5px;
    color: #464646;
    text-shadow: none;
    text-align: center;
    background: #DDD;
  }
  #Header .Header_Links ul li a:hover, #Header .Header_Links ul li a:focus {
    background: rgb(22, 159, 230);
    color: #FFF;
  }
}
/*////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////  FB  /////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////*/
.FB_share {
  position: absolute;
  top: 35px;
  right: 15px;
  z-index: 1;
}

#Header .FB_Link .FB_BTN {
  background: #3c5a9c;
  display: inline-block;
  padding: 6px 15px 6px 5px;
}

#Header .FB_Link .FB_BTN a {
  color: #fff;
  font-size: 0.938em;
}

#Header .FB_Link .FB_BTN a:hover,
#Header .FB_Link .FB_BTN a:focus {
  text-decoration: none;
}

/*////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////  Search  /////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////*/
#Header .Search {
  float: right;
  margin-top: 40px;
}
#Header .Search .accesskey a {
  color: #fff;
}
#Header .Search .navbar-form {
  padding: 0;
}
#Header .Search .form-control {
  width: 180px;
  height: 35px;
  background-color: #fff;
  border: 0;
  color: #333 !important;
  font-size: 1em;
  box-shadow: none;
  padding: 3px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
#Header .Search .input-group-btn {
  margin-right: 5px;
  display: inline-block;
}
#Header .Search .input-group-btn .btn {
  background-color: transparent;
  padding: 5px;
  margin-left: -35px;
  z-index: 3;
}
#Header .Search .input-group-btn .btn:focus {
  outline: 2px solid #ffc000;
}
#Header .Search .input-group-btn .btn .glyphicon-search {
  background-image: url("../images/basic/search_icon.svg");
  background-size: 20px;
  width: 20px;
  height: 20px;
  z-index: 99;
}
#Header .Search .advance {
  display: inline-block;
  color: #000 !important;
  font-size: 1em;
  vertical-align: middle;
}
#Header .Search .advance a {
  display: block;
  color: #000 !important;
  padding: 3px 16px;
  background: #b3e2e5 !important;
  border-radius: 4px;
  transition: 0.3s ease-out;
}
#Header .Search .advance a:hover, #Header .Search .advance a:focus {
  background: #7accd1 !important;
}

#Header .Search label {
  font-size: 0;
}

#Header .Search .input-group {
  width: 100%;
  display: flex;
}

#Header .Search .input-group .form-control:first-child {
  border-radius: 4px;
}

#Header .Search .input-group .form-control:focus {
  outline: 2px solid #ffc000;
}

@media (max-width: 767px) {
  /*Search*/
  #Header .Search {
    clear: both;
    width: 95%;
    top: 0px;
    left: 0px;
    margin: 5px auto 15px;
    position: relative;
    display: block;
  }
  #Header .Search .navbar-form {
    margin: 0px auto;
    border: none !important;
    outline: none;
    box-shadow: none;
  }
  #Header .Search .form-control {
    width: 65%;
  }
}
/*關鍵字*/
#Header .Search .HotKeywords {
  margin-top: 8px;
  font-size: 0.813em;
  line-height: 1.2em;
  color: #333;
}
#Header .Search .HotKeywords a {
  color: #367c8d;
}
#Header .Search .HotKeywords a:hover, #Header .Search .HotKeywords a:focus {
  color: #e30000;
}
#Header .Search .HotKeywords a:after {
  content: "、";
}
#Header .Search .HotKeywords a:last-child:after {
  content: "";
}

@media (max-width: 767px) {
  #Header .Search .HotKeywords {
    color: #ddd;
    margin-top: 8px;
  }
  #Header .Search .HotKeywords a {
    color: #FFF;
  }
  #Header .Search .HotKeywords a:hover, #Header .Search .HotKeywords a:focus {
    color: #154b15;
  }
  #Header .Search .HotKeywords a:after {
    content: "、";
  }
  #Header .Search .HotKeywords a:last-child:after {
    content: "";
  }
}
/*////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////  fontSetting  ////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////*/
#Header .container .fontSetting {
  width: 80px;
  top: 0px;
  right: 0px;
  padding: 0px;
  position: absolute;
}
#Header .container .fontSetting ul {
  padding: 0px;
}
#Header .container .fontSetting ul li {
  display: inline-block;
  margin: 0px 1px;
}
#Header .container .fontSetting ul li a {
  display: block;
}

@media (max-width: 767px) {
  #Header .container .fontSetting {
    display: none;
  }
}
/*////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////  nav-bar導覽列  ///////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////*/
.Navigation {
  top: 8px;
  position: absolute;
  right: 10px;
}
.Navigation .navbar-nav li a {
  font-size: 0.875em;
  padding: 2px 15px;
  position: relative;
  text-shadow: none;
  color: #000;
  transition: 0.5s;
}
.Navigation .navbar-nav li a:hover {
  background-color: #b3e2e5;
  border-radius: 3px;
}
.Navigation .navbar-nav li a:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 14px;
  top: 5px;
  right: 0px;
  background: #222;
}
.Navigation .navbar-nav li:last-child::before {
  display: none;
}

@media (max-width: 767px) {
  .Navigation {
    float: none;
    position: relative;
    top: 0px;
    left: 0px;
    min-width: auto;
    margin: 0px auto;
    width: 100%;
  }
  .Navigation .navbar-nav {
    border-top: 1px solid #222;
    border-left: 1px solid #222;
    overflow: hidden;
    margin: 10px 0;
  }
  .Navigation .navbar-nav li {
    width: 50%;
    display: block;
    float: left;
  }
  .Navigation .navbar-nav li a {
    color: #FFF;
    box-sizing: border-box;
    padding: 10px 15% !important;
    display: block;
    font-size: 0.938em !important;
    border-right: 1px solid #222;
    border-bottom: 1px solid #222;
  }
  .Navigation .navbar-nav li a:hover, .Navigation .navbar-nav li a:focus {
    color: #154b15;
  }
  .Navigation .navbar-nav li a::before {
    display: none;
  }
}
.link {
  padding: 25px 0 !important;
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 1000px;
  margin: 0px auto;
}
.link::before {
  width: 1px;
  height: 40px;
  background: #DDD;
  position: absolute;
  top: 20px;
  left: 50%;
  content: "";
}
.link a {
  font-size: 1.25em;
  display: block;
}
.link a:hover, .link a:focus {
  color: #154b15;
}
.link img {
  display: inline-block;
  vertical-align: middle;
  margin: 0px 5px;
}

@media (max-width: 767px) {
  .link::before {
    display: none;
  }
  .link a {
    background: #214b56;
    border-radius: 5px;
    margin-bottom: 20px;
    display: block;
    width: 80%;
    padding: 10px;
    color: #FFF;
    margin: 0px auto 20px;
  }
  .link a:hover, .link a:focus {
    color: #FFF;
    background: #154b15;
  }
  .link img {
    display: none;
  }
}
/*主選單*/
#Header .container > .navbar-collapse {
  padding: 0;
}

#Header .MainMenu {
  height: 50px;
  position: relative;
  z-index: 999999;
  margin-top: 5px;
  padding-left: 0;
  border-top: 1px solid #ddd;
}
#Header .MainMenu a {
  text-decoration: none;
}
#Header .MainMenu .navbar-nav {
  width: 100%;
}
#Header .MainMenu .navbar-nav > li > a {
  color: #000;
  text-shadow: 1px 1px 1px #FFF;
  min-width: 100px;
  text-align: center;
  font-size: 1em;
  height: 45px;
  padding-right: 0px;
  padding-left: 0px;
  padding-top: 13px;
}
#Header .MainMenu .navbar-nav > li > a:focus {
  outline: 2px solid #fdb300;
}
#Header .MainMenu .navbar-nav .dropdown > a {
  background: transparent;
}
#Header .MainMenu .navbar-nav .dropdown > a > .caret {
  color: #666;
}
#Header .MainMenu .navbar-nav .caret {
  margin-left: 5px;
  color: #666;
}
#Header .MainMenu .navbar-nav .dropdown:last-child .dropdown-submenu .dropdown-menu {
  left: -100%;
}
@media (max-width: 1199px) {
  #Header .MainMenu .navbar-nav .dropdown:last-child .dropdown-submenu .dropdown-menu {
    left: 100%;
  }
}

/* 第二層選單 */
#Header .MainMenu .navbar-nav .dropdown-menu {
  width: 230px;
  padding: 0 0;
  margin-top: -1px;
}
#Header .MainMenu .navbar-nav .dropdown-menu > li > a {
  font-size: 1.063em;
  color: #000;
  background: #7accd1;
  line-height: 1.8em;
  text-align: left;
  padding: 6px 15px;
  border-bottom: 1px solid #c6e9eb;
  white-space: normal;
}
#Header .MainMenu .navbar-nav .dropdown-menu > li > a:hover, #Header .MainMenu .navbar-nav .dropdown-menu > li > a:focus {
  color: #fff;
  background: #367c8d;
}
#Header .MainMenu .navbar-nav .dropdown-menu > li:last-child > a {
  border-bottom: none;
}

/*主選單-第三節點*/
#Header .MainMenu .navbar-nav .dropdown-menu > li ul {
  width: 230px;
  list-style: none;
  padding: 0;
  top: 0px;
}
#Header .MainMenu .navbar-nav .dropdown-menu > li ul li a {
  font-size: 1.188em;
  padding: 6px 15px;
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  border-bottom: 1px solid #c6e9eb;
  white-space: normal;
}
#Header .MainMenu .navbar-nav .dropdown-menu .dropdown-submenu {
  position: relative;
}
#Header .MainMenu .navbar-nav .dropdown-menu .dropdown-submenu > .dropdown-menu {
  top: 5px;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  border-radius: 0;
}
#Header .MainMenu .navbar-nav .dropdown-menu .dropdown-submenu > a:after {
  display: block;
  content: "";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  margin-top: 8px;
  margin-right: -10px;
}
#Header .MainMenu .navbar-nav .dropdown-menu .dropdown-submenu:hover > a:after {
  border-left-color: #fff;
}
#Header .MainMenu .navbar-nav .dropdown-menu .dropdown-submenu .pull-left {
  float: none;
}
#Header .MainMenu .navbar-nav .dropdown-menu .dropdown-submenu .pull-left > .dropdown-menu {
  margin-left: 10px;
  border-radius: 0px;
}

@media (max-width: 991px) and (min-width: 768px) {
  .welcome_Header .welcomeMenu {
    float: none;
    background: #FFF;
  }
  .welcome_Header .MainMenu {
    height: 50px;
    margin-top: 0px;
    margin-left: -30px;
    margin-right: -30px;
  }
  .welcome_Header .MainMenu .navbar-nav {
    width: 100%;
    background: #FFF;
  }
  .welcome_Header .MainMenu .navbar-nav > li {
    display: inline-block;
    width: 99px !important;
  }
  .welcome_Header .MainMenu .navbar-nav > li > a {
    font-size: 1em;
  }
}
@media (max-width: 767px) {
  #Header .MainMenu {
    height: auto;
    margin: 0px;
    padding-left: 0%;
  }
  #Header .MainMenu a {
    text-decoration: none;
  }
  #Header .MainMenu .navbar-nav {
    width: 100%;
    margin: 0px !important;
  }
  #Header .MainMenu .navbar-nav > li > a {
    border-left: none;
    text-shadow: none !important;
    color: #fff !important;
    display: block;
    min-width: 100px;
    line-height: 30px;
    text-align: left;
    font-size: 1.063em;
    border-bottom: 1px solid RGBA(255, 255, 255, 0.3);
    padding: 6px 15px;
  }
  #Header .MainMenu .navbar-nav > li > a:hover, #Header .MainMenu .navbar-nav > li > a:focus {
    background: #1a3b43;
  }
  #Header .MainMenu .navbar-nav .dropdown > a {
    background: transparent;
  }
  #Header .MainMenu .navbar-nav .dropdown > a > .caret {
    color: #fff;
  }
  #Header .MainMenu .navbar-nav .caret {
    margin-left: 5px;
    color: #333;
  }
  /* 第二層選單 */
  #Header .MainMenu .navbar-nav .dropdown-menu {
    min-width: 200px;
    padding: 0 0;
    margin-top: -1px;
    width: 100%;
  }
  #Header .MainMenu .navbar-nav .dropdown-menu > li > a {
    font-size: 1.063em;
    background: #fff;
    line-height: 1.6em;
    text-align: left;
    color: #333;
    padding: 6px 25px;
    border-bottom: dotted 1px #c2c2c2;
  }
  #Header .MainMenu .navbar-nav .dropdown-menu > li > a:hover, #Header .MainMenu .navbar-nav .dropdown-menu > li > a:focus {
    color: #333;
    background: #EEE;
  }
  #Header .MainMenu .navbar-nav .dropdown-menu > li:last-child > a {
    border-bottom: none;
  }
  /*主選單-第三節點*/
  #Header .MainMenu .navbar-nav .dropdown-menu > li ul {
    background: #fff;
    width: 100%;
    list-style: none;
    padding: 0;
    top: 0px;
  }
  #Header .MainMenu .navbar-nav .dropdown-menu > li ul li a {
    font-size: 1.063em;
    padding: 6px 15px;
    display: block;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    border-bottom: dotted 1px #c2c2c2;
    background-color: #e5e5e5;
  }
  #Header .MainMenu .navbar-nav .dropdown-menu .dropdown-submenu {
    position: relative;
  }
  #Header .MainMenu .navbar-nav .dropdown-menu .dropdown-submenu > .dropdown-menu {
    top: 0px;
    left: 0px;
    margin-top: 0px;
    margin-left: 0px;
    border-radius: 0;
  }
  #Header .MainMenu .navbar-nav .dropdown-menu .dropdown-submenu > a:after {
    display: block;
    content: "";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    margin-top: 8px;
    margin-right: -10px;
  }
  #Header .MainMenu .navbar-nav .dropdown-menu .dropdown-submenu:hover > a:after {
    border-left-color: #555;
  }
  #Header .MainMenu .navbar-nav .dropdown-menu .dropdown-submenu .pull-left {
    float: none;
  }
  #Header .MainMenu .navbar-nav .dropdown-menu .dropdown-submenu .pull-left > .dropdown-menu {
    left: 0%;
    margin-left: 0px;
    border-radius: 0px;
  }
}
.welcome_Header .MainMenu {
  float: right !important;
  width: 60% !important;
  margin-top: -35px !important;
  background-color: #FFF !important;
}
.welcome_Header .MainMenu .navbar-nav {
  background: none;
}
.welcome_Header .MainMenu .navbar-nav > li > a {
  color: #666 !important;
  text-shadow: none !important;
}
.welcome_Header .MainMenu .navbar-collapse {
  margin-top: -30px !important;
}

@media (max-width: 991px) and (min-width: 768px) {
  .welcome_Header .MainMenu {
    width: 70% !important;
  }
}
@media (max-width: 767px) {
  .welcome_Header .MainMenu {
    float: none !important;
    background: rgb(51, 51, 51) !important;
    margin: 0px !important;
    width: 100% !important;
    position: relative;
  }
}
/* Turn on custom 8px wide scrollbar */
::-webkit-scrollbar {
  width: 10px;
  /* 1px wider than Lion. */
  /* This is more usable for users trying to click it. */
  background-color: rgba(0, 0, 0, 0);
  -webkit-border-radius: 100px;
}

/* hover effect for both scrollbar area, and scrollbar 'thumb' */
::-webkit-scrollbar:hover {
  background-color: rgba(0, 0, 0, 0.09);
}

/* The scrollbar 'thumb' ...that marque oval shape in a scrollbar */
::-webkit-scrollbar-thumb {
  /* This is the EXACT color of Mac OS scrollbars. 
     Yes, I pulled out digital color meter */
  background: rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 100px;
  background-clip: padding-box;
  border: 2px solid rgba(0, 0, 0, 0);
  min-height: 10px;
  /*Prevent it from getting too small */
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.61);
  /* Some darker color when you click it */
  -webkit-border-radius: 100px;
}

/* 共用section設定 */
.Block01 {
  position: relative;
  margin-bottom: 0px;
  display: block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#5ac4c4+1,000000+100&0.65+0,0+52,0+52 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(90, 196, 196, 0.65) 0%, rgba(90, 196, 196, 0.64) 1%, rgba(44, 95, 95, 0) 52%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a65ac4c4", endColorstr="#00000000", GradientType=0);
  /* IE6-9 */
}
@media (max-width: 767px) {
  .Block01 {
    padding: 0px;
    margin-top: 0px;
  }
}
@media (min-width: 992px) {
  .Block01 .col-md-8 {
    width: 65%;
  }
}

.sec {
  padding: 30px 0 25px;
  text-align: center;
  clear: both;
}
.sec .container {
  max-width: 1200px;
}
.sec h2 {
  font-size: 1.5em;
  padding: 0 0 5px;
  color: #000;
  margin: 0 0 20px 0;
  border-bottom: 1px solid #367c8d;
  display: inline-block;
  position: relative;
  z-index: 9;
}
.sec h3 {
  color: #333;
  text-align: center;
  margin-top: -10px;
  font-size: 1em;
}
.sec p {
  text-align: center;
  max-width: 40%;
  margin: 0px auto;
  display: block;
}

@media (max-width: 767px) {
  .sec p {
    max-width: 80%;
  }
}
/* 宣導影音 */
.propagandamovie {
  background-color: #eee;
  padding: 30px 0;
  text-align: center;
}
.propagandamovie .explain {
  margin-bottom: 1em;
  font-size: 1.125em;
  padding: 0 20px;
}
.propagandamovie .propagandablock {
  clear: both;
  overflow: hidden;
  margin-bottom: 20px;
}
.propagandamovie .propagandablock .movie {
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  background-color: #eee;
}
@media (max-width: 992px) {
  .propagandamovie .propagandablock .movie {
    margin-left: 0px;
    margin-right: 5px;
    height: auto;
  }
}
@media (max-width: 480px) {
  .propagandamovie .propagandablock .movie {
    height: auto;
  }
}
.propagandamovie .propagandablock .movie iframe {
  width: 100%;
  height: 300px;
  border: none;
}
.propagandamovie .propagandablock .movie .image {
  width: 100%;
  height: 322px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .propagandamovie .propagandablock .movie .image {
    height: auto;
  }
}
.propagandamovie .propagandablock .movie .image img {
  width: 100%;
  max-height: 322px;
  overflow: hidden;
}
.propagandamovie .propagandablock .movie p {
  width: 100%;
  max-width: 100%;
  padding: 10px 15px 15px 20px;
  height: 130px;
  text-align: left;
  line-height: 1.8em;
  background-color: #7accd1;
  overflow-y: scroll;
}
.propagandamovie .propagandablock .moviedata select::-ms-expand {
  display: none;
  /*IE*/
}
.propagandamovie .propagandablock .moviedata input,
.propagandamovie .propagandablock .moviedata select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.propagandamovie .propagandablock .moviedata .selectblock {
  float: left;
  background-color: #367c8d;
  padding: 5px 10px;
  width: 30%;
  margin-right: 5px;
  margin-bottom: 10px;
  border-radius: 5px;
  text-align: left;
  position: relative;
}
@media (max-width: 530px) {
  .propagandamovie .propagandablock .moviedata .selectblock {
    width: 100%;
  }
}
.propagandamovie .propagandablock .moviedata .selectblock label {
  font-size: 0;
  position: absolute;
  left: 0;
}
.propagandamovie .propagandablock .moviedata .selectblock select {
  line-height: 2em;
  height: 2em;
  background-color: #367c8d;
  width: 100%;
  border: 1px solid #367c8d;
  color: #fff;
  background-image: url(../images/select_icon01.png);
  background-position: right 10px;
  background-repeat: no-repeat;
  -ms-user-select: none;
}
.propagandamovie .propagandablock .moviedata .searchblock {
  float: left;
  background-color: #367c8d;
  padding: 3px 5px;
  width: 68%;
  border-radius: 5px;
  margin-bottom: 10px;
  text-align: left;
}
@media (max-width: 992px) {
  .propagandamovie .propagandablock .moviedata .searchblock {
    width: 69%;
  }
}
@media (max-width: 767px) {
  .propagandamovie .propagandablock .moviedata .searchblock {
    width: 69%;
  }
}
@media (max-width: 530px) {
  .propagandamovie .propagandablock .moviedata .searchblock {
    width: 100%;
  }
}
.propagandamovie .propagandablock .moviedata .searchblock label {
  font-size: 0;
}
.propagandamovie .propagandablock .moviedata .searchblock input[type=text] {
  color: #fff;
  background-color: #367c8d;
  border: 1px solid #367c8d;
  width: 88%;
  vertical-align: middle;
  padding-bottom: 5px;
}
.propagandamovie .propagandablock .moviedata .searchblock input[type=text]:focus {
  border: 2px solid #ffc000;
  outline: none;
}
@media (max-width: 992px) {
  .propagandamovie .propagandablock .moviedata .searchblock input[type=text] {
    width: 93%;
  }
}
@media (max-width: 767px) {
  .propagandamovie .propagandablock .moviedata .searchblock input[type=text] {
    width: 91%;
  }
}
.propagandamovie .propagandablock .moviedata .searchblock input::-moz-placeholder {
  color: #fff;
}
.propagandamovie .propagandablock .moviedata .searchblock input::placeholder {
  color: #fff;
}
.propagandamovie .propagandablock .moviedata .searchblock input[type=image] {
  padding: 3px 3px 3px;
  margin-top: 3px;
  width: auto;
}
.propagandamovie .propagandablock .moviedata .searchblock input {
  vertical-align: middle;
}
.propagandamovie .propagandablock .moviedata .movielist {
  background-color: #fff;
  clear: both;
  padding: 20px 20px 30px;
  overflow-y: scroll;
  height: 400px;
  margin-right: 5px;
}
@media (max-width: 575px) {
  .propagandamovie .propagandablock .moviedata .movielist {
    margin-right: 0;
  }
}
.propagandamovie .propagandablock .moviedata .movielist ul {
  margin: 0;
  padding: 0;
}
.propagandamovie .propagandablock .moviedata .movielist ul li {
  border-bottom: 1px dotted #b5b5b5;
  list-style: none;
  text-align: left;
}
.propagandamovie .propagandablock .moviedata .movielist ul li a {
  display: block;
  padding: 5px 5px 3px 35px;
  background-image: url(../images/movielist_icon01.png);
  background-repeat: no-repeat;
  background-position: 5px 10px;
}
.propagandamovie .propagandablock .moviedata .movielist ul li a.here {
  background-color: #fff799;
}

.activity {
  padding: 0 70px;
  margin-bottom: 70px;
}
@media (max-width: 550px) {
  .activity {
    padding: 0;
  }
}
.activity div {
  margin: 2px 4px;
  padding: 0;
  position: relative;
  display: block;
}
@media (max-width: 767px) {
  .activity div {
    margin: 2px 0;
  }
}
.activity div a {
  display: block;
  color: #333;
}
.activity div .image {
  margin-bottom: 20px;
  outline: 1px solid #ddd;
}
.activity div .image img {
  max-width: 100%;
  height: 200px;
  margin: auto;
}
@media (max-width: 767px) {
  .activity div .image {
    outline: none;
  }
  .activity div .image img {
    height: auto;
    width: 95%;
    outline: 1px solid #ddd;
  }
}
.activity div h3 {
  color: #333;
  width: 100%;
  display: block;
  text-align: left;
  font-size: 1.125em;
  padding: 5px 10px;
  line-height: 1.5em;
}
@media (max-width: 767px) {
  .activity div h3 {
    text-align: center;
  }
}
.activity .slick-dots {
  bottom: -30px;
  margin: 0;
  width: 85%;
}
.activity .slick-dots li button:before {
  font-size: 1em;
  opacity: 0.75;
  color: #666;
}
.activity .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #f99e29;
}
.activity .slick-prev {
  padding: 20px 0;
  left: 0px;
  z-index: 9;
  border-radius: 50%;
  transition: 0.3s ease-out;
  background: url("../images/basic/btn_left.png") center 10px no-repeat RGBA(0, 0, 0, 0.6);
  background-size: 60%;
}
@media (max-width: 767px) {
  .activity .slick-prev {
    left: 0;
    top: 30%;
  }
}
.activity .slick-prev:hover, .activity .slick-prev:focus {
  background: url("../images/basic/btn_left.png") center 10px no-repeat #367c8d;
  background-size: 60%;
}
.activity .slick-next {
  padding: 20px 0;
  right: 0px;
  border-radius: 50%;
  transition: 0.3s ease-out;
  background: url("../images/basic/btn_right.png") center 10px no-repeat RGBA(0, 0, 0, 0.6);
  background-size: 60%;
}
@media (max-width: 767px) {
  .activity .slick-next {
    right: 0;
    top: 30%;
  }
}
.activity .slick-next:hover, .activity .slick-next:focus {
  background: url("../images/basic/btn_right.png") center 10px no-repeat #367c8d;
  background-size: 60%;
}

.no-js .activity > div {
  display: none;
}
.no-js .activity > div:nth-child(1),
.no-js .activity > div:nth-child(2),
.no-js .activity > div:nth-child(3) {
  display: block;
}
.no-js .activity > div {
  float: left;
  width: 320px;
}

.activityphoto .btn-more {
  float: none;
  clear: both;
}

@media (max-width: 767px) {
  .stuffSlider,
  .mp_stuffSlider {
    padding-left: 0px;
    padding-right: 0px;
  }
  .stuffSlider .slick-prev,
  .mp_stuffSlider .slick-prev {
    left: 7%;
  }
  .stuffSlider .slick-next,
  .mp_stuffSlider .slick-next {
    right: 7%;
  }
  .stuffSlider .slick-dots,
  .mp_stuffSlider .slick-dots {
    width: 100%;
    display: block;
    text-align: center;
    margin: 0px auto;
  }
  .stuffSlider .pic_cover,
  .mp_stuffSlider .pic_cover {
    transform: scale(1, 1);
  }
}
.web {
  padding: 25px 0;
  background: #7accd1;
}
.web .website {
  max-width: 900px;
  margin: 0px auto;
}
.web .website a {
  display: block;
}
.web .website .slick-slider {
  margin-bottom: 0px;
}
.web .website .slick-prev {
  left: -35px;
}
.web .website .slick-next {
  right: -35px;
}
@media (max-width: 991px) {
  .web .website .slick-prev {
    left: 40px;
  }
  .web .website .slick-next {
    right: 40px;
  }
}
.web .website img {
  width: 90%;
  margin: 0px auto;
}
@media (max-width: 480px) {
  .web .website img {
    width: 60%;
  }
}
.web .website .btn-more {
  display: none;
}

.no-js .web .website .website_slider > div {
  display: none;
}
.no-js .web .website .website_slider > div img {
  width: 220px;
}

.no-js .web .website .website_slider > div:first-child,
.no-js .web .website .website_slider > div:nth-child(2),
.no-js .web .website .website_slider > div:nth-child(3),
.no-js .web .website .website_slider > div:nth-child(4) {
  display: inline-block;
}

.no-js .web .website .btn-more {
  display: block;
}

/*第一個頁籤*/
.tabs {
  margin: 0 auto 30px;
  width: 100%;
}

.tabItem {
  position: relative;
  display: block;
}

.tabItem a {
  display: block;
  height: 2.8em;
  line-height: 2.8em;
  padding: 0 2em 0 4%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  border-top: 1px solid #fff;
  text-decoration: none;
  font-size: 1.3em;
  background: #676767;
  color: #fff;
}

.tabItem.active a,
.tabItem.active a:hover,
.tabItem.active a:focus {
  background-color: #7accd1;
  color: #000;
}

.tabItem:first-child a {
  border: none;
}

.tabItem a:hover,
.tabItem a:focus {
  text-decoration: none;
  background: #221;
  color: #fff;
  outline: none;
}

.tabItem a:after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 1.1em;
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  transform: rotate(45deg);
  z-index: 9;
  border-left: none;
  border-top: none;
  transition: transform 0.5s 0.5s;
}

.tabItem.active a:after {
  transform: rotate(225deg);
  bottom: 0.7em;
}

.tabItem.active a:focus {
  color: #000;
}

.tabContent {
  position: static;
  display: none;
  padding: 1em 0 0.8em;
  background: #fff;
}

.active .tabContent {
  display: block;
}

.tabContent ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  line-height: 1.6em;
}
.tabContent ul li {
  margin: 1em 0;
  padding: 0 30px 0 40px;
  display: block;
  border-bottom: 1px dotted #ccc;
  position: relative;
  text-align: left;
}
.tabContent ul li a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: auto;
  color: #333;
}
.tabContent ul li a:hover, .tabContent ul li a:focus {
  color: #e30000;
  text-decoration: none;
}
.tabContent ul li a:hover span, .tabContent ul li a:focus span {
  color: #666;
  text-decoration: none;
}
.tabContent ul li::before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top: 8px;
  left: 5px;
  border-top: 5px solid transparent;
  border-left: 5px solid #65b1c4;
  border-bottom: 5px solid transparent;
  transition: 0.3s ease-out;
}
.tabContent ul li:hover::before {
  left: 15px;
}
.tabContent ul li.news_icon a::before {
  content: "NEW";
  width: 2.5em;
  height: 1.5em;
  line-height: 1.5em;
  text-align: center;
  position: absolute;
  top: 4px;
  left: 0px;
  border: none;
  background-color: #e30000;
  color: #fff;
  font-size: 0.8em;
  padding: 0;
  border-radius: 3px;
}
.tabContent ul li.top_icon a::before {
  content: "TOP";
  width: 2.5em;
  height: 1.5em;
  line-height: 1.5em;
  text-align: center;
  position: absolute;
  top: 4px;
  left: 0px;
  border: none;
  background-color: #268725;
  color: #fff;
  font-size: 0.8em;
  padding: 0;
  border-radius: 3px;
}
.tabContent ul li span {
  display: inline-block;
  margin: 0 1em 0 0;
  color: #666;
}

.tabContent {
  display: none;
}

.active + .tabContent {
  display: block;
}

@media screen and (min-width: 767px) {
  .tabs {
    position: relative;
    overflow: hidden;
  }
  .tabItem {
    float: left;
  }
  .tabItem a {
    padding: 0 0.6em;
    height: 3em;
    line-height: 3em;
    text-align: center;
    font-size: 1.063em;
    border: none;
  }
  .tabItem a:after {
    display: none;
    border: none;
    right: auto;
    left: 50%;
    margin-left: -5px;
    width: 10px;
    height: 10px;
  }
  .tabItem.active a:after {
    display: block;
    transform: rotate(45deg);
    bottom: -5px;
    background-color: #7accd1;
  }
  .tabContent {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    clear: both;
    overflow: hidden;
    min-height: 15em;
  }
  .no-js .tabItem {
    float: none;
    display: block;
  }
  .no-js .tabContent {
    position: static;
    display: block;
    height: auto;
  }
}
/*第二個頁籤*/
.industrytab .tabItem {
  position: relative;
  display: block;
}

.industrytab .tabItem a {
  display: block;
  height: 2.8em;
  line-height: 2.8em;
  padding: 5px 2em 5px 4%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  border-top: 1px solid #fff;
  text-decoration: none;
  font-size: 1.313em;
  background: #3577bd;
  color: #fff;
  transition: 0.5s;
}

.industrytab .tabItem.active a,
.industrytab .tabItem.active a:hover,
.industrytab .tabItem.active a:focus {
  background-color: #0f508c;
  color: #fff;
}

.industrytab .tabItem:first-child a {
  border: none;
}

.industrytab .tabItem a:hover,
.industrytab .tabItem a:focus {
  text-decoration: none;
  background-color: #0f508c;
  color: #fff;
  outline: none;
}

.industrytab .tabItem a:after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 1.1em;
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  transform: rotate(45deg);
  z-index: 9;
  border-left: none;
  border-top: none;
  transition: transform 0.5s 0.5s;
}

.industrytab .tabItem.active a:after {
  transform: rotate(225deg);
  bottom: 0.7em;
}

.industrytab .tabItem.active a:focus {
  color: #fff;
}

.industrytab .tabContent {
  position: static;
  display: none;
  padding: 1em 0 0.8em;
  background-color: #0f508c;
  background-image: url(../images/industrybg.jpg);
  background-repeat: no-repeat;
  background-position: right top;
}

.industrytab .active .tabContent {
  display: block;
}

.industrytab .tabContent ul.leftblock {
  list-style-type: none;
  margin: 0 15px 15px;
  padding: 0;
  line-height: 1.6em;
}
.industrytab .tabContent ul.leftblock li {
  margin: 0.5em 0;
  padding: 0 30px 0 25px;
  display: block;
  border-bottom: 1px dashed #89a9c7;
  position: relative;
  text-align: left;
  font-size: 1.125em;
  font-weight: normal;
}
.industrytab .tabContent ul.leftblock li a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: auto;
  color: #fff;
}
.industrytab .tabContent ul.leftblock li a:hover, .industrytab .tabContent ul.leftblock li a:focus {
  color: #ff6;
  text-decoration: none;
}
.industrytab .tabContent ul.leftblock li::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 8px;
  left: 5px;
  background-color: #fff;
  border-radius: 50%;
  border: none;
}
.industrytab .tabContent ul.rightblock {
  list-style-type: none;
  margin: 0 15px 15px;
  padding: 0;
  line-height: 1.6em;
}
.industrytab .tabContent ul.rightblock li {
  margin: 0.5em 0;
  padding: 0;
  display: block;
  position: relative;
  text-align: left;
  font-size: 1.125em;
  font-weight: normal;
  border-bottom: none;
}
.industrytab .tabContent ul.rightblock li a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: auto;
  color: #000;
  background-color: #eee;
  padding: 7px 20px;
  box-shadow: 2px 2px 2px #333;
}
.industrytab .tabContent ul.rightblock li a:hover, .industrytab .tabContent ul.rightblock li a:focus {
  background-color: #fff;
  text-decoration: none;
}
.industrytab .tabContent ul.rightblock li::before {
  content: "";
  width: 0;
  height: 0;
  display: none;
  border: none;
}
.industrytab .tabContent .more {
  text-align: left;
  margin-bottom: 30px;
}
.industrytab .tabContent .more a {
  background-color: #3577bd;
  color: #fff;
  padding: 5px 40px 5px 20px;
  margin: 0 0 0 15px;
  border-radius: 50px;
  position: relative;
}
.industrytab .tabContent .more a:after {
  content: "";
  width: 11px;
  height: 11px;
  border: 2px solid #fff;
  display: block;
  position: absolute;
  right: 15px;
  top: 10px;
  transform: rotate(45deg);
  border-left: none;
  border-bottom: none;
}
.industrytab .tabContent .more a:hover {
  background-color: #26a0e6;
}

.industrytab .tabContent {
  display: none;
}

.industrytab .active + .tabContent {
  display: block;
}

@media screen and (min-width: 767px) {
  .tabs {
    position: relative;
    overflow: hidden;
  }
  .industrytab .tabItem {
    float: left;
    position: relative;
  }
  .industrytab .tabItem:before {
    content: "";
    width: 2px;
    height: 58px;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    background-color: #fff;
    z-index: 999;
  }
  .industrytab > .tabItem:first-child:before {
    display: none;
  }
  .industrytab .tabItem a {
    padding: 0 0.6em;
    height: 3em;
    line-height: 3em;
    text-align: center;
    font-size: 1.25em;
    border: none;
  }
  .industrytab .tabItem a:after {
    display: none;
    border: none;
    right: auto;
    left: 50%;
    margin-left: -5px;
    width: 10px;
    height: 10px;
  }
  .industrytab .tabContent {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    clear: both;
    overflow: hidden;
    min-height: 16em;
  }
  .no-js .industrytab .tabItem {
    float: none;
    display: block;
  }
  .no-js .industrytab .tabContent {
    position: static;
    display: block;
    height: auto;
  }
}
/* 大圖輪播 */
.mp_banner {
  margin: 10px auto 0;
}
.mp_banner .Single_slider {
  max-width: 1150px;
  margin: 0 0 10px;
}
.mp_banner .Single_slider img {
  height: 99%;
}
@media (max-width: 1200px) and (min-width: 768px) {
  .mp_banner .Single_slider {
    max-width: 100%;
    /* margin: 10px  0px; */
  }
}
@media (max-width: 767px) {
  .mp_banner .Single_slider {
    max-width: 100%;
  }
}
@media screen and (orientation: landscape) {
  .mp_banner .Single_slider img {
    height: 100%;
  }
}
.mp_banner .Single_slider a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 2px solid #ffc000;
  display: none;
}
.mp_banner .Single_slider a:focus:before {
  display: block;
}
.mp_banner .Single_slider .slick-dots {
  bottom: -15px;
  margin: 0;
  text-align: left;
  padding-right: 140px;
  position: relative;
}
@media (max-width: 768px) {
  .mp_banner .Single_slider .slick-dots {
    display: none !important;
  }
}
.mp_banner .Single_slider .slick-dots li {
  margin: 0 4px 4px;
  float: left;
}
@media (max-width: 329px) {
  .mp_banner .Single_slider .slick-dots li {
    margin: 0 3px;
  }
}
.mp_banner .Single_slider .slick-dots li:nth-child(n+21) {
  display: none;
}
.mp_banner .Single_slider .slick-dots li button:before {
  font-size: 0.938em;
  opacity: 0.5;
}
.mp_banner .Single_slider .slick-dots li.slick-active button:before {
  opacity: 0.75;
}
.mp_banner .Single_slider .slick-prev {
  padding: 20px 0;
  left: 15px;
  z-index: 9;
  border-radius: 50%;
  transition: 0.3s ease-out;
  background: url("../images/basic/btn_left.png") center 10px no-repeat RGBA(0, 0, 0, 0.6);
  background-size: 60%;
}
@media (max-width: 767px) {
  .mp_banner .Single_slider .slick-prev {
    left: 15px;
  }
}
.mp_banner .Single_slider .slick-prev:hover, .mp_banner .Single_slider .slick-prev:focus {
  background: url("../images/basic/btn_left.png") center 10px no-repeat #367c8d;
  background-size: 60%;
}
.mp_banner .Single_slider .slick-next {
  padding: 20px 0;
  right: 15px;
  border-radius: 50%;
  transition: 0.3s ease-out;
  background: url("../images/basic/btn_right.png") center 10px no-repeat RGBA(0, 0, 0, 0.6);
  background-size: 60%;
}
@media (max-width: 767px) {
  .mp_banner .Single_slider .slick-next {
    right: 15px;
  }
}
.mp_banner .Single_slider .slick-next:hover, .mp_banner .Single_slider .slick-next:focus {
  background: url("../images/basic/btn_right.png") center 10px no-repeat #367c8d;
  background-size: 60%;
}
.mp_banner .Single_slider:hover .slick-prev {
  left: 15px;
}
.mp_banner .Single_slider:hover .slick-next {
  right: 15px;
}
.mp_banner .btn-more {
  display: block;
  width: 150px;
  border-color: #ddd;
  background-color: #ddd;
  color: #333;
  padding: 7px 0;
  font-size: 1em;
  margin: -5px auto 0;
  z-index: 99;
  float: right;
}
.mp_banner .btn-more:hover, .mp_banner .btn-more:focus {
  color: #fff !important;
  background-color: #367c8d;
}
@media (max-width: 767px) {
  .mp_banner .btn-more {
    float: none;
    margin: 0 auto;
  }
}
.mp_banner h2 {
  position: absolute;
  z-index: 999;
  color: #fff;
  bottom: -10px;
  left: 0%;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 1.75em;
  font-weight: 800;
  overflow: hidden;
  padding: 0px 30px;
  background: rgba(0, 0, 0, 0.7);
  font-weight: bold;
  line-height: 1.75em;
}
@media (max-width: 767px) {
  .mp_banner h2 {
    font-size: 1.2em;
  }
}
.mp_banner .slick-slide {
  width: 100%;
  z-index: 99;
  display: inline-block;
  vertical-align: middle;
  top: 0;
  left: 0;
}
.mp_banner .slick-slide::before {
  content: "";
  height: 100%;
  width: 1px;
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  z-index: 99;
}
.mp_banner .slick-slide img {
  width: 100%;
  max-height: 100%;
}

.no-js .mp_banner .Single_slider img {
  width: 100%;
}

.no-js .mp_banner .Single_slider > div {
  display: none;
}

.no-js .mp_banner .Single_slider div:first-child {
  display: block;
}

.no-js .mp_banner .btn-more {
  display: block;
}

.no-js .mp_banner .Single_slider div {
  position: relative;
}
.no-js .mp_banner .Single_slider div h2 {
  width: 100%;
}

.service h2 {
  font-size: 1.562em;
  padding: 0;
  color: #367c8d;
  margin: 0 0 23px 0;
  border-bottom: none;
  display: block;
  position: relative;
  z-index: 9;
  letter-spacing: 0.1em;
  position: relative;
}
.service h2 span {
  font-size: 1.75em;
  padding-right: 5px;
}
.service h2 span.redword {
  color: #e30000;
  animation-name: new;
  animation-duration: 1.5s;
  padding-right: 15px;
  position: relative;
}
.service h2 span.redword img {
  margin-top: -9px;
}
@keyframes new {
  from {
    margin-right: 200px;
  }
  to {
    margin-right: 0px;
  }
}
.service h2:before {
  content: "";
  width: 100%;
  height: 26px;
  background-color: #ddd;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.service .follow_news {
  margin-bottom: 10px;
}
.service .follow_news ul {
  margin: 1em 0 0.5em;
  padding: 0;
  list-style-type: none;
}
.service .follow_news ul li {
  border-bottom: 1px dotted #ccc;
}
.service .follow_news ul li a {
  display: block;
  padding: 10px 30px 10px 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: auto;
  color: #333;
  font-size: 1em;
}
.service .follow_news ul li a:before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top: 14px;
  left: 5px;
  border-top: 5px solid transparent;
  border-left: 5px solid #65b1c4;
  border-bottom: 5px solid transparent;
  transition: 0.3s ease-out;
}
.service .follow_news ul li a:hover {
  color: #e30000;
}
.service .follow_news .more {
  text-align: right;
  margin-bottom: 15px;
}
.service .follow_news .more a {
  padding: 0;
  background-color: #ddd;
  color: #333;
  padding: 5px 15px;
  border-radius: 5px;
  transition: 0.5s;
}
.service .follow_news .more a:hover, .service .follow_news .more a:focus {
  background-color: #214b56;
  color: #fff;
}
.service .servicebanner {
  margin-bottom: 10px;
}
.service .servicebanner img {
  width: 100%;
}
.service .row > .col-md-6:first-child {
  padding-right: 0;
}
@media (max-width: 992px) {
  .service .row > .col-md-6:first-child {
    padding-right: 15px;
  }
}
.service ul {
  padding: 0;
  margin: 0;
  text-align: center;
  overflow: hidden;
}
.service ul li {
  display: block;
  margin: 0px 0 5px 0px;
}
@media (max-width: 767px) {
  .service ul li {
    margin: 0px auto 10px;
    float: none;
  }
}
.service ul li a {
  display: block;
  color: #fff;
  padding: 15px 10px 15px 50px;
  text-align: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  font-size: 1.125em;
  line-height: 1.2em;
  transition: 0.3s ease-out;
}
.service ul li.n01 a {
  background-image: url(../images/service_icon01.png);
  background-repeat: no-repeat;
  background-position: 10px 10px;
  background-color: #367c8d;
}
.service ul li.n01 a:hover, .service ul li.n01 a:focus {
  background: #285c68;
  background-image: url(../images/service_icon01.png);
  background-repeat: no-repeat;
  background-position: 10px 10px;
}
.service ul li.n02 a, .service ul li.n03 a {
  background-image: url(../images/service_icon02.png);
  background-repeat: no-repeat;
  background-position: 10px 15px;
  background-color: #268725;
  padding: 7px 10px 10px 50px;
}
.service ul li.n02 a:hover, .service ul li.n02 a:focus, .service ul li.n03 a:hover, .service ul li.n03 a:focus {
  background: #1b5f1a;
  background-image: url(../images/service_icon02.png);
  background-repeat: no-repeat;
  background-position: 10px 15px;
}
@media (max-width: 992px) {
  .service ul li.n02 a, .service ul li.n03 a {
    padding: 15px 10px 15px 50px;
  }
}
.service ul li.n03 a {
  background-image: url(../images/service_icon03.png);
}
.service ul li.n03 a:hover, .service ul li.n03 a:focus {
  background-image: url(../images/service_icon03.png);
}
.service ul li.n04 a, .service ul li.n05 a, .service ul li.n06 a {
  background-image: url(../images/service_icon04.png);
  background-repeat: no-repeat;
  background-position: 10px 10px;
  background-color: #be5500;
  position: relative;
  padding: 18px 80px 17px 50px;
}
.service ul li.n04 a:hover, .service ul li.n04 a:focus, .service ul li.n05 a:hover, .service ul li.n05 a:focus, .service ul li.n06 a:hover, .service ul li.n06 a:focus {
  background-color: #b00000;
  background-image: url(../images/service_icon04.png);
  background-repeat: no-repeat;
}
.service ul li.n04 a:hover i, .service ul li.n04 a:focus i, .service ul li.n05 a:hover i, .service ul li.n05 a:focus i, .service ul li.n06 a:hover i, .service ul li.n06 a:focus i {
  right: 0px;
}
.service ul li.n04 a:before, .service ul li.n05 a:before, .service ul li.n06 a:before {
  content: "";
  width: 100px;
  height: 100%;
  background-color: #b00000;
  position: absolute;
  right: -20px;
  top: 0;
  transform: skewX(40deg);
}
@media (max-width: 1199px) {
  .service ul li.n04 a:before, .service ul li.n05 a:before, .service ul li.n06 a:before {
    right: -50px;
  }
}
@media (max-width: 991px) {
  .service ul li.n04 a:before, .service ul li.n05 a:before, .service ul li.n06 a:before {
    right: -20px;
  }
}
.service ul li.n04 a:after, .service ul li.n05 a:after, .service ul li.n06 a:after {
  content: "NEW";
  font-size: 1.5em;
  color: #fff;
  position: absolute;
  right: 5px;
  bottom: 15px;
}
@media (max-width: 1199px) {
  .service ul li.n04 a:after, .service ul li.n05 a:after, .service ul li.n06 a:after {
    font-size: 1em;
    top: 10px;
    bottom: auto;
  }
}
@media (max-width: 991px) {
  .service ul li.n04 a:after, .service ul li.n05 a:after, .service ul li.n06 a:after {
    font-size: 1.5em;
    top: auto;
    bottom: 15px;
  }
}
.service ul li.n05 a {
  background-image: url(../images/service_icon05.png);
  background-position: 10px 14px;
}
.service ul li.n05 a:hover, .service ul li.n05 a:focus {
  background-image: url(../images/service_icon05.png);
}
.service ul li.n06 a {
  background-image: url(../images/service_icon06.png);
  background-position: 10px 14px;
}
.service ul li.n06 a:hover, .service ul li.n06 a:focus {
  background-image: url(../images/service_icon06.png);
}

.servicebanner {
  max-width: 1150px;
}
.servicebanner img {
  height: 99%;
}
@media (max-width: 1200px) and (min-width: 768px) {
  .servicebanner {
    max-width: 100%;
    /* margin: 10px  0px; */
  }
}
@media (max-width: 767px) {
  .servicebanner {
    max-width: 100%;
    /* margin-top: 20px;
            margin-bottom: 30px; */
  }
}
@media screen and (orientation: landscape) {
  .servicebanner img {
    height: 100%;
  }
}
.servicebanner a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 2px solid #ffc000;
  display: none;
}
.servicebanner a:focus:before {
  display: block;
}
.servicebanner .slick-dots {
  bottom: -40px;
  margin: 0;
}
.servicebanner .slick-dots li button:before {
  font-size: 0.938em;
  opacity: 0.5;
}
.servicebanner .slick-dots li.slick-active button:before {
  opacity: 0.75;
}
.servicebanner .slick-prev {
  padding: 20px 0;
  left: 15px;
  z-index: 9;
  border-radius: 50%;
  transition: 0.3s ease-out;
  background-image: url("../images/basic/btn_left.png");
  background-repeat: no-repeat;
  background-position: center 10px;
  background-size: 80%;
}
@media (max-width: 767px) {
  .servicebanner .slick-prev {
    left: 15px;
  }
}
.servicebanner .slick-prev:hover, .servicebanner .slick-prev:focus {
  background-image: url("../images/basic/btn_left.png");
  background-repeat: no-repeat;
  background-position: center 10px;
  background-size: 80%;
}
.servicebanner .slick-next {
  padding: 20px 0;
  right: 15px;
  border-radius: 50%;
  transition: 0.3s ease-out;
  background-image: url("../images/basic/btn_right.png");
  background-repeat: no-repeat;
  background-position: center 10px;
  background-size: 80%;
}
@media (max-width: 767px) {
  .servicebanner .slick-next {
    right: 15px;
  }
}
.servicebanner .slick-next:hover, .servicebanner .slick-next:focus {
  background-image: url("../images/basic/btn_right.png");
  background-repeat: no-repeat;
  background-position: center 10px;
  background-size: 80%;
}
.servicebanner:hover .slick-prev {
  left: 15px;
}
.servicebanner:hover .slick-next {
  right: 15px;
}

/* 主題宣導 */
.Subject_propaganda {
  margin: 10px 0 0 -10px;
  background-color: #4ea8ba;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 767px) {
  .Subject_propaganda {
    margin: 10px 0 0 0px;
  }
}
.Subject_propaganda img {
  width: 100%;
}
@media (max-width: 767px) {
  .Subject_propaganda img {
    width: auto;
  }
}
@media (max-width: 480px) {
  .Subject_propaganda img {
    width: 100%;
  }
}

/* fbblock */
.fbblock {
  margin: 10px auto 0;
  width: 340px;
  height: 352px;
  float: right;
}
@media (max-width: 1200px) and (min-width: 992px) {
  .fbblock {
    float: right;
    width: 310px;
    height: 290px !important;
    overflow: hidden;
  }
}
@media (max-width: 991px) {
  .fbblock {
    float: none;
    clear: both;
    margin: 30px auto 0;
    width: 340px;
  }
}
@media (max-width: 480px) {
  .fbblock {
    float: none;
    clear: both;
    margin: 30px auto 0;
    width: 100% !important;
  }
}
.fbblock iframe,
.fbblock iframe[style] {
  width: 340px;
  height: 352px;
}
@media (max-width: 1200px) and (min-width: 992px) {
  .fbblock iframe,
  .fbblock iframe[style] {
    width: 310px;
    height: 290px !important;
  }
}
@media (max-width: 991px) {
  .fbblock iframe,
  .fbblock iframe[style] {
    width: 340px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .fbblock iframe,
  .fbblock iframe[style] {
    width: 100% !important;
    margin: 0 auto;
  }
}

/* 教育宣導 */
.education_block {
  background-image: url("../images/education_bg.jpg");
  background-repeat: repeat;
  background-position: center top;
  background-size: 100% 100%;
}
.education_block .container {
  position: relative;
}
.education_block .container h2 {
  position: absolute;
  left: 50%;
  top: 8em;
  width: 5em;
  margin-left: -2.5em;
  font-size: 1.875em;
  line-height: 1.2em;
  color: #333;
  z-index: 99;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 991px) {
  .education_block .container h2 {
    font-size: 1.687em;
  }
}
@media (max-width: 767px) {
  .education_block .container h2 {
    position: relative;
    top: 0;
    left: auto;
    text-align: center;
    font-size: 2em;
    margin: 0;
    width: auto;
    padding: 15px 0 25px;
    background-color: #fff;
  }
  .education_block .container h2::before {
    content: "";
    height: 1px;
    width: 50%;
    background: #367c8d;
    margin: 0px auto;
    z-index: 9;
    position: absolute;
    left: 50%;
    margin-left: -20%;
    bottom: 25px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .education_block .container h2::before {
    margin-left: -25%;
  }
}
.education_block .col-xs-1,
.education_block .col-sm-1,
.education_block .col-md-1,
.education_block .col-lg-1,
.education_block .col-xs-2,
.education_block .col-sm-2,
.education_block .col-md-2,
.education_block .col-lg-2,
.education_block .col-xs-3,
.education_block .col-sm-3,
.education_block .col-md-3,
.education_block .col-lg-3,
.education_block .col-xs-4,
.education_block .col-sm-4,
.education_block .col-md-4,
.education_block .col-lg-4,
.education_block .col-xs-5,
.education_block .col-sm-5,
.education_block .col-md-5,
.education_block .col-lg-5,
.education_block .col-xs-6,
.education_block .col-sm-6,
.education_block .col-md-6,
.education_block .col-lg-6,
.education_block .col-xs-7,
.education_block .col-sm-7,
.education_block .col-md-7,
.education_block .col-lg-7,
.education_block .col-xs-8,
.education_block .col-sm-8,
.education_block .col-md-8,
.education_block .col-lg-8,
.education_block .col-xs-9,
.education_block .col-sm-9,
.education_block .col-md-9,
.education_block .col-lg-9,
.education_block .col-xs-10,
.education_block .col-sm-10,
.education_block .col-md-10,
.education_block .col-lg-10,
.education_block .col-xs-11,
.education_block .col-sm-11,
.education_block .col-md-11,
.education_block .col-lg-11,
.education_block .col-xs-12,
.education_block .col-sm-12,
.education_block .col-md-12,
.education_block .col-lg-12 {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 480px) {
  .education_block .col-xs-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .education_block .blocknone {
    display: none;
  }
}
.education_block .education {
  height: 9em;
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: rgba(148, 205, 137, 0.8);
  font-size: 1.25em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.education_block .education > a {
  display: block;
  flex: 0 0 auto;
  padding: 0;
}
.education_block .education:hover .educationlist, .education_block .education:focus .educationlist {
  top: 0;
}
.education_block .education.nodatablock {
  background-color: rgba(255, 255, 255, 0.8);
}
.education_block .education .title {
  font-weight: 700;
  color: #333;
  flex: 0 0 auto;
  flex-basis: 80%;
}
.education_block .education .educationlist {
  position: absolute;
  top: 9em;
  bottom: 0px;
  left: 0;
  width: 100%;
  background-color: #ffce0b;
  transition: 0.5s ease-out;
  padding: 0;
}
.education_block .education .educationlist ul {
  margin: 8px 20px 10px;
  padding: 0;
}
.education_block .education .educationlist ul li {
  height: auto;
  width: auto;
  float: none;
  font-size: 0.813em;
  text-align: left;
  background-color: transparent;
  list-style: none;
  border-bottom: 1px solid #fff;
}
.education_block .education .educationlist ul li a {
  background-image: url("../images/link_icon01.png");
  background-repeat: no-repeat;
  background-position: 15px 13px;
  display: block;
  padding: 0px 0 0px 30px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.education_block .education .educationlist ul li a:hover {
  color: #333;
  background-color: #eee;
}
.education_block .education .educationlist .more {
  font-size: 0.813em;
  margin: 0 20px;
  min-width: 60px;
  float: right;
}
.education_block .education .educationlist .more a {
  color: #fff;
  display: block;
  padding: 2px 8px;
  background-color: #666;
  border-radius: 50px;
}
.education_block .education .educationlist .more a:hover {
  text-decoration: underline;
}
.education_block .education img {
  margin: 20px 0 0px;
}

@media (min-width: 768px) {
  .education_block .container .row div:nth-of-type(2) .education,
  .education_block .container .row div:nth-of-type(4) .education,
  .education_block .container .row div:nth-of-type(6) .education,
  .education_block .container .row div:nth-of-type(8) .education {
    background-color: #41b6bd;
  }
}
@media (max-width: 767px) and (min-width: 481px) {
  .education_block .container .row div:nth-of-type(2) .education,
  .education_block .container .row div:nth-of-type(3) .education,
  .education_block .container .row div:nth-of-type(7) .education,
  .education_block .container .row div:nth-of-type(8) .education {
    background-color: #41b6bd;
  }
}
@media (max-width: 480px) {
  .education_block .container .row div:nth-of-type(2) .education,
  .education_block .container .row div:nth-of-type(4) .education,
  .education_block .container .row div:nth-of-type(7) .education,
  .education_block .container .row div:nth-of-type(9) .education {
    background-color: #41b6bd;
  }
}
/* ----------------社區知情權  */
.communityblock {
  padding: 50px 0;
  margin: 0 auto;
  background-color: #fff;
  text-align: center;
  background-image: url(../images/community_bg.png);
  background-repeat: no-repeat;
  background-position: center 150px;
}
@media (max-width: 1200px) and (min-width: 992px) {
  .communityblock {
    background-size: 350px;
    background-position: center 180px;
  }
}
@media (max-width: 991px) and (min-width: 767px) {
  .communityblock {
    background-size: auto;
    background-position: 95% 150px;
  }
}
@media (max-width: 767px) {
  .communityblock {
    padding: 50px 0;
    background-image: none;
  }
}
.communityblock h2 {
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .communityblock h2 img {
    width: 90%;
    margin: 0 auto;
  }
}
.communityblock .contentblock {
  text-align: left;
  height: 22em;
  width: 85%;
  margin: 0 auto 1em;
}
@media (max-width: 1200px) {
  .communityblock .contentblock {
    height: auto;
  }
}
@media (max-width: 991px) {
  .communityblock .contentblock {
    height: 22em;
  }
}
@media (max-width: 767px) {
  .communityblock .contentblock {
    height: auto;
    margin: 0 0 1em;
    width: auto;
  }
}
.communityblock .contentblock h3 {
  font-size: 1.375em;
  color: #367c8d;
  margin: 0;
  padding: 0;
  font-weight: 400;
}
.communityblock .contentblock ul {
  margin: 0;
  padding: 0;
}
.communityblock .contentblock ul li {
  border-bottom: 1px solid #c9c9c9;
  list-style-type: none;
}
.communityblock .contentblock ul li a {
  display: block;
  padding: 5px 5px 5px 25px;
  background-image: url(../images/community_icon02.png);
  background-repeat: no-repeat;
  background-position: 5px 15px;
}
.communityblock .contentblock ul li a:hover {
  color: #333;
  background-color: #ffc;
}
.communityblock .know {
  background-color: #dcdcdc;
  border-radius: 200px;
  clear: both;
  padding: 20px 30px 10px;
  overflow: hidden;
  text-align: center;
  position: relative;
  margin: 0 20px 20px;
}
@media (max-width: 992px) {
  .communityblock .know {
    border-radius: 10px;
  }
}
.communityblock .know .image {
  float: left;
  margin-right: 20px;
  width: 230px;
}
@media (max-width: 900px) {
  .communityblock .know .image {
    float: none;
    margin: 0 auto 15px;
  }
}
.communityblock .know p {
  float: left;
  display: inline-block;
  width: 55%;
  text-align: left;
}
@media (max-width: 992px) {
  .communityblock .know p {
    width: 68%;
  }
}
@media (max-width: 900px) {
  .communityblock .know p {
    width: 90%;
    margin: 0 auto 15px;
    text-align: center;
  }
}
.communityblock .know .more {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 120px;
}
@media (max-width: 992px) {
  .communityblock .know .more {
    position: relative;
    top: auto;
    right: auto;
    float: right;
    margin: 0px 40px 10px 0;
  }
}
@media (max-width: 900px) {
  .communityblock .know .more {
    float: none;
    margin: 0 auto 20px;
  }
}
.communityblock .know .more a {
  background-color: #214b56;
  color: #fff;
  display: block;
  padding: 5px 10px;
  border-radius: 30px;
}
.communityblock .know .more a:hover {
  background-color: #154b15;
}

.common_links {
  background-color: #cff6f8;
  padding: 30px 0;
  text-align: center;
}
.common_links h2 {
  text-align: center;
  font-size: 1.5em;
  padding: 0 0 5px;
  color: #000;
  margin: 0 0 40px 0;
  border-bottom: 1px solid #367c8d;
  display: inline-block;
  position: relative;
  z-index: 999;
}
.common_links .linkblock {
  margin-bottom: 30px;
  overflow: hidden;
}
.common_links .linkblock .links {
  padding: 0px !important;
  margin: 0 5px 10px;
  position: relative;
  height: 400px;
}
@media (max-width: 767px) {
  .common_links .linkblock .links {
    height: auto;
  }
}
.common_links .linkblock .links:before {
  content: "";
  width: 1px;
  min-height: 480px;
  position: absolute;
  top: 0;
  left: -20px;
  display: block;
  background-color: #fff;
}
.common_links .linkblock .links h3 {
  text-align: center;
  font-size: 1.25em;
  margin: 0 0 20px 0;
  padding: 8px 12px;
  color: #1e454e;
  line-height: 140%;
  background-color: #fff;
  border-radius: 50px;
}
.common_links .linkblock .links ul {
  margin: 0px;
  padding: 0;
  list-style: none;
  text-align: left;
}
.common_links .linkblock .links ul li {
  margin-bottom: 10px;
}
.common_links .linkblock .links ul li a {
  display: block;
  padding: 0 10px 0 18px;
  background-image: url("../images/common_links_icon.png");
  background-repeat: no-repeat;
  background-position: 0px 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  line-height: 140%;
}
.common_links .linkblock .links ul li a:hover {
  color: #154b15;
  white-space: normal;
  overflow: visible;
}
.common_links .btn-more {
  clear: both;
  background-color: #c3c3c3;
  color: #333;
}
@media (max-width: 767px) {
  .common_links .btn-more {
    width: 100%;
  }
}
.common_links .btn-more:hover, .common_links .btn-more:focus {
  color: #fff !important;
  border-color: #132b31;
  background-color: #214b56;
}

.common_links .linkblock > .col-md-3:first-child .links:before {
  width: 0px;
}
@media (max-width: 992px) {
  .common_links .linkblock > .col-md-3 .links:before {
    min-height: 380px;
  }
  .common_links .linkblock > .col-md-3:nth-child(3) .links:before {
    width: 0px;
  }
}
@media (max-width: 767px) {
  .common_links .linkblock > .col-md-3 .links {
    margin-bottom: 30px;
  }
  .common_links .linkblock > .col-md-3 .links:before {
    width: 0px;
  }
}

/* 跑馬燈區塊 */
.marqueeblock {
  background-color: #ec4d30;
  border-radius: 5px;
  width: 100%;
  height: 40px;
  padding: 5px 15px;
}
@media (max-width: 767px) {
  .marqueeblock {
    margin-top: 15px;
  }
}
.marqueeblock .marqueestyle {
  width: 100%;
  height: 30px;
}
.marqueeblock .marqueestyle ul {
  margin: 0 0 0 10px;
  padding: 0;
  list-style: none;
}
.marqueeblock .marqueestyle ul li {
  font-size: 1.123em;
  margin-bottom: 10px;
  color: #fff;
}
.marqueeblock .marqueestyle ul li a {
  color: #fff;
  overflow: hidden;
  display: block;
  background-image: url("../images/marquee_icon02.png");
  background-repeat: no-repeat;
  background-position: 0 10px;
  padding-left: 15px;
}
.marqueeblock .marqueestyle ul li a img {
  vertical-align: middle;
  margin: 0 5px 0 0;
}
.marqueeblock .marqueestyle ul li a:hover {
  text-decoration: underline;
}

.importantdata_block {
  background-color: #367c8d;
  padding: 30px 0 0;
}
.importantdata_block .btn-more {
  display: none;
}
.importantdata_block h2 {
  margin: 0;
  width: 4.8125em;
  font-size: 1.5em;
  color: #fff;
  font-weight: 500;
  text-align: center;
  background-image: url(../images/importantdata_icon01.png);
  background-position: center 20px;
  background-repeat: no-repeat;
  padding-top: 90px;
}
@media (max-width: 450px) {
  .importantdata_block h2 {
    margin: 0 auto 20px;
    width: 200px;
    height: auto;
    padding: 10px 0 20px 50px;
    background-position: left top;
  }
}
@media (max-width: 450px) {
  .importantdata_block .col-xs-2,
  .importantdata_block .col-xs-10 {
    width: 100%;
  }
}
.importantdata_block .importantdata_content {
  color: #fff;
}
.importantdata_block .importantdata_content a {
  display: block;
}
.importantdata_block .importantdata_content .slick-prev {
  left: -55px;
  top: 70px;
}
.importantdata_block .importantdata_content .slick-next {
  right: -20px;
  top: 70px;
}
@media (max-width: 1199px) {
  .importantdata_block .importantdata_content {
    margin-left: 30px;
    margin-right: 10px;
  }
}
@media (max-width: 900px) {
  .importantdata_block .importantdata_content {
    margin-left: 60px;
    margin-right: 40px;
  }
}
@media (max-width: 800px) {
  .importantdata_block .importantdata_content {
    margin-left: 80px;
    margin-right: 20px;
  }
}
@media (max-width: 700px) {
  .importantdata_block .importantdata_content {
    margin-left: 100px;
    margin-right: 0px;
  }
  .importantdata_block .importantdata_content .slick-next {
    right: 10px;
  }
}
@media (max-width: 550px) {
  .importantdata_block .importantdata_content {
    margin-right: -10px;
  }
  .importantdata_block .importantdata_content .slick-next {
    right: -5px;
  }
}
@media (max-width: 450px) {
  .importantdata_block .importantdata_content {
    margin-left: 60px;
    margin-right: 0px;
  }
  .importantdata_block .importantdata_content .slick-next {
    right: 0px;
  }
}
@media (max-width: 350px) {
  .importantdata_block .importantdata_content {
    margin-left: 50px;
    margin-right: 0px;
  }
  .importantdata_block .importantdata_content .slick-next {
    right: -10px;
  }
}
.importantdata_block .importantdata_content > div {
  text-align: center;
  font-size: 1.125em;
}
.importantdata_block .importantdata_content .data {
  padding: 15px 5px 0px;
  margin-bottom: 0px;
}
.importantdata_block .importantdata_content .data em {
  font-size: 2.8em;
  font-style: normal;
  margin-right: 5px;
}
.importantdata_block .importantdata_content .data span {
  display: block;
  line-height: 1.25em;
}
.importantdata_block .importantdata_content a {
  color: #fff;
  width: 85%;
  border: 1px solid #fff;
  padding: 10px 0;
  min-height: 7em;
}

.no-js .importantdata_block {
  padding: 30px 0;
}
.no-js .importantdata_block .btn-more {
  display: block;
  clear: both;
  float: none;
}

.no-js .importantdata_content {
  margin-bottom: 20px;
  overflow: hidden;
}
.no-js .importantdata_content > div {
  display: none;
}
.no-js .importantdata_content > div a {
  float: left;
  margin-right: 10px;
}
.no-js .importantdata_content > div:nth-child(1),
.no-js .importantdata_content > div:nth-child(2),
.no-js .importantdata_content > div:nth-child(3),
.no-js .importantdata_content > div:nth-child(4) {
  display: block;
}

.recommend_block {
  background-color: #cff6f8;
  padding: 30px 0 0;
}
.recommend_block .btn-more {
  display: none;
}
.recommend_block h2 {
  margin: 0;
  width: 4.8125em;
  font-size: 1.5em;
  color: #214b56;
  font-weight: 500;
  text-align: center;
  background-image: url(../images/recommend_title.png);
  background-position: center 20px;
  background-repeat: no-repeat;
  padding-top: 90px;
}
@media (max-width: 450px) {
  .recommend_block h2 {
    margin: 0 auto 20px;
    width: 200px;
    height: auto;
    padding: 10px 0 20px 50px;
    background-position: left top;
  }
}
@media (max-width: 450px) {
  .recommend_block .col-xs-2,
  .recommend_block .col-xs-10 {
    width: 100%;
  }
}
.recommend_block .recommend_content {
  color: #fff;
}
.recommend_block .recommend_content a {
  color: #fff;
  display: block;
}
.recommend_block .recommend_content .slick-prev {
  left: -55px;
  top: 70px;
}
.recommend_block .recommend_content .slick-next {
  right: -20px;
  top: 70px;
}
@media (max-width: 1199px) {
  .recommend_block .recommend_content {
    margin-left: 30px;
    margin-right: 10px;
  }
}
@media (max-width: 900px) {
  .recommend_block .recommend_content {
    margin-left: 60px;
    margin-right: 40px;
  }
}
@media (max-width: 800px) {
  .recommend_block .recommend_content {
    margin-left: 80px;
    margin-right: 20px;
  }
}
@media (max-width: 700px) {
  .recommend_block .recommend_content {
    margin-left: 100px;
    margin-right: 0px;
  }
  .recommend_block .recommend_content .slick-next {
    right: 15px;
  }
}
@media (max-width: 550px) {
  .recommend_block .recommend_content {
    margin-right: -10px;
  }
  .recommend_block .recommend_content .slick-next {
    right: 0px;
  }
}
@media (max-width: 450px) {
  .recommend_block .recommend_content {
    margin-left: 60px;
    margin-right: 0px;
  }
  .recommend_block .recommend_content .slick-next {
    right: 0px;
  }
}
@media (max-width: 350px) {
  .recommend_block .recommend_content {
    margin-left: 50px;
    margin-right: 0px;
  }
  .recommend_block .recommend_content .slick-next {
    right: 0px;
  }
}
.recommend_block .recommend_content > div {
  text-align: center;
  font-size: 1.125em;
}
.recommend_block .recommend_content > div .data {
  width: 170px;
  height: 170px;
  padding: 20px 15px 5px;
  margin: 0 0 10px 30px;
  background-color: #268725;
  border-radius: 50%;
  text-align: center;
  line-height: 1.1em;
  box-sizing: border-box;
}
@media (max-width: 700px) {
  .recommend_block .recommend_content > div .data {
    margin: 0 0 10px 20%;
  }
}
@media (max-width: 550px) {
  .recommend_block .recommend_content > div .data {
    margin: 0 0 10px 13%;
  }
}
@media (max-width: 450px) {
  .recommend_block .recommend_content > div .data {
    margin: 0 0 10px 20%;
  }
}
@media (max-width: 380px) {
  .recommend_block .recommend_content > div .data {
    margin: 0 0 10px 10%;
  }
}
.recommend_block .recommend_content > div .data img {
  width: 70px;
  height: 60px;
  margin: 0 auto 10px;
}
.recommend_block .recommend_content > div .data span {
  display: block;
}
.recommend_block .recommend_content > div .oddblock {
  background-color: #3577bd;
}

.no-js .recommend_block {
  padding: 30px 0;
}
.no-js .recommend_block .btn-more {
  display: block;
  clear: both;
  float: none;
}

.no-js .recommend_content {
  margin-bottom: 20px;
  overflow: hidden;
}
.no-js .recommend_content > div {
  display: none;
}
.no-js .recommend_content > div a {
  float: left;
  margin-right: 10px;
}
.no-js .recommend_content > div:nth-child(1),
.no-js .recommend_content > div:nth-child(2),
.no-js .recommend_content > div:nth-child(3),
.no-js .recommend_content > div:nth-child(4) {
  display: block;
}

/*快捷列-*/
.fastlink {
  width: 95px;
  position: fixed;
  right: -65px;
  top: 170px;
  transition: 0.4s;
  z-index: 99999;
}

.fastlink_btn {
  float: left;
  width: 30px;
  position: absolute;
  top: 0px;
  left: 0;
}

.fastlink_btn a {
  text-align: center;
  background-color: #2c6e7e;
  font-weight: bold;
  display: block;
  color: #fff;
  padding: 10px 5px 40px;
  text-decoration: none;
  width: 30px;
  border-radius: 5px 0 0 5px;
  line-height: 1.4em;
  position: relative;
}

.fastlink_btn a:after {
  content: "";
  background-color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 13px;
  left: 7px;
  z-index: 99;
}

.fastlink_btn a:before {
  content: "";
  border: 2px solid #2c6e7e;
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: 18px;
  left: 13px;
  z-index: 999;
  transform: rotate(-135deg);
  border-bottom: none;
  border-left: none;
}

.fastlink_btn a:hover {
  text-decoration: none;
}

.fastlink_btn2 {
  float: left;
  width: 30px;
  position: absolute;
  top: 0px;
  left: 0;
  display: none;
}

.fastlink_btn2 a {
  text-align: center;
  background-color: #367c8d;
  font-weight: bold;
  display: block;
  color: #fff;
  padding: 10px 5px 40px;
  text-decoration: none;
  width: 30px;
  border-radius: 5px 0 0 5px;
  line-height: 1.4em;
  position: relative;
}

.fastlink_btn2 a:after {
  content: "";
  background-color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 13px;
  left: 7px;
  z-index: 99;
}

.fastlink_btn2 a:before {
  content: "";
  border: 2px solid #367c8d;
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: 18px;
  left: 10px;
  z-index: 999;
  transform: rotate(45deg);
  border-bottom: none;
  border-left: none;
}

.fastlink_btn2 a:hover {
  text-decoration: none;
}

.fastlink ul {
  margin: 0 0 0 30px;
  padding: 7px 5px;
  width: 65px;
  background-color: #367c8d;
  text-align: center;
  border-radius: 0 0 0 5px;
}

.fastlink ul li {
  margin: 0 0 5px;
  list-style: none;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
}

.fastlink ul li:last-child {
  margin: 0;
  border: none;
}

.fastlink ul li a {
  display: block;
  padding: 5px;
  text-align: center;
  border-radius: 5px;
  font-size: 0.875em;
  color: #fff;
  line-height: 1.5em;
}

.fastlink ul li a.web {
  font-size: 0.813em;
}

.fastlink ul li a img {
  width: 30px;
  height: 30px;
  display: block;
  margin: 0 auto 5px;
}

.fastlink ul li a:hover {
  background-color: #194d5a;
  text-decoration: none;
}

.integrated_query {
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .integrated_query {
    flex-wrap: wrap;
  }
}
.integrated_query .query_block {
  flex: auto;
  padding: 20px 30px;
  display: flex;
  font-size: 1.25em;
  align-items: center;
  box-sizing: border-box;
  background-color: #367c8d;
  color: #fff;
  flex-wrap: wrap;
}
.integrated_query .query_block label {
  color: #fff;
  padding-top: 8px;
  padding-right: 15px;
}
.integrated_query .query_block .queryinput {
  background-color: #fff;
  border-radius: 4px;
  flex: auto;
  padding: 10px;
  display: flex;
}
.integrated_query .query_block .queryinput input[type=text] {
  border: none;
  font-size: 0.938em;
  flex: auto;
  color: #666;
}
.integrated_query .query_block .queryinput .btn {
  background-image: url(../images/basic/search_icon.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 30px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  flex: none;
  flex-basis: 45px;
  border-left: 1px solid #666;
  border-radius: 0;
  display: block;
}
.integrated_query .query_block .queryinput .btn:focus {
  outline: 2px solid #ffc000;
}
.integrated_query .query_more_block {
  background-color: #7accd1;
  flex: none;
  flex-basis: 200px;
  padding: 0;
  align-self: stretch;
  font-size: 1.25em;
}
@media (max-width: 600px) {
  .integrated_query .query_more_block {
    flex: auto;
    flex-basis: 100%;
  }
}
.integrated_query .query_more_block a {
  padding: 20px 30px;
  display: block;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.integrated_query .query_more_block a:after {
  content: "";
  border: 3px solid #333;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  width: 20px;
  height: 20px;
  right: 30px;
  transform: rotate(45deg);
  transition: 0.5s;
}
@media (max-width: 600px) {
  .integrated_query .query_more_block a:after {
    right: 35px;
  }
}
.integrated_query .query_more_block a:hover:after {
  right: 55px;
}

/*------------------------------------分類*/
.category {
  clear: both;
  margin: 0 0px 20px;
}
@media (max-width: 767px) {
  .category {
    margin: 0 0px 0px;
  }
}
.category h3 {
  font-size: 1.06em;
  float: left;
  margin: 5px 0 0;
  padding: 0;
  display: none;
}
.category ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.06em;
  overflow: hidden;
  _width: 98%;
}
.category ul li {
  line-height: 110%;
  float: left;
  margin: 0 6px 6px 0;
  padding: 0;
  background-position: right top;
  white-space: nowrap;
}
@media (max-width: 400px) {
  .category ul li {
    white-space: normal;
  }
}
.category ul li.here a {
  cursor: default;
  color: #fff;
  background-color: #268725;
  border-radius: 5px;
  position: relative;
  border: 1px solid #268725;
}
.category ul li a {
  display: inline-block;
  padding: 8px 12px 8px;
  text-decoration: none;
  background-color: #fff;
  color: #000;
  position: relative;
  border: 1px solid #999;
  border-radius: 5px;
}
.category ul li a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #268725;
  border: 1px solid #268725;
}

.list01 {
  clear: both;
  margin: 0px 0 30px;
  float: none;
}
.list01 ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list01 ul li {
  margin: 0 0 10px 0;
  padding: 7px 0 7px 45px;
  border-bottom: 1px dotted #666;
}
.list01 ul li a {
  color: #333;
}
.list01 ul li span {
  margin: 0 5px;
  color: #367c8d;
}
.list01 ul li span.number {
  width: 20px;
  margin: 0 15px 0 -35px;
  display: inline-block;
  color: #000;
  text-align: right;
}

/* ------------------說明區塊*/
.explanation {
  clear: both;
  background-color: #c6e9eb;
  padding: 20px;
  margin: 0 0 20px;
  border-radius: 5px;
}

/*-----------------------------listTb--*/
.listTb {
  clear: both;
  margin: 0 0 30px;
  padding: 0;
}
.listTb table {
  width: 100%;
  border: 1px solid #fff;
  margin-bottom: 20px;
}
.listTb table th {
  padding: 10px;
  color: #333;
  background-color: #e6e6e6;
  border: 1px solid #ccc;
  border-bottom-width: 2px;
  border-bottom-color: #ddd;
  text-align: center;
}
.listTb table td {
  padding: 10px;
  text-align: left;
  border: 1px solid #ccc;
}
.listTb table td a {
  color: #1a3b43;
}
.listTb table td.date {
  white-space: nowrap;
}
.listTb table .aCenter {
  text-align: center;
}
.listTb table .aRight {
  text-align: right;
}
.listTb table .map {
  margin: 0 10px 0 0;
}
.listTb table .map img {
  vertical-align: middle;
}

@media (max-width: 767px) {
  .listTb table {
    width: 100%;
  }
  .listTb table tr {
    margin: 0 0 20px 0;
    display: block;
  }
  .listTb table tr th {
    display: none;
  }
  .listTb table tr td {
    display: block;
    width: 100%;
    margin: -1px 0 0 0;
  }
  .listTb table tr td:nth-child(1) {
    width: 100%;
  }
  .listTb table tr td:nth-child(2) {
    width: 100%;
  }
  .listTb table tr td:before {
    content: attr(data-title) "：";
    display: inline-block;
    color: #666;
  }
  .listTb table tr td:empty {
    display: none;
  }
  .listTb table tr td.date {
    white-space: normal;
  }
  .listTb table .aCenter {
    text-align: left;
  }
  .listTb table .aRight {
    text-align: left;
  }
}
/*-------------------------listphoto01圖片燈箱*/
.listphoto01 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .listphoto01 {
    margin: 20px 0 0;
  }
}
.listphoto01 .row {
  display: flex;
  flex-wrap: wrap;
}
.listphoto01 .title {
  margin: 0 0.5em 0.5em;
  padding: 0;
  font-size: 1.2em;
  text-align: left;
  overflow: hidden;
  font-weight: bolder;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.3em;
  height: 2.6em;
}
.listphoto01 .fileformat {
  font-size: 0.938em;
  text-align: center;
  display: inline-block;
  background-color: #ddd;
  color: #333;
  padding: 0.1em 1em;
  border-radius: 50px;
}

.noscroll {
  overflow: hidden;
}

.single-portfolio {
  margin-bottom: 20px;
  position: relative;
}
.single-portfolio a {
  position: relative;
  display: block;
  color: #367c8d;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 1px 4px;
  border-radius: 5px;
  padding: 8px 8px 15px;
  width: 100%;
  height: 100%;
}
.single-portfolio a:hover {
  color: #e30000;
}
.single-portfolio a:hover .image img {
  opacity: 1;
  transform: scale(1.05, 1.05);
}
.single-portfolio .image {
  display: block;
  width: 100%;
  position: relative;
  height: auto;
  overflow: hidden;
  margin: 0 0 10px 0;
}
@media (max-width: 767px) {
  .single-portfolio .image {
    height: 250px;
  }
}
@media (max-width: 450px) {
  .single-portfolio .image {
    height: auto;
  }
}
.single-portfolio .image:after {
  padding-top: 66%;
  content: "";
  display: block;
}
.single-portfolio .image img {
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  opacity: 0.8;
  transition: 0.3s ease-out;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  box-sizing: border-box;
  -o-object-fit: cover;
     object-fit: cover;
}

.listphoto02 {
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .listphoto02 {
    margin-top: 20px;
  }
}
.listphoto02 ul {
  margin: 0;
  padding: 0;
}
.listphoto02 ul li {
  padding: 30px 0;
  list-style-type: none;
  border-bottom: 1px solid #ccc;
  overflow: hidden;
}
.listphoto02 ul li:first-child {
  padding-top: 0;
}
.listphoto02 ul li .image {
  float: left;
  margin-right: 20px;
  overflow: hidden;
  width: 350px;
  height: 200px;
  text-align: center;
}
.listphoto02 ul li .image img {
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 767px) {
  .listphoto02 ul li .image {
    float: none;
    margin-bottom: 20px;
    margin-right: 0;
  }
}
.listphoto02 ul li .data {
  margin-bottom: 15px;
  margin-top: 5px;
}
.listphoto02 ul li .data span {
  background-color: #666;
  color: #fff;
  padding: 5px 10px;
  margin-right: 10px;
  border-radius: 5px;
}
.listphoto02 ul li .title {
  font-size: 1.375em;
  margin: 0;
  padding: 0;
  font-weight: bolder;
}
.listphoto02 ul li .title a {
  color: #367c8d;
}
.listphoto02 ul li .content {
  overflow: hidden;
}
.listphoto02 ul li .assort {
  background-color: #268725;
  color: #fff;
  margin-bottom: 15px;
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
}

.listphoto03 {
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .listphoto03 {
    margin-top: 20px;
    clear: both;
  }
}
.listphoto03 ul {
  margin: 0;
  padding: 0;
}
.listphoto03 ul li {
  list-style: none;
  margin-bottom: 30px;
}
.listphoto03 ul li .date {
  background-color: #367c8d;
  border-radius: 5px;
  width: 100px;
  padding: 40px 0 10px 0px;
  text-align: center;
  color: #fff;
  float: left;
  margin-right: 20px;
  background-image: url("../images/calendarbg01.jpg");
  background-position: 0 top;
  background-repeat: no-repeat;
}
@media (max-width: 600px) {
  .listphoto03 ul li .date {
    width: 100%;
    background-image: url("../images/calendarbg02.jpg");
    background-repeat: repeat-x;
    border-radius: 0px;
  }
}
.listphoto03 ul li .date span {
  display: block;
}
@media (max-width: 600px) {
  .listphoto03 ul li .date {
    float: none;
    width: auto;
    margin-bottom: 0;
    margin-right: 0px;
  }
  .listphoto03 ul li .date span {
    display: inline-block;
    margin-right: 5px;
  }
}
.listphoto03 ul li .content {
  overflow: hidden;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
@media (max-width: 600px) {
  .listphoto03 ul li .content {
    border-radius: 0 0 5px 5px;
  }
}
.listphoto03 ul li .content .title {
  font-size: 1.375em;
  margin: 0 0 15px;
  padding: 0 0 7px;
  clear: both !important;
  line-height: 1.4em;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
}
.listphoto03 ul li .content .title a {
  color: #367c8d;
}
.listphoto03 ul li .content .title a:hover {
  color: #e30000;
  text-decoration: none;
}
.listphoto03 ul li .content .apply_btn {
  float: right;
  margin: 0 0 20px 10px;
}
@media (max-width: 400px) {
  .listphoto03 ul li .content .apply_btn {
    float: none;
    margin: 0 0 10px 0;
  }
}
.listphoto03 ul li .content .beau {
  margin: 0 0 7px;
  padding: 0 15px 0 0;
  color: #3577bd;
}
.listphoto03 ul li .content .beau span {
  background-color: #3577bd;
  border-radius: 5px;
  padding: 3px 15px;
  margin-right: 10px;
  color: #fff;
}
.listphoto03 ul li .content .location {
  margin: 0 0 15px;
  padding: 0 15px 0 0;
  color: #268725;
}
.listphoto03 ul li .content .location span {
  background-color: #268725;
  border-radius: 5px;
  padding: 3px 15px;
  margin-right: 10px;
  color: #fff;
}
.listphoto03 ul li .content p {
  clear: both;
  float: none;
}
.listphoto03 ul li .content .pic {
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.listphoto03 ul li .content .pic li {
  width: auto;
  margin: 0 15px 15px 0;
  padding: 0;
}
.listphoto03 ul li .content .pic li img {
  width: auto;
  height: 170px;
}
@media (max-width: 600px) {
  .listphoto03 ul li .content .pic li {
    margin: 0 0px 15px 0;
  }
  .listphoto03 ul li .content .pic li img {
    width: 100%;
    height: auto;
  }
}
.listphoto03 ul li .content .pic li a {
  color: #367c8d;
  position: relative;
}
.listphoto03 ul li .content .pic li a.more {
  display: block;
  padding-right: 25px;
  padding-left: 10px;
  font-weight: bolder;
  transition: 0.5s;
}
.listphoto03 ul li .content .pic li a.more:after {
  content: "";
  border: 8px solid #367c8d;
  border-bottom-color: transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  position: absolute;
  right: 0;
  top: 5px;
}
.listphoto03 ul li .content .pic li a.more:hover {
  padding-left: 20px;
  text-decoration: none;
  color: #e30000;
}
.listphoto03 ul li .content .pic li a.more:hover:after {
  border-left-color: #e30000;
}
.listphoto03 ul li .content iframe {
  width: 60%;
  height: 400px;
}
@media (max-width: 992px) {
  .listphoto03 ul li .content iframe {
    width: 100%;
    height: 400px;
  }
}

.statistical_interval {
  margin: 0 0 10px;
}
.statistical_interval label {
  margin: 0 5px 0 0;
}
.statistical_interval input[type=radio] {
  margin: 0 5px 0 0;
}
.statistical_interval span {
  margin-left: 20px;
}
.statistical_interval input[type=text] {
  margin: 0 5px 0 0;
  border: 1px solid #666;
  border-radius: 3px;
  padding: 2px 3px;
}
.statistical_interval input {
  width: auto;
}

.listphoto04 {
  margin-top: 10px;
}
.listphoto04 .themeblock {
  margin-bottom: 40px;
  display: flex;
}
.listphoto04 .themeblock a {
  display: block;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 7px 25px 0 rgba(0, 0, 0, 0.03), 0 4px 12px 0 rgba(0, 0, 0, 0.03);
  border-radius: 5px;
  transition: 0.2s;
  position: relative;
  background-color: #fff;
  min-height: 400px;
}
.listphoto04 .themeblock a:hover {
  text-decoration: none;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 7px 25px 0 rgba(0, 0, 0, 0.03), 0 4px 12px 0 rgba(0, 0, 0, 0.03);
}
.listphoto04 .themeblock a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 2px solid #ffc000;
  display: none;
  z-index: 999;
}
.listphoto04 .themeblock a:focus:before {
  display: block;
}
.listphoto04 .themeblock a .image {
  position: relative;
  height: 220px;
  background-color: #eee;
  display: block;
  z-index: 99;
}
.listphoto04 .themeblock a .image img {
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  opacity: 0.8;
  transition: 0.3s ease-out;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  box-sizing: border-box;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 480px) {
  .listphoto04 .themeblock a .image {
    height: auto;
  }
  .listphoto04 .themeblock a .image img {
    max-width: none;
    max-height: none;
    width: 100%;
    position: relative;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.listphoto04 .themeblock a span {
  margin: 0;
  padding: 15px;
  background-color: #fff;
  display: block;
  color: #333;
}
.listphoto04 .themeblock a span .title {
  margin: 0 0 10px;
  padding: 0;
  text-align: center;
  font-size: 1.25em;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 1.7em;
  height: 1.7em;
  font-weight: bold;
}
.listphoto04 .themeblock a span .extension {
  text-align: center;
  margin: 8px 0;
}
.listphoto04 .themeblock a span p {
  line-height: 1.7em;
  overflow: hidden;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  line-height: 1.7em;
  height: 8.5em;
}
.videoblock {
  text-align: right;
  padding-bottom: 20px;
  border-bottom: 1px dashed #ccc;
  margin-bottom: 30px;
  position: relative;
}
.videoblock .videotitle {
  width: 18%;
  float: left;
  background-color: #367c8d;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 1.125em;
  margin-right: 2%;
  border-radius: 5px;
}
@media (max-width: 600px) {
  .videoblock .videotitle {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    margin-top: 0px;
  }
}
.videoblock .video_list {
  margin-bottom: 15px;
  overflow: hidden;
  width: 80%;
  height: 202px;
  transition: 0.5s ease-out;
}
@media (max-width: 600px) {
  .videoblock .video_list {
    width: 100%;
    height: 290px;
  }
}
@media (max-width: 400px) {
  .videoblock .video_list {
    height: 200px;
  }
}
.videoblock .video_list.openul {
  height: auto;
}
.videoblock .video_list ul {
  margin: 0;
  padding: 0;
}
.videoblock .video_list li {
  list-style: none;
  width: 23%;
  float: left;
  margin: 0 1% 15px;
}
@media (max-width: 1200px) {
  .videoblock .video_list li {
    width: 31%;
    margin: 0 1.16% 15px;
  }
}
@media (max-width: 900px) {
  .videoblock .video_list li {
    width: 48%;
    margin: 0 1% 15px;
  }
}
@media (max-width: 600px) {
  .videoblock .video_list li {
    width: 100%;
    margin: 0 0 15px;
  }
}
.videoblock .video_list li a {
  border: none;
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  color: #333;
  box-sizing: border-box;
}
.videoblock .video_list li a .image {
  height: 120px;
  position: relative;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .videoblock .video_list li a .image {
    height: 220px;
  }
}
@media (max-width: 400px) {
  .videoblock .video_list li a .image {
    height: 120px;
  }
}
.videoblock .video_list li a .image img {
  margin: auto;
  width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.8;
  transition: 0.3s ease-out;
  display: block;
  box-sizing: border-box;
  -o-object-fit: cover;
     object-fit: cover;
}
.videoblock .video_list li a .title {
  margin: 0 5px;
  padding: 0;
  font-size: 1.063em;
  text-align: left;
  overflow: hidden;
  display: block;
  font-weight: bolder;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.3em;
  height: 2.6em;
}
.videoblock .video_list li a:hover {
  text-decoration: none !important;
}
.videoblock .video_list li a:hover img {
  opacity: 1;
  transform: scale(1.05, 1.05);
}
.videoblock .video_list li a:hover .title {
  text-decoration: none !important;
  color: #268725;
}
.videoblock .more {
  display: inline-block;
}
.videoblock .more a {
  border: 1px solid #ddd;
  padding: 5px 15px;
  text-align: center;
  border-radius: 5px;
  background-color: #ddd;
  transition: 0.5s;
}
.videoblock .more a:hover {
  background-color: #268725;
  color: #fff;
  border: 1px solid #268725;
  text-decoration: none;
}

.material_block {
  clear: both;
}
.material_block h2 {
  background-color: #367c8d;
  color: #fff;
  margin: 0 0 15px;
  padding: 5px 15px;
  border-radius: 5px;
}
.material_block .material_explain {
  margin: 0 0 15px 20px;
  padding: 0;
}
.material_block .material_explain li {
  margin-bottom: 0px;
  list-style: none;
  background-image: url("../images/link_icon01.png");
  background-repeat: no-repeat;
  background-position: 0 10px;
  padding: 0 0 0 20px;
}
.material_block .material_list_block {
  overflow: hidden;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
}
.material_block .material_list_block .material_list {
  width: 15.5%;
  margin: 0 0.58% 15px;
}
@media (max-width: 992px) {
  .material_block .material_list_block .material_list {
    width: 19%;
    margin: 0 0.5% 15px;
  }
}
@media (max-width: 767px) {
  .material_block .material_list_block .material_list {
    width: 23.5%;
    margin: 0 0.75% 15px;
  }
}
@media (max-width: 575px) {
  .material_block .material_list_block .material_list {
    width: 32%;
    margin: 0 0.66% 15px;
  }
}
@media (max-width: 480px) {
  .material_block .material_list_block .material_list {
    width: 48%;
    margin: 0 1% 15px;
  }
}
@media (max-width: 370px) {
  .material_block .material_list_block .material_list {
    width: 100%;
    margin: 0 0 15px;
  }
}
.material_block .material_list_block .material_list .list_box {
  height: 100%;
  margin: auto;
  text-align: center;
}
.material_block .material_list_block .material_list .list_box a {
  display: block;
  border-radius: 5px;
  height: 100%;
  border: 1px solid #ccc;
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
  padding: 5px 10px;
  transition: 0.5s;
}
.material_block .material_list_block .material_list .list_box a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #268725;
}
.material_block .comment {
  padding: 5px 35px;
  margin: 0 0 25px;
  text-align: right;
  background-color: #268725;
  border-radius: 20px;
  color: #fff;
  float: left;
}

/* ------------------化學物質燈箱 */
.material_lightbox {
  position: fixed;
  text-align: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: none;
}
.material_lightbox .overlay {
  position: fixed;
  text-align: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.6);
}
.material_lightbox .boxcontent {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  max-width: 60%;
  max-height: 70%;
  margin: auto;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 3px 3px 3px #333;
  z-index: 9999;
}
@media (max-width: 767px) {
  .material_lightbox .boxcontent {
    max-width: 90%;
    max-height: 90%;
  }
}
@media (max-width: 480px) {
  .material_lightbox .boxcontent {
    margin: auto;
  }
}
.material_lightbox .boxcontent h2 {
  background-image: url("../images/tab_bg01.jpg");
  background-repeat: repeat-x;
  background-position: 0 0;
  background-color: #367c8d;
  color: #fff;
  margin: 0;
  padding: 15px 55px 15px 15px;
  border-radius: 3px 3px 0 0;
  font-size: 1.25em;
  text-align: left;
  font-weight: normal;
  line-height: 1.3em;
}
.material_lightbox .boxcontent .boxclose {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 999999;
  cursor: pointer;
}
.material_lightbox .boxcontent .boxclose a {
  display: block;
  padding: 5px;
  background-color: #367c8d;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.material_lightbox .boxcontent .boxclose a:hover {
  background-color: #285c68;
}
.material_lightbox .boxcontent .boxclose a:focus {
  outline: 3px solid #fbdb65;
}
.material_lightbox .boxcontent .boxdata {
  margin: 0;
  padding: 20px;
  position: relative;
  max-height: 70vh;
  /*  width: 70vh; */
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .material_lightbox .boxcontent .boxdata {
    max-height: 90vh;
  }
}
.material_lightbox .boxcontent .boxdata .iconcolorblock {
  height: auto;
}
.material_lightbox .boxcontent .boxdata .iconcolorblock span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-block;
  margin: 0;
  vertical-align: top;
}

.datanumber {
  display: block;
  width: 35px;
  text-align: center;
  background-color: #333;
  color: #fff;
  padding: 3px 8px;
}

.material_lightbox .boxdata table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1em;
  color: #333;
  margin: 0 0 40px;
  border: 1px solid #d2d2d2;
}

.material_lightbox .boxdata table:last-child {
  margin-bottom: 0;
}

.material_lightbox .boxdata table th,
.material_lightbox .boxdata table td {
  padding: 10px 15px;
  vertical-align: top;
  text-align: left;
  border: 1px solid #d2d2d2;
}

.material_lightbox .boxdata table td {
  color: #666;
}

.material_lightbox .boxdata table th {
  width: 25%;
  text-align: left;
  white-space: nowrap;
  color: #132b31;
}

.material_lightbox .boxdata table img {
  margin: 0 0px 0px 0;
  vertical-align: middle;
}

.material_lightbox .boxdata p {
  margin: 5px 0 20px;
  line-height: 2em;
  color: #666;
  text-align: left;
}

.material_lightbox .boxdata p a {
  color: #f60;
}

.material_lightbox a[href^="https:"],
.material_lightbox a[href^="http:"] {
  word-break: break-all;
}

.material_lightbox .boxdata ol {
  margin: 0 0 15px 20px;
  padding: 0;
}

.material_lightbox .boxcontent .skip {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0;
  margin: 0;
  width: 1px;
  height: 1px;
  background: none;
  box-shadow: none;
  outline: none;
  text-indent: -20em;
  overflow: hidden;
}

@media (max-width: 500px) {
  .material_lightbox .boxdata table tr {
    margin-bottom: 0px;
    display: block;
    border-bottom: 1px solid #d2d2d2;
  }
  .material_lightbox .boxdata table th,
  .material_lightbox .boxdata table td {
    display: block;
    width: 100%;
    border-bottom: 1px solid #ddd;
  }
  .material_lightbox .boxdata table th {
    text-align: left;
    padding: 10px 15px;
  }
  .material_lightbox .boxdata table td {
    text-align: left;
    padding: 10px 15px;
  }
  .material_lightbox .boxdata table input[type=text].textsmall {
    width: 50%;
  }
  .material_lightbox .boxdata table img {
    margin: 0 8px 0px 0;
  }
}
.propaganda_list {
  clear: both;
}
.propaganda_list ul {
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
  overflow: hidden;
  text-align: center;
}
.propaganda_list ul > li {
  width: 22%;
  display: inline-block;
  margin: 0 1% 20px;
  padding: 0;
  font-size: 1.375em;
  vertical-align: top;
  text-align: left;
  font-weight: 600;
}
@media (max-width: 992px) {
  .propaganda_list ul > li {
    width: 47%;
  }
}
@media (max-width: 576px) {
  .propaganda_list ul > li {
    width: 100%;
    margin: 0 0 30px;
  }
}
.propaganda_list ul > li > a {
  font-weight: 600;
  padding: 0;
  display: block;
}
.propaganda_list ul ul {
  margin: 10px 0 0 0;
  padding: 0;
}
.propaganda_list ul ul li {
  display: block;
  float: none;
  width: 100%;
  font-size: 0.75em;
  margin: 0;
  outline: none;
  text-align: left;
}
.propaganda_list ul ul li a {
  display: block;
  padding: 10px 0 5px 0px;
  border-bottom: 1px dashed #ccc;
  font-weight: 400;
}
.propaganda_list ul ul li a:hover {
  text-decoration: none;
}
.propaganda_list .propagandabg {
  clear: both;
  text-align: center;
  margin-bottom: 20px;
}
.propaganda_list .propagandabg img {
  width: 100%;
}

body.fix {
  overflow: hidden;
}

.apply_btn a {
  background: #214b56;
  color: #fff;
  vertical-align: middle;
  font-size: 1em;
  font-weight: normal;
}
.apply_btn a:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/basic/icon_pen.png) no-repeat;
  background-size: 100%;
  vertical-align: middle;
  margin: -1px 3px 0 0;
}
.apply_btn a:hover, .apply_btn a:focus {
  text-decoration: none;
  background: #154b15;
  color: #fff;
}

.query_block_in {
  flex: auto;
  padding: 0px 30px 20px;
  display: flex;
  font-size: 1.25em;
  align-items: center;
  box-sizing: border-box;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 0 auto 15px;
  border-bottom: 3px solid #367c8d;
}
@media (max-width: 992px) {
  .query_block_in {
    padding: 0px 20px 20px;
  }
}
.query_block_in label {
  color: #fff;
  padding-top: 8px;
  padding-right: 15px;
  font-size: 0;
  line-height: 0;
}
.query_block_in .queryinput {
  background-color: #fff;
  border-radius: 4px;
  flex: none;
  flex-basis: 80%;
  width: 80%;
  padding: 10px;
  display: flex;
  border: 1px solid #367c8d;
  margin: 0 auto 10px;
}
@media (max-width: 992px) {
  .query_block_in .queryinput {
    flex-basis: 100%;
    width: 100%;
  }
}
.query_block_in .queryinput input[type=text] {
  border: none;
  font-size: 0.938em;
  flex: auto;
  color: #666;
}
.query_block_in .queryinput .btn {
  background-image: url(../images/basic/search_icon.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 30px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  flex: none;
  flex-basis: 45px;
  border-left: 1px solid #666;
  border-radius: 0;
  display: block;
}
.query_block_in .queryinput .btn:focus {
  outline: 2px solid #ffc000;
}
.query_block_in .query_explain {
  font-size: 0.875em;
  text-align: center;
  color: #666;
  flex-basis: 100%;
}

.category2 {
  clear: both;
  margin: 0 0px 20px;
}
.category2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.06em;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .category2 ul {
    flex-wrap: wrap;
  }
}
.category2 ul li {
  flex: none;
  flex-basis: 15.5%;
  margin: 0 0.58%;
  padding: 0;
}
@media (max-width: 992px) {
  .category2 ul li {
    flex-basis: 31%;
    margin: 0 1.16% 15px;
  }
}
@media (max-width: 500px) {
  .category2 ul li {
    flex-basis: 48%;
    margin: 0 1% 15px;
  }
}
.category2 ul li.here a {
  cursor: default;
  color: #fff;
  background-color: #333;
  position: relative;
}
.category2 ul li.here a:before {
  content: "";
  border: 12px solid #333;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  position: absolute;
  bottom: -25px;
  left: 50%;
  margin-left: -5px;
}
.category2 ul li.darkgreen_bg.here a {
  background-color: #008579;
}
.category2 ul li.darkgreen_bg.here a:before {
  border: 12px solid #008579;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
}
.category2 ul li.darkyellow_bg.here a {
  background-color: #986f09;
}
.category2 ul li.darkyellow_bg.here a:before {
  border: 12px solid #986f09;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
}
.category2 ul li.red_bg.here a {
  background-color: #e42549;
}
.category2 ul li.red_bg.here a:before {
  border: 12px solid #e42549;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
}
.category2 ul li.green_bg.here a {
  background-color: #458535;
}
.category2 ul li.green_bg.here a:before {
  border: 12px solid #458535;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
}
.category2 ul li.darkgray_bg.here a {
  background-color: #75757f;
}
.category2 ul li.darkgray_bg.here a:before {
  border: 12px solid #75757f;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
}
.category2 ul li a {
  display: flex;
  padding: 7px 12px 3px;
  text-decoration: none;
  background-color: #eee;
  color: #000;
  position: relative;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  min-height: 70px;
  line-height: 1.6em;
  border-bottom: 5px solid #333;
  transition: 0.5s;
}
.category2 ul li a em {
  font-style: normal;
}
.category2 ul li a span {
  display: block;
}
.category2 ul li a:hover {
  background-color: #333;
  color: #fff;
  text-decoration: none;
}
.category2 ul li.darkgreen_bg a {
  border-bottom-color: #008579;
}
.category2 ul li.darkgreen_bg a:hover {
  background-color: #008579;
}
.category2 ul li.darkyellow_bg a {
  border-bottom-color: #986f09;
}
.category2 ul li.darkyellow_bg a:hover {
  background-color: #986f09;
}
.category2 ul li.red_bg a {
  border-bottom-color: #e42549;
}
.category2 ul li.red_bg a:hover {
  background-color: #e42549;
}
.category2 ul li.green_bg a {
  border-bottom-color: #458535;
}
.category2 ul li.green_bg a:hover {
  background-color: #458535;
}
.category2 ul li.darkgray_bg a {
  border-bottom-color: #75757f;
}
.category2 ul li.darkgray_bg a:hover {
  background-color: #75757f;
}

.poison_content {
  margin: 0 0.58%;
}
@media (max-width: 992px) {
  .poison_content {
    margin: 0 1.16%;
  }
}
@media (max-width: 500px) {
  .poison_content {
    margin: 0 1%;
  }
}
.poison_content .poison_explain {
  margin-bottom: 15px;
  font-size: 1.125em;
}
.poison_content .poison_list_block {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
}
.poison_content .poison_list_block .poison_list {
  flex: none;
  width: 23.5%;
  flex-basis: 23.5%;
  margin: 0 0.75% 15px;
}
@media (max-width: 992px) {
  .poison_content .poison_list_block .poison_list {
    width: 31%;
    flex-basis: 31%;
    margin: 0 1.16% 15px;
  }
}
@media (max-width: 767px) {
  .poison_content .poison_list_block .poison_list {
    width: 48%;
    flex-basis: 48%;
    margin: 0 1% 15px;
  }
}
@media (max-width: 500px) {
  .poison_content .poison_list_block .poison_list {
    width: 100%;
    flex-basis: 100%;
    margin: 0 0 15px;
  }
}
.poison_content .poison_list_block .poison_list a {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  display: block;
  padding: 10px;
  height: 11em;
  border-radius: 5px;
  transition: 0.5s;
}
.poison_content .poison_list_block .poison_list a:hover, .poison_content .poison_list_block .poison_list a:focus {
  text-decoration: none;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.poison_content .poison_list_block .poison_list a .top_block {
  display: flex;
  align-items: center;
  padding-bottom: 5px;
}
.poison_content .poison_list_block .poison_list a .top_block .serial_number {
  color: #666;
  font-size: 0.938em;
}
.poison_content .poison_list_block .poison_list a .top_block .serial_number em {
  font-size: 1.188em;
  color: #333;
  font-style: normal;
  margin-left: 10px;
  display: inline-block;
}
.poison_content .poison_list_block .poison_list a .top_block .sort_number {
  display: flex;
  flex: auto;
  justify-content: flex-end;
}
.poison_content .poison_list_block .poison_list a .top_block .sort_number span {
  background-color: #999;
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1px;
  font-size: 0.813em;
}
.poison_content .poison_list_block .poison_list a .top_block .sort_number span.poison01 {
  background-color: #008579;
}
.poison_content .poison_list_block .poison_list a .top_block .sort_number span.poison02 {
  background-color: #986f09;
}
.poison_content .poison_list_block .poison_list a .top_block .sort_number span.poison03 {
  background-color: #e42549;
}
.poison_content .poison_list_block .poison_list a .top_block .sort_number span.poison04 {
  background-color: #458535;
}
.poison_content .poison_list_block .poison_list a .top_block .sort_number span.attention {
  background-color: #666;
  width: 50px;
  height: 20px;
  border-radius: 20px;
}
.poison_content .poison_list_block .poison_list a .content_block {
  border-top: 1px solid #ccc;
  text-align: center;
  padding-top: 13px;
}
.poison_content .poison_list_block .poison_list a .content_block .cas {
  color: #2e72ba;
  font-size: 0.875em;
  margin-bottom: 5px;
  font-weight: bolder;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.poison_content .poison_list_block .poison_list a .content_block .cas em {
  color: #e30000;
  font-style: normal;
}
.poison_content .poison_list_block .poison_list a .content_block .name_ch {
  color: #333;
  font-size: 1.25em;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.poison_content .poison_list_block .poison_list a .content_block .name_ch em {
  color: #e30000;
  font-style: normal;
}
.poison_content .poison_list_block .poison_list a .content_block .name_en {
  color: #777;
  font-size: 0.813em;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.3em;
  height: 2.6em;
}
.poison_content .poison_list_block .poison_list a .content_block .name_en em {
  color: #e30000;
  font-style: normal;
}

.poison_content_nodata .nodata {
  padding: 25px 0 50px;
  font-size: 1.125em;
  text-align: center;
}
.poison_content_nodata .poison_explain {
  margin-bottom: 25px;
  font-size: 1.125em;
  padding: 15px;
  background-color: #eee;
  border-radius: 4px;
}
.poison_content_nodata .poison_explain em {
  color: #e30000;
  font-style: normal;
}
.poison_content_nodata .poison_recommend {
  padding: 20px 20px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 40px;
}
.poison_content_nodata .poison_recommend .title {
  font-size: 1.562em;
  color: #268725;
  line-height: 1.75em;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  margin: 0 0 10px;
}
.poison_content_nodata .poison_recommend .recommend_list_block {
  padding: 20px 0;
  font-size: 1.125em;
}
.poison_content_nodata .poison_recommend .recommend_list {
  margin: 0 0 20px;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}
.poison_content_nodata .poison_recommend .recommend_list:before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #333;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.6em;
}
.poison_content_nodata .poison_recommend .recommend_list span {
  padding: 5px;
  color: #333;
  margin: 0 0 25px;
  border-radius: 50px;
}
.poison_content_nodata .poison_recommend .recommend_list a {
  position: relative;
  padding: 0 30px 0 0;
  color: #367c8d;
  text-decoration: underline;
  display: inline-block;
}
.poison_content_nodata .poison_recommend .recommend_list a:hover {
  color: #e30000;
}
.poison_content_nodata .poison_recommend .recommend_list a:after {
  content: "、";
  position: absolute;
  right: 5px;
}
.poison_content_nodata .poison_recommend .recommend_list a:last-child:after {
  display: none;
}

.np p {
  padding: 0px;
}

/*-*/
.nplist {
  margin: 0 0 50px;
  padding: 0;
  list-style: none;
}
.nplist li {
  margin: 0 0 10px 0;
  padding: 7px 0 7px 40px;
  border-bottom: 1px solid #ccc;
  background-image: url(../images/link_icon01.png);
  background-repeat: no-repeat;
  background-position: 13px 17px;
}
.nplist li a {
  display: block;
}
.nplist li ul {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}
.nplist li ul li {
  background-image: url(../images/np_icon01.gif);
  background-position: 0 18px;
  border: none;
  padding: 7px 0 7px 30px;
}

/*---------------------- FontSize*/
.FontSize {
  font-size: 1.4em;
  float: right;
  margin-top: -10px;
}
.FontSize ul {
  float: right;
  margin-top: -35px;
}
.FontSize ul li {
  list-style: none;
  display: inline-block;
  cursor: pointer;
  color: #cccccc;
  vertical-align: middle;
}
.FontSize ul li a {
  font-weight: normal;
  color: #fff;
  font-size: 0.8em;
  display: block;
  padding: 0;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  line-height: 30px;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  background-color: #367c8d;
}
.FontSize ul li a:hover, .FontSize ul li a:focus {
  background-color: #214b56;
  text-decoration: none;
  color: #fff;
}

/*----------------------------------------------------info*/
/*---------------cp內容*/
.cp article {
  clear: both;
  padding-bottom: 10px;
  float: none;
  overflow: hidden;
  line-height: 180%;
  margin: 0 0 70px 0;
}
.cp article p {
  line-height: 180%;
  margin: 0 0 20px 0;
}
.cp article h2,
.cp article h3,
.cp article h4,
.cp article h5,
.cp article h6 {
  margin: 0.5em 0;
}
.cp article h2 {
  font-size: 1.562em;
  color: #268725;
}
.cp article h3 {
  font-size: 1.562em;
  color: #268725;
}
.cp article h4 {
  font-size: 1.23em;
  color: #268725;
}
.cp article h5 {
  font-size: 1.15em;
  color: #268725;
}
.cp article h6 {
  font-size: 1.08em;
}
.cp article h2 + h3,
.cp article h3 + h4,
.cp article h4 + h5,
.cp article h5 + h6 {
  margin-top: 0;
}
.cp article a {
  color: #367c8d;
  text-decoration: underline;
}
.cp article a:hover {
  color: #e30000;
  text-decoration: underline;
}
.cp article ul {
  margin: 0 0 20px 0px;
  padding: 0 20px 0 25px;
  overflow: hidden;
}
.cp article ul li {
  margin: 0 0 5px;
}

.cp article .visionphoto {
  margin: 0 auto 20px;
  width: 791px;
}
@media (max-width: 767px) {
  .cp article .visionphoto {
    width: auto;
  }
}
.cp article .visionphoto img {
  width: 791px;
}
@media (max-width: 767px) {
  .cp article .visionphoto img {
    width: 100%;
  }
}

.cp article ul.cplist01 {
  margin: 0px 0;
  padding: 0px;
  list-style: none;
}
.cp article ul.cplist01 li {
  margin: 0 0 30px;
}
.cp article ul.cplist01 li span.title {
  color: #268725;
  display: block;
  margin: 0 0 10px;
}

.cp article .info {
  margin: 0px 0 5px;
  padding: 0 0 10px;
  clear: both;
  float: none;
  display: inline-block;
}
@media (max-width: 767px) {
  .cp article .info {
    display: block;
  }
}
.cp article .info li {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 0;
  list-style-type: none;
}
.cp article .info li span {
  color: #214b56;
  margin: 0 5px;
}

/*---------------------文章內主圖 */
.cp article figure {
  margin: 0 0 20px;
}
.cp article figure.image_right {
  float: right;
  margin: 0px 0px 20px 30px;
  width: 400px;
  letter-spacing: 0;
  border-radius: 5px;
  background-color: #fff;
}
.cp article figure.image_right figcaption {
  margin: 10px 0;
  line-height: 140%;
  width: auto;
  max-width: 400px;
  color: #132b31;
}
.cp article figure.image_left {
  float: left;
  margin: 0px 30px 0px 0px;
  padding: 0;
  width: 400px;
  letter-spacing: 0;
}
.cp article figure.image_left figcaption {
  margin: 10px 0;
  line-height: 140%;
  width: auto;
  max-width: 400px;
  color: #214b56;
}
.cp article figure.image_right img, .cp article figure.image_left img {
  display: block;
  width: 400px;
  transition: 0.3s ease-out;
}
.cp article figure.image_right img:hover, .cp article figure.image_left img:hover {
  transform: scale(1.05, 1.05);
}

@media (max-width: 767px) {
  .cp article figure img {
    width: 100%;
  }
  .cp article figure.image_right, .cp article figure.image_left {
    width: 100%;
    letter-spacing: 0;
    float: none;
    margin: 0px 0px 20px 0;
  }
  .cp article figure.image_right img, .cp article figure.image_left img {
    width: 100%;
  }
  .cp article figure.image_right figcaption, .cp article figure.image_left figcaption {
    max-width: 100%;
  }
}
/*--------------------------------------------cpTb*/
.cpTb table {
  border-collapse: collapse;
  width: 100%;
  clear: both;
  margin: 0 0 20px;
  color: #313131;
  background-color: #fff;
}
.cpTb table caption {
  display: none;
}
.cpTb table th {
  background-color: #e6e6e6;
  color: #000;
  text-align: right;
  padding: 10px;
  border: 1px solid #ccc;
  white-space: nowrap;
  font-weight: normal;
  width: 20%;
}
.cpTb table td {
  color: #313131;
  border: 1px solid #ccc;
  padding: 10px;
  position: relative;
  word-break: break-all;
}
.cpTb table td a {
  color: #132b31;
  text-decoration: underline;
}
.cpTb table td a:hover {
  color: #cc0000;
  text-decoration: none;
}
.cpTb table td ul {
  margin: 0 0 0 30px;
  padding: 0;
}
.cpTb table td ul li {
  margin: 0 0 10px 0;
  list-style-type: disc;
}
.cpTb table input {
  vertical-align: middle;
  margin: 0 0px 0 0;
  font-size: 100%;
}

@media only screen and (max-width: 480px) {
  .cpTb table,
  .cpTb thead,
  .cpTb tbody,
  .cpTb th,
  .cpTb td,
  .cpTb tr {
    display: block;
  }
  .cpTb table {
    border: none;
    border: 1px solid #ccc;
  }
  .cpTb table th {
    width: 100%;
    text-align: left;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 7px;
    color: #132b31;
  }
  .cpTb table tr {
    border-bottom: none;
    margin: 0;
  }
  .cpTb table td {
    border: none;
    border-bottom: 1px solid #ccc;
    position: relative;
    padding-left: 2%;
    word-break: break-all;
  }
  .cpTb table td .text,
  .cpTb table td textarea {
    width: 100%;
  }
}
/* ---------------------video */
.video {
  width: 640px;
}
@media (max-width: 767px) {
  .video {
    width: 100%;
  }
}

/*----------------附件下載*/
.download {
  clear: both;
}

/*------------------table*/
.cp article table {
  margin: 0 auto 2em;
  width: 100%;
  line-height: 150%;
  border-collapse: collapse;
  background-color: #fff;
}
.cp article table caption {
  font-weight: bold;
  text-align: left;
  font-size: 1em;
  padding: 5px 10px 4px;
  display: none;
}
.cp article table th,
.cp article table td {
  vertical-align: top;
  padding: 10px 7px;
  border: 1px solid #ccc;
}
.cp article table th p,
.cp article table td p {
  margin: 0;
}
.cp article table th {
  background-color: #e6e6e6;
}
.cp article table.noBorder {
  width: auto;
  margin: 0 0 1em;
  background-color: transparent;
}
.cp article table.noBorder th,
.cp article table.noBorder td {
  border: none;
  padding: 10px 7px;
}
.cp article table.noBorder th {
  background-color: #e6e6e6;
}
.cp article table.noBorder th[scope=row] {
  text-align: right;
  vertical-align: top;
  width: 15%;
}
.cp article table.noBorder th[scope=col] {
  text-align: center;
  vertical-align: middle;
}
.cp article table.noBorder td a {
  color: #333;
}

/* ------------gmap */
.cp article .gmap {
  clear: both;
  margin: 15px auto;
  padding: 0;
  border: 1px solid #ccc;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.cp article .gmap iframe {
  width: 100%;
  height: 400px;
}

/*------------------------相關照片*/
.photolist {
  margin: 0;
  padding: 0;
}
.photolist figure div {
  overflow: hidden;
  background: #e8e8e8;
  position: relative;
  border: 1px solid #ddd;
}
.photolist figure div:after {
  padding-top: 65%;
  content: "";
  display: block;
}
.photolist figure div img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
  transition: 0.3s ease-out;
}
.photolist figure div img:hover {
  opacity: 1;
  transform: scale(1.05, 1.05);
}
.photolist figure figcaption {
  margin: 10px 0;
  line-height: 140%;
  width: auto;
  color: #333;
  font-size: 1em;
  height: 2.5em;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.3em;
  height: 2.6em;
}

@media (max-width: 767px) {
  .photolist figure {
    height: auto;
  }
  .photolist .row {
    padding-left: 0px;
    padding-right: 0;
  }
  .photolist figure div:after {
    padding-top: 67%;
  }
  .photolist figure figcaption {
    height: inherit;
    overflow: inherit;
  }
}
#ContentPage p img,
#ContentPage article img,
#ContentPage p iframe {
  max-width: 100% !important;
}

/*-----------------燈箱效果修正*/
.lb-data .lb-caption {
  font-size: 1.125em;
  line-height: 1.5em;
  font-weight: normal;
}

/* ---------網頁404 */
.cp article .bolck404 {
  margin: 0 0 0;
}
.cp article .bolck404 .web404 {
  background-color: #dcdcdc;
  border-radius: 5px;
  padding: 15px;
}
.cp article .bolck404 .web404 ul {
  margin: 0 0 20px 0px;
  padding: 0;
}
.cp article .bolck404 .web404 ul li {
  display: inline-block;
  color: #214b56;
  margin: 0 30px 0 0;
  position: relative;
}
@media (max-width: 767px) {
  .cp article .bolck404 .web404 ul li {
    display: block;
    margin: 0 0 20px;
  }
}
.cp article .bolck404 .web404 ul li.icon-reply:before, .cp article .bolck404 .web404 ul li.icon-home:before, .cp article .bolck404 .web404 ul li.icon-sitemap:before {
  content: "";
  border: 6px solid #268725;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  left: 0;
  top: 8px;
}
.cp article .bolck404 .web404 ul li a {
  color: #333;
  padding: 0 0 0 20px;
}
.cp article .bolck404 .web404 ul li a:hover {
  color: #154b15;
}
.cp article .bolck404 .web404 span.icon-search {
  padding: 0 0 0 20px;
  position: relative;
}
.cp article .bolck404 .web404 span.icon-search:before {
  content: "";
  border: 6px solid #268725;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  left: 0;
  top: 5px;
}
.cp article .bolck404 .web404 .input-group-btn {
  margin: 10px 0 0 0;
}
.cp article .bolck404 .web404 .input-group-btn input.form-control {
  border: 1px solid #fff;
}
.cp article .bolck404 .web404 .input-group-btn .btn {
  background-image: url("../images/basic/search_icon2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  background-color: #666;
  width: 40px;
  height: 30px;
  z-index: 99;
}

.cp .apply_btn {
  float: right;
  margin-left: 10px;
}
.cp .apply_btn a {
  color: #fff;
  text-decoration: none;
}
.cp .apply_btn a:hover {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 767px) {
  .cp .apply_btn {
    margin: 0 0 10px 0;
  }
}

/*----------------------------------------------map----*/
@media (max-width: 767px) {
  .TaiwanMap {
    max-width: 767px;
    overflow-x: auto;
  }
}

.map {
  display: block;
  margin: 2em auto 3em auto !important;
  z-index: 1;
  position: relative;
  width: 730px;
  height: 560px;
}

.TotalHome {
  color: #333;
  margin: 0em 0 2em 0;
}

.TotalHome h3 {
  font-weight: bold;
  margin: 0 0 10px;
}

.TotalHome ul {
  list-style-type: inherit;
}

.TotalHome ol {
  list-style-type: decimal;
}

.TotalHome ol ol {
  list-style-type: disc;
}

.TotalHome ul li:nth-child(1) {
  color: #2c71c7;
}

.TotalHome ul li:nth-child(2) {
  color: #83b958;
}

.TotalHome ul li:nth-child(3) {
  color: #b98baf;
}

.TotalHome ul li:nth-child(4) {
  color: #e3b92a;
}

.TotalHome ul li:nth-child(5) {
  color: #cc3000;
}

.map .location1,
.map .location2,
.map .location3,
.map .location4,
.map .location5 {
  position: absolute;
  /* z-index: 1; */
  display: none;
  list-style: none !important;
}

.map .location1 li,
.map .location2 li,
.map .location3 li,
.map .location4 li,
.map .location5 li {
  font-size: 1em;
  padding: 4px;
  cursor: pointer;
  line-height: 1.2em;
  color: #fff;
  z-index: 9999;
  display: block;
  border-radius: 5px;
  text-align: center;
  position: absolute;
  transition: 0.3s ease-out;
}

.map .location1 li:before,
.map .location2 li:before,
.map .location3 li:before,
.map .location4 li:before,
.map .location5 li:before {
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  z-index: -1;
  transition: 0.3s ease-out;
}

.map .location1 li:after,
.map .location2 li:after,
.map .location3 li:after,
.map .location4 li:after,
.map .location5 li:after {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/map-service.png) no-repeat;
  background-size: contain;
  transform: rotate(0deg) !important;
}

.map .location1 li:hover,
.map .location1 li:focus {
  background: #932c1a;
  color: #fff !important;
}

.map .location2 li:hover,
.map .location2 li:focus {
  background: #01414f;
  color: #fff !important;
}

.map .location3 li:hover,
.map .location3 li:focus {
  background: #73405b;
  color: #fff !important;
}

.map .location4 li:hover,
.map .location4 li:focus {
  background: #2b3807;
  color: #fff !important;
}

.map .location5 li:hover,
.map .location5 li:focus {
  background: #544014;
  color: #fff !important;
}

.map .location1 li a,
.map .location2 li a,
.map .location3 li a,
.map .location4 li a,
.map .location5 li a {
  color: #ffffff !important;
  cursor: default;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 99;
}

.map .location1 {
  top: 113px;
  right: 168px;
  width: 134px;
  height: 109px;
  background: url(../images/map_a.png) 0 0 no-repeat;
  z-index: 9;
}

.map .location1 li {
  background: #d44025;
}

.map .location1 li:before {
  background: #d44025;
}

.map .location2 {
  top: 184px;
  right: 234px;
  width: 159px;
  height: 190px;
  background: url(../images/map_b.png) 0 0 no-repeat;
  z-index: 8;
}

.map .location2 li {
  background: #017f9b;
}

.map .location2 li:before {
  background: #017f9b;
}

.map .location3 {
  top: 341px;
  right: 279px;
  width: 123px;
  height: 197px;
  background: url(../images/map_c.png) 0 0 no-repeat;
  z-index: 7;
}

.map .location3 li {
  padding: 6px 4px;
  background: #a45b82;
}

.map .location3 li:before {
  background: #a45b82;
}

.map .location4 {
  top: 149px;
  right: 170px;
  width: 147px;
  height: 348px;
  background: url(../images/map_d.png) 0 0 no-repeat;
  z-index: 6;
}

.map .location4 li {
  background: #5f7c0f;
}

.map .location4 li:before {
  background: #5f7c0f;
}

.map .location5 {
  top: 115px;
  left: 124px;
  width: 67px;
  height: 276px;
  background: url(../images/map_e.png) 0 0 no-repeat;
}

.map .location5 li {
  background: #927022;
}

.map .location5 li:before {
  background: #927022;
}

.map .active {
  opacity: 1;
  display: block !important;
}

/*----map home style---*/
.map-home .location1 li.N1 {
  top: -55px;
  left: 50px;
}

.map-home .location1 li.N1:before,
.map-home .location1 li.N1:after {
  top: 60px;
  right: 66px;
  width: 30px;
  transform: rotate(90deg);
}

.map-home .location1 li.N1:after {
  right: 62px;
  top: 60px;
}

.map-home .location1 li.N2 {
  top: -42px;
  left: -62px;
}

.map-home .location1 li.N2:before,
.map-home .location1 li.N2:after {
  top: 67px;
  left: 65px;
  width: 52px;
  transform: rotate(60deg);
}

.map-home .location1 li.N2:after {
  left: 97px;
  top: 79px;
}

.map-home .location1 li.N3 {
  top: 20px;
  right: -114px;
}

.map-home .location1 li.N3:before,
.map-home .location1 li.N3:after {
  top: 11px;
  right: 102px;
  width: 68px;
  transform: rotate(0deg);
}

.map-home .location1 li.N3:after {
  right: 113px;
  top: -2px;
}

.map-home .location1 li.N4 {
  top: 8px;
  left: -118px;
}

.map-home .location1 li.N4:before,
.map-home .location1 li.N4:after {
  top: 19px;
  left: 105px;
  width: 51px;
  transform: rotate(0deg);
}

.map-home .location1 li.N4:after {
  left: 151px;
  top: 13px;
}

.map-home .location1 li.N5 {
  top: 60px;
  left: -153px;
}

.map-home .location1 li.N5:before,
.map-home .location1 li.N5:after {
  top: 0px;
  left: 99px;
  width: 64px;
  transform: rotate(-17deg);
}

.map-home .location1 li.N5:after {
  left: 150px;
  top: -16px;
}

.map-home .location2 li.C1 {
  top: 43px;
  left: -103px;
}

.map-home .location2 li.C1:before,
.map-home .location2 li.C1:after {
  top: 33px;
  left: 103px;
  width: 47px;
  transform: rotate(23deg);
}

.map-home .location2 li.C1:after {
  top: 30px;
  left: 134px;
}

.map-home .location2 li.C2 {
  top: 94px;
  left: -118px;
}

.map-home .location2 li.C2:before,
.map-home .location2 li.C2:after {
  top: 12px;
  left: 102px;
  width: 52px;
  transform: rotate(-17deg);
}

.map-home .location2 li.C2:after {
  top: -3px;
  left: 140px;
}

.map-home .location2 li.C3 {
  top: 145px;
  left: -118px;
}

.map-home .location2 li.C3:before,
.map-home .location2 li.C3:after {
  top: -9px;
  left: 102px;
  width: 55px;
  transform: rotate(152deg);
}

.map-home .location2 li.C3:after {
  top: -30px;
  left: 140px;
}

.map-home .location3 li.S1 {
  top: 40px;
  left: -144px;
}

.map-home .location3 li.S1:before,
.map-home .location3 li.S1:after {
  top: -8px;
  left: 132px;
  width: 60px;
  transform: rotate(-39deg);
}

.map-home .location3 li.S1:after {
  top: -35px;
  left: 176px;
}

.map-home .location3 li.S2 {
  top: 82px;
  left: -137px;
}

.map-home .location3 li.S2:before,
.map-home .location3 li.S2:after {
  top: -16px;
  left: 127px;
  width: 44px;
  transform: rotate(-54deg);
}

.map-home .location3 li.S2:after {
  top: -40px;
  left: 148px;
}

.map-home .location3 li.S3 {
  top: 119px;
  left: -119px;
}

.map-home .location3 li.S3:before,
.map-home .location3 li.S3:after {
  top: -29px;
  left: 110px;
  width: 63px;
  transform: rotate(105deg);
}

.map-home .location3 li.S3:after {
  top: -67px;
  left: 140px;
}

.map-home .location3 li.S4 {
  bottom: 23px;
  left: -105px;
}

.map-home .location3 li.S4:before,
.map-home .location3 li.S4:after {
  bottom: 64px;
  left: 100px;
  width: 69px;
  transform: rotate(-80deg);
}

.map-home .location3 li.S4:after {
  bottom: 90px;
  left: 133px;
}

.map-home .location3 li.S5 {
  bottom: -15px;
  right: 20px;
}

.map-home .location3 li.S5:before,
.map-home .location3 li.S5:after {
  top: -41px;
  right: 0px;
  width: 112px;
  transform: rotate(80deg);
}

.map-home .location3 li.S5:after {
  top: -110px;
  right: -34px;
}

.map-home .location3 li.S6 {
  bottom: 6px;
  right: -142px;
}

.map-home .location3 li.S6:before,
.map-home .location3 li.S6:after {
  top: -19px;
  left: -71px;
  width: 87px;
  transform: rotate(50deg);
}

.map-home .location3 li.S6:after {
  top: -64px;
  left: -64px;
}

.map-home .location4 li.E1 {
  top: 80px;
  right: -105px;
}

.map-home .location4 li.E1:before,
.map-home .location4 li.E1:after {
  top: 25px;
  right: 103px;
  width: 47px;
  transform: rotate(0deg);
}

.map-home .location4 li.E1:after {
  top: 16px;
  right: 115px;
}

.map-home .location4 li.E2 {
  bottom: 47px;
  right: -50px;
}

.map-home .location4 li.E2:before,
.map-home .location4 li.E2:after {
  top: 21px;
  right: 103px;
  width: 37px;
  transform: rotate(0deg);
}

.map-home .location4 li.E2:after {
  top: 12px;
  right: 115px;
}

/*----map service style---*/
.map-service .location1 li.N1 {
  top: -55px;
  left: -2px;
}

.map-service .location1 li.N1:before,
.map-service .location1 li.N1:after {
  top: 50px;
  right: 9px;
  width: 65px;
  transform: rotate(60deg);
}

.map-service .location1 li.N1:after {
  right: 10px;
  top: 60px;
}

.map-service .location1 li.N2 {
  top: -50px;
  right: -90px;
}

.map-service .location1 li.N2:before,
.map-service .location1 li.N2:after {
  top: 50px;
  left: -29px;
  width: 75px;
  transform: rotate(-40deg);
}

.map-service .location1 li.N2:after {
  right: 78px;
  top: 61px;
  left: inherit;
}

.map-service .location1 li.N3 {
  top: 0px;
  right: -135px;
}

.map-service .location1 li.N3:before,
.map-service .location1 li.N3:after {
  top: 25px;
  right: 103px;
  width: 60px;
  transform: rotate(-20deg);
}

.map-service .location1 li.N3:after {
  right: 114px;
  top: 20px;
}

.map-service .location1 li.N4 {
  top: -35px;
  left: -110px;
}

.map-service .location1 li.N4:before,
.map-service .location1 li.N4:after {
  top: 48px;
  left: 78px;
  width: 70px;
  transform: rotate(40deg);
}

.map-service .location1 li.N4:after {
  left: 140px;
  top: 71px;
}

.map-service .location1 li.N5 {
  top: 35px;
  left: -160px;
}

.map-service .location1 li.N5:before,
.map-service .location1 li.N5:after {
  top: 23px;
  left: 99px;
  width: 70px;
  transform: rotate(10deg);
}

.map-service .location1 li.N5:after {
  left: 139px;
  top: 37px;
}

.map-service .location1 li.N5_2 {
  top: 0px;
  left: -141px;
}

.map-service .location1 li.N5_2:before,
.map-service .location1 li.N5:after {
  top: 40px;
  left: 99px;
  width: 70px;
  transform: rotate(30deg);
}

.map-service .location1 li.N5_2:after {
  left: 139px;
  top: 37px;
}

.map-service .location2 li.C1 {
  top: 0px;
  left: -58px;
}

.map-service .location2 li.C1:before,
.map-service .location2 li.C1:after {
  top: 15px;
  left: 100px;
  width: 39px;
  transform: rotate(5deg);
}

.map-service .location2 li.C1:after {
  top: 13px;
  left: 137px;
}

.map-service .location2 li.C2 {
  top: 35px;
  left: -80px;
}

.map-service .location2 li.C2:before,
.map-service .location2 li.C2:after {
  top: 20px;
  left: 100px;
  width: 40px;
  transform: rotate(17deg);
}

.map-service .location2 li.C2:after {
  top: 15px;
  left: 160px;
}

.map-service .location2 li.C3 {
  top: 75px;
  left: -100px;
}

.map-service .location2 li.C3:before,
.map-service .location2 li.C3:after {
  top: 19px;
  left: 100px;
  width: 40px;
  transform: rotate(20deg);
}

.map-service .location2 li.C3:after {
  top: -3px;
  left: 150px;
}

.map-service .location2 li.C4 {
  top: 120px;
  left: 60px;
  width: 70px;
  border: 1px solid #fff;
}

.map-service .location2 li.C4:before,
.map-service .location2 li.C4:after {
  top: -3px;
  left: 25px;
  width: 22px;
  transform: rotate(90deg);
}

.map-service .location2 li.C4:after {
  top: -17px;
  left: 50px;
}

.map-service .location2 li.C5 {
  top: 110px;
  left: -116px;
}

.map-service .location2 li.C5:before,
.map-service .location2 li.C5:after {
  top: 15px;
  left: 95px;
  width: 36px;
  transform: rotate(15deg);
}

.map-service .location2 li.C5:after {
  top: 1px;
  left: 106px;
}

.map-service .location2 li.C6 {
  top: 180px;
  left: -130px;
}

.map-service .location2 li.C6:before,
.map-service .location2 li.C6:after {
  top: 0px;
  left: 99px;
  width: 50px;
  transform: rotate(153deg);
}

.map-service .location2 li.C6:after {
  top: -22px;
  left: 132px;
}

.map-service .location2 li.C6_2 {
  top: 146px;
  left: -130px;
}

.map-service .location2 li.C6_2:before,
.map-service .location2 li.C6:after {
  top: 13px;
  left: 100px;
  width: 75px;
  transform: rotate(0deg);
}

.map-service .location2 li.C6_2:after {
  top: -22px;
  left: 132px;
}

.map-service .location3 li.S1 {
  top: 55px;
  left: -114px;
}

.map-service .location3 li.S1:before,
.map-service .location3 li.S1:after {
  top: 0px;
  left: 100px;
  width: 60px;
  transform: rotate(-20deg);
}

.map-service .location3 li.S1:after {
  top: -19px;
  left: 154px;
}

.map-service .location3 li.S2 {
  top: 100px;
  left: -117px;
}

.map-service .location3 li.S2:before,
.map-service .location3 li.S2:after {
  top: 6px;
  left: 100px;
  width: 60px;
  transform: rotate(-20deg);
}

.map-service .location3 li.S2:after {
  top: -11px;
  left: 159px;
}

.map-service .location3 li.S3 {
  top: 150px;
  left: -70px;
}

.map-service .location3 li.S3:before,
.map-service .location3 li.S3:after {
  top: -14px;
  left: 95px;
  width: 50px;
  transform: rotate(-44deg);
}

.map-service .location3 li.S3:after {
  top: -40px;
  left: 158px;
}

.map-service .location4 li.E1 {
  top: 35px;
  right: -120px;
}

.map-service .location4 li.E1:before,
.map-service .location4 li.E1:after {
  top: 15px;
  right: 103px;
  width: 47px;
  transform: rotate(0deg);
}

.map-service .location4 li.E1:after {
  top: 16px;
  right: 115px;
}

.map-service .location4 li.E2 {
  bottom: 180px;
  right: -80px;
}

.map-service .location4 li.E2:before,
.map-service .location4 li.E2:after {
  top: 15px;
  right: 103px;
  width: 37px;
  transform: rotate(0deg);
}

.map-service .location4 li.E2:after {
  top: 12px;
  right: 115px;
}

.map-service .location4 li.E3 {
  bottom: 60px;
  right: -30px;
}

.map-service .location4 li.E3:before,
.map-service .location4 li.E3:after {
  top: 15px;
  right: 103px;
  width: 37px;
  transform: rotate(0deg);
}

.map-service .location4 li.E3:after {
  top: 12px;
  right: 115px;
}

.map-service .location5 li.Island1 {
  top: 70px;
  left: -100px;
}

.map-service .location5 li.Island1:before,
.map-service .location5 li.Island1:after {
  top: 35px;
  right: -40px;
  width: 50px;
  transform: rotate(30deg);
}

.map-service .location5 li.Island1:after {
  top: 28px;
  right: 17px;
}

.map-service .location5 li.Island2 {
  bottom: 40px;
  left: -100px;
}

.map-service .location5 li.Island2:before,
.map-service .location5 li.Island2:after {
  top: 20px;
  left: 103px;
  width: 41px;
  transform: rotate(0deg);
}

.map-service .location5 li.Island2:after {
  top: 12px;
  right: 115px;
}

.map-service .location5 li.Island3 {
  top: 0px;
  left: -100px;
}

.map-service .location5 li.Island3:before,
.map-service .location5 li.Island3:after {
  top: 20px;
  left: 103px;
  width: 41px;
  transform: rotate(0deg);
}

.map-service .location5 li.Island3:after {
  top: 12px;
  right: 115px;
}

/*----map medical style---*/
.map-med .location1 li.N1 {
  top: -45px;
  left: 26px;
}

.map-med .location1 li.N1:before,
.map-med .location1 li.N1:after {
  top: 40px;
  right: 41px;
  width: 30px;
  transform: rotate(90deg);
}

.map-med .location1 li.N1:after {
  top: 54px;
  left: 38px;
}

.map-med .location1 li.N2 {
  top: -32px;
  left: -83px;
}

.map-med .location1 li.N2:before,
.map-med .location1 li.N2:after {
  top: 56px;
  left: 97px;
  width: 28px;
  transform: rotate(50deg);
}

.map-med .location1 li.N2:after {
  left: 108px;
  top: 56px;
}

.map-med .location1 li.N3 {
  top: 21px;
  left: -129px;
}

.map-med .location1 li.N3:before,
.map-med .location1 li.N3:after {
  top: 32px;
  left: 102px;
  width: 36px;
  transform: rotate(29deg);
}

.map-med .location1 li.N3:after {
  left: 127px;
  top: 32px;
}

.map-med .location2 li.C1 {
  top: 8px;
  left: -65px;
}

.map-med .location2 li.C1:before,
.map-med .location2 li.C1:after {
  top: 40px;
  left: 95px;
  width: 36px;
  transform: rotate(58deg);
}

.map-med .location2 li.C1:after {
  top: 46px;
  left: 113px;
}

.map-med .location2 li.C2 {
  top: 41px;
  left: -95px;
}

.map-med .location2 li.C2:before,
.map-med .location2 li.C2:after {
  top: 43px;
  left: 98px;
  width: 96px;
  transform: rotate(27deg);
}

.map-med .location2 li.C2:after {
  top: 58px;
  left: 185px;
}

.map-med .location2 li.C3 {
  top: 91px;
  left: -112px;
}

.map-med .location2 li.C3:before,
.map-med .location2 li.C3:after {
  top: 36px;
  left: 100px;
  width: 56px;
  transform: rotate(-149deg);
}

.map-med .location2 li.C3:after {
  top: 43px;
  left: 140px;
}

.map-med .location2 li.C4 {
  top: 144px;
  left: -120px;
}

.map-med .location2 li.C4:before,
.map-med .location2 li.C4:after {
  top: 20px;
  left: 101px;
  width: 75px;
  transform: rotate(157deg);
}

.map-med .location2 li.C4:after {
  top: -3px;
  left: 169px;
}

.map-med .location3 li.S1 {
  top: 40px;
  left: -144px;
}

.map-med .location3 li.S1:before,
.map-med .location3 li.S1:after {
  top: 13px;
  left: 139px;
  width: 27px;
  transform: rotate(0deg);
}

.map-med .location3 li.S1:after {
  top: 4px;
  left: 155px;
}

.map-med .location3 li.S2 {
  top: 82px;
  left: -137px;
}

.map-med .location3 li.S2:before,
.map-med .location3 li.S2:after {
  top: 9px;
  left: 136px;
  width: 34px;
  transform: rotate(-31deg);
}

.map-med .location3 li.S2:after {
  top: -4px;
  left: 156px;
}

.map-med .location3 li.S3 {
  top: 119px;
  left: -119px;
}

.map-med .location3 li.S3:before,
.map-med .location3 li.S3:after {
  top: 4px;
  left: 136px;
  width: 56px;
  transform: rotate(-29deg);
}

.map-med .location3 li.S3:after {
  top: -18px;
  left: 184px;
}

.map-med .location4 li.E1 {
  top: 1px;
  right: -126px;
}

.map-med .location4 li.E1:before,
.map-med .location4 li.E1:after {
  top: 25px;
  right: 103px;
  width: 43px;
  transform: rotate(0deg);
}

.map-med .location4 li.E1:after {
  top: 16px;
  right: 130px;
}

.map-med .location4 li.E2 {
  top: 53px;
  bottom: inherit;
  right: -121px;
}

.map-med .location4 li.E2:before,
.map-med .location4 li.E2:after {
  top: 4px;
  right: 96px;
  width: 43px;
  transform: rotate(47deg);
}

.map-med .location4 li.E2:after {
  top: -17px;
  right: 119px;
}

.map-med .location4 li.E3 {
  top: 102px;
  right: -98px;
}

.map-med .location4 li.E3:before,
.map-med .location4 li.E3:after {
  top: 19px;
  right: 103px;
  width: 37px;
  transform: rotate(22deg);
}

.map-med .location4 li.E3:after {
  top: 6px;
  right: 125px;
}

.map-med .location4 li.E4 {
  top: 160px;
  right: -94px;
}

.map-med .location4 li.E4:before,
.map-med .location4 li.E4:after {
  top: 9px;
  right: 99px;
  width: 49px;
  transform: rotate(40deg);
}

.map-med .location4 li.E4:after {
  top: -15px;
  right: 130px;
}

.map-med .location4 li.E5 {
  bottom: 47px;
  right: -50px;
}

.map-med .location4 li.E5:before,
.map-med .location4 li.E5:after {
  top: 21px;
  right: 103px;
  width: 37px;
  transform: rotate(0deg);
}

.map-med .location4 li.E5:after {
  top: 12px;
  right: 125px;
}

/*---map medical---*/
.map-med .location1 li:after,
.map-med .location2 li:after,
.map-med .location3 li:after,
.map-med .location4 li:after,
.map-med .location5 li:after {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/map-medical.png) no-repeat;
  background-size: contain;
  transform: rotate(0deg) !important;
}

/**/
.map-med .location1 li.N2:after,
.map-med .location1 li.N3:after,
.map-med .location2 li.C2:after,
.map-med .location2 li.C3:after,
.map-med .location2 li.C4:after,
.map-med .location3 li.S1:after,
.map-med .location3 li.S3:after,
.map-med .location4 li.E1:after,
.map-med .location4 li.E2:after,
.map-med .location4 li.E3:after,
.map-med .location4 li.E4:after,
.map-med .location4 li.E5:after {
  background: url(../images/map-medical2.png) no-repeat;
  background-size: 100%;
  width: 20px !important;
  height: 20px !important;
}

/*---map service---*/
.map-service .location1 li:after,
.map-service .location2 li:after,
.map-service .location3 li:after,
.map-service .location4 li:after,
.map-service .location5 li:after,
.map-service .location6 li:after {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/map-service.png) no-repeat;
  background-size: contain;
  transform: rotate(0deg) !important;
}

.ENsize {
  font-size: 0.75em;
}

.map-service.ENsize .location1 li.N1:before {
  top: 47px;
  right: 2px;
  width: 52px;
  transform: rotate(90deg);
}

.map-service.ENsize .location1 li.N1:after {
  right: 8px;
}

.map-service.ENsize .location5 li.Island1:before,
.map-service.ENsize .location5 li.Island1:after {
  top: 29px;
}

.map-service.ENsize .location5 li.Island2:before,
.map-service.ENsize .location5 li.Island2:after {
  transform: rotate(0deg);
}

.map-med.ENsize .location1 li.N2:before,
.map-med.ENsize .location1 li.N2:after {
  top: 47px;
  left: 89px;
  width: 33px;
  transform: rotate(50deg);
}

.map-med.ENsize .location2 li.C1:before,
.map-med.ENsize .location2 li.C1:after {
  top: 40px;
  left: 92px;
  width: 46px;
}

.map-med.ENsize .location2 li.C3,
.map-med.ENsize .location2 li.C4,
.map-med.ENsize .location4 li,
.map-home.ENsize .location4 li,
.map-home.ENsize .location1 li,
.map-home.ENsize .location2 li {
  height: 35px;
}

.map-med.ENsize .location1 li.N2:after {
  left: 108px;
}

.map-med.ENsize .location2 li.C1:after {
  left: 117px;
  top: 48px;
}

.map-med.ENsize .location2 li.C3,
.map-med.ENsize .location4 li.E1 {
  width: 115px;
}

.map-med.ENsize .location2 li.C4:after {
  top: -2px;
  transform: rotate(167deg);
}

.map-home.ENsize .location1 li.N4:before {
  top: 30px;
  transform: rotate(32deg);
}

.map-home.ENsize .location1 li.N2:before {
  top: 50px;
  transform: rotate(59deg);
}

.map-home.ENsize .location1 li.N1:before {
  top: 48px;
}

.map-med2 {
  width: 20px;
}

.manage_title {
  color: #268725;
  font-size: 1.562em;
  padding: 0 0 0 20px;
  position: relative;
  font-weight: bolder;
  margin-bottom: 20px;
}
.manage_title:before {
  content: "";
  width: 6px;
  height: 25px;
  background-color: #268725;
  position: absolute;
  left: 0;
  top: 2px;
}

.poison_Tb {
  margin-bottom: 20px;
  border-top: 3px solid #333 !important;
  border-bottom: 3px solid #333 !important;
}
.poison_Tb table {
  border: none !important;
  margin: 0 !important;
}
.poison_Tb table td,
.poison_Tb table th {
  border: none !important;
}
@media (max-width: 767px) {
  .poison_Tb table td,
  .poison_Tb table th {
    display: block;
  }
}
.poison_Tb table tr:last-child td,
.poison_Tb table tr:last-child th {
  border-bottom: none !important;
}
.poison_Tb table th {
  padding: 15px 50px 15px 10px !important;
  text-align: right;
  font-size: 1.063em;
  font-weight: normal;
  position: relative;
  width: 33%;
  font-weight: bold;
  background-color: transparent !important;
  border-bottom: 1px solid #bbb !important;
}
@media (max-width: 767px) {
  .poison_Tb table th {
    width: 100%;
    text-align: left;
    background-color: #e6e6e6 !important;
  }
}
.poison_Tb table th span {
  display: block;
  font-size: 0.813em;
}
.poison_Tb table th:after {
  content: "";
  position: absolute;
  width: 1px;
  height: auto;
  background-color: #bbb;
  right: 0;
  top: 10px;
  bottom: 10px;
}
@media (max-width: 767px) {
  .poison_Tb table th:after {
    display: none;
  }
}
.poison_Tb table td {
  padding: 15px 10px 15px 50px !important;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #bbb !important;
}
@media (max-width: 767px) {
  .poison_Tb table td {
    padding: 15px 10px !important;
  }
}
.poison_Tb table .manage_explain {
  width: 70%;
  float: right;
}
@media (max-width: 767px) {
  .poison_Tb table .manage_explain {
    width: 100%;
  }
}
.poison_Tb table .manage_explain .manage_explain_title {
  text-align: right;
  color: #367c8d;
}
.poison_Tb table .manage_explain .manage_explain_title a {
  text-decoration: none;
  position: relative;
  padding: 0 25px 0 0;
  display: block;
}
.poison_Tb table .manage_explain .manage_explain_title a:after {
  content: "";
  border: 7px solid #367c8d;
  border-right-color: transparent;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 10px;
  right: 0;
  transition: 0.3s;
}
.poison_Tb table .manage_explain .manage_explain_title a.addopen:after {
  transform: rotate(180deg);
  top: 2px;
}
.poison_Tb table .manage_explain .manage_explain_content {
  display: none;
  padding: 15px;
  color: #333;
  background-color: #eee;
  font-size: 0.938em;
}

.poison_download,
.poison_link {
  margin-bottom: 40px;
}
.poison_download ul,
.poison_link ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0 !important;
  padding: 0 !important;
}
.poison_download ul li,
.poison_link ul li {
  flex: none;
  flex-basis: 32% !important;
  margin: 0 0.66% 15px !important;
}
@media (max-width: 992px) {
  .poison_download ul li,
  .poison_link ul li {
    flex-basis: 48% !important;
    margin: 0 1% 15px !important;
  }
}
@media (max-width: 575px) {
  .poison_download ul li,
  .poison_link ul li {
    flex-basis: 100% !important;
    margin: 0 0 15px !important;
  }
}
.poison_download ul li a,
.poison_link ul li a {
  display: block;
  background-color: #367c8d;
  color: #fff;
  padding: 10px 10px 10px 15px;
  position: relative;
  text-decoration: none;
  transition: 0.5s;
}
.poison_download ul li a:after,
.poison_link ul li a:after {
  content: "";
  width: 50px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #285c68;
}
.poison_download ul li a span,
.poison_link ul li a span {
  position: absolute;
  z-index: 9;
  right: 10px;
  top: 8px;
}
.poison_download ul li a span img,
.poison_link ul li a span img {
  width: 28px;
}
.poison_download ul li a:hover,
.poison_link ul li a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #285c68;
}
.poison_download ul li p,
.poison_link ul li p {
  line-height: 1.5em;
  padding: 10px 0 0 0;
}

.cp article {
  position: relative;
}
.cp article .sort_number {
  display: flex;
  flex: auto;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  top: 8px;
}
.cp article .sort_number span {
  background-color: #999;
  color: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 2px;
  font-size: 1em;
}
.cp article .sort_number span.poison01 {
  background-color: #008579;
}
.cp article .sort_number span.poison02 {
  background-color: #986f09;
}
.cp article .sort_number span.poison03 {
  background-color: #e42549;
}
.cp article .sort_number span.poison04 {
  background-color: #458535;
}
.cp article .sort_number span.attention {
  background-color: #666;
  width: 70px;
  height: 30px;
  border-radius: 20px;
}

/*--------------------------------sitemap*/
.sitemap p {
  margin: 15px 0px;
  padding: 0px;
  color: #333333;
  line-height: 180%;
}
.sitemap p kbd {
  border: 1px solid #aaa;
  background: transparent;
  color: #222;
  padding: 0 0.3em;
  margin: 0 0.2em 0.1em;
}
.sitemap p kbd kbd {
  border: none;
}
.sitemap .accesskeyDefine {
  padding: 1em 2em;
  background: #eee;
  border-radius: 6px;
}
.sitemap .accesskeyDefine li {
  margin-bottom: 0.2em;
}
.sitemap kbd {
  background: #fff;
  border-radius: 0.2em;
  color: #555;
  font-weight: bold;
  display: inline-block;
  padding: 0.1em 0.6em;
  font-size: 0.938em;
  font-family: sans-serif;
  margin-right: 0.4em;
  margin-bottom: 0.1em;
  vertical-align: middle;
  border-top: 1px solid #bbb;
  border-bottom: 3px solid #bbb;
  border-left: 2px solid #bbb;
  border-right: 2px solid #bbb;
}
.sitemap kbd ~ kbd {
  margin-left: 0.4em;
}
.sitemap kbd kbd {
  border: none;
}

/*------------------------------------------------------*/
.accesskeyDefine {
  margin: 10px 0px;
  padding: 0px;
  color: #333333;
}
.accesskeyDefine li {
  background-image: url(../images/link_icon01.png);
  background-repeat: no-repeat;
  background-position: 0px 11px;
  list-style-type: none;
  padding: 0 0 0 15px;
  margin: 0 0 10px 0;
}

.sitemap ul.cascading {
  list-style: none;
  margin: 30px 0;
  padding: 20px 0px 10px;
}
.sitemap ul.cascading a {
  text-decoration: none;
  color: #333;
}
.sitemap ul.cascading a:hover {
  text-decoration: underline;
  color: #154b15;
}
.sitemap ul.cascading li {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  line-height: 125%;
}
.sitemap ul.cascading li ul {
  list-style: none;
  padding: 0;
  margin: 0.4em 0 0.8em 1.2em;
  *margin-left: 3.2em;
}
.sitemap ul.cascading li ul li a {
  margin: 0 0 0.6em;
  padding: 0 0 5px 0px;
  font-size: 1.063em;
  color: #25abd5;
  font-weight: normal;
  text-align: left;
  background-image: none;
  border-bottom: none;
  color: #333;
}
.sitemap ul.cascading li ul li ul {
  *margin-left: 3em;
}
.sitemap ul.cascading li ul li ul li {
  float: none;
  clear: both;
  display: block;
  width: 100%;
}
.sitemap ul.cascading li ul li ul li a {
  padding-left: 2.5em;
  text-indent: -2.5em;
  display: block;
  border-bottom: 0;
  font-size: 1.125em;
  color: #333;
}
.sitemap ul.cascading > li {
  width: 100%;
  vertical-align: top;
  margin: 0 5px 15px 0px;
  padding: 10px 10px 0px 0px;
  *width: auto;
  height: auto;
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.sitemap ul.cascading > li:before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0px;
  top: 10px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent transparent #268725;
}
.sitemap ul.cascading > li a {
  font-size: 1.375em;
  color: #268725;
  font-weight: bolder;
  padding-left: 20px;
}
.sitemap ul.cascading > li a:hover {
  color: #e30000;
}
.sitemap ul.cascading > li ul {
  margin: 20px 0 30px 5px;
}
.sitemap ul.cascading > li ul li {
  display: inline-block;
  width: 28%;
  margin: 0 10px 20px 15px;
  height: auto;
  vertical-align: top;
  line-height: 1.4em;
}
@media (max-width: 991px) {
  .sitemap ul.cascading > li ul li {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .sitemap ul.cascading > li ul li {
    width: 43%;
  }
}
@media (max-width: 480px) {
  .sitemap ul.cascading > li ul li {
    width: 100%;
  }
}

/*---------form--------forward 、qp 、 */
.forwardForm h3,
.qp h3 {
  margin: 0 0px 10px;
  font-size: 1.25em;
  font-weight: bold;
  color: #F90;
}
.forwardForm table,
.qp table {
  border-collapse: collapse;
  width: 100%;
  clear: both;
  margin: 0 0 20px;
  color: #313131;
  background-color: #fff;
}
.forwardForm table caption,
.qp table caption {
  display: none;
}
.forwardForm table th,
.qp table th {
  background-color: #e6e6e6;
  color: #000;
  text-align: right;
  padding: 10px;
  border: 1px solid #ccc;
  white-space: nowrap;
  font-weight: normal;
  width: 20%;
}
.forwardForm table td,
.qp table td {
  color: #313131;
  border: 1px solid #CCC;
  padding: 10px;
  position: relative;
}
.forwardForm table td select,
.qp table td select {
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 3px 3px 6px;
}
.forwardForm table td .text2,
.qp table td .text2 {
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 4px 3px;
  width: auto !important;
}
.forwardForm table td .text,
.qp table td .text {
  width: 100%;
  border: 1px solid #ccc;
  padding: 4px 3px;
}
.forwardForm table td .text:focus,
.qp table td .text:focus {
  outline: 2px solid #fdb300;
}
.forwardForm table td input,
.qp table td input {
  vertical-align: middle;
  margin: 0 0px 0 0;
  font-size: 100%;
  width: auto;
}
.forwardForm table td input[type=checkbox],
.qp table td input[type=checkbox] {
  width: 20px;
  height: 20px;
  border-radius: 2px;
}
.forwardForm table td textarea,
.qp table td textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 0 3px;
}
.forwardForm table td a,
.qp table td a {
  color: #006699;
  text-decoration: none;
}
.forwardForm table td a:hover,
.qp table td a:hover {
  color: #CC0000;
  text-decoration: none;
}
.forwardForm table td p,
.qp table td p {
  margin: 10px 0;
  display: block;
}
.forwardForm table td label,
.qp table td label {
  margin-right: 10px;
}

@media only screen and (max-width: 480px) {
  .forwardForm table,
  .forwardForm thead,
  .forwardForm tbody,
  .forwardForm th,
  .forwardForm td,
  .forwardForm tr,
  .qp table,
  .qp thead,
  .qp tbody,
  .qp th,
  .qp td,
  .qp tr {
    display: block;
  }
  .forwardForm table,
  .qp table {
    border: none;
    border: 1px solid #ccc;
  }
  .forwardForm table tr,
  .qp table tr {
    border-bottom: none;
    margin: 0;
  }
  .forwardForm table th,
  .qp table th {
    width: 100%;
    text-align: left;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 7px;
  }
  .forwardForm table td,
  .qp table td {
    border: none;
    border-bottom: 1px solid #ccc;
    position: relative;
    padding-left: 2%;
  }
  .forwardForm table td .text,
  .forwardForm table td textarea,
  .qp table td .text,
  .qp table td textarea {
    width: 100%;
  }
}
/*------------------------------------------------------------star*/
.must {
  color: #FF0000;
  margin: 0px 5px 0 0;
  font-size: 150%;
  font-weight: bold;
  vertical-align: bottom;
  line-height: 110%;
}

/*--------------------------------------------------------------------------formBtn--*/
.formBtn {
  margin: 10px 0 30px;
  text-align: center;
}
.formBtn img {
  vertical-align: middle;
  margin: 0 5px;
}

.btn_color {
  background-color: #214b56;
  position: relative;
  border: 1px solid #214b56;
  color: #fff;
  padding: 8px 15px;
  cursor: pointer;
  vertical-align: middle;
  margin: 0;
  font-family: "微軟正黑體";
  font-size: 1.06em;
  text-align: center;
  border-radius: 5px;
  position: relative;
  width: auto;
}
.btn_color:hover {
  color: #fff;
  background-color: #132b31;
  border: 1px solid #132b31;
}
.btn_color:focus {
  outline: 2px solid #ffc000;
}

.btn_lightgray {
  background-color: #c9c9c9;
  position: relative;
  border: 1px solid #c9c9c9;
  color: #333;
  padding: 3px 10px;
  cursor: pointer;
  vertical-align: middle;
  margin: 5px 0;
  font-family: "微軟正黑體";
  font-size: 1.06em;
  text-align: center;
  border-radius: 5px;
  position: relative;
}
.btn_lightgray:hover {
  color: #000;
  background-color: #b5b5b5;
  border: 1px solid #b5b5b5;
}
.btn_lightgray:focus {
  outline: 2px solid #ffc000;
}

.btn_gray {
  background-color: #7d7d7d;
  position: relative;
  border: 1px solid #7d7d7d;
  color: #fff;
  padding: 8px 15px;
  cursor: pointer;
  vertical-align: middle;
  margin: 0;
  font-family: "微軟正黑體";
  font-size: 1.06em;
  text-align: center;
  border-radius: 5px;
  position: relative;
  width: auto;
}
.btn_gray:hover {
  background-color: #626262;
  border: 1px solid #626262;
}

form textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 6px 12px;
  margin: 10px 0;
}
form textarea:focus {
  border: 1px solid #fdb300;
}

input[type=checkbox], input[type=radio] {
  font-size: 1em;
  margin: 5px 0.2em 0 0;
  width: 1em;
  height: 1em;
  background-color: #f7f6ee;
  border: 2px solid #ccc;
}
input[type=checkbox]:focus, input[type=radio]:focus {
  border: 2px solid #fdb300;
}

form .form_grp,
form .check_grp,
form .radio_grp,
form .btn_grp,
form .upload_grp {
  margin-bottom: 0.2em;
}
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: 0.2em 0.5em 0 0;
}
form .check_grp.form_inline .form_title, form .check_grp.form_inline .form_content,
form .radio_grp.form_inline .form_title,
form .radio_grp.form_inline .form_content {
  display: inline-block;
}
form .form_grp.form_inline label,
form .upload_grp.form_inline label {
  display: inline-block;
  margin-right: 0.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_grp.form_inline .form_title, form .form_grp.form_inline .form_content,
form .upload_grp.form_inline .form_title,
form .upload_grp.form_inline .form_content {
  display: inline-block;
}
form .form_grp.form_inline input[type=submit],
form .upload_grp.form_inline input[type=submit] {
  margin: 0 0 0.3em 0;
}
form.form_inline label {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.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 .btn_grp,
form.form_inline .upload_grp {
  display: inline-block;
  margin-right: 0.5em;
}
form.form_inline .form_title, form.form_inline .form_content {
  display: inline-block;
}
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] {
  margin-top: -3px;
  padding: 0.45em 1em;
}
form.form_inline select,
form.form_inline textarea {
  width: auto;
}

label,
legend {
  display: inline-block;
  margin: 0 0 0.5em 0;
}
label.inline input,
label.inline select,
label.inline textarea,
legend.inline input,
legend.inline select,
legend.inline textarea {
  width: auto;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

input.error,
textarea.error,
select.error,
button.error {
  box-shadow: 0px 0px 0px 2px #fdb300;
}
input.error + .notice_warning,
textarea.error + .notice_warning,
select.error + .notice_warning,
button.error + .notice_warning {
  background: none;
  color: #fdb300;
  font-size: 1em;
  margin: 0;
  padding-left: 30px;
}

input,
select,
textarea {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=text]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=file]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999999;
}
input[type=text]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=file]::-moz-placeholder,
input[type=tel]::-moz-placeholder {
  /* Firefox 19+ */
  color: #999999;
}
input[type=text]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=file]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder {
  /* IE 10+ */
  color: #999999;
}
input[type=text]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=file]:-moz-placeholder,
input[type=tel]:-moz-placeholder {
  /* Firefox 18- */
  color: #999999;
}

input[type=text]:focus,
input[type=reset]:focus,
input[type=file]:focus,
input[type=tel]:focus,
input[type=password]:focus,
input[type=date]:focus,
textarea:focus,
select:focus {
  border: 1px solid #ffc331;
  box-shadow: 0px 0px 0px 2px #ffc331;
  outline: none;
}

select {
  line-height: 2.4em;
  height: 2.4em;
  padding: 0 30px 0 0.5em;
  border: 1px solid #ccc;
  background: #fff url(../images/basic/icon_select_arrow.png) no-repeat right 2px center;
  background-size: 16px;
}
select option {
  outline: none;
  border: none;
}
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

input[type=reset] {
  text-shadow: none;
}

input[type=checkbox],
input[type=radio] {
  font-size: 1em;
  margin: 6px 0.2em 0 0;
  width: 1em;
  height: 1em;
  background-color: #f7f6ee;
  border: 2px solid #ccc;
}

input[type=radio] {
  border-radius: 50%;
}

input[type=checkbox]:checked,
input[type=radio]:checked {
  border-color: #be5500;
  background-color: #be5500;
  outline: none;
}

input[type=checkbox]:focus,
input[type=radio]:focus {
  outline: none;
}

input[type=checkbox]:checked {
  background-image: url(../images/basic/icon_checked.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 98%;
  box-shadow: #be5500 0 0 0 1px;
}

input[type=radio]:checked {
  box-shadow: #fff 0 0 0 3px inset, #ddd 0 0 0 1px;
}

input[readonly],
input[disable] {
  background: #f2f2f2;
  color: #b3b3b3;
  border-color: #b3b3b3;
}
input[readonly] ~ label,
input[disable] ~ label {
  color: #b3b3b3;
}
input[readonly]:hover, input[readonly]:focus,
input[disable]:hover,
input[disable]:focus {
  border-color: #b3b3b3;
  box-shadow: none;
}

input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 1.25em;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

.form_content {
  min-height: 1px;
  padding-left: 2px;
  padding-right: 2px;
  box-sizing: border-box;
}
.form_content.hasBtn {
  padding-right: 0;
}
.form_content .datepick {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.form_content .datepick + .datepick {
  margin-left: 1em;
  margin-right: 0;
  padding-right: 0;
}
.form_content .datepick + .datepick:before {
  content: "~";
  font-size: 1.5em;
  display: inline-block;
  position: absolute;
  left: -0.65em;
  top: 0.3em;
  color: #777;
}
.form_content .datepick + .datepick i {
  right: 0.5em;
}
.form_content .datepick button {
  position: absolute;
  padding: 0.37em 0.1em !important;
  right: 0em;
  top: -0.2em;
  min-width: 1em;
  background: none;
  border: none;
  width: auto;
  pointer-events: none;
}
.form_content .datepick button i:before {
  width: 1.5em;
  height: 1.5em;
}

.search_grp {
  padding: 1em;
}
.search_grp .form_grp,
.search_grp .check_grp,
.search_grp .radio_grp,
.search_grp .btn_grp,
.search_grp .upload_grp {
  margin-bottom: 0.5em;
}

/* footer */
#footer {
  background: #7accd1;
  padding: 35px 0 35px 0;
  overflow: hidden;
  color: #333;
  font-size: 0.813em;
  font-weight: normal;
}
#footer a {
  color: #fff;
  background-color: #367c8d;
  padding: 2px 5px;
  border-radius: 3px;
  display: inline-block;
}
#footer a:hover, #footer a:focus {
  background-color: #214b56;
}
#footer p {
  margin: 0;
}
#footer .container {
  max-width: 1000px;
  background: transparent;
}
#footer .Epaper {
  margin-bottom: 20px;
}
#footer .Copyright {
  background: #424242;
  color: #fff;
  padding: 15px 30px;
  line-height: 1em;
  margin: 0 auto;
  color: #ddd;
  clear: both;
}
#footer .web20 {
  margin-bottom: 20px;
  display: flex;
}
#footer .web20 a {
  display: inline-block;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-align: center;
  font-size: 2em;
  line-height: 50px;
  margin-right: 10px;
}
#footer .web20 a:nth-child(1) {
  background: #cb161b;
}
#footer .web20 a:nth-child(2) {
  background: #3b589c;
}
#footer .web20 a:nth-child(3) {
  background: #f79a16;
}
#footer .web20 a:nth-child(4) {
  background: #ea7818;
}
#footer img {
  margin: 10px 10px 15px 0px;
  display: inline-block;
  vertical-align: middle;
}
#footer .Footer_link {
  margin-bottom: 10px;
}
#footer .Footer_link a {
  padding: 0px 15px;
  background: #367c8d;
  padding: 5px 15px;
  margin-bottom: 5px;
  border-radius: 4px;
  margin-right: 4px;
  display: inline-block;
  white-space: nowrap;
}
#footer .Footer_link a:hover {
  color: #fff;
  background: #214b56;
}
#footer .Footer_info {
  margin: 0;
  clear: both;
}
#footer .UpdateTime,
#footer .Counter {
  font-size: 0.813em;
  margin: 0;
}
#footer .Footer_icon a {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  background-color: transparent;
}

@media (max-width: 767px) {
  #footer {
    background: black;
    color: #fff;
  }
  #footer .container {
    width: 100%;
    background: transparent;
  }
  #footer .Footer_link a {
    display: block;
    float: left;
    margin: 0px 5px 5px 0px;
  }
  #footer h3 {
    display: none;
  }
  #footer img {
    margin: 10px 10px 15px 0px;
    display: inline-block;
    vertical-align: middle;
    max-width: 250px;
  }
  #footer p {
    margin: 0px;
  }
  #footer .Copyright {
    text-align: center;
  }
}
/*////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////  #FatFooter  /////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////*/
#FatFooter {
  background: #393939;
  overflow: hidden;
  padding: 15px 0px 0px 0px;
}
#FatFooter .accesskey {
  z-index: 999;
  position: relative;
}
#FatFooter .accesskey a {
  color: #393939;
}
#FatFooter .accesskey a:focus {
  color: #fff;
}

@media (max-width: 767px) {
  #FatFooter {
    display: none;
  }
}
#FatFooter .FatFooterBtn {
  font-size: 0.813em;
  cursor: pointer;
  display: inline-block;
  width: 80px;
  color: #fff;
  border: none;
  background: RGBA(0, 0, 0, 0.5);
  border-radius: 4px;
  position: absolute;
  right: 3%;
  z-index: 9999;
}

@media (max-width: 991px) {
  #FatFooter .FatFooterBtn {
    left: auto;
    right: 10px;
  }
}
#FatFooter .FatFooterBtn:hover,
#FatFooter .FatFooterBtn:focus {
  background: RGBA(0, 0, 0, 0.8);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

#FatFooter .FatFooterBtn.close {
  font-weight: normal;
  border: none;
  text-shadow: none;
  opacity: 1;
  display: inline-block;
  line-height: 1.45em;
}

#FatFooter nav {
  clear: both;
  color: #fff;
  max-width: 1200px;
  margin: 8px auto;
  padding: 30px 15px 30px 15px;
  overflow: hidden;
  display: block;
  position: relative;
}

#FatFooter nav ul {
  list-style: none;
  margin: 0 0px 0 0px;
  padding: 5px 0;
  overflow: hidden;
  width: 100%;
  text-align: left;
}

#FatFooter nav ul li {
  vertical-align: top;
  display: inline-block;
  text-align: center;
  line-height: 2.6em;
  margin: 0px 0.3%;
}

#FatFooter nav ul li a {
  color: #fff;
  font-size: 1em;
  text-align: left;
  margin: 0 5px 0px;
  padding: 5px;
  line-height: 1.65em;
  display: block;
  font-weight: 500;
  font-weight: 800;
}

#FatFooter nav ul li a:hover {
  color: #fff;
  text-decoration: none;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
}

#FatFooter nav ul li ul {
  padding: 10px 0 0;
  margin-top: 5px;
  overflow: hidden;
  border-top: 1px solid #367c8d;
  display: none;
}

.no-js #FatFooter nav ul li ul {
  display: block;
}

#FatFooter nav ul li ul li {
  display: inline;
  margin: 0;
  padding: 5px 0;
  border: none;
  background: none;
  list-style-type: disc;
}

#FatFooter nav ul li ul li a {
  display: block;
  color: #ddd;
  font-weight: normal;
  text-decoration: none;
  font-size: 0.938em;
  font-weight: normal;
  line-height: 1.4em;
  padding: 3px 8px;
  border-bottom: none;
  background: none;
  text-align: left;
  box-sizing: border-box;
}

#FatFooter nav ul li ul li ul {
  display: none;
}

@media (min-width: 1200px) {
  #FatFooter nav ul li {
    width: 180px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #FatFooter nav ul li {
    width: 150px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #FatFooter nav ul li {
    margin: 0 0 30px 0;
    width: 32.5%;
    text-align: center;
    padding: 0;
  }
  #FatFooter nav ul li ul {
    margin: 0;
  }
  #FatFooter nav::before {
    display: none;
  }
  #FatFooter nav ul li a {
    border-bottom: 1px solid #367c8d;
  }
  #FatFooter nav ul li a li a {
    border-bottom: none;
  }
}
@media (max-width: 767px) {
  #FatFooter nav ul {
    width: 100%;
  }
  #FatFooter nav ul li {
    display: block;
  }
}
.breadcrumb {
  padding: 4px 0;
  font-size: 0.938em;
  background: #fff;
}
.breadcrumb i {
  opacity: 0.5;
  margin-right: 5px;
}
.breadcrumb > .active {
  color: #367c8d;
}

.sp .banner {
  margin: 0 0 20px 0;
}
.sp .banner .carousel img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 991px) {
  .sp .banner .carousel img {
    height: auto;
  }
}
.sp .banner .carousel-control.left, .sp .banner .carousel-control.right {
  background-image: none;
}
.sp .banner .carousel-indicators {
  bottom: 0;
}
.sp .banner .carousel-control .glyphicon-chevron-left:focus,
.sp .banner .carousel-control .glyphicon-chevron-right:focus,
.sp .banner .carousel-control .icon-prev,
.sp .banner .carousel-control .icon-next:focus {
  outline: 2px solid #ffc000;
}
.sp .search {
  padding: 16px 20px;
  margin: 0 0 20px 0;
  background: #367c8d;
  text-align: center;
}
.sp .search .select {
  position: relative;
  float: left;
  margin: 5px;
  width: 200px;
}
@media (max-width: 550px) {
  .sp .search .select {
    margin: 6px 0;
    float: none;
    width: 100%;
  }
}
.sp .search .select select {
  background: #fff;
  color: #1e302f;
  border-radius: 4px;
  padding: 5px 10px;
  width: 100%;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}
.sp .search .select select:focus {
  outline: 2px solid #ffc000;
  box-shadow: none;
}
.sp .search .select:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 6px 0 6px;
  border-color: #656a69 transparent transparent transparent;
}
.sp .search .keywords {
  color: #1e302f;
  float: left;
  margin: 5px;
  padding: 5px 10px;
  outline: none;
  border: none;
  border-radius: 4px;
  width: calc(100% - 410px);
}
@media (max-width: 767px) {
  .sp .search .keywords {
    width: calc(100% - 220px);
  }
}
@media (max-width: 550px) {
  .sp .search .keywords {
    width: 100%;
    float: none;
    margin: 6px 0;
  }
}
.sp .search .keywords:focus {
  outline: 2px solid #ffc000;
  box-shadow: none;
}
.sp .search .btn {
  color: #fff;
  background: #0b0d0c;
  border-radius: 4px;
  padding: 5px;
  width: 180px;
  height: 38px;
  margin: 5px;
}
@media (max-width: 767px) {
  .sp .search .btn {
    margin: 10px 0 5px 0;
  }
}
.sp .search .btn:focus {
  outline: 2px solid #ffc000;
}
.sp .listTb table th {
  border: none;
  border-bottom: 2px solid #0b0d0c;
  border-top: 2px solid #0b0d0c;
  background: #fff;
}
.sp .listTb table td {
  border: none;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 767px) {
  .sp .listTb table td {
    border: 1px solid #ccc;
  }
}
.sp .listTb table .title a {
  color: #367c8d;
}
.sp .listTb table .title a:hover {
  color: #e30000;
}
.sp .listTb table .title > span {
  font-size: 0.875em;
  color: #fff;
  text-align: center;
  display: inline-block;
  padding: 0 5px;
  margin-right: 8px;
  min-width: 60px;
  border-radius: 3px;
}
.sp .listTb table .title .seminar {
  background: #4175b0;
}
.sp .listTb table .title .orientation {
  background: #4b8102;
}
.sp .listTb table .title .course {
  background: #cf4313;
}
.sp .listTb table .title .public-hearing {
  background: #0f8287;
}
.sp .listTb table .title .other {
  background: #757474;
}
.sp .listTb table .title .event {
  background: #a06c00;
}
.sp .listTb table .apply-link,
.sp .listTb table .cancel-link {
  color: #3c7cb1;
  display: block;
}
.sp .listTb table .apply-link:hover,
.sp .listTb table .cancel-link:hover {
  color: #214b56;
  text-decoration: none;
}
@media (max-width: 767px) {
  .sp .listTb table .apply-link,
  .sp .listTb table .cancel-link {
    display: inline-block;
  }
}
.sp .top {
  position: relative;
  padding: 0 0 20px 0;
}
.sp .top h1 {
  padding-right: 180px;
}
@media (max-width: 767px) {
  .sp .top h1 {
    padding-right: 0;
  }
}
.sp .top .tab_group > a {
  display: inline-block;
  width: 25%;
  max-width: 200px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 13px 0;
  margin: 0 3px 0 0;
  text-align: center;
  border-radius: 1px;
  transition: all 0.5s;
}
.sp .top .tab_group > a:hover {
  color: #fff;
  border: 1px solid #367c8d;
  background: #367c8d;
  text-decoration: none;
}
.sp .top .tab_group .active {
  position: relative;
  color: #fff;
  border: none;
  background: #367c8d;
  text-decoration: none;
  border: 1px solid #367c8d;
}
.sp .top .tab_group .active:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 8px 0 8px;
  border-color: #3c7cb1 transparent transparent transparent;
}
.sp .top .query {
  position: absolute;
  display: inline-block;
  color: #fff;
  padding: 6px 20px;
  border-radius: 30px;
  background: #268725;
  text-align: center;
  top: 10px;
  right: 15px;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .sp .top .query {
    position: static;
  }
}
@media (max-width: 400px) {
  .sp .top .query {
    right: 0;
    width: 45%;
    border-radius: 0;
    top: 0;
    padding: 14px 0;
    margin: 0 0 0 3px;
  }
}
.sp .top h1 + .query {
  top: -5px;
}
@media (max-width: 400px) {
  .sp .top h1 + .query {
    padding: 6px 20px;
    border-radius: 30px;
    width: 150px;
  }
}
.sp .querybtn {
  display: flex;
  justify-content: flex-end;
  margin: 10px 0;
}
.sp .querybtn a {
  display: block;
  color: #fff;
  padding: 6px 20px;
  border-radius: 30px;
  background: #268725;
  text-align: center;
  transition: all 0.5s;
}
.sp .querybtn a:hover {
  text-decoration: none;
  background: #154b15;
}
.sp .content {
  position: relative;
  padding: 0 0 50px;
  margin: 0;
}
.sp .content h2,
.sp .content h3 {
  font-size: 1.375em;
  font-weight: bold;
  clear: both;
}
@media (max-width: 767px) {
  .sp .content h2,
  .sp .content h3 {
    margin-left: 0;
  }
}
.sp .content .deadline {
  position: absolute;
  right: 0;
  top: 5px;
  font-weight: bold;
}
.sp .content .deadline > span {
  font-weight: normal;
  margin-right: 5px;
}
.sp .content .info_box {
  background: #367c8d;
  border-radius: 2px;
  padding: 15px 0;
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 1em;
}
.sp .content .info_box .each {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0;
  margin: 0;
  min-height: 160px;
  line-height: 160px;
  position: relative;
}
.sp .content .info_box .each:last-of-type {
  border: none;
}
@media (max-width: 991px) {
  .sp .content .info_box .each:nth-child(even) {
    border: none;
  }
  .sp .content .info_box .each:nth-child(1) .title, .sp .content .info_box .each:nth-child(2) .title {
    border-top: none;
  }
}
.sp .content .info_box .each .title {
  opacity: 1;
  font-size: 1em;
  position: absolute;
  top: 0;
  line-height: 1;
  width: calc(100% - 30px);
  text-align: center;
  padding: 10px;
  margin: 0 15px;
}
@media (max-width: 991px) {
  .sp .content .info_box .each .title {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
}
.sp .content .info_box .each .info {
  display: inline-block;
  height: auto;
  font-size: 1.125em;
  line-height: 1.5;
  vertical-align: middle;
  margin-top: 1em;
  padding: 0 10px;
}
.sp .content .info_box .each .time > span {
  display: block;
  font-size: 1.25em;
  font-weight: bold;
  color: #fff;
}
.sp .content .info_box .each .place > span {
  display: block;
}
.sp .content .info_box .each .hours > span {
  font-size: 2em;
  font-weight: bold;
  padding: 0 5px;
}
.sp .content .info_box .each .quota > span {
  font-size: 2em;
  font-weight: bold;
}
.sp .content .info_box .each .quota .label {
  background: #be570d;
  padding: 7px 15px;
  font-size: 0.78em;
  border-radius: 30px;
  display: block;
  font-weight: normal;
}
.sp .content .info_text {
  list-style: none;
  padding: 0;
  margin: 20px 55px 40px;
}
@media (max-width: 767px) {
  .sp .content .info_text {
    margin: 15px 0 30px;
  }
}
.sp .content .info_text h3 {
  margin: 30px 0 15px;
}
.sp .content .info_text li {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
}
.sp .content .info_text li .heading {
  flex: 1 1 auto;
  flex-basis: 7em;
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 15px;
}
.sp .content .info_text li .heading:after {
  content: "/";
  display: inline-block;
  padding: 0 7px;
}
@media (max-width: 600px) {
  .sp .content .info_text li .heading {
    flex-basis: 100%;
  }
}
.sp .content .info_text li .right_content {
  flex: 1 1 auto;
  flex-basis: calc(100% - 7em);
  margin-bottom: 1.5em;
}
@media (max-width: 600px) {
  .sp .content .info_text li .right_content {
    flex-basis: 100%;
  }
}
.sp .content .info_text li .right_content a {
  display: block;
}
.sp .content .info_text li .right_content a:hover {
  color: #e30000;
}
.sp .content .info_text li .part {
  position: relative;
  max-height: 160px;
  overflow: hidden;
}
.sp .content .info_text li .part:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 30px;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to top, #fff, rgba(255, 255, 255, 0));
}
.sp .content .info_text li .show_btn,
.sp .content .info_text li .hide_btn {
  display: block;
  width: 150px;
  padding: 6px 0;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #676767;
  color: #676767;
  border-radius: 2px;
  transition: all 0.5s;
}
.sp .content .info_text .download a {
  color: #367c8d;
}
.sp .content .step {
  padding: 60px 0 0 0;
}
@media (max-width: 991px) {
  .sp .content .step {
    padding: 0;
  }
}
.sp .content .step ul {
  list-style: none;
  margin: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .sp .content .step ul {
    padding: 0 15px;
  }
}
@media (max-width: 550px) {
  .sp .content .step ul {
    padding: 0;
  }
}
.sp .content .step ul li {
  border-bottom: 2px solid #367c8d;
  padding: 25px 20px;
  color: #214b56;
  text-transform: uppercase;
  width: 160px;
  height: 114px;
}
@media (max-width: 991px) {
  .sp .content .step ul li {
    width: 25%;
    height: auto;
    border-bottom: none;
    border-right: 2px solid #367c8d;
    padding: 25px 10px;
  }
}
.sp .content .step ul li:first-child {
  border-top: 2px solid #367c8d;
}
@media (max-width: 991px) {
  .sp .content .step ul li:first-child {
    border-top: none;
    border-left: 2px solid #367c8d;
  }
}
.sp .content .step ul li:first-child.this_step:after {
  border-width: 57px 0 57px 50px;
}
.sp .content .step ul li span {
  font-size: 1.25em;
  display: block;
  font-weight: bold;
}
.sp .content .step ul li span:first-child {
  font-family: Century Gothic;
}
.sp .content .step ul li b {
  font-size: 1.625em;
}
.sp .content .step ul .this_step {
  position: relative;
  color: #fff;
  background: #367c8d;
}
.sp .content .step ul .this_step:after {
  content: "";
  position: absolute;
  left: 100%;
  top: -2px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 58px 0 58px 50px;
  border-color: transparent transparent transparent #367c8d;
}
@media (max-width: 991px) {
  .sp .content .step ul .this_step:after {
    border: none;
    background: url(../images/apply_step_triangle2.png) no-repeat top;
    background-size: calc(100% + 4px) 75%;
    width: calc(100% + 4px);
    height: 40px;
    top: 100%;
    left: -2px;
    border-color: #367c8d transparent transparent transparent;
  }
}
.sp .content .form_wrap {
  padding: 50px 70px 20px 30px;
}
@media (max-width: 767px) {
  .sp .content .form_wrap {
    padding: 50px 30px 30px;
  }
}
@media (max-width: 550px) {
  .sp .content .form_wrap {
    padding: 50px 15px 30px;
  }
}
.sp .content .form_wrap > p span {
  color: #cd4b04;
  padding: 0 7px;
}
.sp .content .form_wrap .apply_btn {
  margin-bottom: 2em;
}
.sp .content .line_banner_block {
  text-align: center;
  border: 1px solid #ddd;
  padding: 2em;
  clear: both;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  border-radius: 5px;
}
.sp .content .line_banner_block .directions {
  font-size: 1.25em;
  margin-bottom: 1em;
}
@media (max-width: 500px) {
  .sp .content .line_banner_block .line_banner_pic img {
    width: 100%;
  }
}
.sp .form-group {
  padding: 6px 0;
}
.sp .form-group .control-label span {
  color: #cd4b04;
}
.sp .form-group select.form-control {
  padding-right: 30px;
  background: #fff url(../images/basic/icon_select_arrow.png) no-repeat right 2px center;
  background-size: 16px;
}
.sp .form-group .form-control {
  height: 38px;
  box-shadow: none;
  -webkit-box-shadow: none;
  margin: 10px 0;
}
.sp .form-group .form-control:focus {
  border: 2px solid #fdb300;
}
.sp .form-group .form-control-inline {
  display: inline-block;
  width: auto;
  margin-bottom: 1em;
}
.sp .form-group .form-control-inline:focus {
  border: 2px solid #fdb300;
}
.sp .form-group p {
  font-size: 0.875em;
  color: #555;
}
.sp .form-group .btn-info {
  padding: 6px 20px;
  background: #57a947;
  border-radius: 4px;
  color: #fff;
  transition: 0.3s ease-out;
  border: none;
  height: 38px;
  margin-top: -1px;
}
.sp .form-group .btn-info:focus {
  outline: 3px solid #ffc000;
}
.sp .search_box {
  border-radius: 4px;
  border: 4px solid #eee;
  padding: 30px;
}
.sp .search_box .notice {
  text-align: center;
  color: #555;
}
.sp .search_box .notice span {
  color: #eb5503;
}
@media (max-width: 767px) {
  .sp .search_box .notice {
    text-align: left;
  }
}
@media (max-width: 400px) {
  .sp .search_box {
    padding: 20px 10px;
  }
}
.sp .search_result {
  margin: 20px 0 60px 0;
}
.sp .search_result h3 {
  position: relative;
  font-size: 1.375em;
  padding-left: 25px;
}
.sp .search_result h3:before {
  content: "";
  position: absolute;
  background: url(../images/basic/search_icon.svg) no-repeat;
  background-size: 23px;
  display: inline-block;
  width: 23px;
  height: 23px;
  top: 8px;
  left: 0;
}
@media (max-width: 767px) {
  .sp .search_result h3 {
    top: 20px;
  }
}
@media (max-width: 767px) {
  .sp .search_result {
    margin: 0 0 20px;
  }
}
.sp .apply_btn {
  text-align: center;
  margin-top: 20px;
}
.sp .apply_btn a,
.sp .apply_btn input {
  display: inline-block;
  padding: 10px;
  background: #268725;
  color: #fff;
  font-size: 1em;
  width: 11em;
  border-radius: 4px;
  border: none;
  margin: 5px 5px;
  transition: all 0.5s;
}
.sp .apply_btn a:hover,
.sp .apply_btn input:hover {
  text-decoration: none;
  background: #154b15;
}
.sp .apply_btn a:focus,
.sp .apply_btn input:focus {
  outline: 3px solid #fdb300;
}
.sp .apply_btn .prev {
  background: #b1bebe;
  color: #000;
}
.sp .apply_btn .prev:hover {
  color: #fff;
}
.sp .apply_btn .next {
  background: #0b0d0c;
}
.sp .apply_btn .query,
.sp .apply_btn .clean {
  width: 100px;
}
.sp .apply_btn .query:hover,
.sp .apply_btn .clean:hover {
  background: #154b15;
}
.sp .apply_btn .query {
  background: #214b56;
}
.sp .apply_btn .clean {
  background: #666;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-left: 0;
}

.radio-inline,
.checkbox-inline {
  margin-right: 10px;
}

.upload_grp {
  position: relative;
}
.upload_grp .form-control[readonly] {
  cursor: default;
  background: #fff;
}
.upload_grp .upload_btn {
  position: absolute;
  overflow: hidden;
  top: 12px;
  right: 17px;
  background-color: #57a947;
  color: #fff;
  text-shadow: 1px 1px 1px RGBA(0, 0, 0, 0.3);
  border-radius: 0.2em;
  background-clip: padding-box;
  padding: 0.2em 1em !important;
  border-radius: 4px;
  background-clip: padding-box;
}
@media (max-width: 767px) {
  .upload_grp .upload_btn {
    top: 2px;
  }
}/*# sourceMappingURL=design.css.map */