@charset "UTF-8";
/* brand */
/* opacity & gradient */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&family=Urbanist:wght@400;500;800&display=swap");
/* 例如:
  @include device(pc);
  得到 1400px
*/
/*
例如：
  @include res(pad, to-pc) {...}
  等同於
  @media all and (min-width: 768px) {...}

  @include res(pad, to-mb) {...}
  等同於
  @media all and (max-width: 767px) {...}
*/
/*
  for example:

  .grids-3{
    @include setgrids(3,12px);
  }

  在.grids-3底下的children會以3個一列，彼此間距為12px

  .grids-4{
    @include setgrids(2,12px,[[pad,3,16px],[pc,4,20px]]);
  }

  在.grids-4底下的children在pc以上的裝置會以4個一列，彼此間距為20px
                         在pad-pc的裝置會以3個一列，彼此間距為16px
                         在pad以下的裝置會以2個一列，彼此間距為12px

*/
.txt-l1 {
  display: block;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  line-height: 1.5em;
  -webkit-line-clamp: 1;
  height: 1.5em;
  height: auto;
}

.txt-l2 {
  display: block;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  line-height: 1.5em;
  -webkit-line-clamp: 2;
  height: 3em;
  height: auto;
}

.txt-l3 {
  display: block;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  line-height: 1.5em;
  -webkit-line-clamp: 3;
  height: 4.5em;
  height: auto;
}

input:focus {
  outline: none !important;
  box-shadow: none !important;
}

select:focus {
  outline: none !important;
  box-shadow: none !important;
}

.btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

/*mp-ripple*/
.mp-ripple {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transform: translate3d(0, 0, 0);
}

.mp-ripple:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.5s, opacity 1s;
}

.mp-ripple:active:after {
  transform: scale(0, 0);
  opacity: 0.2;
  transition: 0s;
}

.mp-ripple-over {
  position: relative;
  transform: translate3d(0, 0, 0);
}

.mp-ripple-over:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.5s, opacity 1s;
}

.mp-ripple-over:active:after {
  transform: scale(0, 0);
  opacity: 0.2;
  transition: 0s;
}

.box-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.box-img:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
.box-img.r-4-3:before {
  padding-bottom: 75%;
}
.box-img.r-16-9:before {
  padding-bottom: 56.25%;
}
.box-img.img-fit-text:before {
  padding-bottom: 50%;
}
.box-img.img-contain {
  background-size: contain;
}

/* Iframe 影片樣式 */
iframe {
  max-width: 100% !important;
}

.box-iframe {
  position: relative;
}
.box-iframe:before {
  content: "";
  width: 100%;
  display: block;
  padding-bottom: 56.25%;
}
.box-iframe iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100% !important;
  width: 100% !important;
}

.download-table {
  border: 1px solid #ddd;
}
.download-table thead {
  color: #fff;
  background: #b42121;
}
.download-table thead th {
  font-weight: 500;
  letter-spacing: 1px;
}
.download-table thead th.name {
  width: 30%;
}
@media all and (max-width: 575px) {
  .download-table thead th.name {
    width: 20%;
  }
}
.download-table thead th.type {
  width: 10%;
}
@media all and (max-width: 575px) {
  .download-table thead th.type {
    width: 17%;
  }
}
.download-table thead th.desc {
  width: 30%;
}
@media all and (max-width: 575px) {
  .download-table thead th.desc {
    width: 20%;
  }
}
.download-table thead th.size {
  width: 10%;
}
@media all and (max-width: 575px) {
  .download-table thead th.size {
    width: 17%;
  }
}
.download-table thead th.date {
  width: 10%;
}
@media all and (max-width: 575px) {
  .download-table thead th.date {
    width: 17%;
  }
}
.download-table thead th.download {
  width: 10%;
}
@media all and (max-width: 575px) {
  .download-table thead th.download {
    width: 9%;
  }
}
.download-table td,
.download-table th {
  text-align: center;
  padding: 10px 15px;
  vertical-align: middle;
  border: 1px solid #dee2e6;
}
.download-table td .download a i {
  font-size: 20px;
}
.download-table td .download .file-name {
  margin-top: 5px;
  font-size: 14px;
}
.download-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.response-table {
  max-width: 100%;
  overflow-y: auto;
}
@media all and (max-width: 575px) {
  .response-table table {
    width: 200%;
  }
}

