﻿/* ==========================================
   基礎設定
   ========================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
tfoot,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

a,
a:link,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
}

body {
  line-height: 1;
  font-size: 16px;
  font-family:
    "Open Sans", "Noto Sans TC", "Microsoft JhengHei", "Source Sans Pro",
    sans-serif;
  color: #2e2a2e;
  display: relative;
  word-wrap: break-word;
  word-break: break-all;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}

table {
  border-collapse: collapse;
}

html {
  scroll-padding-top: 80px;
}

/* ==========================================
   主選單
   ========================================== */
.header {
  width: 100%;
  height: 80px;
  top: 0;
  left: 0;
  position: fixed;
  padding: 0 2rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.header-area {
  width: 100%;
  height: 80px;
  margin: 0;
  position: relative;
}

nav {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

nav .logo {
  display: flex;
  align-items: center;
  width: 250px;
  transition: opacity 0.25s ease;
}

nav .logo:hover {
  opacity: 0.85;
}

nav .logo img {
  width: 100%;
  height: auto;
  display: block;
}

#main-menu {
  position: relative;
}

#main-menu .toggle {
  display: none;
  cursor: pointer;
}

#main-menu #drop {
  display: none;
}

#main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

#main-menu ul li {
  margin: 0;
  padding: 0;
}

#main-menu ul li a {
  font-size: 18px;
  font-weight: 600;
  color: #334155;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  transition: all 0.25s ease;
}

#main-menu ul li a:hover,
#main-menu ul li a.act {
  color: #e40f48;
  background-color: #f9f1f2;
}

/* --- RWD: Header --- */
@media screen and (max-width: 1199px) {
  .header {
    padding: 0 1.25rem;
  }

  #main-menu .toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
  }

  #main-menu .toggle div {
    width: 26px;
    height: 2.5px;
    background: #334155;
    margin: 3.5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  #main-menu #drop ~ ul {
    position: absolute;
    top: 65px;
    right: 0;
    width: 240px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #ffffff;
    border-radius: 14px;
    padding: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
  }

  #main-menu #drop:checked ~ ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  #main-menu ul li a {
    padding: 12px 16px;
    font-size: 15px;
  }

  #main-menu #drop:checked ~ .toggle div:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
  }
  #main-menu #drop:checked ~ .toggle div:nth-child(2) {
    opacity: 0;
  }
  #main-menu #drop:checked ~ .toggle div:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
  }
}

/* ==========================================
   主視覺
   ========================================== */
#KV {
  width: 100%;
  height: 650px;
  background-image: url("image/KV_pc_a.png");
  background-position: center center;
  background-color: #fdfbfd;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* --- KV 頁面狀態切換 --- */
#KV.kv_tisa_account {
  background-image: url("image/KV_pc_a.png");
}
@media screen and (max-width: 1199px) {
  #KV.kv_tisa_account {
    background-image: url("image/KV_pc_2_a.png");
  }
}
@media screen and (max-width: 811px) {
  #KV.kv_tisa_account {
    background-image: url("image/KV_mb_a.png");
  }
}

#KV.kv_tisa_intro {
  background-image: url("image/KV_pc_b.png");
}
@media screen and (max-width: 1199px) {
  #KV.kv_tisa_intro {
    background-image: url("image/KV_retirement_pad.png");
  }
}
@media screen and (max-width: 811px) {
  #KV.kv_tisa_intro {
    background-image: url("image/KV_mb_b.png");
  }
}

#KV.kv_tisa_funds {
  background-image: url("image/KV_pc_c.png");
}
@media screen and (max-width: 1199px) {
  #KV.kv_tisa_funds {
    background-image: url("image/KV_pc_2_c.png");
  }
}
@media screen and (max-width: 811px) {
  #KV.kv_tisa_funds {
    background-image: url("image/KV_mb_c.png");
  }
}

.KV_content {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.KV_text_group {
  max-width: 500px;
  text-align: left;
  transform: translateY(-50px);
}

#KV h1 {
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 20px;
  width: 100%;
  padding: 0;
  font-weight: 900;
}

