@charset "UTF-8";
/***!  /templates/bevel/css/landing-page/security-global.css  !***/


:root {
  --main-nav-height: 60px;
  --sub-nav-height: 60px;
}
@media only screen and (max-width: 551px) {
  :root {
    --sub-nav-height: 50px;
  }
}

main {
  overflow-x: hidden;
  margin-top: 3.75rem;
}

.visuallyhidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

:where(.container) {
  width: min(100%, var(--max-width, 1440px));
  margin-inline: auto;
}
@media only screen and (max-width: 1440px) {
  :where(.container) {
    --max-width: 1150px;
  }
}
:where(.container).--small {
  --max-width: 1150px;
}

:where([id]) {
  scroll-margin-top: 2ch;
}

:where([class^=btn]) {
  background: var(--bg-color);
  color: var(--text-color);
  border: none;
  text-shadow: none;
}

.btn--primary, .rsform-submit-button {
  --bg-color: linear-gradient(290.05deg, #092851 -25.65%, #223c8f 92.77%);
  --text-color: #fff;
  display: inline-block;
  font-weight: 600;
  line-height: 1.375;
  transition: all 0.3s ease;
  border: none;
}
.btn--primary:hover, .rsform-submit-button:hover {
  box-shadow: var(--bg-shadow, 0px 9px 20px rgba(130, 155, 221, 0.42));
}

:where(.--title-line) {
  display: flex;
  line-height: normal;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0 var(--title-line-gap, 16px);
  font-size: 28px;
  color: var(--title-line-text-color, #232644);
  width: min(100%, 1150px);
  margin-inline: auto;
}
:where(.--title-line)::before, :where(.--title-line)::after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background: rgba(var(--title-line-color, 9, 40, 81),var(--line-alpha,0.25));
}

.--title-gradient {
  background: var(--bg-color, linear-gradient(92.04deg, #6bb6fc 26.13%, #3a29a3 80.64%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html {
  scroll-behavior: smooth;
}

.sub-nav {
  position: fixed;
  inset: calc(var(--h-header-height) + var(--h-header-top-height)) 0 auto var(--w-search-width);
  height: var(--sub-nav-height);
  z-index: 99;
}
@media only screen and (max-width: 768px) {
  .sub-nav {
    transition: 0.36s cubic-bezier(0.32, 0.08, 0.24, 1), height 0.56s cubic-bezier(0.52, 0.16, 0.24, 1);
  }
  .sub-nav.rwd-open {
    height: 100%;
  }
}
.sub-nav__container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: var(--sub-nav-height);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
@media only screen and (max-width: 768px) {
  .sub-nav__container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .rwd-open .sub-nav__container {
    height: 100%;
  }
}
@media only screen and (max-width: 425px) {
  .sub-nav__container {
    height: 50px;
  }
}
.sub-nav__action {
  display: flex;
  gap: 50px;
}
@media only screen and (max-width: 768px) {
  .sub-nav__action {
    display: block;
    position: absolute;
    inset: var(--sub-nav-height) 0 0 0;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 2.8125rem 2.5rem 0.5rem;
    user-select: none;
    visibility: hidden;
    opacity: 0;
    overflow-y: auto;
    transition: 0.36s ease;
  }
}
@media only screen and (max-width: 768px) and (max-width: 425px) {
  .sub-nav__action {
    padding: 2.8125rem 1.25rem 0.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .opening .sub-nav__action {
    overflow: hidden;
  }
  .closing .sub-nav__action {
    overflow: hidden;
  }
  .rwd-open .sub-nav__action {
    visibility: visible;
    opacity: 1;
  }
}
.sub-nav__item {
  padding: 1.25rem 0;
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  font-family: "PingFang TC", "Open Sans", "微軟正黑體", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
}
@media only screen and (max-width: 768px) {
  .sub-nav__item {
    display: block;
  }
  .sub-nav__item:nth-child(even) {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
}
.sub-nav__burger {
  display: none;
  position: relative;
  margin-right: -8px;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .sub-nav__burger {
    display: inline-block;
    position: absolute;
    inset: calc(var(--sub-nav-height) / 2) 1.25rem auto auto;
    transform: translate(0, -50%);
  }
}
@media only screen and (max-width: 551px) {
  .sub-nav__burger {
    display: inline-block;
    position: absolute;
    transform: translate(0, -50%);
  }
}
@media only screen and (max-width: 425px) {
  .sub-nav__burger {
    display: inline-block;
    position: absolute;
    inset: 25px 1.25rem auto auto;
    transform: translate(0, -50%);
  }
}

.sub-burger__box__inner::after, .sub-burger__box__inner::before, .sub-burger__box__inner {
  display: block;
  width: 1.125rem;
  height: 0.125rem;
  background: #000;
}

.sub-burger {
  padding: 0;
  border: none;
  margin-left: 0.6875rem;
  background: transparent;
  cursor: pointer;
}
.sub-burger__box {
  position: relative;
  width: 2.25rem;
  height: 1.875rem;
}
.sub-burger__box__inner {
  position: absolute;
  inset: calc(0.9375rem - 1px) auto auto 0.5625rem;
  transform: rotate(0deg);
  transition: transform 0.2s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}
.sub-burger__box__inner::before {
  content: "";
  background: inherit;
  position: absolute;
  inset: -6px auto auto auto;
  transition: top 0.2s cubic-bezier(0.04, 0.04, 0.12, 0.96), opacity 0.2s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}
.sub-burger__box__inner::after {
  content: "";
  background: inherit;
  position: absolute;
  inset: auto auto -6px auto;
  transition: bottom 0.2s cubic-bezier(0.04, 0.04, 0.12, 0.96), transform 0.2s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
  transform: rotate(0deg);
}
.rwd-open .sub-burger__box__inner {
  transform: rotate(45deg);
}
.rwd-open .sub-burger__box__inner::before {
  inset: 0px auto auto auto;
  opacity: 0;
}
.rwd-open .sub-burger__box__inner::after {
  inset: auto auto 0px auto;
  transform: rotate(-90deg);
}

form .formContainer {
  margin: 32px 0 0 0;
  padding: 0 30px;
  border: none;
  container: form/inline-size;
}
form .formContainer > h1 {
  text-align: center;
  margin: 0 10px 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
form .formContainer h2 {
  display: none;
}

:where(.formResponsive) {
  width: 100%;
  height: 100%;
  background: #ffffff;
  box-shadow: 0px 14px 34px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: scroll;
}

.rsform-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 20px;
  gap: 10px;
  font-size: 12px;
}
.rsform-block:only-child {
  justify-content: center;
}
.rsform-block:has(textarea) {
  display: grid;
  gap: 4px;
}
.rsform-block-privacy > label, .rsform-block-agreement > label {
  display: none;
}
.rsform-block-header {
  text-align: center;
  gap: 0px;
  justify-content: center;
}
.rsform-block-header p {
  font-size: 16px;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  line-height: 1.4;
}
.rsform-block-howknow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.rsform-block-footer {
  display: none;
}
.rsform-block-submit {
  margin-top: 40px;
  gap: 0 !important;
}
.rsform-block-submit .formControlLabel {
  flex: 0 0 0 !important;
}
.rsform-block-submit .formControls {
  margin: 0 auto !important;
}
.rsform-block .formControlLabel {
  flex: 0 0 25%;
  white-space: nowrap;
}
.rsform-block .formControlLabel:empty {
  display: none;
}
.rsform-block .formDescription {
  margin: 0;
}
.rsform-block .formControls {
  margin: 0;
}
.rsform-block .formControls label[for] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.rsform-block .formControls label[for]:has([type=radio]) {
  margin-inline: 0 12px;
}
.rsform-block .formControls :where(.form-check) {
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1.2;
}
.rsform-block .formControls div:has(> .form-check) {
  display: grid;
  grid-auto-flow: column;
  gap: 12px;
}
.rsform-block .formBody {
  float: none;
}

.rsform-input-box,
.rsform-select-box {
  height: auto;
  padding: 5px;
  font-size: 12px;
  border: 0.5px solid rgba(0, 0, 0, 0.3);
  width: min(100%, 220px);
}

.rsform-text-box {
  width: 100%;
  resize: block;
  padding: 5px;
  font-size: 12px;
  border: 0.5px solid rgba(0, 0, 0, 0.3);
}

.uk-form-controls input[type=radio] {
  border: 1px solid #aaa !important;
  width: 14px !important;
  height: 14px !important;
  border-radius: 50% !important;
  vertical-align: -2px !important;
  margin-right: 5px;
}

.rsformstyle {
  margin: 5% 0 5% 0;
  color: #666;
}

.rsformstyle-title {
  font-size: 16px !important;
  color: #666;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 25px;
}

.rsformstyle p {
  font-size: 13px;
  text-align: justify;
}

label[for^=howKnow] {
  display: inline-block;
}

.rsform-submit-button {
  text-shadow: none;
  padding: 10px 18px;
  color: var(--text-color);
  font-size: 16px;
  border-radius: 3px;
  box-shadow: none;
  background: var(--bg-color);
  cursor: pointer;
}
.rsform-submit-button:active {
  transform: translateY(4px);
}
.pd-noname .rsform-submit-button {
  --bg-color: linear-gradient(117.59deg, #94e3cc 16.55%, #7bdad4 67.16%);
  --text-color: #092851;
  --bg-shadow: 0px 9px 20px rgba(130, 221, 211, 0.5);
}

*:has(> .rsform-thankyou-button) {
  width: min(500px, 100%);
  padding-block: var(--padding-block-rsform-submit-msg, 20px);
  padding-inline: var(--padding-inline-rsform-submit-msg, 20px);
  line-height: 1.4;
  color: #262626;
  font-weight: 600;
}

@container form (width < 280px) {
  .rsform-block {
    display: grid;
  }
}
.pd-section[id=cta] {
  padding: 50px 0 0 0;
}
.pd-section[id=cta] .form {
  display: flex;
  flex-direction: row;
  gap: 70px;
  width: 1170px;
  margin: 25px auto 0 auto;
}
@media only screen and (max-width: 1280px) {
  .pd-section[id=cta] .form {
    width: 100%;
    padding: 0 30px;
    gap: 30px;
  }
}
@media only screen and (max-width: 834px) {
  .pd-section[id=cta] .form {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
}
.pd-section[id=cta] .form__wrap {
  min-width: 450px;
}
.pd-section[id=cta] .form__wrap .btn--primary, .pd-section[id=cta] .form__wrap .rsform-submit-button {
  background: #1365B1;
  box-shadow: 0 9px 20px rgba(32, 112, 183, 0.15);
}
@media only screen and (max-width: 1024px) {
  .pd-section[id=cta] .form__wrap {
    flex: 1;
    min-width: unset;
  }
}
@media only screen and (max-width: 834px) {
  .pd-section[id=cta] .form__wrap {
    min-width: 450px;
  }
}
@media only screen and (max-width: 551px) {
  .pd-section[id=cta] .form__wrap {
    min-width: unset;
    width: 100%;
  }
}
.pd-section[id=cta] .form__info {
  flex: 1;
}
@media only screen and (max-width: 551px) {
  .pd-section[id=cta] .form__info .contact__info {
    text-align: center;
  }
}
.pd-section[id=cta] .form__info .contact__info__gss {
  font-size: 31px;
  font-weight: 300;
  color: #202B41;
  margin-bottom: 20px;
}
.pd-section[id=cta] .form__info .contact__info__pd {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 16px;
  font-weight: 900;
  gap: 10px;
}
.pd-section[id=cta] .form__info .contact__info__pd br {
  display: none;
}
@media only screen and (max-width: 551px) {
  .pd-section[id=cta] .form__info .contact__info__pd {
    flex-direction: column;
    gap: 20px;
  }
  .pd-section[id=cta] .form__info .contact__info__pd br {
    display: inline;
  }
}
.pd-section[id=cta] .form__info .contact__info__ic {
  display: inline-block;
}
.pd-section[id=cta] .form__info .contact__info__ic img {
  width: 38px;
  height: 38px;
  aspect-ratio: 1/1;
}
.pd-section[id=cta] .form__info .contact__info__item-group {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
@media only screen and (max-width: 551px) {
  .pd-section[id=cta] .form__info .contact__info__item-group {
    flex-direction: column;
  }
}
.pd-section[id=cta] .form__info .contact__info__item {
  flex: 1;
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  padding: 20px;
  gap: 15px;
  box-shadow: 0 20px 35px rgba(59, 120, 163, 0.1);
  transition: transform 300ms, box-shadow 300ms;
}
@media only screen and (max-width: 1280px) {
  .pd-section[id=cta] .form__info .contact__info__item {
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 834px) {
  .pd-section[id=cta] .form__info .contact__info__item {
    flex-direction: row;
  }
}
@media only screen and (max-width: 678px) {
  .pd-section[id=cta] .form__info .contact__info__item {
    flex-direction: column;
  }
}
@media only screen and (max-width: 551px) {
  .pd-section[id=cta] .form__info .contact__info__item {
    flex-direction: row;
  }
}
.pd-section[id=cta] .form__info .contact__info__item:hover {
  box-shadow: 0 25px 35px rgba(59, 120, 163, 0.2);
}
.pd-section[id=cta] .form__info .contact__info__item .item__info {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  gap: 16px;
}
.pd-section[id=cta] .form__info .contact__info__item .item__info.--align-left {
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  justify-content: center;
}
.pd-section[id=cta] .form__info .contact__info__item .item__info h3 {
  font-size: 16px;
  font-weight: 800;
  line-height: 25px;
}
.pd-section[id=cta] .form__info .contact__info__item .item__info .btn__subscription {
  background: #1365B1;
  box-shadow: 0 9px 20px rgba(32, 112, 183, 0.15);
  padding: 6px 18px;
  color: #fff;
  font-size: 16px;
  border-radius: 3px;
  font-weight: 700;
  transition: box-shadow 300ms;
}
.pd-section[id=cta] .form__info .contact__info__item .item__info .btn__subscription:hover {
  box-shadow: 0 9px 20px rgba(32, 112, 183, 0.2);
}
.pd-section[id=cta] .form__info .contact__info__item .item__info .mail-info {
  font-weight: 600;
  color: #3082D4;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(48, 130, 212, 0);
  transition: border 300ms;
}
.pd-section[id=cta] .form__info .contact__info__item .item__info .mail-info:hover {
  border-bottom: 1px solid #3082d4;
}
.pd-section[id=cta] .form__info .contact__info__item .item__qr img {
  width: 120px;
  height: 120px;
  aspect-ratio: 1/1;
}
.pd-section[id=cta] .form__info .contact__desc {
  padding: 20px;
  border: 1px solid rgba(30, 34, 72, 0.1);
  font-size: 14px;
  line-height: 25px;
  color: #202B41;
  font-weight: 400;
  margin: 45px 0;
}

.prod-list {
  position: relative;
}
.prod-list:nth-of-type(even) .prod-list__body {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 834px) {
  .prod-list:nth-of-type(even) .prod-list__body {
    flex-direction: column;
  }
}
.prod-list:nth-of-type(even) .prod-list__body__aside span {
  margin-inline: 3ch 1.5ch;
}
@media only screen and (max-width: 834px) {
  .prod-list:nth-of-type(even) .prod-list__body__aside span {
    margin-inline: initial;
  }
}
.prod-list__container {
  position: relative;
  padding: 60px 0;
  width: min(100%, 1440px);
}
.prod-list__title {
  --title-line-color: 9, 40, 81;
  --line-alpha: 0.15;
  padding: 0 0 50px;
}
.prod-list__body {
  display: flex;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 14px 34px rgba(19, 40, 65, 0.1);
  backdrop-filter: blur(24px);
}
@media only screen and (max-width: 834px) {
  .prod-list__body {
    flex-direction: column;
  }
}
.prod-list__body__aside {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 834px) {
  .prod-list__body__aside {
    padding: 24px 40px;
    justify-content: center;
  }
}
.prod-list__body__aside span {
  position: inherit;
  display: block;
  font-size: 74px;
  line-height: 1.4054054054;
  font-weight: 200;
  color: #fff;
  margin-inline: 1.5ch 3ch;
}
@media only screen and (max-width: 834px) {
  .prod-list__body__aside span {
    margin-inline: initial;
  }
}
.prod-list__body__aside img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.article-list {
  counter-reset: list;
}
.article-list.--default {
  flex: 1;
  padding: 35px clamp(60px, 6.7708333333%, 130px);
}
@media only screen and (max-width: 1280px) {
  .article-list.--default {
    padding: 35px min(4.6875%, 60px);
  }
}
@media only screen and (max-width: 834px) {
  .article-list.--default {
    padding: 35px;
  }
}
.article-list.--success {
  display: grid;
  grid-template-columns: repeat(auto-fit, min(100%, 345px));
  justify-content: center;
  gap: 50px 30px;
}
@media only screen and (max-width: 1024px) {
  .article-list.--success {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 345px), 1fr));
    gap: 40px 10px;
  }
}
@media only screen and (max-width: 551px) {
  .article-list.--success {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
    gap: 20px 15px;
  }
}

.article-item {
  position: relative;
}
.--default .article-item:not(:last-child) {
  border-bottom: 1px solid rgba(30, 34, 72, 0.1);
}
.--success .article-item {
  display: flex;
  flex-direction: column;
  padding: 0px 36px 28px;
  margin: 20px 0 0;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(104px);
  border-radius: 5px;
}
@media only screen and (max-width: 551px) {
  .--success .article-item {
    min-height: auto;
    padding: 0px 20px 25px;
  }
}
.article-item__title {
  display: block;
}
.--default .article-item__title {
  padding: 15px 0;
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: 600;
}
.--success .article-item__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  padding: 15px 0;
}
@media only screen and (max-width: 551px) {
  .--success .article-item__title {
    display: none;
  }
}
.article-item__img {
  display: grid;
  grid-template-columns: 1fr 150px;
  align-items: flex-end;
  margin: -20px 0 24px;
}
.article-item__img::before {
  content: counter(list, decimal-leading-zero);
  counter-increment: list;
  font-weight: 200;
  font-size: 64px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 551px) {
  .article-item__img {
    grid-template-columns: 1fr;
    align-items: center;
  }
  .article-item__img::before {
    display: none;
  }
}
.article-item__img img {
  object-fit: contain;
  max-height: 100%;
  width: 100%;
  aspect-ratio: 3/2;
  background: #ffffff;
  box-shadow: 10px 14px 24px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}
.article-item__name {
  font-weight: 300;
  font-size: 25px;
  line-height: 35px;
  color: #ffd131;
  padding: 0 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 551px) {
  .article-item__name {
    font-size: 18px;
    line-height: 25px;
    text-align: center;
  }
}

section * {
  font-family: "Noto Sans TC", sans-serif;
}

.font-jura {
  font-family: "Jura", sans-serif;
}

.l-container .pd-section {
  scroll-margin-top: 110px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 1280px) {
  .section-inner {
    max-width: 1000px;
    padding: 0 35px;
  }
}
@media only screen and (max-width: 551px) {
  .section-inner {
    padding: 0 20px;
  }
}

.pd-section {
  padding: 75px 0;
}
@media only screen and (max-width: 834px) {
  .pd-section {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 678px) {
  .pd-section {
    padding: 35px 0;
  }
}
.pd-section__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .pd-section__header {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 15px;
  }
}
.pd-section__cn-title {
  display: flex;
  flex-direction: column;
}
.pd-section__caption {
  color: #1D1B48;
  font-size: 16px;
  line-height: 23px;
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
}
.pd-section__caption-deco {
  height: 1px;
  flex: 1;
  background-color: rgba(0, 0, 0, 0.2);
  margin-left: 10px;
}
.pd-section__headline {
  color: #1365B1;
  font-size: 36px;
  line-height: 52px;
  font-weight: 900;
}
.pd-section__en-title {
  font-size: 76px;
  color: #033973;
  opacity: 0.07;
}
@media only screen and (max-width: 768px) {
  .pd-section__en-title {
    font-size: 56px;
    text-align: right;
    align-self: flex-end;
  }
}
@media only screen and (max-width: 425px) {
  .pd-section__en-title {
    font-size: 45px;
  }
}
.pd-section .pd-swiper-portal {
  max-width: 1200px;
  margin: 60px auto;
  overflow: visible;
  position: relative;
}
@media only screen and (max-width: 1440px) {
  .pd-section .pd-swiper-portal {
    max-width: 1100px;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 1280px) {
  .pd-section .pd-swiper-portal {
    padding: 0 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .pd-section .pd-swiper-portal {
    padding: 0 35px;
  }
}
@media only screen and (max-width: 551px) {
  .pd-section .pd-swiper-portal {
    padding: 0 20px;
    margin: 35px auto;
  }
}
.pd-section .pd-swiper-portal::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 3%, rgba(255, 255, 255, 0.8) 100%);
  z-index: 2;
  left: -100%;
}
@media only screen and (max-width: 1280px) {
  .pd-section .pd-swiper-portal::before {
    transform: translate(50px, 0);
  }
}
@media only screen and (max-width: 1024px) {
  .pd-section .pd-swiper-portal::before {
    display: none;
  }
}
.pd-section .pd-swiper-portal::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 3%, rgba(255, 255, 255, 0.8) 100%);
  z-index: 2;
  right: -100%;
}
@media only screen and (max-width: 1280px) {
  .pd-section .pd-swiper-portal::after {
    transform: translate(-50px, 0);
  }
}
@media only screen and (max-width: 1024px) {
  .pd-section .pd-swiper-portal::after {
    display: none;
  }
}
.pd-section .pd-swiper-portal .pd-swiper__inner {
  display: flex;
}
.pd-section .pd-swiper-portal .swiper-button-prev {
  transform: translate(-60px, 0);
}
@media only screen and (max-width: 1440px) {
  .pd-section .pd-swiper-portal .swiper-button-prev {
    transform: translate(-40px, 0);
  }
}
@media only screen and (max-width: 1280px) {
  .pd-section .pd-swiper-portal .swiper-button-prev {
    transform: translate(-5px, 0);
  }
}
.pd-section .pd-swiper-portal .swiper-button-next {
  transform: translate(60px, 0);
}
@media only screen and (max-width: 1440px) {
  .pd-section .pd-swiper-portal .swiper-button-next {
    transform: translate(40px, 0);
  }
}
@media only screen and (max-width: 1280px) {
  .pd-section .pd-swiper-portal .swiper-button-next {
    transform: translate(5px, 0);
  }
}
.pd-section .list-item {
  width: calc((100% - 120px) / 3); /* 幻燈片寬度計算：間距 60px * slidesPerView: 3 時有 2 個空隙，如間距和slidesPerView有調整，這邊也要同步更新 */
  flex-shrink: 0;
}
.pd-section .list-item__head {
  border-radius: 5px;
  transition: transform 300ms, box-shadow 300ms;
}
.pd-section .list-item__head:hover {
  transform: translate(0, -3px);
  box-shadow: 0 10px 15px rgba(51, 50, 85, 0.1);
}
.pd-section .list-item__img {
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 2/1;
  box-shadow: 0 5px 35px rgba(29, 27, 72, 0.07);
}
.pd-section .list-item__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.pd-section .list-item__context {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
}
.pd-section .list-item__label {
  display: flex;
}
.pd-section .list-item__label span {
  font-size: 12px;
  padding: 5px 30px;
  color: #333255;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.pd-section .list-item__date {
  margin: 12px 0 8px 0;
}
.pd-section .list-item__date .date_value {
  font-family: "Noto Sans TC", sans-serif;
  color: #333255;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
}
.pd-section .list-item__title {
  font-family: "Noto Sans TC", sans-serif;
  color: #333255;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 300ms;
}
.pd-section .list-item__title:hover {
  color: #1365B1;
}
.pd-section .tabs {
  width: 100%;
  overflow: hidden;
}
.pd-section .tabs input[type=radio] {
  display: none;
}
.pd-section .tabs input[type=radio]:nth-of-type(1):checked ~ .tab-labels label[for=tab1],
.pd-section .tabs input[type=radio]:nth-of-type(2):checked ~ .tab-labels label[for=tab2],
.pd-section .tabs input[type=radio]:nth-of-type(3):checked ~ .tab-labels label[for=tab3],
.pd-section .tabs input[type=radio]:nth-of-type(4):checked ~ .tab-labels label[for=tab4] {
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(9, 149, 209, 0.08);
  font-weight: 900;
}
@media only screen and (max-width: 678px) {
  .pd-section .tabs input[type=radio]:nth-of-type(1):checked ~ .tab-labels label[for=tab1],
  .pd-section .tabs input[type=radio]:nth-of-type(2):checked ~ .tab-labels label[for=tab2],
  .pd-section .tabs input[type=radio]:nth-of-type(3):checked ~ .tab-labels label[for=tab3],
  .pd-section .tabs input[type=radio]:nth-of-type(4):checked ~ .tab-labels label[for=tab4] {
    display: block;
  }
}
.pd-section .tabs input[type=radio]:nth-of-type(1):checked ~ .tab-content .tab-panel:nth-of-type(1),
.pd-section .tabs input[type=radio]:nth-of-type(2):checked ~ .tab-content .tab-panel:nth-of-type(2),
.pd-section .tabs input[type=radio]:nth-of-type(3):checked ~ .tab-content .tab-panel:nth-of-type(3),
.pd-section .tabs input[type=radio]:nth-of-type(4):checked ~ .tab-content .tab-panel:nth-of-type(4) {
  display: grid;
}
@media only screen and (max-width: 678px) {
  .pd-section .tabs input[type=radio]:nth-of-type(1):checked ~ .tab-content .tab-panel:nth-of-type(1),
  .pd-section .tabs input[type=radio]:nth-of-type(2):checked ~ .tab-content .tab-panel:nth-of-type(2),
  .pd-section .tabs input[type=radio]:nth-of-type(3):checked ~ .tab-content .tab-panel:nth-of-type(3),
  .pd-section .tabs input[type=radio]:nth-of-type(4):checked ~ .tab-content .tab-panel:nth-of-type(4) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.pd-section .tab-labels {
  display: flex;
  justify-content: flex-start;
  position: relative;
  z-index: 10;
  height: 55px;
}
@media only screen and (max-width: 678px) {
  .pd-section .tab-labels {
    flex-direction: column;
    max-width: 250px;
    height: 53px;
    margin: 0 auto;
  }
}
.pd-section .tab-labels .tab__drop-btn {
  position: absolute;
  height: 55px;
  aspect-ratio: 1/1;
  right: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
@media only screen and (max-width: 678px) {
  .pd-section .tab-labels .tab__drop-btn {
    opacity: 1;
    pointer-events: auto;
  }
}
.pd-section .tab-labels .tab__drop-btn::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(https://www.gss.com.tw/templates/bevel/images/landing-page/security-portal/ic_arrow.png) no-repeat center center/contain;
  transition: transform 100ms;
}
.pd-section .tab-labels .tab-labels__content {
  position: absolute;
  z-index: 10;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 0 30px;
  transition: height 300ms, border-radius 300ms;
  justify-items: center;
  max-width: 900px;
}
.pd-section .tab-labels label {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  color: #1D1B48;
  padding: 25px 15px;
  border-radius: 30px;
  width: 100%;
  transition: background-color 0.3s ease;
}
@media only screen and (max-width: 678px) {
  .pd-section .tab-labels label {
    display: none;
    width: 100%;
    text-align: center;
  }
}
.pd-section .tab-labels label:hover {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 15px rgba(9, 149, 209, 0.05);
}
.pd-section .tab-content {
  display: flex;
  flex-direction: column;
  padding: 70px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid #ffffff;
  margin-top: 25px;
}
@media only screen and (max-width: 1280px) {
  .pd-section .tab-content {
    padding: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .pd-section .tab-content {
    padding: 25px;
  }
}
.pd-section .tab-content .tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}
.pd-section .tab-content .tab-panel.service-list {
  counter-reset: order;
  grid-template-columns: repeat(auto-fill, minmax(225px, max-content));
  gap: 50px;
}
@media only screen and (max-width: 768px) {
  .pd-section .tab-content .tab-panel.service-list {
    gap: 50px 30px;
  }
}
.pd-section .tab-content .tab-panel.service-list .service-item {
  counter-increment: order;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 225px;
  padding: 15px;
  border-radius: 5px;
  transition: box-shadow 300ms, background-color 300ms;
}
.pd-section .tab-content .tab-panel.service-list .service-item:hover {
  box-shadow: 0 4px 15px rgba(9, 149, 209, 0.15);
  background-color: #fff;
}
.pd-section .tab-content .tab-panel.service-list .service-item.--no-link,
.pd-section .tab-content .tab-panel.service-list .service-item.--no-link * {
  pointer-events: none;
  cursor: none;
}
.pd-section .tab-content .tab-panel.service-list .service-item.--no-link:hover {
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0);
}
.pd-section .tab-content .tab-panel.service-list .service-item__order::before {
  content: counter(order, decimal-leading-zero); /* 顯示計數器，帶有前導零 */
  font-size: 13px;
  font-weight: bold;
}
.pd-section .tab-content .tab-panel.service-list .service-item__img {
  height: 40px;
  margin: 20px 0;
}
.pd-section .tab-content .tab-panel.service-list .service-item__img img {
  height: 100%;
}
.pd-section .tab-content .tab-panel.service-list .service-item__title {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
  color: #1D1B48;
}
@media only screen and (max-width: 678px) {
  .pd-section .tab-content .tab-panel.service-list .service-item {
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(5px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.swiper .swiper-button-prev, .swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: #2D2D2D;
  border-radius: 50%;
  border: 1px solid #ffffff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
}
.swiper .swiper-button-prev::after, .swiper .swiper-button-next::after {
  font-size: 12px;
  color: #ffffff;
}
@media only screen and (max-width: 425px) {
  .swiper .swiper-button-prev, .swiper .swiper-button-next {
    width: 30px;
    height: 30px;
  }
}

.more-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 25px;
  gap: 10px;
}
.more-btn.--align-r {
  justify-self: flex-end;
}
.more-btn__ic {
  width: 76px;
  height: 76px;
  background: url(https://www.gss.com.tw/templates/bevel/images/landing-page/security-portal/more-btn_bg.png) no-repeat center center/contain;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.more-btn__arrow {
  width: 20px;
  height: 20px;
  background: url(https://www.gss.com.tw/templates/bevel/images/landing-page/security-portal/more-btn_arrow.png) no-repeat center center/contain;
  transition: transform 0.3s ease;
}
.more-btn__text {
  font-size: 16px;
  line-height: 23px;
  padding-bottom: 7px;
  font-weight: 500;
  color: #1D1B48;
  border-bottom: 1px solid #1D1B48;
}
.more-btn__text.--darkmode {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.more-btn:hover .more-btn__arrow {
  animation: bounce 0.5s;
}
@keyframes bounce {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}

#to-portal {
  width: 50px;
  height: auto;
  background: url(https://www.gss.com.tw/templates/bevel/images/landing-page/security-portal/floatingbtn_bg.webp) no-repeat center center/cover;
  position: fixed;
  z-index: 99;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  flex-direction: column;
  padding: 18px;
  justify-content: center;
  align-items: center;
  border-radius: 35px;
  box-shadow: 5px 5px 10px rgba(29, 27, 72, 0.25);
  transition: box-shadow 300ms, background-position 300ms;
}
@media only screen and (max-width: 425px) {
  #to-portal {
    width: 35px;
    padding: 12px 18px;
  }
}
#to-portal:hover {
  box-shadow: 5px 10px 20px rgba(29, 27, 72, 0.35);
  background-position: right center;
}
#to-portal:hover .btn-icon {
  animation: bounceRight 0.5s;
}
#to-portal .btn-icon {
  width: 17px;
  height: 17px;
}
#to-portal .btn-text {
  color: #fff;
  padding-top: 10px;
  line-height: 1.5;
  font-size: 0.875rem;
  font-weight: 900;
  font-family: "Noto Sans TC", sans-serif;
}
@keyframes bounceRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}

/*# sourceMappingURL=security-global.css.map */