.shop-tabs {
  position: relative;
}
.shop-tabs .search-loading {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
}
.shop-tabs .search-loading .lds-ellipsis {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.d-mobile {
  display: none !important;
}
@media all and (max-width: 575px) {
  .d-mobile {
    display: block !important;
  }
}

.d-desktop {
  display: block !important;
}
@media all and (max-width: 575px) {
  .d-desktop {
    display: none !important;
  }
}

select {
  -webkit-appearance: none;
}

@media all and (max-width: 575px) {
  .edit-area img {
    width: 100% !important;
    height: auto !important;
  }
}

@media all and (max-width: 575px) {
  .main-logo {
    width: 200px;
  }
}

.rev_block {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

@media all and (max-width: 575px) {
  .bg-arrows .tparrows {
    width: 35px;
    height: 35px;
    padding-top: 0px;
  }
}

.breadcrumb-bar {
  background: rgba(204, 204, 204, 0.1);
}
.breadcrumb-bar .breadcrumb {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  letter-spacing: 0.8px;
  background-color: transparent;
}
.breadcrumb-bar .breadcrumb .breadcrumb-item a {
  color: #979797;
  font-weight: 300;
}
.breadcrumb-bar .breadcrumb .breadcrumb-item:hover a {
  color: #db302c;
}
.breadcrumb-bar .breadcrumb .breadcrumb-item.active a {
  color: #373737;
  font-weight: 400;
}
.breadcrumb-bar .breadcrumb .breadcrumb-item.active:hover a {
  color: #db302c;
}

.search-form {
  position: relative;
  width: 100%;
  height: 60px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid #e4e4e4;
  transition: all 0.6s ease;
}
@media all and (max-width: 1199px) {
  .search-form {
    height: auto;
    border-radius: 25px;
  }
}
@media all and (max-width: 575px) {
  .search-form {
    height: auto;
    border-radius: 8px;
  }
}
.search-form .search-title {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #111111;
  height: 60px;
  letter-spacing: 0.8px;
  font-weight: 500;
  padding-left: 20px;
  cursor: pointer;
}
@media all and (max-width: 575px) {
  .search-form .form-button {
    width: 100%;
    text-align: center;
  }
}
.search-form .form-button .search-button {
  position: absolute;
  top: 9px;
  right: 10px;
  height: 40px;
  width: 40px;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  outline: none !important;
  letter-spacing: 0.8px;
  font-size: 17px;
  z-index: 0;
  border-radius: 100%;
  box-shadow: none;
  color: #fff;
  background-color: #e60d0d;
}
@media all and (max-width: 1199px) {
  .search-form .form-button .search-button {
    top: 40px;
  }
}
@media all and (max-width: 575px) {
  .search-form .form-button .search-button {
    position: relative;
    top: 0;
    right: auto;
    width: 140px;
    border-radius: 5px;
    margin: 15px auto 10px auto;
  }
}
.search-form .form-button .search-button i {
  color: #fff;
  font-size: 18px;
  margin-top: 4.5px;
}
@media all and (max-width: 768px) {
  .search-form .form-button .search-button i {
    font-size: 17px;
    margin-top: 5.5px;
  }
}
.search-form .form-button .search-button.large {
  width: 150px;
  height: 40px;
  border-radius: 32px;
}
@media all and (max-width: 1199px) {
  .search-form .form-button .search-button.large {
    width: 140px;
  }
}
@media all and (max-width: 768px) {
  .search-form .form-button .search-button.large {
    width: 120px;
    font-size: 16px;
  }
}
.search-form .form-button .search-button.large i {
  margin-right: 8px;
}
.search-form select {
  position: relative;
  background: #f4f4f4;
  border: none;
  height: 40px;
  border-radius: 0px;
  color: #424952;
  padding-left: 30px;
  font-size: 15px;
  font-weight: 500;
}
.search-form select:focus {
  border: none;
}
.search-form label,
.search-form .form-item {
  position: absolute;
  top: 9px;
  background: #f4f4f4;
}
@media all and (max-width: 1199px) {
  .search-form label,
  .search-form .form-item {
    position: relative;
  }
}
.search-form label.label-named,
.search-form .form-item.label-named {
  left: 2%;
  width: 28%;
}
@media all and (max-width: 1199px) {
  .search-form label.label-named,
  .search-form .form-item.label-named {
    left: 3%;
    width: 44%;
    margin-bottom: 0.8rem;
    display: inline-block;
  }
}
@media all and (max-width: 768px) {
  .search-form label.label-named,
  .search-form .form-item.label-named {
    width: 43%;
  }
}
@media all and (max-width: 575px) {
  .search-form label.label-named,
  .search-form .form-item.label-named {
    left: 3%;
    width: 95%;
    margin-bottom: 0.5rem;
    display: block;
  }
}
.search-form label.label-named::before,
.search-form .form-item.label-named::before {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #e60d0d;
  position: absolute;
  top: 8px;
  left: 9px;
}
.search-form label.label-named input,
.search-form .form-item.label-named input {
  width: 95%;
}
.search-form label.label-sort1,
.search-form .form-item.label-sort1 {
  left: 31%;
  width: 20%;
}
@media all and (max-width: 1199px) {
  .search-form label.label-sort1,
  .search-form .form-item.label-sort1 {
    left: 5%;
    width: 44%;
    margin-bottom: 0.8rem;
    display: inline-block;
  }
}
@media all and (max-width: 768px) {
  .search-form label.label-sort1,
  .search-form .form-item.label-sort1 {
    width: 43%;
  }
}
@media all and (max-width: 575px) {
  .search-form label.label-sort1,
  .search-form .form-item.label-sort1 {
    left: 3%;
    width: 95%;
    margin-bottom: 0.5rem;
    display: block;
  }
}
.search-form label.label-sort1::before,
.search-form .form-item.label-sort1::before {
  content: "\f0c7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #e60d0d;
  position: absolute;
  z-index: 5;
  top: 8px;
  left: 8px;
}
.search-form label.label-sort1::after,
.search-form .form-item.label-sort1::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #424952;
  position: absolute;
  z-index: 5;
  top: 11px;
  font-size: 12px;
  right: 12px;
}
.search-form label.label-sort1 select,
.search-form .form-item.label-sort1 select {
  width: 88%;
}
.search-form label.label-sort2,
.search-form .form-item.label-sort2 {
  left: 52%;
  width: 20%;
}
@media all and (max-width: 1199px) {
  .search-form label.label-sort2,
  .search-form .form-item.label-sort2 {
    left: 3%;
    width: 44%;
    margin-bottom: 1.2rem;
    display: inline-block;
  }
}
@media all and (max-width: 768px) {
  .search-form label.label-sort2,
  .search-form .form-item.label-sort2 {
    width: 43%;
  }
}
@media all and (max-width: 575px) {
  .search-form label.label-sort2,
  .search-form .form-item.label-sort2 {
    left: 3%;
    width: 95%;
    margin-bottom: 0.5rem;
    display: block;
  }
}
.search-form label.label-sort2::before,
.search-form .form-item.label-sort2::before {
  content: "\f0f2";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #e60d0d;
  position: absolute;
  z-index: 5;
  top: 8px;
  left: 8px;
}
.search-form label.label-sort2::after,
.search-form .form-item.label-sort2::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #424952;
  position: absolute;
  z-index: 5;
  top: 11px;
  font-size: 12px;
  right: 12px;
}
.search-form label.label-sort2 select,
.search-form .form-item.label-sort2 select {
  width: 88%;
}
.search-form label.label-sort3,
.search-form .form-item.label-sort3 {
  left: 73%;
  width: 22%;
}
@media all and (max-width: 1199px) {
  .search-form label.label-sort3,
  .search-form .form-item.label-sort3 {
    left: 5%;
    width: 44%;
    margin-bottom: 1.2rem;
    display: inline-block;
  }
}
@media all and (max-width: 768px) {
  .search-form label.label-sort3,
  .search-form .form-item.label-sort3 {
    width: 43%;
  }
}
@media all and (max-width: 575px) {
  .search-form label.label-sort3,
  .search-form .form-item.label-sort3 {
    left: 3%;
    width: 95%;
    margin-bottom: 0.5rem;
    display: block;
  }
}
.search-form label.label-sort3::before,
.search-form .form-item.label-sort3::before {
  content: "\f02c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #e60d0d;
  position: absolute;
  z-index: 5;
  top: 8px;
  left: 8px;
}
.search-form label.label-sort3::after,
.search-form .form-item.label-sort3::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #424952;
  position: absolute;
  z-index: 5;
  top: 11px;
  font-size: 12px;
  right: 12px;
}
.search-form label.label-sort3 select,
.search-form .form-item.label-sort3 select {
  width: 88%;
}
.search-form label input,
.search-form .form-item input {
  font-size: 15px;
  background: #f4f4f4;
  color: #5a6674;
  height: 40px;
  border: none;
  border-radius: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  letter-spacing: 0.8px;
  font-weight: 500;
  padding-left: 33px;
  transition: all 0.5s ease-in-out;
}
.search-form label input::-webkit-input-placeholder,
.search-form .form-item input::-webkit-input-placeholder {
  color: #4a4d50;
}
.search-form label input::-moz-placeholder,
.search-form .form-item input::-moz-placeholder {
  color: #4a4d50;
}