#KV h1 .KV_title_main {
  display: block;
  font-size: clamp(36px, 4vw, 60px);
  letter-spacing: 3px;
}

#KV h1 .KV_title_sub {
  display: block;
  font-size: clamp(40px, 6vw, 66px);
  letter-spacing: 6px;
}

.KV_desc {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  color: var(--text-dark);
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.KV_desc .highlight {
  color: var(--color-accent);
  font-size: 1.3em;
  padding-right: 5px;
}

#KV .content_btn {
  margin: 0;
  width: auto;
  min-width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  text-decoration: none;
}

.btn_arrow {
  font-size: 16px;
  animation: arrowJumpContinuous 1.5s infinite ease-in-out;
}

@keyframes arrowJumpContinuous {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(6px);
  }
  40% {
    transform: translateX(-1px);
  }
  60% {
    transform: translateX(0);
  }
}

#KV .content_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(228, 15, 72, 0.3);
}

/* --- RWD: KV --- */
@media screen and (min-width: 1921px) {
  #KV {
    background-position: right;
  }
}

@media screen and (max-width: 1199px) {
  #KV {
    height: 600px;
    background-size: cover;
  }
  .KV_text_group {
    max-width: 450px;
  }
}

@media screen and (max-width: 811px) {
  #KV {
    height: 600px;
    background-image: url("image/KV_mobile.png");
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 110px;
  }

  .KV_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .KV_text_group {
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  #KV h1 .tw {
    font-size: clamp(36px, 8vw, 40px);
    letter-spacing: 2px;
    padding-top: 5px;
  }

  #KV .content_btn {
    margin: 0 auto;
    width: 70%;
    max-width: 320px;
    min-width: auto;
    display: inline-flex;
  }

  #KV .content_btn:hover {
    transform: none;
  }
}

/* ==========================================
   全站共用設定
   ========================================== */
:root {
  --color-primary: #333333;
  --color-accent: #e40f48;
  --text-dark: #3f3f3f;
  --text-gray: #8c898a;
  --text-white: #ffffff;

  --grad-start: #d90e40;
  --grad-end: #fe646d;
  --bg-gradient: linear-gradient(
    90deg,
    var(--grad-start) 0%,
    var(--grad-end) 100%
  );

  --bg-light-red: #fff7f7;
  --bg-white: #ffffff;
  --bg-light-gray: #f5f7fa;
  --bg-light-gold: #f8f3ea;
  --content-width: 85%;
  --max-width: 950px;
}

.gradient_bg {
  background: var(--bg-gradient);
  color: var(--text-white);
}

.content_section {
  width: 100%;
  padding: clamp(30px, 5vw, 60px) 0;
  text-align: center;
  line-height: 1.2;
}

.content_section.red_bg {
  background-color: var(--bg-light-red);
}
.content_section.white_bg {
  background-color: var(--bg-white);
}
.content_section.gray_bg,
.content_section.gary_bg {
  background-color: var(--bg-light-gray);
}
.content_section.accent_bg {
  background-color: var(--color-accent);
  color: var(--text-white);
}

h2 {
  width: var(--content-width);
  max-width: var(--max-width);
  font-size: clamp(24px, 4vw, 38px);
  color: var(--color-primary);
  letter-spacing: 2px;
  padding: clamp(10px, 2vw, 20px) 0;
  margin: 0 auto;
  line-height: 1.4;
}

.accent_bg h2,
.accent_bg h4,
.accent_bg .content_text {
  color: var(--text-white);
}

h3 {
  width: 90%;
  max-width: var(--max-width);
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.4;
  padding: 10px 0;
  margin: 0 auto;
}

h3.type2 {
  color: var(--color-accent);
  letter-spacing: 2px;
}

h3.type2 .tag {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--text-white);
  font-size: 0.8em;
  font-weight: normal;
  padding: 5px 20px;
  border-radius: 2px 20px 20px 2px;
  margin-right: 8px;
  letter-spacing: 2px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

h4 {
  width: 90%;
  max-width: 800px;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: normal;
  color: var(--text-dark);
  text-align: justify;
  line-height: 1.5;
  padding: 10px 0;
  margin: 0 auto;
}

