@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(http://fonts.googleapis.com/earlyaccess/cwtexming.css);
@import url(http://fonts.googleapis.com/css?family=Prata);
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700);
body {
  background: #fff;
  font-family: Helvetica, Arial, "微軟正黑體", Heiti TC, "メイリオ", sans-serif;
  font-size: 13px;
}

/*css3*/
a {
  cursor: pointer;
  color: #bd3d39;
  transition: all 0.4s ease;
}

a:hover {
  color: #589000;
}

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

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

.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*/
  background: #8c0808;
  color: #fff;
}

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

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

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

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

textarea {
  -webkit-appearance: none;
}

.outerWrap {
  position: relative;
  z-index: 1;
  background: url(../images/bg.jpg) repeat;
  overflow-x: hidden;
}

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

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

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

/***↓↓↓購物車↓↓↓***/
.cartArea {
  display: none;
  max-width: 500px;
  background: url('../images/bg02.jpg') repeat;
  /*
	position:fixed;
	top:120px;
	left:50%;
	margin-left:-180px;
	z-index:999;
	*/
}

.cartArea .wrap {
  position: relative;
  width: auto;
  padding: 40px 10px;
}

.cartArea .countBox {
  margin-top: 10px;
  font-size: 13px;
  color: #333;
  text-align: center;
}

.cartArea .countBox b {
  font-size: 18px;
  color: #af1e1e;
}

.cartArea .countBox b em {
  font-weight: normal;
  font-size: 12px;
  color: #af1e1e;
}

.cartArea .countBox a.btn_pay {
  display: inline-block;
  margin-left: 15px;
  padding: 7px 15px;
  font-size: 13px;
  color: #000;
  border: 1px solid #000;
}

.cartArea .countBox a.btn_pay:hover{
  color: #fff;
  border-color: #af1e1e;
  background-color: #af1e1e;
}

.cartArea ul {
  clear: both;
  max-height: 250px;
  overflow-y: auto;
}

.cartArea ul li {
  position: relative;
  padding: 10px;
  border-bottom: 1px solid #EEE;
  margin-bottom: 10px;
  text-align: left;
}

.cartArea ul li .Img {
  float: left;
  margin-right: 15px;
  width: 50px;
  height: 50px;
  overflow: hidden;
}

.cartArea ul li .Img img {
  display: block;
  height: 100%;
}

.cartArea ul li .Txt {
  overflow: hidden;
}

.cartArea ul li .Txt strong {
  margin-bottom: 10px;
  display: block;
}

.cartArea ul li .Txt strong a {
  display: block;
  font-size: 15px;
  color: #272727;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cartArea ul li .Txt b {
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  padding-right: 10px;
}

.cartArea ul li .Txt b.price {
  font-size: 15px;
  color: #E83336;
}

.cartArea ul li i {
  cursor: pointer;
  display: block;
  float: right;
  font-size: 18px;
  color: #949494;
}

/*訂單查詢*/
.orderCheckArea {
  display: none;
  max-width: 500px;
  box-shadow: 5px 4px 20px rgba(0, 0, 0, 0.3);
}

.orderCheckArea .box {
  position: relative;
  padding: 50px 100px 70px 100px;
  background: url(../images/bg02.jpg) repeat;
}

#closeOrder, #closeCart, #closePrice, #closeInquiry {
  font-size: 18px;
  position: absolute;
  top: 8px;
  color: #000;
  right: 10px;
}

.orderCheckArea h4 {
  letter-spacing: 2px;
  color: #000;
  font-size: 25px;
  font-weight: normal;
  font-family: 'cwTeXMing';
  text-align: center;
  margin-bottom: 30px;
}

.orderCheckArea input::placeholder {

  /* Chrome/Opera/Safari */
  color: #fff;
}

.orderCheckArea input[type="text"], .orderCheckArea input[type="password"] {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 40px;
  padding: 5px 10px;
  border: none;
  margin-bottom: 5px;
  background: #9e9e9e;
  color: #fff;
}

.orderCheckArea .button {

  /*送出按鈕*/
  margin-top: 15px;
  text-align: center;
}

.orderCheckArea .button a {
  display: block;
  position: relative;
  font-size: 14px;
  color: #000;
  padding: 10px 15px;
  border: 1px solid #000;
}