.index-solution {
  position: relative;
  background-image: url("../../assets/img/bg.png");
  background-size: cover;
}
.index-solution .service-box-3 .text-box {
  min-height: 8em;
}
.index-solution .service-box-3 .text-box h4 {
  font-weight: 500;
}
@media all and (max-width: 575px) {
  .index-solution .service-box-3 {
    padding: 0px;
  }
}
@media all and (max-width: 575px) {
  .index-solution .col-6 {
    padding-right: 8px;
    padding-left: 8px;
  }
}

.index-about {
  position: relative;
}
.index-about::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 300px;
  left: 50%;
  margin-left: -125px;
  height: 800px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.03) 40%, rgba(0, 0, 0, 0.03) 100%);
  transform: rotate(-60deg);
  transform-origin: bottom right;
}
.index-about::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 300px;
  right: 35%;
  margin-right: -125px;
  height: 3600px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.03) 10%, rgba(0, 0, 0, 0.03) 100%);
  transform: rotate(60deg);
  transform-origin: bottom right;
}
.index-about .dots-bg {
  padding: 40px 0px;
  background-image: url("../../assets/img/bg2.png");
}

.index-news .blog-grid .box-img {
  border-radius: 5px;
}
.index-news .blog-grid .box-img::before {
  padding-bottom: 70%;
}
.index-news .blog-grid .text-box {
  min-height: 9em;
}

