@charset "UTF-8";
/* ---------------------------------------- */
/*  共用 class 設定                           */
/* ---------------------------------------- */
/* --------------- container --------------- */
.container {
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  max-width: 1280px;
}
.container-lg {
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  max-width: 1430px;
}
.container-sm {
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  max-width: 1200px;
}

@media screen and (max-width: 1280px) {
  .container, .container-lg {
    max-width: 1200px;
  }
}
@media screen and (max-width: 568px) {
  .container, .container-lg {
    padding: 0 20px;
  }
}
/* ------------- 讓 footer 置底 ------------- */
.main-min-height {
  /* 減去 footer + header 高度 */
  min-height: calc(100vh - 482px);
}
@media screen and (max-width: 1280px) {
  .main-min-height {
    min-height: calc(100vh - 418px);
  }
}
@media screen and (max-width: 1023px) {
  .main-min-height {
    min-height: calc(100vh + 38px);
  }
}
@media screen and (max-width: 568px) {
  .main-min-height {
    min-height: calc(100vh - 86px);
  }
}

/* --------------- 圖文編輯器 --------------- */
.user__editor {
  position: static !important;
  width: 100%;
  height: auto;
  overflow: hidden;
  color: #555555;
  font-size: 17px;
  line-height: 1.8;
}
.user__editor h3 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: bold;
  color: #3382c5;
}
.user__editor h4 {
  margin-bottom: 5px;
  font-size: 18px;
  color: #006f4e;
}
.user__editor a {
  color: #3382c5;
}
.user__editor a:hover {
  color: #216fb3;
}
.user__editor img {
  max-width: 100% !important;
  height: auto !important;
}
.user__editor table {
  width: 100% !important;
  margin: 5px 0 !important;
}

/* ------------- 排版用 class -------------- */
.flex {
  display: flex;
}
.flex-row-center {
  display: flex;
  justify-content: center;
}

.mt-10 {
  margin-top: 10px;
}
.mt-15 {
  margin-top: 15px;
}
.mt-30 {
  margin-top: 30px;
}

.mb-10 {
  margin-bottom: 10px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-30 {
  margin-bottom: 30px;
}

.margin-right {
  margin-left: auto;
}

.text-center {
  text-align: center;
}

.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* ------------------ 隱藏用 class ------------------ */
.hide {
  display: none;
}

@media screen and (max-width: 768px) {
  .mobile-hide {
    display: none;
  }
}
/* ------------------ cookie ------------------ */
.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 30px 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: rgba(255, 255, 255, 0.8);
  z-index: 10;
}
.cookie a{
  color: rgba(255, 255, 255, 0.8);
}
.cookie__container {
  display: flex;
  align-items: center;
  margin: 0 auto;
  max-width: 1200px;
}
.cookie__content {
  margin-right: 30px;
  font-size: 18px;
}
.cookie__content span {
  margin: 0 3px;
}
.cookie__content p:first-child {
  margin-bottom: 5px;
}
.cookie__accept {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 45px;
  border: 3px solid #ff3e2b;
  border-radius: 30px;
  font-size: 15px;
  color: #ff3e2b;
  cursor: pointer;
  transition: all 0.5s;
}
.cookie__accept:hover {
  background-color: #ff3e2b;
  color: #ffffff;
}
.cookie__accept__img {
  background-image: url("../images/icon-tick.png");
  width: 18px;
  height: 12px;
  margin-right: 10px;
  transition: all 0.5s;
}
.cookie__accept:hover .cookie__accept__img {
  background-image: url("../images/icon-tick-white.png");
}
.cookie__close {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  cursor: pointer;
}

@media screen and (max-width: 1280px) {
  .cookie {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 35px;
  }
  .cookie__container {
    max-width: 1000px;
    margin: 0;
  }
  .cookie__content {
    margin-right: 15px;
  }
  .cookie__close {
    position: initial;
    transform: translateY(0);
  }
}
@media screen and (max-width: 1279px) {
  .cookie {
    flex-direction: column;
  }
  .cookie__container {
    display: flex;
    flex-direction: column;
  }
  .cookie__content {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .cookie__close {
    position: absolute;
  }
}
@media screen and (max-width: 700px) {
  .cookie__content p:first-child {
    margin-bottom: 15px;
  }
  .cookie__close {
    bottom: 40px;
    top: initial;
  }
}
/* ---------------------------------------- */
/*  共用元件設定                              */
/* ---------------------------------------- */
/* ------------------ 按鈕 ------------------ */
.btn-half {
  width: calc(50% - 15px);
}
.btn-full {
  width: 100%;
}
.btn-solid-primary, .btn-solid-grey, .btn-hollow {
  display: inline-block;
  padding: 0 55px;
  line-height: 45px;
  font-size: 17px;
  outline: none;
  cursor: pointer;
  transition: 0.5s;
}
.btn-solid-primary {
  border: 1px solid #3382c5;
  background-color: #3382c5;
  color: #ffffff;
}
.btn-solid-primary:hover {
  background-color: #216fb3;
}
.btn-solid-grey {
  border: 1px solid #555555;
  background-color: #555555;
  color: #ffffff;
}
.btn-solid-grey:hover {
  background-color: #333333;
}
.btn-hollow {
  color: #3382c5;
  border: 1px solid #3382c5;
  background-color: #ffffff;
}
.btn-hollow:hover {
  color: #ffffff;
  background-color: #3382c5;
}
.btn-download {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 15px;
  padding: 5px 10px;
  width: 85px;
  border-radius: 3px;
  border: 1px solid #888888;
  color: #555555;
  transition: 0.5s;
}
.btn-download:hover {
  color: #333333;
  background-color: #f0f0f0;
}
.btn-download img {
  margin-right: 5px;
  max-width: 15px;
}

/* ---------------- 麵包屑 ----------------- */
.breadcrumbs {
  padding: 15px 0;
  color: #888888;
}
.breadcrumbs-list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
}
.breadcrumbs-list li + li {
  position: relative;
  margin-left: 10px;
  padding-left: 10px;
}
.breadcrumbs-list li + li::after {
  position: absolute;
  content: ">";
  left: -5px;
  color: #888888;
}
.breadcrumbs-list a {
  color: #888888;
}
.breadcrumbs-list a:hover {
  color: #3382c5;
}