.orderCheckArea .button a:hover {
  color: #fff;
  border-color: #af1e1e;
  background-color: #af1e1e;
}

@media screen and (max-width: 480px) {
  .cartArea, .orderCheckArea {
    width: 300px !important;
    /*
			top:100px;
			margin-left:-150px;
			*/
  }
  #closeOrder, #closeCart, #closePrice, #closeInquiry {
    font-size: 25px;
    top: 5px;
  }
}

/***↑↑↑購物車↑↑↑**/
/***↓↓↓會員登入↓↓↓**/
.loginArea {
  display: none;
  max-width: 960px;
  box-shadow: 5px 4px 20px rgba(0, 0, 0, 0.3);
}

.loginArea .loginBtnBox {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.loginArea .login {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.loginArea section {
  width: 50%;
  padding: 10px 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.loginArea section + section {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}

.loginArea section p {
  line-height: 2;
  font-size: 14px;
  padding: 14px 0;
}

.loginArea h4 {
  letter-spacing: 2px;
  color: #000;
  font-size: 25px;
  font-weight: normal;
  font-family: 'cwTeXMing';
  text-align: center;
  margin-bottom: 30px;
}

.loginArea .box {
  position: relative;
  padding: 50px;
  background: url("../images/bg02.jpg") repeat;
}

a#closeLogin {
  font-size: 18px;
  color: #000;
  position: absolute;
  right: 10px;
  top: 10px;
}

.loginArea input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}

.loginArea input::-moz-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}

.loginArea input:-ms-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}

.loginArea input::placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}

.loginArea input[type="text"], .loginArea input[type="password"] {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 40px;
  padding: 5px 10px;
  border: none;
  margin-bottom: 5px;
  background: #9e9e9e;
  color: #fff;
}

.loginArea .button {
  /*送出按鈕*/
  margin-top: 15px;
  text-align: center;
}

.loginArea .button .loginBtn01 {
  font-size: 14px;
  color: #000;
  padding: 10px 15px;
  border: 1px solid #000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.loginArea .button .loginBtn01:hover {
  color: #fff;
  border-color: #af1e1e;
  background-color: #af1e1e;
}

.loginArea .button a {
  display: block;
  position: relative;
}

.loginArea .button a.g-6 {
  float: none;
  width: calc(50% - 5px);
}

.loginArea .button a.g-6:last-child {
  margin-left: 5px;
  margin-right: 0px;
}

.loginArea .button a span {
  position: relative;
  display: block;
  z-index: 10;
}

.loginArea .button a.login_btn_facebook span {
  background: #4267b2;
  color: #fff;
  border: 1px solid #4267b2;
  transition: 0.9s;
}

.loginArea .button a.login_btn_facebook:hover span {
  background-color: rgba(66, 103, 178, 0.5);
  transition: 0.9s;
}

.loginArea .forget {
  width: 50%;
  font-size: 14px;
  color: #9e9e9e;
  text-align: right;
}

.loginArea .forget i {
  padding-right: 5px;
  color: #000;
}

.loginArea .forget a {
  font-weight: normal;
  color: #000;
  display: inline-block;
  padding: 0 5px;
}

.loginArea .forget a:hover {
  color: #f13327;
}

.loginArea .forgetCheck {
  display: none;
}

.loginArea .forgetCheck a.btn_relog {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0;
  color: #000;
  text-align: center;
  margin: 20px 0 0 0;
  padding: 8px 0px;
  border-bottom: 1px solid #000;
  transition: 0.5s;
}

.loginArea .forgetCheck a.btn_relog i {
  display: inline-block;
  color: #000;
}

.loginArea .forgetCheck a.btn_relog:hover {
  letter-spacing: 2px;
  transition: 0.5s;
}


/***↑↑↑會員登入↑↑↑**/
/*****網頁頭*****/
header {
  position: fixed;
  z-index: 500;
  left: 0;
  top: 0;
  width: 100%;
  transition: all .5s;
}

header.fixed {
  background-color: rgba(255, 255, 255, 0.9);
}

header.fixed .wrap {
  padding: 10px 0;
}

header.fixed .logo {
  width: 106px;
}

header.fixed .logo a {
  height: 68px;
}

/*header.fixed .top {
  margin-top: -40px;
  opacity: 0;
}

header.fixed:hover .top {
  opacity: 1;
  margin-top: 0;
}*/

