@charset "UTF-8";
/*==== font ==== */
/* Noto Sans TC (繁體) */
@font-face {
  font-display: swap;
  font-family: "Noto Sans TC";
  font-style: normal;
  font-weight: 300;
  src: url("../webfonts/NotoSansTC/NotoSansTC-Light.woff2") format("woff2"), url("../webfonts/NotoSansTC/NotoSansTC-Light.woff") format("woff"), url("../webfonts/NotoSansTC/NotoSansTC-Light.otf") format("opentype");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans TC";
  font-style: normal;
  font-weight: 400;
  src: url("../webfonts/NotoSansTC/NotoSansTC-Light.woff2") format("woff2"), url("../webfonts/NotoSansTC/NotoSansTC-Regular.woff") format("woff"), url("../webfonts/NotoSansTC/NotoSansTC-Regular.otf") format("opentype");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans TC";
  font-style: normal;
  font-weight: 500;
  src: url("../webfonts/NotoSansTC/NotoSansTC-Medium.woff2") format("woff2"), url("../webfonts/NotoSansTC/NotoSansTC-Medium.woff") format("woff"), url("../webfonts/NotoSansTC/NotoSansTC-Medium.otf") format("opentype");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans TC";
  font-style: normal;
  font-weight: 700;
  src: url("../webfonts/NotoSansTC/NotoSansTC-Bold.woff2") format("woff2"), url("../webfonts/NotoSansTC/NotoSansTC-Bold.woff") format("woff"), url("../webfonts/NotoSansTC/NotoSansTC-Bold.otf") format("opentype");
}
/* Clear Sans (英) */
@font-face {
  font-display: swap;
  font-family: "Clear Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../webfonts/ClearSans/ClearSans-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Clear Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../webfonts/ClearSans/ClearSans-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Clear Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../webfonts/ClearSans/ClearSans-Bold.woff2") format("woff2");
}
/*==== 宣告 ====*/
:root {
  --list-ti: 26px;
  --list--space: -30px;
  --item--space: 30px;
  --table-space: 24px;
  --edit-box-space: 24px;
}

@media (max-width: 1439px) {
  :root {
    --list--space: -16px;
    --item--space: 16px;
  }
}
@media (max-width: 1279px) {
  :root {
    --table-space: 16px;
  }
}
@media (max-width: 1023px) {
  :root {
    --list-ti: 22px;
  }
}
@media (max-width: 767px) {
  :root {
    --list--space: 0;
    --item--space: 0;
    --edit-box-space: 16px;
  }
}
/*==== 全域 ====*/
* {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 10px;
  line-height: 10px;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans TC", "sans-serif";
  font-size: 1.8rem;
  color: #002D37;
  word-wrap: break-word;
  line-height: var(--line-height-default);
  background-color: #ffffff;
  overflow-x: hidden !important;
}

img {
  max-width: 100%;
  height: auto !important;
  vertical-align: top;
  border: 0;
}

a {
  outline: none;
}

a, a:visited, a:hover, a:focus, a:active {
  text-decoration: none;
}

:focus, :active {
  outline: 0;
}

p {
  line-height: inherit;
}

/*==== 共用 ====*/
.reset {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.edit-wrap a, .edit-style a {
  color: #00DC87;
}
.edit-wrap a:visited, .edit-wrap a:hover, .edit-wrap a:focus, .edit-wrap a:active, .edit-style a:visited, .edit-style a:hover, .edit-style a:focus, .edit-style a:active {
  color: #00DC87;
  text-decoration: underline;
}
.edit-wrap p, .edit-style p {
  margin: 0;
  padding: 12px 0;
  word-break: normal;
}
.edit-wrap img, .edit-style img {
  margin: 32px 0;
  overflow: hidden;
}
.edit-wrap .btn-style, .edit-style .btn-style {
  color: #ffffff !important;
}

/* 區塊 間隔 */
.edit-style {
  padding-top: var(--edit-box-space);
  padding-bottom: var(--edit-box-space);
}
.edit-style .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.temp-ti {
  margin-bottom: 0;
  font-size: var(--list-ti);
  color: #002D37;
  font-weight: 500;
  line-height: 1.4;
}

/* ==== 樣板 ==== */
/* 左右圖文 */
.temp-h-plt.flex, .temp-h-tlp.flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.temp-h-plt .pic, .temp-h-tlp .pic {
  width: 48.149%;
  max-width: 520px;
}
.temp-h-plt .pic img, .temp-h-tlp .pic img {
  margin: 0;
}
.temp-h-plt .txt, .temp-h-tlp .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: var(--gap-64);
}