/* ---------- 每個頁面上面的 banner ---------- */
.page-top-banner {
  position: relative;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
}
.page-top-banner img {
  width: 100%;
}
.page-top-banner h2 {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 48px;
  color: #ffffff;
  letter-spacing: 1.5px;
  font-weight: bold;
  text-shadow: 0 0 20px black;
}

.banner-left {
  background-position: center left;
}

@media screen and (max-width: 1024px) {
  .page-top-banner {
    height: 250px;
  }
  .page-top-banner h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .page-top-banner h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 568px) {
  .page-top-banner {
    height: 250px;
  }
  .page-top-banner h2 {
    font-size: 28px;
  }
}
/* ------------ 選單 01 - 主分類 ------------ */
@media screen and (min-width: 769px) {
  .category-box__title {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .category-box__title {
    display: inline-flex;
    justify-content: space-between;
    margin-top: 40px;
    padding: 15px;
    width: 100%;
    font-size: 24px;
    background-color: #e7e7e7;
  }
  .category-box__title img {
    max-width: 18px;
  }
}

.category {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  border-bottom: 1px solid #e7e7e7;
}
.category li {
  border-left: 1px solid #e7e7e7;
  transition: all 0.5s;
}
.category li a {
  display: block;
  padding: 25px 30px;
  text-align: center;
  font-size: 18px;
  color: #888888;
}
.category li:last-child {
  border-right: 1px solid #e7e7e7;
}
.category li:hover a {
  color: #3382c5;
}
.category .category-active {
  padding: 25px 30px;
  background-color: #3382c5;
  font-size: 18px;
  color: #ffffff;
  text-align: center;
}
.category .category-active a {
  color: #ffffff;
}
.category .category-active:hover a {
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .category-box {
    padding: 0 20px;
  }

  .category.single-layer {
    display: none;
    flex-direction: column;
    border: 1px solid #e7e7e7;
  }
  .category.single-layer li {
    width: 100%;
    border-left: 0;
  }
  .category.single-layer li:last-child {
    border-right: 0;
  }
  .category.single-layer li:last-child a {
    border-bottom: 0;
  }
  .category.single-layer li + li {
    margin-top: -1px;
  }
}
@media screen and (max-width: 568px) {
  .category {
    justify-content: flex-start;
    flex-wrap: wrap;
    border-bottom: none;
  }
  .category .category-active {
    padding: 13px 10px;
  }
  .category li {
    width: calc(100% / 2);
  }
  .category li a {
    padding: 13px 10px;
    font-size: 18px;
    border-bottom: 1px solid #e7e7e7;
  }
  .category li:last-child {
    border-right: none;
  }
  .category-product li {
    width: 50%;
  }
}
/* ----- 選單 02 - 頁面主架構（含側邊欄） ----- */
.main {
  margin: 50px auto 100px auto;
}

.double-col {
  display: flex;
  justify-content: center;
}

.aside {
  width: 25%;
  max-width: 180px;
  margin-right: 50px;
  box-sizing: border-box;
}
.aside-product {
  width: 25%;
  max-width: 250px;
  margin-right: 50px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .aside-product {
    margin-bottom: 30px;
  }
}
.aside__title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 24px;
}
.aside__title img {
  display: none;
  max-width: 18px;
}
.aside-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
.aside-menu__item {
  transition: all 0.5s;
}
.aside-menu__item.active, .aside-menu__item a {
  position: relative;
  padding: 10px 10px 10px 35px;
  font-size: 18px;
}
.aside-menu__item.active::before, .aside-menu__item a::before {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  content: "";
  width: 20px;
  height: 1px;
  background: #e7e7e7;
  transition: all 0.5s;
}
.aside-menu__item.active {
  color: #333333;
  padding: 10px 10px 10px 55px;
}
.aside-menu__item.active::before {
  width: 40px;
  background: #3382c5;
}
.aside-menu__item a {
  display: block;
  color: #888888;
}
.aside-menu__item a:hover {
  padding: 10px 10px 10px 55px;
  color: #333333;
}
.aside-menu__item a:hover::before {
  width: 40px;
  background: #3382c5;
}
.aside-menu__multilayer-sub {
  display: flex;
  flex-direction: column;
  padding: 5px 5px 5px 55px;
}
.aside-menu__multilayer-sub a {
  color: #cccccc;
}
.aside-menu__multilayer-sub a:hover {
  color: #3382c5;
}
.aside-menu__multilayer-sub .active {
  color: #3382c5;
}
.aside-menu__multilayer-sub p.active + a {
  margin-top: 10px;
}
.aside-menu__multilayer-sub a + p.active {
  margin-top: 10px;
}