header .wrap {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0;
  box-sizing: border-box;
  transition: all .5s;
}

header .logo {
  width: 140px;
}

header .logo a {
  display: block;
  width: 100%;
  height: 90px;
  background: url(../images/logo.png) no-repeat;
  background-size: contain;
  text-indent: -9999px;
}

header .rightBox {
  width: calc(100% - 140px);
  padding-left: 180px;
  box-sizing: border-box;
}

header .rightBox .top {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  margin-bottom: 25px;
}

header .top {
  position: relative;
  transition: all .5s;
}

header .top a {
  display: inline-block;
  color: #6a6a6a;
  letter-spacing: .05em;
}

header .top > a:not(.fb) {
  position: relative;
  padding-left: 18px;
  margin-left: 18px;
}

header .top > a:not(.fb):after {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 1px;
  height: 13px;
  background-color: #c7c7c7;
}

header .fb {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  /*color: #385c8e;*/
  font-size: 15px;
  /*background-color: #e1ddd8;*/
  margin-left: 23px;
}

header a.fb {
  background-color: #ca342b;
  color: #fff;
}

header .fb:hover {
  background-color: #9e232d;
  color: #fff;
}

header .loginBox {
  position: relative;
  padding: 10px 0;
  box-sizing: border-box;
}

header .loginBox:hover .submenu {
  opacity: 1;
  visibility: visible;
}

header .loginBox .submenu {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 120%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  width: 80px;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}

header .loginBox .submenu:before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent rgba(0, 0, 0, 0.5) transparent;
}

header .loginBox .submenu a {
  display: block;
  color: #fff;
  letter-spacing: .1em;
  padding: 2px 0;
}

header .loginBox .submenu a:hover {
  text-decoration: underline;
}

header .buycar_count {
  font-weight: 400;
}

/*menu*/
.menuBox {
  text-align: right;
}

ul.menu > li {
  position: relative;
  display: inline-block;
}

ul.menu li:hover span {
  color: #ca1d1d;
}

ul.menu li:hover span:before {
  right: -100%;
}

ul.menu li:hover span:after {
  right: 0;
  transition-delay: .3s;
}

ul.menu li:first-child > a {
  margin-left: 0;
}

ul.menu li > a {
  position: relative;
  font-size: 18px;
  font-family: "cwTeXMing", serif;
  letter-spacing: .13em;
  color: #222;
  padding: 15px 0 15px 0;
  margin-left: 40px;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: 0 center;
}

ul.menu li > a.current span {
  color: #ca1d1d;
}

ul.menu li > a.current span:after {
  right: 0;
}

ul.menu li span {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 14px;
  overflow: hidden;
  transition: all .5s;
}

ul.menu li span:before, ul.menu li span:after {
  content: '';
  position: absolute;
  right: 100%;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #c7c7c7;
  transition: all .5s;
}

ul.menu > li .submenu {
  display: none;
  width: 150px;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 99;
}

ul.menu > li .submenu a {
  display: block;
  background: #FFF;
  padding: 10px;
  font-size: 15px;
  color: #666;
  border-bottom: 1px solid #dadada;
}

ul.menu > li .submenu a:hover {
  background: #516190;
  color: #FFF;
}

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

/*****banner******/
.bannerArea {
  clear: both;
  position: relative;
  margin-top: 150px;
  box-shadow: 0 -10px 15px rgba(42, 35, 25, 0.08);
}

/*文字跑馬燈*/
.marqueeArea {
  box-shadow: inset 0 10px 15px #283458;
  background: #061540;
  padding: 15px 0;
}

.marqueeArea h2 {
  float: left;
  margin-right: 20px;
  font-size: 15px;
  font-weight: normal;
  color: #FFF;
}

.marqueeArea h2 em {
  margin-left: 5px;
}

.marqueeArea .marqueeBox {
  overflow: hidden;
  max-height: 30px;
}

.marqueeArea ul {
  overflow: hidden;
}

.marqueeArea ul li {
  line-height: 20px;
}

.marqueeArea ul li .date {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  font-size: 13px;
  color: #DBDBDB;
}

.marqueeArea ul li h3 {
  display: inline-block;
  vertical-align: top;
}