.temp-h-tlp {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.temp-h-tlp .txt {
  padding: 0 var(--gap-64) 0 0;
}

/* 上文下圖 + 上圖下文 */
.temp-v-tlp p, .temp-v-plt p {
  padding: 0;
  text-align: center;
}
.temp-v-tlp img, .temp-v-plt img {
  width: 100%;
}

.temp-v-tlp img {
  margin-bottom: 0 !important;
}

.temp-v-plt img {
  margin-top: 0 !important;
  margin-bottom: 48px !important;
}

/* 條列式 */
ul.list-item > li {
  position: relative;
  padding: 12px 0 12px 30px;
}
ul.list-item > li::before {
  display: block;
  content: "";
  position: absolute;
  top: 23px;
  left: 8px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #00DC87;
}

/* table */
.table-wrap {
  width: 100%;
}
.table-wrap table {
  width: 100%;
  color: #002D37;
  text-align: center;
  border-collapse: separate;
  border-spacing: 0;
  background-color: #fff;
}
.table-wrap table thead {
  background-color: #002D37;
}
.table-wrap table thead th {
  position: relative;
  padding: var(--table-space) 20px;
  color: #fff;
  font-weight: normal;
}
.table-wrap table thead th:not(:last-child)::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -14px;
  width: 1px;
  height: 28px;
  background-color: #7d7d7d;
}
.table-wrap table thead th:first-child {
  border-top-left-radius: 8px;
}
.table-wrap table thead th:last-child {
  border-top-right-radius: 8px;
}
.table-wrap table tbody tr:nth-child(even) {
  background-color: #fafafa;
}
.table-wrap table tbody tr td:not(:first-child) {
  border-left: #e1e1e1 solid 1px;
}
.table-wrap table tbody th, .table-wrap table tbody td {
  padding: var(--table-space) 20px;
}
.table-wrap table tbody th {
  font-weight: normal;
}

/* 連結按鈕 */
.btn-more {
  position: relative;
  padding-bottom: 2px;
  font-size: 1.4rem;
  color: #007AFF !important;
}
.btn-more::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  opacity: 0;
  background-color: #007AFF !important;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
.btn-more span {
  display: inline-block;
  margin: -7px 0 0 8px;
  vertical-align: middle;
}
.btn-more:hover {
  color: #007AFF !important;
  text-decoration: none !important;
}
.btn-more:hover::after {
  opacity: 1;
}

/* ==== 董事會&董事會重大決議 ====*/
.meeting-list .item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: #e1e1e1 solid 1px;
}
.meeting-list .item .ti {
  margin: 0;
  font-size: 2.2rem;
  color: #002D37;
  font-weight: 500;
  line-height: 1.4;
}
.meeting-list .item .ti a {
  color: #002D37;
}
.meeting-list .item:hover .ti a {
  color: #00DC87;
}
.meeting-list .item.switch .ti {
  position: relative;
  padding-right: 40px;
  cursor: pointer;
  -webkit-transition: color 0.35s;
  transition: color 0.35s;
}
.meeting-list .item.switch .ti::before {
  display: block;
  content: "";
  position: absolute;
  top: 11px;
  right: 15px;
  width: 14px;
  height: 7px;
  background: url(../images/menu_aw.svg) no-repeat 0 0;
  background-size: cover;
  -webkit-transition: -webkit-transform 0.35s;
  transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  transition: transform 0.35s, -webkit-transform 0.35s;
}
.meeting-list .item.switch .view-box {
  display: none;
  padding-top: 15px;
  width: 100%;
}
.meeting-list .item.switch .view-box ul.list-item > li {
  padding: 4px 0 4px 25px;
}
.meeting-list .item.switch .view-box ul.list-item > li::before {
  top: 17px;
  width: 4px;
  height: 4px;
}
.meeting-list .item.switch .view-box a {
  color: #002D37;
}
.meeting-list .item.switch .view-box a:hover {
  color: #00DC87;
}
.meeting-list .item.switch:hover .ti {
  color: #00DC87;
}
.meeting-list .item.switch.is-on .ti {
  color: #00DC87;
}
.meeting-list .item.switch.is-on .ti::before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.cke_editable .meeting-list .item.switch .view-box {
  display: block !important;
}

