@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Muli:200,300,400,700,800");
@import url("https://fonts.googleapis.com/css?family=Roboto");
@import url("https://fonts.googleapis.com/css?family=Playfair+Display:400i");
@import url("https://fonts.googleapis.com/css?family=Lato:300");
@import url(reset.css);
@import url(slick.css);
@import url(slick-theme.css);
@import url(default.css);
@import url(fonts/css/lixin.css);
@import url(mCustomScrollbar.css);
@import url(onepage-scroll.css);
@import url(lightcase.css);

/* ==========================================================================
 *   keyframes
 *==========================================================================*/
@-webkit-keyframes Line {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes Line {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@-webkit-keyframes banner-text {
  0% {
    left: -100%;
  }

  50% {
    left: 0%;
  }

  100% {
    left: 100%;
  }
}

@keyframes banner-text {
  0% {
    left: -100%;
  }

  50% {
    left: 0%;
  }

  100% {
    left: 100%;
  }
}

@-webkit-keyframes btn-inView {
  0% {
    left: 100%;
  }

  50% {
    left: 0;
  }

  100% {
    left: -100%;
  }
}

@keyframes btn-inView {
  0% {
    left: 100%;
  }

  50% {
    left: 0;
  }

  100% {
    left: -100%;
  }
}

@-webkit-keyframes pic-inView {
  0% {
    width: 100%;
  }

  100% {
    width: 0;
  }
}

@keyframes pic-inView {
  0% {
    width: 100%;
  }

  100% {
    width: 0;
  }
}

@-webkit-keyframes pic-inView2 {
  0% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

@keyframes pic-inView2 {
  0% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

@-webkit-keyframes vLine-inView {
  0% {
    height: 0;
  }

  100% {
    height: 50%;
  }
}

@keyframes vLine-inView {
  0% {
    height: 0;
  }

  100% {
    height: 50%;
  }
}

@-webkit-keyframes shine {
  0% {
    text-shadow: 0 0 15px #fff;
  }

  50% {
    text-shadow: 0 0 15px transparent;
  }

  100% {
    text-shadow: 0 0 15px #fff;
  }
}

@keyframes shine {
  0% {
    text-shadow: 0 0 15px #fff;
  }

  50% {
    text-shadow: 0 0 15px transparent;
  }

  100% {
    text-shadow: 0 0 15px #fff;
  }
}

@-webkit-keyframes inbannerT-inView {
  0% {
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
  }
}

@keyframes inbannerT-inView {
  0% {
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
  }
}

/* ==========================================================================
 *   動畫效果
 *==========================================================================*/
.draw-border {
  position: relative;
}

.draw-border::before,
.draw-border::after {
  content: '';
  border: 0 solid transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
}

.draw-border::before {
  border-bottom-width: 1px;
  border-left-width: 1px;
}

.draw-border::after {
  border-top-width: 1px;
  border-right-width: 1px;
}

.draw-border:hover {
  color: #C88A5F;
}

.draw-border:hover::before,
.draw-border:hover::after {
  border-color: #C88A5F;
  -webkit-transition: border-color 0s, width 0.25s, height 0.25s;
  -o-transition: border-color 0s, width 0.25s, height 0.25s;
  transition: border-color 0s, width 0.25s, height 0.25s;
  width: 100%;
  height: 100%;
}

.draw-border:hover::before {
  -webkit-transition-delay: 0s, 0s, 0.25s;
  -o-transition-delay: 0s, 0s, 0.25s;
  transition-delay: 0s, 0s, 0.25s;
}

.draw-border:hover::after {
  -webkit-transition-delay: 0s, 0.25s, 0s;
  -o-transition-delay: 0s, 0.25s, 0s;
  transition-delay: 0s, 0.25s, 0s;
}

/* ==========================================================================
 *   page
 *==========================================================================*/
#home .about .box .pic-inner .pic::after {
  content: '';
  display: block;
  width: 0;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}

#home .about .box .pic-inner.in-view .pic::after {
  -webkit-animation: pic-inView 1.5s ease;
  animation: pic-inView 1.5s ease;
}

#home .business .box .slider-pic .pic {
  position: relative;
}

#home .business .box .slider-pic .pic::before {
  content: '';
  display: block;
  width: 0;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}

#home .business .box.in-view.in-view .slider-pic .pic::before {
  -webkit-animation: pic-inView 1.5s ease;
  animation: pic-inView 1.5s ease;
}

#home .video .slider.in-view {
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  -webkit-animation-delay: .65s;
  animation-delay: .65s;
}

#about section.in-view .v-headline {
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  -webkit-animation-delay: .25s;
  animation-delay: .25s;
}

#about .lixin-group.in-view::before {
  -webkit-animation: vLine-inView 4s ease;
  animation: vLine-inView 4s ease;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

#about .lixin-group.in-view .editor h4,
#about .lixin-group.in-view .editor img,
#about .lixin-group.in-view .editor p {
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
}

#about .lixin-group.in-view .editor h4 {
  -webkit-animation-delay: .35s;
  animation-delay: .35s;
}

#about .lixin-group.in-view .editor p {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

#about .corporate .headline-box .pic-inner.in-view,
#about .corporate .headline-box .text-inner.in-view {
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
}

#about .corporate .box .item:nth-child(odd) .pic-inner .pic.in-view {
  -webkit-animation: fadeInLeft 1s both;
  animation: fadeInLeft 1s both;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

#about .corporate .box .item:nth-child(even) .pic-inner .pic.in-view {
  -webkit-animation: fadeInRight 1s both;
  animation: fadeInRight 1s both;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

#about .navbar.in-view .text-inner {
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

#firm .headline-box.active .box .title,
#firm .headline-box.active .box p {
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
}

#firm .headline-box.active .box .title {
  -webkit-animation-delay: .35s;
  animation-delay: .35s;
}

#firm .headline-box.active .box p {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

#firm .layout-slider-02.active .info-inner .text-inner {
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  -webkit-animation-delay: .35s;
  animation-delay: .35s;
}

#firm .layout-slider-02.active .info-inner .slider-pic .pic-inner::before,
#firm .layout-slider-02.active .info-inner .slider-pic .video-inner::before {
  -webkit-animation: pic-inView2 1s ease;
  animation: pic-inView2 1s ease;
}

#news .video-box.in-view {
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
}

#news .news-inner .box.in-view {
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  -webkit-animation-delay: .25s;
  animation-delay: .25s;
}

#new .new-inner.in-view h3,
#new .new-inner.in-view p {
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
}

#new .new-inner.in-view p {
  -webkit-animation-delay: .25s;
  animation-delay: .25s;
}

#new .control-box.in-view {
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
}

#contact .contact-box {
  -webkit-animation: fadeInUp 1.25s both;
  animation: fadeInUp 1.25s both;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

#contact .map.in-view {
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  -webkit-animation-delay: .25s;
  animation-delay: .25s;
}

/* ==========================================================================
 *   共用元素
 *==========================================================================*/
.btn.in-view::after {
  -webkit-animation: banner-text 1.5s ease;
  animation: banner-text 1.5s ease;
}

.banner .slick-active .box::before {
  display: none;
}

.banner .slick-active .text .title {
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
}

.banner .slick-active .text .title::before {
  display: none;
}

.banner .slick-active .text .sub {
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
}

.banner .slick-active .text .sub::before {
  display: none;
}

.in-banner .box::before {
  display: none;
}

.in-banner .in-nav span::before {
  display: none;
}

.in-banner .back-btn::before {
  display: none;
}

.in-banner.in-view .box .text {
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
}

.in-banner.in-view .box .text-inner {
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
}

@-webkit-keyframes layout-lineL {
  0% {
    height: 0;
  }

  100% {
    height: calc(100% + 80px);
  }
}

@keyframes layout-lineL {
  0% {
    height: 0;
  }

  100% {
    height: calc(100% + 80px);
  }
}

@-webkit-keyframes laypout-line-pic {
  0% {
    height: 0;
  }

  100% {
    height: 100%;
  }
}

@keyframes laypout-line-pic {
  0% {
    height: 0;
  }

  100% {
    height: 100%;
  }
}