.marqueeArea ul li h3 a {
  display: block;
  font-size: 15px;
  color: #FFF;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*頁尾資訊*/
footer .wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .left {
  width: 270px;
  font-family: "cwTeXMing", serif;
  font-size: 13px;
  color: #c2251b;
}
footer .left span {
  letter-spacing: .35em;
  font-size: 18px;
  line-height: 30px;
  color: #333;
}

footer .left a {
  color: #c2251b;
}

footer .left img {
  display: inline-block;
  width: 45px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

footer .qrcode {
  display: inline-block;
  margin-left: 15px;
}

footer .downLogo {
  position: relative;
  text-align: center;
  margin-bottom: 70px;
}

footer .downLogo:before, footer .downLogo:after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -0.5px;
  width: calc((100% - 210px)/2);
  height: 2px;
  background-color: #d5d2cd;
}

footer .downLogo:before {
  left: 0;
}

footer .downLogo:after {
  right: 0;
}

.copyright {
  width: calc(100% - 270px);
  box-sizing: border-box;
  font-size: 13px;
  color: #6a6a6a;
  letter-spacing: .05em;
  font-family: "Lato", sans-serif, "微軟正黑體";
}

.copyright ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-left: 70px;
  box-sizing: border-box;
}

.copyright ul li {
  width: 50%;
  margin-top: -8px;
  padding-right: 35px;
  box-sizing: border-box;
}

.copyright ul li:first-child {
  width: 100%;
  margin-top: 0;
}

.copyright ul li:nth-child(3) {
  text-align: right;
}

.copyright ul li:nth-child(4) {
  text-align: right;
}

.copyright ul li:last-child {
  padding-right: 0;
}

.copyright b {
  font-weight: 700;
  color: #333;
  letter-spacing: .025em;
  font-size: 28px;
}

ul.downMenu {
  border: 1px solid #142F79;
  border-left: none;
  border-right: none;
  text-align: center;
}

ul.downMenu li {
  display: inline-block;
}

ul.downMenu li a {
  display: block;
  padding: 7px 10px;
  font-size: 12px;
  color: #142F79;
}

/*share*/
.social {
  clear: both;
  margin-top: 10px;
}

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

.social a:hover {
  opacity: 0.8;
}

.endArea {
  font-size: 13px;
  color: #c0bebb;
  padding: 60px 0 75px;
}

.endArea .wrap {
  position: relative;
}


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

.bannerBox img {
  display: block;
  width: 100%;
}

/*bx小圓點*/
.bannerArea .bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
  bottom: 20px;
}

.bannerArea .bx-wrapper .bx-pager.bx-default-pager a {
  background: #FFF;
  border: 1px solid #FFF;
  border-radius: 100%;
}

.bannerArea .bx-wrapper .bx-pager.bx-default-pager a:hover {
  background: #FFF;
}

.bannerArea .bx-wrapper .bx-pager.bx-default-pager a.active {
  background: none;
}

.mainArea {
  /* background:url(../images/bg_main.jpg); */
  padding: 30px 0;
}

.mainArea .titleBox {
  position: relative;
  padding: 10px 0;
  margin-bottom: 20px;
}

.mainArea .titleBox h2 {
  text-align: center;
}

