@charset "UTF-8";
/*————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————

transform: translate(180px,180px) rotate(-5deg) scale(0.8);
--------------------------------------------------------
transition:all 0.3s ease;

--------------------------------------------------------
animation: fade-In 5s linear 2s infinite;

animation-name:fade-In;
animation-duration:4s;
animation-delay:0s;
animation-iteration-count: infinite;
animation-direction: normal;
animation-timing-function:ease-in-out;
animation-fill-mode:forwards;


@keyframes fade-In {
  from {background-color: red;}
  to {background-color: yellow;}
}
--------------------------------------------------------
border-radius: 25% 10%;
--------------------------------------------------------
http://cubic-bezier.com





————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————*/
.popup__form {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 550;

  --popup_form_input_color: #333;
}

.popup__form .popup__form__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0px;
  left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popup__form .popup__form__wrapper .popup__form__overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
}
.popup__form .popup__form__wrapper .popup__form__container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background-color: #f2f2f1;
  width: 700px;
  max-width: 85vw;
}

.popup__form .popup__form__wrapper .popup__form__container .pc {
  display: none;
}

.popup__form .popup__form__wrapper .popup__form__container .sp {
  display: block;
}

.popup__form .popup__form__wrapper .popup__form__container .popup__form__container__box {
  width: 310px;
}

.popup__form .popup__form__wrapper .popup__form__container .popup__form__container__box .popup__form__container__title {
  font-size: 17px;
  font-weight: 600;
  padding-left: 10px;
  padding-bottom: 10px;
}

.popup__form .popup__form__wrapper .popup__form__container .popup__form__container__box p {
  padding-left: 0px;
  font-size: 14px;
}

.popup__form .popup__form__wrapper .popup__form__container .popup__form__item__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 310px;
  padding-top: 20px;
}

.popup__form .popup__form__wrapper .popup__form__container .popup__form__item__wrapper .popup__form__item {
  padding-bottom: 12px;
  width: 100%;
}

.popup__form .popup__form__wrapper .popup__form__container .popup__form__item__wrapper .popup__form__item input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 5px;
  height: 30px;
  border: 1px solid #b5b5b5;
  width: 100%;
  color: var(--popup_form_input_color);
  outline: none;
  font-size: 16px;
}

.popup__form .popup__form__wrapper .popup__form__container .popup__form__item__wrapper .popup__form__item input::placeholder {
    color: var(--popup_form_input_color);
}

.popup__form .popup__form__wrapper .popup__form__container .popup__form__item__wrapper .popup__form__item.item__flex {
  display: flex;
}

.popup__form .popup__form__wrapper .popup__form__container .popup__form__item__wrapper .popup__form__item .popup__form__item_a {
    flex: 1;
}
.popup__form .popup__form__wrapper .popup__form__container .popup__form__item__wrapper .popup__form__item .popup__form__item_a:first-child {
    margin-right: 3px;
}
.popup__form .popup__form__wrapper .popup__form__container .popup__form__item__wrapper .popup__form__item .popup__form__item_a:last-child {
    margin-left: 3px;
}

.popup__form .popup__form__wrapper .popup__form__container .popup__form__item__wrapper .popup__form__item .popup__form__item_a select {
  border: 1px solid #b5b5b5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 5px;
  width: 100%;
  height: 30px;
  color: var(--popup_form_input_color);
  font-size: 16px;
}

.popup__form .popup__form__wrapper .popup__form__container .popup__form__item__wrapper .popup__form__item input[name="zipcode"] {
  display: none;
}

.popup__form .popup__form__wrapper .popup__form__container .popup__form__item__img {
  display: none;
  width: 220px;
}

.popup__form .popup__form__wrapper .popup__form__container .popup__form__item__img img {
  width: 86%;
  height: auto;
}

.popup__form .popup__form__wrapper .popup__form__container .popup__form__send {
  text-align: center;
  width: 100%;
}

.popup__form .popup__form__wrapper .popup__form__container .popup__form__send button {
  position: relative;
  width: 140px;
  height: 42px;
  margin: 0 auto;
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 5px;
  border: 0px;
  background-color: #c63637;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popup__form .popup__form__wrapper .popup__form__container .popup__form__send button:hover img {
  margin: 0 0 0 10px;
}

.popup__form .popup__form__wrapper .popup__form__container .popup__form__send button img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  width: 7px;
  height: auto;
  margin: 0 0 0 5px;
}