.index-partner .clients img:hover {
  cursor: pointer;
}

.mainslider .banner {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
}
@media all and (max-width: 575px) {
  .mainslider .banner {
    background-size: contain;
  }
}
.mainslider .banner::before {
  content: "";
  display: block;
  min-height: 150px;
  width: 100%;
}
.mainslider .slick-arrow {
  display: flex !important;
  justify-content: center;
  align-items: center;
  position: absolute;
  text-align: center;
  font-size: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.2);
  border: 0;
  border-radius: 50%;
}
.mainslider .slick-arrow.slick-next {
  right: 10px;
  left: auto;
}
.mainslider .slick-arrow.slick-next::before {
  content: "\f054";
}
.mainslider .slick-arrow.slick-prev {
  left: 10px;
  right: auto;
}
.mainslider .slick-arrow.slick-prev::before {
  content: "\f053";
}
.mainslider .slick-arrow:before {
  color: #ffffff;
  font-family: "Font Awesome 5 Free";
  line-height: 40px;
  font-weight: 900;
  color: #fff;
}
.mainslider.page-inner .banner {
  height: 310px;
  background-size: cover;
}
@media all and (max-width: 768px) {
  .mainslider.page-inner .banner {
    height: auto;
    background-size: contain;
  }
}
.mainslider.page-inner .banner::before {
  padding-bottom: 24.33%;
}
.mainslider.page-inner .slick-arrow {
  width: 40px;
  height: 40px;
}
.mainslider.page-inner .slick-arrow:before {
  font-size: 16px;
}
.mainslider.d-desktop .banner {
  height: 425px;
  background-size: cover;
}
.mainslider.d-desktop .slick-arrow {
  width: 40px;
  height: 40px;
}
.mainslider.d-desktop .slick-arrow:before {
  font-size: 16px;
}
@media all and (max-width: 768px) {
  .mainslider.d-desktop.home-banner .banner {
    height: auto;
    background-size: contain;
  }
}
.mainslider.d-desktop.home-banner .banner::before {
  padding-bottom: 33.35%;
}
.mainslider.d-mobile .banner {
  height: auto;
  background-size: cover;
}
.mainslider.d-mobile .banner::before {
  padding-bottom: unset;
  min-height: 450px;
}
.mainslider.d-mobile .slick-arrow {
  width: 25px;
  height: 25px;
}
.mainslider.d-mobile .slick-arrow:before {
  font-size: 13px;
}

