@charset "utf-8";
/* CSS Document */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* outline: solid #f00 1px !important;
  background: #000 !important;
  color: #fff !important; */
}
html {
  font-size: 62.5%;
  /* scroll-behavior: smooth; */
}
body {
  margin: 0px;
  padding: 0px;
  background: url("images/bg-intro.jpg") top fixed;
  /* 　//設定背景圖片的呈現方式.jpg */
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center top;
}
.main {
  font-family: "Noto Sans TC", sans-serif;
}
.main-container {
  max-width: 120rem;
  padding: 0 4.6rem;
  margin: 0 auto;
  letter-spacing: 0.2rem;
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  color: #000;
}
.span-inline-block {
  display: inline-block;
}
.nowrap {
  white-space: nowrap;
}
.scaled {
  transition: all 0.3s;
  cursor: pointer;
}
.scaled:hover,
.scaled:active {
  transform: scale(1.1);
}
.scaled2 {
  transition: all 0.3s;
  cursor: pointer;
}
.scaled2:hover,
.scaled2:active {
  transform: scale(1.05);
}

/*****************************/
/* SECTION HERO */
/*****************************/
.section-hero {
  width: 100%;
  background-image: url(images/bg-hero.jpg);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color: #fdf4f0;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 33rem;
}
.hero {
  text-align: right;
}
.hero-title-img {
  width: 75rem;
  margin-bottom: 1.4rem;
}
.hero-title-center {
  display: none;
}
.hero-tag-flex {
  display: inline-flex;
  gap: 2.4rem;
}
.hero-tag {
  display: inline-block;
  color: #fff;
  font-size: 2.2rem;
  background-color: rgba(43, 16, 31, 0.9);
  border-radius: 0.4rem;
  padding: 0.2rem 1rem;
}
.hero-promotion-flex {
  display: inline-flex;
  padding: 0 1.2rem;
  background-color: rgba(239, 44, 40, 0.7);
  border-radius: 0.4rem;
  margin-top: 1.4rem;
  gap: 0.2rem;
}
.promotion-ion-icon {
  width: 3.2rem;
  height: 3.2rem;
  color: #fce36e;
  padding-top: 1rem;
}
.hero-promotion {
  display: inline-block;
  color: #fff;
}
.promotion-bg {
  font-size: 3rem;
  font-weight: 700;
  color: #fce36e;
}
.hero-note {
  display: inline-block;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.2rem;
  line-height: 1.7;
  margin-left: 8rem;
  margin-top: 1rem;
  background-color: rgba(239, 44, 40, 0.5);
  border-radius: 0.4rem;
  padding: 0.2rem 1rem;
}
.hero-intro {
  color: #fff;
  padding: 4.6rem;
  background-color: rgba(148, 15, 6, 0.7);
  border-radius: 1rem;
  max-width: 65rem;
  margin-top: 8rem;
  text-align: justify;
}

/*****************************/
/* SECTION SACRIFICE*/
/*****************************/
.section-sacrifice {
  width: 100%;
  /* background-image: url(images/bg-hero.jpg); */
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 9rem;
}
.sacrifice-intro {
  text-align: left;
  color: #fff;
}
.sacrifice-title-img {
  width: 33rem;
}
.sacrifice-title-descrip {
  color: #fff;
}
.sacrifice-grid {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
  row-gap: 4.6rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 8rem;
}
.sacrifice-book-grid-3 {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  row-gap: 4.6rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 8rem;
}
.sacrifice-book-grid-2 {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem;
  row-gap: 4.6rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 8rem;
}
.sacrifice-portrait-img {
  width: 48rem;
}
.sacrifice-text-box {
  text-align: left;
}
.sacrifice-text-bg {
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
  color: #fff;
  font-size: 4.4rem;
  margin-bottom: 3.2rem;
  line-height: 1.2;
}
.sacrifice-text-red {
  color: #dc1a1b;
}
.sacrifice-text-grey {
  color: #bbb;
}
.sacrifice-text {
  color: #ccc;
}
.margin-bottom-sm {
  margin-bottom: 2.4rem;
}
.margin-bottom-md {
  margin-bottom: 4.6rem;
}
.margin-bottom-lg {
  margin-bottom: 9rem;
}
.sacrifice-more {
  color: #000;
  font-weight: 800;
  text-align: right;
  padding: 1rem 1.2rem;
  margin-right: 3.2em;
  margin-bottom: 3.2rem;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(252, 227, 110, 0.8) 100%
  );
  transition: all 0.3s;
}
.sacrifice-more:hover,
.sacrifice-more:active {
  color: #fff;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(151, 1, 1, 0.8) 100%
  );
}

