@charset "UTF-8";
/* CSS Document */
@import url(reset.css);
@import url(font-awesome.min.css);
@import url(rwdgrid.css);
@import url(textEditor.css);
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+TC:400,500,700|Oswald);
.side_share a {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  font-family: Helvetica, Arial, "微軟正黑體", Heiti TC, "メイリオ", sans-serif;
  font-size: 16px;
}

/*css3*/
a {
  color: #000;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  outline: none;
}

a:hover {
  color: #27003d;
}

[class*='col-'] {
  float: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.b-box {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

div.titan {
  /*--隱藏開影音、開相簿--*/
  display: none;
}

.col-1 {
  width: 100%;
}

.col-2 {
  width: 50%;
}

.col-3 {
  width: 33.33%;
}

.col-4 {
  width: 25%;
}

.col-5 {
  width: 20%;
}

a.btn_color1 {
  /*按鈕主色1*/
  color: #fff;
  background-color: #516190;
}

a.btn_color1:hover {
  background-color: #C85A56;
}

a.btn_color2 {
  /*按鈕主色2*/
  color: #fff;
  background-color: #A0A0A0;
}

a.btn_color2:hover {
  background-color: #999;
}

input[type="text"] {
  -webkit-appearance: none;
}

textarea {
  -webkit-appearance: none;
}

.outerWrap {
  position: relative;
}

.outerWrap .line {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(235, 235, 235, 0.2);
  z-index: 10;
}

.outerWrap .line:nth-of-type(1) {
  left: calc( 50% - 640px);
}

.outerWrap .line:nth-of-type(2) {
  left: calc( 50% - 320px);
}

.outerWrap .line:nth-of-type(3) {
  left: 50%;
}

.outerWrap .line:nth-of-type(4) {
  left: calc( 50% + 320px);
}

.outerWrap .line:nth-of-type(5) {
  left: calc( 50% + 640px);
}

.wrap {
  width: 1280px;
  margin: 0 auto;
}

#gmap {
  display: none;
  height: 400px;
}

.label {
  padding: 5px 7px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
}

/*-moduleBox--*/
.moduleBox {
  position: fixed;
  left: 50%;
  top: 48%;
  z-index: 1005;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition-property: top, opacity, visibility;
  -o-transition-property: top, opacity, visibility;
  transition-property: top, opacity, visibility;
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

.moduleBox.show {
  top: 50%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.moduleMask {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1003;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.moduleMask.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/*****網頁頭*****/
.topInfo {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 11;
  font-size: 0;
}

.topInfo a {
  display: inline-block;
  height: 60px;
  line-height: 60px;
  padding-left: 15px;
  padding-right: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  letter-spacing: 1.5px;
}

.topInfo i {
  margin-right: 15px;
}

.topInfo .marker {
  font-weight: 500;
  background-color: #fff;
  color: #000;
}

.topInfo .contact {
  font-weight: 500;
  background-color: #4628ae;
  color: #fff;
}

.topInfo .tel {
  font-weight: 700;
  background-color: #b39c61;
  color: #fff;
}

.topInfo .tel img {
  width: 15px;
  height: 15px;
  margin-right: 15px;
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}

header {
  position: absolute;
  left: 0;
  top: 27%;
  width: 210px;
  z-index: 50;
  background-color: #b39c61;
}

header .logo {
  background-color: #b39c61;
}

header .logo .logoBox {
  float: left;
  width: calc( 100% - 61px);
  height: 70px;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

header .logo .logoBox:hover {
  background-color: #fff;
  color: #27003d;
}

header .logo .logoBox:hover em {
  color: rgba(39, 0, 61, 0.56);
}

header .logo .logoBox div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

header .logo .logoBox span {
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  letter-spacing: 2px;
}

header .logo .logoBox em {
  font-size: 12px;
  font-weight: 400;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.56);
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

header .menuBtn {
  float: left;
  width: 60px;
  height: 70px;
  border-right: 1px solid #d1bc86;
  position: relative;
  cursor: pointer;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

header .menuBtn:hover {
  background-color: #fff;
}

header .menuBtn:hover span {
  background-color: #d1bc86;
}

header .menuBtn:hover span:before, header .menuBtn:hover span:after {
  background-color: #d1bc86;
}

header .menuBtn span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 30px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

header .menuBtn span:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

header .menuBtn span:after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

header .bottomBox {
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #b39c61;
  width: 100%;
}

/*menu*/
.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.menu > li {
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.menu > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  font-size: 15px;
}

.menu > li > a:hover, .menu > li > a.current {
  background-color: #fff;
}

.menu > li > a:hover span, .menu > li > a.current span {
  color: #d1bc86;
}

.menu > li > a:hover .num, .menu > li > a.current .num {
  color: #d1bc86;
}

.menu > li span {
  width: calc( 100% - 61px);
  height: 50px;
  line-height: 50px;
  color: #fff;
  padding: 0 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.menu .num {
  float: left;
  width: 60px;
  height: 50px;
  line-height: 50px;
  border-right: 1px solid #d1bc86;
  font-size: 14px;
  font-weight: 400;
  font-family: "Oswald", "微軟正黑體", sans-serif;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/*手機menu*/
.m_menu {
  display: none;
}

.floatBox {
  display: none;
}

/*****banner******/
.frame {
  position: relative;
}

.frame:before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(219, 219, 219, 0.4)), to(rgba(219, 219, 219, 0.4))), -webkit-gradient(linear, left top, left bottom, from(rgba(219, 219, 219, 0.4)), to(rgba(219, 219, 219, 0.4))), -webkit-gradient(linear, left top, left bottom, from(rgba(219, 219, 219, 0.4)), to(rgba(219, 219, 219, 0.4))), -webkit-gradient(linear, left top, left bottom, from(rgba(219, 219, 219, 0.4)), to(rgba(219, 219, 219, 0.4)));
  background-image: -webkit-linear-gradient(top, rgba(219, 219, 219, 0.4) 0%, rgba(219, 219, 219, 0.4) 100%), -webkit-linear-gradient(top, rgba(219, 219, 219, 0.4) 0%, rgba(219, 219, 219, 0.4) 100%), -webkit-linear-gradient(top, rgba(219, 219, 219, 0.4) 0%, rgba(219, 219, 219, 0.4) 100%), -webkit-linear-gradient(top, rgba(219, 219, 219, 0.4) 0%, rgba(219, 219, 219, 0.4) 100%);
  background-image: -o-linear-gradient(top, rgba(219, 219, 219, 0.4) 0%, rgba(219, 219, 219, 0.4) 100%), -o-linear-gradient(top, rgba(219, 219, 219, 0.4) 0%, rgba(219, 219, 219, 0.4) 100%), -o-linear-gradient(top, rgba(219, 219, 219, 0.4) 0%, rgba(219, 219, 219, 0.4) 100%), -o-linear-gradient(top, rgba(219, 219, 219, 0.4) 0%, rgba(219, 219, 219, 0.4) 100%);
  background-image: linear-gradient(to bottom, rgba(219, 219, 219, 0.4) 0%, rgba(219, 219, 219, 0.4) 100%), linear-gradient(to bottom, rgba(219, 219, 219, 0.4) 0%, rgba(219, 219, 219, 0.4) 100%), linear-gradient(to bottom, rgba(219, 219, 219, 0.4) 0%, rgba(219, 219, 219, 0.4) 100%), linear-gradient(to bottom, rgba(219, 219, 219, 0.4) 0%, rgba(219, 219, 219, 0.4) 100%);
  background-size: calc( 100% - 120px) 1px, 1px calc( 100% - 120px), calc( 100% - 120px) 1px, 1px calc( 100% - 120px);
  background-position: 50% 60px, 60px 50%, 50% calc( 100% - 60px), calc( 100% - 60px) 50%;
}

.scrollDown {
  position: absolute;
  bottom: 70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10;
}

.scrollDown span {
  -webkit-animation: antScrollMove 2s forwards linear infinite;
  animation: antScrollMove 2s forwards linear infinite;
}

.scrollDown span:nth-of-type(1) {
  position: relative;
  top: 0;
  left: 0;
}

.scrollDown span:nth-of-type(2) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  position: absolute;
  top: 0;
  left: 0;
}

.scrollDown span:nth-of-type(3) {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

@-webkit-keyframes antScrollMove {
  0% {
    opacity: 0;
    top: -30px;
  }
  40% {
    opacity: 1;
    top: 0;
  }
  60%, 100% {
    opacity: 0;
  }
}

@keyframes antScrollMove {
  0% {
    opacity: 0;
    top: -30px;
  }
  40% {
    opacity: 1;
    top: 0;
  }
  60%, 100% {
    opacity: 0;
  }
}

.bannerArea {
  clear: both;
  position: relative;
}

.bannerArea .Txt {
  position: absolute;
  left: 315px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 100px 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-shadow: 0px 0px 5px #222;
}

.bannerArea .Txt.active:before {
  top: 0%;
  left: 0%;
  opacity: 1;
}

.bannerArea .Txt.active:after {
  bottom: 0;
  right: 0;
  opacity: 1;
}

.bannerArea .Txt.active .title:before {
  width: 165px;
}

.bannerArea .Txt.active .title em, .bannerArea .Txt.active .title h2, .bannerArea .Txt.active .title span {
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}

.bannerArea .Txt.active .text {
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}

.bannerArea .Txt:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: url(../images/deckArrowTL.png);
  width: 95px;
  height: 98px;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  opacity: 0;
}

.bannerArea .Txt:after {
  content: "";
  position: absolute;
  bottom: 50%;
  right: 50%;
  background-image: url(../images/deckArrowBR.png);
  width: 98px;
  height: 95px;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  opacity: 0;
}

.bannerArea .title {
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  color: #fff;
  letter-spacing: 1px;
  padding-bottom: 30px;
  position: relative;
}

.bannerArea .title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.4s 2s ease;
  -o-transition: all 0.4s 2s ease;
  transition: all 0.4s 2s ease;
}

.bannerArea .title em {
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: all 1s 1s ease;
  -o-transition: all 1s 1s ease;
  transition: all 1s 1s ease;
  opacity: 0;
}

.bannerArea .title h2 {
  padding: 20px 0;
  font-size: 40px;
  font-weight: 500;
  -webkit-transition: all 1s 1.4s ease;
  -o-transition: all 1s 1.4s ease;
  transition: all 1s 1.4s ease;
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
  opacity: 0;
}

.bannerArea .title span {
  font-size: 21px;
  font-weight: 500;
  -webkit-transition: all 1s 1.8s ease;
  -o-transition: all 1s 1.8s ease;
  transition: all 1s 1.8s ease;
  opacity: 0;
}

.bannerArea .text {
  padding-top: 5px;
  font-size: 15px;
  font-weight: 400;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  /*line-height: 2;*/
  letter-spacing: 1px;
  -webkit-transition: all 1s 2.4s ease;
  -o-transition: all 1s 2.4s ease;
  transition: all 1s 2.4s ease;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
}

.socialArea {
  position: absolute;
  left: 16.6%;
  bottom: 0;
}

/*頁尾資訊*/
footer {
  padding: 40px 0 60px;
  background-color: #4628ae;
  position: relative;
  z-index: 10;
}

footer .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .left {
  width: 50%;
  padding-right: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

footer .right {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

footer .qrcode {
  display: inline-block;
  width: 90px;
  margin: 0 25px;
}

footer .qrcode img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

footer .social a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 15px;
}

footer .social svg {
  width: 18px;
  height: 18px;
}

.downMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}

.downMenu a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  color: #fff;
  letter-spacing: 2px;
  padding: 2px 0;
  position: relative;
}

.downMenu a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background-color: #fff;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.downMenu a:hover:before {
  width: 100%;
}

.company {
  line-height: 2;
  font-size: 13px;
  font-weight: 400;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  color: #fff;
  letter-spacing: 1px;
}

.copyright {
  line-height: 2;
  font-size: 12px;
  font-weight: 400;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.copyright .design a {
  line-height: 2;
  font-size: 12px;
  font-weight: 400;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  color: #fff;
  letter-spacing: 1px;
}

.copyright .design a:hover {
  text-decoration: underline;
}

.footerInfo {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  color: #fff;
  letter-spacing: 1px;
}

.footerInfo a {
  color: #fff;
}

.footerInfo a:hover {
  text-decoration: underline;
}

/*share*/
.social {
  display: inline-block;
}

.social a {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin: 0 5px;
  font-size: 19px;
  color: #fff;
  text-align: center;
}

.social a:hover {
  opacity: 0.8;
}

.social svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
}

/*********內頁**********/
/**********************/
.bannerArea .wrap {
  width: 100%;
  padding: 0;
}

.bannerArea .bannerBox img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.bannerArea .bannerBox.ins .Img {
  background-color: #222;
}

.bannerArea .bannerBox.ins .Img img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0.3;
}

