@charset "UTF-8";

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Rethink Sans", "Noto sans", sans-serif;
  color: black;
  position: relative;
  word-wrap: break-word; }

h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 120%;
  margin-top: 40px; }

h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.8px;
  margin-bottom: 28px; }

h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 1.4px;
  margin-bottom: 28px; }

h4 {
  font-size: 20px;
  font-weight: 300;
  line-height: 160%; }

h5 {
  font-size: 16px;
  font-weight: 500;
  line-height: 120%; }

a {
  font-size: 20px;
  font-weight: 300;
  line-height: 120%;
  color: #10A1AF; }

@media (max-width: 440px) {
  h1 {
    font-size: 30px; }
  h2 {
    font-size: 28px; }
  h3 {
    font-size: 24px; }
  a {
    font-size: 18px; } }

.answer_page .article > h1 {
  
   }

@media (max-width: 440px) {
  .answer_page .article > h1 {
    
     } }

/* 文章樣式開始 */
.answer h1 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 40px; }

.answer h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.8px;
  margin-top: 42px;
  margin-bottom: 4px; }

.answer h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 1.4px;
  margin-top: 36px;
  margin-bottom: 4px; }

.answer h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 160%;
  margin-top: 30px;
  margin-bottom: 4px; }

.answer h5 {
  font-size: 18px;
  font-weight: 300;
  line-height: 120%;
  margin-top: 30px; }

.answer h6 {
  font-size: 16px;
  font-weight: 300;
  line-height: 120%;
  margin-top: 30px; }

.answer ul, .answer ol {
 padding: 25px;
}