h4.color-1 {
  color: var(--text-dark);
}
h4.type2 {
  color: var(--color-accent);
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

.content_text {
  width: 85%;
  max-width: var(--max-width);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: normal;
  color: var(--text-dark);
  text-align: justify;
  line-height: 1.5;
  padding: 10px 0;
  margin: 0 auto;
}

.font_center {
  text-align: center;
}
.font_justify {
  text-align: justify;
}
.font_left {
  text-align: left;
}
.font_right {
  text-align: right;
}

.content_chart {
  width: 95%;
  max-width: 900px;
  height: auto;
  margin: 20px auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .content_text {
    width: 90%;
    font-size: clamp(16px, 2vw, 20px);
    padding: 10px 0;
  }
}

/* ==========================================
   按鈕
   ========================================== */
.content_btn {
  display: inline-block;
  width: 70%;
  max-width: 300px;
  font-size: clamp(17px, 2vw, 19px);
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--text-white);
  background: var(--bg-gradient);
  background-size: 200% auto;
  border-radius: 50px;
  padding: 18px 25px;
  margin: clamp(20px, 3vw, 30px) 10px;
  transition: background-position 0.4s ease-in-out;
}

.content_btn:hover {
  background-position: right center;
}

.btn_action {
  display: inline-block;
  padding: 10px 28px;
  background-color: var(--color-accent);
  color: var(--text-white);
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(228, 15, 72, 0.2);
}

.btn_action:hover {
  background-color: #c20f2f;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(228, 15, 72, 0.3);
  color: var(--text-white);
}

.btn_gold {
  background-color: #c09241;
  box-shadow: 0 4px 12px rgba(192, 146, 65, 0.25);
}

.btn_gold:hover {
  background-color: #a87d32;
  box-shadow: 0 6px 18px rgba(168, 125, 50, 0.35);
  color: var(--text-white);
}

.action_area {
  margin-top: 35px;
  text-align: center;
}

.btn_action_area {
  display: inline-block;
  padding: 14px 45px;
  background-color: var(--color-accent);
  color: var(--text-white);
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(228, 15, 72, 0.25);
}

.btn_action_area_block{
  margin: 0 15px;
}


.btn_action_area:hover {
  background-color: #c20f2f;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(228, 15, 72, 0.35);
  color: var(--text-white);
}

.btn_action_area.btn_action_area_gold {
  background-color: #c09241;
  box-shadow: 0 4px 12px rgba(192, 146, 65, 0.25);
}

.btn_action_area.btn_action_area_gold:hover {
  background-color: #a87d32;
  box-shadow: 0 6px 18px rgba(168, 125, 50, 0.35);
  color: var(--text-white);
}

.btn_card_white {
  display: inline-block;
  width: 85%;
  padding: 10px 0;
  background-color: #ffffff;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn_card_white:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 768px) {
  .btn_action_area {
    width: 90%;
    max-width: 320px;
    padding: 12px 20px;
    font-size: 16px;
  } 

  .btn_action_area_block{
  margin: 10px 0;
}

}

/* ==========================================
   文字卡片
   ========================================== */
.highlight_card {
  max-width: var(--max-width);
  margin: 0 auto clamp(40px, 5vw, 60px);
  padding: clamp(25px, 4vw, 35px) clamp(25px, 5vw, 45px);
  background-color: #fffafa;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(228, 15, 72, 0.06);
  box-sizing: border-box;
}

.highlight_text {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
  color: var(--text-dark);
  font-weight: bold;
  text-align: justify;
  position: relative;
  padding-left: 20px;
  margin: 0;
  letter-spacing: 0.5px;
}

.highlight_text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background-color: var(--color-accent);
  border-radius: 2px;
}

@media screen and (max-width: 811px) {
  .highlight_card {
    padding: 20px;
  }
  .highlight_text {
    padding-left: 15px;
  }
}

/* ==========================================
   影片/圖片卡片
   ========================================== */
.media_list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 900px;
  margin: 40px auto 0;
}