.layout-lineL .container::before {
  -webkit-animation: layout-lineL 4s ease;
  animation: layout-lineL 4s ease;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.layout-lineL.in-view .editor h4,
.layout-lineL.in-view .editor p {
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
}

.layout-lineL.in-view .editor p {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.layout-lineL-pic .headline-box.in-view .container::before {
  -webkit-animation: laypout-line-pic 4s ease;
  animation: laypout-line-pic 4s ease;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.layout-lineL-pic .box .container.in-view::before {
  -webkit-animation: laypout-line-pic 4s ease;
  animation: laypout-line-pic 4s ease;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.layout-lineL-pic .box .container.in-view .title {
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.layout-lineL-pic .box .text-inner.in-view .title,
.layout-lineL-pic .box .text-inner.in-view p,
.layout-lineL-pic .box .text-inner.in-view a {
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
}

.layout-slider-01 .box .slider-pic .pic-inner {
  position: relative;
}

.layout-slider-01 .box .slider-pic .pic-inner::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(200, 138, 95, 0.9);
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 5;
}

.layout-slider-01 .box.in-view .pic-inner::before {
  -webkit-animation: banner-text 1.5s ease;
  animation: banner-text 1.5s ease;
  -webkit-animation-delay: .25s;
  animation-delay: .25s;
}

.layout-slider-01 .box.in-view .text-inner {
  -webkit-animation: fadeInUp 1s both;
  animation: fadeInUp 1s both;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.slick-prev,
.slick-next {
  width: auto;
  height: auto;
  z-index: 50;
  overflow: visible;
}

.slick-prev::before,
.slick-next::before {
  font-family: "lixin";
  color: #fff;
  opacity: 1;
  -o-transition: color 0.35s ease-in-out;
  -webkit-transition: color 0.35s ease-in-out;
  -moz-transition: color 0.35s ease-in-out;
  transition: color 0.35s ease-in-out;
}

.slick-prev:hover::before,
.slick-next:hover::before {
  color: #C88A5F;
}

.slick-next {
  right: 5px;
}

.slick-next::before {
  content: '\e81a';
}

.slick-next::after {
  content: '';
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -o-transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.slick-next:hover::after {
  background-color: #C88A5F;
  -webkit-transform: translate(5px, -50%);
  -ms-transform: translate(5px, -50%);
  transform: translate(5px, -50%);
}

.slick-prev {
  left: 5px;
}

.slick-prev::before {
  content: '\e819';
}

.slick-disabled {
  opacity: .8;
}

.slick-disabled::after {
  opacity: .8;
}

.slick-disabled:hover::before {
  color: #fff;
}

.slick-disabled:hover::after {
  background-color: #fff;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

#lightcase-loading {
  -webkit-animation: shine .8s infinite ease;
  animation: shine .8s infinite ease;
  margin-left: -5%;
  margin-top: -5%;
  width: 100px;
  height: 100px;
}

.lightcase-icon-spin:before {
  font-family: "lixin";
  content: '\e811';
  font-size: 100px;
}

.max-xs-size #lightcase-loading {
  margin-left: -12%;
  margin-top: -10%;
}

a[class*='lightcase-icon-'] {
  width: 30px;
  height: 30px;
}

.lightcase-icon-close {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #ccc;
  border-radius: 100%;
  top: 30px;
  right: 30px;
}

.lightcase-icon-close:before {
  font-family: "lixin";
  content: '\e813';
  font-size: 28px;
}

/* ==========================================================================
 *   共用元素
 *==========================================================================*/
.v-title {
  font-size: 20px;
  color: #C88A5F;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  position: relative;
}

.v-title::after {
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  background-color: #C88A5F;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -85px;
  margin: 0 auto;
}

.input-box {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding-bottom: 16px;
  margin-bottom: 30px;
  border-bottom: 1px solid #E5E5E5;
  font-family: 'Muli', '微軟正黑體', sans-serif;
  font-size: 18px;
  color: #000;
}

.input-box input,
.input-box textarea {
  border: none;
  background-color: transparent;
  font-size: 18px;
}

.input-box input {
  width: calc(100% - 95px);
  float: right;
  padding: 0 10px;
}

.input-box textarea {
  width: 100%;
  height: 100px;
  margin-top: 10px;
  border: 1px solid #E5E5E5;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
}

.input-box.code {
  margin-bottom: 15px;
  position: relative;
}

.input-box.code .code-inner {
  width: 135px;
  height: 58px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.input-box.textarea-inner {
  border: none;
  margin-bottom: 28px;
  padding-bottom: 0;
}

.max-xs-size .input-box {
  font-size: 16px;
}

.max-xs-size .input-box input,
.max-xs-size .input-box textarea {
  font-size: 16px;
}

.max-xs-size .input-box.code {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.max-xs-size .input-box.code input {
  margin-top: 10px;
}

.btn {
  display: inline-block;
  min-width: 210px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border: 1px solid #C88A5F;
  color: #C88A5F;
  font-size: 18px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.btn::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #C88A5F;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: -1;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.btn:hover {
  color: #fff;
}

.btn:hover::after {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.max-lg-plus-size .btn {
  height: 65px;
  line-height: 65px;
}

.max-xs-size .btn {
  height: 58px;
  line-height: 58px;
}

.goDown-01 {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-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;
  width: 16px;
  height: auto;
  cursor: pointer;
}

.goDown-01::before {
  content: '';
  display: block;
  width: 2px;
  height: 35px;
  margin-bottom: 5px;
  background-color: #fff;
}

.goDown-01::after {
  content: '\e818';
  display: block;
  font-family: "lixin";
  font-size: 20px;
  color: #fff;
}

.goDown-02 {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #fff;
  cursor: pointer;
  z-index: 50;
  position: relative;
  -o-transition: background 0.35s ease-in-out;
  -webkit-transition: background 0.35s ease-in-out;
  -moz-transition: background 0.35s ease-in-out;
  transition: background 0.35s ease-in-out;
}

.goDown-02::before {
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  background-color: #fff;
  position: absolute;
  top: -35px;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  -o-transition: transform 0.35s ease-in-out;
  -webkit-transition: transform 0.35s ease-in-out;
  -moz-transition: transform 0.35s ease-in-out;
  -webkit-transition: -webkit-transform 0.35s ease-in-out;
  transition: -webkit-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}

.goDown-02::after {
  content: '\e818';
  display: block;
  font-family: "lixin";
  font-size: 16px;
  color: #fff;
  -o-transition: color 0.35s ease-in-out;
  -webkit-transition: color 0.35s ease-in-out;
  -moz-transition: color 0.35s ease-in-out;
  transition: color 0.35s ease-in-out;
  padding-top: 4px;
}

.goDown-02:hover {
  background-color: #fff;
}

.goDown-02:hover::before {
  background-color: #C88A5F;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}

.goDown-02:hover::after {
  content: '\e809';
  color: #C88A5F;
}

.max-lg-size .goDown-02 {
  width: 40px;
  height: 40px;
}

.max-lg-size .goDown-02::before {
  height: 40px;
  top: -30px;
}

.pagination {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.pagination li {
  width: 48px;
  height: 48px;
  line-height: 48px;
  border: 1px solid #000;
  text-align: center;
  margin: 0 8px;
  cursor: pointer;
  -o-transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.pagination li a {
  display: block;
  font-family: 'roboto', '微軟正黑體', sans-serif;
  color: #777;
  -o-transition: color 0.35s ease-in-out;
  -webkit-transition: color 0.35s ease-in-out;
  -moz-transition: color 0.35s ease-in-out;
  transition: color 0.35s ease-in-out;
}

.pagination li:first-child a,
.pagination li:last-child a {
  color: #000;
}

.pagination li:last-child {
  position: relative;
}

/* .pagination li:last-child::before {
        content: '···';
        display: block;
        width: 48px;
        height: 48px;
        line-height: 48px;
        margin: 0 8px;
        text-align: center;
        color: #000;
        position: absolute;
        left: -70px; } */
.pagination li.active {
  background-color: #C88A5F;
  border-color: #C88A5F;
}

.pagination li.active a {
  color: #fff;
}

.pagination li:hover {
  border-color: #C88A5F;
}

.pagination li:hover a {
  color: #C88A5F;
}

.pagination li:hover.active {
  border-color: #000;
  background-color: #000;
}

.pagination li:hover.active a {
  color: #fff;
}

.max-xs-size .pagination {
  padding: 0 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.max-xs-size .pagination li {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 12px;
}

.max-xs-size .pagination li:last-child {
  margin-left: 13%;
}

.max-xs-size .pagination li:last-child::before {
  width: 40px;
  height: 40px;
  line-height: 40px;
  left: -130%;
}

.share-box button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(200, 138, 95, 0.5);
  color: #C88A5F;
  margin: 0 5px;
  -o-transition: color .35s ease-in-out, background .35s ease-in-out;
  -webkit-transition: color .35s ease-in-out, background .35s ease-in-out;
  -moz-transition: color .35s ease-in-out, background .35s ease-in-out;
  transition: color .35s ease-in-out, background .35s ease-in-out;
}

.picbar-box {
  width: 100%;
  height: 23.5vw;
  position: relative;
}

.picbar-box .pic {
  width: 100%;
  height: 100%;
}

.picbar-box::before {
  content: '';
  display: block;
  width: 100%;
  height: 30%;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.5)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#4d000000', GradientType=0);
  /* IE6-9 */
  position: absolute;
  bottom: 0;
  left: 0;
}

/* ==========================================================================
 *   共用區塊
 *==========================================================================*/
.banner,
.in-banner {
  height: calc(100vh - 90px);
  padding-bottom: 60px;
  position: relative;
}

.banner .box,
.in-banner .box {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.banner .box .pic,
.in-banner .box .pic {
  width: 100%;
  height: 100%;
}

.banner .box .text,
.in-banner .box .text {
  width: 90%;
  left: 5%;
  position: absolute;
}

.banner .box .text .title,
.in-banner .box .text .title {
  color: #fff;
  font-weight: bold;
  line-height: normal;
  margin-bottom: 15px;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.banner .box .text .sub,
.in-banner .box .text .sub {
  font-family: 'Muli', '微軟正黑體', sans-serif;
  color: #fff;
  line-height: normal;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.banner .goDown-01,
.banner .goDown-02,
.in-banner .goDown-01,
.in-banner .goDown-02 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 90px;
  margin: 0 auto;
}

.max-bg-size .banner .box .text,
.max-bg-size .in-banner .box .text {
  left: 78px;
}

.max-lg-plus-size .banner .box .text,
.max-lg-plus-size .in-banner .box .text {
  left: 40px;
}

.max-md-size .banner,
.max-md-size .in-banner {
  height: calc(100vh - 68px);
  padding: 0;
}

.max-sm-size .banner .box .text {
  left: 5%;
}

.banner .goDown-01 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5%;
  margin: 0 auto;
}

.banner .box {
  height: calc(100vh - 120px);
}

.banner .box .text {
  width: auto;
  bottom: 168px;
  overflow: hidden;
}

.banner .box .text .title,
.banner .box .text .sub {
  position: relative;
}

.banner .box .text .title::before,
.banner .box .text .sub::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: -100%;
  right: 0;
  bottom: 0;
}

.banner .box .text .title {
  font-size: 72px;
  line-height: normal;
}

.banner .box .text .sub {
  font-size: 34px;
  font-weight: bold;
}

.banner .box::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(200, 138, 95, 0.9);
  position: absolute;
  left: -100%;
  right: 0;
  bottom: 0;
}

.banner .slick-dots {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-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;
  width: 12px;
  top: 50%;
  right: -28px;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.banner .slick-dots li {
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  position: relative;
  margin-bottom: 15px;
}

.banner .slick-dots li::before {
  width: 20px;
  height: 20px;
  font-family: 'Muli', '微軟正黑體', sans-serif;
  font-size: 20px;
  padding-right: 3px;
  content: 'II';
  color: #ccc;
  -o-transition: color 0.35s ease-in-out;
  -webkit-transition: color 0.35s ease-in-out;
  -moz-transition: color 0.35s ease-in-out;
  transition: color 0.35s ease-in-out;
}

.banner .slick-dots li::after {
  content: '‧';
  display: block;
  width: 20px;
  height: 15px;
  line-height: 23px;
  color: #ccc;
  position: absolute;
  left: 0;
  bottom: -15px;
  cursor: default;
}

.banner .slick-dots li:first-child::before {
  content: 'I';
}

.banner .slick-dots li:last-child::after {
  display: none;
}

.banner .slick-dots li button {
  position: absolute;
  top: 0;
  left: 0;
}

.banner .slick-dots li button::before {
  display: none;
}

.banner .slick-dots li.slick-active::before,
.banner .slick-dots li:hover::before {
  color: #000;
}

.max-bg-size .banner .box .text {
  bottom: 140px;
}

.max-bg-size .banner .box .text .title {
  font-size: 64.8px;
}

.max-bg-size .banner .box .text .sub {
  font-size: 28.9px;
  line-height: 40px;
}

.max-lg-plus-size .banner .box .text .title {
  font-size: 54px;
}

.max-lg-plus-size .banner .box .text .sub {
  font-size: 23.8px;
}

.max-md-size .banner .box {
  height: calc(100vh - 68px);
}

.max-md-size .banner .box .text .title {
  font-size: 43.2px;
}

.max-md-size .banner .box .text .sub {
  font-size: 22.1px;
}

.max-sm-size .banner .box .text {
  bottom: 15%;
}

.max-xs-size .banner .box .text .title {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 2px;
}

.max-xs-size .banner .box .text .sub {
  font-size: 16px;
  line-height: 22px;
}

.in-banner {
  height: calc(100vh - 90px);
  position: relative;
}

.in-banner .box {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.in-banner .box .text {
  top: 50%;
  opacity: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.in-banner .box .text .title {
  font-size: 60px;
}

.in-banner .box .text .sub {
  font-size: 20px;
  line-height: normal;
}

.in-banner .box::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(200, 138, 95, 0.9);
  position: absolute;
  left: -200%;
  bottom: 0;
  z-index: 4;
}

.in-banner .in-nav,
.in-banner .back-btn {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  padding: 0 35px;
  -o-transition: background 0.35s ease-in-out;
  -webkit-transition: background 0.35s ease-in-out;
  -moz-transition: background 0.35s ease-in-out;
  transition: background 0.35s ease-in-out;
}

.in-banner .in-nav:hover,
.in-banner .back-btn:hover {
  background-color: #b97e54;
}

.in-banner .in-nav {
  max-width: 350px;
  width: 22%;
  height: 120px;
  right: 160px;
  padding: 0;
  z-index: 50;
}

.in-banner .in-nav.active {
  background-color: #b97e54;
}

.in-banner .in-nav::after {
  content: '\e818';
  font-family: "lixin";
  font-size: 22px;
  color: #fff;
  position: absolute;
  top: 48px;
  right: 35px;
  -o-transition: color 0.35s ease-in-out;
  -webkit-transition: color 0.35s ease-in-out;
  -moz-transition: color 0.35s ease-in-out;
  transition: color 0.35s ease-in-out;
}

.in-banner .in-nav span {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: 0 35px;
}

.in-banner .in-nav span::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: -100%;
  -o-transition: background 0.35s ease-in-out;
  -webkit-transition: background 0.35s ease-in-out;
  -moz-transition: background 0.35s ease-in-out;
  transition: background 0.35s ease-in-out;
}

.in-banner .in-nav>ul {
  display: none;
  width: 100%;
  line-height: 60px;
  background-color: #dedede;
  position: absolute;
  top: 120px;
  left: 0;
  padding: 15px 35px;
  z-index: 50;
}

.in-banner .in-nav>ul a {
  color: #000;
  position: relative;
}

.in-banner .in-nav>ul a::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  bottom: -5px;
  background-color: #C88A5F;
  -o-transition: width 0.35s ease-in-out;
  -webkit-transition: width 0.35s ease-in-out;
  -moz-transition: width 0.35s ease-in-out;
  transition: width 0.35s ease-in-out;
}

.in-banner .in-nav>ul a:hover {
  color: #C88A5F;
}

.in-banner .in-nav>ul a:hover::after {
  width: 100%;
}

.in-banner .back-btn {
  display: block;
  width: 230px;
  height: 84px;
  overflow: hidden;
  color: #fff;
  font-size: 16px;
  bottom: 0;
  right: 250px;
  z-index: 50;
}

.in-banner .back-btn .text-inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.in-banner .back-btn .text-inner span {
  margin-left: 15px;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  position: relative;
}

.in-banner .back-btn .text-inner::before,
.in-banner .back-btn .text-inner::after {
  content: '';
  display: block;
}

.in-banner .back-btn .text-inner::before {
  content: '\e819';
  font-family: "lixin";
  margin-right: 5px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -o-transition: color 0.35s ease-in-out;
  -webkit-transition: color 0.35s ease-in-out;
  -moz-transition: color 0.35s ease-in-out;
  transition: color 0.35s ease-in-out;
}

.in-banner .back-btn .text-inner::after {
  width: 25px;
  height: 1px;
  background-color: #fff;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  -o-transition: background 0.35s ease-in-out;
  -webkit-transition: background 0.35s ease-in-out;
  -moz-transition: background 0.35s ease-in-out;
  transition: background 0.35s ease-in-out;
}

.in-banner .back-btn::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: -100%;
}

.max-bg-size .in-banner .in-nav,
.max-bg-size .in-banner .back-btn {
  right: 10%;
  font-size: 19px;
}

.max-bg-size .in-banner .box .text {
  left: 78px;
}

.max-bg-size .in-banner .box .text .title {
  font-size: 57px;
}

.max-bg-size .in-banner .box .text .sub {
  font-size: 19px;
}

.max-lg-size .in-banner {
  padding: 0 40px 60px;
}

.max-lg-size .in-banner .box .text {
  left: 40px;
}

.max-md-size .in-banner {
  height: 70vw;
  padding: 0;
}

.max-md-size .in-banner .box {
  height: 100%;
}

.max-md-size .in-banner .in-nav,
.max-md-size .in-banner .back-btn {
  display: none;
}

.max-sm-size .in-banner .box .text {
  width: calc(100% - 60px);
  left: 30px;
}

.max-sm-size .in-banner .box .text .title {
  font-size: 42px;
}

.max-xs-size .in-banner .box .text {
  top: 45%;
}
.max-xs-size .in-banner .box .text .title {
  font-size: 36px;
}

.max-xs-size .in-banner .box .text .sub {
  font-size: 18px;
}

.layout-lineL .container,
.layout-lineL-pic .container {
  position: relative;
}

.layout-lineL .container::before,
.layout-lineL-pic .container::before {
  content: '';
  display: block;
  width: 1px;
  background-color: #000;
  position: absolute;
  left: 50px;
}

.layout-lineL .container .title,
.layout-lineL-pic .container .title {
  font-size: 40px;
}

.layout-lineL {
  max-width: 1400px;
  margin: 0 auto;
}

.layout-lineL .container::before {
  height: calc(100% + 80px);
  top: -60px;
}

.layout-lineL .container .editor {
  margin-left: 70px;
}

.layout-lineL .container .editor h4 {
  color: #000;
  font-size: 40px;
  margin-bottom: 38px;
}

.layout-lineL .container .editor p {
  color: #777;
  font-size: 18px;
  line-height: 26px;
}

.layout-lineL-pic {
  max-width: none !important;
  padding-top: 0;
}

.layout-lineL-pic .container {
  max-width: 1400px;
  margin: 0 auto;
}

.layout-lineL-pic .container::before {
  top: 0;
  height: 100%;
}

.layout-lineL-pic .headline-box {
  position: relative;
}

.layout-lineL-pic .headline-box .pic-inner {
  height: 31.525vw;
  position: relative;
  z-index: 5;
}

.layout-lineL-pic .headline-box .pic-inner::before,
.layout-lineL-pic .headline-box .pic-inner::after {
  content: '';
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
}

.layout-lineL-pic .headline-box .pic-inner::before {
  height: 100%;
  background-color: #000;
  top: 0;
  opacity: .2;
}

.layout-lineL-pic .headline-box .pic-inner::after {
  height: 40%;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.5)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#4d000000', GradientType=0);
  /* IE6-9 */
  bottom: 0;
  z-index: 10;
}

.layout-lineL-pic .headline-box .title {
  margin-left: 70px;
}

.layout-lineL-pic .headline-box .container {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 15;
}

.layout-lineL-pic .headline-box .container::before {
  background-color: #fff;
}

.layout-lineL-pic .box .text-inner {
  margin-left: 70px;
}

.max-bigger-size .layout-lineL {
  max-width: none;
  margin: 0 123px;
}

.max-bigger-size .layout-lineL .container .editor {
  margin-left: 6%;
}

.max-bigger-size .layout-lineL-pic .container {
  max-width: none;
  margin: 0 123px;
}

.max-bigger-size .layout-lineL-pic .headline-box .title {
  margin-left: 6%;
}

.max-bigger-size .layout-lineL-pic .box .text-inner {
  margin-left: 6%;
}

.max-lg-size .layout-lineL .container .editor h4,
.max-lg-size .layout-lineL-pic .container .title {
  font-size: 36px;
}

.max-lg-size .layout-lineL {
  margin: 0 50px;
}

.max-lg-size .layout-lineL .container .editor h4 {
  margin-bottom: 30px;
}

.max-lg-size .layout-lineL-pic .container {
  max-width: none;
  margin: 0 50px;
}

.max-lg-size .layout-lineL-pic .container .headline-box .title {
  margin-left: 6%;
}

.max-lg-size .layout-lineL-pic .container .box .text-inner {
  margin-left: 6%;
}

.max-md-size .layout-lineL {
  margin: 0;
}

.max-md-size .layout-lineL .container::before {
  top: 0;
  left: 5%;
}

.max-md-size .layout-lineL .container .editor p {
  font-size: 17px;
}

.max-md-size .layout-lineL-pic .container {
  margin: 0;
}

.max-md-size .layout-lineL-pic .container::before {
  left: 5%;
}

.max-md-size .layout-lineL-pic .headline-box .pic-inner {
  height: 35vw;
}

.max-sm-size .layout-lineL .container .editor h4,
.max-sm-size .layout-lineL-pic .container .title {
  font-size: 34px;
}

.max-xs-size .layout-lineL .container .editor h4,
.max-xs-size .layout-lineL-pic .container .title {
  font-size: 30px;
}

.max-xs-size .layout-lineL .container .editor h4 {
  margin-bottom: 15px;
}

.max-xs-size .layout-lineL .container .editor p {
  font-size: 16px;
}

.max-xs-size .layout-lineL-pic .headline-box .pic-inner {
  height: 50vw;
}

.layout-slider-01 {
  max-width: 1585px;
  margin: 50px auto 80px;
}

.layout-slider-01 .box {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: calc(100vh - 90px);
}

.layout-slider-01 .box .inner {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.layout-slider-01 .box .slider-pic {
  width: 64%;
  padding-top: 15px;
}

.layout-slider-01 .box .slider-pic .pic-inner {
  height: 65vh;
  position: relative;
}

.layout-slider-01 .box .slider-pic .pic-inner .pic {
  display: block;
  width: 100%;
  height: 100%;
}

.layout-slider-01 .box .slider-pic .pic-inner::after {
  content: '';
  display: block;
  width: 100%;
  height: 40%;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.5)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#4d000000', GradientType=0);
  /* IE6-9 */
  position: absolute;
  bottom: 0;
  left: 0;
}

.layout-slider-01 .box .slider-pic::before {
  content: '';
  display: block;
  width: 12vw;
  height: 33vw;
  background-image: url("images/welfare/pic-dw.jpg");
  position: absolute;
  top: 80px;
}

.layout-slider-01 .box .text-inner {
  width: 40%;
  z-index: 5;
}

.layout-slider-01 .box .text-inner .title {
  font-size: 42px;
  color: #000;
  border-bottom: 1px solid #000;
  padding-bottom: 25px;
  margin-bottom: 30px;
}

.layout-slider-01 .box .text-inner .sub {
  font-size: 20px;
  line-height: 28px;
  color: #000;
  margin-bottom: 12px;
}

.layout-slider-01 .box .text-inner p {
  font-size: 16px;
  line-height: 24px;
  color: #777;
}

.layout-slider-01 .box .goDown-02 {
  position: absolute;
  bottom: 60px;
}

.layout-slider-01 .box .slick-next,
.layout-slider-01 .box .slick-prev {
  top: -86px;
}

.layout-slider-01 .box .slick-next::before,
.layout-slider-01 .box .slick-prev::before {
  font-size: 16px;
  color: #000;
}

.layout-slider-01 .box .slick-next:hover::before,
.layout-slider-01 .box .slick-prev:hover::before {
  color: #C88A5F;
}

.layout-slider-01 .box .slick-dots {
  bottom: 18px;
}

.layout-slider-01 .box .slick-dots li {
  width: 40px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.5);
  -o-transition: background 0.35s ease-in-out;
  -webkit-transition: background 0.35s ease-in-out;
  -moz-transition: background 0.35s ease-in-out;
  transition: background 0.35s ease-in-out;
}

.layout-slider-01 .box .slick-dots li.slick-active {
  background-color: #fff;
}

.layout-slider-01 .box .slick-dots li:hover {
  background: rgba(0, 0, 0, 0.5);
}

.layout-slider-01 .box:nth-child(odd) {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.layout-slider-01 .box:nth-child(odd) .text-inner {
  margin-right: -5%;
}

.layout-slider-01 .box:nth-child(odd) .text-inner .sub,
.layout-slider-01 .box:nth-child(odd) .text-inner p {
  padding-right: 35%;
}

.layout-slider-01 .box:nth-child(odd) .slider-pic {
  margin-left: -5%;
}

.layout-slider-01 .box:nth-child(odd) .slider-pic::before {
  right: -10%;
}

.layout-slider-01 .box:nth-child(odd) .goDown-02 {
  right: 8%;
}

.layout-slider-01 .box:nth-child(odd) .slick-prev {
  left: auto;
  right: 218px;
}

.layout-slider-01 .box:nth-child(odd) .slick-next {
  left: auto;
  right: 175px;
}

.layout-slider-01 .box:nth-child(even) {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.layout-slider-01 .box:nth-child(even) .text-inner {
  margin-left: -5%;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.layout-slider-01 .box:nth-child(even) .text-inner .title,
.layout-slider-01 .box:nth-child(even) .text-inner .sub,
.layout-slider-01 .box:nth-child(even) .text-inner p {
  padding-left: 35%;
}

.layout-slider-01 .box:nth-child(even) .slider-pic {
  margin-right: -5%;
}

.layout-slider-01 .box:nth-child(even) .slider-pic::before {
  left: -10%;
}

.layout-slider-01 .box:nth-child(even) .goDown-02 {
  left: 8%;
}

.layout-slider-01 .box:nth-child(even) .slick-prev {
  left: auto;
  right: 45px;
}

.layout-slider-01 .box:nth-child(even) .slick-next {
  right: 0;
}

.layout-slider-01 .box:last-child .goDown-02 {
  display: none;
}

.max-bigger-size .layout-slider-01 .box {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.max-bigger-size .layout-slider-01 .box .slider-pic {
  width: 60%;
}

.max-bigger-size .layout-slider-01 .box .slider-pic::before {
  top: auto;
  bottom: -60px;
}

.max-bigger-size .layout-slider-01 .box .text-inner {
  width: 43%;
}

.max-bigger-size .layout-slider-01 .box:nth-child(odd) .slider-pic::before {
  right: -60px;
}

.max-bigger-size .layout-slider-01 .box:nth-child(odd) .goDown-02 {
  right: 80px;
}

.max-bigger-size .layout-slider-01 .box:nth-child(even) .slider-pic::before {
  left: -60px;
}

.max-bigger-size .layout-slider-01 .box:nth-child(even) .goDown-02 {
  left: 80px;
}

/* .max-lg-size .layout-slider-01 .box .text-inner .title {
  font-size: 45px; } */

.max-lg-size .layout-slider-01 .box .slick-prev,
.max-lg-size .layout-slider-01 .box .slick-next {
  top: -82px;
}

.max-lg-size .layout-slider-01 .box:nth-child(even) .slick-prev {
  right: 100px;
}

.max-lg-size .layout-slider-01 .box:nth-child(even) .slick-next {
  right: 60px;
}

.max-lg-size .layout-slider-01 .box:nth-child(even) .goDown-02 {
  left: 60px;
}

.max-lg-size .layout-slider-01 .box:nth-child(odd) .goDown-02 {
  right: 60px;
}

.max-md-size .layout-slider-01 .box .inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.max-md-size .layout-slider-01 .box .slider-pic {
  width: 90%;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin: 0;
  padding-top: 0;
}

.max-md-size .layout-slider-01 .box .slider-pic .pic-inner {
  height: 55vh;
}

.max-md-size .layout-slider-01 .box .text-inner {
  width: 80%;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin: -50px 0 0;
  padding: 30px 35px 0;
  background-color: #fff;
}

.max-md-size .layout-slider-01 .box .text-inner .title {
  font-size: 40px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.max-md-size .layout-slider-01 .box .goDown-02 {
  top: 49vh;
  bottom: auto;
}

.max-md-size .layout-slider-01 .box .slick-dots {
  bottom: 50px;
}

.max-md-size .layout-slider-01 .box .slick-prev,
.max-md-size .layout-slider-01 .box .slick-next {
  top: -60px;
}

.max-md-size .layout-slider-01 .box:nth-child(odd) .slider-pic::before,
.max-md-size .layout-slider-01 .box:nth-child(even) .slider-pic::before {
  width: 20vw;
  left: auto;
  right: -40px;
  bottom: -73px;
}

.max-md-size .layout-slider-01 .box:nth-child(odd) .text-inner,
.max-md-size .layout-slider-01 .box:nth-child(even) .text-inner {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.max-md-size .layout-slider-01 .box:nth-child(odd) .text-inner .title,
.max-md-size .layout-slider-01 .box:nth-child(odd) .text-inner .sub,
.max-md-size .layout-slider-01 .box:nth-child(odd) .text-inner p,
.max-md-size .layout-slider-01 .box:nth-child(even) .text-inner .title,
.max-md-size .layout-slider-01 .box:nth-child(even) .text-inner .sub,
.max-md-size .layout-slider-01 .box:nth-child(even) .text-inner p {
  padding-right: 0;
  padding-left: 0;
}

.max-md-size .layout-slider-01 .box:nth-child(odd) .goDown-02,
.max-md-size .layout-slider-01 .box:nth-child(even) .goDown-02 {
  left: auto;
  right: 65px;
}

.max-md-size .layout-slider-01 .box:nth-child(odd) .slick-prev,
.max-md-size .layout-slider-01 .box:nth-child(even) .slick-prev {
  right: 60px;
  left: auto;
}

.max-md-size .layout-slider-01 .box:nth-child(odd) .slick-next,
.max-md-size .layout-slider-01 .box:nth-child(even) .slick-next {
  right: 20px;
  left: auto;
}

.max-sm-size .layout-slider-01 .box .slider-pic .pic-inner {
  height: 40vh;
}

.max-sm-size .layout-slider-01 .box .text-inner {
  width: 85%;
  margin: 0;
}

.max-sm-size .layout-slider-01 .box .slick-dots {
  bottom: 10px;
}

.max-sm-size .layout-slider-01 .box:nth-child(odd) .goDown-02,
.max-sm-size .layout-slider-01 .box:nth-child(even) .goDown-02 {
  top: 35vh;
  right: 45px;
}

.max-xs-size .layout-slider-01 .box {
  height: auto;
  margin-bottom: 60px;
  position: relative;
}

.max-xs-size .layout-slider-01 .box .inner {
  position: static;
}

.max-xs-size .layout-slider-01 .box .slider-pic {
  width: 100%;
}

.max-xs-size .layout-slider-01 .box .slider-pic .pic-inner {
  height: 35vh;
}

.max-xs-size .layout-slider-01 .box .slider-pic::before {
  display: none;
}

.max-xs-size .layout-slider-01 .box .text-inner {
  width: 100%;
  padding: 25px 0 0 0;
}

.max-xs-size .layout-slider-01 .box .text-inner .title {
  font-size: 35px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.max-xs-size .layout-slider-01 .box .goDown-02 {
  display: none;
}

.max-mini-size .layout-slider-01 .box {
  height: auto;
  margin-bottom: 60px;
}

.max-mini-size .layout-slider-01 .box .text-inner .title {
  font-size: 30px;
}

.max-mini-size .layout-slider-01 .box .goDown-02 {
  display: none;
}

.layout-slider-02 .box {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.layout-slider-02 .box .link-inner {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 86px;
  height: 60vh;
  border-right: 1px solid #878787;
  padding-right: 40px;
  margin-left: 80px;
}

.layout-slider-02 .box .link-inner .title {
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  margin-bottom: 30px;
}

.layout-slider-02 .box .link-inner .icon {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(200, 138, 95, 0.5);
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
}

.layout-slider-02 .box .link-inner .icon i {
  font-size: 17px;
  color: #C88A5F;
  z-index: 5;
  -o-transition: color 0.35s ease-in-out;
  -webkit-transition: color 0.35s ease-in-out;
  -moz-transition: color 0.35s ease-in-out;
  transition: color 0.35s ease-in-out;
}

.layout-slider-02 .box .link-inner .icon i.icon-link {
  font-size: 15px;
}

.layout-slider-02 .box .link-inner .icon::before {
  content: '';
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #C88A5F;
  border: 1px solid #C88A5F;
  position: absolute;
  bottom: -46px;
  left: 0;
  -o-transition: bottom 0.35s ease-in-out;
  -webkit-transition: bottom 0.35s ease-in-out;
  -moz-transition: bottom 0.35s ease-in-out;
  transition: bottom 0.35s ease-in-out;
}

.layout-slider-02 .box .link-inner .icon:hover i {
  color: #ffffff;
}

.layout-slider-02 .box .link-inner .icon:hover::before {
  bottom: 0;
}

.layout-slider-02 .box .link-inner .share-inner {
  width: 46px;
  height: 61px;
  overflow: hidden;
  -o-transition: height 0.35s ease-in-out;
  -webkit-transition: height 0.35s ease-in-out;
  -moz-transition: height 0.35s ease-in-out;
  transition: height 0.35s ease-in-out;
}

.layout-slider-02 .box .link-inner .share-inner .share-box {
  width: 46px;
  border-radius: 23px;
  background-color: #C88A5F;
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-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;
  padding: 5px 0;
}

.layout-slider-02 .box .link-inner .share-inner .share-box button {
  width: 30px;
  height: 30px;
  background-color: transparent;
  font-size: 15px;
  border: none;
  margin: 6px 0;
  -o-transition: background 0.35s ease-in-out;
  -webkit-transition: background 0.35s ease-in-out;
  -moz-transition: background 0.35s ease-in-out;
  transition: background 0.35s ease-in-out;
}

.layout-slider-02 .box .link-inner .share-inner .share-box button i {
  color: #fff;
  -o-transition: color 0.35s ease-in-out;
  -webkit-transition: color 0.35s ease-in-out;
  -moz-transition: color 0.35s ease-in-out;
  transition: color 0.35s ease-in-out;
}

.layout-slider-02 .box .link-inner .share-inner .share-box button:hover {
  background-color: #fff;
}

.layout-slider-02 .box .link-inner .share-inner .share-box button:hover i {
  color: #C88A5F;
}

.layout-slider-02 .box .link-inner .share-inner.active {
  height: 200px;
}

.layout-slider-02 .box .link-inner .share-inner.active .icon {
  background-color: #C88A5F;
}

.layout-slider-02 .box .link-inner .share-inner.active .icon i {
  color: #fff;
}

.layout-slider-02 .box .info-inner {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100% - 166px);
  position: relative;
}

.layout-slider-02 .box .info-inner .text-inner {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30%;
  height: auto;
  margin: 0 4%;
}

.layout-slider-02 .box .info-inner .text-inner .logo {
  display: block;
  width: 12vw;
  margin-bottom: 3.5vh;
}

.layout-slider-02 .box .info-inner .text-inner .title {
  margin-bottom: 1.5vh;
}

.layout-slider-02 .box .info-inner .text-inner .sub {
  font-size: 20px;
  color: #000;
  margin-bottom: 1.2vh;
}

.layout-slider-02 .box .info-inner .text-inner p {
  font-size: 16px;
  line-height: 24px;
  /* text-align: justify; */
  color: #777;
  overflow-y: auto;
  z-index: 10px;
  -webkit-overflow-scrolling: touch;
}
.layout-slider-02 .box .info-inner .text-inner p.small {
  height: 30vh;
}

.layout-slider-02 .box .info-inner .slider-pic {
  width: calc(100% - 40%);
  position: relative;
  margin-right: -40px;
}

.layout-slider-02 .box .info-inner .slider-pic .pic-inner,
.layout-slider-02 .box .info-inner .slider-pic .video-inner {
  height: 600px;
  position: relative;
}

.layout-slider-02 .box .info-inner .slider-pic .pic-inner .pic,
.layout-slider-02 .box .info-inner .slider-pic .video-inner .pic {
  display: block;
  width: 100%;
  height: 100%;
}

.layout-slider-02 .box .info-inner .slider-pic .pic-inner::after,
.layout-slider-02 .box .info-inner .slider-pic .video-inner::after {
  content: '';
  display: block;
  width: 100%;
  height: 40%;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.5)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#4d000000', GradientType=0);
  /* IE6-9 */
  position: absolute;
  bottom: 0;
  left: 0;
}

.layout-slider-02 .box .info-inner .slider-pic .pic-inner::before,
.layout-slider-02 .box .info-inner .slider-pic .video-inner::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 10;
}

.layout-slider-02 .box .info-inner .slider-pic .video-inner {
  background-color: #000;
}

.layout-slider-02 .box .info-inner .slider-pic .video-inner::after {
  display: none;
}

.layout-slider-02 .box .info-inner .slider-pic .video-inner video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.layout-slider-02 .box .info-inner .slider-pic .slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.layout-slider-02 .box .info-inner .slider-pic .goDown-02 {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.layout-slider-02 .box .info-inner .slider-pic::before {
  content: '';
  display: block;
  width: 12vw;
  height: 33vw;
  background-image: url("images/welfare/pic-dw.jpg");
  position: absolute;
  right: -8%;
  bottom: -10%;
}

.layout-slider-02 .box .info-inner .slider-pic .slick-dots {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 4px;
  left: 0;
  bottom: 8px;
}

.layout-slider-02 .box .info-inner .slider-pic .slick-dots li {
  width: 40px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.5);
  -o-transition: background 0.35s ease-in-out;
  -webkit-transition: background 0.35s ease-in-out;
  -moz-transition: background 0.35s ease-in-out;
  transition: background 0.35s ease-in-out;
}

.layout-slider-02 .box .info-inner .slider-pic .slick-dots li.slick-active {
  background-color: #fff;
}

.layout-slider-02 .box .info-inner .slider-pic .slick-dots li:hover {
  background: rgba(0, 0, 0, 0.5);
}

.layout-slider-02 .box .info-inner .slider-pic .slick-dots li button {
  width: 40px;
  height: 3px;
  padding: 0;
}

.layout-slider-02 .box .info-inner .slider-pic .slick-dots li button::before {
  width: 40px;
  height: 3px;
}

.layout-slider-02 .box .info-inner .slider-pic .slick-prev,
.layout-slider-02 .box .info-inner .slider-pic .slick-next {
  top: auto;
  bottom: -40px;
}

.layout-slider-02 .box .info-inner .slider-pic .slick-prev::before,
.layout-slider-02 .box .info-inner .slider-pic .slick-next::before {
  color: #000;
}

.layout-slider-02 .box .info-inner .slider-pic .slick-prev:hover::before,
.layout-slider-02 .box .info-inner .slider-pic .slick-next:hover::before {
  color: #C88A5F;
}

.layout-slider-02 .box .info-inner .slider-pic .slick-prev {
  left: 0;
}

.layout-slider-02 .box .info-inner .slider-pic .slick-next {
  right: auto;
  left: 50px;
}

.max-bigger-size .layout-slider-02 .box .link-inner {
  margin-left: 80px;
}

.max-bigger-size .layout-slider-02 .box .info-inner {
  width: calc(100% - 160px);
}

.max-bigger-size .layout-slider-02 .box .info-inner .slider-pic .pic-inner,
.max-bigger-size .layout-slider-02 .box .info-inner .slider-pic .video-inner {
  height: 35vw;
}

.max-bg-size .layout-slider-02 .box .link-inner {
  margin-left: 20px;
}

.max-bg-size .layout-slider-02 .box .info-inner {
  width: calc(100% - 100px);
}

.max-bg-size .layout-slider-02 .box .info-inner .text-inner {
  width: 35%;
  margin: 0 4%;
}

.max-bg-size .layout-slider-02 .box .info-inner .slider-pic {
  width: calc(100% - 43%);
}

.max-bg-size .layout-slider-02 .box .info-inner .slider-pic .slick-dots {
  bottom: 25px;
}

.max-lg-plus-size .layout-slider-02 .box .slider-pic .pic-inner,
.max-lg-plus-size .layout-slider-02 .box .slider-pic .video-inner {
  height: 380px;
}

.max-lg-size .layout-slider-02 .box {
  margin-top: 0;
}

.max-lg-size .layout-slider-02 .box .link-inner {
  width: 60px;
  padding-right: 20px;
}

.max-lg-size .layout-slider-02 .box .link-inner .icon {
  width: 40px;
  height: 40px;
}

.max-lg-size .layout-slider-02 .box .link-inner .icon::before {
  width: 40px;
  height: 40px;
}

.max-lg-size .layout-slider-02 .box .link-inner .share-inner {
  width: 40px;
  height: 55px;
}

.max-lg-size .layout-slider-02 .box .link-inner .share-inner .share-box {
  width: 40px;
}

.max-lg-size .layout-slider-02 .box .link-inner .share-inner.active {
  height: 200px;
}

.max-lg-size .layout-slider-02 .box .info-inner .slider-pic .pic-inner,
.max-lg-size .layout-slider-02 .box .info-inner .slider-pic .video-inner {
  height: 32vw;
}

.max-md-size .layout-slider-02 .box .info-box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.max-md-size .layout-slider-02 .box .link-inner {
  margin-left: 0;
  height: 75vh;
}

.max-md-size .layout-slider-02 .box .info-inner {
  width: calc(100% - 60px);
  height: 73vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.max-md-size .layout-slider-02 .box .info-inner .text-inner {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  padding: 0 40px;
  margin-bottom: 25px;
}

.max-md-size .layout-slider-02 .box .info-inner .text-inner .logo {
  width: 15vw;
  margin-bottom: 20px;
  margin-right: 25px;
}

.max-md-size .layout-slider-02 .box .info-inner .text-inner h3,
.max-md-size .layout-slider-02 .box .info-inner .text-inner .sub {
  -ms-flex-item-align: center;
  align-self: center;
  margin-bottom: 0;
}

.max-md-size .layout-slider-02 .box .info-inner .text-inner .sub {
  line-height: 36px;
  margin-top: 4px;
  margin-left: 20px;
}

.max-md-size .layout-slider-02 .box .info-inner .text-inner p {
  width: 100%;
  margin-top: 10px;
}

.max-md-size .layout-slider-02 .box .info-inner .slider-pic {
  width: calc(100% - 80px);
  margin: 0 40px;
}

.max-md-size .layout-slider-02 .box .info-inner .slider-pic .pic-inner,
.max-md-size .layout-slider-02 .box .info-inner .slider-pic .video-inner {
  height: 37vh;
}

.max-sm-size .layout-slider-02 .box .info-inner .text-inner {
  margin-bottom: 20px;
  padding: 0 30px;
}

.max-sm-size .layout-slider-02 .box .info-inner .text-inner p {
  line-height: 26px;
}

.max-sm-size .layout-slider-02 .box .info-inner .slider-pic {
  width: calc(100% - 60px);
  margin: 0 30px;
}

.max-sm-size .layout-slider-02 .box .info-inner .slider-pic .pic-inner,
.max-sm-size .layout-slider-02 .box .info-inner .slider-pic .video-inner {
  height: 30vh;
}

.max-xs-size .layout-slider-02 .box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.max-xs-size .layout-slider-02 .box .link-inner {
  width: auto;
  height: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 0;
  border: none;
  position: absolute;
  top: 10px;
  right: 0;
}

.max-xs-size .layout-slider-02 .box .link-inner .title {
  display: none;
}

.max-xs-size .layout-slider-02 .box .link-inner .icon {
  margin: 0 6px;
  width: 32px;
  height: 32px;
}

.max-xs-size .layout-slider-02 .box .link-inner .icon::before {
  width: 32px;
  height: 32px;
}

.max-xs-size .layout-slider-02 .box .link-inner .share-inner {
  width: 32px;
  height: 36px;
  overflow: visible;
  position: relative;
}

.max-xs-size .layout-slider-02 .box .link-inner .share-inner .share-box {
  width: 32px;
  overflow: hidden;
  border-radius: 32px;
  position: absolute;
  top: 36px;
  left: 6px;
  z-index: 50;
  opacity: 0;
  -o-transition: opacity 0.35s ease-in-out;
  -webkit-transition: opacity 0.35s ease-in-out;
  -moz-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}

.max-xs-size .layout-slider-02 .box .link-inner .share-inner.active {
  height: 40px;
}

.max-xs-size .layout-slider-02 .box .link-inner .share-inner.active .share-box {
  opacity: 1;
}

.max-xs-size .layout-slider-02 .box .info-inner {
  width: 100%;
  height: 80vh;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.max-xs-size .layout-slider-02 .box .info-inner .text-inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0;
  margin-top: 5px;
}

.max-xs-size .layout-slider-02 .box .info-inner .text-inner .logo {
  width: 26vw;
  margin-right: calc(100% - 14vw);
  height: 55px;
  margin-bottom: 15px;
}

.max-xs-size .layout-slider-02 .box .info-inner .text-inner .logo img {
  max-width: none !important;
  height: 100%;
  width: auto;
}

.max-xs-size .layout-slider-02 .box .info-inner .text-inner p {
  line-height: 24px;
  max-height: 150px;
}

.max-xs-size .layout-slider-02 .box .info-inner .slider-pic {
  width: 100%;
  margin: 0;
}

.max-xs-size .layout-slider-02 .box .info-inner .slider-pic .slick-dots {
  bottom: 5px;
}

.max-xs-size .layout-slider-02 .box .info-inner .slider-pic .goDown-02 {
  right: 10px;
  bottom: 10px;
}

.max-mini-size .layout-slider-02 .box .link-inner .icon {
  margin: 0 5px;
}

.max-mini-size .layout-slider-02 .box .link-inner .icon .share-inner .share-box {
  left: 5px;
}

.max-mini-size .layout-slider-02 .box .info-inner .text-inner .logo {
  height: 50px;
}

.max-mini-size .layout-slider-02 .box .info-inner .text-inner p {
  max-height: 192px;
}

.max-mini-size .layout-slider-02 .box .info-inner .text-inner p br {
  display: none;
}

.max-mini-size .layout-slider-02 .box .info-inner .slider-pic .pic-inner,
.max-mini-size .layout-slider-02 .box .info-inner .slider-pic .video-inner {
  height: 25vh;
}

/* ==========================================================================
    header
 @mixin =========================================================================*/
#header {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 90px;
  background: #fff;
  padding: 0 50px;
  position: absolute;
  z-index: 99;
}

#header .logo {
  width: 200px;
  height: 200px;
  background-color: #fff;
  background-image: url(images/logo.svg);
  background-size: 122px 117px;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 9999;
}
#header.min-active .logo {
  width: 90px;
  height: 90px;
  background-size: 80%;
}

#header .menu-toggle {
  display: none;
}

#header .content {
  padding-top: 40px;
}

#header .content .nav {
  float: left;
}

#header .content .nav>ul li {
  float: left;
  margin-right: 48px;
  color: #000;
}

#header .content .nav>ul li a {
  font-size: 17px;
  color: #000;
}

#header .content .nav>ul li:last-child {
  margin-right: 0 !important;
}

#header .content .nav>ul li.sub-toggle {
  position: relative;
  cursor: default;
}

#header .content .nav>ul li.sub-toggle::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #C88A5F;
  margin: 31px 0 0;
  opacity: 0;
}

#header .content .nav>ul li.sub-toggle:hover::after {
  opacity: 1;
  -webkit-animation: Line .3s linear;
  animation: Line .3s linear;
}