.answer a, .answer p, .answer ul li, .answer ol li {
  font-size: 18px;
  font-weight: 400;
  line-height: 200%;
 color: #2b2b2b; }

.answer a {
  text-decoration: underline;
  cursor: pointer; 
  color: #fa783c}

@media (max-width: 440px) {
  .answer h1 {
    font-size: 24px; }
  .answer h2 {
    font-size: 22px; }
  .answer h3 {
    font-size: 20px; }
  .answer h4 {
    font-size: 18px; }
  .answer a, .answer p, .answer ul li, .answer ol li {
    font-size: 18px; 
    line-height: 200%;} }

/* 文章樣式結束 */
body {
  padding-top: 60px; }

nav {
  background-color: #3C5998;
  border-bottom: 1px solid #ECECEC;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100vw; }

.nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1440px;
  padding: 10px 64px; }
  .nav_list img {
    display: block; }
  .nav_list menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px; }
    .nav_list menu a {
      cursor: pointer;
      text-decoration: none;
      color: black;
      font-size: 16px;
      font-weight: 400; }
      .nav_list menu a:hover {
        color: #3C5998; }

.side_nav {
  width: 320px;
  height: 100%;
  background-color: white;
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 90;
  padding: 100px 20px 40px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
  .side_nav h4 {
    font-size: 16px;
    font-weight: 400;
    color: #757575;
    position: absolute;
    left: 50px;
    top: 67px; }
  .side_nav h5 {
    display: inline-block;
    margin-bottom: 12px;
    margin-right: 4px;
    color: #2E2E2E;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 70px;
    z-index: 100; }
    .side_nav h5:hover {
      color: #3C5998; }
  .side_nav a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 8px;
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 6px;
    background-color: #F5F5F5;
    padding: 16px 16px 16px 20px;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: #454545;
    text-decoration: none; }
    .side_nav a:hover {
      background-color: #DFDFDF; }
    .side_nav a img {
      opacity: 0.1; }
    .side_nav a:hover img {
      opacity: 1; }
  .side_nav span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .side_nav h6 {
    font-size: 14px;
    padding-top: 12px;
    color: #959595;
    text-align: center;
    font-weight: 300; }

/* 解讀中... 帶AI星星的CSS實現 */
#main_loading {
  position: relative;
  padding-left: 36px; /* 為SVG圖標留出空間 */
  min-height: 30px;
  display: flex;
  align-items: center;
  //font-size: 24px;
  //color: #2196F3;
}

/* SVG星星圖標 */
#main_loading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='35' fill='none' stroke='%23e0f7fa' stroke-width='3' stroke-dasharray='8 3' opacity='0.7'%3E%3CanimateTransform attributeName='transform' attributeType='XML' type='rotate' from='0 50 50' to='360 50 50' dur='20s' repeatCount='indefinite'/%3E%3C/circle%3E%3Cg%3E%3Cpath d='M50,25 L55,45 L75,50 L55,55 L50,75 L45,55 L25,50 L45,45 Z' fill='%232196F3'%3E%3Canimate attributeName='fill' values='%232196F3;%2303A9F4;%2300BCD4;%2303A9F4;%232196F3' dur='3s' repeatCount='indefinite'/%3E%3Canimate attributeName='opacity' values='1;0.8;1' dur='2s' repeatCount='indefinite'/%3E%3C/path%3E%3Cpath d='M50,20 L52,45 L80,50 L52,55 L50,80 L48,55 L20,50 L48,45 Z' fill='none' stroke='%2303A9F4' stroke-width='1.5'%3E%3Canimate attributeName='stroke' values='%2303A9F4;%2300BCD4;%234FC3F7;%2300BCD4;%2303A9F4' dur='4s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-opacity' values='0.9;0.4;0.9' dur='3s' repeatCount='indefinite'/%3E%3C/path%3E%3C/g%3E%3Cg%3E%3Ccircle cx='32' cy='32' r='3.5' fill='%234FC3F7'%3E%3Canimate attributeName='fill' values='%234FC3F7;%23B3E5FC;%234FC3F7' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='opacity' values='0;1;0' dur='1.5s' repeatCount='indefinite' begin='0.2s'/%3E%3C/circle%3E%3Ccircle cx='68' cy='32' r='3' fill='%234FC3F7'%3E%3Canimate attributeName='fill' values='%234FC3F7;%23B3E5FC;%234FC3F7' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='opacity' values='0;1;0' dur='1.5s' repeatCount='indefinite' begin='0.6s'/%3E%3C/circle%3E%3Ccircle cx='68' cy='68' r='3.5' fill='%234FC3F7'%3E%3Canimate attributeName='fill' values='%234FC3F7;%23B3E5FC;%234FC3F7' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='opacity' values='0;1;0' dur='1.5s' repeatCount='indefinite' begin='1s'/%3E%3C/circle%3E%3Ccircle cx='32' cy='68' r='3' fill='%234FC3F7'%3E%3Canimate attributeName='fill' values='%234FC3F7;%23B3E5FC;%234FC3F7' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='opacity' values='0;1;0' dur='1.5s' repeatCount='indefinite' begin='1.4s'/%3E%3C/circle%3E%3C/g%3E%3Cpath d='M20,50 L40,50' stroke='%234FC3F7' stroke-width='1.5' stroke-dasharray='10 3' opacity='0.9'%3E%3Canimate attributeName='stroke' values='%234FC3F7;%2381D4FA;%234FC3F7' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-13' dur='1s' repeatCount='indefinite'/%3E%3C/path%3E%3Cpath d='M60,50 L80,50' stroke='%234FC3F7' stroke-width='1.5' stroke-dasharray='10 3' opacity='0.9'%3E%3Canimate attributeName='stroke' values='%234FC3F7;%2381D4FA;%234FC3F7' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-13' dur='1s' repeatCount='indefinite'/%3E%3C/path%3E%3Cpath d='M50,20 L50,40' stroke='%234FC3F7' stroke-width='1.5' stroke-dasharray='10 3' opacity='0.9'%3E%3Canimate attributeName='stroke' values='%234FC3F7;%2381D4FA;%234FC3F7' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-13' dur='1s' repeatCount='indefinite'/%3E%3C/path%3E%3Cpath d='M50,60 L50,80' stroke='%234FC3F7' stroke-width='1.5' stroke-dasharray='10 3' opacity='0.9'%3E%3Canimate attributeName='stroke' values='%234FC3F7;%2381D4FA;%234FC3F7' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-13' dur='1s' repeatCount='indefinite'/%3E%3C/path%3E%3Ccircle cx='50' cy='50' r='42' fill='none' stroke='%23E1F5FE' stroke-width='1' opacity='0.4'%3E%3Canimate attributeName='r' values='42;45;42' dur='3s' repeatCount='indefinite'/%3E%3Canimate attributeName='opacity' values='0.4;0.1;0.4' dur='3s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* 省略號動畫 */
#main_loading::after {
  content: '';
  animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
  0% { content: ''; }
  25% { content: '.'; }
  50% { content: '..'; }
  75% { content: '...'; }
}

.history_list {
  width: 100%;
  height: 90%;
  z-index: 999;
  color: #B9B9B9;
  overflow-y: scroll;
  list-style: none;
  counter-reset: my-counter; }
  .history_list li {
    counter-increment: my-counter;
    position: relative;
    padding-left: 26px; }
    .history_list li::before {
      content: counter(my-counter) ".";
      position: absolute;
      top: 16px;
      left: 0;
      color: #B9B9B9; }

.nav_toggle {
  position: fixed;
  cursor: pointer;
  z-index: 99;
  right: 0;
  top: 60px;
  width: 60px;
  height: 60px;
  background-color: white;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  -webkit-box-shadow: 0 0px 12px #DFDFDF;
  box-shadow: 0 0px 12px #DFDFDF;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
  .nav_toggle:hover {
    -webkit-box-shadow: 0 0px 16px rgba(185, 185, 185, 0.8);
    box-shadow: 0 0px 16px rgba(185, 185, 185, 0.8); }
  .nav_toggle:hover img {
    opacity: 0.6; }
  .nav_toggle img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }

.side_nav.slide_open {
  -webkit-box-shadow: -4px 0px 48px 0px rgba(0, 0, 0, 0.4);
  box-shadow: -4px 0px 48px 0px rgba(0, 0, 0, 0.4);
  right: 0; }

.section {
  max-width: 1440px;
  margin: 32px auto; }

.loading-text::after {
  content: attr(data-dots); }

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #1A1A1A;
  padding: 80px 20px 40px; }
  footer h5 {
    max-width: 700px;
    text-align: center;
    font-weight: 300;
    line-height: 160%;
    color: white;
    margin-bottom: 20px; }
  footer span {
    color: white; }
  footer a {
    font-size: 16px;
    font-weight: 400; }

@media (max-width: 440px) {
  .section {
    margin-top: 40px;
    margin-bottom: 40px; }
  .nav_list {
    padding: 10px 24px;
    gap: 20px; }
    .nav_list menu {
      gap: 8px; }
  .side_nav {
    width: 100%; }
    .side_nav a img {
      opacity: 0.8; }
  footer h5, footer a {
    font-size: 14px; } }

.index h1 {
  text-align: center; }

.index h3 {
  text-align: center;
  margin-top: 60px; }

.search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .search-form input {
    width: 100%;
    max-width: 300px;
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #000;
    margin-bottom: 12px; }

.buttons {
  margin-left: 8px; }
  .buttons button {
    font-size: 18px;
    padding: 8px 30px;
    background-color: #FF5723;
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer; }

#reset-btn {
  background-color: #1A1A1A; }

.question_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 24px; }
  .question_list .question_card {
    margin: 0 16px 60px;
    text-decoration: none;
    width: 30%; }
    .question_list .question_card:hover .cover img {
      width: 108%;
      height: 108%; }
    .question_list .question_card:hover h4 {
      color: ##3C5998; }
  .question_list .cover {
    border-radius: 12px;
    width: 100%;
    padding-top: 75%;
    min-height: 140px;
    background-color: #DFDFDF;
    overflow: hidden; }
    .question_list .cover img {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover;
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s; }
  .question_list h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 120%;
    margin-top: 12px;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }

@media (max-width: 440px) {
  .index h1 {
    font-size: 26px; }
  .index h3 {
    font-size: 20px; }
  .question_list .question_card {
    width: 100%; }
    .question_list .question_card .cover {
      height: 200px; } }

.reading_width {
  max-width: 800px;
  margin: 0 auto; }

.article {
  max-width: 1440px;
  min-height: calc(100vh - 248px);
  padding: 0px 64px;
  margin: 0 auto; }
  .article:nth-of-type(n+2) {
    border-top: 2px solid #000; }

.label {
  font-weight: 700;
  color: #959595;
  margin-bottom: 16px; }
  .label.note::after {
    content: ' / Powered by Mlytics AI';
    font-weight: 400;
    font-size: 14px;
    color: #B9B9B9; }
#question_area > h3{
 color: #FFAE00;
}

@media (max-width: 440px) {
  .article {
    padding: 0px 24px; } }

.frame {
  position: relative; }
  .frame:before {
    content: '';
    width: 28px;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(white), to(rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(left, white, rgba(255, 255, 255, 0));
    background: -o-linear-gradient(left, white, rgba(255, 255, 255, 0));
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1; }
  .frame:after {
    content: '';
    width: 28px;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(white));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), white);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0), white);
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1; }

