@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC:100,300,400,500,700,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap");
* {
  font-family: "Lato", sans-serif, "Microsoft JhengHei", \5FAE\8EDF\6B63\9ED1\9AD4, PMingLiU, \65B0\7D30\660E\9AD4, sans-serif;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

p {
  line-height: 1.8;
}

a {
  text-decoration: none;
  outline: none;
}

html, body {
  margin: 0;
  padding: 0;
  background-color:#1d1d1d;
}

html {
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  position: relative;
  background-color: var(--body-bg);
  overflow-x: hidden;
  -webkit-transition: all .35s;
  transition: all .35s;
}

main {
  position: relative;
}

.menu {
  position: relative;
  background-color: var(--inner-top-bg);
  z-index: 11;
  width: 100%;
}

.menu_topic {
  margin-top: 20px;
  float: right;
}

.menu_topic li {
  padding: 10px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  float: left;
  color: var(--menu-topic-txt);
}

.menu_topic li a {
  color: var(--menu-topic-txt);
  width: 100%;
  height: 100%;
  display: block;
}

.menu_topic li a:hover {
  color: var(--menu-topic-txt-over);
}

.menu_topic .active {
  color: #fff;
}

.menu_topic:after {
  clear: both;
  content: "";
  display: table;
}

.menu:after {
  clear: both;
  content: "";
  display: table;
}

@media only screen and (max-width: 1280px) {
  .menu:before {
    display: none;
  }
}

@media only screen and (max-width: 900px) {
  .menu {
    display: none;
  }
}

.wrapper {
  position: relative;
  overflow-x: hidden;
}

.container {
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.container:after {
  clear: both;
  content: "";
  display: table;
}

@media only screen and (max-width: 1280px) {
  .container {
    max-width: 900px;
  }
}

.articleBox {
  display: block;
  width: 300px;
}

.articleBox-img {
  width: 300px;
  height: 154px;
  overflow: hidden;
}

.articleBox-img img {
  width: 100%;
  height: auto;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.articleBox h5 {
  color: var(--article-title-text);
  font-size: 20px;
  margin-top: 16px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.articleBox h5.white {
  color: #fff;
}

.articleBox-time {
  position: relative;
  display: block;
  margin-top: 10px;
  padding-left: 20px;
  background: url("../img/clock.png") 0 50% no-repeat;
  background-size: 13px;
  color: var(--article-time-text);
  font-size: 14px;
}

.writer {
  color: #808080;
  font-size: 15px;
}

.writer__img {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.writer__img img {
  width: 100%;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.writer__name, .writer__time {
  font-weight: 300;
}

.writer__name {
  padding-right: 10px;
  border-right: 1px solid #808080;
  margin: 0 10px;
}

@media only screen and (max-width: 414px) {
  .writer__img {
    width: 30px;
    height: 30px;
  }
  .writer__name, .writer__time {
    font-size: 12px;
  }
  .writer__name {
    padding-right: 5px;
    margin: 0 5px;
  }
}

.moreBtn {
  background-color: var(--more-btn);
  padding: 30px 0;
  text-align: center;
  cursor: pointer;
}

.moreBtn span {
  color: #fff;
  font-size: 18px;
}

@media only screen and (max-width: 768px) {
  .moreBtn {
    padding: 20px 0;
  }
  .moreBtn span {
    font-size: 16px;
  }
}

.others {
  background-color: var(--inner-other-bg);
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.others-container li {
  padding: 40px 150px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.others-container li:not(:last-child) {
  border-bottom: 1px solid var(--inner-other-border);
}

.others .itemBox {
  position: relative;
  display: block;
  line-height: 1.45;
}

.others .itemBox__img {
  float: left;
  width: 380px;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.others .itemBox__img img {
  width: 100%;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.others .itemBox_txt {
  float: left;
  height: 200px;
  padding: 0 40px;
  width: calc(100% - 380px);
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.others .itemBox_txt h3 {
  color: #fff;
  font-size: 27px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: normal;
}

.others .itemBox_txt__index {
  font-size: 16px;
  color: #959595;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 5px 0;
}

.others .itemBox_txt-writer {
  position: relative;
  margin-top: 20px;
  color: #fff;
}

.others .itemBox:after {
  clear: both;
  content: "";
  display: table;
}

@media only screen and (max-width: 1280px) {
  .others-container li {
    padding: 40px 20px;
  }
}

@media only screen and (max-width: 768px) {
  .others {
    padding: 0 20px 40px;
  }
  .others-container li {
    padding: 20px 0px;
  }
  .others .itemBox__img {
    position: relative;
    float: none;
    width: 100%;
    height: calc(47.5vw - 40px);
  }
  .others .itemBox_txt {
    float: none;
    height: auto;
    padding: 20px 0px 0;
    width: 100%;
  }
  .others .itemBox_txt h3 {
    font-size: 20px;
    -webkit-line-clamp: none;
    line-clamp: none;
    overflow: auto;
    display: block;
  }
  .others .itemBox_txt__index {
    display: none;
  }
}

.pages {
  background-color: var(--page-bg);
  position: relative;
  width: 100%;
  height: 60px;
}

.pages-prev, .pages-next {
  font-size: 14px;
  position: absolute;
  width: 180px;
  top: 0;
  text-align: left;
}

.pages-prev a, .pages-next a {
  color: var(--page-text-over);
  padding: 20px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
}

.pages-prev a:hover, .pages-next a:hover {
  background-color: var(--page-bg-over);
}

.pages-next {
  right: 0;
  text-align: right;
}

.pages-num {
  text-align: center;
}

.pages-num li {
  display: inline-block;
}

.pages-num li a {
  display: block;
  padding: 20px;
  color: var(--page-text);
}

.pages-num li a:hover {
  color: var(--page-text-over);
  background-color: var(--page-bg-over);
}

.pages-num li.current a {
  color: var(--page-text-over);
}

@media only screen and (max-width: 900px) {
  .pages-prev, .pages-next {
    width: 80px;
  }
}

@media screen and (max-width: 640px) {
  .pages {
    height: auto;
  }
  .pages-prev, .pages-next {
    position: relative;
    float: left;
    width: 50%;
  }
  .pages-num {
    width: 100%;
  }
  .pages-num li {
    width: 10%;
  }
  .pages-num li a {
    padding: 10px 10px;
  }
}

.progress-container {
  background-color: transparent;
  height: 0.3em;
  width: 100%;
  z-index: 99999;
  position: fixed;
  top: 0;
}

.progress-bar {
  height: 0.3em;
  width: 0%;
  z-index: 999;
  background: var(--progressbar-bg);
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

/* Jeffrey Add ----*/
hr {
  display: block;
  unicode-bidi: -webkit-isolate;
  unicode-bidi: isolate;
  -webkit-margin-before: 0.5em;
          margin-block-start: 0.5em;
  -webkit-margin-after: 0.5em;
          margin-block-end: 0.5em;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
  overflow: hidden;
  border-style: inset;
  border-width: 1px;
}

.article-text p {
  font-size: 1.2em;
  line-height: 1.6em;
}

.article-content h3 {
  color: #FFFFFF;
  font-size: 2.4em;
  line-height: 1.4em;
  margin-bottom: 25px;
}

.article-photo {
  position: relative;
  margin-bottom: 30px;
}

.article-photo .large-photo {
  position: absolute;
  left: 15px;
}

.article-photo .photo-number {
  position: absolute;
  left: 15px;
}

.circle-group {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 30px;
}

.article-content p a {
  color: #9c7676;
}

.article-content br {
  /* 2018-08-19 jeffrey update */
  margin: 8px 0px;
  content: " ";
  display: block;
}

p span.caption {
  border-top: 1px solid #d5d5d5;
  margin-top: 20px;
  width: 227px;
  height: 1px;
  color: #d5d5d5;
  display: block;
  background: #d5d5d5;
}
/*# sourceMappingURL=all.css.map */