#header .content .nav>ul li:hover a {
  color: #C88A5F;
}

#header .content .nav>ul li ul.subnav {
  width: 300px;
  height: 0;
  background-color: #fff;
  text-align: center;
  position: absolute;
  top: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 0;
  z-index: 99;
  overflow: hidden;
  opacity: 0;
  -o-transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

#header .content .nav>ul li ul.subnav li {
  width: 100%;
  margin-right: 0;
  margin-bottom: 20px;
  float: none;
}

#header .content .nav>ul li ul.subnav li:last-child {
  margin-bottom: 0;
}

#header .content .nav>ul li ul.subnav li>a {
  color: #7F7F7F;
}

#header .content .nav>ul li ul.subnav li>a:hover {
  color: #C88A5F;
}

#header .content .nav>ul li ul.subnav.active {
  height: auto;
  -webkit-box-shadow: 0 0 12px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 12px 1px rgba(0, 0, 0, 0.1);
  padding: 45px 0;
  opacity: 1;
}

#header .content .nav>ul::after {
  content: '';
  display: block;
  clear: both;
}

#header .content .lang {
  float: right;
  width: 28px;
  margin: -1px 40px 0 42px;
  position: relative;
  cursor: pointer;
}

#header .content .lang>i {
  font-size: 20px;
  color: #C9C9C9;
  -o-transition: color 0.35s ease-in-out;
  -webkit-transition: color 0.35s ease-in-out;
  -moz-transition: color 0.35s ease-in-out;
  transition: color 0.35s ease-in-out;
}