.content {
  width: calc(100% - 230px);
}
.content-product {
  width: calc(100% - 200px);
}
.content__title {
  margin-bottom: 30px;
  font-size: 30px;
  text-align: center;
  color: #000000;
}

@media screen and (max-width: 1024px) {
  .main {
    margin: 30px auto 60px auto;
  }

  .double-col {
    flex-direction: column;
  }

  .aside, .content, .aside-product, .content-product {
    width: 100%;
    max-width: 100%;
  }

  .aside {
    margin-bottom: 30px;
  }
  .aside__title {
    margin-bottom: 0;
    padding: 10px 20px;
    background-color: #e7e7e7;
  }
  .aside__title img {
    display: block;
  }
  .aside-menu {
    padding: 0 15px;
    background-color: rgba(231, 231, 231, 0.3);
  }
  .aside-menu.mobile-active .menu__item {
    display: none;
  }
  .aside-menu__item.active {
    color: #3382c5;
  }

  .content__title {
    font-size: 26px;
  }
}
/* ----------- 展開收合（faq、財務報表） ----------- */
.spread {
  margin: 0;
  padding: 0;
  list-style: none;
}
.spread__item {
  padding: 0 10px;
  border-bottom: 1px solid #e7e7e7;
}
.spread__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  cursor: pointer;
}
.spread__title p{
  width: calc(100% - 25px);
}
.spread__content {
  display: none;
  padding: 0 20px 30px 20px;
}

.toggle-icon {
  position: relative;
  width: 22px;
  height: 22px;
  border: 1px solid #888888;
  border-radius: 50%;
}
.toggle-icon span {
  position: absolute;
  background: #555555;
  width: 12px;
  height: 1px;
  left: 50%;
  top: 50%;
  transition: 0.3s;
}
.toggle-icon span:first-child {
  transform: translate(-50%, -50%);
}
.toggle-icon span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}
.toggle-icon.toggle-icon__open span:last-child {
  transform: translate(-50%, -50%) rotate(0deg);
}

/* ------------------ 頁碼 ------------------ */
.pagination {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 50px 0 0 0;
  list-style: none;
}
.pagination__item {
  display: flex;
  margin: 0 3px;
  border: 1px solid #e7e7e7;
  border-radius: 50%;
  transition: all 0.5s;
}
.pagination__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  transition: all 0.5s;
  color: #555555;
}
.pagination__item img {
  width: 7px;
  height: auto;
}
.pagination__item.active {
  background-color: #3382c5;
  border: 1px solid #3382c5;
}
.pagination__item.active a {
  color: #ffffff;
}
.pagination__item:hover {
  background-color: rgba(51, 130, 197, 0.1);
  border: 1px solid #3382c5;
}
.pagination__item:hover a {
  color: #555555;
}
.pagination__item:hover.active {
  background-color: #3382c5;
  border: 1px solid #3382c5;
}
.pagination__item:hover.active a {
  color: #ffffff;
}

.next-page {
  transform: rotate(180deg);
}