.mainArea .titleBox h2 em {
  display: block;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  color: #adadad;
  margin-bottom: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mainArea .titleBox h2 b {
  display: block;
  font-size: 27px;
  font-weight: 400;
  font-family: "cwTeXMing", serif;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

/*網站導覽bread*/
.mainArea .titleBox .bread {
  font-size: 12px;
  color: #BBBBBB;
  position: absolute;
  right: 10px;
  top: 25px;
}

.mainArea .titleBox .bread a {
  color: #BBBBBB;
}

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

.mainArea .titleBox .bread span {
  padding: 0 3px;
  color: #BBBBBB;
}

.mainArea .contentBox {
  clear: both;
}

.mainArea .contentBox h1.articleTitle {
  /*文章標題*/
  clear: both;
  font-size: 19px;
  font-weight: normal;
  color: #2f2f2f;
  overflow: hidden;
  margin: 8px 0 30px;
  border-bottom: 1px dashed #B6B6B6;
  padding: 15px 0;
}

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: 0 0 30px;
}

ul.classLink {
  text-align: center;
}

ul.classLink li {
  display: inline-block;
}

ul.classLink li a {
  position: relative;
  display: block;
  margin: 0 3px;
  font-size: 14px;
  letter-spacing: .05em;
  padding: 8px 18px;
  color: #af1e1e;
  border: 1px solid #af1e1e;
}

ul.classLink li a:hover {
  background: #af1e1e;
  color: #FFF;
}

ul.classLink li a.current {
  background: #af1e1e;
  color: #FFF;
}

ul.classLink li a.current:after {
  content: " ";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 5px 7.5px 0 7.5px;
  border-color: #af1e1e transparent transparent transparent;
  position: absolute;
  bottom: -5px;
  left: 50%;
  margin-left: -7.5px;
}

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

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

.tagBox ul {
  display: inline-block;
}

.tagBox ul li {
  display: inline-block;
}

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

.tagBox ul li a:hover {
  background: #af1e1e;
  color: #FFF;
}

.tagBox ul li a.current {
  background: #af1e1e;
  color: #FFF;
}

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

/*側邊標題字*/
.sectionTitle strong {
  display: block;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: normal;
  padding: 20px 18px;
  letter-spacing: .15em;
  text-align: center;
  background: url("../images/title_bg.png") repeat;
  color: #fff;
  text-transform: uppercase;
}

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

.tab a {
  display: block;
  float: left;
  padding: 12px 40px;
  font-size: 15px;
  color: #1c1c1c;
  letter-spacing: .05em;
  background-color: #dadada;
}

.tab a.current {
  background-color: #af1e1e;
  color: #fff;
}

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

ul.tabContent > li {
  display: none;
}

ul.tabContent li .textEditor {
  margin: 0;
}

ul.tabContent h3.sectionTitle {
  display: none;
}

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

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

.side_menu ul li > a {
  position: relative;
  z-index: 0;
  display: block;
  padding: 15px;
  font-size: 14px;
  color: #222;
  letter-spacing: .05em;
}

.side_menu ul li > a:after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: url("../images/bg02.jpg") repeat;
  transition: all .3s;
}

.side_menu ul li > a:hover:after, .side_menu ul li > a.current:after {
  width: 100%;
}

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

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

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

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

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

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

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

ul.side_album li a img {
  display: block;
  width: 100%;
}

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

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

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

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

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

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

.side_contactInfo ul li a i {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  color: #fff;
  background-color: #af1e1e;
  text-align: center;
  border-radius: 100%;
}

.side_contactInfo ul li a b {
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
}

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

.side_room ul li .Img img {
  width: 100%;
}

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

.side_room ul li .Txt h3 strong a {
  font-size: 16px;
  font-weight: normal;
}

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

.side_room .bx-wrapper .bx-controls-direction a {
  width: 25px !important;
  height: 25px !important;
  top: 0 !important;
  right: 0;
  margin: 0 !important;
}

.side_room .bx-wrapper .bx-prev {
  left: auto;
  right: 25px !important;
  background: url(../images/bx_arrow_square_prev.png) !important;
}

.side_room .bx-wrapper .bx-next {
  background: url(../images/bx_arrow_square_next.png) !important;
}

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

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

.side_share a.line {
  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: linear-gradient(135deg, #a7e732 0%, #1fb50e 35%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a7e732', endColorstr='#1fb50e', GradientType=1);
}

.side_share a.fb {
  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+);
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #5da0ea 0%, #3d8ce6 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5da0ea', endColorstr='#3d8ce6', GradientType=0);
  /* IE6-8 */
}

.side_share a.gPlus {
  box-shadow: 0 0 0 1px #874138;
  border-top: 1px solid #fd816b;
  background: #d65130;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q2NTEzMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkMDQ0MmIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #d65130 0%, #d0442b 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d65130', endColorstr='#d0442b', GradientType=0);
  /* IE6-8 */
}

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

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

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

.side_news ul li {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed #aaa;
}

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

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

.side_news ul li .Txt {
  overflow: hidden;
}

.side_news ul li .Txt a {
  display: block;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  color: #222;
  letter-spacing: .05em;
}

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

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

.side_news ul li .newsDate {
  margin-bottom: 5px;
}

.side_news ul li .newsDate strong {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  letter-spacing: .05em;
  font-size: 13px;
}

.side_news ul li .newsDate .icon {
  display: inline-block;
  margin-right: 8px;
}

.goTop {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 22px;
  height: 23px;
  background: url("../images/goTop.png") no-repeat;
  transition: all .5s;
}