#header .content .lang>ul {
  width: 120px;
  background-color: #000;
  position: absolute;
  top: 51px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  padding: 0;
  -o-transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

#header .content .lang>ul li {
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
}

#header .content .lang>ul li:last-child {
  margin-bottom: 0;
}

#header .content .lang>ul li a {
  color: #fff;
}

#header .content .lang>ul.active {
  height: auto;
  padding: 20px;
  visibility: visible;
  opacity: 1;
}

#header .content .lang.active>i {
  color: #C88A5F;
}

#header.small {
  height: 82px;
  background-color: #fff;
  border-bottom: 1px solid #EDEDED;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: fixed;
  top: 0;
}

#header.small .logo {
  width: 82px !important;
  height: 82px !important;
  background-size: 60px 58px;
  background-color: transparent;
  margin-left: 40px;
}

#header.small .content {
  padding-top: 30px;
}

#header.small .content .nav>ul li.sub-toggle::after {
  margin: 22px -20px 0;
}

#header.small .content .nav>ul li ul.subnav {
  top: 51px;
}

#header.fixed {
  position: fixed;
  top: 0;
}

.max-bg-size #header {
  padding: 0 20px;
}

.max-bg-size #header .logo {
  width: 180px;
  height: 180px;
}

.max-bg-size #header .content .nav>ul li {
  margin-right: 35px;
}

.max-bg-size #header .content .lang {
  margin: -1px 30px 0 32px;
}

.max-md-size #header,
.max-md-size .small {
  height: 68px;
  background-color: #fff;
  border: none;
  position: fixed;
  top: 0;
}

.max-md-size #header .logo,
.max-md-size .small .logo {
  width: 68px !important;
  height: 68px !important;
  background-color: transparent;
  background-size: 50px auto;
  margin-left: 0;
}

.max-md-size #header .menu-toggle,
.max-md-size .small .menu-toggle {
  display: block;
  width: 30px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 65px;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 99;
}

.max-md-size #header .menu-toggle .hamburger,
.max-md-size .small .menu-toggle .hamburger {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #000;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -o-transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.max-md-size #header .menu-toggle .hamburger::before,
.max-md-size #header .menu-toggle .hamburger::after,
.max-md-size .small .menu-toggle .hamburger::before,
.max-md-size .small .menu-toggle .hamburger::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: #000;
  -o-transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  position: absolute;
}

.max-md-size #header .menu-toggle .hamburger::before,
.max-md-size .small .menu-toggle .hamburger::before {
  top: -7px;
}

.max-md-size #header .menu-toggle .hamburger::after,
.max-md-size .small .menu-toggle .hamburger::after {
  bottom: -7px;
}

.max-md-size #header .content,
.max-md-size .small .content {
  padding-top: 0;
}

.max-md-size #header .content .nav,
.max-md-size .small .content .nav {
  float: none;
  z-index: 5;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -o-transition: opacity 0.35s ease-in-out;
  -webkit-transition: opacity 0.35s ease-in-out;
  -moz-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}

.max-md-size #header .content .nav>ul,
.max-md-size .small .content .nav>ul {
  width: 90%;
  max-height: 80vh;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 20%;
  z-index: 50;
}

.max-md-size #header .content .nav>ul>li,
.max-md-size .small .content .nav>ul>li {
  float: none;
  text-align: center;
  color: #fff;
  margin-right: 0;
  margin-bottom: 50px;
  position: relative;
}

.max-md-size #header .content .nav>ul>li::after,
.max-md-size .small .content .nav>ul>li::after {
  content: '';
  display: block;
  width: 60;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 26px;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
}

.max-md-size #header .content .nav>ul>li>a,
.max-md-size .small .content .nav>ul>li>a {
  color: #fff;
}

.max-md-size #header .content .nav>ul>li.sub-toggle::after,
.max-md-size .small .content .nav>ul>li.sub-toggle::after {
  margin: 0 auto;
}

.max-md-size #header .content .nav>ul>li.active::after,
.max-md-size .small .content .nav>ul>li.active::after {
  opacity: 1;
}

.max-md-size #header .content .nav>ul>li ul.subnav,
.max-md-size .small .content .nav>ul>li ul.subnav {
  width: auto;
  height: auto;
  background-color: transparent;
  -webkit-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0;
  padding: 0;
  margin-top: 20px;
  position: static;
  top: auto;
  left: auto;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  opacity: 1;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  display: none;
}

.max-md-size #header .content .nav>ul>li ul.subnav>li a,
.max-md-size .small .content .nav>ul>li ul.subnav>li a {
  color: rgba(255, 255, 255, 0.7);
}

.max-md-size #header .content .lang,
.max-md-size .small .content .lang {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
}

.max-md-size #header .content .lang>ul,
.max-md-size .small .content .lang>ul {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100vw;
  height: auto;
  top: 48px;
  left: calc(-100vw + 48px);
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  text-align: center;
  padding: 20px;
}

.max-md-size #header .content .lang>ul li,
.max-md-size .small .content .lang>ul li {
  display: inline-block;
  padding: 0 5px;
  margin: 0 20px;
}

.max-md-size #header .content .lang>ul li.active,
.max-md-size .small .content .lang>ul li.active {
  border: 1px solid #fff;
}

.max-md-size #header::after,
.max-md-size .small::after {
  content: '';
  position: fixed;
  right: -80px;
  top: -80px;
  z-index: 100;
  width: 80px;
  height: 80px;
  background: #4C2F1B;
  opacity: .9;
  border-radius: 50%;
  -webkit-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  -webkit-box-shadow: 0 0 0 0 #4C2F1B, 0 0 0 0 #4C2F1B;
  box-shadow: 0 0 0 0 #4C2F1B, 0 0 0 0 #4C2F1B;
  z-index: 2;
}

.max-md-size #header.active .menu-toggle,
.max-md-size .small.active .menu-toggle {
  right: 20px;
}

.max-md-size #header.active .menu-toggle .hamburger,
.max-md-size .small.active .menu-toggle .hamburger {
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.max-md-size #header.active .menu-toggle .hamburger:before,
.max-md-size .small.active .menu-toggle .hamburger:before {
  background-color: #fff;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
}

.max-md-size #header.active .menu-toggle .hamburger:after,
.max-md-size .small.active .menu-toggle .hamburger:after {
  background-color: #fff;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  bottom: 0;
}

.max-md-size #header.active .content .nav,
.max-md-size .small.active .content .nav {
  opacity: 1;
  visibility: visible;
}

.max-md-size #header.active::after,
.max-md-size .small.active::after {
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 0 0 100vw #4C2F1B, 0 0 0 100vh #4C2F1B;
  box-shadow: 0 0 0 100vw #4C2F1B, 0 0 0 100vh #4C2F1B;
}

.max-xs-size #header,
.max-xs-size .small {
  padding: 0 10px;
}

.max-xs-size #header .content .lang,
.max-xs-size .small .content .lang {
  margin-top: 3px;
}

.max-xs-size #header .content .lang>ul,
.max-xs-size .small .content .lang>ul {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 15px;
}

.max-xs-size #header .content .lang>ul li,
.max-xs-size .small .content .lang>ul li {
  margin: 0 5px;
}

.max-xs-size #header .content .lang>ul li:first-child,
.max-xs-size .small .content .lang>ul li:first-child {
  margin-left: 0px;
}

.max-xs-size #header .content .lang>ul li:last-child,
.max-xs-size .small .content .lang>ul li:last-child {
  margin-right: 0px;
}

.max-mini-size #header {
  padding: 0 10px;
}

.max-mini-size #header .content .lang>ul li {
  margin: 0;
  font-size: 14px;
}

.max-lg-plus-size .fixed-header #header .logo {
  width: 150px;
  height: 150px;
  background-size: 60%;
}

/* ==========================================================================
    footer
 @mixin =========================================================================*/
#footer {
  background-color: #282726;
  background-size: contain;
  background-image: url(images/footer-bg.png);
  background-repeat: no-repeat;
  background-position: left top;
  width: 100%;
  padding: 50px 140px;
}

#footer .firm {
  display: table;
  width: 98%;
  height: 20vw;
  margin: 0 auto;
}

#footer .firm .list {
  display: table-row;
  height: 50%;
}

#footer .firm .list>span {
  width: 14.28571%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

#footer .goTop {
  width: 43px;
  text-align: center;
  margin: 0 auto 20px;
  cursor: pointer;
}

#footer .goTop>i {
  font-size: 33px;
  color: #C88A5F;
  -o-transition: color 0.35s ease-in-out;
  -webkit-transition: color 0.35s ease-in-out;
  -moz-transition: color 0.35s ease-in-out;
  transition: color 0.35s ease-in-out;
}

#footer .goTop:hover>i {
  color: #fff;
}

#footer address {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 50px;
}

#footer address>.left {
  width: 340px;
}

#footer address>.left .footer-logo {
  width: 242px;
  height: 38px;
  background: url("images/logo-w.svg");
  background-repeat: no-repeat;
  margin-bottom: 24px;
}

#footer address>.left .info {
  font-family: 'Muli', '微軟正黑體', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}

#footer address>.left .info>a {
  color: rgba(255, 255, 255, 0.4);
}

#footer address>.left .info>a:hover {
  color: #fff;
}

#footer address>.left .lang>a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  margin-right: 24px;
}

#footer address>.left .lang>a:hover {
  color: #C88A5F;
}

#footer address>.left .lang>a:last-child {
  margin-right: 0;
}

#footer address>.left .lang>a.active {
  color: #fff;
}

#footer address>.center {
  width: 45vw;
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 85px;
}

#footer address>.center>.list .title {
  display: block;
  width: 100%;
  font-size: 16px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.7);
}

#footer address>.center>.list .title a {
  color: rgba(255, 255, 255, 0.7);
}

#footer address>.center>.list .title a:hover {
  color: #C88A5F;
}

#footer address>.center>.list ul {
  float: left;
  margin-right: 40px;
}

#footer address>.center>.list ul li {
  margin-bottom: 4px;
}

#footer address>.center>.list ul li a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
}

#footer address>.center>.list ul li a:hover {
  color: #C88A5F;
}

#footer address>.center>.list ul:last-child {
  margin-right: 0;
}

#footer address>.center>.list:last-child .title {
  margin-bottom: 8px;
}

#footer address>.right {
  width: 278px;
  text-align: right;
  font-size: 16px;
  font-family: 'Muli', '微軟正黑體', sans-serif;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
}

#footer address>.right a {
  color: rgba(255, 255, 255, 0.4);
}

#footer address>.right a:hover {
  color: #C88A5F;
}

#footer address>.right>.social-media {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 22px;
}

#footer address>.right>.social-media span {
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  margin-left: 14px;
  -o-transition: border 0.35s ease-in-out;
  -webkit-transition: border 0.35s ease-in-out;
  -moz-transition: border 0.35s ease-in-out;
  transition: border 0.35s ease-in-out;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#footer address>.right>.social-media a:hover span {
  border-color: #C88A5F;
}

.max-bigger-size #footer {
  padding: 50px 70px;
}

.max-bigger-size #footer .firm .list>span {
  padding: 3%;
}

/* .max-bigger-size #footer address > .left {
    width: 29%; } */
.max-bigger-size #footer address>.left .lang {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.max-bigger-size #footer address>.left .lang>a {
  margin-right: auto;
}

.max-bigger-size #footer address>.center {
  width: 50%;
  padding-right: 0;
}

.max-bigger-size #footer address>.center .list {
  min-width: 32%;
}

.max-bigger-size #footer address>.right {
  width: 225px;
}

.max-bg-size #footer {
  padding: 50px 35px;
}

/* .max-bg-size #footer address > .left {
    width: 32%; } */
/* .max-bg-size #footer address > .center {
    width: 35%; } */

.max-lg-size #footer {
  padding: 40px 35px;
}

.max-lg-size #footer address {
  padding-top: 40px;
}

/* .max-lg-size #footer address > .left {
      width: 31%; } */
.max-lg-size #footer address>.left .footer-logo {
  margin-bottom: 20px;
}

.max-lg-size #footer address>.center {
  width: 42%;
}

.max-lg-size #footer address>.center>.list ul {
  margin-right: 20px;
}

.max-lg-size #footer address>.right {
  width: 160px;
}

.max-md-size #footer {
  padding: 40px 30px;
}