/* ------------ 共用按鈕設定 end ------------ */
/*  ---------------------------------------- */
/*   首頁 index                              */
/* ---------------------------------------- */
/* 首頁 - banner */
.index__banner-item img {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .banner-mobile {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .banner-desktop {
    display: none;
  }
}
/* 首頁 - 公司介紹 */
.index-about {
  position: relative;
  display: flex;
  margin: 130px auto 200px auto;
}
.index-about__info {
  position: absolute;
  left: 0;
  top: 135px;
  padding: 100px 70px;
  width: 50%;
  background: -moz-linear-gradient(-45deg, #143976 0%, #167de7 100%);
  background: -webkit-linear-gradient(-45deg, #143976 0%, #167de7 100%);
  background: linear-gradient(135deg, #143976 0%, #167de7 100%);
  box-shadow: 0 0 40px rgba(4, 83, 156, 0.5);
  z-index: 1;
}
.index-about__title {
  margin-bottom: 40px;
}
.index-about__title h1, .index-about__title p {
  font-weight: bold;
  color: #ffffff;
}
.index-about__title h1 {
  font-size: 68px;
}
.index-about__title p {
  font-size: 26px;
}
.index-about__content {
  line-height: 27px;
  font-size: 17px;
  color: #85e1ff;
}
.index-about__content p {
  margin-bottom: 30px;
}
.index-about__img {
  position: relative;
  margin-left: auto;
  width: 57%;
}
.index-about__img img {
  width: 100%;
}
.index-about__img::after {
  position: absolute;
  content: "";
  top: 95px;
  left: -65%;
  background: #ff3e2b;
  height: 100px;
  width: 100%;
  z-index: -1;
}
.index-about__btn {
  transition: 0.5s;
}
.index-about__btn:hover a {
  color: #ffdf00;
  opacity: 0.7;
}
.index-about__btn a {
  display: inline-flex;
  align-items: center;
  font-family: "Barlow";
  font-size: 18px;
  font-weight: bold;
  color: #ffdf00;
}
.index-about__btn img {
  margin-right: 13px;
}

@media screen and (max-width: 1280px) {
  .index-about__info {
    padding: 60px 50px;
  }
  .index-about__title {
    margin-bottom: 30px;
  }
  .index-about__title h1, .index-about__title p {
    font-weight: bold;
    color: #ffffff;
  }
  .index-about__title h1 {
    font-size: 56px;
  }
  .index-about__title p {
    font-size: 22px;
  }
  .index-about__img {
    position: static;
  }
  .index-about__img::after {
    top: 60px;
    left: 10%;
    width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .index-about {
    margin: 80px auto 130px auto;
  }
  .index-about__info {
    top: 90px;
    padding: 40px;
    width: 60%;
  }
  .index-about__title {
    margin-bottom: 25px;
  }
  .index-about__title h1 {
    font-size: 35px;
  }
  .index-about__title p {
    font-size: 22px;
  }
  .index-about__content {
    font-size: 16px;
  }
  .index-about__content p {
    margin-bottom: 20px;
  }
  .index-about__img::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .index-about__img {
    width: 80%;
  }
  .index-about__info {
    top: 90px;
    padding: 30px;
    width: 65%;
  }
}
@media screen and (max-width: 568px) {
  .index-about {
    flex-direction: column-reverse;
  }
  .index-about__info {
    position: static;
  }
  .index-about__info, .index-about__img {
    width: 100%;
  }
}
/* 首頁 - 聯絡我們 */
.index-contact {
  padding: 75px 0;
  background: url("../images/index_contact_bg.png") no-repeat center;
  background-size: cover;
  text-align: center;
  color: #85e1ff;
}
.index-contact p {
  margin-bottom: 15px;
}
.index-contact__title {
  font-family: "Myriad Pro";
  font-size: 36px;
  font-weight: bold;
  color: #ffffff;
}
.index-contact__btn {
  display: inline-block;
  margin-top: 35px;
}
.index-contact__btn a {
  display: flex;
  padding: 10px 35px;
  color: #ffffff;
  font-size: 18px;
  background-color: #ff3e2b;
  border-radius: 30px;
  transition: 0.5s;
}
.index-contact__btn a:hover {
  background-color: #db2717;
}
.index-contact__btn__img {
  margin-right: 10px;
  width: 23px;
  height: auto;
  background: url("../images/icon-arrow-right-white.png") no-repeat center;
}

@media screen and (max-width: 568px) {
  .index-contact {
    padding: 50px 7.5%;
  }
  .index-contact__btn {
    margin-top: 20px;
  }
}
.index-products-box {
  padding: 120px 0 140px 0;
  background: url("../images/index_product_bg.png") no-repeat center;
  background-size: cover;
}
.index-products__head {
  margin-bottom: 50px;
  text-align: center;
  font-size: 20px;
}
.index-products__title {
  font-size: 48px;
  font-weight: bold;
}

/* 首頁 - 產品輪播 */
.index__product-item {
  position: relative;
  margin: 0 auto;
  padding: 0 30px;
  width: 83%;
  height: 650px;
}
.index__product-list .slick-prev {
  left: -80px;
  width: 60px;
  height: 95px;
  background-color: #818181;
}
.index__product-list .slick-prev:before {
  content: url("../images/slick-prev.png");
}
.index__product-list .slick-next {
  right: -80px;
  width: 60px;
  height: 95px;
  background-color: #e26a5e;
}
.index__product-list .slick-next::before {
  content: url("../images/slick-next.png");
}
.index__product__img {
  width: 49%;
}
.index__product__info {
  position: absolute;
  bottom: 65px;
  right: 30px;
  padding: 65px 75px;
  width: 62%;
  background-color: #fff;
  font-size: 18px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
}
.index__product__info p + p {
  margin-bottom: 35px;
}
.index__product__name {
  margin-bottom: 30px;
  font-family: "Barlow";
  font-size: 30px;
}
.index__product__btn a {
  display: inline-flex;
  align-items: center;
  font-family: "Barlow";
  font-size: 18px;
  font-weight: bold;
  color: #ff3e2b;
  transition: 0.5s;
}
.index__product__btn a:hover {
  opacity: 0.7;
}
.index__product__btn__img {
  margin-right: 10px;
  width: 25px;
  height: 20px;
  background: url("../images/icon-arrow-right-red.png") no-repeat center;
}

@media screen and (max-width: 1370px) {
  .index__product-list .slick-prev {
    left: -60px;
  }
  .index__product-list .slick-next {
    right: -60px;
  }
}
@media screen and (max-width: 1280px) {
  .index-products-box {
    padding: 100px 0;
  }

  .index__product-list .slick-prev {
    left: -45px;
    width: 50px;
  }
  .index__product-list .slick-next {
    right: -45px;
    width: 50px;
  }
}
@media screen and (max-width: 768px) {
  .index__product__info {
    padding: 35px;
    width: 70%;
  }
}
@media screen and (max-width: 568px) {
  .index-products-box {
    padding: 59px 0 80px 0;
  }

  .index__product-item {
    padding: 0;
    height: 560px;
  }
  .index__product__img {
    display: none;
  }
  .index__product__info {
    position: static;
    width: 100%;
    font-size: 16px;
    box-shadow: none;
  }

  .index__product__info p + p, .index__product__name {
    margin-bottom: 15px;
  }
}
/* ---------------------------------------- */
/*  關於晶相 - 公司簡介                        */
/* ---------------------------------------- */
.about__company {
  margin-bottom: 50px;
  padding-bottom: 50px;
  line-height: 30px;
  border-bottom: 1px solid #e7e7e7;
  text-align: center;
}

.about__products {
  display: flex;
}
.about__products__img {
  width: 50%;
  margin-right: 50px;
}
.about__products__img img {
  width: 100%;
  height: auto;
}
.about__products__content {
  width: 50%;
}
.about__products__content h3 {
  margin-bottom: 20px;
  text-align: center;
}
.about__products__content p + p {
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .about__products {
    flex-direction: column;
  }
  .about__products__img, .about__products__content {
    width: 100%;
  }
  .about__products__img {
    margin-right: 0;
  }
}
/* ---------------------------------------- */
/*  關於晶相 - 公司沿革                        */
/* ---------------------------------------- */
.history {
  margin: 0;
  padding: 0;
  list-style: none;
}
.history li {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}
.history__year {
  width: 100%;
  font-size: 22px;
  color: #3382c5;
  margin-bottom: 10px;
}
.history__content {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
  color: #555555;
}
.history__item {
  display: flex;
  align-items: center;
}
.history__item-flex-start {
  display: flex;
  align-items: flex-start;
}
.history__item div p + p {
  margin-top: 10px;
}
.history__item + .history__item {
  margin-top: 15px;
}
.history__month {
  margin-right: 15px;
  font-size: 20px;
  color: #333333;
}
.history__date {
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .history__item {
    flex-direction: column;
    align-items: flex-start;
  }
  .history__month {
    margin-bottom: 10px;
  }
}
/* ---------------------------------------- */
/*  產品介紹                                 */
/* ---------------------------------------- */
.product_description__img {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.product_description__img img {
  width: 50%;
}

/* --------- 搜尋欄 --------- */ 
.search-box {
  position: relative;
  display: flex;
  margin: 0 0 30px 0;
  width: 100%;
  max-width: 200px;
}
@media screen and (max-width: 1024px) {
  .search-box {
    margin: 0 auto 30px auto;
    max-width: 500px;
  }
}
.search-box__bar, .search-box__btn {
  height: 40px;
  border: 1px solid #3382c5;
  outline: none;
  transition: all 0.5s;
}
.search-box__bar {
  padding: 10px 55px 10px 15px;
  width: 100%;
}
.search-box__bar:focus {
  border: 1px solid #216fb3;
}
.search-box__btn {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 50px;
  background: #3382c5;
  cursor: pointer;
}
.search-box__btn:hover {
  background: #216fb3;
}
.search-box__btn img {
  width: 20px;
}

/* ---------------------------------------- */
/*  新聞中心                                 */
/* ---------------------------------------- */
.news-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e7e7e7;
}
.news-list li {
  padding: 25px 0;
  border-bottom: 1px solid #e7e7e7;
  transition: all 0.5s;
}
.news-item {
  display: flex;
  align-items: center;
}
.news-item__photo {
  margin-right: 30px;
  width: 200px;
  height: 130px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #cccccc;
}
.news-item__info {
  width: calc(100% - 230px);
}
.news-item__head {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.news-item__date {
  font-size: 15px;
  color: #888888;
}
.news-item__category {
  margin-right: 15px;
  font-size: 17px;
  padding: 5px 20px;
  color: #ffffff;
}
.news-item__title {
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: bold;
  color: #333333;
  transition: all 0.5s;
}
.news-item__content {
  font-size: 17px;
  color: #888888;
  transition: all 0.5s;
}
.news-item:hover .news-item__title {
  color: #3382c5;
}
.news-detail__head {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e7e7e7;
}
.news-detail__date {
  font-size: 15px;
  color: #888888;
  margin-bottom: 5px;
}
.news-detail__title {
  font-size: 22px;
}

.category-bg01 {
  background-color: #555555;
}
.category-bg02 {
  background-color: #ff3e2b;
}

@media screen and (max-width: 568px) {
  .news-item {
    flex-direction: column;
  }
  .news-item__photo {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
  }
  .news-item__info {
    width: 100%;
  }
}
/* ---------------------------------------- */
/*	財務資訊 - 每月營業報告										*/
/* ---------------------------------------- */
.revenue-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.revenue-year {
  position: relative;
  margin-left: auto;
  margin-bottom: 10px;
  width: 150px;
  cursor: pointer;
}
.revenue-year a:hover {
  color: #555555;
}
.revenue-year-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: rgba(240, 240, 240, 0.5);
  border: 1px solid #e7e7e7;
  border-radius: 3px;
  color: #555555;
}
.revenue-year-main img {
  width: 15px;
}
.revenue-year ul {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  color: #555555;
  border-radius: 3px;
}
.revenue-year ul a {
  display: block;
  padding: 10px 15px;
  color: #555555;
}
.revenue-year ul a:hover {
  background-color: #f0f0f0;
}
.revenue-year .current {
  background-color: #f0f0f0;
}

a.revenue-year-main {
  color: #555555;
}

/* ---------------------------------------- */
/*	財務資訊 - 財務報告												*/
/* ---------------------------------------- */
/* ---------- 財務報表 ---------- */
.financial_statements .spread__item:first-child {
  border-top: 1px solid #e7e7e7;
}

.financial {
  display: flex;
}
.financial__title {
  font-size: 24px;
  color: #333333;
}
.financial-item {
  display: flex;
  flex-direction: column;
  width: 20%;
  padding: 0 10px;
  text-align: center;
}
.financial-item__title {
  margin-bottom: 10px;
  font-size: 18px;
  color: #555555;
}
.financial-item__title p:first-child {
  color: #000000;
  font-size: 22px;
}
.financial-item__download {
  font-size: 15px;
}
.financial-item__download a {
  display: inline-flex;
  align-items: center;
  padding: 5px 15px;
  border: 1px solid #e26a5e;
  background-color: rgba(226, 106, 94, 0.1);
  color: #e26a5e;
  border-radius: 3px;
}
.financial-item__download a:hover {
  background-color: #e26a5e;
  color: #ffffff;
}
.financial-item__download a:hover .financial-item__download-img {
  background-position: top;
}
.financial-item__download-img {
  margin-right: 5px;
  width: 15px;
  height: 15px;
  background: url("../images/icon-download-red.svg") no-repeat;
  background-position: bottom;
  background-size: cover;
  transition: all 0.5s;
}
.financial-item + .financial-item {
  border-left: 1px solid #e7e7e7;
}

@media screen and (max-width: 768px) {
  .financial-item__title {
    font-size: 16px;
  }
  .financial-item__title p:first-child {
    font-size: 18px;
  }
}
@media screen and (max-width: 568px) {
  .financial {
    flex-direction: column;
  }
  .financial-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    width: 100%;
  }
  .financial-item + .financial-item {
    border-left: none;
    border-top: 1px solid #e7e7e7;
    margin-top: 20px;
    padding-top: 20px;
  }
  .financial-item__title {
    display: flex;
    margin-bottom: 0;
    margin-right: 15px;
    font-size: 18px;
  }
}
/* ------------ 年報 ------------ */
.annual_report {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  margin-top: -20px;
  padding: 0;
  list-style: none;
}
.annual_report__item {
  position: relative;
  margin: 20px 20px 38px 20px;
  padding: 15px 25px 30px 25px;
  width: calc(25% - 40px);
  background-color: rgba(240, 240, 240, 0.5);
  border: 1px solid #cccccc;
  transition: 0.5s;
}
.annual_report__item:hover {
  background-color: rgba(255, 204, 0, 0.2);
}
.annual_report__item:hover .annual_report__btn {
  border: 1px solid #000000;
  background-color: #000000;
}
.annual_report__title {
  color: #333333;
  font-size: 18px;
}
.annual_report__title p:first-child {
  font-size: 24px;
  color: #000000;
}
.annual_report__btn {
  position: absolute;
  bottom: -18.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  border: 1px solid #555555;
  background-color: #555555;
  transition: 0.5s;
}
.annual_report__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  color: #e7e7e7;
}
.annual_report__download {
  margin-left: 7px;
  width: 15px;
  height: 15px;
  background: url("../images/icon-download-white.svg") no-repeat;
}

@media screen and (max-width: 568px) {
  .annual_report__item {
    width: 100%;
  }
}
/* ---------------------------------------- */
/*	財務資訊 - 法人說明會											*/
/* ---------------------------------------- */
.download {
  margin: 0;
  padding: 0;
  list-style: none;
}
.download li {
  display: flex;
  align-items: center;
  padding: 20px;
}
.download__head {
  background-color: #888888;
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
}
.download__item {
  border-bottom: 1px solid #e7e7e7;
}
.download__item .download__date {
  color: #555555;
}
.download__date {
  margin-right: 20px;
  width: 120px;
}
.download__title {
  margin-right: 20px;
  width: calc(100% - 190px);
}
.download__file {
  width: 50px;
  text-align: center;
}
.download__file img {
  width: 18px;
  height: auto;
}

@media screen and (max-width: 568px) {
  .download__head {
    justify-content: space-between;
  }
  .download__head .download__date {
    display: none;
  }
  .download__item {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .download__item .download__title {
    width: calc(100% - 70px);
  }
  .download__item .download__date {
    margin-bottom: 10px;
    width: 100%;
    color: #888888;
  }
}
/* ---------------------------------------- */
/*	公司治理 - 公司組織												*/
/* ---------------------------------------- */
.organization {
  margin: 50px 0 0 0;
  padding: 0;
  list-style: none;
}
.organization__img {
  margin: 0 auto;
  max-width: 800px;
}
.organization__item {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 30px;
}
.organization__item + .organization__item {
  margin-top: 30px;
}
.organization__title {
  position: relative;
  padding-left: 20px;
  width: 20%;
  font-size: 20px;
  font-weight: bold;
}
.organization__title::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 7px;
  height: 70%;
  background-color: rgba(51, 130, 197, 0.5);
}
.organization__content {
  width: 80%;
}
.organization__content p + p {
  margin-top: 10px;
}

@media screen and (max-width: 568px) {
  .organization__item {
    flex-direction: column;
  }
  .organization__title, .organization__content {
    width: 100%;
  }
  .organization__title {
    margin-bottom: 10px;
  }
}
/* ---------------------------------------- */
/*	股東專欄 - 股務代理機構										*/
/* ---------------------------------------- */
.agent__content {
  display: flex;
  align-items: center;
}
.agent__content__img, .agent__content__detail {
  width: 50%;
}
.agent__content__img {
  margin-right: 50px;
}
.agent__content__detail img {
  margin-right: 10px;
  width: 15px;
  height: auto;
}
.agent__content__detail p + p {
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .agent__content {
    flex-direction: column;
  }
  .agent__content__img, .agent__content__detail {
    width: 100%;
  }
  .agent__content__img {
    margin-right: 0;
  }
}
h3.agent__title {
  margin-bottom: 20px;
  font-size: 22px;
  color: #3382c5;
}

/* ---------------------------------------- */
/*	公司治理 - 功能性委員會										*/
/* ---------------------------------------- */
.govern_committees__ul {
  margin: 5px 0 15px 0;
  padding: 0 0 0 20px;
  list-style: none;
}

/* ---------------------------------------- */
/*	問與答																	 */
/* ---------------------------------------- */
.faq__title {
  font-size: 20px;
  color: #333333;
}
.faq__content {
  color: #555555;
}

/* ---------------------------------------- */
/*  人力資源 - 活力晶相                        */
/* ---------------------------------------- */
.activities {
  display: flex;
  flex-wrap: wrap;
}
.activities__pic {
  width: calc(100% / 3);
  padding: 5px;
  font-size: 0;
}
@media screen and (max-width: 768px) {
  .activities__pic {
    width: 50%;
  }
}
@media screen and (max-width: 568px) {
  .activities__pic {
    width: 100%;
  }
}
.activities__pic img {
  width: 100%;
}

/* ---------------------------------------- */
/*  企業社會責任 - 企業社會責任之使命及願景       */
/* ---------------------------------------- */
.quality {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e7e7e7;
}
.quality h3 {
  margin-bottom: 20px;
  font-size: 28px;
  text-align: center;
  color: #3382c5;
}
.quality__info {
  display: flex;
  justify-content: center;
}
.quality__info div {
  width: 120px;
  line-height: 120px;
  text-align: center;
  border: 1px solid rgba(51, 130, 197, 0.2);
  border-radius: 50%;
  color: #3382c5;
  font-size: 20px;
}
.quality__info div + div {
  margin-left: 30px;
}
.quality__content {
  display: flex;
  align-items: center;
}
.quality__content__img {
  width: 50%;
  margin-right: 50px;
}
.quality__content__img img {
  width: 100%;
  height: auto;
}
.quality__content__detail {
  width: 50%;
}
.quality__content__detail h3 {
  margin-bottom: 20px;
  text-align: center;
}
.quality__content__detail p + p {
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .quality__content {
    flex-direction: column;
  }
  .quality__content__img, .quality__content__detail {
    width: 100%;
  }
  .quality__content__img {
    margin-right: 0;
  }
}
@media screen and (max-width: 568px) {
  .quality__info {
    flex-direction: column;
    align-items: center;
  }
  .quality__info div + div {
    margin-left: 0;
    margin-top: 20px;
  }
  .quality__content__img {
    margin-bottom: 20px;
  }
}
/* ---------------------------------------- */
/*  企業社會責任 - 職場環境                    */
/* ---------------------------------------- */
.environment__img {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.environment__img img {
  width: 48%;
}
.environment__img img:first-child {
  margin-right: 15px;
}

@media screen and (max-width: 568px) {
  .environment__img {
    flex-direction: column;
  }
  .environment__img img {
    width: 100%;
  }
  .environment__img img:first-child {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
/* ---------------------------------------- */
/*  企業社會責任 - 職業安全衛生結果              */
/* ---------------------------------------- */
.safety-health {
  line-height: 32px;
}
.safety-health .harm {
  display: flex;
  flex-wrap: wrap;
}
.safety-health .harm__box {
  padding-bottom: 15px;
  width: 50%;
  border-bottom: 1px solid #f0f0f0;
}
.safety-health .harm__list {
  margin: 5px 0 0 0;
  font-size: 16px;
  line-height: 28px;
}
.safety-health__table {
  display: flex;
  border: 1px solid #e7e7e7;
}
.safety-health__table-item {
  width: 50%;
  background-color: rgba(240, 240, 240, 0.5);
  border-radius: 3px;
  font-size: 16px;
}
.safety-health__table-item:last-child {
  border-left: 1px solid #e7e7e7;
}
.safety-health__table-top {
  padding: 5px 20px;
  border-bottom: 1px solid #e7e7e7;
  background-color: #f0f0f0;
}
.safety-health__table-bottom {
  padding: 20px;
}
.safety-health__item {
  margin-left: 20px;
}
.safety-health__item-sub {
  margin-left: 20px;
}
.safety-health__item h4 {
  margin-top: 10px;
}
.safety-health__img {
  max-width: 600px;
}

@media screen and (max-width: 568px) {
  .safety-health__item, .safety-health__item-sub {
    margin-left: 0;
  }
  .safety-health__table {
    flex-direction: column;
  }
  .safety-health__table-item {
    width: 100%;
  }
}
/* ---------------------------------------- */
/*  聯絡我們                                  */
/* ---------------------------------------- */
.thank-contact {
  padding-bottom: 25px;
  margin: 60px 0 40px 0;
  font-size: 16px;
  color: #888888;
  border-bottom: 1px solid #e7e7e7;
  text-align: center;
}
.thank-contact h3 {
  margin-bottom: 20px;
  font-size: 26px;
  text-align: center;
  color: #333333;
}

.contact__info ul {
  margin: 0;
  padding: 0;
}
.contact__info ul + ul {
  margin-top: 50px;
}
.contact__info li {
  display: flex;
}
.contact__info li + li {
  margin-top: 15px;
}
.contact__info img {
  margin-right: 10px;
  width: 15px;
  height: auto;
}
.contact__info__address {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__info__address + .contact__info__address {
  margin-top: 50px;
}
.contact__info__address ul {
  width: 30%;
}
.contact__info__map {
  display: flex;
  align-items: center;
  margin-right: 80px;
  width: 40%;
  max-width: 400px;
  height: 220px;
}
.contact__info__map img {
  margin-right: 0;
  width: 100%;
  height: auto;
}
.contact__form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
  width: 100%;
}
.contact__form em {
  margin-left: 5px;
  color: #ff3e2b;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .contact {
    flex-direction: column-reverse;
  }
  .contact__info, .contact__form {
    width: 100%;
  }
  .contact__form {
    margin-bottom: 50px;
    padding: 0;
  }
}
@media screen and (max-width: 568px) {
  .contact__info__address {
    flex-direction: column;
  }
  .contact__info__map {
    width: 100%;
    height: 220px;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .contact__info__address ul {
    width: 100%;
  }
}
.title-area {
  color: #3382c5;
  font-size: 20px;
}

/* ---------------------------------------- */
/*  網站地圖                                 */
/* ---------------------------------------- */
.sitemap-box a {
  display: inline-block;
}
.sitemap-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sitemap-list li + li {
  margin-top: 50px;
}
.sitemap__category {
  margin-bottom: 15px;
  font-size: 20px;
  color: #3382c5;
  font-weight: bold;
}
.sitemap__pages {
  position: relative;
  margin-left: 30px;
}
.sitemap__pages::before {
  position: absolute;
  content: "";
  left: -20px;
  height: 100%;
  width: 3px;
  background: rgba(231, 231, 231, 0.5);
}
.sitemap__pages a {
  color: #888888;
  font-size: 16px;
}
.sitemap__pages a + a {
  margin-left: 50px;
}
.sitemap__secondary-category + .sitemap__secondary-category {
  margin-top: 30px;
}
.sitemap__secondary-category p {
  font-size: 18px;
  color: rgba(51, 130, 197, 0.7);
}
.sitemap__secondary-category div {
  margin-top: 5px;
}
.sitemap__single-page {
  margin-top: 50px;
  padding-top: 50px;
  font-size: 20px;
  border-top: 1px solid #f0f0f0;
}
.sitemap__single-page a {
  color: #3382c5;
  font-weight: bold;
}
.sitemap__single-page a + a {
  margin-left: 50px;
}

@media screen and (max-width: 768px) {
  .sitemap__pages a + a {
    margin-left: 20px;
  }
}
@media screen and (max-width: 568px) {
  .sitemap__pages a + a.sitemap__ml-0,
.sitemap__single-page a + a {
    margin-left: 0;
  }

  .sitemap__single-page a {
    margin-right: 10px;
  }
}

/*# sourceMappingURL=master.css.map */

ul.sub-list>li>a {
  display: block;
}