/* ==== 公司辦法/執行情形 ====*/
.regulations-edit .temp-ti {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: #e1e1e1 solid 1px;
}
.regulations-edit .item .list-item {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.regulations-edit .item .list-item li {
  padding: 4px 0 4px 25px;
}
.regulations-edit .item .list-item li::before {
  top: 16px;
  width: 4px;
  height: 4px;
}
.regulations-edit .item .list-item li a {
  color: #002D37;
}
.regulations-edit .item .list-item li a:hover {
  color: #00DC87;
}

/* ==== 公司基本資料 ====*/
.table-wrap.company-info table tbody th {
  font-size: 1.6rem;
}
.table-wrap.company-info table tbody td {
  font-size: 1.8rem;
}

/* ==== 服務代理機構&投資人關係聯絡 ====*/
.contact-edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
.contact-edit .item {
  padding: 32px;
  width: calc(50% - 20px);
  border-radius: 8px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
}
.contact-edit .item .list-ti {
  margin-bottom: 16px;
  font-size: var(--list-ti);
  color: #002D37;
  font-weight: 500;
  text-align: left;
  border-bottom: #d7d7d7 solid 2px;
}
.contact-edit .item .list-ti span {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}
.contact-edit .item .list-ti span::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #00DC87;
}
.contact-edit .item ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  position: relative;
  padding: 8px 0 8px 30px;
  line-height: 1.4;
}
.contact-edit .item ul li::before {
  display: block;
  content: "";
  position: absolute;
  top: 17px;
  left: 8px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #00DC87;
}
.contact-edit .item ul li .ti {
  width: 72px;
}
.contact-edit .item ul li p {
  margin-bottom: 0;
  padding: 0 !important;
  width: calc(100% - 72px - 30px);
}
.contact-edit .item ul li p a {
  color: #002D37;
}
.contact-edit .item ul li p a:hover {
  color: #00DC87;
}

/* ==== esg ====*/
.esg-edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: var(--box-space);
  width: 100%;
}
.esg-edit .edit-style {
  padding: 0;
}
.esg-edit .edit-style .pic {
  border-radius: 8px;
  overflow: hidden;
}
.esg-edit .edit-style .temp-ti {
  font-size: var(--box-ti);
  font-weight: 700;
}
.esg-edit .edit-style .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
  margin-top: 20px;
}