.max-md-size #footer .goTop:hover>i {
  color: #C88A5F;
}

.max-md-size #footer address {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* .max-md-size #footer address > .left {
      width: 45%; } */
.max-md-size #footer address>.center {
  width: 52%;
}

.max-md-size #footer address>.right {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
}

.max-md-size #footer address>.right .social-media {
  margin-top: 0;
}

.max-sm-size #footer {
  padding: 40px 30px;
}

.max-sm-size #footer .firm {
  width: 100%;
}

.max-sm-size #footer address>.left {
  width: 100%;
}

.max-sm-size #footer address>.left .lang {
  display: none;
}

.max-sm-size #footer address>.center {
  display: none;
}

.max-sm-size #footer address>.right .copyright {
  text-align: left;
}

.max-sm-size #footer address>.right .copyright>span {
  display: block;
}

.max-sm-size #footer .goTop {
  margin: 0 auto 10px;
}

.max-xs-size #footer {
  padding: 30px 0;
}

.max-xs-size #footer .firm {
  padding: 0 15px;
}

.max-xs-size #footer address {
  padding: 40px 40px 0;
}

.max-xs-size #footer address>.left .footer-logo {
  width: 180px;
  height: 28px;
}

.max-xs-size #footer address>.left .info {
  display: none;
}

.max-xs-size #footer address>.right {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.max-xs-size #footer address>.right .copyright {
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.5);
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.max-xs-size #footer address>.right .social-media {
  margin-top: 20px;
  -ms-flex-item-align: center;
  align-self: center;
}

.max-xs-size #footer address>.right .social-media span {
  margin-left: 20px;
}

.max-xs-size #footer address>.right .social-media a:first-child span {
  margin-left: 0;
}

/* ==========================================================================
    index
 @mixin =========================================================================*/
#home section {
  margin-top: 40px;
  margin-bottom: 95px;
}

#home section .container {
  position: relative;
}

#home section .container .v-title {
  position: absolute;
  top: 40px;
  left: 75px;
  z-index: 50;
}

#home section .slick-dots li {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #fff;
  opacity: .5;
}

#home section .slick-dots li.slick-active {
  opacity: 1;
}

#home section.about .box {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  padding-top: 120px;
}

#home section.about .box .text-inner {
  width: 57%;
  padding: 35px 80px 0;
  position: relative;
}

#home section.about .box .text-inner p {
  font-size: 28px;
  line-height: 48px;
  font-weight: bold;
  color: #000;
  margin-bottom: 30px;
}

#home section.about .box .text-inner em {
  font-size: 24px;
  color: #000;
  display: block;
  margin-bottom: 8%;
}

#home section.about .box .pic-inner {
  width: 43%;
  height: 28.5vw;
  position: relative;
  z-index: 5;
}

#home section.about .box .pic-inner .pic {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 5;
}

#home section.about .box .pic-inner::before {
  content: '';
  display: block;
  width: 240px;
  height: 36.5vw;
  background-image: url("images/home/robe-01.jpg");
  background-size: contain;
  position: absolute;
  top: -60px;
  right: -180px;
  z-index: -1;
}

#home section.about .box::after {
  content: '';
  display: block;
  width: 350px;
  height: 340px;
  background: url("images/logo-draw.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  margin: 0 auto;
}

#home section.business .box {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  padding-top: 172px;
}

#home section.business .box .btn {
  display: none;
}

#home section.business .box .text-inner {
  width: 43%;
  padding-left: 20px;
}

#home section.business .box .text-inner .slider-btn {
  margin-bottom: 26px;
}

#home section.business .box .text-inner .slider-btn li {
  width: 14.6vw !important;
  height: 13.1vw;
  border: 1px solid #C9C9C9;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  -o-transition: border 0.35s ease-in-out;
  -webkit-transition: border 0.35s ease-in-out;
  -moz-transition: border 0.35s ease-in-out;
  transition: border 0.35s ease-in-out;
}

#home section.business .box .text-inner .slider-btn li .item {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #C9C9C9;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 15%;
  cursor: pointer;
  -o-transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

#home section.business .box .text-inner .slider-btn li .item .title {
  font-size: 30px;
  line-height: 48px;
  font-weight: bold;
  width: 100%;
}

#home section.business .box .text-inner .slider-btn li .item .sub {
  font-family: 'Muli', '微軟正黑體', sans-serif;
  font-weight: bold;
  width: 100%;
}

#home section.business .box .text-inner .slider-btn li:first-child {
  margin-right: 280px;
}

#home section.business .box .text-inner .slider-btn li:nth-child(2) {
  border-top: 1px solid transparent;
}

#home section.business .box .text-inner .slider-btn li:nth-child(3) {
  border-left: 1px solid transparent;
  height: 13.15vw;
  margin-top: -1px;
}

#home section.business .box .text-inner .slider-btn li:hover .item {
  color: #C88A5F;
}

#home section.business .box .text-inner .slider-btn li:hover.slick-current {
  border-color: transparent;
}

#home section.business .box .text-inner .slider-btn li:hover.slick-current::before {
  border-bottom-width: 2px;
  border-left-width: 2px;
}

#home section.business .box .text-inner .slider-btn li:hover.slick-current::after {
  border-top-width: 2px;
  border-right-width: 2px;
}

#home section.business .box .text-inner .slider-btn li:hover.slick-current .item {
  color: #C88A5F;
}

#home section.business .box .text-inner .slider-btn li.slick-current {
  border-color: #000;
}

#home section.business .box .text-inner .slider-btn li.slick-current .item {
  color: #000;
  border: 1px solid #000;
}

#home section.business .box .text-inner .slider-text {
  padding-right: 80px;
}

#home section.business .box .text-inner .slider-text .text>a {
  font-size: 18px;
  display: block;
  color: #000;
  margin-bottom: 30px;
  position: relative;
  padding-left: 100px;
  -webkit-transition: color .2s;
  -o-transition: color .2s;
  transition: color .2s;
}

#home section.business .box .text-inner .slider-text .text>a::before,
#home section.business .box .text-inner .slider-text .text>a::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

#home section.business .box .text-inner .slider-text .text>a::before {
  width: 70px;
  height: 1px;
  background-color: #000;
  left: 0;
}

#home section.business .box .text-inner .slider-text .text>a::after {
  content: '\e81a';
  font-family: "lixin";
  left: 72px;
}

#home section.business .box .text-inner .slider-text .text>a:hover {
  color: #C88A5F;
}

#home section.business .box .text-inner .slider-text .text>a:hover::before {
  background-color: #C88A5F;
  -webkit-transform: translate(5px, -50%);
  -ms-transform: translate(5px, -50%);
  transform: translate(5px, -50%);
}

#home section.business .box .text-inner .slider-text .text>p {
  font-size: 16px;
  line-height: 24px;
  color: #000;
}

#home section.business .box .slider-pic {
  width: 57%;
  padding-right: 40px;
  z-index: 0;
}

#home section.business .box .slider-pic .pic-inner {
  width: 100%;
  height: 100%;
  z-index: 5;
}

#home section.business .box .slider-pic .pic-inner .pic {
  width: 100%;
  height: 100%;
  position: relative;
}

#home section.business .box .slider-pic .pic-inner .pic::after {
  content: '';
  display: block;
  width: 100%;
  height: 25%;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.5)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#4d000000', GradientType=0);
  /* IE6-9 */
  position: absolute;
  left: 0;
  bottom: 0;
}

#home section.business .box .slider-pic::before {
  content: '';
  display: block;
  width: 780px;
  height: 400px;
  background-image: url("images/home/robe-02.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 400px;
  left: -100px;
  z-index: -1;
}

#home section.news {
  margin-top: 180px;
  margin-bottom: 0 !important;
  position: relative;
}

#home section.news .container .v-title {
  top: -45px;
}

#home section.news .box {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 150px;
  padding-bottom: 200px;
  margin: 0 -60px;
}

#home section.news .box .item {
  display: block;
  width: calc(33.333% - 25px);
  margin: 0 50px;
}

#home section.news .box .item .pic {
  width: 100%;
  height: 18vw;
  overflow: hidden;
}

#home section.news .box .item .text {
  margin-top: 20px;
  color: #fff;
  -o-transition: color 0.35s ease-in-out;
  -webkit-transition: color 0.35s ease-in-out;
  -moz-transition: color 0.35s ease-in-out;
  transition: color 0.35s ease-in-out;
}

#home section.news .box .item .text .title {
  font-size: 24px;
}

#home section.news .box .item .text .date {
  font-family: 'roboto', '微軟正黑體', sans-serif;
  font-size: 16px;
  margin-top: 5px;
}

#home section.news .box .item:hover .text {
  color: #C88A5F;
}

#home section.news .btn {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 325px;
  height: 95px;
  line-height: 95px;
  background-color: #EFEFEF;
  text-align: left;
  border: none;
  padding-left: 50px;
  position: absolute;
  right: -1px;
  bottom: 45px;
  color: #000;
}

#home section.news .btn span {
  font-size: 18px;
}

#home section.news .btn i {
  font-size: 13px;
  margin-left: 15px;
}

#home section.news .btn:hover {
  color: #fff;
}

#home section.news::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #222;
  position: absolute;
  top: 0;
  left: -71px;
}

#home section.news .slick-prev,
#home section.news .slick-next {
  width: 30px;
  height: 30px;
  top: 40%;
}

#home section.news .slick-prev::before,
#home section.news .slick-next::before {
  font-size: 16px;
}

#home section.news .slick-prev {
  left: 5px;
}

#home section.news .slick-next {
  right: 5px;
}

#home section.news .slick-next::before {
  margin-left: 27px;
}

#home section.news .slick-next::after {
  width: 25px;
  height: 1px;
}

#home .slogan {
  padding: 150px 0;
  background-image: url("images/home/slogan-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}

#home .slogan .box {
  padding: 0 85px;
}

#home .slogan .text {
  font-size: 38px;
  line-height: 54px;
  color: #000;
  position: relative;
}

#home .slogan .text::before {
  content: '';
  display: inline-block;
  width: 120px;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: -35px;
  left: 0;
}

#home .slogan .text::after {
  content: '\e81a';
  display: inline-block;
  width: 15px;
  height: 15px;
  font-family: "lixin";
  font-size: 15px;
  font-weight: bold;
  color: #000;
  position: absolute;
  bottom: -22px;
  left: 130px;
}

#home section.video {
  background-image: url("images/home/video-bg.png");
  background-size: cover;
  padding: 150px 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  position: relative;
}

#home section.video .container {
  text-align: center;
  padding: 0;
  z-index: 5;
}

#home section.video .container:hover .pic-inner .pic {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

#home section.video .container:hover .pic-inner::before {
  background-color: #fff;
  content: '\e816';
  color: #C88A5F;
}

#home section.video .slider-pic .pic-inner {
  height: 25vw;
  overflow: hidden;
  position: relative;
}

#home section.video .slider-pic .pic-inner .pic {
  display: block;
  width: 100%;
  height: 100%;
  -o-transition: transform 0.35s ease-in-out;
  -webkit-transition: transform 0.35s ease-in-out;
  -moz-transition: transform 0.35s ease-in-out;
  -webkit-transition: -webkit-transform 0.35s ease-in-out;
  transition: -webkit-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}

#home section.video .slider-pic .pic-inner::before {
  content: '\e81a';
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 127px;
  height: 127px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.7);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 48px;
  font-family: "lixin";
  font-weight: 700;
  color: #fff;
  padding-left: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  z-index: 10;
  -o-transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

#home section.video .slider-pic .pic-inner::after {
  content: '';
  display: block;
  width: 100%;
  height: 18%;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.5)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#4d000000', GradientType=0);
  /* IE6-9 */
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}

#home section.video .slider-pic li {
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  -o-transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  margin: 0 -0.94%;
  padding: 0;
  opacity: .6;
  z-index: 0 !important;
}

#home section.video .slider-pic .slick-active {
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
}

#home section.video .slider-pic .slick-center {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  z-index: 50 !important;
}

#home section.video .slider-text {
  width: 60vw;
  margin: 25px auto 0;
}

#home section.video .slider-text .slick-list {
  overflow: visible;
}

#home section.video .slider-text .title {
  font-family: 'Muli', '微軟正黑體', sans-serif;
  font-size: 50px;
  font-weight: bold;
  color: #fff;
}

#home section.video .slider-text p {
  margin-top: 15px;
  font-size: 18px;
  color: #fff;
  -webkit-animation-delay: 0.5s !important;
  animation-delay: 0.5s !important;
}

#home section.video .slider-text .title,
#home section.video .slider-text p {
  -webkit-animation: fadeOutDown 1s both;
  -ms-animation: fadeOutDown 1s both;
  animation: fadeOutDown 1s both;
}

#home section.video .slider-text .slick-active .title,
#home section.video .slider-text .slick-active p {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

#home section.video .slick-prev,
#home section.video .slick-next {
  width: auto;
  height: auto;
  top: 45%;
}

#home section.video .slick-prev::before,
#home section.video .slick-next::before {
  font-size: 37px;
}

#home section.video .slick-next::after {
  display: none;
}

#home section.video .slick-next:hover::after {
  -webkit-transform: translate(15px, -50%);
  -ms-transform: translate(15px, -50%);
  transform: translate(15px, -50%);
}

#home section.video .slick-disabled:hover::after {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.max-bigger-size #home section.about .box::after {
  width: 25vw;
  height: 25vw;
  left: auto;
  right: 40%;
  bottom: -15%;
}

.max-bigger-size #home section.news::before {
  left: 0;
}

.max-bigger-size #home section.news .box {
  margin: 0 -30px;
}

.max-bigger-size #home section.business .box .text-inner .slider-btn li .item {
  padding: 0 10%;
}

.max-bg-size #home section {
  margin-bottom: 75px;
}

.max-bg-size #home section.about .box .text-inner {
  padding: 35px 70px 0 80px;
}

.max-bg-size #home section.about .box .text-inner p {
  font-size: 28px;
  line-height: 46px;
  margin-bottom: 28px;
}

.max-bg-size #home section.about .box .text-inner em {
  font-size: 22px;
}

.max-bg-size #home section.about .box .pic-inner {
  height: 35vw;
}

.max-bg-size #home section.business .box {
  padding-top: 152px;
}

.max-bg-size #home section.business .box .slider-pic::before {
  width: 50vw;
  height: 26vw;
  top: 25vw;
}

.max-bg-size #home section.business .box .text-inner .slider-btn li {
  width: 18vw !important;
  height: 16.1vw;
}

.max-bg-size #home section.business .box .text-inner .slider-btn li .item {
  padding-left: 10%;
}

.max-bg-size #home section.business .box .text-inner .slider-btn li .item .title {
  font-size: 26px;
  line-height: 46px;
}

.max-bg-size #home section.business .box .text-inner .slider-btn li:nth-child(3) {
  height: 16.15vw;
}

.max-bg-size #home section.business .box .text-inner .slider-text {
  padding-right: 60px;
}

.max-bg-size #home section.business .box .btn {
  display: none;
}

.max-bg-size #home section.news {
  background-color: #222;
}

.max-bg-size #home section.news::before {
  display: none;
}

.max-bg-size #home section.news .box {
  margin: 0;
}

.max-bg-size #home section.news .box .item {
  margin: 0 3%;
}

.max-bg-size #home section.news .box .item .text .title {
  font-size: 22px;
}

.max-bg-size #home section.news .btn {
  height: 85px;
  line-height: 85px;
}

.max-bg-size #home .slogan {
  padding: 10% 0 12%;
}

.max-bg-size #home .slogan .text {
  font-size: 36px;
  line-height: 50px;
}

.max-bg-size #home section.video {
  padding: 10% 0;
}

.max-bg-size #home section.video .slider-text {
  width: 80vw;
  padding: 0 80px;
}

.max-lg-plus-size #home section {
  margin-bottom: 60px;
}

.max-lg-plus-size #home section.about .box .text-inner {
  padding: 35px 4% 0 8%;
}

.max-lg-plus-size #home section.business .text-inner .slider-text .text>a {
  margin-bottom: 20px;
}

/* 
.max-lg-plus-size #home section.business .text-inner .slider-text .text > p {
  font-size: 17px;
  line-height: 29px; } */

.max-lg-plus-size #home section.news {
  margin-top: 160px;
}

.max-lg-plus-size #home section.news .box {
  margin: 0 -20px;
  padding-top: 120px;
  padding-bottom: 160px;
}

.max-lg-plus-size #home section.news .btn {
  height: 75px;
  line-height: 75px;
}

.max-lg-plus-size #home .slogan .text {
  font-size: 32px;
  line-height: 48px;
}

.max-lg-size #home section .container .v-title {
  left: 40px;
}

.max-lg-size #home section.about .box {
  padding-top: 100px;
}

.max-lg-size #home section.about .box .text-inner {
  width: 60%;
  padding: 0 30px 0 60px;
}

.max-lg-size #home section.about .box .text-inner>p {
  font-size: 24px;
  line-height: 38px;
  margin-bottom: 22px;
}

.max-lg-size #home section.about .box .text-inner em {
  font-size: 20px;
  line-height: 26px;
}

.max-lg-size #home section.business .box {
  padding-top: 110px;
}

.max-lg-size #home section.business .box .slider-pic {
  width: 55%;
}

.max-lg-size #home section.business .box .slider-pic::before {
  bottom: 3%;
  left: -10vw;
}

.max-lg-size #home section.business .box .text-inner {
  width: 45%;
  padding-left: 0;
}

.max-lg-size #home section.business .box .text-inner .slider-text {
  padding-right: 0;
}

.max-lg-size #home section.news {
  margin-top: 120px;
}