.slider {
  -webkit-transition: opacity 1500s ease-in-out;
  -moz-transition: opacity 1500s ease-in-out;
  -ms-transition: opacity 1500s ease-in-out;
  -o-transition: opacity 1500s ease-in-out;
  opacity: 1;
}

@media all and (max-width: 768px) {
  .shop-1 p {
    padding: 25px 15px;
  }
}
.shop-1.large h6 {
  font-size: 18px;
}

.category-block .service-box-3 .inner {
  padding: 15px 0px 0px 0px;
}
.category-block .service-box-3 .inner .box-img {
  margin-bottom: 15px;
}
.category-block .service-box-3 .inner .text-box {
  min-height: 130px;
  transition: background-color 0.5s ease-in-out;
  border-top: 1px solid #eeeeee;
  margin: 0px -10px -10px -10px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  background-color: transparent;
}
.category-block .service-box-3 .inner .text-box h4 {
  font-size: 16px;
  font-weight: 500;
  min-height: 2em;
  transition: all 0.5s linear;
}
.category-block .service-box-3 .inner .text-box p {
  text-align: center;
  word-break: break-all;
  transition: all 0.5s linear;
}
.category-block .service-box-3:hover .text-box {
  background-color: #aa3533;
}
.category-block .service-box-3:hover .text-box h4,
.category-block .service-box-3:hover .text-box p {
  color: #ffffff;
}

.product-block .product-images .thumb-nav li img {
  height: 110px;
}
@media all and (max-width: 768px) {
  .product-block .product-images .thumb-nav li img {
    height: 80px;
  }
}
.product-block .product-list {
  line-height: 30px;
  padding-left: 20px;
}
.product-block .product-list li {
  list-style-type: disc;
}
.product-block ul li.main {
  color: #db302c;
}
.product-block .add-to-cart-button {
  margin-left: 0px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 22px;
  letter-spacing: 1.2px;
}
.product-block .edit-area img {
  height: auto !important;
}
.product-block .product-tab-body .edit-area ul {
  margin-bottom: 50px;
}
.product-block .product-tab-body .edit-area ul ol li {
  display: list-item;
  list-style-type: decimal;
}
.product-block .product-tab-body .edit-area ul ol li::before {
  display: none;
}
.product-block .product-tab-body .edit-area p.main {
  font-weight: 500;
}
.product-block .product-tab-body .edit-area .full-img {
  max-width: 100%;
  margin-top: 20px;
  margin-bottom: 50px;
}
.product-block .product-tab-body .edit-area table {
  border: 1px solid #ddd;
}
.product-block .product-tab-body .edit-area table td,
.product-block .product-tab-body .edit-area table th {
  padding: 0px 15px;
  vertical-align: middle;
  border: 1px solid #dee2e6;
}
.product-block .product-tab-body .edit-area .graphics-block + .graphics-block {
  margin-bottom: 60px;
}
.product-block .product-tab-body .edit-area .graphics-block .subtitle {
  font-size: 17px;
  font-weight: 500;
  padding: 4px 8px;
  margin-top: 10px;
  display: inline-block;
  background: rgba(255, 209, 24, 0.3);
}
.product-block .product-tab-body .edit-area .graphics-block .product-table {
  border: 1px solid #ddd;
}
.product-block .product-tab-body .edit-area .graphics-block .product-table .title {
  width: 20%;
  padding: 0px;
  text-align: center;
  font-weight: 500;
  color: #fff;
  font-size: 18px;
  background: #b42121;
  border-top: 1px solid #b42121;
  border-left: 1px solid #b42121;
  border-right: 1px solid #b42121;
}
.product-block .product-tab-body .edit-area .graphics-block .product-table .full-title {
  text-align: center;
  color: #fff;
  font-size: 17px;
  padding: 8px;
  background: #b42121;
  border-left: 1px solid #b42121;
  border-right: 1px solid #b42121;
}
.product-block .product-tab-body .edit-area .graphics-block .product-table .name {
  text-align: center;
  padding: 10px 0px;
}
.product-block .product-tab-body .edit-area .graphics-block .product-table tr:last-child td.title {
  border-bottom: 1px solid #b42121;
}
.product-block .product-tab-body .edit-area .graphics-block .product-table td,
.product-block .product-tab-body .edit-area .graphics-block .product-table th {
  padding: 0px 15px;
  vertical-align: middle;
  border: 1px solid #dee2e6;
}
.product-block .product-tab-body .edit-area .graphics-block .product-table ul {
  margin: 0px;
}
.product-block .product-tab-body .edit-area .graphics-block .product-table ul li {
  padding: 3px 0px;
}
.product-block .product-tab-body .edit-area .graphics-block .product-table ul li:before {
  color: #e15050;
}
.product-block .product-tab-body .edit-area .graphics-block .product-table p {
  line-height: 2;
}
.product-block .product-tab-body .edit-area .application-table .left {
  width: 40%;
  text-align: center;
  padding: 10px;
}
.product-block .product-tab-body .edit-area .application-table .left .name {
  margin-bottom: 8px;
}
.product-block .product-tab-body .edit-area .application-table .right {
  width: 60%;
  text-align: justify;
  padding: 10px;
}
.product-block .shop-tabs .tabs .tab-menu {
  white-space: nowrap;
  overflow-y: auto;
}

