@charset "utf-8";
html {
  margin: 0;
  height: 100%;
}
body {
  margin: 0;
  height: 100%;
  font-family: "Rubik", "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica;
  font-size: 16px;
  color: var(--font-color);
  letter-spacing: 0.05em;
}
a {
  color: var(--font-color);
  text-decoration: none;
}
a:hover {
  color: var(--font-color2);
  text-decoration: none;
}
h1 {
  font-size: 36px;
  letter-spacing: 0;
}
h2 {
  font-size: 28px;
  letter-spacing: 0;
}
h3 {
  font-size: 24px;
  line-height: 1.5;
}
h4 {
  font-size: 20px;
  line-height: 1.5;
}
h5 {
  font-size: 18px;
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
p {
  margin-bottom: 0;
}
p {
  line-height: 1.7;
}
button {
  border: 0;
  background-color: transparent;
}
input,
textarea {
  box-shadow: none;
  -webkit-appearance: none; /* Safari*/
  -moz-appearance: none; /* FireFox */
  appearance: none;
}
input:focus,
textarea:focus {
  outline: none !important;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--font-color3) !important;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--font-color3) !important;
}
input:-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: var(--font-color3) !important;
}
select {
  font-size: 1rem;
}
select:focus {
  outline: none !important;
}
.bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg img {
  display: none;
}
.font_bold {
  font-weight: 600;
}
.from_textarea {
  white-space: pre-line;
}
.row {
  margin-left: -16px;
  margin-right: -16px;
}
.row > * {
  padding-left: 16px;
  padding-right: 16px;
}
.my_container {
  max-width: 1504px;
  padding-right: 32px;
  padding-left: 32px;
  margin-left: auto;
  margin-right: auto;
}
.my_container_full {
  padding-left: 64px;
  padding-right: 64px;
}
.my_container_l {
  max-width: 1232px;
  padding-right: 16px;
  padding-left: 16px;
  margin-left: auto;
  margin-right: auto;
}
main {
  min-height: calc(100vh - 80px - 311px);
}
.main_pt {
  padding-top: 80px;
}
.main_pb {
  padding-bottom: 80px;
}
.show_model {
  padding: 64px 0;
}
.en-txt-size {
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
  display: block;
}
.block_pt {
  padding-top: 72px;
}
.block_pb {
  padding-bottom: 72px;
}
/*看更多*/
.view_more {
  margin-top: 40px;
}
/*more-link*/
.more_link {
  display: flex;
  align-items: center;
  border-bottom: solid 1px var(--main-color);
  color: var(--main-color);
  font-weight: 600;
  width: fit-content;
}
.more_link .icon {
  margin-left: 16px;
}
.more_link_mt {
  margin-top: 24px;
  flex-wrap: wrap;
}
/*頁面標題*/
.page_title_bg {
  height: 500px;
  background-color: var(--bg-color);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  margin-bottom: 72px;
}
.page_title {
  margin-bottom: 80px;
  text-align: center;
  color: #fff;
}
.page_title_bg .page_title {
  margin-bottom: 0;
}
.page_title h1 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
.page_title p {
  margin-top: 12px;
  font-size: 18px;
}
.page_title_bg.full {
  height: 100vh;
}
.page_title_bg .more_link {
  color: #fff;
  border: solid 1px #fff;
  margin: 0 auto;
  padding: 12px 24px;
}
/*區塊標題*/
.block_title {
  margin-bottom: 40px;
}
.block_title.center {
  text-align: center;
}
.block_title h2 {
  color: var(--main-color);
  font-size: 46px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.1rem;
}
.block_title p {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 32px;
  font-weight: 500;
}
.block_title.center p {
  text-align: center;
}
.block_title_sec {
  margin-top: 8px;
  font-size: 32px;
}
.color-sec {
  color: var(--second-color);
}
/*載入動畫*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color2);
  z-index: 2000;
  overflow: hidden;
}
.loader span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  background: linear-gradient(
    0deg,
    rgba(94, 212, 250, 0.2) 15%,
    var(--blue-color) 100%
  );
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader span::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--main-color2);
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*彈窗-簡易*/
.simple_modal .modal-dialog {
  max-width: 400px;
}
.simple_modal .modal-content {
  border-radius: 16px;
  border: none;
}
.simple_modal .modal-body {
  padding: 40px 16px 8px 16px;
}
.simple_modal .modal-body .title {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}
.simple_modal .modal-footer {
  padding: 16px 16px 24px 16px;
  border-top: none;
  justify-content: center;
}
.simple_modal .modal-footer > * {
  margin: 0;
}
.simple_modal .modal-footer > .two_btn {
  margin-bottom: -8px;
}
.simple_modal .modal-footer .btn + .btn {
  margin-left: 16px;
}
.message_modal_content {
  text-align: center;
}
/*吐司*/
.my_toast {
  position: fixed;
  top: 30%;
  right: calc(50% - 200px);
  z-index: 1010;
}
.my_toast .toast {
  position: relative;
  background-color: rgb(0 0 0 / 90%);
  color: #fff;
  width: 400px;
  border: none;
  box-shadow: 0 6px 30px rgb(0 0 0 / 25%);
  border-radius: 4px;
}
.my_toast .toast-body {
  padding: 40px 24px 40px 24px;
  max-width: 100%;
  text-align: center;
}
.my_toast .btn-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 40px;
  height: 40px;
  padding: 0;
  margin-right: 0;
  color: #fff;
  font-size: 40px;
  background-image: none;
  opacity: 1;
}
.my_toast .btn-close i {
  display: flex;
  justify-content: center;
}
.my_toast .btn-close:hover {
  opacity: 1;
}
.my_toast .btn-close:focus {
  box-shadow: none;
}
.my_toast .toast_icon img {
  width: 52px;
}
.my_toast .toast_txt {
  font-size: 1rem;
}
/*分享列*/
.share_list_box {
  display: flex;
  align-items: center;
  margin-top: 24px;
}
.share_list_box p {
  margin-right: 16px;
  font-size: 14px;
  color: var(--font-color2);
}
.share_list {
  display: flex;
  align-items: center;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.share_item a,
.share_item button {
  font-size: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px 1px rgb(0 0 0 / 12%);
  color: var(--font-color);
}
.share_item a i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.share_item + .share_item {
  margin-left: 24px;
}
.copy_link {
  cursor: pointer;
}
/*制式圖文區塊*/
.imagestext_block + .imagestext_block {
  margin-top: 144px;
}
.imagestext_row {
  display: flex;
  align-items: center;
}
.imagestext_block:nth-child(even) .imagestext_row {
  flex-direction: row-reverse;
}
.imagestext_img {
  position: relative;
  width: 55%;
}
.imagestext_img .bg {
  padding-bottom: 72%;
}
.imagestext_body {
  flex: 1;
  padding: 24px 72px 48px 72px;
}
.imagestext_txt {
  position: relative;
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
}
.imagestext_txt::before {
  content: "";
  display: block;
  margin-left: -16px;
  margin-bottom: 8px;
  width: 30px;
  height: 30px;
  background-image: url(../img/green-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.imagestext_body.only {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  background: var(--bg-color);
  padding: 64px 72px 72px 72px;
}
.imagestext_body.only .imagestext_txt::before {
  display: none;
}
/*文章引用*/
.quote_box {
  margin-top: 16px;
  font-size: 16px;
  color: var(--font-color3);
}
.quote_list {
  list-style: none;
  padding: 0;
  margin-top: 4px;
  margin-bottom: 0;
}
.quote_list li + li {
  margin-top: 4px;
}
.quote_list li a {
  color: var(--font-color3);
}
.quote_list li a:hover {
  color: var(--font-color);
  text-decoration: underline;
}
/*header*/
.page_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* background-color: #fff;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 10%); */
  transition: all 0.5s;
  z-index: 1002;
}
.page_header.zoom,
.page_header.havebg {
  background-color: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
.header_box {
  display: flex;
  margin-left: -16px;
  margin-right: -16px;
  height: 80px;
}
.header_box > * {
  height: 100%;
}
.header_logo {
  width: fit-content;
  padding: 0 12px;
}
.header_logo a {
  display: flex;
  align-items: center;
  height: 100%;
}
.header_logo a img {
  height: 52px;
}
.header_nav {
  flex: 1;
  padding: 0 16px;
}
.header_nav .nav {
  height: 100%;
  justify-content: flex-end;
}
.header_nav .nav-item + .nav-item {
  margin-left: 40px;
}
.header_nav .nav-link {
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  /* color: var(--font-color); */
  font-weight: 600;
  padding: 0;
  cursor: pointer;
}
.page_header.zoom .header_nav .nav-link,
.page_header.havebg .header_nav .nav-link,
.page_header.fontcolor .header_nav .nav-link {
  color: var(--font-color);
}
.header_nav .nav-item.dropdown:hover .dropdown-menu {
  display: block;
}
.header_nav .nav-item .dropdown-menu {
  border: none;
  padding-top: 2px;
  border-radius: 0;
  background-color: transparent;
}
.header_nav .nav-item .dropdown-menu ul {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0px 3px 6px rgb(0 0 0 / 10%);
  padding: 8px 0;
  list-style: none;
  margin-bottom: 0;
}
.header_nav .nav-item .dropdown-menu ul .dropdown-item:hover,
.header_nav .nav-item .dropdown-menu ul .dropdown-item:focus {
  background-color: var(--bg-color);
  color: var(--font-color);
}
.header_right {
  display: none;
}
.header_right .nav {
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  margin-left: -8px;
  margin-right: -8px;
}
.header_right .nav > * {
  padding-left: 8px;
  padding-right: 8px;
}
.header_right .nav .icon_button {
  padding: 0;
  font-size: 20px;
  border-radius: 0;
  border: none;
}
.header_right .nav .icon_button:focus {
  box-shadow: none;
}
.mobile_menu_btn {
  display: none;
  height: 100%;
}
.mobile_menu_btn .btn {
  position: relative;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.mobile_menu_btn .btn i {
  font-size: 30px;
  color: var(--font-color);
}
.mobile_menu_btn .btn:focus {
  box-shadow: none;
}
.mobile_menu_btn .btn > div {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--font-color);
  transition: all 0.2s;
}
.mobile_menu_btn .btn > div:nth-child(1) {
  position: absolute;
  width: 20px;
  top: 2px;
}
.mobile_menu_btn .btn > div:last-child {
  position: absolute;
  width: 20px;
  bottom: 2px;
}
.mobile_menu_btn.active .btn > div:nth-child(2) {
  width: 0;
}
.mobile_menu_btn.active .btn > div:nth-child(1) {
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 8px;
}
.mobile_menu_btn.active .btn > div:last-child {
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: auto;
  top: 8px;
}
.header_search {
  display: flex;
  align-items: center;
  border: solid 1px var(--main-color);
  border-radius: 4px;
}
.header_search input,
.header_search select {
  border: none;
  height: 40px;
  font-size: 1rem;
  color: var(--font-color);
}
.header_search input:focus,
.header_search select:focus {
  box-shadow: none;
}
.header_search .form-select {
  width: 120px;
}
.header_search input.form-control {
  flex: 1;
}
.header_search .btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: #fff;
  border-radius: 0 4px 4px 0;
}
.mobile_btn {
  display: none;
}
.under_page_header {
  height: 0;
}
.page_header.havebg ~ .under_page_header {
  height: 80px;
}
.change_language {
  display: flex;
  align-items: center;
}
.mobile_sidebar .change_language {
  display: none;
}
.mobile_sidebar.show .change_language {
  display: flex;
}
.change_language .my_dropdown .dropdown-toggle {
  height: 40px;
  border-radius: 40px;
  width: 150px;
}
.header_nav:not(.zoom):not(.havebg):not(.fontcolor)
  .change_language
  .my_dropdown
  .dropdown-toggle {
  background-color: transparent;
  border: solid 1px #fff;
  color: #fff;
}
.header_nav:not(.zoom):not(.havebg):not(.fontcolor)
  .change_language
  .my_dropdown
  .dropdown-toggle::after {
  content: url(../img/icon/chevron-down-white.svg);
}
.header_nav:not(.zoom):not(.havebg):not(.fontcolor)
  .my_dropdown
  .dropdown-toggle:hover {
  border: solid 1px #fff;
}
.header_right .nav .change_language .my_dropdown .dropdown-toggle {
  width: 110px;
}
/*手機版選單*/
.mobile_sidebar {
  position: fixed;
  top: 72px;
  left: 0;
  z-index: 1001;
  background-color: #fff;
  width: 100%;
  height: 0px;
  overflow: hidden;
}
.mobile_sidebar_list {
  padding: 12px 0;
  list-style: none;
  overflow-y: auto;
  height: calc(100vh - 73px);
}
.mobile_sidebar_list > li > .mobile_sidebar_link {
  display: block;
  padding: 12px 16px;
  border-bottom: solid 1px var(--bg-color);
  font-weight: 500;
}
.mobile_sidebar_dropdown_btn {
  position: absolute;
  right: 8px;
  top: 0;
  height: 50px;
  width: 100%;
  text-align: right;
  padding: 12px 16px;
}
.mobile_sidebar_dropdown_btn img {
  width: 16px;
  transition: all 0.2s;
}
.mobile_sidebar_list_lv2 {
  display: none;
}
.mobile_sidebar_list li.dropdown.active > .mobile_sidebar_link {
  background-color: var(--bg-color);
}
.mobile_sidebar_list li.dropdown.active .mobile_sidebar_dropdown_btn img {
  transform: rotate(180deg);
}
.mobile_sidebar_list li.dropdown.active .mobile_sidebar_list_lv2 {
  display: block;
}
.mobile_sidebar_list_lv2 ul {
  list-style: none;
  margin-bottom: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 23px;
  background-color: var(--bg-color);
}
.mobile_sidebar_list_lv2 .dropdown-item {
  padding: 12px 16px;
}
.mobile_sidebar_list_lv2 .dropdown-item:focus,
.mobile_sidebar_list_lv2 .dropdown-item:hover,
.mobile_sidebar_list_lv2 .dropdown-item:active {
  background-color: var(--bg-color);
  color: var(--font-color);
}
.mobile_sidebar .change_language {
  padding: 12px;
}
.mobile_sidebar .change_language .my_dropdown,
.mobile_sidebar .change_language .my_dropdown .dropdown-toggle {
  width: 100%;
}
/*手機版搜尋*/
.mobile_search {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1003;
  background-color: var(--main-color);
  width: 100%;
  height: 0px;
  overflow: hidden;
}
.mobile_search_group {
  display: flex;
}
.mobile_search_group .form-select {
  margin-top: 15px;
  padding: 0 12px;
  line-height: 42px;
  border: none;
  height: 42px;
  width: 140px;
  color: #fff;
  box-shadow: none !important;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url(../img/arrow-down.svg) no-repeat right center transparent;
  background-color: transparent;
  background-size: 16px;
  background-position: right 12px center;
}
.mobile_search_input {
  flex: 1;
  background-color: transparent;
  border: none;
  height: 42px;
  margin-top: 15px;
  padding: 0 40px 0 0;
  line-height: 42px;
  color: #fff;
}
.mobile_search_input:focus {
  background-color: transparent;
  color: #fff;
  box-shadow: none;
}
.mobile_search_input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--font-color4) !important;
}
.mobile_search_input::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--font-color4) !important;
}
.mobile_search_input:-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: var(--font-color4) !important;
}
.close_mobile_search {
  display: flex;
  position: absolute;
  right: 16px;
  top: 16px;
}
.close_mobile_search .btn {
  border: none;
  color: #fff;
  height: 36px;
  width: 36px;
  font-size: 32px;
  padding: 0;
  background-color: var(--main-color);
}
.close_mobile_search .btn i {
  display: flex;
  justify-content: center;
}
.go_mobile_search {
  display: flex;
  position: absolute;
  right: 16px;
  top: 16px;
}
.go_mobile_search .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 42px;
  width: 42px;
  font-size: 20px;
  padding: 0;
  background-color: var(--main-color);
}
.go_mobile_search.show {
  z-index: 1002;
}
/*搜尋*/
.search_offcanvas {
  height: 100vh;
  border-bottom: none;
  background-color: rgb(255, 255, 255, 0.9);
}
.search_offcanvas .my_container {
  flex: 1;
}
.search_offcanvas.show ~ .offcanvas-backdrop {
  background-color: transparent;
}
.search_offcanvas .offcanvas-header {
  height: 80px;
  justify-content: end;
}
.search_offcanvas .offcanvas-header .btn-close:focus {
  box-shadow: none;
}
.search_title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--font-color);
}
.search_offcanvas .offcanvas-body {
  height: calc(100% - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 128px;
}
.search_offcanvas_content {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.hot_search {
  margin-top: 24px;
}
.hot_search_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -12px;
  margin-right: -12px;
}
.hot_search_item {
  padding-left: 12px;
  padding-right: 12px;
  font-size: 14px;
}
.hot_search_item a {
  border-bottom: solid 1px var(--font-color2);
}
/*登入註冊*/
#login_Modal .close_modal_btn {
  padding-bottom: 24px;
  text-align: center;
}
#login_Modal .close_modal_btn .btn-close {
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--font-color2);
  font-size: 40px;
  background-image: none;
  opacity: 1;
}
#login_Modal .close_modal_btn .btn-close:focus {
  box-shadow: none;
}
#login_Modal .close_modal_btn .btn-close i {
  display: flex;
  justify-content: center;
}
.login_modal_block {
  display: none;
  width: 100%;
}
.login_modal_block.show {
  display: block;
}
.login_content {
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.login_modal_block_title {
  text-align: center;
  margin-bottom: 16px;
}
.login_modal_block_title img {
  width: 200px;
}
.login_modal_block_title .success_icon {
  margin-bottom: 16px;
}
.login_modal_block_title .success_icon i {
  font-size: 48px;
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.open_other_form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.open_other_form .btn {
  color: var(--main-color);
  border-bottom: solid 1px var(--main-color);
}
.open_other_form + .login_form {
  margin-top: 24px;
}
.other_login {
  margin-top: 24px;
  margin-bottom: 12px;
}
.btn_google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn_google img {
  width: 20px;
  margin-right: 8px;
}
.error_or {
  position: relative;
  margin-top: 1.5rem;
  height: 24px;
  margin-bottom: 1.5rem;
  color: var(--font-color4);
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.error_or::before {
  content: "或";
  position: absolute;
  left: calc(50% - 12px);
  top: 0;
  z-index: 3;
  padding: 0 4px;
  background-color: #fff;
  color: var(--main-color);
}
.error_or::after {
  content: "";
  background: linear-gradient(
    to right,
    transparent,
    var(--main-color),
    transparent
  );
  position: absolute;
  left: 0;
  top: 51%;
  width: 100%;
  height: 1px;
  z-index: 2;
  opacity: 0.7;
}
.login_form .my_form_btn .btn {
  width: 100%;
}
.login_content .tips {
  margin-top: 16px;
  font-size: 14px;
  color: var(--font-color2);
  text-align: center;
}
.login_content .tips a {
  color: var(--font-color);
  font-weight: 600;
  border-bottom: solid 1px var(--font-color);
}
.success_content {
  max-width: 400px;
  border: solid 1px var(--bg-color);
  border-radius: 16px;
  padding: 24px;
  margin: 0 auto;
}
.success_content .my_form_btn .btn {
  margin: 0 auto;
}
/*footer*/
.page_footer {
  background-color: var(--font-color);
  padding-top: 48px;
  padding-bottom: 48px;
  color: #f5f5f5;
}
.page_footer a {
  color: #fff;
}
.page_footer a:hover,
.page_footer a:focus {
  color: #fff;
}
.footer_logo {
  text-align: center;
}
.footer_logo img {
  height: 80px;
}
.office_info_list {
  list-style: none;
  padding: 0;
  margin-top: 48px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 13px;
}
.office_info_item {
  display: flex;
}
.office_info_title {
  word-break: keep-all;
}
.office_info_item + .office_info_item {
  margin-top: 8px;
  /* margin-left: 24px; */
}
.footer_nav {
  margin-top: 48px;
}
.footer_nav .nav {
  flex-wrap: wrap;
  justify-content: center;
}
.footer_nav li + li {
  margin-left: 48px;
}
.footer_nav li a {
  padding: 0;
}
.footer_nav_group {
  display: flex;
  margin-left: -24px;
  margin-right: -24px;
}
.footer_nav_list {
  flex: 1;
  padding-left: 24px;
  padding-right: 24px;
}
.footer_nav_title {
  position: relative;
  font-size: 20px;
  margin-bottom: 16px;
  border-bottom: solid 2px #fff;
  padding-bottom: 4px;
}
.footer_nav_title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  height: 2px;
  width: 20%;
  background-color: var(--main-color-dark);
}
.footer_nav_group .nav li {
  width: 100%;
}
.footer_nav_group .nav li a h5 {
  font-size: 1rem;
  line-height: 1.2;
}
.footer_nav.onenav .nav {
  justify-content: flex-end;
  margin-left: 0;
  margin-right: 0;
}
.footer_nav.onenav li + li {
  margin-left: 48px;
}
.footer_line {
  border-top: solid 1px #fff;
  margin-top: 24px;
  margin-bottom: 24px;
}
.footer_row_bottom .footer_copyright {
  text-align: left;
}
.footer_row_bottom .statement .nav {
  justify-content: flex-end;
}
.footer_row_bottom .statement .nav a {
  padding: 0 16px;
}
.footer_copyright {
  text-align: center;
  font-size: 13px;
  padding-top: 40px;
  color: var(--font-color3);
}
.office_info + .footer_social {
  justify-content: flex-start;
  margin-top: 24px;
}
.footer_social {
  display: flex;
  justify-content: flex-end;
}
.footer_social .nav-item {
  width: 36px;
}
.footer_social .nav-item:not(:first-child) {
  margin-left: 16px;
}
.footer_social .nav-link {
  padding: 0;
}
.footer_social i {
  font-size: 30px;
}
.footer_subscribe {
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
  max-width: 650px;
}
.footer_subscribe h4 {
  margin-bottom: 16px;
  text-align: center;
}
.subscribe_input_group {
  display: flex;
}
.subscribe_input_group > div + div {
  margin-left: 8px;
}
.subscribe_input_group > div:first-child {
  width: 140px;
}
.subscribe_input_group > div:nth-child(2) {
  flex: 1;
}
.subscribe_input_group .my_input_color {
  color: #fff;
}
.subscribe_input_group .my_input_color::-webkit-input-placeholder {
  color: #f1f1f1 !important;
}
.subscribe_input_group .my_input_color::-moz-placeholder {
  color: #f1f1f1 !important;
}
.subscribe_input_group .my_input_color:-ms-input-placeholder {
  color: #f1f1f1 !important;
}
/*按鈕並排*/
.two_btn {
  display: flex;
  margin-left: -12px;
  margin-right: -12px;
  margin-bottom: -8px;
}
.two_btn > div {
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 8px;
}
/*按鈕-實心*/
.maincolor_btn {
  border: solid 1px var(--main-color);
  background-color: var(--main-color);
  font-size: 1rem;
  height: 60px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 4px;
  width: fit-content;
  min-width: 140px;
  transition: all 0.2s;
}
.maincolor_btn:hover,
.maincolor_btn:focus {
  border: solid 1px var(--main-color2);
  background-color: var(--main-color2);
  color: #fff;
  box-shadow: none;
}
.maincolor_btn.radius {
  border-radius: 48px;
}
/*按鈕-實心-xs*/
.maincolor_btn_xs {
  border: solid 1px var(--main-color);
  background-color: var(--main-color);
  font-size: 1rem;
  font-weight: 400;
  height: 48px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 4px;
  min-width: 140px;
  transition: all 0.2s;
}
.maincolor_btn_xs:hover,
.maincolor_btn_xs:focus {
  border: solid 1px var(--main-color2);
  background-color: var(--main-color2);
  color: #fff;
  box-shadow: none;
}
.maincolor_btn_xs.radius {
  border-radius: 48px;
}
/*按鈕-框線*/
.maincolor_border_btn {
  border: solid 1px var(--main-color);
  background-color: #fff;
  font-size: 1rem;
  font-weight: 500;
  height: 60px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  border-radius: 4px;
  width: fit-content;
  min-width: 140px;
  transition: all 0.2s;
}
.maincolor_border_btn:hover,
.maincolor_border_btn:focus {
  border: solid 1px var(--main-color2);
  color: var(--main-color);
  box-shadow: 1px 1px 4px rgb(0 0 0 / 15%);
}
.maincolor_border_btn.radius {
  border-radius: 60px;
}
/*按鈕-框線-xs*/
.maincolor_border_btn_xs {
  border: solid 1px var(--main-color);
  background-color: #fff;
  font-size: 1rem;
  font-weight: 500;
  height: 48px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  border-radius: 4px;
  min-width: 100px;
  transition: all 0.2s;
}
.maincolor_border_btn_xs:hover,
.maincolor_border_btn_xs:focus {
  border: solid 1px var(--main-color2);
  color: var(--main-color);
  box-shadow: 1px 1px 4px rgb(0 0 0 / 15%);
}
.maincolor_border_btn_xs.radius {
  border-radius: 48px;
}
/*純文字按鈕*/
.txt_btn {
  padding: 0;
  border: none;
  color: var(--font-color);
  border-radius: 0;
}
.txt_btn:hover,
.txt_btn:focus {
  color: var(--main-color);
  box-shadow: none;
}
/*文字連結*/
a.main_color {
  color: var(--main-color);
  border-bottom: solid 1px var(--main-color);
}
a.main_color:hover {
  color: var(--main-color2);
  border-bottom: solid 1px var(--main-color2);
}
/*輸入框空值題示*/
.data_validate .my_input,
.data_validate .my_textarea,
.data_validate .my_select,
.data_validate .my_input:hover,
.data_validate .my_textarea:hover,
.data_validate .my_select:hover {
  border: solid 1px var(--red-color);
  padding: 8px 16px;
}
.data_validate::after {
  display: block;
  margin-left: 16px;
  padding-top: 8px;
  content: attr(data-validate);
  font-size: 14px;
  color: var(--red-color);
}
/*單行輸入框*/
.my_input {
  border: solid 1px var(--border-color);
  border-radius: 3px;
  height: 48px;
  padding: 8px 16px;
  background-color: #fff;
  font-size: 1rem;
  color: var(--font-color);
  transition: all 0.2s;
}
.my_input:hover,
.my_input:focus {
  border: solid 1px var(--border-color);
  box-shadow: 1px 1px 4px rgb(0 0 0 / 15%);
}
.my_input:disabled,
.my_input:read-only {
  background-color: #f5f5f5;
}
.my_input:disabled:hover,
.my_input:read-only,
.my_input:disabled:focus {
  box-shadow: none;
}
/*單行輸入框-主色框*/
.my_input_color {
  border: solid 1px var(--main-color);
  border-radius: 3px;
  height: 48px;
  background-color: rgb(255 255 255 / 30%);
  font-size: 1rem;
  color: var(--font-color);
  transition: all 0.2s;
}
.my_input_color:hover,
.my_input_color:focus {
  border: solid 1px var(--main-color);
  background-color: rgb(255 255 255 / 40%);
  box-shadow: 1px 1px 6px rgb(0 0 0 / 15%);
}
/*多行輸入框*/
.my_textarea {
  border: solid 1px var(--border-color);
  border-radius: 3px;
  background-color: #fff;
  font-size: 1rem;
  padding: 8px 16px;
  color: var(--font-color);
  transition: all 0.2s;
}
.my_textarea:hover,
.my_textarea:focus {
  border: solid 1px var(--border-color);
  box-shadow: 1px 1px 4px rgb(0 0 0 / 15%);
  min-height: 60px;
}
.my_textarea:disabled {
  background-color: #f5f5f5;
  resize: none;
}
.my_textarea:disabled:hover,
.my_textarea:disabled:focus {
  box-shadow: none;
}
/*原生下拉*/
.my_select {
  border: solid 1px var(--border-color);
  border-radius: 3px;
  height: 48px;
  padding: 8px 16px;
  background-color: #fff;
  color: var(--font-color);
  min-width: 100px;
  max-width: 200px;
  appearance: none;
  background-image: url(../img/icon/chevron-down.svg);
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 16px;
  transition: all 0.2s;
}
.my_select:hover,
.my_select:focus {
  border: solid 1px var(--border-color);
  box-shadow: none;
}
.my_select:disabled {
  background-color: #f5f5f5;
}
.my_select:disabled:hover,
.my_select:disabled:focus {
  box-shadow: none;
}
/*下拉*/
.my_dropdown .dropdown-toggle {
  position: relative;
  border-radius: 3px;
  height: 48px;
  padding: 8px 32px 8px 16px;
  text-align: left;
  color: var(--font-color);
  border: solid 1px var(--border-color);
  border-radius: 5px;
  background-color: #fff;
  box-shadow: none;
  width: 100%;
}
.my_dropdown .dropdown-toggle::after {
  content: url(../img/icon/chevron-down.svg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  margin: 3px 0 0 0;
  width: 16px;
  border: none;
}
.my_dropdown .dropdown-toggle:hover {
  border: solid 1px var(--border-color);
}
.my_dropdown .dropdown-toggle:disabled {
  opacity: 1;
  background-color: var(--ban-color);
  color: var(--font-ban);
  border: 0;
  padding: 0 14px;
}
.my_dropdown .dropdown-menu {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
  padding: 0;
  min-width: 100%;
  border: none;
  box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
  border-radius: 5px;
  overflow: hidden;
  font-size: 14px;
  z-index: 20;
}
.dropdown_list {
  list-style: none;
  padding: 4px;
  margin-bottom: 0;
  max-height: 300px;
  overflow: hidden;
  overflow-y: auto;
  list-style: none;
  width: 100%;
  min-width: 100px;
}
.my_dropdown .dropdown-item {
  color: var(--font-color2);
  line-height: 24px;
  padding: 8px 16px;
  border-radius: 0;
}
.my_dropdown .dropdown_list::-webkit-scrollbar {
  width: 14px;
  box-sizing: inherit;
}
.my_dropdown .dropdown_list::-webkit-scrollbar-thumb {
  background-color: #c4c4c4;
  border-radius: 8px;
  border: 3px solid transparent;
  border-left-width: 4px;
  background-clip: padding-box;
}
.my_dropdown .dropdown_list::-webkit-scrollbar-track-piece {
  background-color: #fff;
  padding-left: 1px;
  border-left: solid 1px var(--border-color2);
}
.my_dropdown .dropdown_list::-webkit-scrollbar-button {
  display: none;
}
.my_dropdown .dropdown-item.active,
.my_dropdown .dropdown-item.active:hover {
  background-color: var(--bg-color);
  color: var(--main-color);
}
.my_dropdown .dropdown-item:focus,
.my_dropdown .dropdown-item:hover,
.my_dropdown .dropdown-item:active {
  background-color: var(--bg-color);
}
/*checkbox*/
.my_checkbox {
  display: flex;
}
.my_checkbox .form-check-input {
  border-radius: 4px;
  height: 18px;
  width: 18px;
  border-color: var(--font-color2);
  margin-right: 0;
  margin-top: 3px;
}
.my_checkbox .form-check-input:focus {
  border-color: var(--font-color2);
  box-shadow: none;
}
.my_checkbox .form-check-input:checked {
  background-color: var(--main-color);
  border-color: var(--main-color);
}
.my_checkbox .form-check-input:checked:focus {
  border-color: var(--main-color);
}
.my_checkbox .form-check-label {
  padding-left: 8px;
}
/*radio*/
.my_radio {
  display: flex;
}
.my_radio .form-check-input {
  height: 18px;
  width: 18px;
  border-color: var(--font-color2);
  margin-right: 0;
  margin-top: 3px;
}
.my_radio .form-check-input:focus {
  border-color: var(--font-color2);
  box-shadow: none;
}
.my_radio .form-check-input:checked {
  background-color: var(--main-color);
  border-color: var(--main-color);
}
.my_radio .form-check-input:checked:focus {
  border-color: var(--main-color);
}
.my_radio .form-check-label {
  padding-left: 8px;
}
/*checkbox或radio多項目*/
.form_check_group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -16px;
}
.form_check_group .my_checkbox,
.form_check_group .my_radio {
  margin-bottom: 16px;
  margin-right: 40px;
}
/*數量加減*/
.product_count_btn {
  display: flex;
  border: solid 1px var(--border-color);
  border-radius: 4px;
  width: fit-content;
  overflow: hidden;
}
.count_dash .btn,
.count_plus .btn {
  padding: 0;
  width: 36px;
  height: 36px;
  font-size: 14px;
  border-radius: 0;
}
.count_dash .btn:hover,
.count_plus .btn:hover {
  background-color: var(--bg-color);
}
.count_dash .btn:focus,
.count_plus .btn:focus {
  box-shadow: none;
}
.count_number {
  width: 80px;
  height: 36px;
  line-height: 36px;
  overflow: hidden;
  text-align: center;
  border: none;
  border-left: solid 1px var(--border-color);
  border-right: solid 1px var(--border-color);
}
/*日曆*/
.ui-datepicker {
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  border: solid 1px var(--border-color);
  border-radius: 4px;
  background-color: #fff;
  font-size: 14px;
  display: none;
}
.ui-datepicker-header {
  position: relative;
}
.ui-datepicker-prev {
  position: absolute;
  left: 8px;
  top: 10px;
  font-size: 16px;
  cursor: pointer;
}
.ui-datepicker-next {
  position: absolute;
  right: 8px;
  top: 10px;
  font-size: 16px;
  cursor: pointer;
}
.ui-datepicker-title {
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: solid 1px var(--border-color);
}
.ui-datepicker-year {
  margin-right: 4px;
  border-radius: 4px;
  background-color: #fff;
  border: solid 1px var(--border-color);
}
.ui-datepicker-month {
  margin-left: 8px;
}
.ui-datepicker-calendar th {
  padding: 8px 8px 4px 8px;
}
.ui-datepicker-calendar td a {
  display: block;
  padding: 4px 8px;
  text-align: center;
}
/*表單*/
.my_form {
  max-width: 550px;
  margin-top: -24px;
}
.my_form_row {
  padding-top: 24px;
}
.my_form_row .form-label {
  margin-bottom: 8px;
}
.my_form_row .form-label .red {
  color: var(--red-color);
  margin-left: 8px;
  position: relative;
  top: 2px;
}
.my_form_btn {
  padding-top: 24px;
  text-align: right;
}
.my_form_btn .btn {
  margin-left: auto;
}
.my_form_btn .two_btn {
  justify-content: flex-end;
}
.my_form .txt_btn {
  color: var(--main-color);
  border-bottom: solid 1px var(--main-color);
}
.my_city_select {
  margin-bottom: -8px;
  margin-left: -8px;
  margin-right: -8px;
}
.my_city_select > div {
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
}
.my_city_select > div .my_input,
.my_city_select > div .my_select {
  width: 100%;
  max-width: 100%;
}
.error_msg {
  margin-top: 16px;
  color: var(--red-color);
}
/*文章列表*/
.article_card_list {
  margin-bottom: -32px;
}
.article_card_item {
  padding-bottom: 32px;
}
/*文章列表頁數*/
.page_box {
  margin-top: 40px;
}
.page_box .pagination {
  justify-content: center;
  flex-wrap: wrap;
  margin-left: -4px;
  margin-right: -4px;
  margin-bottom: -8px;
}
.page_box .page-item {
  padding-left: 4px;
  padding-right: 4px;
  padding-bottom: 8px;
}
.page_box .page-link {
  border: none;
  color: var(--main-color);
  margin: 0 !important;
  padding: 0 12px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  box-shadow: none;
}
.page_box .page-link:hover,
.page_box .page-link:focus {
  border: none;
  background-color: var(--bg-color);
}
.page_box .page-item.active .page-link {
  color: #fff;
  background-color: var(--main-color);
  border: none;
}
.page_box .page-item.ellipsis .page-link {
  letter-spacing: 1px;
  border: none;
  padding-bottom: 4px;
  color: var(--font-color3);
}
.page_box .page-item.ellipsis .page-link:hover {
  background-color: #fff;
}
/*商品卡片*/
.product_list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
  margin-bottom: -48px;
}
.product_item {
  width: 25%;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 48px;
}
.product_card_img {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  border-radius: 8px;
  background-color: var(--bg-color);
  overflow: hidden;
  z-index: 2;
}
.product_card_img img {
  position: absolute;
  display: block;
  object-fit: contain;
  object-position: center center;
  height: 100%;
  width: 100%;
  max-width: 100%;
  transition: all 0.2s;
}
.product_card_body {
  padding-top: 16px;
}
.product_card_title {
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-all;
  font-weight: 600;
  color: var(--font-color);
  font-size: 18px;
}
.product_card_brife {
  color: var(--font-color2);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-all;
  font-size: 14px;
  line-height: 1.7;
}
.product_card:hover .product_card_img {
  position: relative;
}
.product_card .product_card_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 50%);
  background-image: url(../img/icon/search.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 48px;
  opacity: 0;
  transition: all 0.2s;
  z-index: 2;
}
.product_card:hover .product_card_img::before {
  opacity: 1;
}
/*消息卡片*/
.news_list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -48px;
  margin-left: -24px;
  margin-right: -24px;
}
.news_item {
  width: 25%;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 48px;
}
.news_card_img .bg {
  padding-bottom: 61%;
}
.news_card_body {
  padding-top: 16px;
}
.news_card_title {
  font-size: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-all;
}
.news_card:hover .news_card_title {
  text-decoration: underline;
}
.news_card_date {
  margin-top: 4px;
  font-size: 14px;
  color: var(--font-color3);
}
/*文章卡片*/
.article_card {
  display: block;
  box-shadow: 1px 1px 4px rgb(0 0 0 / 10%);
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.2s;
  padding-bottom: 16px;
}
.article_card:hover {
  box-shadow: 2px 2px 10px rgb(0 0 0 / 15%);
}
.article_card_img {
  width: 100%;
}
.article_card_img .bg {
  padding-bottom: 64%;
}
.article_card_body {
  padding: 12px 16px 0 16px;
}
.article_card_title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-all;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
}
.article_card_body p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  word-break: break-all;
  color: var(--font-color2);
}
.article_card_info {
  padding-left: 16px;
  padding-right: 16px;
}
.article_card_info .article_info {
  margin-top: 12px;
}
.article_card .article_info {
  text-align: center;
}
.article_info {
  color: var(--font-color2);
  font-size: 14px;
}
.article_info span i {
  margin-right: 4px;
}
.article_info span + span::before {
  content: "．";
}
.article_card_info .card_author_info {
  margin-top: 12px;
}
.article_card_keep {
  font-size: 14px;
}
.article_card_keep .count {
  margin-left: 4px;
}
.article_card_keep span + span {
  margin-left: 4px;
}
.article_card_info .article_card_keep {
  margin-top: 12px;
}
.card_author_info {
  display: flex;
  align-items: center;
}
.card_author_info_photo .bg {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.card_author_info_name {
  padding-left: 8px;
  font-size: 14px;
  font-weight: 600;
}
a .card_author_info:hover {
  color: var(--main-color);
}
.article_info_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/*文章清單*/
.article_inventory {
  max-width: 700px;
  border-bottom: solid 1px var(--border-color);
  padding-bottom: 16px;
}
.article_inventory_content {
  display: flex;
  flex-wrap: wrap;
}
.article_inventory_img {
  width: 150px;
  padding-top: 4px;
}
.article_inventory_img .bg {
  padding-bottom: 61%;
  border-radius: 4px;
}
.article_inventory_body {
  flex: 1;
  padding-right: 12px;
}
.article_inventory_title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-all;
  margin-bottom: 8px;
  font-weight: 600;
}
.article_inventory_body p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  word-break: break-all;
  color: var(--font-color2);
}
.article_inventory .article_card_info {
  padding: 0;
}
/*關鍵字*/
.tag_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -12px;
  margin-right: -12px;
  margin-bottom: -8px;
}
.tag_list span {
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 8px;
}
.tag_list span {
  padding-left: 12px;
  padding-right: 12px;
}
.tag_list span.txt {
  padding-right: 0;
}
.tag_link {
  background-color: var(--main-color);
  color: #fff;
  line-height: 24px;
  padding: 0 16px;
  border-radius: 24px;
  display: flex;
}
.tag_link:hover {
  background-color: var(--main-color2);
  color: #fff;
}
.tag_link_line {
  color: var(--main-color-dark);
  border-bottom: solid 1px var(--main-color-dark);
}
.tag_link_line:hover {
  color: var(--main-color);
  border-bottom: solid 1px var(--main-color-dark);
}
/*編輯器內容-tiptap*/
.from_tiptap {
  width: 100%;
  max-width: 800px;
}
.from_tiptap p {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.9px;
  text-align: justify;
}
.from_tiptap h2 {
  font-weight: 600;
  margin-bottom: 8px;
}
.from_tiptap h3 {
  font-weight: 600;
  margin-bottom: 8px;
}
.from_tiptap h4 {
  font-weight: 600;
  margin-bottom: 8px;
}
.from_tiptap img {
  max-width: 100%;
  margin: 4px 0;
}
.from_tiptap ul,
ol {
  margin-bottom: 0;
  padding-left: 2em;
}
.from_tiptap li {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.9px;
  text-align: justify;
}
.from_tiptap li + li {
  margin-top: 8px;
}
.from_tiptap a {
  color: var(--main-color);
  border-bottom: solid 1px var(--main-color);
  word-break: break-all;
}
.from_tiptap blockquote {
  border-left: solid 4px var(--main-color);
  padding: 8px 16px;
  background-color: var(--bg-color);
  color: var(--font-color2);
}
.from_tiptap .tableWrapper table {
  width: 100%;
}
.from_tiptap .tableWrapper th {
  background-color: var(--bg-color);
  border: solid 1px var(--border-color);
  font-weight: 600;
  padding: 12px 16px;
  text-align: center;
}
.from_tiptap .tableWrapper td {
  padding: 12px 16px;
  text-align: center;
  border: solid 1px var(--border-color);
}
/*table表格*/
.my_table_box {
  overflow-x: auto;
}
.my_table {
  width: 100%;
  min-width: 700px;
  text-align: center;
}
.my_table thead th {
  background-color: var(--main-color);
  color: #fff;
  font-weight: 600;
  padding: 12px 16px;
  text-align: center;
  border: solid 1px var(--main-color2);
}
.my_table td {
  padding: 12px 16px;
  text-align: center;
  border: solid 1px var(--main-color2);
}
.my_table tbody td:first-child {
  color: var(--main-color);
  background-color: var(--bg-color);
}
/*輪播*/
.swiper-button-next,
.swiper-button-prev {
  width: 48px;
  height: 48px;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 24px;
  color: var(--font-color);
}
/*商品圖片輪播*/
.product_pic_swiper_box {
  position: relative;
}
.product_pic_swiper_2 {
  width: 100%;
  padding-left: 100px;
}
.product_pic_swiper_2 .img {
  position: relative;
  height: 0px;
  padding-bottom: 100%;
  background-color: var(--bg-color);
  z-index: 2;
}
.product_pic_swiper_2 .img img {
  position: absolute;
  display: block;
  object-fit: contain;
  object-position: center center;
  height: 100%;
  width: 100%;
  max-width: 100%;
}
.product_pic_swiper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 96px;
  padding-right: 20px;
  box-sizing: border-box;
  background-color: #fff;
}
.product_pic_swiper .swiper-slide {
  width: 100%;
}
.product_pic_swiper .swiper-slide .img {
  position: relative;
  height: 0px;
  padding-bottom: 100%;
  background-color: var(--bg-color);
  z-index: 2;
}
.product_pic_swiper .swiper-slide .img img {
  position: absolute;
  display: block;
  object-fit: contain;
  object-position: center center;
  height: 100%;
  width: 100%;
  max-width: 100%;
}
.product_pic_swiper .swiper-slide .bg img {
  display: none;
}
.product_pic_swiper .swiper-slide .bg {
  padding-bottom: 100%;
}
.product_pic_swiper_2 .swiper-pagination {
  right: 12px;
  left: auto;
  background-color: rgb(38, 37, 35, 0.8);
  color: #fff;
  padding: 0 12px 2px 14px;
  height: 24px;
  display: flex;
  align-items: center;
  border-radius: 24px;
  width: fit-content;
  font-size: 14px;
}
.product_pic_swiper_box .swiper_button_box .swiper-button-next,
.product_pic_swiper_box .swiper_button_box .swiper-button-prev {
  background-color: rgb(255 255 255 / 80%);
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
}
.product_pic_swiper_box .swiper_button_box .swiper-button-next::after,
.product_pic_swiper_box .swiper_button_box .swiper-button-prev::after {
  font-size: 12px;
  color: var(--main-color);
}
.product_pic_swiper_box .swiper-button-next,
.product_pic_swiper_box .swiper-button-prev {
  top: auto;
  bottom: 8px;
}
.product_pic_swiper_box .swiper-button-next {
  right: auto;
  left: 138px;
}
.product_pic_swiper_box .swiper-button-prev {
  left: 108px;
}
/*加入購物車*/
.bg-cover {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 25%);
  z-index: 999999;
}
.bg-cover-table {
  width: 90%;
  max-width: 350px;
  background-color: rgb(0, 162, 154, 0.8);
  color: #fff;
  padding: 32px 24px 48px 24px;
  text-align: center;
  border-radius: 4px;
}
.bg-cover-content .icon {
  font-size: 64px;
  margin-bottom: 8px;
}
.bg-cover-content p {
  font-size: 18px;
  font-weight: 600;
}
/*首頁banner*/
.index_banner_box {
  position: relative;
}
.banner_Swiper_item {
  position: relative;
  height: 95vh;
  width: 100%;
  overflow: hidden;
}
.banner_Swiper_item .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: zoom-n 20s linear infinite;
}
.banner_item_img {
  display: none;
}
.swiper-slide-active .banner_Swiper_item .bg {
  animation: zoom 20s linear infinite;
  /* transform: scale(1.5) 3s; */
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
@keyframes zoom-n {
  0% {
    transform: scale(1.5);
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
.banner_Swiper_item {
  background-image: url(../img/indexvideo-bg2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner_Swiper_item video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 1;
}
.banner_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/indexvideo-bg2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
}
.banner_bg {
  animation: banner_bg_a 0.4s alternate forwards;
}
@keyframes banner_bg_a {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.banner_Swiper_txt {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 68px;
  font-weight: 600;
  padding-left: 16px;
  padding-right: 16px;
  /* color: var(--font-color); */
  color: #fff;
  text-shadow: 2px 2px 10px rgb(0 0 0 / 25%);
  z-index: 3;
}
.brand_banner_scroll {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  z-index: 3;
  cursor: pointer;
}
.scroll_txt {
  /* text-transform: uppercase; */
  /* color: var(--second-color); */
  font-size: 14px;
  letter-spacing: 0.05rem;
  font-weight: 500;
}
.brand_banner_scroll {
  padding-bottom: 8px;
}
.brand_banner_scroll_a {
  font-size: 24px;
  text-align: center;
  /* color: var(--second-color); */
}
.brand_banner_scroll_a span {
  display: block;
  transform: translateY(8px);
  animation: scrollDown 2s linear infinite;
}
@keyframes scrollDown {
  0% {
    transform: translateY(8px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(8px);
  }
}
/*首頁品牌理念*/
.index_brand_box {
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
}
.index_brand_row {
  display: flex;
}
.index_brand_title {
  color: var(--main-color);
  margin-bottom: 32px;
  font-weight: 600;
  font-size: 46px;
  line-height: 1.2;
}
.index_brand_content {
  flex: 1;
  padding-top: 72px;
  padding-bottom: 72px;
  padding-left: 16px;
  padding-right: 16px;
}
.index_brand_txt {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}
.index_brand_brief {
  line-height: 1.7;
}
.index_brand_img_box {
  position: relative;
  width: 700px;
  overflow: hidden;
}
.index_brand_img {
  width: 100%;
  height: 130%;
  transform: translateY(-15%);
}
.index_brand_imgbg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
/* .index_brand_img{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: all .3s;
} */
.index_feature_img {
  position: absolute;
  bottom: -172px;
  left: 64px;
  z-index: 2;
  width: 300px;
}
.index_feature_img img {
  width: 100%;
}
.index_feature_img2 {
  position: absolute;
  bottom: -64px;
  left: 270px;
  z-index: 1;
  width: 150px;
}
.index_feature_img2 img {
  width: 100%;
}
/*首頁品牌特色*/
.index_feature_box {
  padding-top: 80px;
  padding-bottom: 80px;
}
.feature_list {
  position: relative;
  display: flex;
  z-index: 2;
}
.feature_item {
  flex: 1;
}
.feature_card_body {
  text-align: center;
}
.feature_card_title {
  font-size: 20px;
}
.feature_card_img {
  width: 160px;
  margin: 0 auto 24px auto;
}
.feature_card_img img {
  width: 100%;
}
/*首頁Logo意象說明*/
.index_logo_box {
  background-color: var(--bg-color);
  margin-top: 80px;
}
.index_logo_row {
  display: flex;
  padding-top: 72px;
  padding-bottom: 72px;
}
.index_logo_bg {
  width: 350px;
  background-color: #fff;
  background-image: url(../img/use.jpg);
  background-position: center;
}
.index_logo_img {
  width: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index_logo_content {
  flex: 1;
}
.index_logo_content .block_title {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
/*聯絡我們*/
.contact_tips {
  margin-bottom: 64px;
}
.contact_row {
  display: flex;
}
.contact_left {
  flex: 1;
}
.contact_right {
  width: 550px;
}
.contact_info_item + .contact_info_item {
  margin-top: 12px;
}
.contact_bysocial {
  margin-top: 40px;
}
.social_list {
  display: flex;
}
.social_item + .social_item {
  margin-left: 36px;
}
.social_item i {
  font-size: 24px;
}
.contact_form_box .my_textarea {
  min-height: 100px;
}
.contact_form_title {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 600;
}
/*產品內容頁*/
.product_header {
  position: relative;
  background-image: linear-gradient(to top, #cfd9df 0%, #f7faf7 90%);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
}
.product_header_row {
  position: relative;
  display: flex;
  flex-flow: column wrap;
  flex-direction: column;
  height: calc(100vh - 80px);
  padding-top: 64px;
  padding-bottom: 64px;
}
.product_header_row::before {
  content: attr(data-name);
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 100px;
  transform: translateY(-50%);
  color: var(--main-color);
  font-weight: 600;
  opacity: 0.05;
}
.product_img_box {
  height: 100%;
  width: calc(100% - ((100% - 450px) / 2));
  display: flex;
  align-items: center;
}
.product_title {
  width: calc((100% - 450px) / 2);
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 40px;
  padding-top: 128px;
  color: var(--main-color);
  height: 45%;
  display: flex;
  align-items: flex-end;
}
.product_brief {
  flex: 1;
  font-size: 18px;
  line-height: 1.8;
  color: var(--main-color);
  white-space: pre-line;
  width: calc((100% - 450px) / 2);
  padding-left: 16px;
  padding-right: 64px;
}
.product_img {
  width: 450px;
  height: 450px;
  position: relative;
}
.product_img img {
  position: absolute;
  display: block;
  object-fit: contain;
  object-position: center center;
  height: 100%;
  width: 100%;
  max-width: 100%;
}
.product_present_box {
  margin-top: 72px;
}
.product_present_title {
  font-weight: 600;
  text-align: center;
  color: var(--main-color);
  margin-bottom: 48px;
  letter-spacing: 0.05em;
}
.product_present_box .from_tiptap {
  max-width: none;
}
.product_present_block {
  border-top: solid 1px var(--main-color);
  padding-top: 48px;
}
.product_present_block + .product_present_block {
  margin-top: 72px;
}
.product_present_block .from_tiptap img {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.product_present_row {
  display: flex;
}
.product_present_img {
  position: relative;
  width: 50%;
}
.product_present_img .video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.product_present_img .video iframe {
  width: 100%;
  height: 100%;
}
.product_present_body {
  flex: 1;
  padding: 72px;
}
.product_present_body > div {
  max-width: 500px;
}
.present_block_title {
  font-size: 32px;
  font-weight: 600;
  color: var(--main-color);
  margin-bottom: 24px;
  line-height: 1.2;
}
.present_block_txt {
  font-size: 18px;
  line-height: 1.8;
  color: var(--font-color);
  white-space: pre-line;
}
.product_present_block:nth-child(even) .product_present_row {
  flex-direction: row-reverse;
}
.product_present_img .bg {
  padding-bottom: 61%;
  border-radius: 16px;
  box-shadow: 28px -28px 0 var(--main-color);
}
.product_present_block:nth-child(odd) .product_present_body > div {
  margin-left: auto;
}
.product_content_row {
  display: flex;
}
.product_content_img {
  width: 50%;
  max-width: 650px;
}
.product_info_box {
  flex: 1;
  padding-left: 72px;
}
.product_info h1 {
  color: var(--main-color);
  font-weight: 600;
  margin-bottom: 24px;
}
.product_description {
  color: var(--font-color2);
}
.product_specification {
  margin-top: 32px;
  border-top: solid 1px var(--border-color);
  padding-top: 24px;
}
.product_specificatiton_title {
  color: var(--font-color2);
}
.product_specificatiton_list {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
}
.specificatiton_item + .specificatiton_item {
  margin-left: 12px;
}
.specificatiton_item_btn {
  border: solid 1px var(--main-color2);
  border-radius: 8px;
  padding: 8px 24px;
  color: var(--main-color);
  font-weight: 600;
}
.product_info_box .article_share {
  margin-top: 32px;
}
/*首頁-介紹與服務*/
.index_services_row {
  display: flex;
  align-items: center;
}
.index_services_body {
  padding-top: 72px;
  padding-bottom: 72px;
  padding-left: 16px;
  padding-right: 16px;
  flex: 1 1 0%;
}
.index_services_txt {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  padding-bottom: 72px;
}
.index_services_img {
  width: 700px;
  text-align: center;
}
.index_services_img img {
  width: 100%;
  max-width: 660px;
}
.index_services_content {
  line-height: 1.8;
  font-size: 18px;
  text-align: justify;
}
/*責任與信賴*/
.index_duty_box {
  background: linear-gradient(
    to bottom,
    #fff 0%,
    #fff 72px,
    var(--bg-color) 73px,
    var(--bg-color) 100%
  );
}
.index_duty_row {
  display: flex;
  align-items: center;
}
.index_duty_img {
  width: 700px;
  text-align: center;
}
.index_duty_img img {
  width: 100%;
  max-width: 600px;
}
.index_duty_body {
  margin-top: 48px;
  padding-top: 72px;
  padding-bottom: 72px;
  padding-left: 16px;
  padding-right: 16px;
  flex: 1 1 0%;
}
.index_duty_txt {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}
.index_duty_content {
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
}
.index_duty_list {
  margin: 24px -12px;
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}
.index_duty_list .icon {
  color: var(--main-color);
  margin-right: 8px;
  font-size: 24px;
}
.index_duty_list .icon i {
  display: flex;
}
.index_duty_list li {
  display: flex;
  align-items: center;
  font-weight: 600;
  padding: 0 16px;
}
/*探討與分享*/
.index_probe_box {
  background-color: var(--main-color);
  background-image: url(../img/index-probe-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.index_probe_row {
  display: flex;
  align-items: center;
}
.index_probe_body {
  padding-top: 72px;
  padding-bottom: 72px;
  padding-left: 16px;
  padding-right: 16px;
  width: calc(100% - 700px);
}
.index_probe_txt {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.index_probe_txt .block_title h2 {
  color: var(--second-color);
}
.index_probe_content {
  font-size: 18px;
  line-height: 1.8;
  color: #fff;
  text-align: justify;
}
/*FAQ*/
.faq_item + .faq_item {
  margin-top: 16px;
}
.faq_item {
  background-color: var(--bg-color);
  border: solid 1px var(--main-color2);
  border-radius: 8px;
}
.faq_item_card_title {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  padding: 32px 40px;
  cursor: pointer;
}
.faq_item_card_title .txt {
  flex: 1;
  text-align: justify;
}
.faq_item_card_title .icon {
  width: 24px;
  text-align: right;
}
.faq_item_card_body {
  padding: 0 40px 32px 40px;
  color: var(--font-color2);
}
/*關於我們*/
.about_section {
  position: relative;
  scroll-snap-align: start;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about_section:last-child {
  /* min-height: calc(100vh - 40px); */
  min-height: 16px;
  height: auto;
}
.about_section .about_section_content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  pointer-events: none;
  width: 100%;
  max-width: 1472px;
  padding-left: 16px;
  padding-right: 16px;
  z-index: 2;
}
.about_section.active .about_section_content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.about_box {
  position: relative;
  background-image: linear-gradient(
    to bottom,
    #aec0ca 0%,
    #bfcfd8 3%,
    #f7faf7 10%,
    var(--bg-color) 75%
  );
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
}
.about_nav {
  position: absolute;
  height: 100vh;
  bottom: 0;
  right: 16px;
  width: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
html.snap-enabled .about_nav,
body.snap-enabled .about_nav {
  position: fixed;
  height: fit-content;
  bottom: 50%;
  transform: translateY(50%);
  right: 16px;
}
.about_nav .nav-button {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  background-color: #fff;
  border: solid 1px var(--border-color);
  transition: all 0.2s;
}
.about_nav .nav-button + .nav-button {
  margin-top: 12px;
}
.about_nav .nav-button.active {
  width: 16px;
  height: 16px;
  border: solid 1px var(--main-color);
  background-color: rgb(0, 162, 154, 0.3);
}
.about_symbol_content {
  text-align: center;
}
.scroll_hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.scroll_hint .arrow {
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 20px solid var(--main-color);
  animation: scrollDown 1.5s infinite;
  margin-left: auto;
  margin-right: auto;
}
.about_section.section1 .about_section_content {
  position: relative;
  width: 100%;
}
.about_section.section1 .about_section1_bg {
  position: absolute;
  left: 100px;
  top: 180px;
  width: 500px;
  height: 500px;
  z-index: 1;
}
.about_section.section1 .about_section1_bg img {
  width: 100%;
}
.about_section1_img {
  width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.logo-about.png img {
  max-width: 100%;
}
.about_section1_btn {
  height: 0;
  overflow: hidden;
  margin-top: 12px;
  transition: all 0.5s;
}
.about_section1_btn .btn {
  margin: 0 auto;
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s;
  height: 60px;
  padding: 0 32px;
}
.about_section1_title {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-align: center;
  color: var(--main-color);
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
  margin-top: -24px;
}
.about_section1_img img {
  transform: scale(0);
  transition: all 0.5s;
}
.about_section1_content.active .about_section1_img img {
  transform: scale(1);
}
.about_section1_content.after-active .about_section1_btn {
  height: 72px;
}
.about_section1_content.after-active .about_section1_btn .btn {
  opacity: 2;
  transform: scale(1);
}
.about_section1_content.after-active .about_section1_title {
  height: 78px;
}
.about_section1_content.after-active .about_section1_img img {
  transform: scale(0.7);
}
.about_section.section2 {
  background-image: url(../img/about-section2-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.about_section2_content {
  overflow: hidden;
  width: 100%;
}
.about_section2_img {
  position: relative;
  width: 720px;
  height: 0;
  margin: 48px auto;
  overflow: hidden;
  transition: all 0.5s;
}
.about_section2_img .img1,
.about_section2_img .img2,
.about_section2_img .img3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about_section2_img img {
  width: 100%;
  opacity: 0;
}
.about_section.section2.active .about_section2_img {
  animation: section2_img_fadein 0.5s ease-out 0.5s 1 forwards;
}
@keyframes section2_img_fadein {
  from {
    height: 0;
  }
  to {
    height: 480px;
  }
}
.about_section.section2.active .about_section2_img .img1 img {
  animation: section2_img1_fadein 0.2s ease-out 1s 1 forwards;
}
@keyframes section2_img1_fadein {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.about_section.section2.active .about_section2_img .img2 img {
  animation: section2_img2_fadein 0.5s ease-out 1.3s 1 forwards;
}
@keyframes section2_img2_fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.about_section.section2.active .about_section2_img .img3 img {
  animation: section2_img3_fadein 0.5s ease-out 1.9s 1 forwards;
}
@keyframes section2_img3_fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.about_section2_title {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-align: center;
  color: var(--main-color);
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.5s;
}
.about_section2_title2 {
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
  font-size: 32px;
  text-align: center;
  margin-bottom: 8px;
  opacity: 0;
  transition: all 0.5s;
}
.about_section.section2.active .about_section2_title {
  opacity: 1;
  transform: scale(1);
}
.about_section.section2.active .about_section2_title2 {
  height: 46px;
  animation: section2_title2_fadein 0.5s ease-out 1s 1 forwards;
}
@keyframes section2_title2_fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.about_section.section2.active .scroll_hint {
  animation: section2_scroll 0.1s ease-out 1.5s 1 forwards;
}
@keyframes section2_scroll {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: 48px;
    opacity: 1;
  }
}
.about_section.section3 {
  background-image: url(../img/about-section3-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.about_section3_content {
  overflow: hidden;
}
.about_section3_img {
  position: relative;
  width: 720px;
  height: 0;
  margin: 48px auto;
  overflow: hidden;
  transition: all 0.5s;
}
.about_section3_img .img1,
.about_section3_img .img2,
.about_section3_img .img3,
.about_section3_img .img4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about_section3_img img {
  width: 100%;
  opacity: 0;
}
.about_section.section3.active .about_section3_img {
  animation: section3_img_fadein 0.5s ease-out 0.5s 1 forwards;
}
@keyframes section3_img_fadein {
  from {
    height: 0;
  }
  to {
    height: 480px;
  }
}
.about_section3_title {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-align: center;
  color: var(--main-color);
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.5s;
}
.about_section3_title2 {
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
  font-size: 32px;
  text-align: center;
  margin-bottom: 8px;
  opacity: 0;
  transition: all 0.5s;
}
.about_section.section3.active .about_section3_title {
  opacity: 1;
  transform: scale(1);
}
.about_section.section3.active .about_section3_title2 {
  height: 40px;
  animation: section3_title2_fadein 0.5s ease-out 1s 1 forwards;
}
@keyframes section3_title2_fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.about_section.section3.active .about_section3_img .img1 img {
  animation: section3_img1_fadein 0.2s ease-out 1s 1 forwards;
}
@keyframes section3_img1_fadein {
  from {
    transform: scale(2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.about_section.section3.active .about_section3_img .img2 img {
  animation: section3_img2_fadein 0.6s ease-out 1.3s 1 forwards;
}
@keyframes section3_img2_fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.about_section.section3.active .about_section3_img .img3 {
  z-index: -1;
}
.about_section.section3.active .about_section3_img .img3 img {
  animation: section3_img3_fadein 0.6s ease-out 1.8s 1 forwards;
}
@keyframes section3_img3_fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.about_section.section3.active .about_section3_img .img4 img {
  animation: section3_img4_fadein 0.8s ease-out 2.4s 1 forwards;
}
@keyframes section3_img4_fadein {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
.about_section.section3.active .scroll_hint {
  animation: section3_scroll 0.1s ease-out 3.2s 1 forwards;
}
@keyframes section3_scroll {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: 48px;
    opacity: 1;
  }
}
.about_section.section4 {
  position: relative;
  background-color: #fff;
  background-image: url(../img/about-section4-bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}
.about_section4_content {
  display: flex;
  align-items: center;
}
.about_section4_body {
  width: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.4s;
}
.about_section4_title,
.about_section4_txt,
.about_section4_btn {
  opacity: 0;
}
.about_section4_img {
  width: 500px;
  opacity: 0;
  transition: all 0.4s;
}
.about_section4_img img {
  width: 100%;
}
.about_section.section4.active .about_section4_img {
  opacity: 1;
  animation: section4_img_fadein 0.8s ease-out 0.5s 1 forwards;
}
@keyframes section4_img_fadein {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.7);
  }
}
.about_section.section4.active .about_section4_body {
  animation: section4_body_open 0.5s ease-out 0.8s 1 forwards;
}
@keyframes section4_body_open {
  from {
    width: 0;
    height: 0;
  }
  to {
    width: 650px;
    height: auto;
  }
}
.about_section4_title {
  color: var(--main-color);
  font-size: 46px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.1rem;
  margin-bottom: 40px;
}
.about_section4_txt {
  line-height: 1.8;
  font-size: 18px;
  text-align: justify;
}
.about_section4_btn {
  margin-top: 40px;
}
.about_section4_btn .btn {
  width: fit-content;
}
.about_section.section4.active .about_section4_title,
.about_section.section4.active .about_section4_txt,
.about_section.section4.active .about_section4_btn {
  animation: section4_txt_open 0.5s ease-out 1.3s 1 forwards;
}
@keyframes section4_txt_open {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.about_symbol_box {
  position: relative;
  background-image: url(../img/about-last-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  min-height: 600px;
}
.about_symbol_box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgb(0 0 0 / 15%);
}
.about_symbol_content {
  position: relative;
  padding-top: 48px;
  z-index: 2;
}
.about_symbol_content .title {
  font-size: 46px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.1rem;
  color: #fff;
  text-shadow: 2px 2px 10px rgb(0 0 0 / 25%);
  margin-bottom: 16px;
}
.about_symbol_content .txt {
  font-size: 68px;
  font-weight: 600;
  letter-spacing: 0.1rem;
  color: #fff;
  text-shadow: 2px 2px 10px rgb(0 0 0 / 25%);
}
@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  70% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}
/*主要成份*/
.ingredient_foreword_content {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  background: var(--bg-color);
  padding: 64px 72px 72px 72px;
  text-align: center;
}
.ingredient_foreword_content .txt {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  flex: 1;
}
/*主要成份-機能性成份*/
/* .functional_box{
    padding-bottom: 72px;
} */
.functional_row {
  display: flex;
}
.functional_body {
  padding-bottom: 48px;
  padding-left: 16px;
  padding-right: 16px;
  flex: 1 1 0%;
}
.functional_txt {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}
.functional_content {
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
}
.functional_img_box {
  width: 700px;
  position: relative;
}
.functional_img {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.functional_img .bg {
  background-image: url(../img/functional-img.jpg);
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  box-shadow: 2px 2px 20px rgb(0 0 0 / 10%);
}
/* .vivomega_img1{
    width: 180px;
    position: absolute;
    top: 16px;
    right: 45%;
    z-index: 2;
}
.vivomega_img1 img{
    width: 100%;
    -moz-transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
}
.vivomega_img2{
    width: 500px;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
}
.vivomega_img2 img{
    width: 100%;
    position: relative;
    top: -72px;
} */
/*主要成份-機能性補充劑*/
.liposome_box {
  margin-top: 72px;
  background-color: var(--bg-color);
  background-image: linear-gradient(to top, #cfd9df 0%, #f7faf7 90%);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
}
.liposome_row {
  display: flex;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}
.liposome_img {
  width: 700px;
  text-align: center;
}
.liposome_img img {
  width: 100%;
  max-width: 500px;
}
.liposome_body {
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
}
.liposome_txt {
  margin: 0 auto;
}
.liposome_content {
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
}
.liposome_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 72px;
  padding-right: 72px;
  padding-top: 72px;
}
.liposome_item {
  width: 33.333%;
}
.liposome_card {
  padding: 0 72px;
}
.liposome_card_title {
  font-size: 32px;
  font-weight: 600;
  color: var(--main-color);
  margin-bottom: 20px;
  line-height: 1.2;
}
.liposome_card_img .bg {
  padding-bottom: 72%;
}
.liposome_card_txt {
  padding-top: 24px;
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
}
/*訊息公告*/
.cjlife_box {
  background-color: #ff5757;
  background-image: url(../img/links-youtube.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-left: 72px;
  padding-right: 72px;
}
.cjlife_content {
  color: #fff;
  width: 50%;
  margin-left: auto;
}
.cjlife_content .block_title h2 {
  color: #fff;
}
.cjlife_txt {
  margin-top: 12px;
  font-size: 18px;
}
.cjlife_content .maincolor_border_btn {
  border-color: #fd7d4a;
  color: #fd7d4a;
}
.link_list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
  margin-bottom: -32px;
}
.link_item {
  width: 33.333%;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 32px;
}
.link_link {
  display: flex;
  align-items: center;
  padding: 32px 40px;
  background-color: var(--bg-color);
  border: solid 1px var(--main-color2);
  border-radius: 8px;
}
.link_link .icon {
  margin-right: 16px;
  font-size: 24px;
}
/*多項認證*/
.noadded_img {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  margin-left: -16px;
  margin-right: -16px;
}
.noadded_img .feature_item {
  padding-left: 16px;
  padding-right: 16px;
  max-width: 280px;
}
/*首頁-最新消息*/
.index_news_box {
  position: relative;
}
/*首頁-聯絡我們*/
.index_contact {
  padding: 72px;
  background-color: var(--main-color);
  background-image: url(../img/index-contact-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.index_contact .block_title h2 {
  color: var(--second-color);
}
.index_contact_content {
  width: 50%;
  margin-left: auto;
}
.index_contact_txt {
  width: 100%;
  max-width: 650px;
  font-size: 18px;
  line-height: 1.8;
  text-shadow: 1px 1px 10px rgb(0 0 0 / 20%);
  color: #fff;
}
/*消息內容頁*/
.news_content_row {
  display: flex;
  justify-content: space-between;
}
.news_content_main {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  max-width: 960px;
}
.article_header {
  width: 100%;
  margin-bottom: 48px;
}
.article_title {
  margin-bottom: 12px;
  letter-spacing: 0.1rem;
  font-weight: 600;
}
.article_info {
  color: var(--font-color2);
}
.article_page_img {
  margin-top: 24px;
}
.article_page_img .bg {
  padding-bottom: 61%;
}
.news_content_main .share_list {
  flex-direction: column;
  align-items: flex-start;
}
.news_content_main .share_item + .share_item {
  margin-left: 0;
  margin-top: 16px;
}
.article_share {
  width: 48px;
}
.article_page_content {
  flex: 1;
  padding-left: 16px;
}
.article_page_content .from_tiptap {
  margin-left: auto;
}
.news_content_side {
  width: 300px;
  margin-left: 72px;
}
.side_block + .side_block {
  margin-top: 72px;
}
.side_block_title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.side_block_title::before {
  content: "";
  width: 8px;
  height: 24px;
  background-color: var(--main-color);
  margin-right: 8px;
}
.side_block .links_list {
  margin-bottom: -16px;
}
.side_block .link_item {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 16px;
}
.side_block .link_link {
  padding: 12px 20px;
  font-size: 16px;
}
/*商品列表頁*/
.page_title_bg.product {
  height: 250px;
  padding: 40px 48px;
}
/*404頁面*/
.error_page {
  background-color: #313544;
  padding-top: 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.error_row {
  display: flex;
  align-items: center;
}
.error_img {
  width: 50%;
}
.error_img img {
  width: 100%;
  max-width: 650px;
}
.error_body {
  flex: 1;
  color: #fff;
}
.error_title_2 {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 1.3;
}
.error_title {
  font-size: 160px;
  font-weight: 700;
  line-height: 1.3;
}
.error_txt {
  line-height: 1.8;
  font-size: 18px;
}
.error_btn {
  margin-top: 40px;
}
