.MyFollow .fas.fa-heart{
    color: red !important;
}
.gray-btn {
  border: medium none;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  margin-top: 20px;
  padding: 10px 30px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 300ms ease-in 0s;
  -o-transition: all 300ms ease-in 0s;
  transition: all 300ms ease-in 0s;
  cursor: pointer;
  border-radius: 4px;
  background: #ddd;
  color: #737373; }
  .gray-btn:hover {
    background: #e76667;
    color: #fff; }

.footer{
  /*position: fixed;*/
  bottom: 0;
  width: 100%;
}

/* 跑馬燈樣式 (Marquee Styles) - 一次只顯示一筆 */
.header .header-top_text {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f5f5f5;
  padding:0;
  height: 32px;
  line-height: 32px;
}

.header .header-top_text .marquee-wrapper {
  position: relative;
  width: 100%;
  height: 32px;
  overflow: hidden;
}

.header .header-top_text .marquee-content {
  position: relative;
  width: 100%;
  height: 32px;
}

.header .header-top_text .marquee-content .marquee-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 0 30px;
  font-size: 14px;
  color: #333;
  opacity: 0;
  visibility: hidden;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 1;
  pointer-events: none;
}

/* 顯示中的項目 */
.header .header-top_text .marquee-content .marquee-item[style*="opacity: 1"],
.header .header-top_text .marquee-content .marquee-item[style*="opacity:1"] {
  z-index: 2;
  pointer-events: auto;
}

/* 跑馬燈超連結樣式 */
.header .header-top_text .marquee-content .marquee-item .marquee-link {
  color: #333;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  transition: color 0.3s ease;
}

.header .header-top_text .marquee-content .marquee-item .marquee-link:hover {
  color: #007bff;
  text-decoration: underline;
}

/* 滑鼠懸停時暫停動畫 */
.header .header-top_text:hover .marquee-content .marquee-item {
  animation-play-state: paused !important;
}

/* 跑馬燈淡入淡出動畫 (Marquee Fade Animation) - 每個項目顯示 3 秒 */
@keyframes marquee-fade {
  0% {
    opacity: 0;
    transform: translateX(20px);
    visibility: hidden;
    z-index: 1;
  }
  2% {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    z-index: 2;
  }
  98% {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    z-index: 2;
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
    visibility: hidden;
    z-index: 1;
  }
}