.media_card {
  display: flex;
  background-color: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.media_card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.media_thumb {
  flex: 0 0 40%;
  background-color: #000000;
  min-height: 200px;
  position: relative;
}

.media_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media_info {
  flex: 1;
  padding: 30px clamp(20px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.media_title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: bold;
  color: var(--color-primary);
  line-height: 1.5;
  margin: 0 0 20px 0;
  width: 100%;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .media_card {
    flex-direction: column;
  }
  .media_thumb {
    width: 100%;
    height: 200px;
  }
  .media_info {
    align-items: center;
    text-align: center;
    padding: 25px 20px;
  }
  .media_title {
    margin-bottom: 15px;
  }
}

/* ==========================================
   分流卡片
   ========================================== */
.member_portal_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 30px auto 50px;
}

.portal_card {
  background: var(--bg-white);
  border: 1px solid #f0e6e8;
  border-radius: 20px;
  padding: 25px 20px 35px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
}

.portal_card_bg_red {
  background-color:var(--bg-light-red);
}

.portal_card_bg_gold {
  background-color:var(--bg-light-gold);
}


.portal_icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.portal_card:has(.btn_gold) .portal_icon {
  color: #b5832a;
}

.portal_info {
  text-align: left;
  flex: 1;
}

.portal_tag {
  display: inline-block;
  font-size: 15px;
  color: var(--color-accent);
  background-color: #fdf0f2;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.portal_tag.tag_secondary {
  color: #b5832a;
  background-color: #fcf6ea;
}

.portal_title {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 12px;
  width: 100%;
  padding: 0;
  text-align: left;
}

/* ==========================================
   四大優勢
   ========================================== */
.feature_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.feature_card {
  background: var(--bg-white);
  border: 1px solid #f2e6e8;
  border-radius: 20px;
  padding: clamp(25px, 4vw, 40px);
  display: flex;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
  text-align: left;
}

.feature_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 90px;
}

.feature_badge {
  background-color: #fdf0f2;
  color: var(--color-accent);
  font-size: 18px;
  padding: 5px 14px;
  border-radius: 15px;
  margin-bottom: 15px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.feature_icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #fff2f4;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.feature_body {
  flex: 1;
}

.feature_title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 12px;
  width: 100%;
  padding: 0;
  text-align: left;
}

.feature_card .content_text {
  width: 100%;
  max-width: 100%;
  font-size: clamp(16px, 2vw, 18px);
  padding: 0;
  margin-bottom: 20px;
}

.feature_img_box {
  width: 100%;
  margin-top: 15px;
}

.feature_img_box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid #eaeaea;
}

/* ==========================================
   表格
   ========================================== */
.table_responsive {
  width: 100%;
  overflow-x: auto;
  margin-top: 20px;
  border-radius: 12px;
}

.table_compare {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  text-align: center;
  font-size: 16px;
  border: 1px solid #102e52;
}

.table_compare th,
.table_compare td {
  padding: 14px 10px;
  border: 1px solid #d9e2ec;
  vertical-align: middle;
  line-height: 1.5;
}

.table_compare thead tr.table_main_head th {
  background-color: #0d3859 !important;
  color: #ffffff !important;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 16px 10px;
}

.table_main_head span {
  font-size: 16px;
  font-weight: normal;
  display: inline-block;
  margin-top: 4px;
}

.table_compare thead tr.table_sub_head th {
  background-color: #dbeeff !important;
  color: #102e52 !important;
  font-weight: bold;
  font-size: 17px;
}

.table_compare .col_title,
.table_compare .col_parent {
  background-color: #eaf4fd;
  color: #102e52;
  font-weight: bold;
  font-size: 17px;
}

.table_compare .col_parent {
  width: 18%;
  font-size: 17px;
  border-right: 1px solid #d9e2ec;
}

.table_compare .col_sub {
  width: 22%;
  background-color: #ffffff;
  font-weight: normal;
  font-size: 15px;
  color: #333333;
}

.table_compare td.highlight_col {
  background-color: #f7f9fa;
  font-weight: 500;
}

.table_compare .table_row_total td {
  font-weight: bold;
  background-color: #f8fafc;
  font-size: 17px;
}

