:root {
  /* 預設配色 */
  --shipping-bg-color: #b60000;
  --shipping-footer-bg: #000000;
  --shipping-footer-text: #ffffff;
  --shipping-footer-hover: #FFB8DE;
}

/* Reset */
* {
  box-sizing: border-box;
}

a {
  color: initial;
  transition: all .125s;
  text-decoration: none;
}

a:hover {
  color: initial;
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Microsoft JhengHei', Arial, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header */
.header-wrapper {
  height: 60px;
  border-bottom: 3px solid #ff0087;
  background: #fff;
  text-align: center;
}

.header-wrapper img {
  max-width: 100%;
  height: 100%;
}

/* Main Content - PC */
.SpecialIssue_wrapper {
  box-sizing: border-box;
  margin: 0px auto;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-color: var(--shipping-bg-color);
  padding-bottom: 80px;
}

.article_box {
  padding: 0px;
  text-align: center;
}

.article_box .category,
.article_box .notice {
  width: 1140px;
  margin: 0 auto;
}

.article_box .category img,
.article_box .notice img {
  display: block;
  margin: 0 auto;
}

/* Footer - PC */
.bottombanner {
  position: fixed;
  bottom: 0;
  z-index: 999;
  width: 100%;
  height: 69px;
  background: var(--shipping-footer-bg);
  text-align: center;
}

.bottombanner .list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  height: 100%;
}

.bottombanner .list a {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--shipping-footer-text);
  margin-right: 6rem;
}

.bottombanner .list a:last-child {
  margin-right: 0;
}

.bottombanner .list a i {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.bottombanner .list a i.rotate {
  transform: rotate(-85deg);
  -webkit-transform: rotate(-85deg);
}

.bottombanner .list a:hover {
  color: var(--shipping-footer-hover);
}

/* Mobile wrapper - 預設隱藏 */
.mobile-wrapper {
  display: none;
}

/* 重置 Bootstrap 對 mobile 的影響 */
.mobile-wrapper a {
  color: inherit;
  text-decoration: none;
}

.mobile-wrapper a:hover {
  color: inherit;
  text-decoration: none;
}

/* Footer - Mobile */
.mobile-wrapper .fixed-bottom-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--shipping-footer-bg);
  z-index: 999;
  text-align: center;
}

.mobile-wrapper .fixed-bottom-wrapper .list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  list-style-type: none;
  height: 100%;
  padding: 0;
  margin: 0;
}

.mobile-wrapper .fixed-bottom-wrapper .list a {
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--shipping-footer-text);
}

.mobile-wrapper .fixed-bottom-wrapper .list a i {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  margin-right: 0;
}

.mobile-wrapper .fixed-bottom-wrapper .list a i.rotate {
  transform: rotate(-85deg);
  -webkit-transform: rotate(-85deg);
}

.mobile-wrapper .fixed-bottom-wrapper .list a p {
  margin: 0;
  display: block;
}

/* Responsive - 手機版 */
@media all and (max-width: 768px) {
  /* 隱藏 PC 版內容 */
  .header-wrapper,
  .SpecialIssue_wrapper {
    display: none;
  }

  /* 顯示手機版 */
  .mobile-wrapper {
    display: block;
    background-color: var(--shipping-bg-color);
    padding-bottom: 100px;
  }

  .mobile-wrapper table {
    margin: 0 auto;
  }

  .mobile-wrapper img {
    display: block;
    max-width: 100%;
    height: auto;
  }
}