.data_source {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll; }

.data_card {
  min-width: 28vw;
  max-width: 28vw;
  padding: 0 28px 16px;
  border-right: 1px solid #DFDFDF;
  text-decoration: none; }
  .data_card:hover h4 {
    color: #3C5998; }
  .data_card h4 {
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    margin-top: 12px;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
  .data_card h5 {
    color: #959595;
    font-weight: 400;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden; }

.prev_btn, .next_btn {
  position: absolute;
  top: -36px;
  z-index: 2;
  color: #757575;
  background-color: rgba(245, 245, 245, 0.5);
  padding: 6px 8px;
  border-radius: 4px;
  border: none;
  font-size: 12px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s; }
  .prev_btn:hover, .next_btn:hover {
    color: #2E2E2E;
    background-color: #F5F5F5; }
  .prev_btn[disabled], .next_btn[disabled] {
    opacity: 0.1;
    cursor: disabled; }

.prev_btn {
  right: 36px; }

.next_btn {
  right: 0px; }

@media (max-width: 600px) {
  .data_card {
    min-width: 50vw;
    max-width: 50vw; } }

@media (max-width: 440px) {
  .data_card {
    min-width: 70vw;
    max-width: 70vw; }
  .prev_btn, .next_btn {
    display: none; } }

.subpageAds{
   text-align: center; 
}

.ad_banner {
  text-align: center; }
  .ad_banner img {
    display: block;
    margin: 0 auto;
    max-width: 100%; }

.ask {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 16px 0;
  gap: 8px;
  border-bottom: 1px solid #D9D9D9;
  cursor: pointer; 
  color: #A8A8A8;}
  .ask:hover{
  border-bottom: 1px solid #B0B0B0; 
  color: #433000;}
  .ask:hover h4 {
    //color: #433000;
    }
  .ask h4 {
    font-weight: 400;
    line-height: 140%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; 
    color: #6F5616;}

@media (max-width: 440px) {
  h3[data-i18n-key="read_more"] {
    margin-bottom: 8px; }
  .ask h4 {
    font-size: 18px; } }

.interactive {
  text-align: center;
  margin: 60px auto; }
  .interactive > h4 {
    font-weight: 600; }
  .interactive .card {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 40px 60px;
    margin-top: 12px;
    border-radius: 20px;
    gap: 20px 0;
    background-color: rgba(245, 245, 245, 0.5); }

.data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 40px; }
  .data img {
    display: block;
    margin-right: 8px; }

.clickable {
  cursor: pointer; }

.thumb-down {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.fill {
  position: absolute;
  opacity: 0; }

.clickable:hover .fill {
  opacity: 1; }

@media (max-width: 440px) {
  .interactive {
    margin-bottom: 20px; }
    .interactive h4 {
      margin-bottom: 20px; }
    .interactive .card {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: start;
      margin-top: 0px;
      padding: 20px; }
      .interactive .card .data {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-right: 48px;
        margin-bottom: 9px;
        margin-top: 9px; } }

.form-container {
  display: none;
  width: 100%;
  margin-top: 20px; }
  .form-container textarea {
    width: 100%;
    min-width: 300px;
    max-width: 600px;
    height: 160px;
    min-height: 120px;
    max-height: 360px;
    padding: 8px 12px;
    font-size: 16px; }
  .form-container .button {
    margin-top: 10px;
    margin-bottom: 0px; }
  .form-container button {
    font-size: 16px;
    padding: 8px 20px;
    margin: 0 12px;
    cursor: pointer; }
  .form-container .cancel {
    background-color: #fff;
    border: none; }
  .form-container .submit {
    background-color: #1A1A1A;
    color: white; }

.submit_feedback {
  display: none;
  margin-bottom: 80px; }

@media (max-width: 440px) {
  .form-container {
    margin-top: 0; }
    .form-container textarea {
      min-width: 100%; } }

.performance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0; }
  .performance .data {
    margin-bottom: 20px;
    vertical-align: top; }
    .performance .data h5 {
      font-weight: 400;
      margin-right: 8px; }
  .performance a img {
    width: 40px;
    height: 40px; }

@media (max-width: 440px) {
  .performance {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6px 10px; }
    .performance .data {
      -webkit-box-flex: 1;
      -ms-flex: 1;
      //flex: 1;
      margin-right: 10px; }
      .performance .data a {
        margin-left: 6px;
        margin-right: 6px; } }

.ask.load_more_question > div {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-block;
}

/* 隱藏原本的 SVG 圖示，但保留空間 */
.ask.load_more_question > div img[src$="add.svg"] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  z-index: 1;
}

/* 疊加一個新的 + SVG 用 currentColor 可動態控制色 */
.ask.load_more_question > div::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23A8A8A8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  pointer-events: none;
  z-index: 2;
}
.ask.load_more_question:hover > div::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23433000' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
}