.table_compare .text_green {
  color: #00875a;
  font-size: 20px;
  font-weight: 800;
}

.table_compare .sub_note,
.sub_note_dark {
  font-size: 13px;
  color: #64748b;
  display: block;
  margin-top: 3px;
  font-weight: normal;
}

.icon_circle_ok {
  color: #28a745;
  font-size: 22px;
  font-weight: bold;
  vertical-align: middle;
  display: inline-block;
  margin-right: 2px;
}

.icon_warning {
  color: #f2994a;
  font-size: 20px;
  font-weight: bold;
}
.icon_cross {
  color: #eb5757;
  font-size: 20px;
  font-weight: bold;
}

.section_subtitle {
  font-size: clamp(17px, 2vw, 22px);
  color: #4a5568;
  font-weight: 500;
  margin-top: 8px;
  margin-bottom: 25px;
  text-align: center;
}

.site_disclaimer {
  font-size: 14px;
  font-weight: bold;
  color: #505153;
  line-height: 1.7;
  text-align: justify;
  margin-top: 15px;
  padding: 0 4px;
}

/* --- RWD: 通用結構 --- */
@media screen and (max-width: 811px) {
  .table_compare {
    min-width: 550px;
    font-size: 14px;
  }

  .table_compare thead tr.table_main_head th {
    font-size: 16px;
  }

  .table_compare thead tr.table_sub_head th,
  .table_compare .col_title,
  .table_compare .col_parent {
    font-size: 15px;
  }

  .table_compare .text_green {
    font-size: 18px;
  }

  .table_compare .sub_note,
  .sub_note_dark {
    font-size: 13px;
  }

  /* 下方原本的卡片設定保持不變 */
  .member_portal_grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature_card {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .feature_header {
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
    gap: 15px;
  }

  .feature_badge {
    font-size: 16px;
    margin-bottom: 0;
  }
  .feature_icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}
/* ==========================================
   推薦TISA基金
   ========================================== */
.fund_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: var(--max-width);
  margin: 30px auto 0;
}

.fund_card {
  background-color: var(--bg-white);
  border-radius: 16px;
  padding: 25px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.02);
  box-sizing: border-box;
  text-align: left;
}

.fund_info {
  flex: 1;
}

.fund_category {
  display: block;
  font-size: 18px;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.fund_name {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: normal;
  color: var(--color-primary);
  line-height: 1.4;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}

.fund_warning {
  color: #92535a;
  font-weight: bold;
  display: inline;
}

@media screen and (max-width: 768px) {
  .fund_card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 18px;
  }
  .fund_card .btn_action {
    width: 100%;
    box-sizing: border-box;
  }
  .fund_category {
    font-size: 16px;
  }
}

/* ==========================================
   宣傳與雙卡片
   ========================================== */
.promo_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.promo_content {
  flex: 0.8;
  text-align: left;
}

.promo_heading {
  font-size: clamp(26px, 3.2vw, 36px);
  color: var(--color-primary);
  line-height: 1.5;
  letter-spacing: 1px;
  margin-bottom: 25px;
  padding: 0;
  width: 100%;
}

.text_accent {
  color: var(--color-accent);
}

.info_card_grid {
  display: flex;
  gap: 40px;
  flex: 1.3;
}

.info_card {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.info_card_media {
  height: 200px;
  background-color: #e8e8e8;
  position: relative;
}

.info_card_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info_card_body {
  background-color: #424656;
  padding: 30px 20px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.info_card_title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: bold;
  color: var(--text-white);
  margin-bottom: 12px;
  padding: 0;
  width: 100%;
}

.info_card_text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 25px;
  flex: 1;
}

