html {
  font-size: 10px !important;
}

body {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(#333), color-stop(#000), color-stop(#333), to(#000));
  background-image: linear-gradient(#000, #333, #000, #333, #000);
  font-family: "PingFang TC", "Noto Sans TC", "LiHei Pro", "Microsoft JhengHei", "Microsoft YaHei","Oswald", sans-serif !important;
  letter-spacing: 1.5px;
  line-height: 1.4;
  font-weight: 400;
  font-size: 1.6rem;
  color: #fff;
}

a {
  text-decoration: none !important;
}

a.link {
  text-decoration: underline;
}

.btn {
  font-size: 1.6rem;
  padding: 10px 15px;
  border-radius: 35px;
  min-width: 120px;
  font-family: "Oswald";
  font-style: italic;
}

.btn-primary {
  background: #C3232A;
  border-color: #C3232A;
  -webkit-box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:not(:disabled):not(.disabled):active {
  background-color: #C3232A;
  border-color: #C3232A;
}

.btn-primary:hover {
  -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.btn-circle {
  display: inline-block;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  line-height: 55px;
  text-align: center;
  font-size: 22px;
  color: #fff;
}

.btn-circle:hover {
  color: #fff;
}

.btn-circle i {
  vertical-align: middle;
  position: relative;
  top: -10px;
}

.btn-circle img {
  vertical-align: middle;
  top: -10px;
  position: relative;
}

.btn-circle.btn-fb {
  background: #4267B2;
}

.btn-circle.btn-line {
  background: #00B900;
}

.btn-circle.btn-nice {
  background: #f4f4f4;
  line-height: 1px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.btn-circle.btn-nice .num {
  font-size: 1.2rem;
  margin-top: 0px;
}

.btn-gradient {
  background-image: linear-gradient(135deg, #C3232A, #E84027);
  color: #fff;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.btn-gradient:hover {
  color: #fff;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(135deg, #E84027, #C3232A);
}

.bg-grey {
  background: #f4f4f4;
}

.form-control {
  font-size: 1.4rem;
}

.pagination-lg {
  margin-top: 60px;
}

.pagination-lg .page-link {
  font-size: 1.6rem;
}

.mt-60 {
  margin-top: 60px;
}

.gap {
  margin: 0 5px;
  color: #ddd;
}

.tag {
  background: #C3232A;
  color: #fff;
  padding: 3px 8px;
  display: inline-block;
}

.avatar {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

header {
  background: #000;
  border-bottom: 5px solid #C3232A;
  padding: 15px;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
}

header a.menu-toggle, header a.search-toggle {
  display: none;
}

header a.logo {
  color: #fff;
}

header a.logo img {
  height: 35px;
  margin-right: 5px;
}

header a.logo h1 {
  display: inline-block;
  text-transform: uppercase;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  vertical-align: middle;
}

header .menu-toggle {
  position: absolute;
  left: 10px;
}

header .search-area {
  margin-left: 40px;
}

header .search-area input.form-control {
  width: 250px;
  height: 40px;
  display: inline-block;
}

header .search-area .btn {
  height: 40px;
  padding: 7px 20px;
}

header ul.menu {
  padding: 0px;
  margin: 0 0 0 auto;
  list-style: none;
}

header ul.menu li {
  display: inline-block;
}

header ul.menu li a {
  padding: 0 15px;
  color: #fff;
}

header ul.menu li a:hover {
  color: #C3232A;
}

@media (max-width: 767px) {
  header {
    padding: 5px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header a.menu-toggle, header a.search-toggle {
    display: inline-block;
    color: #666;
    padding: 15px;
    font-size: 2rem;
  }
  header a.search-toggle {
    margin-left: auto;
  }
  header .search-area {
    display: none;
  }
  header .search-area.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    padding: 10px;
    background: #fff;
    margin: 0px;
    border-top: 1px solid #eee;
    -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  }
  header .search-area.active input.form-control {
    width: calc(100% - 88px);
  }
  header ul.menu {
    display: block;
    position: fixed;
    left: -210px;
    top: 70px;
    width: 200px;
    height: calc(100% - 68px);
    background: #000;
    -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
  }
  header ul.menu li {
    display: block;
    border-bottom: 1px solid #222;
    text-align: center;
  }
  header ul.menu li a {
    display: block;
    padding: 10px;
  }
  header ul.menu.active {
    left: 0px;
  }
}

footer {
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
  position: relative;
}

footer .text {
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 15px;
}

footer ul.sns {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

footer ul.sns li {
  display: inline-block;
  margin: 0px 5px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

footer ul.sns li a {
  display: block;
  background: #fff;
  color: #C3232A;
}

footer .copyright {
  font-size: 1.2rem;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

footer .logo {
  margin-bottom: 30px;
}

footer .logo img {
  width: 140px;
}

footer .dec {
  position: absolute;
  top: -70px;
  right: 40px;
}

@media (max-width: 767px) {
  footer .dec {
    display: none;
  }
}

.pic {
  background-size: cover;
  background-position: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
  font-family: "Oswald";
}

h2::after {
  content: '';
  display: block;
  width: 30px;
  height: 5px;
  border-radius: 30px;
  background: #C3232A;
  letter-spacing: 2px;
  margin: 10px auto 0 auto;
}

.des {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
}

.des .num span {
  display: inline-block;
  margin-right: 10px;
  color: #333;
}

.des .num span i {
  margin-right: 5px;
}

.des .price {
  color: #C3232A;
}

main .mainview {
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

main .mainview img {
  height: 70px;
}

main .mainview h1 {
  color: #fff;
  font-size: 8rem;
  font-family: "Oswald";
  font-style: italic;
  -webkit-animation: fadeIn 3s forwards;
          animation: fadeIn 3s forwards;
}

@media (max-width: 767px) {
  main .mainview h1 {
    font-size: 6rem;
  }
}

main .mainview::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 200px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#313131));
  background-image: linear-gradient(rgba(0, 0, 0, 0), #313131);
}

main .mainview-page {
  min-height: 60vh;
}

main .mainview-page::after {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#333));
  background-image: linear-gradient(rgba(0, 0, 0, 0), #333);
}

main .mainview-contact::after {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#151515));
  background-image: linear-gradient(rgba(0, 0, 0, 0), #151515);
}

main .mainview-brand::after {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#111));
  background-image: linear-gradient(rgba(0, 0, 0, 0), #111);
}

main .area {
  position: relative;
}

main .area .dec-arrow {
  position: absolute;
  top: 60px;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  left: -100px;
}

main .area .dec-arrow img {
  width: 70vw;
}

main .area-news .container > .pic, main .area-brand .container > .pic {
  max-width: 500px;
  width: 80%;
  padding-bottom: 40%;
  background-attachment: fixed;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: all ease-in-out 0.7s;
  transition: all ease-in-out 0.7s;
  opacity: 0;
}

main .area-news .container > h2, main .area-brand .container > h2 {
  font-size: 8rem;
  font-family: "Oswald";
  font-style: italic;
  margin-top: -140px;
  margin-left: 20px;
}

main .area-news .container > h2::after, main .area-brand .container > h2::after {
  display: none;
}

@media (max-width: 767px) {
  main .area-news .container > h2, main .area-brand .container > h2 {
    font-size: 4rem;
  }
}

main .area-news.active .container > .pic, main .area-brand.active .container > .pic {
  opacity: 1;
}

main .area-news .dec1, main .area-news .dec2 {
  position: absolute;
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: all ease-in-out 0.7s;
  transition: all ease-in-out 0.7s;
}

@media (max-width: 767px) {
  main .area-news .dec1, main .area-news .dec2 {
    display: none;
  }
}

main .area-news .dec1 {
  bottom: -180px;
  left: 0px;
}

main .area-news .dec1 img {
  width: 600px;
}

main .area-news .dec2 {
  top: 240px;
  right: 100px;
}

main .area-news .dec2 img {
  width: 500px;
}

@media (max-width: 991px) {
  main .area-news .dec2 {
    right: 0px;
  }
  main .area-news .dec2 img {
    width: 400px;
  }
}

main .area-news.active .dec1, main .area-news.active .dec2 {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

main .area-news.active .dec-arrow {
  left: 0px;
  opacity: 1;
}

main .area-brand .dec-arrow {
  left: auto;
  right: -100px;
}

main .area-brand .pic {
  margin-left: auto;
}

main .area-brand .container > h2 {
  text-align: center;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}

main .area-brand.active .dec-arrow {
  left: auto;
  right: 0px;
  opacity: 1;
}

main .area-contact {
  background-image: url(../img/img_contact.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 150px 15px;
  text-align: center;
  position: relative;
}

main .area-contact h2 {
  font-size: 4rem;
  font-family: "Oswald";
  font-style: italic;
}

main .area-contact h2::after {
  margin: auto;
}

main .area-contact .text {
  color: #fff;
  font-size: 1.8rem;
}

main .area-contact .btn {
  margin-top: 20px;
}

main .area-con {
  margin-top: 30px;
}

main .area-con h2 {
  font-size: 3rem;
  font-style: italic;
}

main .area-con h2::after {
  margin: 10px 0 0 0;
}

main .area-con h2.text-center::after {
  margin: 10px auto 0 auto;
}

main .area-con .text {
  color: #fff;
  line-height: 1.7;
}

.nav-tabs {
  background: #fff;
  border-bottom: 1px solid #f4f4f4;
  border-top: 10px solid #f4f4f4;
}

.nav-tabs .nav-item {
  margin-bottom: 0px;
  width: calc(100% / 4);
  text-align: center;
  font-size: 1.6rem;
}

.nav-tabs .nav-item a {
  border: none;
  display: block;
  padding: 10px 0;
  border-bottom: 3px solid #fff;
  color: #888;
}

.nav-tabs .nav-item a.active {
  border-color: #C3232A;
  font-weight: 600;
  color: #333;
}

.tab-content {
  background: #FFF;
}

.tab-content .tab-pane .card-news {
  margin-bottom: 0px;
}

.card {
  padding: 0px;
  border: none;
  -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  border-radius: 4px;
  margin-bottom: 15px;
  position: relative;
}

.card-news {
  padding: 20px 20px 20px 60px;
  -webkit-box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
          box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
  margin: 20px 0 60px 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card-news .num, .card-news .date {
  font-family: "Oswald";
  font-style: italic;
}

.card-news .num {
  position: absolute;
  top: -30px;
  left: -40px;
  width: 70px;
  height: 70px;
  border-radius: 4px;
  background-image: linear-gradient(135deg, #D4D3CF, #828078);
  font-size: 3.6rem;
  text-align: center;
  line-height: 70px;
  color: #fff;
}

.card-news .title, .card-news .text {
  color: #333;
}

.card-news .title {
  font-weight: bold;
}

.card-news .text {
  font-size: 1.4rem;
  margin-top: 10px;
  line-height: 1.7;
}

.card-news .date {
  font-size: 2rem;
  color: #999;
}

.card-news:nth-child(2n) {
  -webkit-transform: translateX(60px);
          transform: translateX(60px);
}

.card-news:hover {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

@media (max-width: 580px) {
  .card-news .num {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 2.8rem;
    left: 0px;
  }
  .card-news:nth-child(2n) {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

.card-brand {
  overflow: hidden;
  margin: 60px 0;
  background: #000;
}

.card-brand .pic {
  padding-bottom: 60% !important;
  float: none !important;
  width: 100% !important;
  opacity: 0.6;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.card-brand h2 {
  position: absolute;
  top: calc(50% - 40px);
  left: 0px;
  width: 100%;
  text-align: center;
  text-align: center;
  font-size: 3rem;
  font-family: "Oswald";
  font-style: italic;
}

.card-brand:hover .pic {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.owl-carousel.owl-banner .owl-item .item .pic {
  padding-bottom: 60%;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.owl-carousel.owl-banner .owl-item .item .title {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding: 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
  background-image: linear-gradient(rgba(0, 0, 0, 0), black);
  color: #fff;
  font-size: 1.8rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.owl-carousel .owl-nav {
  position: absolute;
  left: 0px;
  width: 100%;
  top: calc(50% - 30px);
}

.owl-carousel .owl-nav i {
  color: rgba(0, 0, 0, 0.5);
}

.owl-carousel .owl-nav > * {
  position: absolute;
}

.owl-carousel .owl-nav .owl-prev {
  left: 40px;
}

.owl-carousel .owl-nav .owl-next {
  right: 40px;
}

.owl-carousel .owl-dots {
  text-align: center;
}

.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  width: 15px;
  height: 5px;
  border-radius: 15px;
  background: #aaa;
  margin-right: 3px;
}

.owl-carousel .owl-dots .owl-dot.active {
  background: #C3232A;
}

@media (max-width: 767px) {
  .owl-carousel.owl-banner .owl-stage-outer {
    padding: 0px;
  }
  .owl-carousel .owl-nav {
    display: none;
  }
}

.modal .modal-header, .modal .modal-footer {
  border: none !important;
}

.item-brand {
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.item-brand .pic, .item-brand .con {
  width: 50%;
  padding: 0px 10px;
  opacity: 0;
  -webkit-transition: all ease-in-out 0.7s;
  transition: all ease-in-out 0.7s;
}

.item-brand .con h2::after {
  margin: 10px 0 0 0;
}

.item-brand .pic {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}

.item-brand .pic img {
  width: 100%;
}

.item-brand:nth-child(2n-1) .con {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.item-brand.active .pic, .item-brand.active .con {
  opacity: 1;
}

.item-brand.active .pic {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

@media (max-width: 767px) {
  .item-brand {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 0;
  }
  .item-brand .pic, .item-brand .con {
    width: 100%;
  }
  .item-brand .con {
    text-align: center;
    margin-top: 15px;
  }
  .item-brand .con h2::after {
    margin: 10px auto 0 auto;
  }
  .item-brand:nth-child(2n-1) .con {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
/*# sourceMappingURL=main.css.map */