.max-lg-size #home section.news .box {
  margin: 0;
  padding: 10% 30px 14% 30px;
}

.max-lg-size #home section.news .box .item {
  margin: 0 25px;
}

.max-lg-size #home section.news .box .item .pic {
  height: 20vw;
}

.max-lg-size #home .slogan {
  padding: 8% 0 13%;
}

.max-lg-size #home .slogan .text br {
  display: none;
}

.max-lg-size #home .slogan .text::before {
  bottom: -32px;
}

.max-md-size #home section.about .box {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 53px;
}

.max-md-size #home section.about .box::after {
  bottom: auto;
  top: 20%;
  right: 90px;
}

.max-md-size #home section.about .box .text-inner {
  width: 100%;
  padding: 0 0 0 60px;
}

.max-md-size #home section.about .box .pic-inner {
  width: 90%;
  height: 45vw;
  margin-left: 8%;
  margin-top: 25px;
}

.max-md-size #home section.about .box .pic-inner::before {
  top: -60px;
  right: -78px;
}

.max-md-size #home section.business .box {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 65px;
}

.max-md-size #home section.business .box .slider-pic {
  width: 90%;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin-top: 25px;
  margin-left: 8%;
  padding-right: 0;
}

.max-md-size #home section.business .box .slider-pic .pic-inner {
  height: 65vw;
}

.max-md-size #home section.business .box .slider-pic::before {
  left: -15vw;
  bottom: -42px;
}

.max-md-size #home section.business .box .text-inner {
  width: 100%;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  padding-left: 60px;
}

.max-md-size #home section.business .box .text-inner .slider-btn {
  padding-right: 10px;
}

.max-md-size #home section.business .box .text-inner .slider-btn li {
  width: 33% !important;
  height: 20vw;
}

.max-md-size #home section.business .box .text-inner .slider-btn li .item .title {
  font-size: 21px;
  line-height: 40px;
}

.max-md-size #home section.business .box .text-inner .slider-btn li:first-child {
  margin-right: 0;
}

.max-md-size #home section.business .box .text-inner .slider-btn li:nth-child(2) {
  border-top: 1px solid #C9C9C9;
}

.max-md-size #home section.business .box .text-inner .slider-btn li:nth-child(3) {
  border-left: 1px solid transparent;
  height: 20vw;
  margin-top: 0;
}

.max-md-size #home section.business .box .text-inner .slider-btn li.slick-current {
  border-color: transparent;
}

.max-md-size #home section.business .box .text-inner .slider-btn li.slick-current .item {
  color: #000;
  border: 1px solid #000;
}

.max-md-size #home section.business .box .text-inner .slider-btn li.slick-current::before,
.max-md-size #home section.business .box .text-inner .slider-btn li.slick-current::after {
  border-color: #000;
}

.max-md-size #home section.news {
  padding-bottom: 15px;
}

.max-md-size #home section.news .box {
  padding: 10% 35px 16%;
}

.max-md-size #home section.news .box .item .text {
  margin-top: 15px;
}

.max-md-size #home section.news .box .item .text .title {
  font-size: 20px;
}

.max-md-size #home section.news .btn {
  height: 60px;
  line-height: 60px;
  bottom: 30px;
}

.max-md-size #home .slogan .text {
  font-size: 30px;
  line-height: 44px;
}

.max-md-size #home .slogan .text::before {
  bottom: -30px;
}

.max-md-size #home section.video .container .pic {
  height: 35vw;
}

.max-md-size #home section.video .container .title {
  font-size: 40px;
}

.max-md-size #home section.video .container p {
  font-size: 16px;
  line-height: 22px;
}

.max-md-size #home section.video .slick-next {
  right: 33px;
}

.max-sm-size #home section {
  margin: 40px 0;
}

.max-sm-size #home section .container .v-title {
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
  position: relative;
  top: auto;
  left: auto;
}

.max-sm-size #home section .container .v-title::after {
  display: inline-block;
  width: 50px;
  height: 1px;
  position: static;
  margin-left: 20px;
  margin-bottom: 6px;
}

.max-sm-size #home section .container .box {
  padding-top: 20px;
}

.max-sm-size #home section.about .container {
  padding: 0;
}

.max-sm-size #home section.about .container .v-title {
  margin-left: 35px;
}

.max-sm-size #home section.about .box .text-inner {
  padding: 0 35px;
}

.max-sm-size #home section.about .box .text-inner>p {
  font-size: 20px;
  line-height: 28px;
}

.max-sm-size #home section.about .box .text-inner>em {
  font-size: 18px;
  line-height: 23px;
}

.max-sm-size #home section.about .box .text-inner::after {
  right: 35px;
  bottom: -16px;
}

.max-sm-size #home section.about .box .pic-inner {
  width: 100%;
  height: 48vw;
  margin-left: 0;
}

.max-sm-size #home section.about .box .pic-inner::before {
  display: none;
}

.max-sm-size #home section.business .container {
  padding: 0;
}

.max-sm-size #home section.business .container .v-title {
  margin-left: 35px;
}

.max-sm-size #home section.business .container .box .slider-pic {
  width: 100%;
  margin: 25px 0 0;
  padding: 0 35px;
}

.max-sm-size #home section.business .container .box .slider-pic::before {
  bottom: -75px;
}

.max-sm-size #home section.business .container .box .text-inner {
  padding: 0 35px;
}

.max-sm-size #home section.news {
  padding: 50px 0;
}

.max-sm-size #home section.news .v-title {
  display: none;
}

.max-sm-size #home section.news .box {
  margin: 0 -15px;
  padding: 0 0 25px;
}

.max-sm-size #home section.news .box .item {
  margin: 0 15px;
}

.max-sm-size #home section.news .box .item .pic {
  height: 28vw;
}

.max-sm-size #home section.news .btn {
  width: calc(100% - 70px);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 40px auto 0;
  padding-left: 0;
  position: static;
}

.max-sm-size #home .slogan .box {
  padding: 0 40px;
}

.max-sm-size #home section.video .container {
  padding: 0 35px 30px;
}

.max-sm-size #home section.video .container .slick-dots {
  bottom: -38px;
}

.max-sm-size #home section.video .container .slider-pic .pic-inner {
  height: auto;
}

.max-sm-size #home section.video .container .slider-pic .pic-inner::before {
  width: 100px;
  height: 100px;
  border-width: 3px;
}

.max-sm-size #home section.video .container .slider-pic .pic {
  width: 100%;
  height: 38vw;
}

.max-sm-size #home section.video .container .slider-text {
  width: 100%;
  padding: 0;
}

.max-xs-size #home section {
  margin: 30px 0;
}

.max-xs-size #home section.about .container .v-title {
  margin-left: 30px;
}

.max-xs-size #home section.about .box .text-inner {
  padding: 0 30px;
}

.max-xs-size #home section.about .box .text-inner::after {
  display: none;
}

.max-xs-size #home section.about .box .pic-inner {
  height: 295px;
}

.max-xs-size #home section.about .btn {
  width: 100%;
}

.max-xs-size #home section.business {
  margin-bottom: 0;
}

.max-xs-size #home section.business .container .v-title {
  display: none;
}

.max-xs-size #home section.business .container .box {
  padding-top: 0;
}

.max-xs-size #home section.business .container .box .text-inner {
  padding: 0 30px;
}

.max-xs-size #home section.business .container .box .text-inner .slider-btn li {
  height: auto !important;
  border: none;
}

.max-xs-size #home section.business .container .box .text-inner .slider-btn li::before,
.max-xs-size #home section.business .container .box .text-inner .slider-btn li::after {
  display: none;
}

.max-xs-size #home section.business .container .box .text-inner .slider-btn li .item {
  border: none !important;
  height: auto;
  padding: 0;
}

.max-xs-size #home section.business .container .box .text-inner .slider-btn li .item .title {
  font-size: 20px;
  line-height: normal;
}

.max-xs-size #home section.business .container .box .text-inner .slider-btn li .item .sub {
  display: none;
}

.max-xs-size #home section.business .container .box .text-inner .slider-text a {
  display: none;
}

.max-xs-size #home section.business .container .box .slider-pic {
  width: 100%;
  padding: 0 30px;
}

.max-xs-size #home section.business .container .box .slider-pic::before {
  display: none;
}

.max-xs-size #home section.business .container .box .slider-pic .pic-inner {
  height: 295px;
}

.max-xs-size #home section.business .container .box .slider-pic .pic-inner .pic {
  position: relative;
}

.max-xs-size #home section.business .container .box .slider-pic .pic-inner .pic>img {
  max-width: none;
  height: 115%;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.max-xs-size #home section.business .container .box .slick-dots {
  left: 0;
  bottom: 36px;
}

.max-xs-size #home section.business .container .box .btn {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  display: block;
  width: calc(100% - 60px);
  margin: 25px auto;
}

.max-xs-size #home section.news {
  margin-top: 0;
  padding: 40px 0;
}

.max-xs-size #home section.news .box .item .pic {
  height: 185px;
}

.max-xs-size #home section.news .btn {
  width: calc(100% - 60px);
}

.max-xs-size #home .slogan {
  background: url("images/logo-draw.png");
  background-repeat: no-repeat;
  background-size: 70% auto;
  background-position: 110% center;
  padding: 22% 0 32%;
}

.max-xs-size #home .slogan .container {
  padding: 0 10%;
}

.max-xs-size #home .slogan .box {
  padding: 0;
}

.max-xs-size #home .slogan .box .text {
  font-size: 28px;
  line-height: 35px;
}

.max-xs-size #home .slogan .box .text::before {
  bottom: -40px;
}

.max-xs-size #home .slogan .box .text::after {
  bottom: -37px;
}

.max-xs-size #home section.video .container .title {
  font-size: 20px;
  margin-top: 15px;
}

.max-xs-size #home section.video .container p {
  margin-top: 5px;
}

.max-xs-size #home section.video .container .slider-pic .pic-inner {
  width: 100%;
  height: auto;
}

.max-xs-size #home section.video .container .slider-pic .pic-inner::before {
  width: 100px;
  height: 100px;
  border-width: 3px;
}

.max-xs-size #home section.video .container .slider-pic .pic {
  width: 100%;
  height: 50vw;
}

.max-xs-size #home section.video .container .slider-text {
  margin-top: 0;
}

.max-ss-size #home section.about .container,
.max-ss-size #home section.business .container {
  padding: 0;
}

.max-ss-size #home section.about .container .v-title,
.max-ss-size #home section.business .container .v-title {
  margin-left: 30px;
}

.max-mini-size #home section.about .container .v-title {
  margin-left: 20px;
}

.max-mini-size #home section.about .box .text-inner {
  padding: 0 20px;
}

.max-mini-size #home section.business .container .box .text-inner {
  padding: 0 20px;
}

.max-mini-size #home section.business .container .box .slider-pic {
  padding: 0 20px;
}

.max-mini-size #home section.business .container .box .slider-pic .pic-inner {
  height: 220px;
}

.max-mini-size #home section.news .btn {
  width: calc(100% - 40px);
}

.max-mini-size #home section.video .container {
  padding: 0 20px;
}

/* ==========================================================================
    about
 @mixin =========================================================================*/
#about section {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 80px;
}

#about section .v-headline {
  font-size: 40px;
  font-weight: bold;
  color: #000;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  margin-top: -80px;
  margin-left: 50px;
  margin-right: 130px;
}

#about .navbar {
  max-width: none;
  width: 100%;
  position: relative;
}

#about .navbar .text-inner {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
}

#about .navbar .text-inner .title {
  font-size: 40px;
  line-height: normal;
  color: #fff;
  margin-bottom: 18%;
}

#about .navbar .text-inner .btn {
  min-width: auto;
  width: 180px;
  height: 60px;
  line-height: 60px;
  border-color: #fff;
  color: #fff;
}

#about .navbar .pic-inner {
  width: 100%;
  height: 26.8vw;
  min-height: 240px;
  position: relative;
}

#about .navbar .pic-inner .pic {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -o-transition: transform 0.35s ease-in-out;
  -webkit-transition: transform 0.35s ease-in-out;
  -moz-transition: transform 0.35s ease-in-out;
  -webkit-transition: -webkit-transform 0.35s ease-in-out;
  transition: -webkit-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}

#about .navbar .pic-inner::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
}

#about .navbar .slick-prev::before,
#about .navbar .slick-next::before {
  font-size: 35px;
}

#about .navbar .slick-next {
  right: 50px;
}

#about .navbar .slick-next::after {
  width: 60px;
  height: 2px;
  right: 40px;
}

#about .navbar .slick-next:hover::after {
  right: 30px;
}

#about .navbar .slick-prev {
  left: 50px;
}

#about .navbar:hover .pic-inner .pic {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

#about section.lixin-group {
  position: relative;
}

#about section.lixin-group::before {
  content: '';
  display: block;
  width: 1px;
  height: 50%;
  background-color: #000;
  position: absolute;
  top: -60px;
  left: 50px;
}

#about section.lixin-group .container {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 15%;
}

#about section.lixin-group .editor {
  max-width: 920px;
  line-height: 26px;
}

#about section.lixin-group .editor img {
  margin-top: 5%;
  margin-bottom: 5%;
}

#about section.lixin-group .editor img:first-child {
  margin-top: 0;
}

#about section.lixin-group .editor h4 {
  font-size: 20px;
  line-height: 35px;
  color: #464646;
}

#about section.lixin-group .editor p {
  font-size: 18px;
  color: #777;
}

#about section.lixin-group .sign {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  margin-left: 232px;
  margin-top: 60px;
}

#about section.lixin-group .sign span {
  display: inline-block;
  font-size: 20px;
  color: #000;
  margin-bottom: 5px;
}

#about section.lixin-group .sign img {
  width: 160px;
  height: auto;
  margin-left: 25px;
}

#about section.corporate .headline-box {
  max-width: 1300px;
  margin: 0 auto;
}

#about section.corporate .headline-box .pic-inner {
  height: 28vw;
  position: relative;
}

#about section.corporate .headline-box .pic-inner::after {
  content: '';
  display: block;
  width: 1px;
  height: 150px;
  background-color: #D0D0D0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -75px;
  margin: 0 auto;
}

#about section.corporate .headline-box .text-inner {
  text-align: center;
  margin-top: 115px;
}

#about section.corporate .headline-box .text-inner .title {
  display: block;
  font-size: 40px;
  color: #000;
  margin-bottom: 3%;
}

#about section.corporate .headline-box .text-inner p {
  font-size: 18px;
  color: #777;
}

#about section.corporate .box {
  margin-top: 9%;
  margin-bottom: 8%;
}

#about section.corporate .box .item {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#about section.corporate .box .item .pic-inner {
  width: 24vw;
  margin-right: 5%;
  position: relative;
}

#about section.corporate .box .item .pic-inner .pic {
  width: 100%;
  height: 30vw;
}

#about section.corporate .box .item .pic-inner .en {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #000;
  position: absolute;
  bottom: 35%;
}

#about section.corporate .box .item .text-inner {
  width: 45%;
  padding-top: 35px;
  border-top: 1px solid #000;
  z-index: 5;
}

#about section.corporate .box .item .text-inner h4 {
  font-size: 30px;
  line-height: 40px;
  color: #000;
  margin-bottom: 20px;
}

#about section.corporate .box .item .text-inner p {
  font-size: 17px;
  line-height: 24px;
  color: #777;
}

#about section.corporate .box .item:first-child .text-inner,
#about section.corporate .box .item:nth-child(odd) .text-inner {
  margin-top: 5%;
  margin-left: -10%;
  padding-left: 10%;
  text-align: right;
}

#about section.corporate .box .item:first-child .pic-inner,
#about section.corporate .box .item:nth-child(odd) .pic-inner {
  margin-left: -5%;
}

#about section.corporate .box .item:nth-child(even) {
  margin-top: -8%;
  margin-bottom: 8%;
}

#about section.corporate .box .item:nth-child(even) .text-inner {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin-left: 10%;
  padding-right: 10%;
  margin-bottom: 10%;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

#about section.corporate .box .item:nth-child(even) .pic-inner {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin-left: -5%;
}

#about section.corporate .box .item:first-child .en {
  left: -8%;
}

#about section.corporate .box .item:nth-child(even) .en {
  right: -58%;
}

#about section.corporate .box .item:nth-child(3) {
  margin-top: 8%;
}

#about section.corporate .box .item:nth-child(odd) .en {
  left: -58%;
}

#about section.corporate .box .item:last-child {
  margin-top: -6%;
}

#about section.corporate .box .item:last-child .en {
  right: -23%;
}

#about .layout-lineL {
  padding-bottom: 30px;
  margin-bottom: 90px;
}

#about .layout-lineL .container::before {
  height: calc(100% + 170px);
  top: -140px;
}

#about .layout-lineL-pic .headline-box .container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#about .layout-lineL-pic .headline-box .title {
  color: #fff;
  font-weight: bold;
}

#about .layout-lineL-pic .box {
  padding-bottom: 16vw;
  background-image: url("images/about/staff-pic2.jpg");
  background-repeat: no-repeat;
  background-position: 85% 80px;
  background-size: auto 100%;
}

#about .layout-lineL-pic .box .container {
  padding-top: 10vw;
  padding-bottom: 30px;
}

#about .layout-lineL-pic .box .text-inner .title {
  color: #000;
  font-weight: bold;
  margin-bottom: 38px;
}

#about .layout-lineL-pic .box .text-inner p {
  font-size: 18px;
  line-height: 26px;
  color: #808080;
  margin-bottom: 60px;
}

#about .layout-lineL-pic .box .text-inner .btn {
  height: 60px;
  line-height: 60px;
  border-color: #000;
  color: #000;
  -o-transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