.popup__form .popup__form__wrapper .popup__form__container .popup__close_btn {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 40px;
  height: 40px;
  text-align: center;
  padding-top: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

.popup__form .popup__form__wrapper .popup__form__container .popup__close_btn img {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.popup__form .popup__form__wrapper .popup__form__container .popup__close_btn:hover img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* 開始投票 popup */
.popup__start__vote {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 550;
}

.popup__start__vote .popup__start__vote__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0px;
  left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popup__start__vote .popup__start__vote__wrapper:before {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
}

.popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container {
  position: relative;
  width: 85vw;
  max-width: 610px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* -webkit-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.43);
          box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.43); */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f2f2f1;
  background-position: 0 50%;
  background-repeat: repeat-y;
  background-size: 200% auto;
}

.popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .pc {
  display: none;
}

.popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .sp {
  display: block;
  width: 315px;
  height: auto;
}

.popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .vote_start_man {
  display: none;
}

.popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .vote_img {
  padding-top: 0px;
  padding-bottom: 0px;
  width: 100%;
}

.popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .vote_img img {
  width: 100%;
  height: auto;
}

.popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .popup__form__container__box {
  width: 310px;
}

.popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .popup__form__container__box .popup__form__container__title {
  font-size: 16px;
  line-height: normal;
  font-weight: 600;
  padding-left: 0px;
  padding-bottom: 10px;
  color: #fff;
  margin: 10px 0 0 0;
}

.popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .popup__form__container__box .popup__form__container__title .color-red {
  color: #d91c28;
}

.popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .popup__form__container__box .popup__form__container__title .color-y {
  color: #fcf451;
}

.popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .popup__form__container__box p {
  padding-left: 0px;
  font-size: 14px;
}

.popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .popup__form__bg {
    width: 100%;
}

.popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .popup__form__send {
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (min-width: 1024px) {
    .popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .popup__form__send {
        bottom: 0.75rem;
    }
}

.popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .popup__form__send button {
  position: relative;
  width: 140px;
  height: 42px;
  margin: 0 auto;
  font-size: 16px;
  color: #a00e10;
  text-align: center;
  line-height: 50px;
  border-radius: 5px;
  border: 0px;
  background-color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .popup__form__send button:hover img {
  margin: 0 0 0 10px;
}

.popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .popup__form__send button img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  width: 10px;
  height: auto;
  margin: 0 0 0 5px;
}

.popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .popup__close_btn {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 40px;
  height: 40px;
  text-align: center;
  padding-top: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

.popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .popup__close_btn img {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .popup__close_btn:hover img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
/*  */

/* 側邊小卡 */
.aside {
    transition: all 0.3s ease;
    z-index: 5;
    position: fixed;
    top: unset;
    bottom: -445px;
    right: 0px;
    width: 100%;

    --aside-p-font-size: 20px;
    --aside-sub-font-size: 16px;
}

.aside .aside__red__text {
    font-family: 'Noto Sans TC';
    color: #941F23;
}

@media only screen and (min-width: 992px) {
    .aside {
        --aside-base-p-font-size: 16px;
        --aside-p-font-size: 14px;
        --aside-strong-font-size: 16px;
        --aside-sub-font-size: 12px;
        --aside-title-font-size: 14px;
        --aside-psTitle-font-size: 16px;
    }
}

.aside .aside__wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.aside .aside__wrapper .aside__header {
  cursor: pointer;
  width: 100%;
  height: auto;
}

.aside .aside__wrapper .aside__header .pc {
  display: none;
}

.aside .aside__wrapper .aside__header .sp {
  width: 100%;
  height: auto;
  display: block;
}

.aside .aside__wrapper .aside__body {
  width: 100%;
  /* height: 360px; */
  background-color: #f2f2f1;
}

.aside .aside__wrapper .aside__body .aside__body__inner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.aside .aside__wrapper .aside__body .aside__body__inner .aside__body__p {
    font-size: var(--aside-p-font-size);
    line-height: 1.25;
    color: #000;
    font-weight: 600;
    text-align: center;
    padding-bottom: 0.25rem;
}

.aside .aside__wrapper .aside__body .aside__body__inner .aside__body__img,
.aside .aside__wrapper .aside__body .aside__body__inner .sub {
  width: 75%;
  display: block;
  margin: 0 auto;
}
.aside .aside__wrapper .aside__body .aside__body__inner .aside__body__img {
  height: auto;
}
.aside .aside__wrapper .aside__body .aside__body__inner .sub {
  text-align: center;
  font-size: var(--aside-sub-font-size);
  line-height: 17px;
  color: #383737;
  padding-top: 0.1rem;
}

.aside .aside__wrapper .aside__body .aside__body__inner .buttons {
  position: relative;
  width: 100%;
  height: auto;
  padding: 20px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.aside .aside__wrapper .aside__body .aside__body__inner .buttons a {
  position: relative;
  width: auto;
  height: auto;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.aside .aside__wrapper .aside__body .aside__body__inner .buttons a:nth-child(1) {
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  color: #fff;
  background-color: #F60025;
  margin-top: 5px;
  margin-right: 10px;
}

.aside .aside__wrapper .aside__body .aside__body__inner .buttons a:nth-child(1):hover {
  background-color: #d61d1a;
}

.aside .aside__wrapper .aside__body .aside__body__inner .buttons a:nth-child(2) {
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  color: #F60025;
  background-color: white;
  margin-top: 5px;
  margin-left: 10px;
}

.aside .aside__wrapper .aside__body .aside__body__inner .buttons a:nth-child(2):hover {
  background-color: #eee;
}

.aside .aside__wrapper .aside__body .hide_br {
  display: none;
}

.aside.aside__on {
  bottom: 0 !important;
}

@media only screen and (min-width: 630px) {
  .popup__form {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
  }
  .popup__form .popup__form__wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0px;
    left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .popup__form .popup__form__wrapper .popup__form__container .pc {
    display: block;
  }
  .popup__form .popup__form__wrapper .popup__form__container .sp {
    display: none;
  }
  .popup__form .popup__form__wrapper .popup__form__container .popup__form__container__box {
    width: 310px;
  }
  .popup__form .popup__form__wrapper .popup__form__container .popup__form__container__box .popup__form__container__title {
    font-size: 17px;
    font-weight: 600;
    padding-left: 15px;
    padding-bottom: 10px;
  }
  .popup__form .popup__form__wrapper .popup__form__container .popup__form__container__box p {
    padding-left: 15px;
    font-size: 14px;
    line-height: 17px;
  }
  .popup__form .popup__form__wrapper .popup__form__container .popup__form__item__img {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    width: 280px;
    z-index: 0;
  }
  .popup__form .popup__form__wrapper .popup__form__container .popup__form__item__img img {
    width: 100%;
    height: auto;
  }
  .popup__form .popup__form__wrapper .popup__form__container .popup__form__item__wrapper {
    position: relative;
    padding-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 310px;
    z-index: 1;
  }
  .popup__form .popup__form__wrapper .popup__form__container .popup__form__item__wrapper .popup__form__item {
    padding-bottom: 14px;
    width: 100%;
  }
  .popup__form .popup__form__wrapper .popup__form__container .popup__form__item__wrapper .popup__form__item input {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5px;
    height: 30px;
    border: 1px solid #b5b5b5;
  }
  .popup__form .popup__form__wrapper .popup__form__container .popup__form__item__wrapper .popup__form__item label {
    font-weight: 600;
    font-size: 17px;
    width: 65px;
    display: inline-block;
  }
  .popup__form .popup__form__wrapper .popup__form__container .popup__form__item__wrapper .popup__form__item input[name="zipcode"] {
    display: none;
  }
  .popup__form .popup__form__wrapper .popup__form__container .popup__form__send {
    text-align: center;
    width: 100%;
  }
  .popup__start__vote {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
  }
  .popup__start__vote .popup__start__vote__wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0px;
    left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .pc {
    display: block;
    width: 345px;
    height: 150px;
  }
  .popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .sp {
    display: none;
  }
  .popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .popup__form__container__box {
    width: 310px;
  }
  .popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .popup__form__container__box .popup__form__container__title {
    font-size: 17px;
    font-weight: 600;
    padding-left: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    line-height: 18px;
  }
  .popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .popup__form__container__box p {
    padding-left: 10px;
    font-size: 14px;
  }
  .popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .vote_start_man {
    position: absolute;
    top: 20px;
    right: 40px;
    width: 230px;
    height: auto;
    z-index: 0;
    display: block;
  }
  .popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .vote_img {
    padding-top: 5px;
    padding-bottom: 15px;
    z-index: 1;
  }
  .popup__start__vote .popup__start__vote__wrapper .popup__start__vote__container .popup__form__send {
    text-align: center;
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .aside {
    bottom: -685px;
  }
  .aside .aside__wrapper .aside__body {
    height: 685px;
  }
}

@media only screen and (min-width: 992px) {
  .aside {
    --aside-width: 335px;

    transition: all 0.3s ease;
    z-index: 1;
    position: fixed;
    top: 50%;
    right: calc(-1 * (var(--aside-width) - 140px));
    bottom: unset;
    width: var(--aside-width);
    height: 240px;
  }
  .aside .aside__wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .aside .aside__wrapper .aside__header {
    cursor: pointer;
    width: 140px;
    height: 260px;
  }
  .aside .aside__wrapper .aside__header .pc {
    display: block;
  }
  .aside .aside__wrapper .aside__header .sp {
    display: none;
  }
  .aside .aside__wrapper .aside__body {
    width: calc(var(--aside-width) - 140px);
    height: 260px;
    background-color: #f2f2f1;
  }
  .aside .aside__wrapper .aside__body .aside__body__inner {
    height: auto;
    padding: 2rem 0.5rem 0.5rem 0.5rem;
  }
  .aside .aside__wrapper .aside__body .aside__body__inner .aside__body__p {
    font-size: var(--aside-base-p-font-size);
    text-align: left;
  }
  .aside .aside__wrapper .aside__body .aside__body__inner .aside__body__p[data-type="non-login"],
  .aside .aside__wrapper .aside__body .aside__body__inner .aside__body__p[data-type="finish-vote"],
  .aside .aside__wrapper .aside__body .aside__body__inner .aside__body__p[data-type="finish-form"] {
    font-size: var(--aside-p-font-size);
  }
  .aside .aside__wrapper .aside__body .aside__body__inner .aside__body__p[data-type="non-login"] strong,
  .aside .aside__wrapper .aside__body .aside__body__inner .aside__body__p[data-type="finish-vote"] strong,
  .aside .aside__wrapper .aside__body .aside__body__inner .aside__body__p[data-type="finish-form"] strong {
    font-size: var(--aside-strong-font-size);
  }
  .aside .aside__wrapper .aside__body .aside__body__inner .sub {
    font-size: var(--aside-sub-font-size);
  }
  .aside .aside__wrapper .aside__body .aside__body__inner .aside__body__img,
  .aside .aside__wrapper .aside__body .aside__body__inner .sub {
    width: 95%;
  }
  .aside .aside__wrapper .aside__body .aside__body__inner .sub {
    text-align: left;
  }
  .aside .aside__wrapper .aside__body .aside__body__inner .aside__body__img {
    max-height: 120px;
    object-fit: contain;
    object-position: left center;
  }
  .aside .aside__wrapper .aside__body .aside__body__inner .buttons {
    padding-top: 0;
  }
  .aside .aside__wrapper .aside__body .aside__body__inner .title {
    width: 100%;
    font-family: 'Noto Sans TC';
    font-size: var(--aside-title-font-size);
    line-height: 17px;
    color: #211815;
    padding-left: 10px;
    padding-bottom: 0;
  }
  .aside .aside__wrapper .aside__body .aside__body__inner .psTitle {
    width: 100%;
    font-size: var(--aside-psTitle-font-size);
    color: #211815;
    font-weight: 600;
    padding-left: 10px;
  }
  .aside .aside__wrapper .aside__body .aside__body__inner .psTitle span {
    color: #8e2a29;
    font-weight: bold;
  }
  .aside .aside__wrapper .aside__body .aside__body__inner .buttons {
    position: absolute;
    right: 3px;
    bottom: -15px;
    width: 50%;
    height: auto;
    padding: 7px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .aside .aside__wrapper .aside__body .aside__body__inner .buttons a {
    position: relative;
    width: auto;
    height: auto;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .aside .aside__wrapper .aside__body .aside__body__inner .buttons a:nth-child(1) {
    -webkit-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
    color: #fff;
    background-color: #F60025;
    margin: 3px auto;
  }
  .aside .aside__wrapper .aside__body .aside__body__inner .buttons a:nth-child(1):hover {
    background-color: #d61d1a;
  }
  .aside .aside__wrapper .aside__body .aside__body__inner .buttons a:nth-child(2) {
    -webkit-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
    color: #F60025;
    background-color: white;
    margin: 3px auto;
  }
  .aside .aside__wrapper .aside__body .aside__body__inner .buttons a:nth-child(2):hover {
    background-color: #eee;
  }
  .aside .aside__wrapper .aside__body .hide_br {
    display: block;
  }
  .aside.aside__on {
    right: 0px;
  }
}