/*****************************/
/* SECTION YELLOW*/
/*****************************/
.section-yellow {
  width: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(146, 14, 9, 0.6) 35%,
    rgba(252, 227, 110, 0.7) 85%,
    rgba(146, 14, 9, 0.6) 100%
  );
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  padding: 9rem 0;
}
.china-pic-set {
  position: relative;
}
.china-pic {
  position: absolute;
  /* z-index: -1; */
}
.china-book-pic {
  display: none;
}
.china-pic-left {
  top: -4.6rem;
  left: 0;
}
.china-pic-right {
  top: -4.6rem;
  right: 0;
}
.china-pic-img {
  width: 44rem;
}
.china-box-flex {
  display: flex;
}
.china-box-right {
  justify-content: end;
}
.china-box-left {
  justify-content: start;
}
.china-box-flex-column {
  display: flex;
  flex-direction: column;
  max-width: 70rem;
  text-align: left;
  z-index: 1;
}
.china-box-flex-column-sm {
  max-width: 60rem;
}
.china-intro {
  color: #fff;
  z-index: 1;
}
.china-intro-b {
  font-weight: 500;
}
.china-title {
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
  color: #fff;
  font-size: 7.2rem;
  line-height: 1.2;
  z-index: 1;
}
.china-title-yellow {
  color: #fce36e;
}
.china-title-lb {
  color: #d0bfa4;
}
.china-title-dark {
  color: #313133;
}
.china-title-grey {
  color: #676767;
}
.china-book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  position: relative;
  padding-top: 1.4rem;
  z-index: 1;
}
.china-book-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem;
  position: relative;
  padding-top: 1.4rem;
  z-index: 1;
  align-items: center;
  justify-content: center;
}
.span-2 {
  grid-column: span 2;
}
.book-img {
  height: 30rem;
}
.book-img-horizontal {
  height: 24rem;
}
.more {
  color: #000;
  font-weight: 800;
  text-align: right;
  padding: 0.6rem 1.2rem;
  margin-top: 2.4rem;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(252, 227, 110, 0.8) 100%
  );
  transition: all 0.3s;
}
.more:hover,
.more:active {
  color: #fff;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 1, 1, 0.8) 100%
  );
}
.more-red {
  font-weight: 800;
  text-align: right;
  color: #fff;
  padding: 1rem 1.2rem;
  margin-top: 2.4rem;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(151, 1, 1, 0.8) 100%
  );
  transition: all 0.3s;
}
.more-red:hover,
.more-red:active {
  color: #000;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(252, 227, 110, 0.8) 100%
  );
}

/*****************************/
/* SECTION RED*/
/*****************************/
.section-red {
  width: 100%;
  background: rgba(146, 14, 9, 0.6);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 9rem;
}
.china-text-bg {
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
  color: #fff;
  font-size: 4.4rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.padding-top {
  padding-top: 9rem;
}

/*****************************/
/* SECTION WHITE */
/*****************************/
.section-white {
  width: 100%;
  background-image: url(images/bg-paper.jpg);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color: #fdf4f0;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  padding: 9rem 0;
}
.china-magazine-box {
  margin-left: 12rem;
}
.china-magazine-title {
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
  color: #313133;
  font-size: 3rem;
  margin-top: 2.4rem;
}
.align-self {
  justify-self: center;
}
.book-set {
  text-align: center;
}
.magazine-more {
  display: inline-block;
  font-weight: 500;
  padding: 0.2rem 1.4rem;
  margin-top: 2.4rem;
  color: #313133;
  background-color: rgba(255, 255, 255, 0.3);
  border: solid 0.1rem #313133;
  transition: all 0.3s;
}
.magazine-more:hover,
.magazine-more:active {
  font-weight: 300;
  color: #fdf4f0;
  border: solid 0.1rem #fdf4f0;
  background-color: rgba(120, 108, 88, 0.7);
}

/*****************************/
/* SECTION DARK
/*****************************/
.section-dark {
  width: 100%;
  /* background-image: url(images/bg-hero.jpg); */
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  padding: 9rem 0;
}
.end-quote-box {
  max-width: 80rem;
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
  margin: 0 auto;
  margin-bottom: 5.2rem;
  margin-top: 12rem;
}
.end-quote {
  color: #fff;
  font-size: 4.4rem;
  margin-bottom: 3.2rem;
  line-height: 1.3;
}
.end-source {
  font-size: 2.4rem;
  color: #ccc;
}
.editor-note {
  color: #ccc;
  font-size: 1.8rem;
  max-width: 70rem;
  margin: 0 auto;
}

/*****************************/
/* TOP */
/*****************************/
.top {
  position: fixed;
  bottom: 10px;
  right: 20px;
  cursor: pointer;
}