#about .layout-lineL-pic .box .text-inner .btn:hover {
  border-color: #C88A5F;
  color: #fff;
}

.max-bigger-size #about section {
  max-width: none;
}

.max-bigger-size #about .lixin-group {
  margin-left: 123px;
}

.max-bigger-size #about .corporate .box .item:first-child {
  margin-top: 0;
}

.max-bigger-size #about .corporate .box .item:first-child .en {
  left: -8%;
}

.max-bigger-size #about .corporate .box .item:nth-child(even) {
  margin-top: -6%;
}

.max-bigger-size #about .corporate .box .item:nth-child(even) .en {
  right: -40%;
}

.max-bigger-size #about .corporate .box .item:nth-child(odd) {
  margin-top: 5%;
}

.max-bigger-size #about .corporate .box .item:nth-child(odd) .en {
  left: -40%;
}

.max-bigger-size #about .corporate .box .item:last-child {
  margin-top: -6%;
}

.max-bigger-size #about .corporate .box .item:last-child .en {
  right: -33%;
}

.max-bigger-size #about .corporate .box .item .text-inner {
  margin-top: 10.5%;
  margin-bottom: auto;
}

.max-bigger-size #about .layout-lineL {
  margin: 0 123px;
}

.max-bg-size #about section .v-headline {
  font-size: 38px;
  margin-right: 6%;
}

.max-bg-size #about .lixin-group .editor {
  max-width: none;
  width: 72%;
}

.max-bg-size #about .lixin-group .sign {
  margin-left: 21.2%;
}

.max-bg-size #about .corporate .box .item .pic-inner {
  width: 28vw;
}

.max-bg-size #about .corporate .box .item .pic-inner .pic {
  height: 37vw;
}

.max-bg-size #about .corporate .box .item:first-child {
  margin-top: 0;
}

.max-bg-size #about .corporate .box .item:nth-child(even) {
  margin-top: -4%;
}

.max-bg-size #about .corporate .box .item:nth-child(odd) {
  margin-top: 5%;
}

.max-bg-size #about .corporate .box .item:last-child {
  margin-top: -4%;
}

.max-lg-size #about section .v-headline {
  margin-left: 9%;
  margin-right: 7.5%;
}

.max-lg-size #about .lixin-group {
  margin-left: 0;
}

.max-lg-size #about .lixin-group::before {
  left: 100px;
}

.max-lg-size #about .corporate .box .item .pic-inner {
  width: 32vw;
}

.max-lg-size #about .corporate .box .item .pic-inner .pic {
  height: 42vw;
}

.max-lg-size #about .corporate .box .item:first-child {
  margin-top: 0;
}

.max-lg-size #about .corporate .box .item:nth-child(even) {
  margin-top: 0;
  margin-bottom: 0;
}

.max-lg-size #about .corporate .box .item:nth-child(even) .en {
  right: -30%;
}

.max-lg-size #about .corporate .box .item:nth-child(odd) {
  margin-top: 0;
}

.max-lg-size #about .corporate .box .item:nth-child(odd) .en {
  left: -30%;
}

.max-lg-size #about .corporate .box .item:last-child {
  margin-top: 0;
}

.max-lg-size #about .layout-lineL {
  margin: 0 50px;
}

.max-md-size #about section .v-headline {
  margin-top: 0;
  margin-left: 5%;
  margin-right: 6%;
}

.max-md-size #about .navbar .text-inner .title {
  font-size: 38px;
  margin-bottom: 12%;
}

.max-md-size #about .navbar .text-inner .btn {
  height: 48px;
  line-height: 48px;
}

.max-md-size #about .lixin-group::before {
  top: 0;
  left: 5%;
}

.max-md-size #about .lixin-group .editor {
  width: 80%;
}

.max-md-size #about .lixin-group .sign {
  margin-left: 17%;
}

.max-md-size #about .corporate .headline-box .text-inner {
  margin-top: 85px;
}

.max-md-size #about .corporate .headline-box .text-inner .title {
  font-size: 36px;
}

.max-md-size #about .corporate .headline-box .pic-inner::after {
  height: 100px;
  bottom: -50px;
}

.max-md-size #about .corporate .box .item .text-inner h4 {
  font-size: 26px;
}

.max-md-size #about .corporate .box .item .text-inner p {
  font-size: 16px;
}

.max-md-size #about .corporate .box .item:first-child .pic-inner,
.max-md-size #about .corporate .box .item:nth-child(odd) .pic-inner {
  margin-left: 0;
}

.max-md-size #about .corporate .box .item:first-child .text-inner,
.max-md-size #about .corporate .box .item:nth-child(odd) .text-inner {
  margin-left: 0;
  padding-left: 0;
}

.max-md-size #about .corporate .box .item:nth-child(even) .text-inner {
  margin-left: 5%;
}

.max-md-size #about .corporate .box .item:first-child .en,
.max-md-size #about .corporate .box .item:nth-child(even) .en {
  right: -15%;
}

.max-md-size #about .corporate .box .item:nth-child(odd) .en {
  left: -15%;
}

.max-md-size #about .layout-lineL {
  margin: 0;
}

.max-md-size #about .layout-lineL .container::before {
  top: -80px;
  height: calc(100% + 110px);
  left: 5%;
}

.max-md-size #about .layout-lineL-pic .box {
  background-position: 95% 194px;
  background-size: auto 70%;
}

.max-sm-size #about section {
  padding-top: 40px;
}

.max-sm-size #about section .v-headline {
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
  margin: 0 0 30px;
  font-size: 32px;
}

.max-sm-size #about .navbar .text-inner .title {
  font-size: 32px;
}

.max-sm-size #about .navbar .text-inner .btn {
  width: 144px;
}

.max-sm-size #about .lixin-group::before {
  opacity: .5;
}

.max-sm-size #about .lixin-group .container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 14%;
}

.max-sm-size #about .lixin-group .editor {
  width: 100%;
}

.max-sm-size #about .lixin-group .sign {
  margin-left: 0;
}

.max-sm-size #about .corporate .headline-box .text-inner .title {
  font-size: 30px;
  margin-bottom: 4%;
  line-height: normal;
}

.max-sm-size #about .corporate .headline-box .text-inner p {
  font-size: 16px;
}

.max-sm-size #about .corporate .headline-box .text-inner p br {
  display: none;
}

.max-sm-size #about .corporate .headline-box .pic-inner {
  height: 50vw;
}

.max-sm-size #about .corporate .box {
  margin-top: 10%;
  margin-bottom: 15%;
}

.max-sm-size #about .corporate .box .item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 40px !important;
}

.max-sm-size #about .corporate .box .item .pic-inner,
.max-sm-size #about .corporate .box .item .text-inner {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
}

.max-sm-size #about .corporate .box .item .pic-inner {
  -webkit-box-ordinal-group: 2 !important;
  -ms-flex-order: 1 !important;
  order: 1 !important;
}

.max-sm-size #about .corporate .box .item .pic-inner .pic {
  height: 50vw;
}

.max-sm-size #about .corporate .box .item .text-inner {
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
  text-align: left !important;
  padding: 10px 0 !important;
}

.max-sm-size #about .corporate .box .item .text-inner h4 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.max-sm-size #about .corporate .box .item:first-child .en,
.max-sm-size #about .corporate .box .item:nth-child(even) .en {
  right: -5%;
}

.max-sm-size #about .corporate .box .item:nth-child(odd) .en {
  left: -5%;
}

.max-sm-size #about .layout-lineL .container::before {
  top: -40px;
  height: calc(100% + 70px);
  left: 5%;
}

.max-xs-size #about .navbar .slick-next::before,
.max-xs-size #about .navbar .slick-prev::before {
  font-size: 30px;
}

.max-xs-size #about .navbar .slick-next {
  right: 25px;
}

.max-xs-size #about .navbar .slick-prev {
  left: 25px;
}

.max-xs-size #about .corporate .headline-box .text-inner {
  margin-top: 60px;
}

.max-xs-size #about .corporate .headline-box .text-inner .title {
  font-size: 28px;
}

.max-xs-size #about .corporate .headline-box .pic-inner::after {
  height: 80px;
  bottom: -40px;
}

.max-xs-size #about .corporate .box .item .text-inner h4 {
  margin-bottom: 5px;
}

.max-xs-size #about .corporate .box .item:first-child .en,
.max-xs-size #about .corporate .box .item:nth-child(even) .en {
  right: -2%;
}

.max-xs-size #about .corporate .box .item:nth-child(odd) .en {
  left: -2%;
}

.max-xs-size #about .layout-lineL-pic .box {
  background-position: 100% 230px;
  background-size: auto 100%;
}

.max-mini-size #about .corporate .box .item .text-inner h4 {
  font-size: 24px;
}

/* ==========================================================================
    news
 @mixin =========================================================================*/
#news .in-banner .box {
  height: 90%;
}

#news .in-banner .in-nav {
  bottom: 10%;
}

#news .in-banner::before {
  content: '';
  display: block;
  width: calc(100% + 50px);
  height: 15vw;
  background: url("images/banner-dw.jpg");
  background-size: cover;
  position: absolute;
  left: -50px;
  bottom: 48px;
}

#news .news-box {
  max-width: 1400px;
  margin: 20px auto 0;
}

#news .news-box .box .pic-inner {
  overflow: hidden;
}

#news .news-box .box .pic-inner .pic {
  width: 100%;
  height: 100%;
  -o-transition: transform 0.35s ease-in-out;
  -webkit-transition: transform 0.35s ease-in-out;
  -moz-transition: transform 0.35s ease-in-out;
  -webkit-transition: -webkit-transform 0.35s ease-in-out;
  transition: -webkit-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}

#news .news-box .box .text-inner {
  margin-top: 30px;
}

#news .news-box .box .text-inner .title {
  font-size: 30px;
  font-weight: bold;
  color: #000;
  margin-bottom: 2px;
  -o-transition: color 0.35s ease-in-out;
  -webkit-transition: color 0.35s ease-in-out;
  -moz-transition: color 0.35s ease-in-out;
  transition: color 0.35s ease-in-out;
}

#news .news-box .box .text-inner .date {
  font-family: 'roboto', '微軟正黑體', sans-serif;
  font-size: 16px;
  color: #999;
}

#news .news-box .box:hover .pic-inner .pic {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

#news .news-box .box:hover .text-inner .title {
  color: #C88A5F;
}

#news .news-box .video-box {
  margin-bottom: 8%;
  position: relative;
}

#news .news-box .video-box .box .pic-inner {
  width: 100%;
  height: 24vw;
  min-height: 200px;
  position: relative;
  z-index: 5;
}

#news .news-box .video-box .box .pic-inner .pic::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .4;
  position: absolute;
  left: 0;
}

#news .news-box .video-box .box .pic-inner::before {
  content: '\e81a';
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 127px;
  height: 127px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.7);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 48px;
  font-family: "lixin";
  font-weight: 700;
  color: #fff;
  padding-left: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  z-index: 10;
}

#news .news-box .video-box .box .pic-inner::after {
  content: '';
  display: block;
  width: 100%;
  height: 30%;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.5)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.5) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#4d000000', GradientType=0);
  /* IE6-9 */
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: .8;
  z-index: 10;
}

#news .news-box .video-box .box:hover .pic-inner::before {
  background-color: #fff;
  color: #C88A5F;
  content: '\e816';
}

#news .news-box .video-box::before {
  content: '';
  display: block;
  width: 200%;
  height: 1px;
  background-color: #ccc;
  position: absolute;
  top: calc(50% - 46px);
  left: -50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#news .news-box .news-inner {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#news .news-box .news-inner .box {
  width: 50%;
  margin-bottom: 6.5%;
}

#news .news-box .news-inner .box .pic-inner {
  width: 100%;
  height: 16.5vw;
  min-height: 200px;
  position: relative;
}

#news .news-box .news-inner .box .text-inner {
  margin-top: 3.5%;
  padding-right: 12%;
}

#news .news-box .news-inner .box .text-inner .title {
  font-size: 24px;
  line-height: 30px;
}

#news .news-box .news-inner .box:nth-child(odd) {
  padding-right: 3%;
}

#news .news-box .news-inner .box:nth-child(even) {
  padding-left: 3%;
}

#news .news-box .news-inner .box.video .pic-inner::before {
  content: '\e81a';
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 127px;
  height: 127px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.7);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 48px;
  font-family: "lixin";
  font-weight: 700;
  color: #fff;
  padding-left: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  z-index: 10;
  width: 100px;
  height: 100px;
  font-size: 40px;
}

#news .news-box .news-inner .box.video:hover .pic-inner::before {
  background-color: #fff;
  color: #C88A5F;
  content: '\e816';
}

#news .pagination {
  margin-bottom: 100px;
}

.max-bg-size #news .news-box .video-box .box .text-inner .title {
  font-size: 27px;
}

.max-md-size #news .in-banner::before {
  display: none;
}

.max-md-size #news .in-banner .box {
  height: 100%;
}

.max-md-size #news .news-box {
  margin-top: 80px;
}

.max-sm-size #news .news-box {
  margin-top: 40px;
}

.max-sm-size #news .news-box .video-box {
  margin-bottom: 15%;
}

.max-sm-size #news .news-box .video-box::before {
  top: calc(50% - 65px);
}

.max-sm-size #news .news-box .video-box .pic-inner::before {
  content: '\e81a';
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 127px;
  height: 127px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.7);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 48px;
  font-family: "lixin";
  font-weight: 700;
  color: #fff;
  padding-left: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  z-index: 10;
  width: 100px;
  height: 100px;
  font-size: 40px;
}

.max-sm-size #news .news-box .news-inner .box {
  width: 100%;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.max-sm-size #news .news-box .news-inner .box .text-inner {
  padding-right: 0;
}

.max-xs-size #news .news-box .video-box .box .text-inner .title {
  font-size: 26px;
}

.max-xs-size #news .news-box .video-box::before {
  top: calc(50% - 80px);
}

.max-xs-size #news .news-box .news-inner {
  margin-bottom: 10%;
}

.max-xs-size #news .news-box .news-inner .box .text-inner .title {
  font-size: 22px;
}

.max-xs-size #news .news-box .news-inner .box .text-inner .date {
  font-size: 15px;
}

#new .in-banner {
  height: 24vw;
  min-height: 300px;
  padding-bottom: 42px;
}

#new .in-banner .box .text {
  -webkit-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  transform: translateY(-20%);
}

#new .new-box {
  max-width: 1360px;
  margin: 24px auto 0;
}

#new .new-box .top-inner {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

#new .new-box .top-inner .sort {
  font-size: 18px;
  color: #000;
}

#new .new-box .top-inner .sort::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 13px;
  background-color: #ccc;
  margin: 0 15px;
}

#new .new-box .top-inner .date {
  font-family: 'roboto', '微軟正黑體', sans-serif;
  font-size: 16px;
  color: #C88A5F;
}

#new .new-box .top-inner .share-box {
  margin-left: 20px;
}

#new .new-box .top-inner .share-box button {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

#new .new-box .top-inner .share-box button i {
  color: #C88A5F;
  z-index: 10;
}

#new .new-box .top-inner .share-box button::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #C88A5F;
  border: 1px solid #C88A5F;
  position: absolute;
  bottom: -100%;
  left: 0;
  -o-transition: bottom 0.35s ease-in-out;
  -webkit-transition: bottom 0.35s ease-in-out;
  -moz-transition: bottom 0.35s ease-in-out;
  transition: bottom 0.35s ease-in-out;
  z-index: -1;
}

#new .new-box .top-inner .share-box button:hover::before {
  bottom: 0;
}

#new .new-box .top-inner .share-box button:hover i {
  color: #fff;
}

#new .new-box .new-inner h3 {
  font-size: 32px;
  font-weight: bold;
  text-align: justify;
  color: #000;
  margin-bottom: 35px;
}

#new .new-box .new-inner p {
  font-size: 18px;
  line-height: 24px;
  text-align: justify;
  color: #777;
  margin-bottom: 70px;
}

#new .new-box .new-inner img {
  margin-bottom: 70px;
}

#new .control-box {
  width: 100%;
  border-top: 1px solid #ccc;
  margin-top: 70px;
}

#new .control-box .container {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1360px;
  height: 94px;
  margin: 0 auto;
}

#new .control-box .container .page-btn {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  color: #000;
  -o-transition: color 0.35s ease-in-out;
  -webkit-transition: color 0.35s ease-in-out;
  -moz-transition: color 0.35s ease-in-out;
  transition: color 0.35s ease-in-out;
}

#new .control-box .container .page-btn::before,
#new .control-box .container .page-btn::after {
  content: '';
  display: inline-block;
  font-family: "lixin";
  font-size: 14px;
  padding-top: 2px;
  margin-right: 8px;
  -o-transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

#new .control-box .container .page-btn:hover {
  color: #C88A5F;
}

#new .control-box .container .page-btn:hover::before {
  color: #C88A5F;
}

#new .control-box .container .page-btn.prev-new::before {
  content: '\e819';
  font-weight: bold;
}

#new .control-box .container .page-btn.prev-new:hover::before {
  -webkit-transform: translateX(-5px);
  -ms-transform: translateX(-5px);
  transform: translateX(-5px);
}

#new .control-box .container .page-btn.news-list::before {
  content: '\e80a';
  padding-top: 3px;
}

#new .control-box .container .page-btn.next-new::before {
  content: '\e81a';
  font-weight: bold;
  float: right;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  margin-right: 0;
}

#new .control-box .container .page-btn.next-new::after {
  width: 50px;
  height: 1px;
  background-color: #000;
  float: right;
  padding-top: 0;
  margin-left: 8px;
  margin-right: 0;
  -o-transition: background 0.35s ease-in-out;
  -webkit-transition: background 0.35s ease-in-out;
  -moz-transition: background 0.35s ease-in-out;
  transition: background 0.35s ease-in-out;
}