/* ==== 共用 ==== */
@media (max-width: 1279px) {
  body {
    font-size: 1.6rem;
  }
  .edit-wrap img {
    margin: 0;
  }
}
@media (max-width: 1023px) {
  .edit-style img {
    margin: 24px 0;
  }
}
@media (max-width: 767px) {
  :root {
    --edit-box-space: 16px;
  }
}
/* 左右圖文 / 上圖下文 */
@media (max-width: 1023px) {
  .temp-h-plt .pic, .temp-h-tlp .pic {
    width: 100%;
    max-width: 100%;
  }
  .temp-h-plt .txt, .temp-h-tlp .txt {
    padding: var(--block-space) 0 0 0 !important;
    width: 100%;
  }
  .temp-v-plt .temp-ti {
    text-align: left;
  }
  .temp-v-plt img {
    margin-bottom: 24px !important;
  }
}
@media (max-width: 767px) {
  .temp-v-plt img {
    margin-bottom: 20px !important;
  }
}
/* 條列式 */
@media (max-width: 767px) {
  ul.list-item > li {
    padding: 8px 0 8px 16px;
  }
  ul.list-item > li::before {
    top: 19px;
    left: 4px;
    width: 4px;
    height: 4px;
  }
}
/* table */
@media (min-width: 1279px) {
  .table-wrap table thead th {
    font-size: 2rem;
  }
}
@media (max-width: 1023px) {
  .table-wrap table thead th {
    padding: var(--table-space) 15px;
  }
  .table-wrap table tbody th, .table-wrap table tbody td {
    padding: var(--table-space) 15px;
  }
}
@media (max-width: 767px) {
  .table-wrap:not(.company-info) table {
    text-align: left;
  }
  .table-wrap:not(.company-info) table thead {
    display: none;
  }
  .table-wrap:not(.company-info) table tbody tr {
    border: #e1e1e1 solid 1px;
    border-radius: 8px;
  }
  .table-wrap:not(.company-info) table tbody tr:not(:last-child) {
    margin-bottom: 20px;
  }
  .table-wrap:not(.company-info) table tbody tr, .table-wrap:not(.company-info) table tbody th, .table-wrap:not(.company-info) table tbody td {
    display: block;
  }
  .table-wrap:not(.company-info) table tbody th {
    border-radius: 8px 8px 0 0;
    background-color: #fff;
  }
  .table-wrap:not(.company-info) table tbody td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    width: 100%;
    border-left: none !important;
  }
  .table-wrap:not(.company-info) table tbody td::before {
    content: attr(data-title);
    padding-top: 3px;
    width: 70px;
    font-size: 1.5rem;
    color: #666;
    text-align: left;
    line-height: 1.2;
  }
  .table-wrap:not(.company-info) table tbody td:nth-child(odd) {
    background-color: #fff;
  }
  .table-wrap:not(.company-info) table tbody td:nth-child(even) {
    background-color: #f8f8f8;
  }
  .table-wrap:not(.company-info) table tbody td:first-child {
    border-radius: 8px 8px 0 0;
  }
  .table-wrap:not(.company-info) table tbody td:last-child {
    border-radius: 0 0 8px 8px;
  }
  .table-wrap:not(.company-info) table tbody td > div {
    position: relative;
    padding-left: 16px;
    width: calc(100% - 70px);
  }
  .table-wrap:not(.company-info) table tbody td > div::before {
    display: block;
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: #e1e1e1;
  }
}
/* ==== 公董事會&董事會重大決議 ====*/
@media (min-width: 1280px) {
  .directors .table-wrap table thead th:nth-child(2) {
    padding-left: 40px;
  }
  .directors .table-wrap table tbody td:nth-child(2) {
    padding-left: 40px;
  }
}
@media (max-width: 1279px) {
  .directors .table-wrap table thead th:nth-child(1) {
    width: auto !important;
  }
  .meeting-list .item .ti {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .meeting-list .item.switch .ti {
    padding-right: 30px;
  }
  .meeting-list .item.switch .view-box ul.list-item > li {
    padding-left: 16px;
  }
  .meeting-list .item.switch .view-box ul.list-item > li::before {
    top: 15px;
  }
  .directors .table-wrap:not(.company-info) table tbody td::before {
    width: 35px;
  }
}
/* ==== 公司辦法/執行情形 ====*/
@media (min-width: 1024px) {
  .regulations-edit .temp-ti {
    font-size: 2.2rem;
  }
}
@media (max-width: 1279px) {
  .regulations-edit .item .list-item li::before {
    top: 15px;
  }
}
@media (max-width: 767px) {
  .regulations-edit .temp-ti {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .regulations-edit .item .list-item {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .regulations-edit .item .list-item li {
    padding-left: 16px;
  }
}
/* ==== 公司基本資料 ====*/
@media (max-width: 767px) {
  .table-wrap.company-info table thead th:nth-child(1) {
    width: 160px !important;
  }
  .table-wrap.company-info table thead th:nth-child(2) {
    width: calc(100% - 160px) !important;
  }
}
/* ==== 服務代理機構&投資人關係聯絡 ====*/
@media (max-width: 1023px) {
  .contact-edit {
    gap: 24px 0;
  }
  .contact-edit .item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contact-edit {
    gap: 12px 0;
  }
  .contact-edit .item {
    padding: 24px 20px 20px;
  }
  .contact-edit .item ul li {
    gap: 16px;
    padding: 4px 0 4px 16px;
  }
  .contact-edit .item ul li::before {
    top: 12px;
    left: 4px;
    width: 4px;
    height: 4px;
  }
  .contact-edit .item ul li .ti {
    width: 72px;
  }
  .contact-edit .item ul li p {
    width: calc(100% - 72px - 16px);
  }
}
/* ==== esg ====*/
@media (min-width: 1024px) {
  .esg-edit {
    row-gap: calc(var(--box-space) + var(--padding-spac));
  }
}
@media (min-width: 1280px) {
  .esg-edit .edit-style p {
    font-size: 2rem;
  }
}
@media (max-width: 1023px) {
  .esg-edit .edit-style .links {
    margin-top: 8px;
    gap: 0 24px;
  }
}