/*--title--*/
.headerTitle .title {
  position: relative;
  width: 233px;
  height: 60px;
  text-align: center;
  padding-top: 65px;
  box-sizing: border-box;
  background: url("../images/title_bg.png") repeat;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.18);
}

.headerTitle .title:before {
  content: '';
  position: absolute;
  top: 12px;
  left: 40px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 41px;
  height: 40px;
  background: url("../images/title_icon.png") no-repeat;
}

.headerTitle .title:after {
  content: '';
  position: absolute;
  top: 22px;
  left: 140px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
}

.headerTitle .title img {
  display: none;
}

.headerTitle .more {
  position: relative;
  display: block;
  width: 70px;
}

.headerTitle .more:hover span {
  top: 70px;
  opacity: 1;
  visibility: visible;
  color: #fff;
  pointer-events: auto;
  transition: top .5s,color .5s .2s;
}

.headerTitle .more i {
  position: relative;
  z-index: 2;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70px;
  height: 70px;
  background-color: #af1e1e;
  transition: all .5s;
}

.headerTitle .more i:before, .headerTitle .more i:after {
  content: '';
  position: absolute;
  width: 23px;
  height: 2px;
  background-color: #fff;
  transition: all .5s;
}

.headerTitle .more i:after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.headerTitle .more span {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 60px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70px;
  height: 131px;
  padding: 20px 0 10px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  background: url("../images/title_bg.png") no-repeat;
  box-sizing: border-box;
  font-size: 14px;
  letter-spacing: .8em;
  color: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .5s;
}

