@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&family=Poppins:wght@400;600;700&display=swap");
.popEditorArea .btnClose::before, .popEditorArea .btnClose::after, .popEditorArea .btnClose {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.editorBox {
  position: relative;
  z-index: 3;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (min-width: 641px) {
  .editorBox {
    padding: 90px 0;
  }
}
@media (max-width: 640px) {
  .editorBox {
    padding: 50px 0;
  }
}
@media (min-width: 1181px) {
  .editorBox.main {
    padding: 120px 0;
  }
}
@media (min-width: 641px) and (max-width: 1180px) {
  .editorBox.main {
    padding: 70px 0;
  }
}
.editorBox.main:not(.txtBlack) {
  color: #fff;
}
@media (max-width: 960px) {
  .editorBox.main:not(.txtBlack)::before {
    content: "";
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.2);
  }
}
.editorBox .txtWhite {
  color: #fff;
}

/*****彈跳視窗*****/
.popEditorArea {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
@media (min-width: 1181px) {
  .popEditorArea {
    padding-top: 50vh;
  }
}
@media (min-width: 641px) and (max-width: 1180px) {
  .popEditorArea {
    padding: 30px 50px 0;
  }
}
@media (max-width: 640px) {
  .popEditorArea {
    padding: 30px 30px 0;
  }
}
@media (max-width: 400px) {
  .popEditorArea {
    padding: 30px 20px 0;
  }
}
.popEditorArea.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (min-width: 1181px) {
  .popEditorArea.show {
    padding-top: 20vh;
  }
}
.popEditorArea .popEditorMask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.popEditorArea .popEditorBox {
  display: none;
  position: relative;
  width: 100%;
  max-width: 900px;
  min-height: 100vh;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #fff;
}
.popEditorArea .btnClose {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: #d6000f;
  cursor: pointer;
}
.popEditorArea .btnClose::before, .popEditorArea .btnClose::after {
  content: "";
  position: absolute;
  top: calc(50% - 9px);
  left: calc(50% - 1px);
  width: 2px;
  height: 18px;
  background-color: #fff;
}
.popEditorArea .btnClose::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.popEditorArea .btnClose::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popEditorArea .btnClose:hover {
  background-color: #000;
}
.popEditorArea .btnClose:hover::before, .popEditorArea .btnClose:hover::after {
  background-color: #fff;
}
@media (min-width: 641px) {
  .popEditorArea .btnClose:hover::before {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .popEditorArea .btnClose:hover::after {
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
  }
}

.timelineList {
  position: relative;
}
.timelineList::before {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: calc(100% - 10px);
  background-color: #f2f2f2;
}
@media (min-width: 641px) {
  .timelineList::before {
    left: calc(50% - 1px);
  }
}
@media (max-width: 640px) {
  .timelineList::before {
    left: 0;
  }
}
.timelineList .contentBuilder .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 501px) {
  .timelineList .contentBuilder .column {
    padding-left: 45px;
  }
}
@media (max-width: 500px) {
  .timelineList .contentBuilder .column {
    padding-left: 35px;
  }
}
@media (min-width: 641px) {
  .timelineList .contentBuilder .year {
    padding-right: 50px;
    text-align: right;
  }
  .timelineList .contentBuilder .column.imgFull {
    padding-left: 1rem;
    padding-right: 40px;
  }
}
@media (max-width: 640px) {
  .timelineList .contentBuilder .year {
    padding-left: 20px;
  }
}
.timelineList li {
  position: relative;
}
@media (min-width: 961px) {
  .timelineList li {
    margin-bottom: 30px;
  }
}
@media (max-width: 960px) {
  .timelineList li {
    margin-bottom: 10px;
  }
}
.timelineList li::before {
  content: "";
  position: absolute;
  height: 1px;
  border-bottom: 1px dotted #545454;
}
@media (min-width: 641px) {
  .timelineList li::before {
    top: 30px;
    left: calc(50% - 60px);
    width: 60px;
  }
}
@media (max-width: 640px) {
  .timelineList li::before {
    top: 40px;
    left: 0;
    width: 30px;
  }
}
.timelineList li::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #d6000f;
  -webkit-box-shadow: 0 0 0 5px rgba(214, 0, 15, 0.2), 0 0 0 8px rgba(214, 0, 15, 0.1);
          box-shadow: 0 0 0 5px rgba(214, 0, 15, 0.2), 0 0 0 8px rgba(214, 0, 15, 0.1);
  background-color: #fff;
}
@media (min-width: 641px) {
  .timelineList li::after {
    top: calc(30px - 7px);
    left: calc(50% - 7px);
  }
}
@media (max-width: 640px) {
  .timelineList li::after {
    top: calc(40px - 7px);
    left: -7px;
  }
}
@media (min-width: 641px) {
  .timelineList.reverse > li:nth-child(even)::before {
    left: 50%;
  }
  .timelineList.reverse > li:nth-child(even) .contentBuilder .year {
    padding-right: 0;
    padding-left: 50px;
    text-align: left;
  }
  .timelineList.reverse > li:nth-child(even) .contentBuilder .column:not(.imgFull) {
    padding-left: 1rem;
    padding-right: 40px;
    text-align: right;
  }
  .timelineList.reverse > li:nth-child(even) .contentBuilder .column:not(.imgFull) strong {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .timelineList.reverse > li:nth-child(even) .contentBuilder .column.imgFull {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-left: 40px;
    padding-right: 1rem;
  }
}