.bannerArea .bannerBox.ins .Txt {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.bannerArea .bannerBox.ins .Txt:before, .bannerArea .bannerBox.ins .Txt:after {
  display: none;
}

.bannerArea .bannerBox.ins .Txt .title {
  font-size: 30px;
  font-weight: 700;
}

.bannerArea .bannerBox.ins .Txt .title:before {
  width: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.bannerArea .bannerBox.ins .Txt p {
  letter-spacing: 1px;
  padding-top: 30px;
  font-size: 18px;
  font-weight: 400;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  color: #fff;
}

.mainArea {
  padding: 30px 0;
}

.titleBox {
  position: relative;
  padding-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.titleBox:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 1px;
  background-color: #27003d;
}

.titleBox em {
  display: inline-block;
  margin-left: -20px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Oswald", "微軟正黑體", sans-serif;
  letter-spacing: .05em;
  color: #27003d;
}

.titleBox h2 {
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  letter-spacing: .05em;
  color: #27003d;
}

.bread {
  position: absolute;
  right: 10px;
  top: 25px;
  font-size: 12px;
  color: #bbb;
}

.bread a {
  color: #bbb;
}

.bread a i {
  font-size: 20px;
}

.bread span {
  padding: 0 3px;
  color: #bbb;
}

.mainArea .contentBox {
  clear: both;
}

.articleTitle {
  /*文章標題*/
  clear: both;
  margin-bottom: 25px;
  padding: 10px;
  font-weight: 400;
  font-size: 30px;
  font-weight: 700;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  color: #b39c61;
}

table.breakpoint > tbody > tr > td.expand {
  cursor: pointer;
  background: url("../images/plus.png") no-repeat 5px center;
  padding-left: 40px;
}

/*類別*/
.m_classLink {
  display: none;
}

.classBox {
  padding: 20px 0;
}

.classLink {
  text-align: center;
}

.classLink li {
  display: inline-block;
}

.classLink a {
  position: relative;
  display: block;
  margin: 5px 3px;
  padding: 10px 20px;
  font-size: 13px;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  background-color: #e8ecf4;
  color: #b39c61;
  letter-spacing: 1px;
}

.classLink a:hover {
  color: #fff;
  background-color: #b39c61;
}

.classLink a.current {
  color: #fff;
  background-color: #b39c61;
}

/*標籤*/
.tagBox {
  padding: 20px 0;
}

.tagBox b {
  display: inline-block;
  margin-right: 10px;
}

.tagBox ul {
  display: inline-block;
}

.tagBox li {
  display: inline-block;
  margin-bottom: 5px;
}

.tagBox a {
  position: relative;
  display: block;
  margin: 0 3px;
  padding: 5px 10px;
  border: 1px solid #51649A;
  font-size: 13px;
  color: #51649A;
}

.tagBox a:hover {
  color: #fff;
  background-color: #51649A;
}

.tagBox a.current {
  color: #fff;
  background-color: #51649A;
}

.tagBox a.current:before {
  content: "\f00d";
  margin-right: 5px;
  font-family: FontAwesome;
  font-size: 12px;
}

/*側邊標題字*/
.sectionTitle {
  margin-bottom: 20px;
  padding: 5px;
  border-bottom: 1px solid #d6d6d6;
  font-weight: 400;
  font-size: 15px;
  color: #061540;
}

.sectionTitle strong {
  display: block;
  position: relative;
  font-weight: 400;
}

.sectionTitle a {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

/******頁籤*******/
.tab {
  margin-top: 40px;
}

.tab a {
  display: block;
  float: left;
  padding: 12px 10px;
  font-size: 15px;
  color: #1c1c1c;
}

.tab a.current {
  border: 1px solid #c0c0c0;
  border-top: 1px solid #c0c0c0;
  border-bottom: 1px solid #f8f3f0;
  -webkit-box-shadow: inset 0 3px 5px -2px #cecece;
  box-shadow: inset 0 3px 5px -2px #cecece;
}

.tabContent {
  margin-top: -1px;
  padding: 20px 5px;
  border-top: 1px solid #d6d6d6;
}

.tabContent > li {
  display: none;
}

.tabContent .textEditor {
  margin: 0;
}

.tabContent .sectionTitle {
  display: none;
}

/*側邊_menu*/
.side_menu {
  margin-bottom: 50px;
}

.side_menu li {
  position: relative;
  border-bottom: 1px solid #e1e1e1;
}

.side_menu li > a {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
}

.side_menu li > a.current {
  color: #fff;
  background-color: #8c8c8c;
}

.side_menu li > a b {
  margin-left: 10px;
  font-weight: 400;
  font-size: 13px;
  color: #808080;
}

.side_menu dl {
  padding-left: 25px;
}

.side_menu dl a {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
}

.side_menu dl a.current {
  color: #000;
  text-decoration: underline;
}

/*側邊_相簿*/
.side_album {
  margin-top: 30px;
  margin-bottom: 30px;
  margin-right: -10px;
}

.side_album li {
  float: left;
  width: 33.33%;
  padding: 0 10px 10px 0;
}

.side_album a {
  display: block;
  -webkit-box-shadow: 2px 2px 5px #c3c3c3;
  box-shadow: 2px 2px 5px #c3c3c3;
}

.side_album a img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*側邊_線上訂房*/
.side_booking {
  margin-bottom: 30px;
}

.side_booking a {
  display: block;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px #8d2121;
  box-shadow: 0 1px 1px #8d2121;
  font-weight: bold;
  font-size: 25px;
  color: #fff;
  background-color: #f05b8f;
}

.side_booking a i {
  display: inline-block;
  font-size: 28px;
  padding: 10px 15px;
  margin-right: 15px;
  border-right: 1px solid #d33434;
  -webkit-box-shadow: 1px 0 #f38a8a;
  box-shadow: 1px 0 #f38a8a;
}

.side_booking a:hover {
  -webkit-box-shadow: inset 0 3px 3px #8d2121;
  box-shadow: inset 0 3px 3px #8d2121;
}

/*側邊_聯絡資訊*/
.side_contactInfo li {
  margin-bottom: 20px;
}

.side_contactInfo a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  color: #414141;
}

.side_contactInfo i {
  display: inline-block;
  vertical-align: middle;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-right: 8px;
  border: 2px solid #a5a5a5;
  border-radius: 50%;
  font-size: 20px;
  color: #a5a5a5;
  text-align: center;
}

.side_contactInfo b {
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
}

/*側邊_房型*/
.side_room {
  margin-bottom: 50px;
}

.side_room .Img img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.side_room .Txt {
  margin-top: 5px;
}

.side_room .Txt p {
  max-height: 100px;
  font-size: 13px;
  color: #858383;
  line-height: 1.8;
  overflow: hidden;
}

.side_room h3 a {
  font-size: 16px;
  font-weight: 400;
}

/*側邊_分享*/
.side_share {
  clear: both;
  display: none;
  margin-top: 30px;
}

.side_share a {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding: 15px 10px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 13px;
  line-height: 1;
  color: #fff;
  text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.side_share i {
  padding-right: 5px;
  font-size: 18px;
}

.side_share .line {
  -webkit-box-shadow: 0 0 0 1px #22a00b;
  box-shadow: 0 0 0 1px #22a00b;
  border-top: 1px solid #e1ffa9;
  background: #a7e732;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjYTdlNzMyIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMzUlIiBzdG9wLWNvbG9yPSIjMWZiNTBlIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
  background: -moz-linear-gradient(-45deg, #a7e732 0%, #1fb50e 35%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #a7e732), color-stop(35%, #1fb50e));
  background: -webkit-linear-gradient(-45deg, #a7e732 0%, #1fb50e 35%);
  background: -o-linear-gradient(-45deg, #a7e732 0%, #1fb50e 35%);
  background: -ms-linear-gradient(-45deg, #a7e732 0%, #1fb50e 35%);
  background: -webkit-linear-gradient(315deg, #a7e732 0%, #1fb50e 35%);
  background: -o-linear-gradient(315deg, #a7e732 0%, #1fb50e 35%);
  background: linear-gradient(135deg, #a7e732 0%, #1fb50e 35%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a7e732', endColorstr='#1fb50e', GradientType=1);
}

.side_share .fb {
  -webkit-box-shadow: 0 0 0 1px #235c9b;
  box-shadow: 0 0 0 1px #235c9b;
  border-top: 1px solid #8DCFF5;
  background: #5da0ea;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzVkYTBlYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzZDhjZTYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #5da0ea 0%, #3d8ce6 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5da0ea), color-stop(100%, #3d8ce6));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #5da0ea 0%, #3d8ce6 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #5da0ea 0%, #3d8ce6 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #5da0ea 0%, #3d8ce6 100%);
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(#5da0ea), to(#3d8ce6));
  background: linear-gradient(to bottom, #5da0ea 0%, #3d8ce6 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5da0ea', endColorstr='#3d8ce6', GradientType=0);
  /* IE6-8 */
}

/*側邊_其他相關訊息*/
.side_news {
  margin: 30px 0;
}

.side_news ul {
  margin-top: 20px;
}

.side_news li {
  margin-bottom: 25px;
}

.side_news .Img {
  float: left;
  width: 60px;
  margin-right: 12px;
  overflow: hidden;
}

.side_news .Img img {
  display: block;
  height: 60px;
}

.side_news .Txt {
  overflow: hidden;
}

.side_news .Txt a {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  font-weight: bold;
}

.side_news .Txt a:hover {
  text-decoration: underline;
}

.side_news .Txt b {
  display: block;
  margin-top: 5px;
  font-weight: 400;
  font-size: 12px;
  color: #999;
}

/*--滑動解鎖--*/
.captchaArea {
  position: relative;
  width: 200px;
  height: 50px;
  background-color: #e8ecf4;
}

.captchaArea.unlocking .sliderBtn {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.captchaArea .note {
  position: absolute;
  top: 17px;
  right: 30px;
  z-index: 1;
  font-size: 15px;
  text-align: center;
  font-family: '微軟正黑體';
  color: #777;
  letter-spacing: 1px;
  pointer-events: none;
}

.sliderBtn {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 50px;
  height: 50px;
  border: none;
  outline: none;
  background-color: #b39c61;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.sliderBtn::before {
  content: '\f105';
  position: absolute;
  top: 13px;
  left: 23px;
  color: #fff;
  font-size: 24px;
  font-family: FontAwesome;
  pointer-events: none;
}

/**********適應性**********/
/************************/
@media (max-width: 1420px) {
  .outerWrap .line:nth-of-type(1),
  .outerWrap .line:nth-of-type(5) {
    display: none;
  }
  .frame:before {
    background-image: none;
  }
}

@media (max-width: 1300px) {
  .wrap {
    width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 1180px) {
  /*1160+20(卷軸寬度)*/
  .floatBox {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 11;
  }
  .floatBox a {
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-bottom: 0;
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background-color: #b39c61;
    color: #fff;
    font-size: 18px;
    line-height: 50px;
    text-align: center;
  }
  .floatBox a:not(:first-child):before {
    content: '';
    width: 1px;
    height: 60%;
    background: #fff;
    position: absolute;
    top: 20%;
    left: 0;
    opacity: 0.15;
  }
  .floatBox a:hover {
    background-color: #e8ecf4;
    color: #b39c61;
  }
  .outerWrap {
    padding-top: 60px;
  }
  header {
    display: none;
  }
  /*手機menu*/
  .m_menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: block;
    width: 100%;
    -webkit-box-shadow: 0 2px 5px rgba(126, 126, 126, 0.68);
    box-shadow: 0 2px 5px rgba(126, 126, 126, 0.68);
  }
  .m_menu .mask {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    padding-bottom: 60px;
  }
  .m_menu .logo {
    /*position: fixed;
    left: 60px;
    top: 0;*/
    background-color: #b39c61;
  }
  .m_menu .logo .logoBox {
    float: left;
    /*width: 160px;*/
    width: 100%;
    height: 60px;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
  }
  .m_menu .logo .logoBox:hover {
    background-color: #fff;
    color: #27003d;
  }
  .m_menu .logo .logoBox:hover em {
    color: rgba(27, 66, 145, 0.56);
  }
  .m_menu .logo .logoBox div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .m_menu .logo .logoBox span {
    font-size: 14px;
    font-weight: 400;
    font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
    letter-spacing: 2px;
  }
  .m_menu .logo .logoBox em {
    font-size: 12px;
    font-weight: 400;
    font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.56);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
  }
  .m_menu .controlBox {
    position: relative;
    z-index: 99;
    background-color: #fff;
  }
  .m_menu .controlBox a.main {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: #b39c61;
  }
/*
  .m_menu .controlBox a.main:hover {
    background-color: #fff;
  }
  .m_menu .controlBox a.main:hover span {
    background-color: #27003d;
  }
  .m_menu .controlBox a.main:hover span:before, .m_menu .controlBox a.main:hover span:after {
    background-color: #27003d;
  }
*/
  .m_menu .controlBox a.main span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-top: -0.5px;
    width: 26px;
    height: 1px;
    background-color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .m_menu .controlBox a.main span:before, .m_menu .controlBox a.main span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
  }
  .m_menu .controlBox a.main span:before {
    top: -7px;
  }
  .m_menu .controlBox a.main span:after {
    bottom: -7px;
  }
  .m_menu .controlBox a.main.show span {
    background-color: transparent;
  }
  .m_menu .controlBox a.main.show span:before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .m_menu .controlBox a.main.show span:after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .hideBox {
    /*手機menu內容*/
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 11;
    display: none;
    width: 100%;
    padding: 60px 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    background-repeat: no-repeat;
    background-image: url(../images/m_bg.png);
    background-size: 1920px 1280px;
    background-position: 30% 65%;
  }
  .hideBox .sp {
    display: none;
    padding: 10px;
    font-size: 13px;
    color: #fff;
    background-color: #27003d;
  }
  .hideBox .social {
    padding: 40px 0;
  }
  .hideBox .social a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .m_logo .logoBox {
    width: 160px;
    height: 60px;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    margin: 0 auto;
  }
  .m_logo .logoBox:hover {
    background-color: #fff;
    color: #27003d;
  }
  .m_logo .logoBox:hover em {
    color: rgba(27, 66, 145, 0.56);
  }
  .m_logo .logoBox div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .m_logo .logoBox span {
    font-size: 14px;
    font-weight: 400;
    font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
    letter-spacing: 2px;
  }
  .m_logo .logoBox em {
    font-size: 12px;
    font-weight: 400;
    font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.56);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
  }
  .closeBtn {
    position: absolute;
    top: 23px;
    right: 30px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 10;
  }
  .closeBtn:before, .closeBtn:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    width: 27px;
    height: 1px;
    background-color: #fff;
  }
  .closeBtn:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .closeBtn:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .closeBtn:hover {
    background-color: #fff;
  }
  .closeBtn:hover:before, .closeBtn:hover:after {
    background-color: #27003d;
  }
  .closeBtn span {
    position: absolute;
    left: 50%;
    top: 90%;
    width: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 400;
    font-family: "Oswald", "Noto Sans TC", "微軟正黑體", serif, sans-serif;
    color: #111111;
  }
  .nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .nav a {
    position: relative;
    display: block;
    padding: 20px 10px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
  }
  .nav a:hover {
    background-color: #fff;
    color: #27003d;
  }
  .nav a i {
    position: absolute;
    right: 10px;
    top: 50%;
    display: block;
    margin-top: -7px;
  }
  .nav .num {
    display: none;
  }
  .nav .submenu {
    display: none;
  }
  .nav .submenu a {
    padding: 10px 20px;
  }
  .nav .submenu a:hover {
    background-color: #999;
  }
  .m_info {
    margin-top: 100px;
    font-size: 13px;
    font-weight: 400;
    font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
    color: #b19dc4;
    text-align: center;
    line-height: 1.8;
  }
  .m_info span {
    font-weight: 700;
    padding: 0 5px;
    color: #fff;
  }
  .m_info .tel, .m_info .fax {
    display: inline-block;
  }
  .topInfo {
    display: none;
  }
  .bannerArea .Txt {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 30px;
  }
  .bannerArea .title {
    padding-bottom: 10px;
  }
  .bannerArea .title h2 {
    padding: 5px 0 10px;
    font-size: 30px;
  }
  .bannerArea .socialArea {
    display: none;
  }
  footer {
    padding: 40px 0 90px;
  }
  footer .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  footer .left {
    padding: 0;
    text-align: center;
    margin-bottom: 20px;
  }
  footer .right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  footer .footerInfo {
    margin-bottom: 20px;
  }
}

@media (max-width: 960px) {
  .scrollDown {
    display: none;
  }
  .titleBox {
    padding-bottom: 15px;
  }
  .titleBox h2 {
    font-size: 24px;
  }
  footer .left {
    width: 80%;
  }
  footer .footerInfo {
    text-align: center;
  }
}

@media (max-width: 820px) {
  .bannerArea .bannerBox.ins .Txt {
    width: 320px;
  }
  footer .downMenu {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  footer .downMenu a {
    padding: 10px;
  }
  footer .right {
    width: 100%;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .outerWrap .line:nth-of-type(2), .outerWrap .line:nth-of-type(4) {
    display: none;
  }
  /*bread*/
  .mainArea .titleBox .bread {
    display: none;
  }
  .bannerArea .bannerBox.ins .Txt .title {
    font-size: 20px;
  }
  .bannerArea .bannerBox.ins .Txt p {
    padding-top: 10px;
    font-size: 14px;
  }
  /*main*/
  .mainArea .cotentBox {
    padding: 20px 0;
  }
  .mainArea .titleBox h2 em {
    display: block;
    margin: 0;
  }
  /*側邊_分享*/
  .side_share {
    clear: both;
    display: block;
    margin-bottom: 30px;
  }
}

/*640*/
@media (max-width: 640px) {
  .marqueeArea h2, .marqueeArea ul li .date {
    display: none;
  }
  .mainArea .titleBox h2 {
    float: none;
  }
  ul.classLink {
    display: none;
  }
  .m_classLink {
    display: block;
    position: relative;
  }
  .m_classLink a.main {
    display: block;
    font-size: 15px;
    color: #222;
    position: relative;
    padding: 10px;
    border-radius: 5px;
    background-color: #e8ecf4;
    color: #27003d;
    font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    /* IE6-9 */
  }
  .m_classLink a.main i {
    display: block;
    font-size: 15px;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -6px;
  }
  .m_classLink ul {
    padding: 0;
    list-style: none;
    display: none;
    width: 100%;
    background: #FFF;
    border-radius: 5px;
    border: 1px solid #d1d1d1;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .m_classLink ul li {
    padding: 0;
  }
  .m_classLink ul li a {
    display: block;
    padding: 15px 10px;
    border-top: 1px solid #d1d1d1;
  }
  .m_classLink ul li a:hover {
    color: #27003d;
  }
  .m_classLink ul li:first-child a {
    border: none;
  }
  footer .left {
    width: 100%;
  }
}

/*480*/
@media (max-width: 480px) {
  .bannerArea .bannerBox.ins .Txt p {
    display: none;
  }
  .articleTitle {
    font-size: 26px;
  }
  .col-2 {
    float: none;
    width: 100%;
  }
  .col-3 {
    float: none;
    width: 100%;
  }
  .col-4 {
    float: none;
    width: 100%;
  }
  .col-5 {
    float: none;
    width: 100%;
  }
  footer .left {
    width: 100%;
  }
  footer .right {
    width: 100%;
  }
  footer .right .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  footer .right .qrcode {
    margin: 10px;
  }
  .downMenu {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .downMenu a {
    margin-bottom: 10px;
  }
}

/***Hover效果1: 放大淡出***/
.imh_opacity {
  background-color: #000;
  overflow: hidden;
}

.imh_opacity img {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.imh_opacity:hover img {
  opacity: 0.8;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

/***Hover效果1: 放大淡出Detail***/
.imh_detail {
  background-color: #000;
  overflow: hidden;
}

.imh_detail img {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.imh_detail a:before {
  content: "Details+";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 99;
  margin-left: -45px;
  margin-top: -80px;
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: #fff;
  border: 2px solid #fff;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.imh_detail:hover a:before {
  opacity: 1;
  margin-top: -20px;
}

.imh_detail:hover img {
  opacity: 0.3;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

/***Hover效果1: 放大淡出zoom***/
.imh_zoom {
  position: relative;
  background-color: #000;
  overflow: hidden;
}

.imh_zoom img {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-backface-visibility: hidden;
}

.imh_zoom a:before {
  content: "\f002";
  display: block;
  position: absolute;
  left: 50%;
  top: -30px;
  margin-top: -20px;
  margin-left: -20px;
  z-index: 99;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  font-family: FontAwesome;
  text-align: center;
  background-color: #000;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.imh_zoom:hover a:before {
  top: 50%;
}

.imh_zoom:hover img {
  opacity: 0.3;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

/*--最新資訊icon--*/
.newIcon {
  /*分類小圖示*/
  display: inline-block;
  margin-right: 3px;
  padding: 3px 5px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 400;
  font-family: '微軟正黑體';
  color: #fff;
}

/****圖示顏色****/
.newIcon_green {
  background: #abd85d;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjYWJkODVkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzgxYjYyNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(-45deg, #abd85d 0%, #81b625 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #abd85d), color-stop(100%, #81b625));
  background: -webkit-linear-gradient(-45deg, #abd85d 0%, #81b625 100%);
  background: -o-linear-gradient(-45deg, #abd85d 0%, #81b625 100%);
  background: -ms-linear-gradient(-45deg, #abd85d 0%, #81b625 100%);
  background: -webkit-linear-gradient(315deg, #abd85d 0%, #81b625 100%);
  background: -o-linear-gradient(315deg, #abd85d 0%, #81b625 100%);
  background: linear-gradient(135deg, #abd85d 0%, #81b625 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#abd85d', endColorstr='#81b625', GradientType=1);
}

.newIcon_brown {
  background: #ed842e;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZWQ4NDJlIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2QyNmYxZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(-45deg, #ed842e 0%, #d26f1e 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #ed842e), color-stop(100%, #d26f1e));
  background: -webkit-linear-gradient(-45deg, #ed842e 0%, #d26f1e 100%);
  background: -o-linear-gradient(-45deg, #ed842e 0%, #d26f1e 100%);
  background: -ms-linear-gradient(-45deg, #ed842e 0%, #d26f1e 100%);
  background: -webkit-linear-gradient(315deg, #ed842e 0%, #d26f1e 100%);
  background: -o-linear-gradient(315deg, #ed842e 0%, #d26f1e 100%);
  background: linear-gradient(135deg, #ed842e 0%, #d26f1e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ed842e', endColorstr='#d26f1e', GradientType=1);
}

.newIcon_pink {
  background: #f48daf;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZjQ4ZGFmIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2VmNDk4NCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(-45deg, #f48daf 0%, #ef4984 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #f48daf), color-stop(100%, #ef4984));
  background: -webkit-linear-gradient(-45deg, #f48daf 0%, #ef4984 100%);
  background: -o-linear-gradient(-45deg, #f48daf 0%, #ef4984 100%);
  background: -ms-linear-gradient(-45deg, #f48daf 0%, #ef4984 100%);
  background: -webkit-linear-gradient(315deg, #f48daf 0%, #ef4984 100%);
  background: -o-linear-gradient(315deg, #f48daf 0%, #ef4984 100%);
  background: linear-gradient(135deg, #f48daf 0%, #ef4984 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f48daf', endColorstr='#ef4984', GradientType=1);
}

.newIcon_blue {
  background: #00b7ea;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjMDBiN2VhIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwOWVjMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(-45deg, #00b7ea 0%, #009ec3 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #00b7ea), color-stop(100%, #009ec3));
  background: -webkit-linear-gradient(-45deg, #00b7ea 0%, #009ec3 100%);
  background: -o-linear-gradient(-45deg, #00b7ea 0%, #009ec3 100%);
  background: -ms-linear-gradient(-45deg, #00b7ea 0%, #009ec3 100%);
  background: -webkit-linear-gradient(315deg, #00b7ea 0%, #009ec3 100%);
  background: -o-linear-gradient(315deg, #00b7ea 0%, #009ec3 100%);
  background: linear-gradient(135deg, #00b7ea 0%, #009ec3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00b7ea', endColorstr='#009ec3', GradientType=1);
}

.newIcon_navy {
  background: #3f4c6b;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjM2Y0YzZiIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzNmNGM2YiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(-45deg, #3f4c6b 0%, #3f4c6b 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #3f4c6b), color-stop(100%, #3f4c6b));
  background: -webkit-linear-gradient(-45deg, #3f4c6b 0%, #3f4c6b 100%);
  background: -o-linear-gradient(-45deg, #3f4c6b 0%, #3f4c6b 100%);
  background: -ms-linear-gradient(-45deg, #3f4c6b 0%, #3f4c6b 100%);
  background: -webkit-linear-gradient(315deg, #3f4c6b 0%, #3f4c6b 100%);
  background: -o-linear-gradient(315deg, #3f4c6b 0%, #3f4c6b 100%);
  background: linear-gradient(135deg, #3f4c6b 0%, #3f4c6b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3f4c6b', endColorstr='#3f4c6b', GradientType=1);
}

.newIcon_orange {
  background: #ffa84c;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZmZhODRjIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmN2IwZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(-45deg, #ffa84c 0%, #ff7b0d 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #ffa84c), color-stop(100%, #ff7b0d));
  background: -webkit-linear-gradient(-45deg, #ffa84c 0%, #ff7b0d 100%);
  background: -o-linear-gradient(-45deg, #ffa84c 0%, #ff7b0d 100%);
  background: -ms-linear-gradient(-45deg, #ffa84c 0%, #ff7b0d 100%);
  background: -webkit-linear-gradient(315deg, #ffa84c 0%, #ff7b0d 100%);
  background: -o-linear-gradient(315deg, #ffa84c 0%, #ff7b0d 100%);
  background: linear-gradient(135deg, #ffa84c 0%, #ff7b0d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa84c', endColorstr='#ff7b0d', GradientType=1);
}

.newIcon_gold {
  background: #eab92d;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZWFiOTJkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2M3OTgxMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(-45deg, #eab92d 0%, #c79810 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #eab92d), color-stop(100%, #c79810));
  background: -webkit-linear-gradient(-45deg, #eab92d 0%, #c79810 100%);
  background: -o-linear-gradient(-45deg, #eab92d 0%, #c79810 100%);
  background: -ms-linear-gradient(-45deg, #eab92d 0%, #c79810 100%);
  background: -webkit-linear-gradient(315deg, #eab92d 0%, #c79810 100%);
  background: -o-linear-gradient(315deg, #eab92d 0%, #c79810 100%);
  background: linear-gradient(135deg, #eab92d 0%, #c79810 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eab92d', endColorstr='#c79810', GradientType=1);
}

.newIcon_burgundyRed {
  background: #a90329;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2E5MDMyOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ0JSIgc3RvcC1jb2xvcj0iIzhmMDIyMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM2ZDAwMTkiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #a90329 0%, #8f0222 44%, #6d0019 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a90329), color-stop(44%, #8f0222), color-stop(100%, #6d0019));
  background: -webkit-linear-gradient(top, #a90329 0%, #8f0222 44%, #6d0019 100%);
  background: -o-linear-gradient(top, #a90329 0%, #8f0222 44%, #6d0019 100%);
  background: -ms-linear-gradient(top, #a90329 0%, #8f0222 44%, #6d0019 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#a90329), color-stop(44%, #8f0222), to(#6d0019));
  background: linear-gradient(to bottom, #a90329 0%, #8f0222 44%, #6d0019 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a90329', endColorstr='#6d0019', GradientType=0);
}

.newIcon_purple {
  background: #cb60b3;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2NiNjBiMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2FkMTI4MyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkZTQ3YWMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #cb60b3 0%, #ad1283 50%, #de47ac 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cb60b3), color-stop(50%, #ad1283), color-stop(100%, #de47ac));
  background: -webkit-linear-gradient(top, #cb60b3 0%, #ad1283 50%, #de47ac 100%);
  background: -o-linear-gradient(top, #cb60b3 0%, #ad1283 50%, #de47ac 100%);
  background: -ms-linear-gradient(top, #cb60b3 0%, #ad1283 50%, #de47ac 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#cb60b3), color-stop(50%, #ad1283), to(#de47ac));
  background: linear-gradient(to bottom, #cb60b3 0%, #ad1283 50%, #de47ac 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cb60b3', endColorstr='#de47ac', GradientType=0);
}

.fixedPdCompareBtn {
  position: fixed;
  right: 0;
  bottom: 30%;
  z-index: 9999999;
}

.fixedPdCompareBtn.show {
  right: 0;
}

.fixedPdCompareBtn a {
  position: relative;
  display: block;
  width: 40px;
  height: 130px;
  line-height: 40px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  background-color: #547250;
}

.fixedPdCompareBtn a span {
  position: absolute;
  bottom: 0;
  left: 55%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
}

.fixedPdCompareBtn a span:before {
  content: '(';
}

.fixedPdCompareBtn a span:after {
  content: ')';
}

.fixedPdCompareBtn a:hover {
  background-color: #78ad51;
}

@media screen and (min-width: 0\0) {
  .fixedPdCompareBtn a span {
    bottom: -18px;
    left: 30%;
  }
}