#new .control-box .container .page-btn.next-new:hover::before {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}

#new .control-box .container .page-btn.next-new:hover::after {
  background-color: #C88A5F;
}

.max-md-size #new .in-banner {
  padding-bottom: 0;
}

.max-md-size #new .new-box {
  margin-top: 60px;
}

.max-md-size #new .new-box .new-inner h3 {
  font-size: 30.4px;
}

.max-sm-size #new .new-box {
  margin-top: 40px;
}

.max-sm-size #new .new-box .top-inner {
  margin-bottom: 20px;
}

.max-sm-size #new .new-box .new-inner h3 {
  font-size: 27.2px;
  margin-bottom: 20px;
}

.max-sm-size #new .new-box .new-inner p {
  font-size: 17px;
}

.max-xs-size #new .new-box .top-inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.max-xs-size #new .new-box .top-inner .share-box {
  margin-top: 0;
  margin-left: 10px;
}

.max-xs-size #new .new-box .top-inner .share-box button {
  width: 36px;
  height: 36px;
}

.max-xs-size #new .control-box .page-btn {
  font-size: 18px;
}

.max-xs-size #new .control-box .page-btn.next-new::before {
  margin-left: 8px;
}

.max-xs-size #new .control-box .page-btn.next-new::after {
  display: none;
}

.max-mini-size #new .new-box .top-inner .sort::after {
  margin: 0 10px;
}

.max-mini-size #new .new-box .top-inner .share-box button {
  margin: 0 4px;
}

/* ==========================================================================
    welfare
 @mixin =========================================================================*/
#welfare .layout-lineL {
  margin-bottom: 90px;
}

#welfare .layout-lineL .container::before {
  height: calc(100% + 130px);
  top: -120px;
}

#welfare .layout-lineL .editor {
  margin-top: 60px;
}

.max-lg-size #welfare .layout-lineL {
  margin-top: 80px;
}

.max-lg-size #welfare .layout-lineL .container::before {
  top: -140px;
  height: calc(100% + 150px);
}

.max-md-size #welfare .layout-lineL {
  margin-top: 40px;
}

.max-md-size #welfare .layout-lineL .container::before {
  top: -60px;
  height: calc(100% + 70px);
}

/* ==========================================================================
    contact
 @mixin =========================================================================*/
#contact .in-banner .text {
  width: 30vw;
}

#contact .in-banner .text .tel,
#contact .in-banner .text .address {
  display: block;
  color: #fff;
}

#contact .in-banner .text .tel {
  font-family: 'Lato', sans-serif;
  font-size: 50px;
  font-weight: 300;
  margin-top: 12%;
  margin-bottom: 6%;
  line-height: normal;
}

#contact .in-banner .text .address {
  font-size: 20px;
}

#contact .contact-box {
  position: relative;
  background: url("images/building-dw.jpg");
  background-position: left 15vw;
  background-repeat: no-repeat;
}

#contact .contact-box .container {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 1668px;
  margin: 0 auto;
  position: relative;
}

#contact .contact-box .container::before {
  content: '';
  display: block;
  width: 1px;
  height: calc(100% + 60px);
  background-color: #000;
  position: absolute;
  top: -60px;
  left: 180px;
  z-index: 5;
}

#contact .contact-box .container .comments-box {
  width: 54vw;
  padding: 4vw 5vw;
  background-color: #fff;
  border: 1px solid #ccc;
  margin-top: -500px;
  margin-bottom: 10%;
  -webkit-box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.5);
  z-index: 50;
  -ms-flex-item-align: end;
  align-self: flex-end;
  position: relative;
}

#contact .contact-box .container .comments-box .input-box {
  width: 100%;
}

#contact .contact-box .container .comments-box .remark {
  display: block;
  font-size: 16px;
  color: #AAA;
  margin-bottom: 28px;
}

#contact .contact-box .container .comments-box .btn-box {
  float: right;
}

#contact .contact-box .container .comments-box .btn-box .btn {
  float: left;
  width: 180px;
  height: 60px;
  line-height: 60px;
  background-color: #fff;
  border-color: #000;
  color: #000;
  margin: 0;
  -o-transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

#contact .contact-box .container .comments-box .btn-box .btn:last-child {
  border-left: none;
}

#contact .contact-box .container .comments-box .btn-box .btn:hover {
  background-color: #C88A5F;
  border-color: #C88A5F;
  color: #fff;
}

#contact .contact-box .container .map {
  width: 100%;
  height: 35vw;
  margin-bottom: 100px;
  z-index: 50;
}

#contact .contact-box .container .map::after {
  content: '';
  display: block;
  width: 1px;
  height: calc(100% + 60px);
  background-color: #fff;
  position: absolute;
  top: -60px;
  left: 130px;
}

#contact .contact-box .container .map::before {
  content: '歡迎您與我們聯繫';
  display: block;
  font-size: 40px;
  color: #fff;
  position: absolute;
  top: 30px;
  left: 200px;
  z-index: 50;
}

#contact .contact-box::after {
  content: '';
  display: block;
  width: 100vw;
  height: 12vw;
  min-height: 160px;
  background: url("images/dw.jpg");
  position: absolute;
  bottom: -1px;
  left: 0;
}

.max-bigger-size #contact .contact-box .container::before {
  left: 173px;
}

.max-bigger-size #contact .contact-box .container .comments-box {
  width: 48vw;
  margin-right: 8vw;
}

.max-bigger-size #contact .contact-box .container .map::after {
  left: 123px;
}

.max-bg-size #contact .in-banner .text .tel {
  font-size: 45px;
}

.max-bg-size #contact .contact-box .container .comments-box {
  margin-right: 5vw;
}

.max-lg-size #contact .in-banner .text .tel {
  font-size: 40px;
}

.max-lg-size #contact .in-banner .text .address {
  font-size: 18px;
}

.max-lg-size #contact .contact-box .container::before {
  left: 100px;
}

.max-lg-size #contact .contact-box .container .comments-box .btn-box {
  float: none;
}

.max-lg-size #contact .contact-box .container .comments-box .btn-box .btn {
  width: 50%;
  min-width: auto;
}

.max-lg-size #contact .contact-box .container .map::after {
  left: 60px;
}

.max-md-size #contact .in-banner .text {
  width: calc(100% - 80px);
  margin-top: -50px;
}

.max-md-size #contact .in-banner .text .tel {
  margin-top: 30px;
  margin-bottom: 15px;
}

.max-md-size #contact .contact-box {
  background-position: left 285px;
}

.max-md-size #contact .contact-box .container::before {
  left: calc(5% + 30px);
}

.max-md-size #contact .contact-box .container .comments-box {
  width: 100%;
  margin-top: -157px;
  margin-right: 0;
  padding: 40px 50px;
}

.max-md-size #contact .contact-box .container .map {
  height: 45vw;
  min-height: 300px;
}

.max-md-size #contact .contact-box .container .map::before {
  font-size: 36px;
  left: 80px;
}

.max-md-size #contact .contact-box .container .map::after {
  left: 5%;
}

.max-sm-size #contact .in-banner .text .tel {
  font-size: 35px;
}

.max-sm-size #contact .in-banner .text .address {
  font-size: 18px;
}

.max-sm-size #contact .contact-box .container .comments-box {
  margin-top: -114px;
}

.max-sm-size #contact .contact-box .container .comments-box .btn-box {
  float: none;
}

.max-sm-size #contact .contact-box .container .comments-box .btn-box .btn {
  width: 48%;
  height: 50px;
  line-height: 50px;
  min-width: auto;
}

.max-sm-size #contact .contact-box .container .map::before {
  font-size: 32px;
  left: 60px;
}

.max-xs-size #contact .in-banner {
  min-height: 320px;
}

.max-xs-size #contact .in-banner .text {
  width: calc(100% - 60px);
  margin-top: -30px;
}

.max-xs-size #contact .in-banner .text .tel {
  font-size: 30px;
  margin-top: 0;
  margin-bottom: 10px;
}

.max-xs-size #contact .contact-box .container .comments-box {
  margin-top: -68px;
  padding: 30px;
}

.max-xs-size #contact .contact-box .container .map {
  min-height: 240px;
}

#feedback .in-banner .text-inner {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}

#feedback .in-banner .text-inner i {
  font-size: 100px;
  margin-bottom: 20px;
}

#feedback .in-banner .text-inner p {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 45px;
}

#feedback .in-banner .text-inner .btn {
  width: 180px;
  height: 60px;
  line-height: 60px;
  border-color: #fff;
  color: #fff;
}

.max-md-size #feedback .in-banner {
  height: calc(100vh - 68px);
}

/* ==========================================================================
    firm
 @mixin =========================================================================*/
#firm #scroll {
  height: 100vh;
}

#firm #scroll .page {
  width: 100%;
  height: 100vh;
}

#firm #scroll .page.footer {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
}

#firm #scroll .page.footer footer {
  -ms-flex-item-align: end;
  align-self: flex-end;
}
#firm #scroll .page.footer footer.active {
  padding: 18px 70px;
  /* -ms-flex-item-align: auto;
  align-self: auto; */
}
#firm #scroll .page.footer footer.active address {
  padding-top: 18px;
}
#firm #scroll .page.footer footer.active address > .center > .list ul li {
  margin-bottom: 0;
}
#firm #scroll .page.footer footer.active .firm { 
  height: 200px!important;
}
#firm #scroll .page.footer footer.active .goTop { 
  margin: 0 auto;
}
#firm #scroll .page.footer footer.active .firm .list {
  height: 35%;
}
#firm #scroll .page.footer footer.active .firm .list > span { 
  width: 12%;
  padding: 1.3% 1.5%;
}

#firm .in-banner {
  padding-top: 100px;
}

#firm .in-banner .title {
  margin-bottom: 25px;
}

#firm .in-banner .pic {
  position: relative;
}

#firm .in-banner .pic::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url("images/firm-mask.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .8;
}

#firm .in-banner .firm-nav {
  width: 100%;
  padding: 25px 0 0;
  margin-bottom: 46px;
  position: relative;
  z-index: 5;
}

#firm .in-banner .firm-nav ul {
  width: 80%;
}

#firm .in-banner .firm-nav ul li {
  line-height: 20px;
}

#firm .in-banner .firm-nav ul li a {
  max-width: 160px;
  min-height: 65px;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  padding-bottom: 25px;
  position: relative;
}

#firm .in-banner .firm-nav ul li a::after {
  content: '';
  display: none;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0px;
  background-color: #fff;
}

#firm .in-banner .firm-nav ul li a.active::after {
  display: block;
}

#firm .in-banner .firm-nav ul .slick-track {
  margin: 0;
}

#firm .in-banner .firm-nav ul .slick-prev,
#firm .in-banner .firm-nav ul .slick-next {
  top: -75px;
}

#firm .in-banner .firm-nav ul .slick-prev {
  left: 580px;
}

#firm .in-banner .firm-nav ul .slick-next {
  left: 660px;
}

#firm .in-banner .firm-nav::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0px;
  background-color: rgba(255, 255, 255, 0.4);
}

#firm .in-banner p, #firm .in-banner h2, #firm .in-banner h3 {
  font-size: 24px;
  line-height: normal;
  color: #fff;
}

#firm .headline-box .container,
#firm .info-box .container {
  display: -webkit-box;
  display: flex;
  -webkit-display: flex;
  -ms-display: flex;
  -o-display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1722px;
  margin: 0 auto;
  padding-top: 100px;
  height: 100%;
}

#firm .headline-box .container h3,
#firm .info-box .container h3 {
  font-size: 40px;
  color: #000;
}

#firm .headline-box .container .box,
#firm .info-box .container .box {
  width: 100%;
}

#firm .headline-box {
  position: relative;
}

#firm .headline-box::before {
  content: '';
  display: block;
  width: 35vw;
  height: 35vw;
  background: url("images/logo-draw.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 15%;
  right: -2%;
}

#firm .headline-box::after {
  content: '';
  display: block;
  width: 100%;
  height: 12.5vw;
  background: url("images/dw.jpg");
  position: absolute;
  left: 0;
  bottom: 15px;
}

#firm .headline-box .box {
  max-width: 1100px;
  margin: 0 auto 14vw;
}

#firm .headline-box .box h3 {
  margin-bottom: 35px;
}

#firm .headline-box .box p {
  font-size: 18px;
  line-height: 26px;
  color: #777;
  max-height: 20vh;
  overflow-y: auto;
  z-index: 10px;
  -webkit-overflow-scrolling: touch;
}

#firm .headline-box .goDown-02 {
  bottom: 100px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.max-lg-plus-size #firm .in-banner .firm-nav ul {
  width: 100%;
}


.max-lg-plus-size #firm .headline-box .box p {
  max-height: 35vh;
}

.max-lg-size #firm .headline-box .box h3,
.max-lg-size #firm .info-box .box h3 {
  font-size: 36px;
}

.max-lg-size #firm .headline-box .goDown-02 {
  bottom: 80px;
}

.max-md-size #firm .in-banner {
  padding-top: 68px;
}

.max-md-size #firm .in-banner p {
  font-size: 22px;
}

.max-md-size #firm .in-banner .goDown-02 {
  bottom: 40px;
}

.max-md-size #firm .headline-box .container,
.max-md-size #firm .info-box .container {
  padding-top: 90px;
}

.max-md-size #firm .headline-box::after {
  height: 18vw;
}

.max-md-size #firm .in-banner .firm-nav ul li a {
  max-width: 100px;
}

.max-sm-size #firm .in-banner .firm-nav .slick-prev,
.max-sm-size #firm .in-banner .firm-nav .slick-next {
  top: -76px;
}

.max-sm-size #firm .in-banner .firm-nav .slick-prev {
  left: auto;
  right: 40px
}

.max-sm-size #firm .in-banner .firm-nav .slick-next {
  right: -5px;
  left: auto;
}

.max-sm-size #firm .headline-box .box h3,
.max-sm-size #firm .info-box .box h3 {
  font-size: 32px;
}

.max-sm-size #firm .headline-box .box .sub,
.max-sm-size #firm .info-box .box .sub {
  font-size: 18px;
}

.max-sm-size #firm .headline-box .goDown-02 {
  bottom: 70px;
}

.max-xs-size #firm {
  overflow-y: scroll;
}
.max-xs-size #firm #scroll .page {
  height: auto;
}
.max-xs-size #firm #scroll .page.in-banner {
  height: 100vh;
}
.max-xs-size #firm .goDown-02 {
  display: none;
}

.max-xs-size #firm .in-banner p {
  font-size: 20px;
}

.max-xs-size #firm .in-banner .firm-nav {
  padding-top: 40px;
}

.max-xs-size #firm .in-banner .firm-nav .slick-prev,
.max-xs-size #firm .in-banner .firm-nav .slick-next {
  top: -30px;
}

.max-xs-size #firm .in-banner .firm-nav .slick-prev {
  right: 40px;
  left: auto;
}

.max-xs-size #firm .in-banner .firm-nav .slick-next {
  right: 0;
  left: auto;
}

.max-xs-size #firm .headline-box .container {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-bottom: 140px;
}

.max-xs-size #firm .headline-box .box {
  margin: 0 auto 0;
}

.max-xs-size #firm .headline-box .box .title {
  margin-bottom: 10px;
}

.max-xs-size #firm .headline-box .box p {
  font-size: 15px;
  max-height: none;
}

.max-xs-size #firm .headline-box .goDown-02 {
  bottom: 28px;
}

.max-xs-size #firm .headline-box::after {
  height: 24vw;
  bottom: 0;
}

.max-xs-size #firm .info-box .box h3 {
  font-size: 28px;
}

.max-xs-size #firm .info-box .box .sub {
  margin-left: 10px;
}

.max-mini-size #firm .headline-box .box {
  margin-bottom: 0;
}

.max-mini-size #firm .headline-box .box h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.max-mini-size #firm .headline-box .box p {
  line-height: 24px;
}
.max-xs-size #firm .info-box .box .info-inner {
  height: auto;
}
.max-xs-size #firm .info-box .box .info-inner p {
  max-height: none;
}
.max-xs-size #firm .page.footer {
  margin-top: 40px;
}

.max-mini-size #firm .headline-box::after {
  height: 18vw;
}

.max-mini-size #firm .headline-box .goDown-02 {
  bottom: 50px;
}

.max-mini-size #firm .info-box .box h3 {
  font-size: 26px;
}

.max-mini-size #firm .info-box .box .sub {
  font-size: 16px;
}

.max-mini-size #firm .info-box .box p {
  font-size: 15px;
}
.ceo {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin-top: 50px;
}
.ceo img{
  display: inline-block;
  margin: 0!important;
  padding-left: 20px;
}
.breadcrumb { width: 100%; padding: 15px 0 15px;  list-style: none; background: none; display: flex; align-items: center; flex-wrap: wrap; }
.breadcrumb > li { float: none; font-weight: 500; font-size: 15px; color: #fff; }
.breadcrumb > li a { color: #fff; transition: all 0.4s; }
.breadcrumb > li a:hover { opacity: 0.8; }
.breadcrumb > li + li::before { color: #fff; }
.breadcrumb > .active { color: #fff; }
.breadcrumb .breadcrumb-item + .breadcrumb-item { padding-left: 0; display: flex; align-items: center; }
.breadcrumb .breadcrumb-item + .breadcrumb-item::before { content: ''; width: 0; height: 0; margin: 0 10px 0 15px; border-style: solid; border-width: 4.5px 0 4.5px 6px; border-color: transparent transparent transparent #fff; } 