/* =====================================
        前台頁面共用樣式           
=======================================*/

/*按鈕*/

.page-btngroup > .btn {
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.page-btngroup > .btn:hover {
  box-shadow: 0 10px 10px -10px rgb(0 0 0 / 50%);
  transform: scale(1.1);
}

.btn-primary {
  background: #3098de;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #44aaee;
  border-color: #44aaee;
}

.btn-info {
  background: #5ac481;
}

.btn-info:hover,
.btn-info:focus {
  background: #63cf8b;
  border-color: #63cf8b;
}

.btn-dark {
  background: #656565;
}

.btn-dark:hover,
.btn-dark:focus {
  background: #777777;
  border-color: #777777;
}

.btn-secondary {
  background: #7e8891;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #909ba5;
  border-color: #909ba5;
}

.btn-warning {
  background: #f7bd00;
  color: #774717;
}

.btn-warning:hover,
.btn-warning:focus {
  background: #f1bd13;
  border-color: #f1bd13;
}

.btn-danger {
  background: #ce2f2f;
}

.btn-danger:hover,
.btn-danger:focus {
  background: #db4141;
  border-color: #db4141;
}

.btn-success {
  background: #5cb531;
  border-color: #5cb531;
}

.btn-success:hover,
.btn-success:focus {
  background: #7dc759;
  border-color: #7dc759;
}

::placeholder {
  /* CSS 3 標準 */
  color: #939fa5;
}

::-webkit-input-placeholder {
  /* Chrome, Safari */
  color: #939fa5;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #939fa5;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #939fa5;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
  color: #939fa5;
}

.form-control::placeholder {
  color: #939fa5;
}

/* =====================================
        最新消息news.html           
=======================================*/

.news-list {
  margin-bottom: 1.5rem;
}

.list-item {
  background: #fff;
  border: 1px solid #e2e2e2;
  margin-bottom: 1.25rem;
}

.list-item a {
  display: flex;
  text-decoration: none;
}

.list-item a > .pic {
  width: 350px;
  height: 200px;
  position: relative;
  overflow: hidden;
  margin-right: 0.625rem;
  display: block;
}

.list-item a > .pic > img {
  display: block;
  position: absolute;
  margin: 0;
  /*width: 100%;
   left: -6px; */
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translate(-50%, 0);
}

.list-item-info {
  width: calc(100% - 360px);
  display: flex;
  align-items: flex-start;
}

.page-container .news-dates {
  margin-right: 0;
  height: auto;
  padding: 0.75rem 0.875rem;
  line-height: 1.4;
}

.page-container .news-dates .item-month {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0;
}

.list-item-info .content {
  padding: 1.25rem 1.875rem 1rem 1.5rem;
  color: #212529;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  line-height: 1.5;
}

.list-item .news-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  max-height: 54px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  width: 100%;
}

.list-item .news-txt {
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}

.list-item .btn-more {
  padding: 0;
  color: #3cb477;
  background: transparent;
  font-size: 0.9375rem;
  transition: 0.3s all ease-in-out;
  opacity: 0;
  left: 0;
  margin: auto 0;
}

.list-item .btn-more:after {
  background: transparent;
}

.list-item a:hover .btn-more {
  opacity: 1;
  background: transparent;
  padding-left: 0;
  left: 97%;
  transform: translateX(-100%);
}

.list-item a:hover .btn-more::before,
.list-item a:hover .btn-more:after,
.list-item a:hover .btn-more:hover::before,
.list-item a:hover .btn-more:hover:after {
  background: transparent;
}

/*頁碼*/

nav[aria-label="Page navigation"] {
  padding: 0.75rem 0rem;
}

.pagination {
  justify-content: center;
  margin-bottom: 0;
}

.page-link {
  margin: 0 3px;
  background: #626b73;
  color: #fff;
  border: 1px solid #626b73;
}

.page-link:hover {
  border-color: #7e8891;
  color: #fff;
  background: #7e8891;
}

.page-item.active .page-link {
  background: #3cb477;
  color: #fff;
}

.pagination-first .page-link,
.pagination-prev .page-link,
.pagination-next .page-link,
.pagination-last .page-link {
  background: #fff;
  color: #626b73;
}

.pagination-first .page-link:hover,
.pagination-prev .page-link:hover,
.pagination-next .page-link:hover,
.pagination-last .page-link:hover {
  background: #fff;
  color: #7e8891;
  border-color: #7e8891;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border-radius: 0;
}

.page-item.disabled .page-link {
  color: #989fa5;
  border-color: #989fa5;
}

@media (max-width: 1024px) {
  .list-item a > .pic {
    width: 300px;
  }
  .list-item-info {
    width: calc(100% - 300px);
  }
  .list-item-info .content {
    padding: 1.25rem 1.5rem 1rem 1.5rem;
  }
}