@media screen and (max-width: 992px) {
  .promo_wrapper {
    flex-direction: column;
    gap: 35px;
  }
  .promo_content {
    text-align: center;
  }
  .info_card_grid {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .info_card_grid {
    flex-direction: column;
    gap: 20px;
  }
  .info_card_media {
    height: 180px;
  }
}

/* ==========================================
   認識TISA基金區塊
   ========================================== */
#overview .overview_box {
  max-width: 860px;
  margin: 0 auto;
  padding: 35px 45px;
  background-color: #f8fafc;
  border-radius: 16px;
  border-top: 1px solid #f2e6e8;
  border-bottom: 1px solid #f2e6e8;
  border-left: 6px solid var(--color-accent);
  border-right: 6px solid var(--color-accent);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

#overview .overview_box:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

#overview .content_text {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.8;
  color: #334155;
  text-align: justify;
  margin: 0 auto;
  letter-spacing: 0.5px;
}

#overview .highlight {
  color: var(--color-accent);
  font-weight: bold;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(228, 15, 72, 0.1) 40%
  );
  padding: 0 4px;
}

@media screen and (max-width: 768px) {
  #overview .overview_box {
    padding: 25px 20px;
    border-left-width: 4px;
    border-right-width: 4px;
    margin-top: 20px;
  }
}

/* ==========================================
   四大好處
   ========================================== */
