@charset "UTF-8";
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Left: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transition              - arguments: What: all, Length: 1s, Easing: ease-in-out
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0

------------------------------------------------------------- */
/* BACKGROUND GRADIENT */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSITION */
/* TRIPLE BORDERS */
/**
 *
 */
/* line 42, ../scss/scss.scss */
html.fix {
  position: fixed;
  width: 100%;
}

@font-face {
  font-family: calibri;
  src: url("../fonts/calibri.eot") format("eot"), url("../fonts/calibri.woff") format("woff"), url("../fonts/calibri.ttf") format("truetype");
}
/* line 51, ../scss/scss.scss */
* {
  font-family: 'calibri';
}

/* line 55, ../scss/scss.scss */
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  padding: 0 5px;
}

/* line 106, ../scss/scss.scss */
h1,
h2,
h3,
h4 {
  color: #666;
}

/* line 113, ../scss/scss.scss */
.row {
  margin: 0;
}

/* line 117, ../scss/scss.scss */
.sj_none {
  display: none;
}

/* line 121, ../scss/scss.scss */
.margin-bottom-10 {
  margin-bottom: 10px;
}

/* line 125, ../scss/scss.scss */
.margin-bottom-20 {
  margin-bottom: 20px;
}

/* line 129, ../scss/scss.scss */
.margin-bottom-30 {
  margin-bottom: 30px;
}

/* line 133, ../scss/scss.scss */
.margin-bottom-40 {
  margin-bottom: 40px;
}

/* line 137, ../scss/scss.scss */
img.img-bordered {
  padding: 3px;
  border: 1px solid #eee;
}