@media (max-width: 540px) {
  .list-item {
    margin-bottom: 1.75rem;
  }
  .list-item a {
    flex-direction: column;
    padding: 2rem;
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  .list-item:hover a,
  .list-item:focus a {
    box-shadow: 0px 20px 20px -20px rgb(0 0 0 / 12%);
    transform: scale(1.01);
  }
  .list-item a > .pic {
    width: 396px;
    height: 220px;
    margin: 0 0 1.5rem;
  }
  .list-item a > .pic img {
    width: 100%;
  }
  .list-item-info {
    width: 100%;
  }
  .list-item-info .content {
    padding: 0rem 0 0 1.5rem;
  }
  .list-item .news-txt {
    margin-bottom: 0.75rem;
  }
  .list-item .btn-more {
    opacity: 1;
  }
  .page-link span {
    display: none;
  }
}

@media (max-width: 420px) {
  .list-item a {
    padding: 1.5rem;
  }
  .list-item a > .pic {
    width: 100%;
    height: 175px;
    margin-bottom: 1.25rem;
  }
  .list-item-info .content {
    padding: 0 0 0 1.125rem;
  }
}

@media (max-width: 390px) {
  .list-item a {
    padding: 1.25rem;
  }
  .list-item a > .pic {
    height: 160px;
  }
}

/* =====================================
      最新消息內頁news-detail.html          
=======================================*/

.news-detail-wrap {
  background: #fff;
  border-radius: 0.375rem;
  padding: 0 1.875rem 1.875rem;
}

.post-heading {
  position: relative;
  display: flex;
  margin-bottom: 1.5rem;
}

.post-heading .news-dates {
  position: relative;
  margin-right: 1.875rem;
}

.post-heading .post-title {
  padding: 1.875rem 0 0 0;
  font-size: 1.875rem;
  line-height: 1.4;
  font-weight: 600;
}

.post-content {
  margin-bottom: 1.875rem;
  word-break: break-all;
}

.post-content img.img-fluid {
  width: 100%;
}

.post-notes {
  margin-bottom: 1.875rem;
}

.post-notes .notes-title {
  padding: 0.375rem 1.25rem;
  background: #7e8891;
  border-radius: 0.25rem;
  color: #fff;
  font-size: 1.125rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.post-notes ul {
  margin: 0;
  padding: 0 0.5rem;
  list-style: none;
}

.post-notes ul li {
  position: relative;
  padding: 0.25rem 1.5rem 0.25rem 2.25rem;
  color: #3cb477;
  border: 1px solid transparent;
}

.post-notes ul li:before {
  position: absolute;
  font-family: "Font Awesome 5 pro", Serif, Sans-serif, cursive;
  content: "\f0c1";
  left: 10px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 1.125rem;
}

.post-notes ul li a {
  color: #3cb477;
}

.post-notes ul li:hover {
  border: 1px dashed #7cc9a2;
}

.page-btngroup {
  display: flex;
  justify-content: center;
}

@media (max-width: 992px) {
  .post-heading {
    display: block;
  }
  .post-heading .news-dates {
    margin-right: 0;
    padding: 0.875rem 1rem 0.5rem 1rem;
    display: inline-flex;
    flex-direction: row;
    border-radius: 0 0 6px 6px;
    top: -5px;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 20%);
  }
  .post-heading .news-dates .item-date {
    font-size: 1.5rem;
    margin-right: 1rem;
    line-height: 1;
  }
  .page-container .news-dates .item-month {
    /*border-top: none;
     border-left: 1px solid rgba(255, 255, 255, 0.2); */
  }
  .post-heading .post-title {
    padding: 0.5rem 0 0 0;
  }
}

@media (max-width: 540px) {
  .news-detail-wrap {
    padding: 0 1.5rem 1.5rem;
  }
  .post-notes ul li {
    padding: 0.25rem 0rem 0.25rem 2.25rem;
  }
}

/* =====================================
      會員登入 login.html         
=======================================*/

.cp-member header {
  position: absolute;
  background: #fff;
  box-shadow: 0 3px 6px rgba(255, 255, 255, 0.12);
}

.cp-member-container {
  background: url("../images/bg-login.jpg") center top no-repeat;
  padding: 220px 100px 174px 154px;
  background-attachment: local;
}

.cp-member-container .breadcrumb {
  justify-content: flex-end;
  background: transparent;
  margin-bottom: 0.625rem;
  padding: 0 1.25rem 0 0;
  font-size: 0.9375rem;
  width: 100%;
}

.cp-member-container .breadcrumb ol {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.cp-member-container .breadcrumb ol li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.cp-member-container .breadcrumb ol li a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.cp-member-container .breadcrumb ol li.active {
  color: #fff;
}

.cp-member-in {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.cp-member-header {
  border: 1px solid #ffffff;
  padding: 1.875rem 2.5rem;
  position: relative;
}

.cp-member-header h2 {
  margin-bottom: 0;
  color: #fff;
}

.cp-member-header h2:before {
  position: absolute;
  content: "";
  width: 120px;
  height: 10px;
  background: #9ac431;
  left: -80px;
  top: inherit;
  bottom: -25%;
  transform: translateY(-25%);
}

.mb-inner {
  background: #fff;
  border-radius: 1.25rem;
  padding: 3rem 2.5rem;
  min-height: 650px;
  height: 100%;
}

.mb-inner .greeting {
  font-size: 2.25rem;
  color: #3bb375;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  overflow: hidden;
}

.mb-inner .greeting span:not(:last-child) {
  margin-right: 2rem;
}

.mb-inner .greeting span:not(:first-child) {
  margin-left: 2rem;
}

.mb-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.mb-body .heading {
  margin-bottom: 1.5rem;
}

.mb-body .cont {
  padding: 0 1.25rem 1.5rem;
}

.mb-body p {
  color: #626b73;
  font-size: 17px;
  margin-bottom: 0.625rem;
}

.mb-body .form-floating {
  position: relative;
}

.mb-body .form-control {
  border-color: #cfded4;
  /* padding: .875rem 1.875rem .875rem; */
  padding: 1.125rem 1.875rem 0.5rem;
  height: auto;
  border-radius: 60px;
}

.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.875rem 1.875rem 0.875rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  margin-bottom: 0;
  color: #656565;
}

.form-floating > .form-control::placeholder,
.form-floating > .form-control::-webkit-input-placeholder {
  color: #dbdfe2;
  padding-left: 80px;
  opacity: 0;
}

.form-floating > .form-control:focus,
.form-floating > .form-control:placeholder-shown {
  color: #656565;
}

.form-floating > .form-control:focus {
  border: 2px solid #a1c76b;
  box-shadow: 0 0 0 0.2rem rgb(168 225 189 / 28%);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.75;
  transform: scale(0.8) translateY(-0.75rem) translateX(0.15rem);
  color: #5cb531;
}

.form-floating > small {
  padding-left: 1.875rem;
}

.mb-body .foot {
  text-align: center;
  padding: 0 3.75rem;
}

.foot .btn {
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 60px;
  display: block;
}

@media (max-width: 1440px) {
  .cp-member-container {
    padding: 220px 100px 174px 124px;
  }
}

@media (max-width: 1366px) {
  .cp-member-container {
    padding: 220px 80px 174px 104px;
    background-position: center bottom;
    background-attachment: scroll;
  }
}

@media (max-width: 1024px) {
  .cp-member-container {
    padding: 200px 60px 174px 104px;
  }
  .cp-member-container .breadcrumb {
    order: 2;
  }
  .cp-member-header {
    order: 1;
    margin-bottom: 1.5rem;
  }
  .mb-inner {
    order: 3;
    width: 100%;
  }
  .cp-member-in {
    justify-content: inherit;
  }
}

@media (max-width: 992px) {
  .cp-member-container {
    padding: 160px 60px 120px 60px;
    background-position: left 40% bottom;
    background-attachment: fixed;
    background-size: cover;
    overflow: hidden;
  }
  .cp-member-container .breadcrumb {
    order: 2;
  }
  .cp-member-header {
    left: -1.5rem;
    margin-bottom: 1.5rem;
  }
  .mb-inner {
    order: 3;
    width: 100%;
  }
  .cp-member-in {
    justify-content: inherit;
  }
}

@media (max-width: 540px) {
  .cp-member-container {
    padding: 160px 1.875rem 120px 1.875rem;
  }
  .cp-member-header {
    left: 0;
    padding: 1.5rem 2rem;
  }
  .cp-member-header > h2 {
    font-size: 2.25rem;
  }
  .cp-member-header h2:before {
    width: 110px;
    height: 6px;
  }
  .mb-body {
    padding: 0;
  }
  .mb-body .cont {
    padding: 0 0 1.5rem 0;
  }
  .mb-body .foot {
    padding: 0 1.5rem;
  }
}

@media (max-width: 420px) {
  .cp-member-container {
    padding: 140px 1.5rem 100px 1.5rem;
  }
  .cp-member-header {
    left: 0;
    padding: 1.25rem 2rem;
  }
  .mb-inner {
    padding: 2.5rem 1.5rem;
  }
  .mb-inner .greeting {
    overflow: hidden;
  }
}

@media (max-width: 390px) {
  .cp-member-container {
    padding: 140px 1.25rem 100px;
  }
}

/*--會員登入-*/

.foot .btn-login {
  background: #3cb477;
}

.foot .btn-login:hover,
.foot .btn-login:focus {
  background: #4fcf8f;
}

.foot .btn + .btn {
  margin-top: 0.5rem;
}

.foot .btn-forget {
  background: transparent;
  color: #726960;
}

.foot .btn-forget:hover,
.foot .btn-forget:focus {
  text-decoration: underline;
  color: #f7bd00;
}

/* =====================================
      忘記密碼 forget-pw.html     
=======================================*/

.mb-forget h5 {
  color: #bf6702;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.mb-forget .mb-inner {
  padding: 3rem 5rem;
}

.mb-forget .cont {
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .cp-member-container.mb-forget {
    padding: 160px 60px 120px 60px;
  }
}

@media (max-width: 540px) {
  .cp-member-container.mb-forget {
    padding: 160px 1.875rem 120px 1.875rem;
  }
  .mb-forget .mb-inner {
    padding: 3rem 2.5rem 4.5rem;
  }
}

@media (max-width: 420px) {
  .cp-member-container.mb-forget {
    padding: 140px 1.5rem 100px 1.5rem;
  }
  .mb-forget .mb-inner {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 390px) {
  .cp-member-container.mb-forget {
    padding: 140px 1.25rem 100px;
  }
}

/* =====================================
      加入會員 join.html     
=======================================*/

/* .cp-member-container.mb-join {
  background-attachment: fixed;
} */

.mb-join .mb-inner {
  width: calc(100% - 274px - 300px);
  height: calc(100% - 150px);
}

.mb-join .mb-body {
  padding: 0;
}

.mb-join .mb-body .cont {
  padding: 0;
}

.mb-join .sub-area:not(:last-child) {
  margin-bottom: 1.75rem;
}


.mb-join .sub-title {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1.25rem;
  color: #656565;
  margin-bottom: 0.5rem;
}

.mb-join .sub-title:before {
  position: absolute;
  content: "\f111";
  font-family: "Font Awesome 5 pro", Serif, Sans-serif, cursive;
  font-weight: 900;
  left: 4px;
  top: 50%;
  transform: translate(-4px, -50%);
}

.flow-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.flow-wrap ul li {
  padding: 1.25rem 0.75rem 2rem;
  background: #f5f5f5;
  border-radius: 0.75rem;
  width: 140px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.flow-wrap ul li:before {
  position: absolute;
  content: attr(data-num);
  font-family: Roboto, Helvetica, Arial, Verdana, Tahoma, sans-serif;
  font-size: 5.25rem;
  color: #ebebeb;
  bottom: -8px;
  right: 0;
  line-height: 1;
  font-weight: 600;
  z-index: -1;
}

.flow-wrap ul li:not(:last-child) {
  margin-right: 0.375rem;
}

.flow-wrap ul li span {
  color: #129753;
}

.identity-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.identity-item {
  position: relative;
  border-radius: 0.75rem;
  padding: 1.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-decoration: none;
  width: 285px;
  box-shadow: inset 0 -4px 4px -2px rgba(0, 0, 0, 0.12);
}

.identity-item:hover,
.identity-item:focus {
  text-decoration: none;
  top: 1px;
  left: 1px;
  box-shadow: inset 0 4px 4px -2px rgb(0 0 0 / 12%);
}

.identity-item > img {
  margin-right: 0.75rem;
}

.id-source {
  background: #eaf3e7;
  margin-right: 1.5rem;
}

.id-source:hover,
.id-source:focus {
  background: #dcedd6;
}

.id-source .item-title {
  color: #1c777d;
}

.id-clear {
  background: #deecff;
  color: #1c4f95;
  padding: 1.5rem 2.125rem;
  margin-right: 0;
}

.id-clear .item-title {
  color: #1c4f95;
}

.id-clear:hover,
.id-clear:focus {
  background: #d4e1f3;
}

@media (max-width: 1680px) {
  .mb-join .mb-inner {
    width: calc(100% - 274px - 100px);
  }
}

@media (max-width: 1536px) {
  .cp-member-container.mb-join {
    padding: 220px 100px 154px 154px;
  }
}

@media (max-width: 1440px) {
  .cp-member-container.mb-join {
    padding: 220px 100px 110px 124px;
  }
  .flow-wrap ul li {
    padding: 1.25rem 0.75rem 1.5rem;
  }
}

@media (max-width: 1366px) {
  .cp-member-container.mb-join {
    padding: 220px 80px 56px 104px;
  }
  .flow-wrap ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 1.25rem;
  }
  .flow-wrap ul li:not(:last-child) {
    margin-right: 0.75rem;
  }
  .flow-wrap ul li {
    margin-bottom: 0.75rem;
    width: calc((100% / 4) - 0.75rem);
    padding: 1rem 0.75rem 1.25rem;
  }
}

@media (max-width: 1024px) {
  .cp-member-container.mb-join {
    padding: 200px 60px 72px 104px;
  }
  .mb-join .mb-inner {
    width: 100%;
  }
  .mb-join .sub-area:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  .flow-wrap ul li {
    min-height: 135px;
  }
  .identity-wrap {
    justify-content: flex-start;
  }
  .identity-item {
    padding: 1.25rem 3rem;
  }
}

@media (max-width: 992px) {
  .cp-member-container.mb-join {
    padding: 160px 60px 120px 60px;
  }
  .mb-join .sub-area:not(:last-child) {
    margin-bottom: 0.5rem;
  }
  .mb-body .heading {
    margin-bottom: 1rem;
  }
  .flow-wrap ul li {
    min-height: 170px;
  }
  .identity-item > img {
    height: 60px;
  }
}

@media (max-width: 540px) {
  .cp-member-container.mb-join {
    padding: 160px 1.875rem 120px 1.875rem;
  }
  .flow-wrap ul li {
    min-height: auto;
    width: 100%;
    margin-bottom: 0.375rem;
    padding: 0.75rem 2.75rem 0.75rem 0.75rem;
  }
  .flow-wrap ul li:not(:last-child) {
    margin-right: 0;
  }
  .flow-wrap ul li:before {
    font-size: 4rem;
    bottom: -5px;
  }
  .identity-wrap {
    flex-direction: column;
  }
  .id-source {
    margin: 0 0 0.5rem 0;
  }
}

@media (max-width: 420px) {
  .cp-member-container.mb-join {
    padding: 140px 1.5rem 100px 1.5rem;
  }
}

@media (max-width: 390px) {
  .cp-member-container.mb-join {
    padding: 140px 1.25rem 100px;
  }
}

/* =====================================
      加入會員-產源 join-source.html     
=======================================*/

.join-classify {
  background-attachment: fixed;
}

.label-head {
  background: #c6ebd8;
  display: inline-block;
  padding: 0.5rem 1.5rem 0.5rem 2rem;
  color: #68bd91;
  border-radius: 20px;
  margin-bottom: 0;
  position: relative;
}

.label-head::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 16px;
  top: 50%;
  left: 8px;
  transform: translate(0, -50%);
  background: #fff;
  box-shadow: inset 1px 1px 3px 0px rgb(0 0 0 / 49%);
  border: 2px solid #449112;
}

.label-head span {
  color: #257036;
}

.mb-join .label-control {
  line-height: 1.8;
  color: #129753;
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  text-align: right;
}

.mb-join .form-control {
  padding: 0.625rem 1rem 0.625rem 1.25rem;
}

.mb-join .dropdown.bootstrap-select.form-control.bs-select {
  padding: 0;
  height: inherit;
}

.mb-join .bootstrap-select .btn-light {
  padding: 0.625rem 1rem 0.625rem 1.25rem;
  border-radius: 60px;
}

.tb-waste-item {
  border-bottom: 1px solid #c5dbd3;
}

.tb-waste-item thead th {
  vertical-align: middle;
  border-top: 1px solid #50a581;
  border-bottom: 1px solid #50a581;
  background: #7dc19e;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}

.tb-waste-item tbody td {
  vertical-align: middle;
  padding: 0.5rem 0.75rem;
  border-top: 1px solid #c5dbd3;
}

.table-striped.tb-waste-item tbody tr:nth-of-type(odd) {
  background: transparent;
}

.table-striped.tb-waste-item tbody tr:nth-of-type(even) {
  background: #fcfdfc;
}

.table-striped.tb-waste-item tbody tr:hover {
  background: #fafafa;
}

.dp-waste-wrap .btn-group {
  display: flex;
  justify-content: center;
}

.dp-waste-wrap .btn-group .btn,
.dp-waste-wrap .btn-group .btn:not(:last-child) {
  border-radius: 50%;
}

.dp-waste-wrap .btn {
  border-radius: 50%;
  color: #57816d;
  background: #ebf6f3;
  border-color: #ebf6f3;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: inherit;
}

.dp-waste-wrap .btn-group .btn + .btn {
  margin-left: 0.5rem;
}

.dp-waste-wrap .btn > i {
  margin-right: 0;
  position: relative;
  font-size: 1.25rem;
}

.dp-waste-wrap .btn:hover {
  color: #fff;
}

.dp-waste-wrap .btn-primary {
  border-radius: 50px;
  background: #3098de;
  color: #fff;
  border-color: #3098de;
}

.dp-waste-wrap .btn-primary:hover,
.dp-waste-wrap .btn-primary:focus {
  background: #44aaee;
  border-color: #44aaee;
  color: #fff;
}

.dp-waste-wrap .btn-info:hover,
.dp-waste-wrap .btn-info:focus {
  background: #63cf8b;
  border-color: #63cf8b;
  color: #fff;
}

.dp-waste-wrap .btn-danger:hover,
.dp-waste-wrap .btn-danger:focus {
  background: #db4141;
  border-color: #db4141;
  color: #fff;
}

/*-modal*/

.modal-body .col-form-label {
  color: #212529;
}

.modal-body .form-control,
.modal-body .bootstrap-select .btn-light {
  border-radius: 0.25rem;
  padding: 0.375rem 0.75rem;
  height: calc(1.5em + 0.75rem + 2px);
}

.waste-modal .modal-body {
  padding: 1.5rem 1rem;
}

.modal-footer {
  justify-content: center;
}

/*--調整sweetalert2--*/

.cp .swal2-popup h2.swal2-title:before {
  content: "";
  width: inherit;
  height: inherit;
  background: transparent;
}

.cp .swal2-popup h2.swal2-title {
  text-shadow: none;
}

.swal2-actions .btn {
  padding: 0.625rem 2rem;
  font-size: 1.125rem;
}

.form-in {
  margin-bottom: 1.875rem;
}

.form-btngroup {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-btngroup .btn {
  border-radius: 60px;
  padding: 0.75rem 3rem;
}

.form-btngroup .btn + .btn {
  margin-left: 0.5rem;
}

@media (max-width: 1366px) {
  .cp-member-container.mb-join.join-classify {
    background-position: center top -2px;
    padding: 220px 80px 110px 104px;
  }
}

@media (max-width: 1024px) {
  .cp-member-container.mb-join.join-classify {
    background-position: center bottom;
    padding: 220px 80px 110px 104px;
    background-size: cover;
  }
}

@media (max-width: 992px) {
  .cp-member-container.mb-join.join-classify {
    padding: 160px 60px 120px 60px;
    background-position: left 40% bottom;
  }
  .tb-waste-item.table-rwd-card {
    box-shadow: none;
    border: 2px double #c5dbd3;
  }
  .tb-waste-item.table-rwd-card thead {
    display: none;
  }
  .tb-waste-item.table-rwd-card tr,
  .tb-waste-item.table-rwd-card td {
    display: block;
    position: relative;
  }
  .tb-waste-item.table-rwd-card tr {
    border: 1px solid #76bdac;
    border-top: none;
  }
  .tb-waste-item.table-rwd-card td {
    padding: 0.625rem 0.75rem 0.625rem 9.75rem;
  }
  .tb-waste-item.table-rwd-card td:not(:last-child) {
    border-top: 1px solid #76bdac;
  }
  .tb-waste-item.table-rwd-card td::before {
    content: attr(data-label);
    color: #729d87;
    background: #eaf6f3;
    padding: 0.625rem 0.75rem;
    position: absolute;
    left: 0;
    top: 0;
    width: 9rem;
  }
  .tb-waste-item.table-rwd-card td.actions {
    position: absolute;
    top: 4px;
    right: 0;
    border: none;
    background: none;
    padding: 0;
  }
  .tb-waste-item.table-rwd-card td.actions:before {
    background: transparent;
    content: "";
    padding: 0;
    width: inherit;
  }
  .tb-waste-item.table-rwd-card td.text-center,
  .tb-waste-item.table-rwd-card td.text-right {
    text-align: inherit !important;
  }
  .dp-waste-wrap .btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 540px) {
  .cp-member-container.mb-join.join-classify {
    padding: 160px 1.875rem 120px 1.875rem;
  }
  .mb-join .label-control {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .cp-member-container.mb-join.join-classify {
    padding: 140px 1.5rem 100px 1.5rem;
  }
  .tb-waste-item.table-rwd-card td.actions {
    position: relative;
    padding: 5px 0.75rem 5px 9.75rem;
    top: 0;
    border-top: 1px solid #c5dbd3;
  }
  .tb-waste-item.table-rwd-card td.actions::before {
    content: attr(data-label);
    color: #729d87;
    background: #eaf6f3;
    padding: 0.75rem 0.75rem;
    position: absolute;
    left: 0;
    top: 0;
    width: 9rem;
  }
  .dp-waste-wrap .btn-group {
    display: inline-flex;
  }
}

@media (max-width: 390px) {
  .cp-member-container.mb-join.join-classify {
    padding: 140px 1.25rem 100px;
  }
  .tb-waste-item.table-rwd-card td {
    padding: 0.625rem 0.75rem 0.625rem 9.75rem;
  }
  .tb-waste-item.table-rwd-card td::before {
    width: 9rem;
  }
}

/* =============================================
      加入會員-產源 join-source-success.html    
===============================================*/

.mb-join .mb-body .cont.succeess-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 4rem;
}

.succeess-cont .icon-box {
  font-size: 96px;
  color: #5cb531;
  margin-bottom: 1.25rem;
}

.succeess-cont h4 {
  margin-bottom: 1.25rem;
  color: #3cb477;
}

.description {
  font-size: 1.125rem;
}

@media (max-width: 540px) {
  .mb-join .mb-body .cont.succeess-cont {
    padding: 2rem 0;
  }
}

/*
登出
*/

.mb-body .cont.logout-cont {
  font-size: 1.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

/* =====================================
      常見問答 faq.html    
=======================================*/

.card-faqlist {
  border: none;
  background: transparent;
  border-radius: 0.5rem;
  transition: 0.6s all ease-in-out;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.card-faqlist:hover {
  transform: scale(1.02);
}

.card-faqlist .card-header {
  border: none;
  padding: 0;
  background: #e6efec;
  color: #17856a;
}

.accordion > .card.card-faqlist > .card-header {
  margin-bottom: 0;
  border-radius: 0.5rem;
}

.accordion > .card.card-faqlist:not(:first-of-type),
.accordion > .card.card-faqlist:not(:last-of-type) {
  border-radius: 0.5rem;
}

.accordion > .card.card-faqlist:not(:last-of-type) {
  margin-bottom: 1rem;
}

.card-faqlist .card-header .btn {
  position: relative;
  padding: 0.75rem 2.5rem 0.75rem 1.25rem;
  line-height: 1.4;
  color: #17856a;
  text-decoration: none;
  border: 1px solid #1fa584;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.6s ease-in-out;
}

.card-faqlist .card-header:hover .btn,
.card-faqlist .card-header:hover .btn:hover {
  color: #fff;
  text-decoration: none;
  background: #30ad8e;
  border-radius: 0.5rem;
}

.card-faqlist .card-header:hover .btn:after,
.card-faqlist .card-header:hover .btn:hover:after {
  color: #fff;
}

.card-faqlist .card-header .btn:focus:hover {
  color: #fff;
  background: #129753;
}

.card-faqlist .card-header .btn:after {
  position: absolute;
  content: "\f067";
  font-family: "Font Awesome 5 pro", Serif, Sans-serif, cursive;
  font-weight: 400;
  right: 1rem;
  color: #129753;
  top: 50%;
  transform: translate(0, -50%);
}

.card-faqlist .card-header .btn[aria-expanded="true"]:after {
  content: "\f068";
}

.card-faqlist .card-header .btn[aria-expanded="true"],
.card-faqlist .card-header .btn:focus[aria-expanded="true"] {
  color: #129753;
  background: #fff;
  font-weight: 600;
  padding: 1.25rem 2.5rem 0.5rem 1.25rem;
  border-bottom: none;
  border-radius: 0.5rem 0.5rem 0 0;
}

.card-faqlist .card-header:hover .btn[aria-expanded="true"],
.card-faqlist .card-header:hover .btn:focus[aria-expanded="true"],
.card-faqlist .card-header .btn:focus[aria-expanded="true"] {
  color: #129753;
  background: #fff;
  border-radius: 0.5rem 0.5rem 0 0;
}

.card-faqlist .card-header:hover .btn[aria-expanded="true"]:after {
  color: #129753;
}

.card-faqlist .card-body {
  border: 1px solid #1fa584;
  border-top: none;
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 0.5rem 2.5rem 1.5rem 2.25rem;
  background: #fff;
}

@media (max-width: 420px) {
  .cp-faq .page-banner-img > img {
    left: -33%;
  }
  .card-faqlist .card-body {
    padding: 0.5rem 2.5rem 1.5rem 1.5rem;
  }
}

@media (max-width: 390px) {
  .cp-faq .page-banner-img > img {
    left: -35%;
  }
}

/* =====================================
      技術優勢technical-adv.html
=======================================*/

.techadv_wrap {
  display: flex;
  align-items: stretch;
  padding: 90px 1.875rem 50px;
}

.tech-item,
.tech-item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.tech-item {
  width: 100%;
  max-width: calc(100% / 3);
  height: 100%;
  padding: 1.875rem 1.25rem 1.25rem;
  transition: all 0.6s ease-in-out;
  margin: 0 1rem;
}

.tech-circle {
  width: 180px;
  height: 180px;
  border: 3px solid #8e8e8e;
  padding: 40px;
  border-radius: 100%;
  background: #fff;
  margin-bottom: 1.5rem;
  position: relative;
}

.tech-circle:before {
  content: "\f0d8";
  position: absolute;
  font-family: "Font Awesome 5 pro", Serif, Sans-serif, cursive;
  font-weight: 600;
  left: 50%;
  bottom: -44px;
  transform: translate(-50%, 0) rotate(180deg);
  transition: all 0.6s ease-in-out;
  font-size: 4rem;
  line-height: 1;
  z-index: -1;
}

.tech-item-content {
  padding: 0 0 1.875rem;
}

.tech-item:first-child {
  margin-top: 20px;
}

.tech-item:nth-child(2) {
  padding-top: 152px;
}

.tech-item:last-child {
  margin-top: 40px;
}

.tech-item:nth-child(2) .tech-circle {
  margin-bottom: 0;
  margin-top: 1.25rem;
}

.tech-item:nth-child(2) .tech-item-content {
  position: absolute;
  top: 0;
  padding: 1.875rem 1.5rem 1.25rem;
}

.tech-item:nth-child(2) .tech-circle:before {
  left: 50%;
  top: -2.6875rem;
  transform: translate(-50%, 0);
}

.tech-item:hover {
  background: #fff;
  transform: scale(1.02) translateY(-20px);
  border-radius: 60px;
  box-shadow: 0 0 20px 8px rgba(0, 0, 0, 0.12);
}

.tech-item:hover .tech-circle {
  border-width: 8px;
  border-color: #3b454f;
  transform: rotate(360deg);
}

.tech-item:hover .tech-circle:before {
  z-index: 0;
  color: #3b454f;
}

.tech-item:nth-child(2):hover .tech-item-content {
  z-index: -1;
}

.tech-item-content h3 {
  font-size: 1.5rem;
  color: #00975a;
}

@media (max-width: 1024px) {
  .techadv_wrap {
    flex-direction: column;
    padding: 60px 1.875rem 1.875rem;
  }
  .tech-item {
    max-width: 100%;
    margin: 0 0 2.5rem;
    padding: 1.875rem;
    border-radius: 1.875rem;
    background: #fff;
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }
  .tech-item:first-child,
  .tech-item:last-child {
    margin-top: 0;
  }
  .tech-item:last-child {
    margin-bottom: 0;
  }
  .tech-circle {
    width: 120px;
    height: 120px;
    padding: 1.5rem;
    margin: 0 1.875rem 0 0;
  }
  .tech-circle:before,
  .tech-item:nth-child(2) .tech-circle:before {
    right: -31%;
    top: 50%;
    left: inherit;
    bottom: inherit;
    transform: translate(0, -50%) rotate(90deg);
    display: none;
  }
  .tech-item-content {
    width: calc(100% - 150px);
  }
  .tech-item-content,
  .tech-item:nth-child(2) .tech-item-content {
    align-items: flex-start;
    padding: 0;
  }
  .tech-item-content h3 {
    margin-bottom: 0.75rem;
  }
  .tech-item:hover {
    border-radius: 1.875rem;
    box-shadow: 0 0px 20px 6px rgb(0 0 0 / 12%);
  }
  .tech-item:hover .tech-circle:before {
    display: block;
  }
  .tech-item:nth-child(2) {
    padding: 1.875rem;
  }
  .tech-item:nth-child(2) .tech-circle {
    margin-top: 0;
  }
  .tech-item:nth-child(2) .tech-item-content {
    position: relative;
  }
}

@media (max-width: 992px) {
  .techadv_wrap {
    flex-direction: column;
    padding: 40px 1.875rem 1.875rem;
  }
}

@media (max-width: 540px) {
  .techadv_wrap {
    padding: 0.5rem 0.5rem 1.875rem;
  }
  .tech-item {
    position: relative;
    max-width: 100%;
    margin: 0 0 2.5rem;
    padding: 120px 0 0 0;
    border-radius: 1.875rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }
  .tech-item:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: #3b454f;
    border-radius: 2rem 2rem 0 0;
  }
  .tech-circle {
    width: 120px;
    height: 120px;
    padding: 1.5rem;
    margin: 0 auto 1.875rem;
    position: absolute;
    top: 60px;
    z-index: 1;
    border-color: #3b454f;
  }
  .tech-circle:before,
  .tech-item:nth-child(2) .tech-circle:before {
    right: inherit;
    top: inherit;
    left: inherit;
    bottom: inherit;
    transform: none;
    display: none;
  }
  .tech-item-content,
  .tech-item:nth-child(2) .tech-item-content {
    width: 100%;
    background: #fff;
    border-radius: 0 0 1.75rem 1.75rem;
    padding: 80px 1.875rem 2.25rem;
    align-items: center;
  }
  .tech-item-content h3 {
    margin-bottom: 0.75rem;
  }
  .tech-item:hover,
  .tech-item:focus {
    border-radius: 1.875rem;
    box-shadow: 0 0px 20px 6px rgb(0 0 0 / 12%);
  }
  .tech-item:hover .tech-circle,
  .tech-item:focus .tech-circle {
    border-width: 6px;
  }
  .tech-item:hover .tech-circle:before,
  .tech-item:focus .tech-circle:before {
    display: none;
  }
  .tech-item:nth-child(2) {
    padding: 120px 0 0 0;
  }
  .tech-item:nth-child(2) .tech-circle {
    margin-top: 0;
  }
  .tech-item:nth-child(2) .tech-item-content {
    position: relative;
  }
  .tech-item:hover .tech-item-content {
    box-shadow: none;
  }
}

@media (max-width: 420px) {
  .techadv_wrap {
    padding: 0.5rem 0rem 0;
  }
}

/* =====================================
      經營理念philosophy.html
=======================================*/

.phy_wrap {
  padding: 1.5rem 0 2rem 0 1.875rem;
}

.para {
  display: flex;
  align-items: stretch;
  justify-content: center;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 60px;
}

.para-text01 {
  width: 45%;
  margin-right: 2rem;
}

.para-text02 {
  width: calc(100% - 50% - 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.para-imgbox {
  display: block;
}

.para-imgbox img {
  width: 100%;
}

.para-img01 {
  width: calc(100% - 45% - 2rem);
}

.para-img02 {
  width: 45%;
  margin-right: 3rem;
}

@media (max-width: 1024px) {
  .para {
    display: flex;
    flex-direction: column;
  }
  .para-text01 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .para-text02 {
    order: 1;
    width: 100%;
    margin-bottom: 2rem;
  }
  .para-imgbox {
    display: block;
  }
  .para-imgbox img {
    width: 100%;
  }
  .para-img01 {
    width: 100%;
  }
  .para-img02 {
    order: 2;
    width: 65%;
    margin: 0 auto;
  }
}

@media (max-width: 540px) {
  .para-img02 {
    width: 100%;
  }
}

/* =====================================
      技術優勢milestones.html
=======================================*/

.timeline-container {
  width: 95%;
  margin: 0 auto;
}

.timeline-container::after {
  /* clearfix */
  content: "";
  display: table;
  clear: both;
}

#cd-timeline {
  position: relative;
  padding: 2rem 0;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

#cd-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 4px;
  background: #bbd8d2;
  left: 50%;
  margin-left: -2px;
}

.timeline-group {
  position: relative;
  margin: 2em 0;
  padding: 4.5rem 0 0 0;
}

.timeline-group::after {
  clear: both;
  content: "";
  display: table;
}

.timeline-group:first-child {
  margin-top: 0;
}

.timeline-group:last-child {
  margin-bottom: 0;
}

.timeline__year {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -36px;
  width: 72px;
  height: 72px;
  font-size: 1.25rem;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #ffffff, inset 0 2px 0 rgba(0, 0, 0, 0.08),
    0 2px 0 2px rgba(0, 0, 0, 0.05);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #6fb662;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}

.timeline__year.is-hidden {
  visibility: hidden;
}

.timeline__year.bounce-in {
  visibility: visible;
  -webkit-animation: cd-bounce-1 0.6s;
  -moz-animation: cd-bounce-1 0.6s;
  animation: cd-bounce-1 0.6s;
}

.timeline__year-in {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@-webkit-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

@-moz-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -moz-transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -moz-transform: scale(1.2);
  }
  100% {
    -moz-transform: scale(1);
  }
}

@keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

.timeline-card {
  position: relative;
  /* margin-left: 60px; */
  /* background: #e1f3e9; */
  background: #fff;
  border-radius: 0.375em;
  box-shadow: 0 2px 0 #dedede;
  padding: 1.25rem;
  width: 45%;
  margin: 0 0 1.25rem 0;
}

.timeline-card .cd-date {
  position: absolute;
  padding: 0.5rem 1.25rem;
  border-radius: 0 0 0.375rem 0.375rem;
  margin: 0 auto 1.5rem 1.25rem;
  background: #00975a;
  color: #fff;
  top: 0;
  left: 0;
}

.timeline-in {
  margin: 2rem 0 0 0;
  line-height: 1.6;
  font-size: 1.125rem;
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 100%;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  /* border-left: 7px solid #e1f3e9; */
  border-left: 7px solid #fff;
}

.timeline-group:nth-child(even) .timeline__year-in {
  align-items: flex-end;
}

.timeline-group:nth-child(even) .timeline__year-in .timeline-card::before {
  left: -7px;
  border-left: none;
  border-right-color: #fff;
}

.timeline__year-in.is-hidden {
  visibility: hidden;
}

.timeline__year-in.bounce-in {
  visibility: visible;
  -webkit-animation: cd-bounce-2 0.6s;
  -moz-animation: cd-bounce-2 0.6s;
  animation: cd-bounce-2 0.6s;
}

.timeline-group:nth-child(even) .timeline__year-in.bounce-in {
  -webkit-animation: cd-bounce-2-inverse 0.6s;
  -moz-animation: cd-bounce-2-inverse 0.6s;
  animation: cd-bounce-2-inverse 0.6s;
}

@-webkit-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-150px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -moz-transform: translateX(-150px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(20px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}

@keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-150px);
    -moz-transform: translateX(-150px);
    -ms-transform: translateX(-150px);
    -o-transform: translateX(-150px);
    transform: translateX(-150px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(150px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -moz-transform: translateX(150px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(-20px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}

@keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(150px);
    -moz-transform: translateX(150px);
    -ms-transform: translateX(150px);
    -o-transform: translateX(150px);
    transform: translateX(150px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

@media (max-width: 992px) {
  .timeline-container {
    width: 100%;
  }
  #cd-timeline::before {
    left: 2.5rem;
  }
  .timeline__year {
    left: 2.5rem;
  }
  .timeline__year-in {
    padding: 1.5rem 0 0 4.5rem;
  }
  .timeline-card {
    width: 100%;
    margin-bottom: 1.25rem;
  }
  .timeline-card::before {
    left: -7px;
    border-left: none;
    border-right-color: #fff;
  }
}

/* =====================================
      公司組織圖organization.html
=======================================*/

.treeview.org-h {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.treeview.org-h ul > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  padding: 0 0 1.25rem 0;
}

.treeview.org-h ul > li:after {
  top: inherit;
  bottom: 0;
  z-index: -1;
  height: 1.5rem;
  background: #9ba3aa;
}

.treeview.org-h ul > li span {
  width: 150px;
  background: linear-gradient(
    to right bottom,
    rgba(145, 195, 30, 1),
    rgb(30 134 57)
  );
  box-shadow: 0 4px 8px 0px rgba(0, 0, 0, 0.2);
}

.treeview.org-h ul > li span:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 12px 6px rgb(62 57 107 / 20%);
}

.treeview.org-h ul > li.treeview-expanded:after {
  top: 54px;
  bottom: inherit;
}

.treeview.org-h ul > li > ul {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin: 1.5rem 0 10px 0px;
}

.treeview.org-h ul > li > ul > li {
  padding: 1.5rem 0 0.5rem;
  position: relative;
}

.treeview.org-h ul > li > ul > li .treeview-branch {
  padding: 1rem 1.5rem;
  position: relative;
  background: linear-gradient(to bottom, #a0b8cc, #3a454e);
  color: #fff;
  border-radius: 6px;
  margin-left: 1rem;
  min-width: 150px;
  transition: all 0.25s ease;
}

.treeview.org-h ul > li > ul > li .treeview-branch:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 12px 6px rgb(62 57 107 / 20%);
}

.treeview.org-h ul > li > ul > li:after {
  bottom: inherit;
  background: #9ba3aa;
  top: 0;
}

.treeview.org-h ul > li > ul > li:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #9ba3aa;
}

.treeview.org-h ul > li > ul > li:first-child::before {
  content: "";
  left: 50%;
  top: 0;
  width: 100%;
  height: 2px;
  background: #9ba3aa;
}

.treeview.org-h ul > li > ul > li:last-child:before {
  width: 50%;
}

@media (max-width: 1024px) {
  .treeview.org-h {
    align-items: flex-start;
  }
  .treeview.org-h ul,
  .treeview.org-h ul > li {
    align-items: flex-start;
  }
  .treeview.org-h ul > li,
  .treeview.org-h ul li span {
    text-align: center;
  }
  .treeview.org-h ul > li:after {
    left: 50%;
  }
  .treeview.org-h ul > li > ul {
    flex-direction: column;
    margin: 1.125rem 0 10px 0px;
  }
  .treeview.org-h ul > li.tv-branch:after {
    left: 75px;
  }
  .treeview.org-h ul > li > ul li {
    margin-left: calc(5rem - 5px);
    padding: 0.5rem 0;
  }
  .treeview.org-h ul > li > ul > li:first-child::before,
  .treeview.org-h ul > li > ul > li::before,
  .treeview.org-h ul > li > ul > li:last-child:before {
    left: 0;
    width: 2px;
    height: 100%;
  }
  .treeview.org-h ul > li > ul > li:last-child:before {
    height: 50%;
  }
  .treeview.org-h ul > li > ul > li:after {
    width: 100%;
    height: 2px;
    left: 0;
    top: 50%;
  }
  .treeview.org-h ul > li > ul > li .treeview-branch {
    margin-left: 6rem;
  }
}

/* =====================================
      集團關係企業relatedcomp.html
=======================================*/

.related-wrap {
  padding: 1rem 0;
}

.related-wrap .inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.related-wrap .related-cont {
  width: 45%;
  margin-right: 3rem;
}

.related-wrap .related-cont .card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}

.card-related {

  border: none;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  height: calc(100% - 1.5rem);
}

.card-related .card-header {
  border-bottom: none;
  background: #30b583;
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem 0.5rem 0 0;
  letter-spacing: 0.5px;
}

.card-related .card-body {
  padding: 0;
}

.card-related ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.card-related ul li {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  height: 100%;
  border-bottom: 1px solid #d2e9ca;
}

.card-related ul li .item-label,
.card-related ul li .item-data {
  padding: 0.5rem 0.625rem 0.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  min-height: 100%;
}

.card-related ul li .item-data {
  padding: 0.5rem 1.25rem 0.5rem 1rem;
}

.card-related ul li:first-child .item-label {
  padding: 1rem 0.625rem 0.5rem 1.25rem;
}

.card-related ul li:first-child .item-data {
  padding: 1rem 1.25rem 0.5rem 1rem;
}

.card-related ul li:last-child .item-label {
  padding: 0.5rem 0.625rem 1rem 1.25rem;
}

.card-related ul li:last-child .item-data {
  padding: 0.5rem 1.25rem 1rem 1rem;
}

.card-related ul li .item-label {
  font-weight: 600;
  white-space: nowrap;
  min-width: 140px;
  background: #f1f9ec;
  color: #257036;
}

.related-wrap .related-img {
  display: block;
  width: calc(48% - 3rem);
  margin-right: 3rem;
}

.related-img > img {
  display: block;
  width: 100%;
}

.col-rel-cum ul {
  padding: 0.625rem 0;
}

.col-rel-cum ul li {
  display: inherit;
  padding: 0 1.25rem;
  border-bottom: none;
  margin-bottom:1rem;
}

.col-rel-cum ul li .item-label,
.col-rel-cum ul li:first-child .item-label,
.col-rel-cum ul li:last-child .item-label {
  padding: 0.375rem 1rem;
  display: inline-flex;
  min-width: inherit;
  border-radius: 40px;
}

.col-rel-cum ul li .item-data,
.col-rel-cum ul li:first-child .item-data,
.col-rel-cum ul li:last-child .item-data {
  padding: 0.375rem 0.5rem 0.375rem 1rem;
}

.col-rel-cum ul li .item-data {
  display: block;
}
.svgmap {
  display: block;
  width: 100%;
}

.cls-1 {
  isolation: isolate;
}

.cls-2 {
  fill: url(#tsutw);
}
.cls-2:hover, .cls-2:focus, .cls-2:active, .cls-2.active{
  fill: url(#tsutwhover);
}
.cls-3 {
  fill: url(#tsutw2);
}
.cls-3:hover, .cls-3:focus, .cls-3:active, .cls-3.active{
  fill: url(#tsutw2hover);
}
.cls-4 {
  fill: url(#ipfyr);
}
.cls-4:hover, .cls-4:focus, .cls-4:active, .cls-4.active{
  fill: url(#ipfyrhover);
}
.cls-5 {
  fill: url(#fenghsin);
}
#relate04 .cls-5:hover, .cls-5:focus, .cls-5.active{
  fill: url(#fenghsinhover);
}
.cls-10,
.cls-6{
  mix-blend-mode: screen;
 
}

.cls-6 {
  fill: url(#linear-gradient);
   display: none;
}

.cls-7 {
  mix-blend-mode: multiply;
  fill: url(#linear-gradient-2);
}

.cls-8 {
  fill: url(#linear-gradient-3);
}

.cls-9 {
  fill: #fff;
}

.cls-11 {
  fill: #f4ffeb;
}

.cls-12 {
  fill: #f0fbff;
}

.cls-13 {
  fill: #2f4b84;
}

.cls-14,
.cls-15,
.cls-17,
.cls-18 {
  fill: none;
  stroke: #aaa;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cls-14,
.cls-15 {
  stroke-width: 2px;
}

.cls-15 {
  stroke-dasharray: 12.1 12.1;
}

.cls-16 {
  fill: #aaa;
}

.cls-17,
.cls-18 {
  stroke-width: 2.29px;
}

.cls-18 {
  stroke-dasharray: 13.83 13.83;
}

.cls-19 {
  fill: #212121;
}

@media (max-width: 992px) {
  .related-wrap .inner {
    flex-direction: column;
  }
  .related-wrap .related-cont,
  .related-wrap .related-img {
    width: inherit;
    margin-right: 0;
  }
  .related-wrap .related-img {
    order: 1;
    width: 70%;
    margin: 0 auto 1.5rem;
  }
  .related-wrap .related-cont {
    order: 2;
  }
}

@media (max-width: 540px) {
  .related-wrap .related-img {
    width: 90%;
  }
}

@media (max-width: 420px) {
  .related-wrap .related-img {
    width: 100%;
  }
}

/* =====================================
      所在位置location.html
=======================================*/

.location-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 2.5rem 0 0 0;
}

.location-wrap .card-contact {
  position: relative;
  left: 0;
  top: 0;
  bottom: 0;
  transform: none;
  background: #3b454f;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 2.5rem;
  line-height: 1.6;
  margin: 40px 0;
}

.location-wrap .card-contact::after {
  position: absolute;
  content: "";
  right: 0%;
  bottom: -80px;
  clip-path: polygon(0 0, 100% 49%, 100% 0);
  background: #3b454f;
  width: 100%;
  height: 80px;
}

.location-wrap .card-contact .card-header {
  font-size: 1.375rem;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #707070;
  white-space: nowrap;
  display: block;
}

.location-wrap .card-contact .card-body {
  padding: 0.5rem 0;
  letter-spacing: 0.25px;
}

.location-wrap .card-contact .card-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.location-wrap .card-contact .card-body ul li {
  margin-bottom: 0.5rem;
}

.location-map {
  width: 75%;
  padding: 0;
  position: relative;
  line-height: 0;
  /**加上這個, iframe才會貼邊**/
  border: 1px solid #888;
  box-shadow: 2px 5px 2px rgba(0, 0, 0, 0.16);
}

.location-map iframe {
  border: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 500px;
}

@media (max-width: 1366px) {
  .location-wrap .card-contact {
    padding: 2rem;
  }
}

@media (max-width: 1024px) {
  .location-wrap {
    flex-direction: column;
    padding-top: 0;
  }
  .location-wrap .card-contact {
    border-radius: 0.375rem;
    margin-top: 0;
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .location-wrap .card-contact::after {
    display: none;
  }
  .location-map {
    width: 100%;
    box-shadow: none;
  }
}

@media (max-width: 540px) {
  .location-wrap .card-contact {
    padding: 1.5rem;
  }
}

/* =====================================
      營業項目serv-items.html
=======================================*/

.serv-wrap {
  padding: 1rem 0 0;
}

.tabs-serv ul {
  margin: 0;
  padding: 0;
  border-bottom: none;
}

.tabs-serv ul li:not(:last-child) {
  margin-right: 0.375rem;
}

.tabs-serv ul li .nav-link {
  background: #97a1a9;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  padding: 0.5rem 1.5rem;
  border: none;
  color: #ededed;
}

.tabs-serv ul li .nav-link:hover,
.tabs-serv ul li .nav-link:focus,
.tabs-serv ul li .nav-link:active {
  border: transparent;
  background: #d0d7dd;
  color: #195589;
}

.tabs-serv .nav-tabs .nav-item.show .nav-link,
.tabs-serv .nav-tabs .nav-link.active {
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem 0.5rem 0 0;
  margin-bottom: 0;
  color: #29835e;
}

.tabs-serv .tab-content {
  background: #fff;
  padding: 1.25rem;
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.12);
}

/*accordion*/

.accordion .card-type {
  border: 1px solid #cad6dd;
}

.accordion > .card > .card-header {
  padding: 0.5rem;
  background: #ebebeb;
  border-bottom: 1px solid #cad6dd;
}

.accordion > .card > .card-header h3 button {
  font-weight: 600;
  letter-spacing: 1px;
  color: #1f5a97;
}

.table-type,
.table-type tbody tr td {
  border: 1px solid #b2d3d5;
}

.table-type thead tr th {
  text-align: center;
  font-weight: 400;
  color: #fff;
  background: #4e7c80;
  border-bottom: none;
  vertical-align: middle;
  white-space: nowrap;
  border: 1px solid #4e7c80;
  padding: 0.5rem 0.75rem;
}

.table-type tbody tr td {
  padding: 0.375rem 0.75rem;
  vertical-align: middle;
}

.table-type thead tr th:last-child,
.table-type tbody tr td:last-child {
  width: 75%;
}

.table-type thead tr th:not(:last-child) {
  border-right: 1px solid #fff;
}

.even {
  background: #eefdfd;
}

/* =====================================
      現場營運流程serv-process.html
=======================================*/

.servpro-wrap {
  padding: 0;
}

.servpro-wrap img {
  display: block;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .servpro-wrap img {
    width: 100%;
  }
}

/* =====================================
    環境監測資料monitoring-info.html
=======================================*/

.publicinfo-wrap {
  padding: 1rem 0 0 0;
}

.pdf-wrap {
  width: 100%;
}

/* =====================================
      環保連結link.html
=======================================*/

.link-wrap {
  padding: 1rem 0;
  min-height: 450px;
}

.link-wrap ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.link-wrap ul li {
  padding: 0.75rem 1.25rem;
  position: relative;
  margin-bottom: 0.375rem;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.link-wrap ul li a {
  position: relative;
  color: #1b7e4c;
  font-size: 1.125rem;
  padding-left: 1.5rem;
}

.link-wrap ul li a:before {
  content: "\f33b";
  position: absolute;
  font-family: "Font Awesome 5 pro", Serif, Sans-serif, cursive;
  left: 0;
  color: #1b7e4c;
  font-weight: 600;
  font-size: 1.125rem;
}

.link-wrap ul li:nth-child(odd) {
  background: #fff;
}

.link-wrap ul li:nth-child(even) {
  background: #e5f3f4;
}

.link-wrap ul li:hover {
  background: #6ed3a0;
  color: #fff;
  text-decoration: none;
}

.link-wrap ul li:hover a,
.link-wrap ul li:hover a:before {
  color: #fff;
  text-decoration: none;
}