.feature_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.feature_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature_icon_box {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #ffe3e8;
  box-shadow: 0 6px 20px rgba(228, 15, 72, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 20px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature_item:hover .feature_icon_box {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(228, 15, 72, 0.12);
}

.feature_icon_img {
  max-width: 70%;
  max-height: 70%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.feature_item h3 {
  font-size: 19px;
  color: #1e293b;
  font-weight: bold;
  margin-bottom: 12px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.feature_item .num_icon {
  color: var(--color-accent, #e40f48);
  font-size: 16px;
}

.feature_desc {
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

@media screen and (max-width: 1080px) {
  .feature_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 40px;
  }
}

@media screen and (max-width: 811px) {
  .feature_grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .feature_icon_box {
    width: 100px;
    height: 100px;
    padding: 18px;
  }
  .feature_item h3 {
    font-size: 20px;
  }
  .feature_item .num_icon {
    font-size: 18px;
  }
  .feature_desc {
    font-size: 17px;
    text-align: center;
  }
}

/* ==========================================
   Slick Carousel 輪播
   ========================================== */
.article_grid {
  margin-top: 40px;
  padding: 0 40px 40px 40px;
  box-sizing: border-box;
}

/* --- 強制等高設定 --- */
.article_grid .slick-track {
  display: flex !important;
}
.article_grid .slick-slide {
  margin: 0 15px;
  height: inherit !important;
  display: flex !important;
}
.article_grid .slick-slide > div {
  width: 100%;
  height: 100%;
  display: flex;
}
.article_grid .slick-slide .article_card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.article_grid .slick-list {
  padding: 15px 5px 25px 5px !important;
  margin: -15px -5px -25px -5px;
}

.article_card {
  background-color: #ffffff;
  border: 1px solid #c9b074;
  border-radius: 12px;
  overflow: hidden;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.article_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.article_img_box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #f1f5f9;
}

.article_img_link {
  display: block;
  width: 100%;
  height: 100%;
}

.article_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article_card:hover .article_img {
  transform: scale(1.05);
}

.category_badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #c41230;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 6px 15px;
  border-bottom-right-radius: 6px;
}

.article_content {
  padding: 18px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article_meta {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 8px;
}

.article_meta time {
  font-family: inherit;
}

.article_author {
  position: relative;
}
.article_author::before {
  content: "•";
  margin-right: 8px;
  margin-left: 8px;
  color: #cbd5e1;
}

.article_title {
  width: 100%;
  font-size: 18px;
  text-align: justify;
  line-height: 1.5;
  margin: 0;
  font-weight: bold;
}

.article_title a {
  color: #1e293b;
  text-decoration: none;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article_title a:hover {
  color: #c41230;
}

/* --- 輪播箭頭樣式 --- */
.article_grid .slick-prev:before,
.article_grid .slick-next:before {
  display: none !important;
}

.article_grid .slick-prev,
.article_grid .slick-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.article_grid .slick-prev {
  left: -15px;
}
.article_grid .slick-next {
  right: -15px;
}

.article_grid .slick-prev i,
.article_grid .slick-next i {
  color: var(--color-accent);
  font-size: 22px;
  opacity: 0.85;
  transition: all 0.3s ease;
}

@media (hover: hover) {
  .article_grid .slick-prev:hover,
  .article_grid .slick-next:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: 0 6px 16px rgba(228, 15, 72, 0.2);
  }
  .article_grid .slick-prev:hover i,
  .article_grid .slick-next:hover i {
    color: #ffffff;
    opacity: 1;
  }
}

@media screen and (max-width: 811px) {
  .article_grid {
    padding: 0 10px 40px 10px;
    margin-top: 10px;
  }
  .category_badge {
    font-size: 15px;
    padding: 6px 14px;
  }
  .article_meta {
    font-size: 15px;
  }
  .article_title {
    font-size: 18px;
  }
  .article_grid .slick-prev,
  .article_grid .slick-next {
    width: 36px;
    height: 36px;
  }
  .article_grid .slick-prev {
    left: -5px;
  }
  .article_grid .slick-next {
    right: -5px;
  }
  .article_grid .slick-prev i,
  .article_grid .slick-next i {
    font-size: 18px;
  }
}

/* ==========================================
   基金列表
   ========================================== */
.filter {
  max-width: var(--max-width);
  margin: 0 auto 35px;
  padding: 15px 40px 25px 40px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

.filter h3 {
  color: var(--color-primary);
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #fdf0f2;
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
  max-width: 600px;
}

.filter-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  background: #f8fafc;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.filter-list li:hover,
.filter-list li:focus-within {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background: #ffffff;
}

.filter-list label {
  font-size: 16px;
  font-weight: bold;
  color: var(--color-primary);
  margin: 0;
  white-space: nowrap;
}

/* --- 自訂 Select 箭頭樣式 (SVG背景) --- */
.filter-list select {
  appearance: none;
  -webkit-appearance: none;
  padding: 4px 28px 4px 6px;
  font-size: 15px;
  font-weight: normal;
  font-family: inherit;
  color: var(--color-primary);
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23334155%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
  background-size: 10px auto;
}

.prodList {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 15px;
  list-style: none;
}

.prodList-li {
  background-color: var(--bg-white);
  border-radius: 16px;
  padding: 25px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.02);
  box-sizing: border-box;
  text-align: left;
}

.prodList-li-name {
  flex: 1;
  text-decoration: none;
  display: block;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.5;
  color: #92535a;
  font-weight: bold;
}

.investColumn {
  display: block;
  font-size: 18px;
  font-weight: normal;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.prodList-li-name strong {
  font-size: inherit;
  color: var(--color-primary);
  font-weight: normal;
  margin-right: 4px;
}

.riskColumn {
  background-color: #fdf0f2;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: bold;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.btnArea {
  flex-shrink: 0;
}

.btn.type1 a {
  display: inline-block;
  padding: 10px 28px;
  background-color: #92535a;
  color: var(--text-white);
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  font-weight: normal;
}

.btn.type1 a:hover {
  background-color: #c20f2f;
  transform: translateY(-2px);
  color: var(--text-white);
}

.btn.type1 a i {
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.btn.type1 a:hover i {
  transform: translateX(4px);
}

/* --- 查無資料狀態 --- */
.prodList-li.text-center {
  justify-content: center;
  color: #64748b;
  font-size: 18px;
  font-weight: bold;
  padding: 40px;
  background-color: transparent;
  box-shadow: none;
}

@media screen and (max-width: 811px) {
  .filter {
    padding: 20px 15px;
    width: calc(100% - 30px);
    margin: 0 auto 30px;
  }
  .filter-list {
    grid-template-columns: 1fr;
  }
  .filter-list li {
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
    border-radius: 12px;
  }

  .prodList-li {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
  }
  .prodList-li-name {
    width: 100%;
  }
  .riskColumn {
    margin: 0;
    align-self: flex-start;
  }
  .investColumn {
    font-size: 16px;
  }

  .btnArea,
  .btn.type1,
  .btn.type1 a {
    width: 100%;
    box-sizing: border-box;
  }
}

/* ==========================================
   活動辦法與注意事項
   ========================================== */
.attention_box {
  background-color: var(--bg-white);
  border-radius: 20px;
  padding: clamp(30px, 5vw, 50px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  margin: 0 auto;
  text-align: left;
}

.attention_title {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: bold;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #fdf0f2;
  letter-spacing: 1.5px;
}

.attention_list {
  list-style-type: decimal;
  padding-left: 24px;
  margin: 0;
  color: var(--text-dark);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.8;
  text-align: justify;
}

.attention_list > li {
  margin-bottom: 16px;
}
.attention_list > li::marker {
  font-weight: bold;
  color: var(--color-accent);
}

.attention_sublist {
  list-style-type: disc;
  padding-left: 24px;
  margin-top: 8px;
  margin-bottom: 12px;
  color: #555555;
}

.attention_sublist > li {
  margin-bottom: 8px;
}
.attention_sublist > li::marker {
  color: #c9b074;
}

.attention_list a {
  color: #0066cc;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
  margin: 0 4px;
}

.attention_list a:hover {
  color: var(--color-accent);
}
.attention_list a.line_color {
  color: #06c755;
}
.attention_list a.line_color:hover {
  color: #04a043;
}

@media screen and (max-width: 768px) {
  .attention_box {
    padding: 25px 20px;
  }
  .attention_list,
  .attention_sublist {
    padding-left: 20px;
  }
}

/* ==========================================
   側邊按鈕
   ========================================== */
.float_action_area {
  position: fixed;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.float_action_area.is-visible {
  opacity: 1;
  visibility: visible;
}

.float_btn_group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float_btn_group a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  padding: 20px 0;
  color: var(--text-white);
  font-size: 15px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  border-radius: 40px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.float_btn_group a i {
  margin-bottom: 6px;
  font-size: 20px;
  margin-right: -2px;
}

.float_btn_group a:hover {
  transform: translateX(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn_purchase {
  background: var(--bg-gradient);
}
.btn_open_account {
  background: var(--color-primary);
}
.btn_open_account:hover {
  background: #113c66;
}

@media screen and (max-width: 811px) {
  .float_action_area {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
    padding: 12px 15px calc(12px + env(safe-area-inset-bottom));
  }

  .float_btn_group {
    flex-direction: row;
    gap: 10px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .float_btn_group a {
    flex: 1;
    flex-direction: row;
    padding: 12px 2px;
    border-radius: 12px;
    font-size: 15px;
    letter-spacing: 0;
    white-space: nowrap;
    box-shadow: none;
    justify-content: center;
    align-items: center;
  }

  .float_btn_group a span br {
    display: none;
  }

  .float_btn_group a i {
    margin-bottom: 0;
    margin-right: 4px;
    font-size: 17px;
  }

  .float_btn_group a:hover {
    transform: none;
  }
}

/* ==========================================
   返回上方
   ========================================== */
.topBtn {
  position: fixed;
  z-index: 998;
  bottom: 30px;
  right: 25px;
  cursor: pointer;
  display: none;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}

.top_btn_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--bg-white);
  color: var(--color-primary);
  border-radius: 50%;
  box-sizing: border-box;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.top_btn_inner i {
  font-size: 14px;
  margin-bottom: 2px;
  transition: transform 0.3s ease;
}
.top_btn_inner span {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.topBtn:hover {
  transform: translateY(-5px);
}

.topBtn:hover .top_btn_inner {
  background: var(--bg-gradient);
  color: var(--text-white);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(228, 15, 72, 0.3);
}

.topBtn:hover i {
  transform: translateY(-2px);
}

@media screen and (max-width: 1199px) {
  .topBtn {
    right: 20px;
  }
}

@media screen and (max-width: 811px) {
  .topBtn {
    bottom: calc(85px + env(safe-area-inset-bottom));
    right: 15px;
  }

  .top_btn_inner {
    width: 42px;
    height: 42px;
    padding-top: 0;
  }
  .top_btn_inner span {
    display: none;
  }
  .top_btn_inner i {
    font-size: 18px;
    margin-bottom: 0;
  }

  .topBtn:hover {
    transform: none;
  }
}