@media (min-width: 1181px) {
  .headerTitle .title {
    opacity: 0;
    -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
            transform: translateY(-20px);
    transition: all 1.2s;
  }
  .headerTitle .title:before {
    opacity: 0;
    transition: all 1s;
  }
  .headerTitle .title:after {
    opacity: 0;
    transition: all 1s;
  }
  .headerTitle .more {
    opacity: 0;
    transition: all 1.2s;
  }
  .headerTitle.show .title {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .headerTitle.show .title:before {
    opacity: 1;
    transition-delay: .5s;
  }
  .headerTitle.show .title:after {
    opacity: 1;
    transition-delay: .8s;
  }
  .headerTitle.show .more {
    opacity: 1;
    transition-delay: 1.3s;
  }
}

/**********適應性**********/
/************************/
@media (max-width: 1180px) {
  /*1160+20(卷軸寬度)*/
  .headerTitle {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
  }
  .headerTitle .title {
    width: 233px;
    height: 70px;
    padding-top: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 75px;
    box-sizing: border-box;
  }
  .headerTitle .title:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 41px;
    height: 40px;
    background: url("../images/title_icon.png") no-repeat;
    left: 17px;
    top: 17px;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .headerTitle .title:after {
    display: none;
  }
  .headerTitle .title img {
    display: block;
  }
  .headerTitle .more span {
    display: none;
  }
  .outerWrap {
    padding-top: 60px;
  }
  .bannerArea {
    margin-top: 0;
  }
  .wrap {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  header {
    display: none;
  }
  /*手機menu*/
  .m_menu {
    display: block;
    width: 100%;
    box-shadow: 0 2px 5px rgba(126, 126, 126, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
  }
 
  .m_menu .mask {
    display: none;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    width: 100%;
    height: 100%;
    padding-bottom: 60px;
    top: 0;
    left: 0;
    z-index: 10;
  }
  .m_menu .controlBox {
    background: url("../images/bg.jpg") repeat;
    position: relative;
    height: 60px;
    z-index: 99;
  }
  .m_menu .controlBox a.main {
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
    width: 55px;
    height: 60px;
    font-size: 20px;
    background-color: #af1e1e;
    line-height: 60px;
    text-align: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .m_menu .controlBox a.main span {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 1px;
    background: #fff;
    transition: all .5s;
  }
  .m_menu .controlBox a.main span:before, .m_menu .controlBox a.main span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 1px;
    background: #fff;
    transition: all .5s;
  }
  .m_menu .controlBox a.main span:before {
    top: -7px;
  }
  .m_menu .controlBox a.main span:after {
    top: 7px;
  }
  .m_menu .controlBox a.main.show span {
    background: transparent;
  }
  .m_menu .controlBox a.main.show span:before {
    top: 0;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    background: #fff;
  }
  .m_menu .controlBox a.main.show span:after {
    top: 0;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    background: #fff;
  }
  .m_menu .controlBox .m_logo {
    position: absolute;
    top: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .m_menu .controlBox .m_logo img {
    max-width: 100%;
    height: 50px;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  .m_menu .controlBox .right {
    float: right;
    margin-right: 10px;
    line-height: 60px;
  }
  .m_menu .controlBox .right a {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    font-size: 13px;
    color: #FFF;
    position: relative;
  }
  .m_menu .controlBox .right .btn_cart {
    display: inline-block;
    vertical-align: middle;
  }
  .m_menu .controlBox .right a em {
    display: none;
  }
  .m_menu .controlBox .right a i {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    color: #FFF;
    text-align: center;
    border-radius: 100%;
    background: #af1e1e;
  }
  .m_menu .controlBox .right a.fb i {
    background: #ca342b;
  }
  .m_menu .controlBox .right b {
    display: block;
    font-size: 13px;
    color: #FFF;
    background: rgba(0, 0, 0, 0.8);
    line-height: normal;
    border-radius: 5px;
    padding: 3px 5px;
    position: absolute;
    top: 3px;
    right: -8px;
  }
  .m_menu .controlBox .language:hover .submenu {
    display: block;
  }
  .m_menu .hideBox {
    /*手機menu內容*/
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 11;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background: url("../images/title_bg.png") repeat;
    padding: 70px 0;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
  }

  .m_menu .hideBox.show {
    opacity: 1;
    visibility: visible;
  }
  .m_menu .hideBox p.sp {
    display: none;
    padding: 10px;
    font-size: 13px;
    color: #FFF;
    background: #C80303;
  }
  .searchBox_m {
    text-align: center;
    padding: 20px 0;
  }
  .searchBox_m input[type="text"] {
    display: inline-block;
    vertical-align: middle;
    width: 200px;
    height: 30px;
    border: 1px solid #CCC;
  }
  .searchBox_m a {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    font-size: 15px;
    line-height: 30px;
    text-align: center;
    background: #9CC720;
    color: #FFF;
  }
  /*手機翻譯*/
  .m_menu .hideBox .m_trans {
    text-align: center;
    padding-top: 30px;
  }
  .m_menu .hideBox .m_trans > a {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #FFF;
    color: #FFF;
  }
  .m_menu .hideBox .m_trans > a i {
    margin-left: 5px;
  }
  /*手機會員登入*/
  .m_menu .loginBox {
    padding: 30px 0;
    text-align: center;
  }
  .m_menu .loginBox a {
    display: inline-block;
    margin: 0 3px;
    font-size: 15px;
    color: #FFF;
  }
  .m_menu .loginBox a i {
    margin-right: 3px;
  }
  .m_menu .loginBox .submenu {
    margin-top: 10px;
    color: #CCCCCC;
  }
  .m_menu .loginBox .submenu span {
    margin: 0 5px;
  }
  .m_menu .mfun {
    padding: 30px 0;
    text-align: center;
  }
  .m_menu .mfun a {
    margin: 0 5px;
    display: inline-block;
    font-size: 20px;
    background: #B21D26;
    color: #FFF;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 100%;
  }
  .m_menu ul.nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .m_menu ul.nav li a {
    padding: 20px 10px;
    display: block;
    font-size: 15px;
    color: #FFF;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: .1em;
  }
  .m_menu ul.nav li a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .m_menu ul.nav li a i {
    display: block;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -7px;
  }
  .m_menu ul.nav li .submenu {
    display: none;
  }
  .m_menu ul.nav li .submenu a {
    padding: 10px 20px;
  }
  .m_menu ul.nav li .submenu a:hover {
    background: #999;
  }
 

  footer .wrap {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .downLogo {
    margin-bottom: 40px;
  }
  footer .left {
    float: none;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
  }
  .copyright {
    width: 100%;
  }
  .copyright ul {
    padding-left: 0;
  }
  .endArea {
    padding: 30px 0 20px;
  }
}

@media (max-width:980px) {
  .loginArea .login{
    flex-direction: column;

  }
  .loginArea section{
    width: 100%;
    padding: 30px;
  }
  .loginArea section + section {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    border-left: none;
  }

}

@media (max-width: 959px) {
  ul.classLink, ul.classLink02, .sectionTitle {
    display: none;
  }
  .m_classLink {
    display: block;
    position: relative;
  }
  .m_classLink a.main {
    display: block;
    font-size: 15px;
    color: #fff;
    position: relative;
    padding: 12px;
    background: #af1e1e;
    /* IE6-9 */
  }
  .m_classLink a.main b {
    font-weight: 300;
    letter-spacing: .1em;
  }
  .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: 1px solid #d1d1d1;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 999;
    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;
    color: #333;
    font-weight: 300;
    letter-spacing: .1em;
  }
  .m_classLink ul li:first-child a {
    border: none;
  }
}

@media (max-width: 900px) {
  .copyright b {
    font-size: 13px;
    font-weight: normal;
  }
  .copyright ul {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .copyright ul li {
    width: 100%;
    padding-right: 0;
    margin-top: 0;
    text-align: center;
  }
  .copyright ul li:nth-child(3) {
    text-align: center;
  }
  .copyright ul li:nth-child(4) {
    text-align: center;
  }
  .copyright ul li + li {
    margin-top: 5px;
  }
  .endArea {
    text-align: center;
    padding: 10px 0 20px;
  }
}

@media (max-width: 767px) {
  footer .copyright {
    display: block;
    text-align: center;
    margin-bottom: 15px;
  }
  footer .fbBox {
    display: block;
    margin: 0;
    text-align: center;
  }
  /*bread*/
  .mainArea .titleBox .bread {
    display: none;
  }
  /*main*/
  .mainArea .wrap {
    padding: 0 20px;
  }
  .mainArea .cotentBox {
    padding: 20px 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;
  }
  .loginArea .box{
    padding: 25px;
  }
  .loginArea .loginBtnBox{
    flex-direction: column;

  }
  .loginBtnBox a.g-6{
    width: 100% !important;
  }
  .loginArea .forget{
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }
}

/*480*/
@media (max-width: 480px) {
  .headerTitle .title {
    width: 180px;
    height: 54px;
    padding-left: 55px;
  }
  .headerTitle .title:before {
    left: 12px;
    top: 12px;
    width: 31px;
    height: 30px;
    background-size: contain;
  }
  .headerTitle .title:after {
    display: none;
  }
  .headerTitle .title img {
    display: block;
    width: 100px;
  }
  .headerTitle .more {
    display: none !important;
  }
  .col-2 {
    float: none;
    width: 100%;
  }
  .col-3 {
    float: none;
    width: 100%;
  }
  .col-4 {
    float: none;
    width: 100%;
  }
  .col-5 {
    float: none;
    width: 100%;
  }
  /*頁籤*/
  .tab a {
    width: 50%;
    padding: 12px 20px;
    font-size: 13px;
    text-align: center;
    box-sizing: border-box;
  }
}

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

.imh_opacity img {
  transition: all 0.3s linear;
  -webkit-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: #000;
  overflow: hidden;
}

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

.imh_detail a:before {
  display: block;
  content: "Details+";
  padding: 10px 20px;
  font-size: 13px;
  color: #FFF;
  border: 2px solid #FFF;
  opacity: 0;
  position: absolute;
  left: 50%;
  margin-left: -45px;
  top: 50%;
  margin-top: -80px;
  z-index: 99;
  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 {
  background: #000;
  overflow: hidden;
  position: relative;
}

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

.imh_zoom a:before {
  display: block;
  font-family: 'FontAwesome';
  content: "\f002";
  font-size: 18px;
  color: #FFF;
  background: #000;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: -30px;
  margin-top: -20px;
  margin-left: -20px;
  z-index: 99;
  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 {
  /*分類小圖示*/
  padding: 4px 10px;
  display: inline-block;
  letter-spacing: .05em;
  font-weight: normal;
  background-color: #fff;
}

/****圖示顏色****/
.newIcon_green {
  color: #abd85d;
}

.newIcon_brown {
  color: #ed842e;
}

.newIcon_pink {
  color: #f48daf;
}

.newIcon_blue {
  color: #326aaa;
}

.newIcon_navy {
  color: #3f4c6b;
}

.newIcon_orange {
  color: #ff7e00;
}

.newIcon_gold {
  color: #eab92d;
}

.newIcon_burgundyRed {
  color: #af1e1e;
}

.newIcon_purple {
  color: #cb60b3;
}