.about-block .text-content {
  padding: 2% 5%;
}
.about-block .text-content p span.main {
  color: #db302c;
}
.about-block .features-box-3 .features-box-3-icon img {
  height: 100px;
  width: auto;
  opacity: 0.9;
}
.about-block .features-box-3 h4 {
  color: #db302c;
}
.about-block .full-video-block iframe {
  width: 100%;
  height: 100%;
}
.about-block .about-img {
  padding: 3rem;
}
@media all and (max-width: 768px) {
  .about-block .about-img {
    padding: 0px;
  }
}

.partner-block .img-box {
  width: 100%;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ddd;
}
.partner-block .img-box img {
  max-height: 110px;
  width: auto;
  padding: 10px;
}

.download-block label.label-type,
.download-block .form-item.label-type {
  left: 3%;
  width: 26%;
}
@media all and (max-width: 1199px) {
  .download-block label.label-type,
  .download-block .form-item.label-type {
    left: 4%;
    width: 25%;
  }
}
@media all and (max-width: 768px) {
  .download-block label.label-type,
  .download-block .form-item.label-type {
    width: 23%;
  }
}
@media all and (max-width: 575px) {
  .download-block label.label-type,
  .download-block .form-item.label-type {
    left: 3%;
    width: 95%;
    margin-bottom: 0.5rem;
  }
}
.download-block label.label-type::before,
.download-block .form-item.label-type::before {
  content: "\f0b0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #e60d0d;
  position: absolute;
  top: 8px;
  left: 8px;
}
.download-block label.label-type select,
.download-block .form-item.label-type select {
  width: 95%;
}
.download-block label.label-sort-name,
.download-block .form-item.label-sort-name {
  left: 31%;
  width: 26%;
}
@media all and (max-width: 1199px) {
  .download-block label.label-sort-name,
  .download-block .form-item.label-sort-name {
    width: 25%;
  }
}
@media all and (max-width: 768px) {
  .download-block label.label-sort-name,
  .download-block .form-item.label-sort-name {
    left: 30%;
    width: 23%;
  }
}
@media all and (max-width: 575px) {
  .download-block label.label-sort-name,
  .download-block .form-item.label-sort-name {
    left: 3%;
    width: 95%;
    margin-bottom: 0.5rem;
  }
}
.download-block label.label-sort-name::before,
.download-block .form-item.label-sort-name::before {
  content: "\f6d1";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #e60d0d;
  position: absolute;
  top: 8px;
  left: 8px;
}
.download-block label.label-sort-name select,
.download-block .form-item.label-sort-name select {
  width: 95%;
}
.download-block label.label-sort-file,
.download-block .form-item.label-sort-file {
  left: 59%;
  width: 26%;
}
@media all and (max-width: 1199px) {
  .download-block label.label-sort-file,
  .download-block .form-item.label-sort-file {
    left: 58%;
    width: 25%;
  }
}
@media all and (max-width: 768px) {
  .download-block label.label-sort-file,
  .download-block .form-item.label-sort-file {
    left: 56%;
    width: 23%;
  }
}
@media all and (max-width: 575px) {
  .download-block label.label-sort-file,
  .download-block .form-item.label-sort-file {
    left: 3%;
    width: 95%;
    margin-bottom: 0.5rem;
  }
}
.download-block label.label-sort-file::before,
.download-block .form-item.label-sort-file::before {
  content: "\f1c6";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #e60d0d;
  position: absolute;
  top: 8px;
  left: 8px;
}
.download-block label.label-sort-file select,
.download-block .form-item.label-sort-file select {
  width: 95%;
}