/* line 142, ../scss/scss.scss */
a,
h3,
h3:after,
h4,
li,
.slider-img,
img,
.navbar > div a,
.lang_select,
.lang,
.section-block,
.section-block a img,
.video-bg,
.video-icon,
.search,
.cbp_tmtime span,
.cbp_tmicon,
.more,
.more:after,
.social-icons li a,
input {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* line 166, ../scss/scss.scss */
a:hover {
  filter: alpha(opacity=90);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  -moz-opacity: 0.9;
  -khtml-opacity: 0.9;
  opacity: 0.9;
}

/* line 170, ../scss/scss.scss */
p {
  font-size: 16px;
  line-height: 22px;
  color: #666;
}

/* line 176, ../scss/scss.scss */
input[type=text]:focus {
  overflow: auto;
  outline: none;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
}

/* line 182, ../scss/scss.scss */
.form-control {
  border: none;
}

/* line 186, ../scss/scss.scss */
.inline-group > div {
  display: inline-block;
}

/* line 190, ../scss/scss.scss */
header {
  background: #fff;
}

/* topbar
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－*/
/* line 200, ../scss/scss.scss */
.topbar {
  margin-bottom: 2px;
}
/* line 202, ../scss/scss.scss */
.topbar .container {
  position: relative;
  text-align: right;
}
/* line 205, ../scss/scss.scss */
.topbar .container > div {
  position: relative;
}
/* line 207, ../scss/scss.scss */
.topbar .container > div a {
  padding: 10px;
  text-align: left;
  color: #aaa;
}
/* line 211, ../scss/scss.scss */
.topbar .container > div a:hover {
  color: #f00;
}
/* line 215, ../scss/scss.scss */
.topbar .container > div:first-child {
  border-left: none;
}
/* line 218, ../scss/scss.scss */
.topbar .container > div:last-child {
  border-right: none;
}
/* line 220, ../scss/scss.scss */
.topbar .container > div:last-child a {
  padding-right: 0;
}
/* line 224, ../scss/scss.scss */
.topbar .container > div:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 10px;
  background: #ccc;
  right: -1px;
  top: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
/* line 234, ../scss/scss.scss */
.topbar .container > div:last-child:after {
  background: #fff;
}
/* line 238, ../scss/scss.scss */
.topbar .container .lang {
  z-index: 4;
  font-size: 14px;
  position: relative;
  display: inline-block;
  padding: 3px 15px;
  color: #aaa;
  background: #fff;
  cursor: pointer;
}
/* line 247, ../scss/scss.scss */
.topbar .container .lang:hover {
  color: #fff;
  background: #000;
}
/* line 250, ../scss/scss.scss */
.topbar .container .lang:hover:after {
  color: #fff;
}
/* line 254, ../scss/scss.scss */
.topbar .container .lang i,
.topbar .container .lang img {
  margin-right: 10px;
}
/* line 258, ../scss/scss.scss */
.topbar .container .lang .lang_select {
  position: absolute;
  z-index: -1;
  top: -700%;
  left: 0;
  width: 100%;
  background: #eee;
}
/* line 265, ../scss/scss.scss */
.topbar .container .lang .lang_select a {
  display: block;
  padding: 10px 12px;
  color: #000;
  background: #eee;
  font-size: 12px;
}
/* line 271, ../scss/scss.scss */
.topbar .container .lang .lang_select a.lang-english {
  font-size: 15px;
}
/* line 274, ../scss/scss.scss */
.topbar .container .lang .lang_select a img {
  width: 18px;
}
/* line 277, ../scss/scss.scss */
.topbar .container .lang .lang_select a:hover {
  color: #fff;
  background: #b11d29;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
/* line 283, ../scss/scss.scss */
.topbar .container .lang .lang_select.click {
  background: #000;
}
/* line 288, ../scss/scss.scss */
.topbar .container .lang:hover .lang_select {
  top: 100%;
}

/* menu
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－*/
/* line 302, ../scss/scss.scss */
nav {
  height: 42px;
}
/* line 304, ../scss/scss.scss */
nav .nav_bg {
  position: absolute;
  z-index: 3;
  top: 145px;
  width: 100%;
  background: transparent;
}
/* line 310, ../scss/scss.scss */
nav .nav_bg.show {
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
}
/* line 315, ../scss/scss.scss */
nav .container {
  position: relative;
  z-index: 3;
}
/* line 318, ../scss/scss.scss */
nav .container .logo {
  float: left;
  margin-top: -7px;
}
/* line 322, ../scss/scss.scss */
nav .container .navbar {
  position: absolute;
  right: 0;
  top: -18px;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
/* line 327, ../scss/scss.scss */
nav .container .navbar > div {
  position: relative;
  float: left;
  margin: 1px 8px;
  border-bottom: 4px solid transparent;
}
/* line 332, ../scss/scss.scss */
nav .container .navbar > div:last-child {
  margin-right: 0;
}
/* line 335, ../scss/scss.scss */
nav .container .navbar > div:last-child a {
  padding-right: 0;
}
/* line 338, ../scss/scss.scss */
nav .container .navbar > div > a {
  font-size: 19px;
  text-decoration: none;
  color: #666;
  padding: 6px 15px 10px;
  border-bottom: 2px solid transparent;
}
/* line 344, ../scss/scss.scss */
nav .container .navbar > div > a:hover, nav .container .navbar > div > a.active {
  border-color: #e74c3c;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
/* line 350, ../scss/scss.scss */
nav .container .navbar > div.nav_sitemap {
  display: none;
}
/* line 354, ../scss/scss.scss */
nav .container .navbar .submenu {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  background: #fff;
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-radius-topleft: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 3px;
  -moz-border-radius-bottomleft: 3px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top: 2px solid #e74c3c;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
/* line 364, ../scss/scss.scss */
nav .container .navbar .submenu div a {
  font-size: 16px;
  padding: 5px 90px 5px 15px;
  display: block;
  white-space: nowrap;
  color: #666;
  border-bottom: 1px solid #eee;
}
/* line 372, ../scss/scss.scss */
nav .container .navbar .submenu div:hover {
  background: #666;
}
/* line 374, ../scss/scss.scss */
nav .container .navbar .submenu div:hover a {
  color: #fff;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
/* line 381, ../scss/scss.scss */
nav .container .navbar .search {
  position: relative;
  height: 34px;
  margin: 0 0 0 15px;
  padding: 15px;
  background: #e74c3c;
}
/* line 387, ../scss/scss.scss */
nav .container .navbar .search:hover {
  background: #c0392b;
}
/* line 390, ../scss/scss.scss */
nav .container .navbar .search.click {
  background: none;
}
/* line 392, ../scss/scss.scss */
nav .container .navbar .search.click i {
  color: #e74c3c;
}
/* line 396, ../scss/scss.scss */
nav .container .navbar .search i {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 1px;
  padding: 10px;
  cursor: pointer;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  color: #fff;
}
/* line 405, ../scss/scss.scss */
nav .container .navbar .search i.fa-close {
  font-size: 17px;
}
/* line 409, ../scss/scss.scss */
nav .container .navbar .search .search-open {
  position: absolute !important;
  top: 102%;
  right: 0;
  display: none;
  width: 300px;
  margin-top: 5px;
  padding: 10px;
  background: #fff;
}
/* line 419, ../scss/scss.scss */
nav .container .navbar .search .search-open .input-group input[type='text'] {
  width: 100%;
  padding-left: 5px;
  color: #666;
  border: 1px solid #ccc;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
/* line 427, ../scss/scss.scss */
nav .container .navbar .search .search-open .input-group .input-group-btn input[type='submit'] {
  width: 40px;
  height: 34px;
  border: none;
  background: url(../images/_base/search-btn.png) 50% 50% no-repeat #e74c3c;
  border-radius: 0;
}
/* line 434, ../scss/scss.scss */
nav .container .navbar .search .search-open .input-group .input-group-btn:hover {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
/* line 436, ../scss/scss.scss */
nav .container .navbar .search .search-open .input-group .input-group-btn:hover input[type='submit'] {
  background-color: #b11d29;
}

/* 首頁 slick
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－*/
/* line 454, ../scss/scss.scss */
.index-slider {
  margin-top: -2px;
}
/* line 456, ../scss/scss.scss */
.index-slider .slider-img {
  height: 500px;
}
/* line 458, ../scss/scss.scss */
.index-slider .slider-img .container {
  position: relative;
  height: 100%;
  display: none;
}
/* line 462, ../scss/scss.scss */
.index-slider .slider-img .container .slider-info {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
/* line 467, ../scss/scss.scss */
.index-slider .slider-img .container .slider-info h3 {
  font-size: 45px;
  color: #fff;
  font-weight: bold;
}
/* line 475, ../scss/scss.scss */
.index-slider .slick-next {
  right: 40px;
}
/* line 478, ../scss/scss.scss */
.index-slider .slick-prev {
  left: 20px;
}
/* line 481, ../scss/scss.scss */
.index-slider .slick-prev,
.index-slider .slick-next {
  z-index: 1;
}
/* line 485, ../scss/scss.scss */
.index-slider .slick-prev:before,
.index-slider .slick-next:before {
  font-size: 35px;
}

/* 首頁最新產品列表 slick
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－*/
/* line 498, ../scss/scss.scss */
.slider.productlist-slider .slick-prev:before,
.slider.productlist-slider .slick-next:before {
  font-size: 28px;
  color: #666;
}
/* line 503, ../scss/scss.scss */
.slider.productlist-slider .slick-prev {
  top: -40px;
  left: calc(100% - 65px);
}
/* line 506, ../scss/scss.scss */
.slider.productlist-slider .slick-prev:hover:before {
  color: #e74c3c;
}
/* line 509, ../scss/scss.scss */
.slider.productlist-slider .slick-prev.slick-disabled:before {
  color: #666;
}
/* line 513, ../scss/scss.scss */
.slider.productlist-slider .slick-next {
  top: -40px;
  right: 15px;
}
/* line 516, ../scss/scss.scss */
.slider.productlist-slider .slick-next:hover:before {
  color: #e74c3c;
}
/* line 519, ../scss/scss.scss */
.slider.productlist-slider .slick-next.slick-disabled:before {
  color: #666;
}
/* line 523, ../scss/scss.scss */
.slider.productlist-slider .section-block {
  text-align: center;
}
/* line 526, ../scss/scss.scss */
.slider.productlist-slider .section-block a h3 {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  margin: 5px 0;
}
/* line 533, ../scss/scss.scss */
.slider.productlist-slider .section-block a h4 {
  font-style: italic;
  font-size: 16px;
}
/* line 538, ../scss/scss.scss */
.slider.productlist-slider .section-block a:hover img {
  -moz-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  filter: FlipH;
  -ms-filter: "FlipH";
}
/* line 544, ../scss/scss.scss */
.slider.productlist-slider .slick-dots {
  bottom: -25px;
}

/* 各頁面通用設定
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－*/
/* line 555, ../scss/scss.scss */
.main-wrapper {
  padding: 30px 0;
}

/* line 559, ../scss/scss.scss */
.headline {
  margin-bottom: 20px;
}
/* line 561, ../scss/scss.scss */
.headline h2 {
  font-size: 28px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}
/* line 565, ../scss/scss.scss */
.headline h2 span {
  border-bottom: 2px solid #e74c3c;
  padding-bottom: 4px;
}

/* line 572, ../scss/scss.scss */
.breadcrumb {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  margin-top: -1px;
  background: #fcfcfc;
}
/* line 578, ../scss/scss.scss */
.breadcrumb .container {
  position: relative;
}
/* line 580, ../scss/scss.scss */
.breadcrumb .container h2 {
  font-size: 26px;
  color: #666;
}
/* line 584, ../scss/scss.scss */
.breadcrumb .container ul {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
/* line 590, ../scss/scss.scss */
.breadcrumb .container ul li {
  float: left;
  position: relative;
  padding: 0 12px;
  color: #e74c3c;
  font-size: 16px;
}
/* line 596, ../scss/scss.scss */
.breadcrumb .container ul li a {
  color: #777;
}
/* line 599, ../scss/scss.scss */
.breadcrumb .container ul li:after {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -5px;
  content: "";
  width: 1px;
  height: 10px;
  background: #ccc;
  -moz-transform: rotate(15deg);
  -o-transform: rotate(15deg);
  -webkit-transform: rotate(15deg);
  -ms-transform: rotate(15deg);
  transform: rotate(15deg);
  filter: progid:DXImageTransform.Microsoft.Matrix( M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
  zoom: 1;
}
/* line 610, ../scss/scss.scss */
.breadcrumb .container ul li:first-child {
  padding-left: 0;
}
/* line 613, ../scss/scss.scss */
.breadcrumb .container ul li:last-child {
  padding-right: 0;
}
/* line 615, ../scss/scss.scss */
.breadcrumb .container ul li:last-child:after {
  background: none;
}

/* line 624, ../scss/scss.scss */
.sidebar {
  margin-right: 20px;
}
/* line 627, ../scss/scss.scss */
.sidebar ul li {
  border: 1px solid #ccc;
  border-bottom: none;
}
/* line 630, ../scss/scss.scss */
.sidebar ul li a {
  color: #777;
  font-size: 16px;
  display: block;
  padding: 8px;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
/* line 637, ../scss/scss.scss */
.sidebar ul li:last-child {
  border-bottom: 1px solid #ccc;
}
/* line 640, ../scss/scss.scss */
.sidebar ul li.active, .sidebar ul li.active:hover {
  background: #e74c3c;
  border-color: #e74c3c;
}
/* line 644, ../scss/scss.scss */
.sidebar ul li.active a, .sidebar ul li.active:hover a {
  color: #fff;
}
/* line 648, ../scss/scss.scss */
.sidebar ul li:hover {
  background: #c0392b;
  border-color: #e74c3c;
}
/* line 651, ../scss/scss.scss */
.sidebar ul li:hover a {
  color: #fff;
}

/* line 661, ../scss/scss.scss */
.pagination li a {
  border-radius: 0 !important;
  color: #777;
}
/* line 664, ../scss/scss.scss */
.pagination li a:hover {
  background: #c0392b;
  border-color: #e74c3c;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  color: #fff;
}
/* line 670, ../scss/scss.scss */
.pagination li a:active, .pagination li a:focus {
  background: #e74c3c;
  border-color: #e74c3c;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  color: #fff;
}
/* line 680, ../scss/scss.scss */
.pagination .active a,
.pagination .active a:hover,
.pagination .active a:focus {
  background: #e74c3c;
  border-color: #e74c3c;
}

/* line 689, ../scss/scss.scss */
.gotop {
  position: fixed;
  right: 5px;
  bottom: 5px !important;
  cursor: pointer;
  display: none;
}

/* 首頁
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－*/
/* line 703, ../scss/scss.scss */
section {
  margin-bottom: 50px;
}
/* line 707, ../scss/scss.scss */
section.index-about .container .section-block {
  margin-right: 20px;
  width: calc(( 100% - 41px) / 3);
}
/* line 711, ../scss/scss.scss */
section.index-about .container .section-block a img {
  margin-bottom: 20px;
}
/* line 714, ../scss/scss.scss */
section.index-about .container .section-block a h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
/* line 718, ../scss/scss.scss */
section.index-about .container .section-block a p {
  font-size: 15px;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
/* line 723, ../scss/scss.scss */
section.index-about .container .section-block:nth-child(3n) {
  margin-right: 0;
}
/* line 731, ../scss/scss.scss */
section.news-video .col-md-8.index-news {
  padding-right: 20px;
}
/* line 734, ../scss/scss.scss */
section.news-video .col-md-8.index-news .col-md-5 img {
  margin-bottom: 20px;
}
/* line 738, ../scss/scss.scss */
section.news-video .col-md-8.index-news .col-md-7 {
  padding-left: 20px;
}
/* line 740, ../scss/scss.scss */
section.news-video .col-md-8.index-news .col-md-7 .index-news-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 7px;
  margin-bottom: 7px;
}
/* line 745, ../scss/scss.scss */
section.news-video .col-md-8.index-news .col-md-7 .index-news-item a h3 {
  font-size: 16px;
  margin-bottom: 3px;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
/* line 750, ../scss/scss.scss */
section.news-video .col-md-8.index-news .col-md-7 .index-news-item a p.date {
  color: #999;
  font-size: 14px;
  line-height: 15px;
}
/* line 756, ../scss/scss.scss */
section.news-video .col-md-8.index-news .col-md-7 .index-news-item:last-child {
  margin-bottom: 0;
  border: none;
}
/* line 764, ../scss/scss.scss */
section.news-video .col-md-4.index-video .index-video-item {
  position: relative;
}
/* line 766, ../scss/scss.scss */
section.news-video .col-md-4.index-video .index-video-item a:hover {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
/* line 769, ../scss/scss.scss */
section.news-video .col-md-4.index-video .index-video-item .video-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
/* line 777, ../scss/scss.scss */
section.news-video .col-md-4.index-video .index-video-item .video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  background: url(../images/_base/video-icon.png) left top no-repeat;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  filter: alpha(opacity=80);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}
/* line 788, ../scss/scss.scss */
section.news-video .col-md-4.index-video .index-video-item:hover .video-bg {
  background: rgba(0, 0, 0, 0.3);
}
/* line 792, ../scss/scss.scss */
section.news-video .col-md-4.index-video .index-video-item:hover .video-icon {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
/* line 800, ../scss/scss.scss */
section.client img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: alpha(opacity=60);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
}
/* line 804, ../scss/scss.scss */
section.client img:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

/* line 813, ../scss/scss.scss */
.shadow-box, .main-wrapper.about .about-img:before, .main-wrapper.about .about-img:after {
  top: 80%;
  width: 50%;
  z-index: -1;
  content: "";
  bottom: 15px;
  max-width: 300px;
  background: #999;
  position: absolute;
  -webkit-box-shadow: 0 15px 10px #999;
  -moz-box-shadow: 0 15px 10px #999;
  box-shadow: 0 15px 10px #999;
}

/*  About 關於我們
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－*/
/* line 831, ../scss/scss.scss */
.main-wrapper.about {
  text-align: center;
}
/* line 834, ../scss/scss.scss */
.main-wrapper.about .headline h3 {
  font-size: 28px;
}
/* line 836, ../scss/scss.scss */
.main-wrapper.about .headline h3 span {
  color: #e74c3c;
}
/* line 841, ../scss/scss.scss */
.main-wrapper.about p {
  line-height: 21px;
}
/* line 844, ../scss/scss.scss */
.main-wrapper.about .about-img {
  margin-top: 40px;
  position: relative;
}
/* line 847, ../scss/scss.scss */
.main-wrapper.about .about-img:before {
  left: 5px;
  -moz-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -webkit-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
  filter: progid:DXImageTransform.Microsoft.Matrix( M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
  zoom: 1;
}
/* line 852, ../scss/scss.scss */
.main-wrapper.about .about-img:after {
  right: 5px;
  -moz-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  -webkit-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  filter: progid:DXImageTransform.Microsoft.Matrix( M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
  zoom: 1;
}

/* line 860, ../scss/scss.scss */
section.module.parallax {
  height: 360px;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 50px 0;
}
/* line 866, ../scss/scss.scss */
section.module.parallax p {
  color: #333;
}
/* line 869, ../scss/scss.scss */
section.module.parallax .row {
  margin-top: 50px;
}
/* line 871, ../scss/scss.scss */
section.module.parallax .row .about-item {
  margin-right: 40px;
  width: calc((100% - 80px) / 3);
  text-align: left;
}
/* line 875, ../scss/scss.scss */
section.module.parallax .row .about-item:last-child {
  margin-right: 0;
}
/* line 878, ../scss/scss.scss */
section.module.parallax .row .about-item > div {
  vertical-align: top;
}
/* line 881, ../scss/scss.scss */
section.module.parallax .row .about-item .about-icon {
  width: 46px;
  margin-right: 20px;
}
/* line 884, ../scss/scss.scss */
section.module.parallax .row .about-item .about-icon i {
  color: #fff;
  padding: 11px;
  min-width: 46px;
  font-size: 22px;
  text-align: center;
  border: 1px solid #fff;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
/* line 894, ../scss/scss.scss */
section.module.parallax .row .about-item .about-list {
  width: calc(100% - 66px);
}
/* line 896, ../scss/scss.scss */
section.module.parallax .row .about-item .about-list h4 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}
/* line 901, ../scss/scss.scss */
section.module.parallax .row .about-item .about-list p {
  font-size: 16px;
  color: #fff;
  line-height: 19px;
}

/* line 912, ../scss/scss.scss */
section.about-life .row {
  margin-top: 30px;
}
/* line 914, ../scss/scss.scss */
section.about-life .row div {
  margin-bottom: 50px;
}

/* line 920, ../scss/scss.scss */
section.history {
  padding: 20px;
  background: #f7f7f7;
}
/* line 923, ../scss/scss.scss */
section.history .history-info {
  padding-left: 10px;
}

/* News 最新消息
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－*/
/* line 934, ../scss/scss.scss */
.news-item {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
}
/* line 938, ../scss/scss.scss */
.news-item:last-child {
  border: none;
}
/* line 941, ../scss/scss.scss */
.news-item .news-info {
  padding-left: 20px;
  margin-top: 1px;
}
/* line 944, ../scss/scss.scss */
.news-item .news-info h3 {
  font-size: 26px;
}
/* line 947, ../scss/scss.scss */
.news-item .news-info .news-date {
  margin: 10px 0;
  font-size: 16px;
  position: relative;
  padding-left: 23px;
}
/* line 952, ../scss/scss.scss */
.news-item .news-info .news-date:before {
  content: "\f073";
  font-family: 'fontAwesome';
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  color: #e74c3c;
}
/* line 962, ../scss/scss.scss */
.news-item .news-info p {
  margin-bottom: 3px;
}
/* line 965, ../scss/scss.scss */
.news-item .news-info i {
  font-size: 15px;
  color: #e74c3c;
  width: 15px;
  margin-right: 2px;
}
/* line 971, ../scss/scss.scss */
.news-item .news-info i.fa-link:before {
  margin-left: 3px;
}
/* line 975, ../scss/scss.scss */
.news-item .news-info a {
  color: #e74c3c;
  font-size: 16px;
}
/* line 979, ../scss/scss.scss */
.news-item .news-info .more {
  background: #e74c3c;
  display: inline-block;
  margin-top: 10px;
  padding: 5px 15px;
  color: #fff;
  font-size: 16px;
  position: relative;
}
/* line 988, ../scss/scss.scss */
.news-item .news-info .more:after {
  position: absolute;
  font-family: 'fontAwesome';
  content: "\f105";
  left: 0;
  top: 50%;
  font-size: 11px;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
/* line 1001, ../scss/scss.scss */
.news-item:hover .more {
  background: #c0392b;
  padding: 5px 30px 5px 15px;
}
/* line 1006, ../scss/scss.scss */
.news-item:hover .more:after {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  left: 100%;
  margin-left: -20px;
}

/* line 1014, ../scss/scss.scss */
.more_btn {
  background: #e74c3c;
  display: inline-block;
  margin-top: 10px;
  padding: 5px 15px;
  color: #fff;
  font-size: 16px;
  position: relative;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 1027, ../scss/scss.scss */
.more_btn:after {
  position: absolute;
  font-family: 'fontAwesome';
  content: "\f105";
  left: 0;
  top: 50%;
  font-size: 11px;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* line 1042, ../scss/scss.scss */
.more_btn:hover {
  background: #c0392b;
  padding: 5px 30px 5px 15px;
}
/* line 1045, ../scss/scss.scss */
.more_btn:hover:after {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  left: 100%;
  margin-left: -20px;
}

/* line 1055, ../scss/scss.scss */
.news-view .news-title h3 {
  color: #666;
  font-size: 24px;
  padding-bottom: 5px;
  display: inline-block;
  border-bottom: 2px solid #e74c3c;
  margin-bottom: 20px;
}
/* line 1063, ../scss/scss.scss */
.news-view .news-title .news-date {
  margin-bottom: 10px;
}
/* line 1067, ../scss/scss.scss */
.news-view .video-img {
  position: relative;
}
/* line 1069, ../scss/scss.scss */
.news-view .video-img .video-bg {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
/* line 1077, ../scss/scss.scss */
.news-view .video-img .video-icon {
  position: absolute;
  width: 100px;
  height: 100px;
  background: url(../images/video-icon.png) left top no-repeat;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
/* line 1087, ../scss/scss.scss */
.news-view .video-img a:hover {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
/* line 1089, ../scss/scss.scss */
.news-view .video-img a:hover .video-bg {
  background: rgba(0, 0, 0, 0.3);
}

/* Product 產品
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－*/
/* line 1104, ../scss/scss.scss */
.product-list .product-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
  margin-right: 20px;
  float: none;
  display: inline-block;
  width: calc((100% - 48px) / 3);
  vertical-align: top;
}
/* line 1113, ../scss/scss.scss */
.product-list .product-item a {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
/* line 1116, ../scss/scss.scss */
.product-list .product-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
  position: relative;
}
/* line 1120, ../scss/scss.scss */
.product-list .product-item h3:after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  content: attr(data-more);
  color: #fff;
  font-size: 16px;
  background: #e74c3c;
  padding: 5px 10px;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
/* line 1134, ../scss/scss.scss */
.product-list .product-item:hover h3 {
  color: #c0392b;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
/* line 1137, ../scss/scss.scss */
.product-list .product-item:hover h3:after {
  right: 20px;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
/* line 1142, ../scss/scss.scss */
.product-list .product-item:hover img {
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  filter: FlipH;
  -ms-filter: "FlipH";
  -moz-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -webkit-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
/* line 1147, ../scss/scss.scss */
.product-list .product-item:nth-child(3n) {
  margin-right: 0;
}

/* Product 產品內頁
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－*/
/* line 1159, ../scss/scss.scss */
.product-img,
.about-img {
  margin-bottom: 20px;
}
/* line 1164, ../scss/scss.scss */
.product-img .product-slider .slick-dots,
.product-img .about-slider .slick-dots,
.about-img .product-slider .slick-dots,
.about-img .about-slider .slick-dots {
  display: none !important;
}
/* line 1167, ../scss/scss.scss */
.product-img .product-slider .slick-prev,
.product-img .about-slider .slick-prev,
.about-img .product-slider .slick-prev,
.about-img .about-slider .slick-prev {
  left: 0;
  z-index: 1;
}
/* line 1170, ../scss/scss.scss */
.product-img .product-slider .slick-prev:before,
.product-img .about-slider .slick-prev:before,
.about-img .product-slider .slick-prev:before,
.about-img .about-slider .slick-prev:before {
  content: "\f104";
  font-family: 'fontAwesome';
  background: rgba(0, 0, 0, 0.8);
  padding: 5px 14px;
}
/* line 1177, ../scss/scss.scss */
.product-img .product-slider .slick-next,
.product-img .about-slider .slick-next,
.about-img .product-slider .slick-next,
.about-img .about-slider .slick-next {
  right: 0;
}
/* line 1179, ../scss/scss.scss */
.product-img .product-slider .slick-next:before,
.product-img .about-slider .slick-next:before,
.about-img .product-slider .slick-next:before,
.about-img .about-slider .slick-next:before {
  content: "\f105";
  font-family: 'fontAwesome';
  background: rgba(0, 0, 0, 0.8);
  padding: 5px 14px;
  margin-left: -15px;
}

/* line 1190, ../scss/scss.scss */
.product-des {
  padding-left: 30px;
}
/* line 1192, ../scss/scss.scss */
.product-des h3 {
  font-size: 28px;
  color: #666;
  margin-bottom: 20px;
}
/* line 1197, ../scss/scss.scss */
.product-des p {
  margin-bottom: 10px;
}
/* line 1200, ../scss/scss.scss */
.product-des .download {
  font-size: 16px;
  margin-top: 20px;
}
/* line 1203, ../scss/scss.scss */
.product-des .download a {
  color: #666;
  font-size: 16px;
}
/* line 1206, ../scss/scss.scss */
.product-des .download a i {
  color: #c0392b;
  margin-right: 5px;
}
/* line 1212, ../scss/scss.scss */
.product-des .download:hover a {
  color: #c0392b;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
/* line 1218, ../scss/scss.scss */
.product-des .inquire {
  margin-top: 15px;
}
/* line 1220, ../scss/scss.scss */
.product-des .inquire a {
  padding: 8px 13px;
  color: #fff;
  background: #e74c3c;
  font-size: 15px;
}
/* line 1225, ../scss/scss.scss */
.product-des .inquire a:hover {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  background: #c0392b;
}

/* line 1234, ../scss/scss.scss */
.specification ul.tabs {
  width: 100%;
  border-bottom: 2px solid #e74c3c;
  display: inline-block;
}
/* line 1238, ../scss/scss.scss */
.specification ul.tabs li {
  line-height: 38px;
  position: relative;
  float: left;
  margin-right: 2px;
  background: #fff;
}
/* line 1244, ../scss/scss.scss */
.specification ul.tabs li a {
  font-size: 17px;
  display: block;
  padding: 0 30px;
  text-align: center;
  text-decoration: none;
  color: #666;
}
/* line 1253, ../scss/scss.scss */
.specification ul.tabs li.active a {
  color: #fff;
  background: #e74c3c;
}
/* line 1258, ../scss/scss.scss */
.specification ul.tabs li:last-child {
  margin-right: 0;
}
/* line 1261, ../scss/scss.scss */
.specification ul.tabs li:hover {
  background: #e74c3c;
}
/* line 1263, ../scss/scss.scss */
.specification ul.tabs li:hover a {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  color: #fff;
}
/* line 1270, ../scss/scss.scss */
.specification .tab_container {
  width: 100%;
  padding-top: 10px;
}
/* line 1273, ../scss/scss.scss */
.specification .tab_container .pro-table-group {
  position: relative;
  overflow: auto !important;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}
/* line 1279, ../scss/scss.scss */
.specification .tab_container .pro-table-group .pro-table-scroll {
  position: absolute;
  z-index: 99;
  top: 30px;
  left: 50%;
  width: 300px;
  height: 150px;
  margin-left: -150px;
  background: url(../images/scroll.png) left top no-repeat;
  display: none;
}
/* line 1290, ../scss/scss.scss */
.specification .tab_container .pro-table-group .pro-table {
  width: 100%;
  min-width: 900px;
  border: 1px solid #e3e3e3;
  border-spacing: 0;
}
/* line 1297, ../scss/scss.scss */
.specification .tab_container .pro-table-group .pro-table thead tr th {
  padding: 8px;
  text-align: left;
  color: #fff;
  border-right: 1px solid #f2f2f2;
  background: #333;
}
/* line 1303, ../scss/scss.scss */
.specification .tab_container .pro-table-group .pro-table thead tr th:last-child {
  border-right: 0;
}
/* line 1311, ../scss/scss.scss */
.specification .tab_container .pro-table-group .pro-table tbody tr td {
  padding: 8px;
  white-space: nowrap;
  color: #666;
  border-right: 1px solid #e2e2e2;
}
/* line 1316, ../scss/scss.scss */
.specification .tab_container .pro-table-group .pro-table tbody tr td:first-child {
  white-space: nowrap;
}
/* line 1319, ../scss/scss.scss */
.specification .tab_container .pro-table-group .pro-table tbody tr td:last-child {
  border-right: none;
}
/* line 1323, ../scss/scss.scss */
.specification .tab_container .pro-table-group .pro-table tbody tr:nth-child(odd) {
  background: #f2f2f2;
}
/* line 1329, ../scss/scss.scss */
.specification .tab_container .pro-table-group p.remark {
  margin-top: 10px;
}
/* line 1333, ../scss/scss.scss */
.specification .tab_container ul {
  margin-left: 10px;
}
/* line 1335, ../scss/scss.scss */
.specification .tab_container ul li {
  margin-bottom: 4px;
  list-style-type: disc;
  list-style-position: inside;
}

/* line 1344, ../scss/scss.scss */
section:last-child {
  margin-bottom: 0;
}

/* Contact 聯絡我們
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－*/
/* line 1354, ../scss/scss.scss */
.map {
  padding-right: 20px;
}
/* line 1356, ../scss/scss.scss */
.map iframe {
  width: 100%;
  height: 250px;
  border: 0;
  margin-bottom: 20px;
}
/* line 1363, ../scss/scss.scss */
.map .inquiry .SJ_feild {
  padding: 0 0 20px 0;
}
/* line 1365, ../scss/scss.scss */
.map .inquiry .SJ_feild .SJ_label {
  font-weight: normal;
}
/* line 1368, ../scss/scss.scss */
.map .inquiry .SJ_feild .SJ_text,
.map .inquiry .SJ_feild .SJ_textarea,
.map .inquiry .SJ_feild .SJ_select {
  width: 60%;
  height: 30px;
  padding-left: 5px;
  font-size: 14px;
}
/* line 1377, ../scss/scss.scss */
.map .inquiry .SJ_feild:hover .SJ_text,
.map .inquiry .SJ_feild:hover .SJ_textarea,
.map .inquiry .SJ_feild:hover .SJ_select {
  border-color: #ccc;
  -webkit-box-shadow: 0 0 3px #ccc;
  -moz-box-shadow: 0 0 3px #ccc;
  box-shadow: 0 0 3px #ccc;
}
/* line 1386, ../scss/scss.scss */
.map .inquiry .SJ_feild.SJ_feild_14 .SJ_textarea {
  height: 180px;
  width: 85%;
}
/* line 1393, ../scss/scss.scss */
.map .inquiry .SJ_feild_code .SJ_text {
  width: 150px !important;
}
/* line 1397, ../scss/scss.scss */
.map .inquiry .SJ_feild_submit {
  padding: 0;
}
/* line 1399, ../scss/scss.scss */
.map .inquiry .SJ_feild_submit input {
  width: 150px;
  height: auto;
  margin: 0;
  background: #e74c3c;
  border-radius: 0;
  border: 1px solid #e74c3c;
  padding: 5px 25px;
  font-size: 15px;
}
/* line 1410, ../scss/scss.scss */
.map .inquiry .SJ_feild_submit:hover input {
  background: #c0392b;
  border: 1px solid #c0392b;
}

/* line 1420, ../scss/scss.scss */
.map-info p {
  font-size: 15px;
  margin-bottom: 5px;
}
/* line 1423, ../scss/scss.scss */
.map-info p i {
  color: #e74c3c;
  font-size: 13px;
  min-width: 15px;
  text-align: center;
}

/* Search Result 搜尋結果
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－*/
/* line 1439, ../scss/scss.scss */
.search-result p.keyword {
  font-size: 18px;
  margin-bottom: 20px;
}
/* line 1442, ../scss/scss.scss */
.search-result p.keyword span {
  color: #e74c3c;
  font-weight: bold;
  font-size: 21px;
  padding: 1px;
  border-bottom: 1px solid #e74c3c;
}

/* Sitemap
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－*/
/* line 1458, ../scss/scss.scss */
.sitemap {
  min-height: calc(100vh - 525px);
}
/* line 1460, ../scss/scss.scss */
.sitemap .col-md-3 {
  float: none;
  margin-right: 20px;
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #e5e5e5;
  background: #fcfcfc;
  width: calc((100% - 60px) / 4);
  vertical-align: top;
}
/* line 1469, ../scss/scss.scss */
.sitemap .col-md-3:last-child {
  margin-right: 0;
}
/* line 1472, ../scss/scss.scss */
.sitemap .col-md-3 .headline {
  margin-bottom: 10px;
}
/* line 1474, ../scss/scss.scss */
.sitemap .col-md-3 .headline h2 {
  position: relative;
  padding-left: 22px;
  padding-bottom: 0;
  border-bottom: none;
}
/* line 1479, ../scss/scss.scss */
.sitemap .col-md-3 .headline h2 :before {
  position: absolute;
  content: "\f039";
  font-family: 'fontAwesome';
  font-size: 15px;
  color: #666;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  margin-top: 3px;
}
/* line 1490, ../scss/scss.scss */
.sitemap .col-md-3 .headline h2 a {
  font-size: 20px;
  color: #e74c3c;
}
/* line 1496, ../scss/scss.scss */
.sitemap .col-md-3 ul {
  margin-left: 20px;
}
/* line 1499, ../scss/scss.scss */
.sitemap .col-md-3 ul li a {
  display: block;
  font-size: 15px;
  padding: 5px 0;
  border-bottom: 1px solid #e5e5e5;
  color: #666;
}
/* line 1507, ../scss/scss.scss */
.sitemap .col-md-3 ul li:first-child a {
  padding-top: 0;
}

/* footer
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－
－－－－－－－－－－－－－－－－－－－－－－*/
/* line 1522, ../scss/scss.scss */
footer {
  background: #272727;
  padding: 40px 0 0;
}
/* line 1528, ../scss/scss.scss */
footer .container .footer-item .headline h2 {
  color: #dadada;
  font-weight: normal;
  border-style: dotted;
  font-size: 26px;
}
/* line 1533, ../scss/scss.scss */
footer .container .footer-item .headline h2 span {
  padding-bottom: 5px;
}
/* line 1538, ../scss/scss.scss */
footer .container .footer-item p {
  color: #dadada;
  margin-top: 20px;
  font-size: 15px;
  line-height: 19px;
}
/* line 1545, ../scss/scss.scss */
footer .container .footer-item ul.footer-exhi li {
  border-bottom: 1px solid #aaa;
  padding: 5px 0 10px;
  margin-bottom: 10px;
}
/* line 1549, ../scss/scss.scss */
footer .container .footer-item ul.footer-exhi li h3 {
  color: #dadada;
  font-size: 16px;
  margin-bottom: 5px;
}
/* line 1554, ../scss/scss.scss */
footer .container .footer-item ul.footer-exhi li p {
  color: #aaa;
  margin-top: 0;
}
/* line 1558, ../scss/scss.scss */
footer .container .footer-item ul.footer-exhi li:last-child {
  border-bottom: 0;
}
/* line 1564, ../scss/scss.scss */
footer .container .footer-item ul.footer-link li {
  border-bottom: 1px solid #333;
}
/* line 1566, ../scss/scss.scss */
footer .container .footer-item ul.footer-link li a {
  color: #aaa;
  display: block;
  padding: 5px 0;
  font-size: 16px;
}
/* line 1571, ../scss/scss.scss */
footer .container .footer-item ul.footer-link li a:hover {
  color: #e74c3c;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
/* line 1578, ../scss/scss.scss */
footer .container .footer-item .footer-contact {
  color: #dadada;
  line-height: 25px;
  font-size: 16px;
}
/* line 1582, ../scss/scss.scss */
footer .container .footer-item .footer-contact > div {
  margin-bottom: 5px;
}
/* line 1585, ../scss/scss.scss */
footer .container .footer-item .footer-contact i {
  font-size: 12px;
  margin-right: 5px;
}
/* line 1589, ../scss/scss.scss */
footer .container .footer-item .footer-contact a {
  color: #dadada;
}
/* line 1591, ../scss/scss.scss */
footer .container .footer-item .footer-contact a:hover {
  color: #e74c3c;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
/* line 1599, ../scss/scss.scss */
footer .copyright {
  clear: both;
  padding: 20px 0;
  margin-top: 20px;
  background: #222;
}
/* line 1604, ../scss/scss.scss */
footer .copyright .container {
  position: relative;
}
/* line 1606, ../scss/scss.scss */
footer .copyright .container p {
  font-size: 14px;
}
/* line 1608, ../scss/scss.scss */
footer .copyright .container p a {
  color: #777;
}
/* line 1612, ../scss/scss.scss */
footer .copyright .container .social {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  margin-top: 4px;
}
/* line 1618, ../scss/scss.scss */
footer .copyright .container .social ul.social-icons {
  float: right;
}
/* line 1620, ../scss/scss.scss */
footer .copyright .container .social ul.social-icons li {
  display: inline-block;
  margin-left: 4px;
}
/* line 1623, ../scss/scss.scss */
footer .copyright .container .social ul.social-icons li a {
  width: 28px;
  height: 28px;
  display: block;
  background-position: 0 0;
  background-repeat: no-repeat;
}
/* line 1629, ../scss/scss.scss */
footer .copyright .container .social ul.social-icons li a.rounded-x {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
/* line 1632, ../scss/scss.scss */
footer .copyright .container .social ul.social-icons li a.social_facebook {
  background: url(../images/_temp/social/facebook.png) no-repeat;
}
/* line 1635, ../scss/scss.scss */
footer .copyright .container .social ul.social-icons li a.social_twitter {
  background: url(../images/_temp/social/twitter.png) no-repeat;
}
/* line 1638, ../scss/scss.scss */
footer .copyright .container .social ul.social-icons li a.social_googleplus {
  background: url(../images/_temp/social/googleplus.png) no-repeat;
}
/* line 1641, ../scss/scss.scss */
footer .copyright .container .social ul.social-icons li a.social_linkedin {
  background: url(../images/_temp/social/linkedin.png) no-repeat;
}
/* line 1644, ../scss/scss.scss */
footer .copyright .container .social ul.social-icons li a:hover {
  background-position: 0 -38px;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

@media screen and (min-width: 1200px) {
  /* line 1657, ../scss/scss.scss */
  .container {
    width: 1170px;
    padding: 0;
  }

  /* line 1662, ../scss/scss.scss */
  nav .nav_bg.show {
    display: none !important;
  }
}
@media screen and (max-width: 1200px) {
  /* line 1669, ../scss/scss.scss */
  .container {
    width: 100%;
    padding: 0 20px;
  }

  /* line 1673, ../scss/scss.scss */
  .breadcrumb {
    padding: 15px 30px 15px 0;
  }

  /* line 1676, ../scss/scss.scss */
  .index-slider {
    margin-top: 8px;
    height: 350px;
  }
  /* line 1679, ../scss/scss.scss */
  .index-slider .slider-img {
    height: 350px;
  }
  /* line 1681, ../scss/scss.scss */
  .index-slider .slider-img img {
    display: none;
  }
  /* line 1685, ../scss/scss.scss */
  .index-slider .slider-img .container .slider-info {
    left: 15px;
  }

  /* line 1695, ../scss/scss.scss */
  section.index-about .container .section-block a p {
    font-size: 17px;
  }

  /* line 1702, ../scss/scss.scss */
  .sitemap {
    min-height: calc(100vh - 575px);
  }
  /* line 1704, ../scss/scss.scss */
  .sitemap .col-md-3 {
    width: calc((100% - 40px) / 3);
  }
  /* line 1706, ../scss/scss.scss */
  .sitemap .col-md-3:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 991px) {
  /* line 1715, ../scss/scss.scss */
  .topbar {
    width: auto;
    background: #393939;
  }
  /* line 1718, ../scss/scss.scss */
  .topbar .container {
    padding: 0;
  }
  /* line 1720, ../scss/scss.scss */
  .topbar .container > div {
    display: none;
  }
  /* line 1722, ../scss/scss.scss */
  .topbar .container > div.lang {
    font-size: 16px;
    display: block;
    float: left;
    padding: 14px 16px;
    color: #fff;
    background: #393939;
  }
  /* line 1729, ../scss/scss.scss */
  .topbar .container > div.lang:after {
    color: #fff;
  }
  /* line 1733, ../scss/scss.scss */
  .topbar .container > div:after {
    background: none;
  }

  /* line 1739, ../scss/scss.scss */
  nav {
    margin-top: 10px;
  }
  /* line 1741, ../scss/scss.scss */
  nav .logo {
    position: relative;
    top: 2px;
    left: 2px;
    margin-top: 24px;
  }
  /* line 1747, ../scss/scss.scss */
  nav .container {
    padding: 0 10px;
  }
  /* line 1749, ../scss/scss.scss */
  nav .container .navbar {
    position: absolute;
    z-index: 1;
    top: 19px;
    left: 0;
    display: none;
    width: 100%;
    background: #fff;
  }
  /* line 1757, ../scss/scss.scss */
  nav .container .navbar > div {
    border-bottom: 1px solid #eee;
    float: none;
    margin: 0;
  }
  /* line 1761, ../scss/scss.scss */
  nav .container .navbar > div:last-child {
    border: none;
  }
  /* line 1764, ../scss/scss.scss */
  nav .container .navbar > div > a {
    display: block;
    margin-top: 0;
    padding: 10px 17px;
    color: #393939;
    font-size: 19px;
  }
  /* line 1770, ../scss/scss.scss */
  nav .container .navbar > div > a.active, nav .container .navbar > div > a:hover {
    border-color: transparent;
    color: #e74c3c;
  }
  /* line 1776, ../scss/scss.scss */
  nav .container .navbar > div.search {
    width: calc(100% + 1px);
    height: 100%;
    padding: 0;
    margin: 0;
  }
  /* line 1781, ../scss/scss.scss */
  nav .container .navbar > div.search i {
    display: none;
  }
  /* line 1784, ../scss/scss.scss */
  nav .container .navbar > div.search .search-open {
    position: relative;
    display: block;
    width: calc(100% + 1px);
    margin-top: 0;
    padding: 15px 10px;
    box-shadow: none;
  }
  /* line 1791, ../scss/scss.scss */
  nav .container .navbar > div.search .search-open div:hover {
    text-decoration: none;
    background: #e74c3c;
  }
  /* line 1797, ../scss/scss.scss */
  nav .container .navbar > div.nav_sitemap {
    display: block;
  }

  /* line 1804, ../scss/scss.scss */
  .md-margin-bottom-20 {
    margin-bottom: 20px;
  }

  /* line 1811, ../scss/scss.scss */
  .main-wrapper section.index-about .container .section-block {
    margin-bottom: 40px;
    width: 100%;
  }
  /* line 1814, ../scss/scss.scss */
  .main-wrapper section.index-about .container .section-block:nth-child(2n) {
    margin-right: 0;
  }
  /* line 1817, ../scss/scss.scss */
  .main-wrapper section.index-about .container .section-block:last-child {
    margin-bottom: 0;
  }
  /* line 1824, ../scss/scss.scss */
  .main-wrapper section.news-video .col-md-8.index-news {
    margin-bottom: 40px;
  }
  /* line 1826, ../scss/scss.scss */
  .main-wrapper section.news-video .col-md-8.index-news .col-md-7 {
    padding-left: 3px;
  }
  /* line 1830, ../scss/scss.scss */
  .main-wrapper section.news-video .col-md-8.index-news .col-md-7 .index-news-item a h3 {
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
  }

  /* line 1840, ../scss/scss.scss */
  .sidebar {
    margin: 0 0 30px 0;
  }

  /* About 關於我們
  －－－－－－－－－－－－－－－－－－－－－－
  －－－－－－－－－－－－－－－－－－－－－－
  －－－－－－－－－－－－－－－－－－－－－－*/
  /* line 1847, ../scss/scss.scss */
  section.module.parallax {
    height: auto;
  }
  /* line 1849, ../scss/scss.scss */
  section.module.parallax .row {
    margin-top: 50px;
  }
  /* line 1851, ../scss/scss.scss */
  section.module.parallax .row .about-item {
    margin-right: 0;
    margin-bottom: 30px;
    width: 100%;
  }
  /* line 1855, ../scss/scss.scss */
  section.module.parallax .row .about-item:last-child {
    margin-bottom: 0;
  }

  /* line 1862, ../scss/scss.scss */
  section.history .history-info {
    padding-left: 5px;
    margin-top: 15px;
  }

  /* News 最新消息
  －－－－－－－－－－－－－－－－－－－－－－
  －－－－－－－－－－－－－－－－－－－－－－
  －－－－－－－－－－－－－－－－－－－－－－*/
  /* line 1872, ../scss/scss.scss */
  .news-item .news-info {
    padding-left: 10px;
    margin-top: 10px;
  }

  /* Product 產品內頁
  －－－－－－－－－－－－－－－－－－－－－－
  －－－－－－－－－－－－－－－－－－－－－－
  －－－－－－－－－－－－－－－－－－－－－－*/
  /* line 1881, ../scss/scss.scss */
  .product-des {
    padding: 0;
  }

  /* Contact 聯絡我們
  －－－－－－－－－－－－－－－－－－－－－－
  －－－－－－－－－－－－－－－－－－－－－－
  －－－－－－－－－－－－－－－－－－－－－－*/
  /* line 1888, ../scss/scss.scss */
  .map-info {
    display: none;
  }

  /* line 1891, ../scss/scss.scss */
  .map {
    padding: 0;
  }
  /* line 1895, ../scss/scss.scss */
  .map .inquiry .SJ_feild .SJ_text,
  .map .inquiry .SJ_feild .SJ_textarea,
  .map .inquiry .SJ_feild .SJ_select {
    width: 100%;
  }
  /* line 1902, ../scss/scss.scss */
  .map .inquiry .SJ_feild.SJ_feild_14 .SJ_textarea {
    width: 100%;
  }

  /* sitemap
  －－－－－－－－－－－－－－－－－－－－－－
  －－－－－－－－－－－－－－－－－－－－－－
  －－－－－－－－－－－－－－－－－－－－－－*/
  /* line 1914, ../scss/scss.scss */
  .sitemap .col-md-3 {
    width: calc((100% - 20px) / 2);
  }
  /* line 1916, ../scss/scss.scss */
  .sitemap .col-md-3:nth-child(2n) {
    margin-right: 0;
  }
  /* line 1919, ../scss/scss.scss */
  .sitemap .col-md-3:nth-child(3n) {
    margin-right: 20px;
  }

  /* footer
  －－－－－－－－－－－－－－－－－－－－－－
  －－－－－－－－－－－－－－－－－－－－－－
  －－－－－－－－－－－－－－－－－－－－－－*/
  /* line 1930, ../scss/scss.scss */
  footer .footer-item .headline {
    margin-top: 20px;
  }
}
/* line 1940, ../scss/scss.scss */
.breadcrumb .container ul li {
  font-size: 12px;
}

@media screen and (max-width: 900px) {
  /* line 1949, ../scss/scss.scss */
  .product-list .product-item {
    width: calc((100% - 24px) / 2);
  }
  /* line 1951, ../scss/scss.scss */
  .product-list .product-item:nth-child(even) {
    margin-right: 0;
  }
  /* line 1954, ../scss/scss.scss */
  .product-list .product-item:nth-child(odd) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 640px) {
  /* line 1963, ../scss/scss.scss */
  .product-list .product-item {
    width: 100%;
  }
  /* line 1965, ../scss/scss.scss */
  .product-list .product-item:nth-child(odd) {
    margin-right: 0;
  }

  /* line 1972, ../scss/scss.scss */
  .specification ul.tabs li {
    width: calc((100% - 16px) / 4);
    float: none;
    display: inline-block;
    background: #f1f1f1;
  }
  /* line 1977, ../scss/scss.scss */
  .specification ul.tabs li a {
    padding: 0;
  }

  /* sitemap
  －－－－－－－－－－－－－－－－－－－－－－
  －－－－－－－－－－－－－－－－－－－－－－
  －－－－－－－－－－－－－－－－－－－－－－*/
  /* line 1988, ../scss/scss.scss */
  .sitemap .col-md-3 {
    width: 100%;
  }
  /* line 1990, ../scss/scss.scss */
  .sitemap .col-md-3:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 540px) {
  /* line 1998, ../scss/scss.scss */
  .breadcrumb {
    padding: 10px 0 0 0;
    text-align: center;
  }
  /* line 2002, ../scss/scss.scss */
  .breadcrumb .container ul {
    position: relative;
    margin-top: 15px;
  }

  /* line 2010, ../scss/scss.scss */
  .specification ul.tabs li {
    width: calc((100% - 8px) / 2);
    margin-bottom: 4px;
  }
}
/*@import 'https://fonts.googleapis.com/css?family=Raleway:300,400,600,700,900';*/
/* line 7, ../scss/_juili.scss */
* {
  font-family: Arial, '微軟正黑體';
  font-size: 15px;
  line-height: 25px;
}

/* line 13, ../scss/_juili.scss */
::selection {
  background: #e53b29;
  color: #fff;
}

/* line 18, ../scss/_juili.scss */
.index_block .row > a > div span, section.index-about .container .section-block a h3:before, .product-list .product-item h3:before, ul.qa li .q a:after {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* line 22, ../scss/_juili.scss */
.full_img {
  width: 100%;
  margin: 100px 0;
}

/* line 27, ../scss/_juili.scss */
.divTable {
  display: table;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
/* line 32, ../scss/_juili.scss */
.divTable .divTableCell {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

/* line 40, ../scss/_juili.scss */
p,
b {
  font-size: 18px;
  line-height: 28px;
}

/* line 46, ../scss/_juili.scss */
.font-18 {
  font-size: 18px;
  line-height: 18px;
}

/* line 51, ../scss/_juili.scss */
.c-hamburger--htx {
  background: #FFF !important;
}

/* line 56, ../scss/_juili.scss */
.c-hamburger span {
  background: #e53b29;
}
/* line 58, ../scss/_juili.scss */
.c-hamburger span:before, .c-hamburger span:after {
  background: #e53b29;
}

/* line 65, ../scss/_juili.scss */
.gotop {
  right: 0px;
  bottom: 0px !important;
}

/* line 71, ../scss/_juili.scss */
.headline h2 {
  font-size: 24px;
  border-bottom: 0;
}
/* line 74, ../scss/_juili.scss */
.headline h2 span {
  color: #e53b29;
  border-bottom: 0;
  padding-right: 15px;
}
/* line 79, ../scss/_juili.scss */
.headline h2 i {
  color: #666;
  display: inline-block;
  font-size: 18px;
  line-height: 25px;
  font-style: normal;
}

/* line 89, ../scss/_juili.scss */
header {
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid #d3d3d3;
}
/* line 97, ../scss/_juili.scss */
header .topbar {
  background: none;
}
/* line 101, ../scss/_juili.scss */
header .topbar .container > div a {
  padding: 18px 15px;
  font-size: 15px;
  color: #999;
}
/* line 105, ../scss/_juili.scss */
header .topbar .container > div a:hover {
  color: #666;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
/* line 110, ../scss/_juili.scss */
header .topbar .container > div:after {
  display: none;
}
/* line 114, ../scss/_juili.scss */
header .topbar .container .lang {
  color: #999;
  background: none;
  padding: 8px 15px;
  font-size: 12px;
}
/* line 121, ../scss/_juili.scss */
header .topbar .container .lang .lang_select a:hover {
  background: #dedede;
  color: #333;
}
/* line 131, ../scss/_juili.scss */
header .logo img {
  width: 96px;
  position: relative;
  top: -11px;
}
/* line 139, ../scss/_juili.scss */
header nav .container .navbar {
  top: -36px;
}
/* line 141, ../scss/_juili.scss */
header nav .container .navbar .submenu {
  top: calc(100% + 17px);
}
/* line 144, ../scss/_juili.scss */
header nav .container .navbar > div {
  margin: 1px 20px;
}
/* line 146, ../scss/_juili.scss */
header nav .container .navbar > div > a {
  padding: 13px 0px;
  font-size: 18px;
  color: #333;
  border-width: 0 0 5px 0;
}
/* line 151, ../scss/_juili.scss */
header nav .container .navbar > div > a:hover, header nav .container .navbar > div > a.active {
  color: #666;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
/* line 157, ../scss/_juili.scss */
header nav .container .navbar > div:last-child {
  margin-right: 20px;
}
/* line 160, ../scss/_juili.scss */
header nav .container .navbar > div.margin-right-0 {
  margin-right: 0px;
}
/* line 164, ../scss/_juili.scss */
header nav .container .navbar .search {
  width: 6px;
  padding: 0;
  background: none;
}
/* line 168, ../scss/_juili.scss */
header nav .container .navbar .search i {
  color: #333;
  margin-top: -5px;
  padding: 0;
}
/* line 173, ../scss/_juili.scss */
header nav .container .navbar .search:hover {
  background: none;
}
/* line 177, ../scss/_juili.scss */
header nav .container .navbar .search .search-open {
  background: #e53b29;
  margin-top: 0;
  top: 53px;
  padding: 0 10px 10px;
}
/* line 184, ../scss/_juili.scss */
header nav .container .navbar .search .search-open .input-group .input-group-btn input[type='submit'] {
  background-color: #bf2515;
}
/* line 186, ../scss/_juili.scss */
header nav .container .navbar .search .search-open .input-group .input-group-btn input[type='submit']:hover {
  background-color: #333;
}
/* line 191, ../scss/_juili.scss */
header nav .container .navbar .search .search-open .input-group input[type='text'] {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-family: 'Raleway', '微軟正黑體';
}
/* line 201, ../scss/_juili.scss */
header nav .container .navbar .search.click i {
  color: #fff;
}
/* line 207, ../scss/_juili.scss */
header nav .container .navbar .submenu div a {
  padding: 10px 20px;
  font-size: 18px;
}
/* line 211, ../scss/_juili.scss */
header nav .container .navbar .submenu div:hover {
  background: #eee;
}
/* line 213, ../scss/_juili.scss */
header nav .container .navbar .submenu div:hover a {
  color: #333;
}

@keyframes indexSider {
  from {
    bottom: 10px;
  }
  to {
    bottom: 40px;
  }
}
@-webkit-keyframes indexSider {
  from {
    bottom: 10px;
  }
  to {
    bottom: 40px;
  }
}
@keyframes indexSider_mb {
  from {
    bottom: -30px;
  }
  to {
    bottom: 0px;
  }
}
@-webkit-keyframes indexSider_mb {
  from {
    bottom: -30px;
  }
  to {
    bottom: 0px;
  }
}
/* line 260, ../scss/_juili.scss */
.index-slider {
  margin-top: 0;
}
/* line 262, ../scss/_juili.scss */
.index-slider .slider-img {
  height: 70vh;
  min-height: 500px;
}
/* line 265, ../scss/_juili.scss */
.index-slider .slider-img .container,
.index-slider .slider-img .container-fluid {
  height: 100%;
  display: block;
}
/* line 269, ../scss/_juili.scss */
.index-slider .slider-img .container .slider-info,
.index-slider .slider-img .container-fluid .slider-info {
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  display: block;
  top: inherit;
  bottom: 150px;
  transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
/* line 278, ../scss/_juili.scss */
.index-slider .slider-img .container .slider-info h3,
.index-slider .slider-img .container-fluid .slider-info h3 {
  color: #fff;
  display: inline;
  background: rgba(0, 0, 0, 0.3);
  padding: 3px 10px;
  font-weight: 600;
  font-size: 60px;
  line-height: 76px;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.45);
}
/* line 288, ../scss/_juili.scss */
.index-slider .slider-img .container .slider-info p,
.index-slider .slider-img .container-fluid .slider-info p {
  color: #fff;
  font-size: 25px;
  line-height: 30px;
  font-weight: bold;
  margin-top: 20px;
}
/* line 295, ../scss/_juili.scss */
.index-slider .slider-img .container .slider-info span,
.index-slider .slider-img .container-fluid .slider-info span {
  display: inline-block;
  position: relative;
  background: #e53b29;
  padding: 0 80px 0 15px;
  margin-top: 30px;
  height: 55px;
  line-height: 55px;
  font-size: 20px;
  text-align: left;
  color: #fff;
  font-weight: bold;
}
/* line 307, ../scss/_juili.scss */
.index-slider .slider-img .container .slider-info span:hover,
.index-slider .slider-img .container-fluid .slider-info span:hover {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  background: #bf2515;
}
/* line 311, ../scss/_juili.scss */
.index-slider .slider-img .container .slider-info span:after,
.index-slider .slider-img .container-fluid .slider-info span:after {
  content: "";
  height: 35px;
  width: 65px;
  top: 10px;
  right: 0px;
  position: absolute;
  display: block;
  border-left: 1px solid #fff;
  background: url("../images/index_slider_icon.png") no-repeat center/10px 15px;
}
/* line 326, ../scss/_juili.scss */
.index-slider .slider-img .container-fluid .slider-info {
  position: absolute;
  left: 0;
  padding-left: 3vw;
  bottom: 40px;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
/* line 340, ../scss/_juili.scss */
.index-slider .slider-img.slick-current .container-fluid .slider-info {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  animation-name: indexSider;
  animation-duration: .5s;
  -webkit-animation-name: indexSider;
  /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: .5s;
  /* Safari 4.0 - 8.0 */
}
/* line 352, ../scss/_juili.scss */
.index-slider .slick-dots {
  width: 1170px;
  bottom: 100px;
  left: 50%;
  margin-left: -585px;
  text-align: left;
}

/* line 363, ../scss/_juili.scss */
.index_block .row > a {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  display: block;
  height: 20vw;
  min-height: 300px;
  padding: 40px;
}
/* line 369, ../scss/_juili.scss */
.index_block .row > a > div {
  height: 100%;
  width: 45%;
}
/* line 372, ../scss/_juili.scss */
.index_block .row > a > div h3 {
  font-weight: bold;
  font-size: 28px;
  line-height: 35px;
}
/* line 377, ../scss/_juili.scss */
.index_block .row > a > div p {
  font-size: 15px;
  line-height: 25px;
  margin-top: 5px;
}
/* line 382, ../scss/_juili.scss */
.index_block .row > a > div span {
  display: inline-block;
  padding: 7px 20px;
  margin-top: 15px;
  font-weight: bold;
  cursor: pointer;
  font-size: 15px;
}
/* line 392, ../scss/_juili.scss */
.index_block .row > a.rd {
  background: url("../images/_base/index_block01_bg.jpg") no-repeat center/cover;
}
/* line 395, ../scss/_juili.scss */
.index_block .row > a.rd div h3 {
  color: #fff;
}
/* line 398, ../scss/_juili.scss */
.index_block .row > a.rd div p {
  color: #fff;
}
/* line 401, ../scss/_juili.scss */
.index_block .row > a.rd div span {
  color: #e53b29;
  background: #FFF;
}
/* line 408, ../scss/_juili.scss */
.index_block .row > a.rd:hover > div span {
  color: #fff;
  background: #000;
}
/* line 415, ../scss/_juili.scss */
.index_block .row > a.pd {
  background: url("../images/_base/index_block02_bg.jpg") no-repeat center/cover;
}
/* line 418, ../scss/_juili.scss */
.index_block .row > a.pd div h3 {
  color: #333;
}
/* line 421, ../scss/_juili.scss */
.index_block .row > a.pd div p {
  color: #666;
}
/* line 424, ../scss/_juili.scss */
.index_block .row > a.pd div span {
  color: #fff;
  background: #e53b29;
}
/* line 431, ../scss/_juili.scss */
.index_block .row > a.pd:hover > div span {
  background: #000;
}
/* line 437, ../scss/_juili.scss */
.index_block .row > a.ab {
  background: url("../images/_base/index_block03_bg.jpg") no-repeat center/cover;
}
/* line 440, ../scss/_juili.scss */
.index_block .row > a.ab div h3 {
  color: #fff;
}
/* line 443, ../scss/_juili.scss */
.index_block .row > a.ab div p {
  color: #fff;
}
/* line 446, ../scss/_juili.scss */
.index_block .row > a.ab div span {
  color: #003486;
  background: #FFF;
}
/* line 453, ../scss/_juili.scss */
.index_block .row > a.ab:hover > div span {
  color: #fff;
  background: #000;
}

/* line 464, ../scss/_juili.scss */
.main-wrapper {
  padding: 85px 0;
}

/* line 469, ../scss/_juili.scss */
.sidebar .select_active {
  display: none;
}
/* line 472, ../scss/_juili.scss */
.sidebar h2 {
  font-size: 20px;
  height: 60px;
  line-height: 60px;
  border-bottom: 3px solid #e53b29;
  color: #333;
  list-style: disc;
  font-weight: bold;
}
/* line 481, ../scss/_juili.scss */
.sidebar ul {
  margin: 12px 0;
  border-bottom: 1px solid #ccc;
}
/* line 484, ../scss/_juili.scss */
.sidebar ul li {
  border: none;
  margin-bottom: 7px;
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
}
/* line 490, ../scss/_juili.scss */
.sidebar ul li:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #666;
  top: 50%;
  margin-top: -2px;
  left: 15px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
/* line 502, ../scss/_juili.scss */
.sidebar ul li a {
  padding: 0;
  font-size: 15px;
  color: #666;
}
/* line 507, ../scss/_juili.scss */
.sidebar ul li.active, .sidebar ul li:hover {
  background: #ededed;
}
/* line 510, ../scss/_juili.scss */
.sidebar ul li.active a, .sidebar ul li:hover a {
  color: #666;
}
/* line 515, ../scss/_juili.scss */
.sidebar ul li.active:hover {
  background: #ededed;
}
/* line 517, ../scss/_juili.scss */
.sidebar ul li.active:hover a {
  color: #666;
}
/* line 522, ../scss/_juili.scss */
.sidebar ul li:last-child {
  border-bottom: none;
}

/* line 534, ../scss/_juili.scss */
section.index-about .container .section-block a h3 {
  background: #FFF;
  color: #e53b29;
}
/* line 537, ../scss/_juili.scss */
section.index-about .container .section-block a h3:before {
  content: "";
  width: 0px;
  height: 1px;
  display: inline-block;
  background: #e53b29;
  position: relative;
  bottom: 7px;
  margin-right: 0px;
}
/* line 551, ../scss/_juili.scss */
section.index-about .container .section-block a:hover h3:before {
  width: 15px;
  margin-right: 15px;
}

/* line 563, ../scss/_juili.scss */
.red_tit {
  font-size: 30px;
  margin-bottom: 20px;
  line-height: 40px;
  color: #e53b29;
}
/* line 568, ../scss/_juili.scss */
.red_tit select {
  font-size: 18px;
  line-height: 30px;
  display: inline-block;
  float: right;
  color: #333;
  height: 30px;
  min-width: 100px;
  border: 1px solid #ccc;
  padding: 0 5px;
}
/* line 578, ../scss/_juili.scss */
.red_tit select option {
  font-size: 18px;
}

/* line 584, ../scss/_juili.scss */
.index_rd {
  height: 350px;
}
/* line 586, ../scss/_juili.scss */
.index_rd .hide_img {
  display: none;
}
/* line 589, ../scss/_juili.scss */
.index_rd .container {
  height: 100%;
}
/* line 591, ../scss/_juili.scss */
.index_rd .container .row {
  height: 100%;
}
/* line 593, ../scss/_juili.scss */
.index_rd .container .row .left,
.index_rd .container .row .right {
  height: 100%;
  display: block;
}
/* line 598, ../scss/_juili.scss */
.index_rd .container .row .right {
  display: block;
  background: #e53b29;
  color: #fff;
}
/* line 602, ../scss/_juili.scss */
.index_rd .container .row .right .inner {
  padding: 40px;
}
/* line 605, ../scss/_juili.scss */
.index_rd .container .row .right h2 {
  color: #fff;
  font-size: 18px;
  line-height: 25px;
  font-weight: bold;
}
/* line 611, ../scss/_juili.scss */
.index_rd .container .row .right h3 {
  color: #fff;
  font-weight: 900;
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 20px;
}
/* line 618, ../scss/_juili.scss */
.index_rd .container .row .right p {
  color: #fff;
  font-size: 15px;
  line-height: 25px;
}

/* line 628, ../scss/_juili.scss */
footer {
  padding: 33px 0 0;
}
/* line 633, ../scss/_juili.scss */
footer .container .footer-item ul.footer-link {
  text-align: right;
}
/* line 635, ../scss/_juili.scss */
footer .container .footer-item ul.footer-link li {
  display: inline-block;
  margin-left: 10px;
}
/* line 638, ../scss/_juili.scss */
footer .container .footer-item ul.footer-link li a {
  font-size: 15px;
  line-height: 20px;
}
/* line 646, ../scss/_juili.scss */
footer .container .footer-item .footer-contact > div {
  line-height: 21px;
  margin-bottom: 0;
}
/* line 649, ../scss/_juili.scss */
footer .container .footer-item .footer-contact > div span {
  font-size: 15px;
  line-height: 30px;
  display: inline-block;
  margin-right: 10px;
}

/* line 662, ../scss/_juili.scss */
.slider .inner_img {
  display: none;
}

/* line 667, ../scss/_juili.scss */
.hide_li {
  display: none;
}

/* line 672, ../scss/_juili.scss */
html.fix {
  position: relative;
  width: 100%;
}

/* line 678, ../scss/_juili.scss */
.product-list {
  padding-left: 50px;
}
/* line 684, ../scss/_juili.scss */
.product-list .product-item a:hover h3:before {
  width: 15px;
  margin-right: 15px;
}
/* line 692, ../scss/_juili.scss */
.product-list .product-item h3:after {
  display: none;
}
/* line 695, ../scss/_juili.scss */
.product-list .product-item h3:before {
  content: "";
  width: 0px;
  height: 1px;
  display: inline-block;
  background: #e53b29;
  position: relative;
  bottom: 7px;
  margin-right: 0px;
}

/* line 712, ../scss/_juili.scss */
.product-des .inquire a {
  font-size: 15px;
  width: 150px;
  display: inline-block;
  text-align: center;
  height: 50px;
  line-height: 50px;
  padding: 0;
}

/* line 724, ../scss/_juili.scss */
.specification {
  margin-bottom: 80px;
}

/* line 730, ../scss/_juili.scss */
.slider.productlist-slider .section-block {
  padding: 0 20px;
  text-align: left;
}
/* line 734, ../scss/_juili.scss */
.slider.productlist-slider .section-block a h4 {
  font-style: inherit;
  font-size: 15px;
  line-height: 25px;
  color: #666;
}

/* line 747, ../scss/_juili.scss */
section:last-child.client {
  margin-bottom: 50px;
}

/* line 753, ../scss/_juili.scss */
.inner_banner {
  padding-top: 77px;
  height: 314px;
}
/* line 756, ../scss/_juili.scss */
.inner_banner .container {
  height: 100%;
}
/* line 758, ../scss/_juili.scss */
.inner_banner .container .row {
  height: 100%;
  text-align: center;
}
/* line 761, ../scss/_juili.scss */
.inner_banner .container .row h6 {
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  display: none;
}
/* line 768, ../scss/_juili.scss */
.inner_banner .container .row h2 {
  font-size: 40px;
  line-height: 40px;
  color: #fff;
  font-weight: bold;
}
/* line 776, ../scss/_juili.scss */
.inner_banner.investors {
  background: url("../images/investors_banner_bg.jpg") center/cover;
}
/* line 778, ../scss/_juili.scss */
.inner_banner.investors h6,
.inner_banner.investors h2 {
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
}
/* line 783, ../scss/_juili.scss */
.inner_banner.csr {
  background: url("../images/csr_banner_bg.jpg") center/cover;
}
/* line 785, ../scss/_juili.scss */
.inner_banner.csr h6,
.inner_banner.csr h2 {
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
}
/* line 790, ../scss/_juili.scss */
.inner_banner.news {
  background: url("../images/news_banner_bg.jpg") center/cover;
}
/* line 792, ../scss/_juili.scss */
.inner_banner.news h6,
.inner_banner.news h2 {
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
}
/* line 797, ../scss/_juili.scss */
.inner_banner.contact {
  background: url("../images/contact_banner_bg.jpg") center/cover;
}
/* line 799, ../scss/_juili.scss */
.inner_banner.contact h6,
.inner_banner.contact h2 {
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
}
/* line 804, ../scss/_juili.scss */
.inner_banner.am {
  background: url("../images/am_banner_bg02.jpg") center bottom/cover;
}
/* line 806, ../scss/_juili.scss */
.inner_banner.am h6,
.inner_banner.am h2 {
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
}
/* line 811, ../scss/_juili.scss */
.inner_banner.rd {
  background: url("../images/rd_banner_bg.jpg") center/cover;
}
/* line 813, ../scss/_juili.scss */
.inner_banner.rd h6,
.inner_banner.rd h2 {
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
}
/* line 818, ../scss/_juili.scss */
.inner_banner.ab {
  padding-top: 85px;
  height: 250px;
}
/* line 821, ../scss/_juili.scss */
.inner_banner.ab h6 {
  color: #858585 !important;
}
/* line 824, ../scss/_juili.scss */
.inner_banner.ab h2 {
  color: #ef1403 !important;
}
/* line 827, ../scss/_juili.scss */
.inner_banner.ab span {
  display: inline-block;
  width: 4px;
  height: 32px;
  background: #a9a9a9;
  margin-top: 20px;
}

/* line 837, ../scss/_juili.scss */
.tb_type01 {
  border: 1px solid #dbdbdb;
}
/* line 840, ../scss/_juili.scss */
.tb_type01 tr td,
.tb_type01 tr th {
  border-bottom: 1px solid #dbdbdb;
  border-right: 1px solid #dbdbdb;
  font-size: 18px;
  line-height: 28px;
  padding: 15px 15px;
  color: #666;
  vertical-align: top;
}
/* line 849, ../scss/_juili.scss */
.tb_type01 tr td.tit,
.tb_type01 tr th.tit {
  color: #333;
  font-weight: bold;
  border-left: 6px solid #dbdbdb;
}
/* line 854, ../scss/_juili.scss */
.tb_type01 tr td:last-child,
.tb_type01 tr th:last-child {
  border-right: none;
}
/* line 857, ../scss/_juili.scss */
.tb_type01 tr td.center,
.tb_type01 tr th.center {
  text-align: center;
}
/* line 861, ../scss/_juili.scss */
.tb_type01 tr th {
  background: #F1F1F1;
  color: #333;
  font-weight: bold;
}
/* line 868, ../scss/_juili.scss */
.tb_type01.dark_th th {
  background: #666;
  color: #fff;
}

/* line 875, ../scss/_juili.scss */
.download_btn {
  margin: 0 auto;
  display: block;
  background: #e53b29;
  text-align: center;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 15px;
  line-height: 28px;
  height: 28px;
  width: 75px;
  color: #fff;
}
/* line 887, ../scss/_juili.scss */
.download_btn:hover {
  background: #333;
  color: #fff;
}
/* line 891, ../scss/_juili.scss */
.download_btn.left {
  margin: 20px 0 0 0;
}

/* line 897, ../scss/_juili.scss */
ul.dot {
  padding-left: 20px;
  list-style: disc;
}
/* line 900, ../scss/_juili.scss */
ul.dot li {
  list-style: disc;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 10px;
}
/* line 907, ../scss/_juili.scss */
ul.number {
  padding-left: 20px;
  list-style: decimal;
}
/* line 910, ../scss/_juili.scss */
ul.number li {
  list-style: decimal;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 10px;
  padding-left: 20px;
}
/* line 919, ../scss/_juili.scss */
ul.under_line li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 15px;
  line-height: 25px;
  border-bottom: 1px solid #d5d5d5;
  font-size: 18px;
  line-height: 28px;
}
/* line 928, ../scss/_juili.scss */
ul.under_line.news {
  margin-top: 15px;
}
/* line 930, ../scss/_juili.scss */
ul.under_line.news li {
  margin-bottom: 7px;
  padding-bottom: 7px;
}
/* line 937, ../scss/_juili.scss */
ul.border_box li {
  text-align: center;
}
/* line 939, ../scss/_juili.scss */
ul.border_box li > div {
  padding: 50px 15px;
  border: 1px solid #e8e8e8;
}
/* line 943, ../scss/_juili.scss */
ul.border_box li b {
  color: #dedddd;
  font-size: 80px;
  line-height: 40px;
}
/* line 948, ../scss/_juili.scss */
ul.border_box li p {
  color: #666;
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 953, ../scss/_juili.scss */
ul.border_box li .download_btn {
  width: auto;
  display: inline-block;
  padding: 0 15px;
}
/* line 962, ../scss/_juili.scss */
ul.qa.show li {
  border-bottom: none;
}
/* line 965, ../scss/_juili.scss */
ul.qa.show li .q a {
  cursor: default;
  padding-right: 0x;
}
/* line 968, ../scss/_juili.scss */
ul.qa.show li .q a:before, ul.qa.show li .q a:after {
  display: none;
}
/* line 974, ../scss/_juili.scss */
ul.qa.show li .a {
  display: block;
}
/* line 979, ../scss/_juili.scss */
ul.qa li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 15px;
  line-height: 25px;
  border-bottom: 1px solid #d5d5d5;
}
/* line 985, ../scss/_juili.scss */
ul.qa li .q {
  position: relative;
}
/* line 987, ../scss/_juili.scss */
ul.qa li .q:before {
  content: attr(data-tit);
  position: absolute;
  top: 0px;
  left: 0;
  font-weight: bold;
}
/* line 994, ../scss/_juili.scss */
ul.qa li .q a {
  position: relative;
  cursor: pointer;
  font-size: 18px;
  line-height: 28px;
  padding-left: 30px;
  padding-right: 15px;
  display: block;
  color: #333;
  font-weight: bold;
}
/* line 1004, ../scss/_juili.scss */
ul.qa li .q a:before {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 19px;
  height: 3px;
  background: #333;
}
/* line 1013, ../scss/_juili.scss */
ul.qa li .q a:after {
  content: "";
  position: absolute;
  right: 8px;
  top: 3px;
  width: 3px;
  height: 19px;
  background: #333;
}
/* line 1025, ../scss/_juili.scss */
ul.qa li .a {
  display: none;
  margin-top: 15px;
  padding-left: 30px;
  color: #666;
}
/* line 1035, ../scss/_juili.scss */
ul.qa li.active .q a:after {
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

/* line 1047, ../scss/_juili.scss */
.site_list .map iframe {
  width: 100%;
  height: 220px;
}
/* line 1051, ../scss/_juili.scss */
.site_list .map .img {
  height: 220px;
  display: block;
  position: relative;
  margin-bottom: 20px;
}
/* line 1056, ../scss/_juili.scss */
.site_list .map .img .link {
  display: block;
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 35px;
  height: 35px;
  text-align: center;
  padding: 5px 0;
  background: #000;
}
/* line 1067, ../scss/_juili.scss */
.site_list .map .img .link i {
  color: #fff;
}
/* line 1070, ../scss/_juili.scss */
.site_list .map .img .link:hover {
  background: #e53b29;
}
/* line 1077, ../scss/_juili.scss */
.site_list .txt {
  min-height: 200px;
  margin-bottom: 50px;
}
/* line 1080, ../scss/_juili.scss */
.site_list .txt b {
  margin-bottom: 10px;
  display: block;
  font-size: 20px;
}

/* line 1090, ../scss/_juili.scss */
.news-item .news-info h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
}
/* line 1095, ../scss/_juili.scss */
.news-item .news-info p {
  margin-top: 10px;
}

/* line 1103, ../scss/_juili.scss */
.news-view .news-title h3 {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 15px;
}

/* line 1112, ../scss/_juili.scss */
.ex_list .ex_box {
  display: inline-block;
  margin-bottom: 25px;
  overflow: hidden;
  width: 100%;
}
/* line 1120, ../scss/_juili.scss */
.ex_list > div:nth-child(even) .ex_box {
  float: right;
}
/* line 1125, ../scss/_juili.scss */
.ex_list .txt {
  margin: 15px 0 20px;
}
/* line 1127, ../scss/_juili.scss */
.ex_list .txt h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  color: #333;
  min-height: 45px;
}

/* line 1138, ../scss/_juili.scss */
.am_list .row {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #e5e5e5;
}
/* line 1142, ../scss/_juili.scss */
.am_list .row .am_box {
  border-right: 1px solid #e5e5e5;
  text-align: center;
}
/* line 1145, ../scss/_juili.scss */
.am_list .row .am_box img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
}
/* line 1150, ../scss/_juili.scss */
.am_list .row .am_box b {
  font-size: 25px;
  line-height: 35px;
}
/* line 1154, ../scss/_juili.scss */
.am_list .row .am_box:last-child {
  border: none;
}

/* line 1162, ../scss/_juili.scss */
.rd_box_outer .rd_box {
  padding-bottom: 100px;
  margin-top: 100px;
  border-bottom: 1px solid #dfdfdf;
  text-align: center;
}
/* line 1168, ../scss/_juili.scss */
.rd_box_outer .rd_box .txt h2 {
  color: #333;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 20px;
}
/* line 1174, ../scss/_juili.scss */
.rd_box_outer .rd_box .txt p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 30px;
}
/* line 1180, ../scss/_juili.scss */
.rd_box_outer .rd_box:first-child {
  margin-top: 64px;
}
/* line 1183, ../scss/_juili.scss */
.rd_box_outer .rd_box:last-child {
  border: none;
}

/* line 1189, ../scss/_juili.scss */
.rd_slider {
  text-align: center;
}
/* line 1191, ../scss/_juili.scss */
.rd_slider img {
  margin: 0 auto 20px;
}
/* line 1194, ../scss/_juili.scss */
.rd_slider .slick-arrow {
  z-index: 1;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  margin-top: -46px;
  border-radius: 50%;
  overflow: hidden;
}
/* line 1202, ../scss/_juili.scss */
.rd_slider .slick-arrow:before {
  display: none;
}
/* line 1205, ../scss/_juili.scss */
.rd_slider .slick-arrow.slick-prev {
  background: url("../images/arrow_icon_fff_prev.png") #e53b29 no-repeat center/11px 16px;
}
/* line 1208, ../scss/_juili.scss */
.rd_slider .slick-arrow.slick-next {
  background: url("../images/arrow_icon_fff.png") #e53b29 no-repeat center/11px 16px;
}
/* line 1211, ../scss/_juili.scss */
.rd_slider .slick-arrow:hover {
  background-color: #333;
}

/* line 1217, ../scss/_juili.scss */
.inner_nav {
  position: relative;
}
/* line 1219, ../scss/_juili.scss */
.inner_nav .select_active {
  display: none;
}
/* line 1223, ../scss/_juili.scss */
.inner_nav .select ul {
  text-align: center;
}
/* line 1225, ../scss/_juili.scss */
.inner_nav .select ul li {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
/* line 1232, ../scss/_juili.scss */
.inner_nav .select ul li a {
  font-size: 18px;
  line-height: 28px;
  font-weight: bold;
  display: block;
  padding: 12px 12px;
  color: #fff;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
/* line 1242, ../scss/_juili.scss */
.inner_nav .select ul li.active a {
  background: #FFF;
  color: #707070;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
/* line 1251, ../scss/_juili.scss */
.inner_nav .inner {
  background: #e53b29;
  padding-top: 15px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
/* line 1259, ../scss/_juili.scss */
.inner_nav .inner.fixed {
  position: fixed;
}
/* line 1263, ../scss/_juili.scss */
.inner_nav.product {
  top: 86px;
  height: 64px;
}
/* line 1267, ../scss/_juili.scss */
.inner_nav.about {
  top: 0px;
  height: 64px;
}

/* line 1273, ../scss/_juili.scss */
.p_box_outer {
  position: relative;
  margin-top: 86px;
}
/* line 1277, ../scss/_juili.scss */
.p_box_outer .p_box .txt {
  margin-bottom: 50px;
  text-align: center;
}
/* line 1280, ../scss/_juili.scss */
.p_box_outer .p_box .txt h2 {
  font-size: 30px;
  font-weight: bold;
  color: #333;
  line-height: 40px;
  margin-bottom: 25px;
}
/* line 1287, ../scss/_juili.scss */
.p_box_outer .p_box .txt p {
  color: #666;
}
/* line 1291, ../scss/_juili.scss */
.p_box_outer .p_box#p01 {
  padding-top: 10vw;
  background: url("../images/p_box01_02_bg.jpg") no-repeat center -12vw/100%;
}

/* line 1298, ../scss/_juili.scss */
.threesixty {
  margin: 50px 0 !important;
  position: relative;
}
/* line 1301, ../scss/_juili.scss */
.threesixty:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 25%;
  width: 53px;
  height: 38px;
  background: url("../images/360.png") no-repeat center/cover;
}
/* line 1311, ../scss/_juili.scss */
.threesixty p {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  text-align: center;
}

/* line 1321, ../scss/_juili.scss */
.p_list {
  margin-bottom: 100px;
}
/* line 1323, ../scss/_juili.scss */
.p_list > div {
  margin-bottom: 40px;
}
/* line 1325, ../scss/_juili.scss */
.p_list > div > div {
  width: 95%;
  margin: 0 auto;
  padding-bottom: 20px;
}
/* line 1331, ../scss/_juili.scss */
.p_list > div p {
  text-align: center;
}

/* line 1337, ../scss/_juili.scss */
.p2_banner {
  margin-bottom: 100px;
  background: url("../images/p2_banner_bg.jpg") #343434 no-repeat center;
  padding: 30px 0;
  text-align: center;
}
/* line 1342, ../scss/_juili.scss */
.p2_banner img {
  width: 130px;
  margin-bottom: 10px;
}
/* line 1346, ../scss/_juili.scss */
.p2_banner h2 {
  font-weight: bold;
  font-size: 25px;
  color: #fff;
  margin-bottom: 20px;
}
/* line 1352, ../scss/_juili.scss */
.p2_banner .download_btn {
  display: inline-block;
  width: auto;
  padding: 5px 20px;
  height: auto;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  color: #fff;
}

/* line 1362, ../scss/_juili.scss */
.chart_box {
  overflow: hidden;
  margin-top: 2vw;
}
/* line 1365, ../scss/_juili.scss */
.chart_box h3 {
  font-weight: bold;
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}
/* line 1371, ../scss/_juili.scss */
.chart_box img {
  width: 90%;
}
/* line 1375, ../scss/_juili.scss */
.chart_box ul li {
  padding-bottom: 2px;
  margin-bottom: 2px;
  border-bottom: 1px solid #e3e3e3;
  color: #666;
  padding-left: 20px;
  position: relative;
}
/* line 1382, ../scss/_juili.scss */
.chart_box ul li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 14px;
  height: 14px;
}
/* line 1394, ../scss/_juili.scss */
.chart_box ul li:nth-child(1):before {
  background: #E34647;
}
/* line 1399, ../scss/_juili.scss */
.chart_box ul li:nth-child(2):before {
  background: #ff9d32;
}
/* line 1404, ../scss/_juili.scss */
.chart_box ul li:nth-child(3):before {
  background: #5ea2e5;
}
/* line 1409, ../scss/_juili.scss */
.chart_box ul li:nth-child(4):before {
  background: #d4d6e3;
}

/* line 1418, ../scss/_juili.scss */
.client-group > div {
  width: calc(100% / 5);
  float: left;
}

/* line 1433, ../scss/_juili.scss */
.ab01 {
  background: url("../images/ab01_bg.jpg") no-repeat center/cover;
  padding: 150px 0;
}
/* line 1436, ../scss/_juili.scss */
.ab01 img {
  width: 80%;
}
/* line 1440, ../scss/_juili.scss */
.ab01 .row > div {
  text-align: center;
}
/* line 1444, ../scss/_juili.scss */
.ab01 .pc {
  display: block;
}

/* line 1449, ../scss/_juili.scss */
.ab02 {
  padding: 150px 0;
  background: url("../images/ab02_bg.jpg") no-repeat center/cover;
}
/* line 1452, ../scss/_juili.scss */
.ab02 .tit_img {
  text-align: center;
}
/* line 1454, ../scss/_juili.scss */
.ab02 .tit_img img {
  max-width: 100%;
}
/* line 1457, ../scss/_juili.scss */
.ab02 .tit_img p {
  margin-top: 15px;
  font-size: 18px;
  line-height: 28px;
  color: #333;
}
/* line 1464, ../scss/_juili.scss */
.ab02 .tit_txt {
  text-align: center;
  margin-top: 35px;
}
/* line 1467, ../scss/_juili.scss */
.ab02 .tit_txt h2 {
  color: #e53b29;
  font-size: 30px;
  line-height: 40px;
}
/* line 1472, ../scss/_juili.scss */
.ab02 .tit_txt h5 {
  margin-top: 25px;
  color: #333;
  font-size: 18px;
  line-height: 28px;
}
/* line 1479, ../scss/_juili.scss */
.ab02 ul {
  text-align: center;
  width: 768px;
  display: block;
  margin: 0 auto;
  margin-top: 35px;
}
/* line 1485, ../scss/_juili.scss */
.ab02 ul li {
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  display: block;
  float: left;
  width: 236px;
  margin-right: 30px;
}
/* line 1492, ../scss/_juili.scss */
.ab02 ul li > div {
  height: 415px;
  background: #df0015;
  color: #fff;
  padding: 15px;
}
/* line 1498, ../scss/_juili.scss */
.ab02 ul li .img {
  border-bottom: 2px solid #ffa200;
  padding-bottom: 20px;
  margin-bottom: 15px;
  text-align: center;
}
/* line 1503, ../scss/_juili.scss */
.ab02 ul li .img img {
  max-width: 60%;
}
/* line 1506, ../scss/_juili.scss */
.ab02 ul li .img h2 {
  color: #fff;
  font-size: 25px;
  line-height: 35px;
  font-weight: bold;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
/* line 1513, ../scss/_juili.scss */
.ab02 ul li .img h6 {
  font-size: 12px;
  line-height: 21px;
  color: #fff;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
/* line 1521, ../scss/_juili.scss */
.ab02 ul li .txt p {
  font-weight: bold;
  color: #fff;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
}
/* line 1527, ../scss/_juili.scss */
.ab02 ul li:nth-child(3) {
  margin-right: 0;
}
/* line 1531, ../scss/_juili.scss */
.ab02 ul li:nth-child(2) > div {
  background: #f5b300;
}
/* line 1534, ../scss/_juili.scss */
.ab02 ul li:nth-child(2) .img {
  border-bottom: 2px solid #f60017;
}

/* line 1542, ../scss/_juili.scss */
.ab03 {
  padding: 150px 0;
}
/* line 1545, ../scss/_juili.scss */
.ab03 ul li {
  padding: 15px;
  height: 230px;
  position: relative;
  border-bottom: 1px solid #e3e3e3;
}
/* line 1550, ../scss/_juili.scss */
.ab03 ul li:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 5%;
  height: 90%;
  width: 1px;
  background: #e3e3e3;
}
/* line 1560, ../scss/_juili.scss */
.ab03 ul li .img {
  height: 200px;
  float: left;
  width: 50%;
  text-align: center;
}
/* line 1565, ../scss/_juili.scss */
.ab03 ul li .img img {
  width: auto;
  height: 200px;
}
/* line 1570, ../scss/_juili.scss */
.ab03 ul li .txt {
  height: 200px;
  float: left;
  width: 50%;
  padding: 0 10px;
}
/* line 1575, ../scss/_juili.scss */
.ab03 ul li .txt h3 {
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  color: #333;
}
/* line 1581, ../scss/_juili.scss */
.ab03 ul li .txt p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 25px;
  color: #666;
}
/* line 1587, ../scss/_juili.scss */
.ab03 ul li .txt span {
  display: block;
  margin-top: 10px;
  color: #333;
}
/* line 1594, ../scss/_juili.scss */
.ab03 ul li:nth-child(3n+3):before {
  display: none;
}

/* line 1602, ../scss/_juili.scss */
.ab04 {
  background: url("../images/his_bg.jpg") no-repeat center top/100%;
  padding: 150px 0 0;
}
/* line 1605, ../scss/_juili.scss */
.ab04 ul {
  list-style: none;
}
/* line 1607, ../scss/_juili.scss */
.ab04 ul > li {
  position: relative;
}
/* line 1609, ../scss/_juili.scss */
.ab04 ul > li > div {
  position: relative;
}
/* line 1611, ../scss/_juili.scss */
.ab04 ul > li > div:before, .ab04 ul > li > div:after {
  content: "";
  display: block;
  width: 4px;
  height: calc( 50% - 50px);
  position: absolute;
  background: #e53b29;
}
/* line 1620, ../scss/_juili.scss */
.ab04 ul > li > div:before {
  top: 0;
}
/* line 1623, ../scss/_juili.scss */
.ab04 ul > li > div:after {
  bottom: 0;
}
/* line 1627, ../scss/_juili.scss */
.ab04 ul > li h2 {
  position: absolute;
  top: 50%;
  text-align: center;
  height: 56px;
  width: calc( 1170px / 6);
  padding: 0 5px;
  margin-top: -28px;
  font-weight: bold;
  font-size: 55px;
  line-height: 55px;
  text-align: center;
  color: #000;
}
/* line 1640, ../scss/_juili.scss */
.ab04 ul > li h2 span {
  color: #e53b29;
}
/* line 1644, ../scss/_juili.scss */
.ab04 ul > li ol {
  list-style: none;
  position: relative;
}
/* line 1647, ../scss/_juili.scss */
.ab04 ul > li ol li {
  position: relative;
  padding-bottom: 13px;
  margin-bottom: 13px;
  border-bottom: 1px solid #cacaca;
}
/* line 1652, ../scss/_juili.scss */
.ab04 ul > li ol li:before {
  content: attr(data-year);
  position: absolute;
  font-weight: bold;
  font-size: 20px;
  color: #333;
  padding: 0 10px;
  top: 0px;
  height: 100%;
  border-bottom: 1px solid #858585;
}
/* line 1663, ../scss/_juili.scss */
.ab04 ul > li ol li p {
  color: #666;
}
/* line 1669, ../scss/_juili.scss */
.ab04 ul > li:nth-child(odd) > div {
  padding-left: calc( 1170px / 6);
}
/* line 1671, ../scss/_juili.scss */
.ab04 ul > li:nth-child(odd) > div h2 {
  left: 0;
}
/* line 1674, ../scss/_juili.scss */
.ab04 ul > li:nth-child(odd) > div:before, .ab04 ul > li:nth-child(odd) > div:after {
  left: calc( 1170px / 12);
  margin-left: -2px;
}
/* line 1681, ../scss/_juili.scss */
.ab04 ul > li:nth-child(odd) ol li {
  padding-left: 70px;
}
/* line 1683, ../scss/_juili.scss */
.ab04 ul > li:nth-child(odd) ol li:before {
  left: 0px;
}
/* line 1690, ../scss/_juili.scss */
.ab04 ul > li:nth-child(even) > div {
  padding-right: calc( 1170px / 6);
}
/* line 1692, ../scss/_juili.scss */
.ab04 ul > li:nth-child(even) > div:before, .ab04 ul > li:nth-child(even) > div:after {
  right: calc( 1170px / 12);
  margin-right: -2px;
}
/* line 1697, ../scss/_juili.scss */
.ab04 ul > li:nth-child(even) > div h2 {
  right: 0;
}
/* line 1702, ../scss/_juili.scss */
.ab04 ul > li:nth-child(even) ol li {
  text-align: right;
  padding-right: 70px;
}
/* line 1705, ../scss/_juili.scss */
.ab04 ul > li:nth-child(even) ol li:before {
  right: 0px;
}
/* line 1713, ../scss/_juili.scss */
.ab04 ul > li:nth-child(1) > div:before {
  display: none;
}
/* line 1718, ../scss/_juili.scss */
.ab04 ul > li:nth-child(2) {
  top: -50px;
}
/* line 1721, ../scss/_juili.scss */
.ab04 ul > li:nth-child(3) {
  top: -100px;
}
/* line 1724, ../scss/_juili.scss */
.ab04 ul > li:nth-child(4) {
  top: -150px;
}
/* line 1727, ../scss/_juili.scss */
.ab04 ul > li:nth-child(5) {
  top: -150px;
}

/* line 1734, ../scss/_juili.scss */
.ab05 {
  position: relative;
  height: 720px;
  background: url("../images/map_tw.jpg") no-repeat center;
}
/* line 1738, ../scss/_juili.scss */
.ab05 .container {
  height: 100%;
}
/* line 1740, ../scss/_juili.scss */
.ab05 .container .row {
  height: 100%;
}
/* line 1744, ../scss/_juili.scss */
.ab05 ul {
  height: 100%;
  width: 100%;
  position: relative;
}
/* line 1748, ../scss/_juili.scss */
.ab05 ul li {
  cursor: pointer;
  width: 32px;
  height: 48px;
  background: url("../images/map_icon_01.png") center/cover;
  position: absolute;
  top: 50%;
  left: 50%;
}
/* line 1756, ../scss/_juili.scss */
.ab05 ul li:nth-child(1) {
  margin-top: 5px;
  margin-left: -38px;
}
/* line 1760, ../scss/_juili.scss */
.ab05 ul li:nth-child(2) {
  margin-top: 80px;
  margin-left: -270px;
}
/* line 1764, ../scss/_juili.scss */
.ab05 ul li:nth-child(3) {
  margin-top: -310px;
  margin-left: -170px;
}
/* line 1768, ../scss/_juili.scss */
.ab05 ul li:nth-child(4) {
  margin-top: -225px;
  margin-left: -23px;
}
/* line 1772, ../scss/_juili.scss */
.ab05 ul li:nth-child(5) {
  margin-top: -185px;
  margin-left: -26px;
}
/* line 1776, ../scss/_juili.scss */
.ab05 ul li:hover, .ab05 ul li.active {
  background: url("../images/map_icon_02.png") center/cover;
}
/* line 1780, ../scss/_juili.scss */
.ab05 ul li > div {
  display: none;
}

/* line 1788, ../scss/_juili.scss */
.ab_group .titit {
  font-size: 30px;
  font-weight: bold;
  display: block;
  color: #333;
  text-align: center;
  position: relative;
  top: -50px;
}
/* line 1796, ../scss/_juili.scss */
.ab_group .titit.ab {
  position: absolute;
  top: 60px;
  width: 100%;
  left: 0;
}

/* line 1805, ../scss/_juili.scss */
.msg_box {
  position: absolute;
  bottom: 2vw;
  right: 2vw;
  width: 580px;
  background: #FFF;
}
/* line 1811, ../scss/_juili.scss */
.msg_box .txt {
  padding: 30px 30px 30px 280px;
  position: relative;
}
/* line 1814, ../scss/_juili.scss */
.msg_box .txt .img {
  width: 250px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
/* line 1821, ../scss/_juili.scss */
.msg_box .txt h2 {
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  color: #333;
  padding-bottom: 15px;
}
/* line 1827, ../scss/_juili.scss */
.msg_box .txt h2:after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #e53b29;
  margin-top: 20px;
}
/* line 1836, ../scss/_juili.scss */
.msg_box .txt ol {
  list-style: none;
}
/* line 1838, ../scss/_juili.scss */
.msg_box .txt ol li {
  list-style: none;
}
/* line 1840, ../scss/_juili.scss */
.msg_box .txt ol li p {
  color: #666;
}
/* line 1843, ../scss/_juili.scss */
.msg_box .txt ol li a {
  color: #666;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  display: inline-block;
}
/* line 1848, ../scss/_juili.scss */
.msg_box .txt ol li span {
  display: inline-block;
}

/* line 1856, ../scss/_juili.scss */
.news_img {
  width: 100%;
}

/* line 1860, ../scss/_juili.scss */
.ex_img {
  width: 100%;
}

/* line 1864, ../scss/_juili.scss */
.p_hr {
  clear: both;
  display: block;
  height: 1px;
  border: none;
  background: #ccc;
  margin: 40px 0;
}

@media screen and (min-width: 1400px) {
  /* line 1879, ../scss/_juili.scss */
  .index-slider .slider-img .container .slider-info h3,
  .index-slider .slider-img .container-fluid .slider-info h3 {
    font-size: 45px;
    line-height: 57px;
  }

  /* line 1889, ../scss/_juili.scss */
  .index_block .row > a {
    height: 30vh;
  }
  /* line 1892, ../scss/_juili.scss */
  .index_block .row > a > div h3 {
    font-weight: bold;
    font-size: 35px;
    line-height: 45px;
  }
}
@media screen and (min-width: 1660px) {
  /* line 1909, ../scss/_juili.scss */
  .index-slider .slider-img .container .slider-info h3,
  .index-slider .slider-img .container-fluid .slider-info h3 {
    font-size: 55px;
    line-height: 68px;
  }
}
@media screen and (max-width: 1399px) and (min-width: 1301px) {
  /* line 1925, ../scss/_juili.scss */
  .index-slider .slider-img .container .slider-info h3,
  .index-slider .slider-img .container-fluid .slider-info h3 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media screen and (min-width: 1201px) {
  /* line 1936, ../scss/_juili.scss */
  .rd_video {
    width: 918px;
    height: 578px;
  }

  /* line 1943, ../scss/_juili.scss */
  header nav .container .navbar {
    right: 0;
  }
}
@media screen and (max-width: 1300px) {
  /* line 1957, ../scss/_juili.scss */
  .index-slider .slider-img .container .slider-info h3,
  .index-slider .slider-img .container-fluid .slider-info h3 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media screen and (max-width: 1200px) {
  /* line 1973, ../scss/_juili.scss */
  .index-slider .slider-img .container .slider-info h3,
  .index-slider .slider-img .container-fluid .slider-info h3 {
    font-size: 35px;
    line-height: 45px;
  }

  /* line 1984, ../scss/_juili.scss */
  .index_block .row > a > div {
    width: 60%;
  }
  /* line 1987, ../scss/_juili.scss */
  .index_block .row > a.pd {
    background: url("../images/_base/index_block02_bg.jpg") no-repeat 23% center/cover;
  }

  /* line 1997, ../scss/_juili.scss */
  .ab03 ul li .img img {
    height: 150px;
  }

  /* line 2008, ../scss/_juili.scss */
  .ab04 ul > li:nth-child(odd) > div {
    padding-left: calc( 100% / 6);
  }
  /* line 2010, ../scss/_juili.scss */
  .ab04 ul > li:nth-child(odd) > div:before, .ab04 ul > li:nth-child(odd) > div:after {
    left: calc( ( 100vw - 40px) / 12);
    margin-left: -2px;
    -webkit-margin-start: -3px;
  }
  /* line 2019, ../scss/_juili.scss */
  .ab04 ul > li:nth-child(even) > div {
    padding-right: calc( 100% / 6);
  }
  /* line 2021, ../scss/_juili.scss */
  .ab04 ul > li:nth-child(even) > div:before, .ab04 ul > li:nth-child(even) > div:after {
    right: calc( ( 100vw - 40px) / 12);
    margin-right: -2px;
    -webkit-margin-end: -3.5px;
  }
  /* line 2029, ../scss/_juili.scss */
  .ab04 ul > li h2 {
    width: calc( 100% / 7 * 2);
  }

  /* line 2035, ../scss/_juili.scss */
  .msg_box {
    width: 350px;
  }
  /* line 2037, ../scss/_juili.scss */
  .msg_box .txt {
    padding: 218px 30px 30px 30px;
  }
  /* line 2039, ../scss/_juili.scss */
  .msg_box .txt .img {
    width: 100%;
    height: 200px;
  }

  /* line 2045, ../scss/_juili.scss */
  .rd_video {
    width: 78.29vw;
    height: 49.3vw;
  }

  /* line 2049, ../scss/_juili.scss */
  .p_box_outer {
    margin-top: 10vw;
  }

  /* line 2053, ../scss/_juili.scss */
  .p_box_outer .p_box#p01 {
    background: url("../images/p_box01_02_bg.jpg") no-repeat center -75px/100%;
    padding-top: 17vw;
  }

  /* line 2058, ../scss/_juili.scss */
  .inner_nav.product {
    top: 123px;
  }

  /* line 2064, ../scss/_juili.scss */
  .index_block .row > a {
    height: 25vw;
  }
  /* line 2067, ../scss/_juili.scss */
  .index_block .row > a > div h3 {
    font-weight: bold;
    font-size: 25px;
    line-height: 30px;
  }

  /* line 2076, ../scss/_juili.scss */
  .index-slider {
    height: auto;
  }

  /* line 2080, ../scss/_juili.scss */
  footer .copyright {
    margin-top: 0;
  }
  /* line 2082, ../scss/_juili.scss */
  footer .copyright p,
  footer .copyright a {
    color: #999;
  }
  /* line 2087, ../scss/_juili.scss */
  footer .copyright .container .social {
    position: relative;
    top: 0;
    margin-top: 0;
  }
  /* line 2091, ../scss/_juili.scss */
  footer .copyright .container .social ul {
    margin-top: 20px;
  }
  /* line 2093, ../scss/_juili.scss */
  footer .copyright .container .social ul.social-icons {
    float: left;
  }

  /* line 2105, ../scss/_juili.scss */
  html.fix {
    position: fixed;
    width: 100%;
  }

  /* line 2110, ../scss/_juili.scss */
  .hide_li {
    display: block;
  }
}
/* line 2116, ../scss/_juili.scss */
section.related {
  margin-bottom: 80px;
}

/* line 2121, ../scss/_juili.scss */
.box_tit {
  border: 1px solid #ccc;
  padding: 10px 20px;
  display: inline-block;
  margin-bottom: 15px;
  font-size: 18px;
}

@media screen and (min-width: 993px) {
  /* line 2131, ../scss/_juili.scss */
  .sidebar .select {
    display: block !important;
  }

  /* line 2138, ../scss/_juili.scss */
  header nav .container .navbar {
    display: block !important;
    right: 15px;
  }
}
@media screen and (max-width: 992px) {
  /* line 2151, ../scss/_juili.scss */
  header .topbar .container .lang {
    width: 100%;
  }
  /* line 2153, ../scss/_juili.scss */
  header .topbar .container .lang .lang_select {
    height: 33px;
    z-index: 1;
    top: 0;
    background: #e53b29;
    text-align: right;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 25px;
  }
  /* line 2163, ../scss/_juili.scss */
  header .topbar .container .lang .lang_select a {
    height: 100%;
    line-height: 33px;
    padding: 0;
    color: #fff;
    display: inline-block;
    background: none;
    margin-left: 10px;
  }
  /* line 2171, ../scss/_juili.scss */
  header .topbar .container .lang .lang_select a img {
    display: none;
  }
  /* line 2174, ../scss/_juili.scss */
  header .topbar .container .lang .lang_select a.lang-english {
    font-size: 15px;
  }
  /* line 2177, ../scss/_juili.scss */
  header .topbar .container .lang .lang_select a:hover {
    background: none;
    color: #ccc;
  }
  /* line 2183, ../scss/_juili.scss */
  header .topbar .container .lang:hover {
    background: none;
  }
  /* line 2185, ../scss/_juili.scss */
  header .topbar .container .lang:hover .lang_select {
    top: 0;
  }
  /* line 2192, ../scss/_juili.scss */
  header nav {
    height: 80px;
    padding: 22.5px 0;
    border-bottom: 1px solid #e1e1e1;
    margin: 0;
  }
  /* line 2197, ../scss/_juili.scss */
  header nav .logo {
    margin-top: 0;
  }
  /* line 2199, ../scss/_juili.scss */
  header nav .logo img {
    top: -5px;
  }
  /* line 2204, ../scss/_juili.scss */
  header nav .container .navbar {
    max-height: calc(100vh - 123px);
    overflow: auto;
    border: none;
    top: 19px;
  }
  /* line 2209, ../scss/_juili.scss */
  header nav .container .navbar > div {
    margin: 0;
    border-bottom: 1px solid #e1e1e1;
  }
  /* line 2212, ../scss/_juili.scss */
  header nav .container .navbar > div > a {
    padding: 13px 15px;
    background: #FFF;
  }
  /* line 2215, ../scss/_juili.scss */
  header nav .container .navbar > div > a:hover {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    color: #666;
    background: #E1E1E1;
  }
  /* line 2222, ../scss/_juili.scss */
  header nav .container .navbar .search {
    width: 100%;
  }
  /* line 2224, ../scss/_juili.scss */
  header nav .container .navbar .search .search-open {
    top: 0;
    padding: 10px;
    width: 100%;
    background: #FFF;
  }

  /* line 2235, ../scss/_juili.scss */
  .c-hamburger {
    top: 48px;
  }

  /* line 2238, ../scss/_juili.scss */
  .c-hamburger--htx {
    background: #e53b29;
  }
  /* line 2240, ../scss/_juili.scss */
  .c-hamburger--htx.is-active {
    background: #e53b29;
  }

  /* line 2244, ../scss/_juili.scss */
  .sidebar {
    z-index: 1;
    position: absolute;
    width: calc( 100% - 10px);
    top: -60px;
    left: 5px;
  }
  /* line 2250, ../scss/_juili.scss */
  .sidebar .select_active {
    cursor: pointer;
    display: block;
    font-size: 15px;
    padding: 10px;
    position: relative;
    border: 1px solid #ccc;
  }
  /* line 2257, ../scss/_juili.scss */
  .sidebar .select_active:before {
    content: "";
    width: 46px;
    height: 46px;
    position: absolute;
    right: 0px;
    top: 0px;
    background: url(../images/up.png) center/cover;
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    filter: progid:DXImageTransform.Microsoft.Matrix( M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
    zoom: 1;
  }
  /* line 2268, ../scss/_juili.scss */
  .sidebar .select {
    display: none;
    height: 225px;
    overflow: auto;
    background: #FFF;
    border: 1px solid #ccc;
    position: absolute;
    width: 100%;
    left: 0;
    top: 46px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
  }
  /* line 2279, ../scss/_juili.scss */
  .sidebar .select h2 {
    padding-left: 10px;
  }
  /* line 2283, ../scss/_juili.scss */
  .sidebar.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    background: #fff;
  }

  /* line 2293, ../scss/_juili.scss */
  .ab04 ul > li {
    top: 0 !important;
    margin-bottom: 50px;
  }
  /* line 2297, ../scss/_juili.scss */
  .ab04 ul > li > div:before, .ab04 ul > li > div:after {
    display: none !important;
  }
  /* line 2303, ../scss/_juili.scss */
  .ab04 ul > li:nth-child(odd) > div {
    padding-left: 180px;
  }
  /* line 2308, ../scss/_juili.scss */
  .ab04 ul > li:nth-child(even) > div {
    padding-left: 180px;
    padding-right: 0;
  }
  /* line 2311, ../scss/_juili.scss */
  .ab04 ul > li:nth-child(even) > div h2 {
    right: inherit;
    left: 0;
  }
  /* line 2317, ../scss/_juili.scss */
  .ab04 ul > li:nth-child(even) ol li {
    text-align: left;
    padding-right: 0;
    padding-left: 70px;
  }
  /* line 2321, ../scss/_juili.scss */
  .ab04 ul > li:nth-child(even) ol li:before {
    right: inherit;
    left: 0;
  }
  /* line 2328, ../scss/_juili.scss */
  .ab04 ul > li h2 {
    width: 150px;
    top: 0;
    margin-top: 0;
    font-size: 50px;
    text-align: left;
  }

  /* line 2342, ../scss/_juili.scss */
  .ab03 ul li .img img {
    height: 150px;
  }
  /* line 2347, ../scss/_juili.scss */
  .ab03 ul li:nth-child(3n+3):before {
    display: block;
  }
  /* line 2352, ../scss/_juili.scss */
  .ab03 ul li:nth-child(2n+2):before {
    display: none;
  }

  /* line 2359, ../scss/_juili.scss */
  .msg_box {
    width: 300px;
  }

  /* line 2362, ../scss/_juili.scss */
  .rd_video {
    width: 78.29vw;
    height: 49.3vw;
  }

  /* line 2366, ../scss/_juili.scss */
  .p_box_outer .p_box#p01 {
    padding-top: 17vw;
  }

  /* line 2369, ../scss/_juili.scss */
  .index_rd {
    height: auto;
  }
  /* line 2371, ../scss/_juili.scss */
  .index_rd .left {
    background: none;
  }
  /* line 2374, ../scss/_juili.scss */
  .index_rd .hide_img {
    display: block;
    width: 100%;
  }

  /* line 2379, ../scss/_juili.scss */
  .product-list {
    padding-left: 0;
  }
}
@media screen and (min-width: 769px) {
  /* line 2386, ../scss/_juili.scss */
  .inner_nav .select {
    display: block !important;
    height: 49px !important;
  }
  /* line 2392, ../scss/_juili.scss */
  .inner_nav:lang(en) .inner {
    padding: 0;
    height: 64px;
  }
  /* line 2395, ../scss/_juili.scss */
  .inner_nav:lang(en) .inner .container {
    height: 64px;
  }
  /* line 2399, ../scss/_juili.scss */
  .inner_nav:lang(en) .select {
    height: 64px !important;
  }
  /* line 2401, ../scss/_juili.scss */
  .inner_nav:lang(en) .select ul {
    height: 100%;
  }
  /* line 2403, ../scss/_juili.scss */
  .inner_nav:lang(en) .select ul li {
    max-width: 28%;
    height: 100%;
    vertical-align: middle;
  }
  /* line 2407, ../scss/_juili.scss */
  .inner_nav:lang(en) .select ul li:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }
  /* line 2413, ../scss/_juili.scss */
  .inner_nav:lang(en) .select ul li a {
    display: inline-block;
    font-weight: normal;
    vertical-align: middle;
    font-size: 12px;
    line-height: 15px;
  }
  /* line 2420, ../scss/_juili.scss */
  .inner_nav:lang(en) .select ul li.active {
    background: #FFF;
  }
  /* line 2422, ../scss/_juili.scss */
  .inner_nav:lang(en) .select ul li.active a {
    color: #707070;
    background: none;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  /* line 2438, ../scss/_juili.scss */
  .headline h2 i {
    font-size: 15px;
    line-height: 25px;
    margin-top: 10px;
  }

  /* line 2449, ../scss/_juili.scss */
  footer .container .footer-item ul.footer-link {
    display: none;
  }

  /* line 2459, ../scss/_juili.scss */
  .client-group > div a img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  /* line 2472, ../scss/_juili.scss */
  .ex_list > div:nth-child(even) .ex_box {
    float: none;
  }

  /* line 2479, ../scss/_juili.scss */
  .tb_type01 tr {
    display: block;
  }
  /* line 2481, ../scss/_juili.scss */
  .tb_type01 tr td {
    display: block;
    width: 100%;
    border-right: 0;
  }
  /* line 2485, ../scss/_juili.scss */
  .tb_type01 tr td.tit {
    border-top: 6px solid #dbdbdb;
    border-left: 0;
    border-bottom: 0;
    padding-bottom: 0;
  }
  /* line 2490, ../scss/_juili.scss */
  .tb_type01 tr td.tit + td {
    padding-top: 0;
  }
  /* line 2497, ../scss/_juili.scss */
  .tb_type01 tr td.center,
  .tb_type01 tr th.center {
    text-align: left;
  }
  /* line 2503, ../scss/_juili.scss */
  .tb_type01.has_th tr {
    border-left: 6px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
  }
  /* line 2506, ../scss/_juili.scss */
  .tb_type01.has_th tr th {
    display: none;
  }
  /* line 2509, ../scss/_juili.scss */
  .tb_type01.has_th tr td {
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  /* line 2513, ../scss/_juili.scss */
  .tb_type01.has_th tr td:before {
    content: attr(data-tit);
    color: #333;
    font-weight: bold;
  }
  /* line 2518, ../scss/_juili.scss */
  .tb_type01.has_th tr td:first-child {
    padding-top: 15px;
  }
  /* line 2521, ../scss/_juili.scss */
  .tb_type01.has_th tr td:last-child {
    padding-bottom: 15px;
  }
  /* line 2524, ../scss/_juili.scss */
  .tb_type01.has_th tr td .download_btn {
    margin: 10px 0 0 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
  }
  /* line 2535, ../scss/_juili.scss */
  .tb_type01.has_th.th_show tr th {
    display: block;
    background: #dbdbdb;
  }

  /* line 2543, ../scss/_juili.scss */
  .ab05 {
    padding-top: 57vw;
    overflow: hidden;
    height: auto;
    background: url("../images/map_tw_mobi.jpg") #a0d6ec no-repeat center top/100%;
  }
  /* line 2548, ../scss/_juili.scss */
  .ab05 .titit {
    display: none;
  }
  /* line 2552, ../scss/_juili.scss */
  .ab05 ul > li {
    margin-bottom: 20px;
  }
  /* line 2555, ../scss/_juili.scss */
  .ab05 ul li {
    background: #FFF !important;
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    margin-top: 0 !important;
    left: 0 !important;
    margin-left: 0 !important;
  }
  /* line 2564, ../scss/_juili.scss */
  .ab05 ul li .txt {
    padding: 0;
    position: relative;
    display: block !important;
  }
  /* line 2568, ../scss/_juili.scss */
  .ab05 ul li .txt .img {
    left: 0;
    top: 0;
    width: 40%;
    position: absolute;
    height: 100%;
  }
  /* line 2575, ../scss/_juili.scss */
  .ab05 ul li .txt h2 {
    font-weight: bold;
    font-size: 15px;
    color: #333;
    padding: 15px;
    padding-left: calc( 40% + 15px);
  }
  /* line 2581, ../scss/_juili.scss */
  .ab05 ul li .txt h2:after {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background: #e53b29;
    margin-top: 20px;
  }
  /* line 2590, ../scss/_juili.scss */
  .ab05 ul li .txt ol {
    list-style: none;
    padding: 0 15px 15px;
    padding-left: calc( 40% + 15px);
  }
  /* line 2594, ../scss/_juili.scss */
  .ab05 ul li .txt ol li {
    list-style: none;
  }
  /* line 2596, ../scss/_juili.scss */
  .ab05 ul li .txt ol li p {
    color: #666;
  }
  /* line 2599, ../scss/_juili.scss */
  .ab05 ul li .txt ol li a {
    display: inline-block;
    color: #666;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }
  /* line 2604, ../scss/_juili.scss */
  .ab05 ul li .txt ol li span {
    display: inline-block;
  }
  /* line 2612, ../scss/_juili.scss */
  .ab05 .msg_box {
    display: none;
  }

  /* line 2618, ../scss/_juili.scss */
  .ab04 ul > li {
    top: 0 !important;
    margin-bottom: 50px;
  }
  /* line 2622, ../scss/_juili.scss */
  .ab04 ul > li > div:before, .ab04 ul > li > div:after {
    display: none !important;
  }
  /* line 2628, ../scss/_juili.scss */
  .ab04 ul > li:nth-child(odd) > div {
    padding-left: 0px;
  }
  /* line 2633, ../scss/_juili.scss */
  .ab04 ul > li:nth-child(even) > div {
    padding-left: 0px;
    padding-right: 0;
  }
  /* line 2636, ../scss/_juili.scss */
  .ab04 ul > li:nth-child(even) > div h2 {
    right: inherit;
    left: 0;
  }
  /* line 2642, ../scss/_juili.scss */
  .ab04 ul > li:nth-child(even) ol li {
    text-align: left;
    padding-right: 0;
    padding-left: 70px;
  }
  /* line 2646, ../scss/_juili.scss */
  .ab04 ul > li:nth-child(even) ol li:before {
    right: inherit;
    left: 0;
  }
  /* line 2653, ../scss/_juili.scss */
  .ab04 ul > li h2 {
    position: relative;
    width: 100%;
    text-align: center !important;
    top: 0;
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 50px;
  }

  /* line 2667, ../scss/_juili.scss */
  .ab03 ul li {
    height: auto;
    overflow: hidden;
  }
  /* line 2670, ../scss/_juili.scss */
  .ab03 ul li .img {
    height: auto;
  }
  /* line 2672, ../scss/_juili.scss */
  .ab03 ul li .img img {
    height: auto;
  }
  /* line 2676, ../scss/_juili.scss */
  .ab03 ul li .txt {
    height: auto;
  }
  /* line 2679, ../scss/_juili.scss */
  .ab03 ul li:before {
    display: none !important;
  }

  /* line 2685, ../scss/_juili.scss */
  .ab01 {
    padding: 50px 0;
  }
  /* line 2687, ../scss/_juili.scss */
  .ab01 .pc {
    display: none;
  }

  /* line 2692, ../scss/_juili.scss */
  .ab02 ul {
    width: 100%;
  }
  /* line 2694, ../scss/_juili.scss */
  .ab02 ul li {
    width: 100%;
    margin-right: 0;
  }
  /* line 2697, ../scss/_juili.scss */
  .ab02 ul li > div {
    height: auto;
    padding: 30px 15px;
  }
  /* line 2702, ../scss/_juili.scss */
  .ab02 ul li .img img {
    max-width: 30%;
  }

  /* line 2711, ../scss/_juili.scss */
  .index-slider .slider-img .container,
  .index-slider .slider-img .container-fluid {
    height: auto;
  }
  /* line 2714, ../scss/_juili.scss */
  .index-slider .slider-img .container .slider-info,
  .index-slider .slider-img .container-fluid .slider-info {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    bottom: 0;
  }
  /* line 2719, ../scss/_juili.scss */
  .index-slider .slider-img .container .slider-info h3,
  .index-slider .slider-img .container-fluid .slider-info h3 {
    padding-left: 0;
    font-size: 7vw;
    line-height: 8vw;
    background: none;
  }
  /* line 2725, ../scss/_juili.scss */
  .index-slider .slider-img .container .slider-info span,
  .index-slider .slider-img .container-fluid .slider-info span {
    margin-top: 10px;
    line-height: 50px;
    padding: 0px 62px 0 10px;
    font-size: 15px;
    width: 163px;
    height: 50px;
    text-align: center;
  }
  /* line 2733, ../scss/_juili.scss */
  .index-slider .slider-img .container .slider-info span:after,
  .index-slider .slider-img .container-fluid .slider-info span:after {
    width: 50px;
    height: 30px;
  }
  /* line 2742, ../scss/_juili.scss */
  .index-slider .slider-img.slick-current .container-fluid .slider-info {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    animation-name: indexSider_mb;
    animation-duration: .5s;
    -webkit-animation-name: indexSider_mb;
    /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: .5s;
    /* Safari 4.0 - 8.0 */
  }

  /* line 2755, ../scss/_juili.scss */
  .rd_video {
    width: 92.85vw;
    height: 58.42vw;
  }

  /* line 2759, ../scss/_juili.scss */
  .chart_box {
    margin-top: 0;
    margin-bottom: 30px;
  }

  /* line 2764, ../scss/_juili.scss */
  .threesixty:after {
    right: 15%;
  }

  /* line 2768, ../scss/_juili.scss */
  .p_box_outer {
    margin-top: 130px;
  }
  /* line 2771, ../scss/_juili.scss */
  .p_box_outer .p_box#p01 {
    padding-top: 17vw;
    background: url("../images/p_box01_02_bg.jpg") no-repeat center -3vw/100%;
  }

  /* line 2778, ../scss/_juili.scss */
  .am_list .row {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
  }
  /* line 2782, ../scss/_juili.scss */
  .am_list .row .am_box {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
  }
  /* line 2788, ../scss/_juili.scss */
  .am_list .row .am_box img {
    margin: 0 auto;
    display: block;
    max-width: 100%;
  }
  /* line 2793, ../scss/_juili.scss */
  .am_list .row .am_box b {
    font-size: 25px;
    line-height: 35px;
  }
  /* line 2797, ../scss/_juili.scss */
  .am_list .row .am_box:last-child {
    border: none;
    border-bottom: 1px solid #e5e5e5;
  }

  /* line 2807, ../scss/_juili.scss */
  .inner_nav {
    position: relative;
    z-index: 2;
  }
  /* line 2810, ../scss/_juili.scss */
  .inner_nav .inner {
    padding-bottom: 15px;
    background: #f1f1f1;
    position: relative;
  }
  /* line 2814, ../scss/_juili.scss */
  .inner_nav .inner .container {
    position: relative;
  }
  /* line 2818, ../scss/_juili.scss */
  .inner_nav .select_active {
    background: #FFF;
    display: block;
    cursor: pointer;
    display: block;
    font-size: 18px;
    padding: 10px;
    position: relative;
    border: 1px solid #ccc;
  }
  /* line 2827, ../scss/_juili.scss */
  .inner_nav .select_active:before {
    content: "";
    width: 46px;
    height: 46px;
    position: absolute;
    right: 0px;
    top: 0px;
    background: url(../images/up.png) center/cover;
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    filter: progid:DXImageTransform.Microsoft.Matrix( M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
    zoom: 1;
  }
  /* line 2838, ../scss/_juili.scss */
  .inner_nav .select {
    display: none;
    max-height: 225px;
    overflow: auto;
    background: #FFF;
    border: 1px solid #ccc;
    position: absolute;
    width: calc( 100% - 40px);
    left: 20px;
    top: 46px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
  }
  /* line 2849, ../scss/_juili.scss */
  .inner_nav .select ul {
    text-align: left;
    margin: 12px 0 0;
    border-bottom: 1px solid #ccc;
  }
  /* line 2853, ../scss/_juili.scss */
  .inner_nav .select ul li {
    display: block;
    border: none;
    margin-bottom: 7px;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
  }
  /* line 2860, ../scss/_juili.scss */
  .inner_nav .select ul li.active, .inner_nav .select ul li:hover {
    background: #ededed;
  }
  /* line 2863, ../scss/_juili.scss */
  .inner_nav .select ul li.active a, .inner_nav .select ul li:hover a {
    color: #666;
    background: none;
  }
  /* line 2868, ../scss/_juili.scss */
  .inner_nav .select ul li:before {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    background: #666;
    top: 50%;
    margin-top: -2px;
    left: 15px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
  }
  /* line 2880, ../scss/_juili.scss */
  .inner_nav .select ul li a {
    background: none;
    display: block;
    padding: 0;
    font-size: 18px;
    color: #666;
  }

  /* line 2893, ../scss/_juili.scss */
  .index_block .row > a {
    min-height: inherit;
    padding: 20px 20px;
    height: auto;
  }
  /* line 2899, ../scss/_juili.scss */
  .index_block .row > a > div h3 br {
    display: none;
  }

  /* line 2907, ../scss/_juili.scss */
  .index-slider {
    height: auto;
  }
  /* line 2909, ../scss/_juili.scss */
  .index-slider .slick-arrow {
    display: none !important;
  }

  /* line 2915, ../scss/_juili.scss */
  .rd_slider .slick-arrow.slick-prev {
    left: 0;
  }
  /* line 2918, ../scss/_juili.scss */
  .rd_slider .slick-arrow.slick-next {
    right: 0;
  }

  /* line 2924, ../scss/_juili.scss */
  .slider .slider-img {
    background: #000 !important;
    height: auto;
  }
  /* line 2927, ../scss/_juili.scss */
  .slider .slider-img .container {
    position: absolute;
    bottom: 50px;
    height: auto;
  }
  /* line 2931, ../scss/_juili.scss */
  .slider .slider-img .container .slider-info {
    left: 0;
    position: relative;
    top: 0;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  /* line 2940, ../scss/_juili.scss */
  .slider .slider-img .container .slider-info h3 {
    font-size: 8vw;
    line-height: 8vw;
  }
  /* line 2944, ../scss/_juili.scss */
  .slider .slider-img .container .slider-info p {
    font-size: 4vw;
    line-height: 5vw;
  }
  /* line 2951, ../scss/_juili.scss */
  .slider .inner_img {
    display: block !important;
    width: 100%;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
  }

  /* line 2960, ../scss/_juili.scss */
  footer .copyright .container p {
    font-size: 12px;
    line-height: 21px;
  }
}
@media screen and (max-width: 540px) {
  /* line 2974, ../scss/_juili.scss */
  .ab05 ul li .txt .img {
    left: 0;
    top: 0;
    width: 100%;
    position: relative;
    height: 250px;
  }
  /* line 2981, ../scss/_juili.scss */
  .ab05 ul li .txt h2 {
    padding-left: 15px;
  }
  /* line 2984, ../scss/_juili.scss */
  .ab05 ul li .txt ol {
    padding-left: 15px;
  }

  /* line 2991, ../scss/_juili.scss */
  .breadcrumb {
    padding: 20px 10px;
    text-align: left;
  }
  /* line 2994, ../scss/_juili.scss */
  .breadcrumb .container {
    margin-top: 10px;
  }
}
