@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
@import 'reset.css';
.cookie-confirm {
  background-color: #D8D8D8;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.cookie-confirm .cc-btn-close {
  position: absolute;
  top: 5px;
  right: 20px;
}
.cookie-confirm .cc-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 20px;
}
.cookie-confirm .cc-wrap .cc-txt {
  color: #454545;
}
.cookie-confirm .cc-wrap .cc-txt .cc-link {
  font-size: inherit;
  color: #004DA1;
  text-decoration: underline;
  display: block;
}
.cookie-confirm .cc-wrap .cc-btn {
  width: 80px;
  text-align: center;
  height: 40px;
  font-size: 16px;
  color: #fff;
  line-height: 40px;
  margin-right: 30px;
  background-color: #F9BE00;
  border-radius: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (min-width: 769px) {
  .cookie-confirm .cc-wrap .cc-txt {
    line-height: 26px;
  }
  .cookie-confirm .cc-wrap .cc-btn:hover {
    background-color: #F99100;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
  }
}
@media screen and (max-width: 768px) {
  .cookie-confirm .cc-wrap .cc-txt {
    font-size: 14px;
    line-height: 22px;
  }
}
body, body * {
  font-family: "Noto Sans TC", "microsoft jhenghei", Verdana, Arial, sans-serif;
}

body {
  overflow-x: hidden;
}
body.fixed {
  overflow: hidden;
}
body * {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body header {
  background: -webkit-gradient(linear, right top, left top, from(rgb(83, 55, 50)), to(rgb(54, 36, 33)));
  background: linear-gradient(to left, rgb(83, 55, 50) 0%, rgb(54, 36, 33) 100%);
  padding: 17px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 1;
}
body header .game__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
body header .game__name img {
  height: 100%;
  vertical-align: top;
  border-radius: 8px;
}
body header .main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
body header .main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
body header .main-nav a:hover, body header .main-nav a.active {
  color: #ffe696;
}
body header .user-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body header .user-panel--logged-in, body header .user-panel--logged-out {
  text-align: center;
  height: 48px;
  line-height: 48px;
  font-size: 16px;
  color: #fff;
  background-color: #F9BE00;
  border-radius: 8px;
  text-decoration: none;
  padding: 0 20px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
body header .user-panel--logged-in:hover, body header .user-panel--logged-out:hover {
  background-color: #F99100;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
body header .user-panel--logged-in a, body header .user-panel--logged-out a {
  text-decoration: none;
  color: #fff;
}
body header .user-panel .user-panel__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 14px;
}
body header .menu-toggle {
  display: none;
}
@media screen and (max-width: 900px) {
  body header {
    padding: 10px 24px;
  }
  body header .main-nav,
  body header .user-panel {
    display: none;
  }
  body header .menu-toggle {
    display: block;
  }
  body header .menu-toggle .close {
    display: none;
  }
  body header .menu-toggle.active .close {
    display: block;
  }
  body header .menu-toggle.active .default {
    display: none;
  }
}
body aside {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  -webkit-transform: translateX(340px);
          transform: translateX(340px);
  -webkit-transition: opacity 0.3s 0.1s, -webkit-transform 0.3s;
  transition: opacity 0.3s 0.1s, -webkit-transform 0.3s;
  transition: opacity 0.3s 0.1s, transform 0.3s;
  transition: opacity 0.3s 0.1s, transform 0.3s, -webkit-transform 0.3s;
}
body aside.active {
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  z-index: 999;
}
body aside .aside-block {
  width: 100%;
  max-width: 340px;
  padding-top: 15px;
  background-color: #fff;
  height: calc(100% - 84px);
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
body aside .aside-block .user-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body aside .aside-block .user-panel--logged-in {
  text-align: center;
  height: 44px;
  line-height: 44px;
  font-size: 16px;
  color: #fff;
  background-color: #F9BE00;
  border-radius: 8px;
  text-decoration: none;
  padding: 0 20px;
}
body aside .aside-block .user-panel--logged-in a {
  text-decoration: none;
  color: #fff;
}
body aside .aside-block .user-panel--logged-out {
  color: #1e1e1e;
  font-size: 18px;
  text-decoration: none;
  position: absolute;
  width: 40px;
  bottom: 100px;
  right: 0;
  left: 0;
  margin: auto;
}
body aside .aside-block .user-panel__name {
  color: #1e1e1e;
  padding: 25px 20px;
  background-color: #F4F4F4;
}
body aside .aside-block .main-nav a {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  font-size: 18px;
  gap: 20px;
  text-decoration: none;
  color: #1e1e1e;
}
@media screen and (max-width: 1000px) {
  body aside {
    top: 60px;
    height: calc(100% - 60px);
  }
}
body footer {
  background-color: #362422;
  border-top: 3px solid #814D35;
  -webkit-box-shadow: 0 -2px 0 0 #5B2B03;
          box-shadow: 0 -2px 0 0 #5B2B03;
  position: relative;
  z-index: 5;
}
body footer .wrap {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body footer .wrap .footer__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
}
body footer .wrap .footer__logos a {
  display: inline-block;
  height: 100%;
}
body footer .wrap .footer__logos a img {
  vertical-align: top;
  height: 100%;
}
body footer .wrap .footer__company-info {
  color: #fff;
  font-size: 12px;
  line-height: 1.6;
}
body footer .wrap .footer__company-info .footer__company span {
  display: block;
}
body footer .wrap .footer__warnings li {
  padding-left: 12px;
  position: relative;
  color: #fff;
  line-height: 1.6;
  font-size: 12px;
}
body footer .wrap .footer__warnings li:after {
  content: "";
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
body footer .wrap .footer__rating {
  width: 45px;
}
body footer .wrap .footer__rating img {
  vertical-align: top;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  body footer .wrap {
    width: 97%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px 10px;
  }
  body footer .wrap .footer__rating {
    position: absolute;
    right: 10px;
    top: 20px;
    width: 40px;
  }
  body footer .wrap .footer__logos {
    width: 100%;
    height: 40px;
  }
  body footer .wrap .footer__warnings {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  body footer .wrap .footer__company-info {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  body footer .wrap .footer__company-info .footer__company {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
body .float-button__top {
  position: fixed;
  right: 20px;
  bottom: 150px;
  width: 45px;
  cursor: pointer;
  z-index: 6;
  opacity: 0;
}
body .float-button__top:hover {
  opacity: 1 !important;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
body .float-button__top img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  body .float-button__top {
    bottom: 20px;
  }
}

article.page__about .about__top {
  background: url(../Images/header-bg-2.jpg) no-repeat center top;
  height: 204px;
}
article.page__about .about__top .top__pd-bg,
article.page__about .about__top .top__mb-bg {
  display: none;
}
article.page__about .about__content {
  background: #fff url(../Images/inner-bg.jpg) no-repeat center top;
}
article.page__about .about__content .about__wrap {
  width: 97%;
  max-width: 1200px;
  overflow: hidden;
  margin: 0 auto;
  overflow: unset;
}
article.page__about .about__content .about__wrap .about__header {
  padding: 60px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 170px;
  margin: auto;
}
article.page__about .about__content .about__wrap .about__header img {
  width: 100%;
  vertical-align: top;
}
article.page__about .about__content .about__wrap .about__tabs {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(8, 149, 169)), to(rgb(0, 106, 121)));
  background: linear-gradient(180deg, rgb(8, 149, 169) 0%, rgb(0, 106, 121) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  border-radius: 30px;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  position: sticky;
  top: 0;
  z-index: 5;
}
article.page__about .about__content .about__wrap .about__tabs .about__tabs-item {
  font-size: 25px;
  color: #fff;
  width: 125px;
  height: 57px;
  line-height: 57px;
  text-align: center;
  position: relative;
  letter-spacing: 3px;
  cursor: pointer;
}
article.page__about .about__content .about__wrap .about__tabs .about__tabs-item.active:after, article.page__about .about__content .about__wrap .about__tabs .about__tabs-item:hover:after {
  content: "";
  height: 4px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 5px;
  background-color: transparent;
  background-color: #F9BE00;
}
article.page__about .about__content .about__wrap .about__list {
  position: relative;
  margin-bottom: 100px;
}
article.page__about .about__content .about__wrap .about__list .about__list-item {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
  display: none;
}
article.page__about .about__content .about__wrap .about__list .about__list-item.active {
  position: relative;
  z-index: 1;
  opacity: 1;
  display: block;
}
article.page__about .about__content .about__wrap .about__list .about__list-item .about__block {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-columns: minmax(300px, 390px) 20px minmax(630px, 790px);
  grid-template-columns: minmax(300px, 390px) minmax(630px, 790px);
  border-bottom: 1px solid #dfdfdf;
  padding: 35px 0;
  text-decoration: none;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
article.page__about .about__content .about__wrap .about__list .about__list-item .about__block:hover {
  background-color: #FFFFF2;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
article.page__about .about__content .about__wrap .about__list .about__list-item .about__block .about__image {
  width: 100%;
  height: 100%;
}
article.page__about .about__content .about__wrap .about__list .about__list-item .about__block .about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
article.page__about .about__content .about__wrap .about__list .about__list-item .about__block dl {
  line-height: 1.8;
}
article.page__about .about__content .about__wrap .about__list .about__list-item .about__block dl .about__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 18px;
  font-weight: bold;
  color: #1e1e1e;
}
article.page__about .about__content .about__wrap .about__list .about__list-item .about__block dl .about__description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #1e1e1e;
  font-size: 14px;
}
article.page__about .about__content .about__wrap .about__list .about__list-item .about__block dl .about__date {
  color: #00819d;
  font-size: 14px;
}
article.page__about .about__content .about__wrap .about__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 50px 0 100px;
}
article.page__about .about__content .about__wrap .about__pagination .about__page-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
article.page__about .about__content .about__wrap .about__pagination .about__page-arrow--prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
article.page__about .about__content .about__wrap .about__pagination a {
  height: 43px;
  line-height: 43px;
  min-width: 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 15px;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  border-radius: 50%;
  text-decoration: none;
  color: #1e1e1e;
}
article.page__about .about__content .about__wrap .about__pagination a:not(.about__page-arrow).active, article.page__about .about__content .about__wrap .about__pagination a:not(.about__page-arrow):hover {
  background-color: #F9BE00;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  article.page__about .about__top {
    height: unset;
    background: unset;
  }
  article.page__about .about__top .top__pd-bg {
    display: block;
    width: 100%;
  }
  article.page__about .about__top .top__pd-bg img {
    width: 100%;
    vertical-align: top;
  }
}
@media screen and (max-width: 1000px) {
  article.page__about .about__content .about__wrap .about__header {
    padding: 30px 0;
  }
  article.page__about .about__content .about__wrap .about__list .about__list-item .about__block {
    -ms-grid-columns: minmax(180px, 300px) minmax(400px, 530px);
    grid-template-columns: minmax(180px, 300px) minmax(400px, 530px);
  }
}
@media screen and (max-width: 768px) {
  article.page__about .about__top .top__pd-bg {
    display: none;
  }
  article.page__about .about__top .top__mb-bg {
    display: block;
    width: 100%;
  }
  article.page__about .about__top .top__mb-bg img {
    width: 100%;
    vertical-align: top;
  }
  article.page__about .about__top {
    background: unset;
    height: unset;
  }
  article.page__about .about__top .about__mb-bg {
    display: block;
    width: 100%;
    vertical-align: top;
  }
  article.page__about .about__content {
    background: unset;
  }
  article.page__about .about__content .about__wrap {
    width: 100%;
  }
  article.page__about .about__content .about__wrap .about__header {
    display: none;
  }
  article.page__about .about__content .about__wrap .about__tabs {
    border-radius: 0;
    margin-bottom: 0;
  }
  article.page__about .about__content .about__wrap .about__tabs .about__tabs-item {
    width: 25%;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
  }
  article.page__about .about__content .about__wrap .about__list {
    padding: 15px;
    margin-bottom: 0;
  }
  article.page__about .about__content .about__wrap .about__list .about__list-item .about__block {
    -ms-grid-columns: calc(40% - 10px) 10px 60%;
    grid-template-columns: calc(40% - 10px) 60%;
    gap: 10px;
    padding: 20px 0;
  }
  article.page__about .about__content .about__wrap .about__list .about__list-item .about__block dl {
    height: 80px;
  }
  article.page__about .about__content .about__wrap .about__list .about__list-item .about__block dl .about__title {
    font-size: 14px;
    -webkit-line-clamp: 4;
    line-height: 1.4;
  }
  article.page__about .about__content .about__wrap .about__list .about__list-item .about__block dl .about__description, article.page__about .about__content .about__wrap .about__list .about__list-item .about__block dl .about__date {
    display: none;
  }
  article.page__about .about__content .about__wrap .about__pagination {
    margin: 30px 0;
  }
}
article.page__about-notice .notice__top {
  background: url(../Images/header-bg-2.jpg) no-repeat center top;
  height: 204px;
}
article.page__about-notice .notice__top .top__pd-bg,
article.page__about-notice .notice__top .top__mb-bg {
  display: none;
}
article.page__about-notice .notice__content {
  background: #fff url(../Images/inner-bg.jpg) no-repeat center top;
}
article.page__about-notice .notice__content .notice__wrap {
  width: 97%;
  max-width: 1200px;
  overflow: hidden;
  margin: 0 auto;
}
article.page__about-notice .notice__content .notice__wrap .notice__header {
  padding: 60px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 170px;
  margin: auto;
}
article.page__about-notice .notice__content .notice__wrap .notice__header img {
  width: 100%;
  vertical-align: top;
}
article.page__about-notice .notice__content .notice__wrap .notice__layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 40px 265px;
  grid-template-columns: auto 265px;
  gap: 40px;
}
article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__main {
  padding-bottom: 100px;
}
article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__main .notice__detail-title {
  font-size: 30px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 20px;
  font-weight: 500;
}
article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__main .notice__detail-date {
  font-size: 20px;
  color: #027383;
  margin-bottom: 30px;
}
article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__main .notice__detail-line {
  background-color: #006B7B;
  height: 1px;
  width: 100%;
  position: relative;
  margin: 12px auto 40px;
  padding: 0 5px;
}
article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__main .notice__detail-line:before, article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__main .notice__detail-line:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #006B7B;
  top: 0;
  bottom: 0;
  margin: auto;
}
article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__main .notice__detail-line:before {
  right: 2px;
}
article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__main .notice__detail-line:after {
  left: 2px;
}
article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__main .notice__editor {
  line-height: 1.8;
  color: #1e1e1e;
  font-size: 18px;
}
article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__main .notice__editor a {
  color: #0068ff;
}
article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__main .notice__editor img, article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__main .notice__editor iframe {
  max-width: 100%;
  border-radius: 3px;
  margin: 10px 0;
}
article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__main .back-link {
  width: 120px;
  text-align: center;
  height: 48px;
  font-size: 16px;
  color: #fff;
  line-height: 48px;
  margin-top: 20px;
  background-color: #F9BE00;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__main .back-link:hover {
  background-color: #F99100;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__sidebar .notice__section-title {
  color: #027383;
  font-size: 20px;
  padding-bottom: 15px;
  border-bottom: 4px solid #027383;
  margin-bottom: 15px;
}
article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__sidebar .notice__list .card {
  width: 100%;
  display: block;
  text-decoration: none;
  line-height: 1.6;
  font-size: 13px;
  margin-bottom: 15px;
}
article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__sidebar .notice__list .card .card__image {
  width: 100%;
}
article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__sidebar .notice__list .card .card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__sidebar .notice__list .card .card__title {
  color: #1e1e1e;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__sidebar .notice__list .card .card__date {
  color: #707070;
}
@media screen and (max-width: 1024px) {
  article.page__about-notice .notice__top {
    height: unset;
    background: unset;
  }
  article.page__about-notice .notice__top .top__pd-bg {
    display: block;
    width: 100%;
  }
  article.page__about-notice .notice__top .top__pd-bg img {
    width: 100%;
    vertical-align: top;
  }
}
@media screen and (max-width: 1000px) {
  article.page__about-notice .notice__content .notice__wrap .notice__layout {
    display: block;
  }
  article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__main {
    padding-bottom: 50px;
  }
  article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__main .notice__detail-line {
    width: 95%;
  }
  article.page__about-notice .notice__content .notice__wrap .notice__header {
    padding: 30px 0;
  }
  article.page__about-notice .notice__content .notice__wrap .notice__sidebar {
    max-width: 600px;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  article.page__about-notice .notice__top .top__pd-bg {
    display: none;
  }
  article.page__about-notice .notice__top .top__mb-bg {
    display: block;
    width: 100%;
  }
  article.page__about-notice .notice__top .top__mb-bg img {
    width: 100%;
    vertical-align: top;
  }
  article.page__about-notice .notice__content {
    background: unset;
  }
  article.page__about-notice .notice__content .notice__wrap {
    width: 96%;
    margin: 20px auto;
  }
  article.page__about-notice .notice__content .notice__wrap .notice__header {
    display: none;
  }
  article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__main .notice__detail-title {
    font-size: 18px;
  }
  article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__main .notice__detail-line {
    margin: 10px auto 25px;
  }
  article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__main .notice__detail-line:after {
    width: 6px;
    height: 6px;
    left: 0;
  }
  article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__main .notice__detail-line:before {
    width: 6px;
    height: 6px;
    right: 0;
  }
  article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__main .notice__detail-date {
    font-size: 14px;
    margin-bottom: 20px;
  }
  article.page__about-notice .notice__content .notice__wrap .notice__layout .notice__main .notice__editor {
    font-size: 16px;
  }
}