.search-block .container.inner {
  max-width: 1400px;
}
.search-block .product-tab-body .response-table {
  height: 600px;
}
.search-block .search-table {
  border: 1px solid #ddd;
}
.search-block .search-table thead {
  color: #fff;
  background: #b42121;
  position: sticky;
  top: -1px;
}
.search-block .search-table thead th {
  font-weight: 500;
  letter-spacing: 1px;
}
.search-block .search-table td,
.search-block .search-table th {
  text-align: center;
  padding: 10px 15px;
  vertical-align: middle;
  border: 1px solid #dee2e6;
}
.search-block .search-table td .download a i {
  font-size: 20px;
}
.search-block .search-table td .download .file-name {
  margin-top: 5px;
  font-size: 14px;
}
.search-block .search-table thead tr:nth-child(even) {
  background-color: #7e1c1c;
}
.search-block .search-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}
.search-block .shop-tabs .tabs .tab-menu {
  max-width: 100%;
  overflow-y: auto;
}
@media all and (max-width: 575px) {
  .search-block .shop-tabs .tabs .tab-menu li {
    white-space: nowrap;
  }
}
.search-block .shop-tabs .tabs .tab-menu li a {
  white-space: nowrap;
}

.services-block .ic-services {
  position: relative;
  background-image: url("../../assets/img/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.services-block .ic-intro1 {
  position: relative;
  background-image: url("../../assets/img/bg2.png");
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}
.services-block .ic-intro2 {
  position: relative;
  background-image: url("../../assets/img/bg1.png");
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
}
.services-block .contact-box-place-office.main h4 {
  color: #db312d;
  font-size: 28px;
}
.services-block .contact-box-place-office.main img {
  position: absolute;
  right: 10px;
  bottom: 12px;
  height: 100px;
  width: auto;
  opacity: 0.85;
}
@media all and (max-width: 575px) {
  .services-block .contact-box-place-office.main img {
    height: 60px;
  }
}
@media all and (max-width: 1199px) {
  .services-block .contact-box-place-office {
    min-height: 345px;
  }
}
@media all and (max-width: 768px) {
  .services-block .contact-box-place-office {
    min-height: 340px;
  }
}
@media all and (max-width: 575px) {
  .services-block .contact-box-place-office {
    min-height: unset;
  }
}
.services-block .contact-box-place-office.short {
  min-height: 352px;
}
@media all and (max-width: 768px) {
  .services-block .contact-box-place-office.short {
    min-height: 350px;
  }
}
@media all and (max-width: 575px) {
  .services-block .contact-box-place-office.short {
    min-height: unset;
  }
}
.services-block .contact-box-place-office.long {
  min-height: 355px;
}
@media all and (max-width: 1199px) {
  .services-block .contact-box-place-office.long {
    min-height: 375px;
  }
}
@media all and (max-width: 768px) {
  .services-block .contact-box-place-office.long {
    min-height: 350px;
  }
}
@media all and (max-width: 575px) {
  .services-block .contact-box-place-office.long {
    min-height: unset;
  }
}
.services-block .contact-box-place-office img {
  height: 45px;
  opacity: 0.85;
}
.services-block #services-tab-1 .contact-box-place-office {
  min-height: 380px;
}
@media all and (max-width: 768px) {
  .services-block #services-tab-1 .contact-box-place-office {
    min-height: 365px;
  }
}
@media all and (max-width: 575px) {
  .services-block #services-tab-1 .contact-box-place-office {
    min-height: unset;
  }
}
.services-block #services-tab-2 .contact-box-place-office {
  min-height: 380px;
}
@media all and (max-width: 1199px) {
  .services-block #services-tab-2 .contact-box-place-office {
    min-height: 375px;
  }
}
@media all and (max-width: 768px) {
  .services-block #services-tab-2 .contact-box-place-office {
    min-height: 335px;
  }
}
@media all and (max-width: 575px) {
  .services-block #services-tab-2 .contact-box-place-office {
    min-height: unset;
  }
}
.services-block #services-tab-3 .contact-box-place-office {
  min-height: 350px;
}
@media all and (max-width: 575px) {
  .services-block #services-tab-3 .contact-box-place-office {
    min-height: unset;
  }
}
.services-block .product-tab-body h4 {
  font-size: 25px;
}
.services-block label.label-area,
.services-block .form-item.label-area {
  left: 5%;
  width: 65%;
}
@media all and (max-width: 1199px) {
  .services-block label.label-area,
  .services-block .form-item.label-area {
    width: 60%;
  }
}
@media all and (max-width: 768px) {
  .services-block label.label-area,
  .services-block .form-item.label-area {
    left: 6%;
    width: 63%;
  }
}
@media all and (max-width: 575px) {
  .services-block label.label-area,
  .services-block .form-item.label-area {
    left: 3%;
    width: 95%;
    margin-bottom: 0.5rem;
  }
}
.services-block label.label-area::before,
.services-block .form-item.label-area::before {
  content: "\f5a0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #e60d0d;
  position: absolute;
  top: 8px;
  left: 8px;
}
.services-block label.label-area select,
.services-block .form-item.label-area select {
  width: 95%;
}
.services-block .img-box {
  width: 85%;
  height: 45px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services-block .img-box img {
  width: auto;
  height: 100%;
  opacity: 1;
}
.services-block .shop-tabs .tabs .tab-menu {
  max-width: 100%;
  overflow-y: auto;
}
@media all and (max-width: 575px) {
  .services-block .shop-tabs .tabs .tab-menu li {
    white-space: nowrap;
  }
}

.news-block .col-lg-3.col-md-6.col-12 {
  z-index: 1;
}
.news-block .prev-button,
.news-block .home-button,
.news-block .next-button {
  width: 100px;
  padding: 0;
  margin: 0;
  border: none;
  outline: none !important;
  letter-spacing: 0.8px;
  font-size: 15px;
  border-radius: 32px;
  height: 40px;
  box-shadow: none;
  background-color: #d21d1d;
}
.news-block .prev-button a,
.news-block .home-button a,
.news-block .next-button a {
  color: #fff;
}
.news-block .home-button {
  margin: 0px 10px;
}

.contact-block {
  position: relative;
}
.contact-block::before {
  content: "";
  position: absolute;
  background-image: url(../../assets/img/bg2.png);
  width: 35%;
  height: 250px;
  top: 10%;
  left: 0px;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-block::after {
  content: "";
  position: absolute;
  background-image: url(../../assets/img/bg2.png);
  width: 35%;
  height: 250px;
  right: 0px;
  bottom: 0px;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-block .text-danger {
  font-size: 15px;
}
.contact-block label[aria-required=true]:after {
  content: "*";
  color: red;
  margin-left: 3px;
}
.contact-block .primary-form-2 {
  background-color: rgba(250, 250, 250, 0.7);
  padding: 30px 10px;
  border-radius: 5px;
}
.contact-block .primary-form-2 label {
  font-size: 15px;
}
.contact-block .form-control {
  font-weight: 400;
}
.contact-block .primary-form-2 input,
.contact-block .primary-form-2 textarea,
.contact-block .primary-form-2 select {
  font-weight: 400;
  font-size: 15.5px;
  margin-bottom: 5px;
  letter-spacing: 0.8px;
  padding: 23px 15px;
  background-color: rgba(9, 9, 9, 0.03);
}
.contact-block .primary-form-2 select {
  height: 50px; /* 依據你的 input 欄位高度調整，通常是 45px ~ 50px */
  padding: 0 15px; /* 上下設為 0，左右保持 15px */
  line-height: normal;
}
.contact-block .btn-submit {
  width: 100px;
  padding: 0;
  margin: 0;
  border: none;
  outline: none !important;
  letter-spacing: 0.8px;
  font-size: 15px;
  border-radius: 32px;
  height: 40px;
  box-shadow: none;
  background-color: #d21d1d;
}
.contact-block .btn-submit a {
  color: #fff;
}

.other-block p {
  font-weight: 400;
  font-size: 15px;
  margin: 10px 0px;
  letter-spacing: 0.8px;
}
.other-block .btn-default {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  padding: 0;
  margin: 45px auto 0px auto;
  border: none;
  outline: none !important;
  letter-spacing: 0.8px;
  font-size: 15px;
  border-radius: 32px;
  height: 40px;
  box-shadow: none;
  background-color: #d21d1d;
}
.other-block .btn-default:hover {
  color: #fff;
  background-color: #c22424;
}

.link-color {
  color: #db302c;
  text-decoration: underline;
}
.link-color:hover {
  color: #222;
  text-decoration: underline;
}/*# sourceMappingURL=common.css.map */