@charset "UTF-8";
/* CSS Document */
@import url("https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css");
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600&family=Noto+Serif+JP:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;800;900&display=swap");

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans TC", serif;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  font-weight: initial;
  word-wrap: break-word;
  width: 100%;
  background: #FFFFFF;
  font-size: 18px;
  line-height: 1.5;
  color: #4c4948;
}

/* 創建一個固定定位的偽元素來處理背景 */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/PC_BG.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* 確保背景在最底層 */
  pointer-events: none;
  /* 確保不會干擾其他元素的點擊 */
}

/* 針對 iOS 設備的特殊處理 */
@supports (-webkit-touch-callout: none) {
  body::before {
    background-attachment: scroll;
    /* iOS 設備使用滾動而不是固定 */
    height: 100vh;
    /* 使用視口高度 */
  }
}

.div-with-span .sectitle {
  width: 100%;
  max-width: 270px;
  margin-top: 20px;
}

.vote_btn {
  width: 100%;
  max-width: 210px;
}

.breathing {
  animation: breathing 2.5s ease-in-out infinite;
}

@keyframes breathing {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

/* RWD 設定 */
@media screen and (max-width: 768px) {

  /* 背景設置 */
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/MOB_BG.png');
    background-size: 150%;
    background-position: top;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
  }
}

.branding {
  position: fixed;
  top: 200px;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: -10;
}


/*.roundimg{ border-radius:50%}*/

.container.custom-container-width {
  max-width: 90%;
}

.hdot {
  list-style-type: disc;
}

.btn-circle.btn-xl {
  width: 100px;
  height: 100px;
  padding: 20px;
  border-radius: 50px;
  font-size: 16pt;
  font-weight: 700;
  line-height: 1.33;
}

.btn-circle {
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 25px;
  text-align: center;
  font-size: 12pt;
  font-weight: 700;
  line-height: 1.42857;
}

.fixed_vote {
  position: fixed;
  z-index: 99;
  right: 10px;
  bottom: 30px;
  background: #D7020F);
  border: 0px;
  /*color: #000;*/
}

.fixed_vote2 {
  position: fixed;
  z-index: 99;
  right: 10px;
  bottom: 30px;
  background: rgba(198, 198, 198, 1);
  color: #000;
  opacity: 0.2;
}

.fixed_vote hover {
  color: #FFF;
}

.fixed_vote hover {
  background: rgba(198, 198, 198, 1);
}


.lightboxOuter {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 999;
}

.lightboxInner {
  width: 60%;
  height: 80%;
  margin: 30px auto;
}

.exit {
  text-align: right;
  position: relative;
  top: 1.5em;
}

.exit button {
  border-radius: 100%;
  display: inline-block;
  margin-left: 98%;
  background: #000;
  color: #FFF;
  border: 0px solid #330000;
}

iframe.myframe {
  background-color: #FFF;
  border-radius: 10px;
  max-height: 80%;
  padding: 20px;
}

.card-footer {
  background-color: #D7000F;
}

.playicon {
  color: #ffffff;
  font-size: 20pt;
}

html {
  font-family: 'Lato', monospace;
}

.label__checkbox {
  display: none;
}

.label__check {
  display: inline-block;
  border-radius: 0%;
  border: 5px solid rgba(0, 0, 0, 0.1);
  background: white;
  vertical-align: middle;
  /*margin-right: 10px;*/
  width: 4em;
  height: 3em;
  cursor: pointer;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}

.label__check i.icon {
  opacity: 0.2;
  font-size: calc(1.5rem + 1vw);
  color: transparent;
  -webkit-transition: opacity 0.3s 0.1s ease;
  transition: opacity 0.3s 0.1s ease;
  -webkit-text-stroke: 3px rgba(0, 0, 0, 0.5);
}

.label__check:hover {
  border: 5px solid rgba(0, 0, 0, 0.2);
}

.label__checkbox:checked+.label__text .label__check {
  -webkit-animation: check 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
  animation: check 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}

.label__checkbox:checked+.label__text .label__check .icon {
  opacity: 1;
  -webkit-transform: scale(0);
  transform: scale(0);
  color: white;
  -webkit-text-stroke: 0;
  -webkit-animation: icon 0.3s cubic-bezier(1, 0.008, 0.565, 1.65) 0.1s 1 forwards;
  animation: icon 0.3s cubic-bezier(1, 0.008, 0.565, 1.65) 0.1s 1 forwards;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@-webkit-keyframes icon {
  from {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes icon {
  from {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes check {
  0% {
    width: 4em;
    height: 3em;
    border-width: 5px;
  }

  10% {
    width: 1.5em;
    height: 1.125em;
    opacity: 0.1;
    background: rgba(0, 0, 0, 0.2);
    border-width: 15px;
  }

  12% {
    width: 1.5em;
    height: 1.125em;
    opacity: 0.4;
    background: rgba(0, 0, 0, 0.1);
    border-width: 0;
  }

  50% {
    width: 2em;
    height: 1.5em;
    background: #00d478;
    border: 0;
    opacity: 0.6;
  }

  100% {
    width: 4em;
    height: 3em;
    background: #00d478;
    border: 0;
    opacity: 1;
  }
}

@keyframes check {
  0% {
    width: 4em;
    height: 3em;
    border-width: 5px;
  }

  10% {
    width: 1.5em;
    height: 1.125em;
    opacity: 0.1;
    background: rgba(0, 0, 0, 0.2);
    border-width: 15px;
  }

  12% {
    width: 1.5em;
    height: 1.125em;
    opacity: 0.4;
    background: rgba(0, 0, 0, 0.1);
    border-width: 0;
  }

  50% {
    width: 2em;
    height: 1.5em;
    background: #00d478;
    border: 0;
    opacity: 0.6;
  }

  100% {
    width: 4em;
    height: 3em;
    background: #00d478;
    border: 0;
    opacity: 1;
  }
}

.mb {
  font-size: 2.5rem;
  line-height: 200%;
  color: #FFF;
}

.mb a:link {
  color: #FFFFFF;
}

.mb a:visited {
  color: #FFFFFF;
}

.mb a:hover {
  color: #ffff00;
}

.poster {
  background: rgba(215, 0, 15, 0.8);
  font-size: 1.5rem;
  color: #FFF;
  padding: 1.5rem;
  margin-top: 200px;
}

.mobilecd {
  background: rgba(236, 236, 235, 0.8);
  margin-bottom: 10px;
  color: #000;
}

/* Custom page width */

.page-container,
.main-header {
  max-width: 2400px !important;
}

.mainp {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: #FFF;
  line-height: 180%;
  padding-top: 20px;
}

.mainp2 {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 100;
  font-size: 1.5rem;
  color: #FFF;
  line-height: 180%;
  padding-top: 20px;
}

.mainbtn {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 2rem;
  color: #D7000F;
  padding: 1rem;
  margin: 1rem;
  border-radius: 20px;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  width: 80%;
}

.radio {
  margin: 0.5rem;
}

.radio input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.radio input[type="radio"]+.radio-label:before {
  content: '';
  background: #f4f4f4;
  border-radius: 100%;
  border: 1px solid #b4b4b4;
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  position: relative;
  /*top: -0.2em;*/
  margin-right: 0.5em;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.radio input[type="radio"]:checked+.radio-label:before {
  background-color: #3197EE;
  box-shadow: inset 0 0 0 4px #f4f4f4;
}

.radio input[type="radio"]:focus+.radio-label:before {
  outline: none;
  border-color: #3197EE;
}

.radio input[type="radio"]:disabled+.radio-label:before {
  box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}

.radio input[type="radio"]+.radio-label:empty:before {
  margin-right: 0;
}

#recommendyourmv {
  display: none;
}

.my-text-right {
  text-align: right;
}

.box-wrap {
  width: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}


.maintt {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 2.5rem;
  color: #333;
}

.votesituation {
  background: rgba(255, 255, 255, 0.6);
  padding: 1.5rem;
}

.menuline {
  width: 30px;
  height: 5px;
  background-color: #D7000F;
  margin: 6px 0;
}

#go-top {
  display: none;
  font-size: 30px;
  position: fixed;
  bottom: 150px;
  right: 40px;
  border: 2px solid #333;
  border-radius: 5px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  cursor: pointer;
  color: #333;
  z-index: 999;
}

@font-face {
  font-family: "iconfont";
  src: url('/100hits2021/iconfont.eot?t=1516696716663');
  /* IE9*/
  src: url('/100hits2021/iconfont.eot?t=1516696716663#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAUoAAsAAAAAB4QAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADMAAABCsP6z7U9TLzIAAAE8AAAARAAAAFZW7kiTY21hcAAAAYAAAABeAAABhpvcBr5nbHlmAAAB4AAAAVoAAAFwf2dYZGhlYWQAAAM8AAAALwAAADYQOW78aGhlYQAAA2wAAAAcAAAAJAfeA4RobXR4AAADiAAAAAwAAAAMC+kAAGxvY2EAAAOUAAAACAAAAAgAdgC4bWF4cAAAA5wAAAAfAAAAIAESAF1uYW1lAAADvAAAAUUAAAJtPlT+fXBvc3QAAAUEAAAAIwAAADTT5qeAeJxjYGRgYOBikGPQYWB0cfMJYeBgYGGAAJAMY05meiJQDMoDyrGAaQ4gZoOIAgCKIwNPAHicY2Bk/sE4gYGVgYOpk+kMAwNDP4RmfM1gxMjBwMDEwMrMgBUEpLmmMDgwVDxbydzwv4EhhrmBoQEozAiSAwAv5w0VeJzFkMENgDAMAy9t6QMxCA8G4sUcXamLdY1iQnkwQS05VhxLiQIsQBQPMYFdGA9OueZ+ZHU/eSZLjUBptXf1nyqiWXYNKplpsHmr/9i87qPTVyiDOrHVl4QbAzUOMwAAeJwdj71OwlAcxe+5135Q4CK9tx8UCpQK1aAk1oqDERYXjYPRyck4OenK4sBi4uDAEzioiU/gxhv4DJoYnZxdKRZPTs5yzj/5/4hCyPyTTZlLBFklm2SfHBMCtYsWpz6CKOnRLqxAsRzJWRRGgRa2emwPTkuVdtxPOo6qqSVw1LEVxP2oRyNsJwO6i9j2gUrVOzXbNZNNYLhR/TY9pI+wGmGtNNhID9aHMm4KfVQwzYpp3uuqouiULpU4rhw7p+QMNX1WSp41bazRBgqVyDs6Kzar5sVdcu23nRwwHkNUm/xlWPbKmW88W5gVbbmou14xXJEYfeddUfA7XyQTzVhf2QOLiUc6hOTQCSMODQuSIcoLnu2yY8cDiKCHpJ8B2VJlJ+lbnjO9qKQ/hqwZH6IuUqMm0ZgVuJSc/maJS+wYgJJt8lXLeJ89/Vfn8+wCEwhfSl9kL/wB4+w7egAAeJxjYGRgYADiFdG2U+L5bb4ycLMwgMC1XtEeBP1/KwsDsxGQy8HABBIFABZyCYQAeJxjYGRgYG7438AQw8IAAkCSkQEVMAMARwkCbAQAAAAD6QAABAAAAAAAAAAAdgC4eJxjYGRgYGBmCGRgZQABJiDmAkIGhv9gPgMAEPcBcAB4nGWPTU7DMBCFX/oHpBKqqGCH5AViASj9EatuWFRq911036ZOmyqJI8et1ANwHo7ACTgC3IA78EgnmzaWx9+8eWNPANzgBx6O3y33kT1cMjtyDRe4F65TfxBukF+Em2jjVbhF/U3YxzOmwm10YXmD17hi9oR3YQ8dfAjXcI1P4Tr1L+EG+Vu4iTv8CrfQ8erCPuZeV7iNRy/2x1YvnF6p5UHFockikzm/gple75KFrdLqnGtbxCZTg6BfSVOdaVvdU+zXQ+ciFVmTqgmrOkmMyq3Z6tAFG+fyUa8XiR6EJuVYY/62xgKOcQWFJQ6MMUIYZIjK6Og7VWb0r7FDwl57Vj3N53RbFNT/c4UBAvTPXFO6stJ5Ok+BPV8bUnV0K27LnpQ0kV7NSRKyQl7WtlRC6gE2ZVeOEXpc0Yk/KGdI/wAJWm7IAAAAeJxjYGKAAC4G7ICZkYmRmZGFgbGCLTlZtyS/gIEBABRQAuEA') format('woff'),
    url('/100hits2021/iconfont.ttf?t=1516696716663') format('truetype'),
    /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
    url('/100hits2021/iconfont.svg?t=1516696716663#iconfont') format('svg');
  /* iOS 4.1- */
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-cc-top:before {
  content: "\e6a9";
}

.text-md-my2 {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #333;
}

.text-md-my {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #333;
}

.nowidth {
  width: 50px;
}

.mrtop {
  margin-top: 100px;
}

.votebox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-content: space-between;
}

.votebox .label {
  margin-bottom: 0rem;
}

#facebook {
  margin: 20px;
  font-size: 4rem;
  color: #333;
}

#line {
  margin: 20px;
  font-size: 4rem;
  color: #333;
}

#ad {
  width: 100%;
  height: 150px;
  padding: 5px 20px;
  background-color: rgb(255, 255, 255, 0.8);
  bottom: 0;
  right: 0;
  position: fixed;
  display: none;
  color: #000;
  font-family: 'Noto Sans TC', sans-serif;
  line-height: 180%;
  font-size: 18pt;
  font-weight: 500;
  text-align: center;
  z-index: 99999;
}

#ad_body {
  padding-top: 50px;
}

.btnb {
  position: absolute;
  top: 5px;
  right: 10px;
}

/* CSS */

.inner p {
  font-size: 0.8rem;
}


.mobilemr {
  color: #FFF;
  background-color: #4c4948;
  /*border: 1px solid #333;*/
}

@media only screen and (min-width: 1980px) {
  .img-fluid-lg {
    /*width: 80%;*/
  }

  .my-text-right {
    text-align: center;
  }
}

@media only screen and (max-width: 1980px) {

  .page-container,
  .main-header {
    max-width: 1340px !important;
  }
}

@media only screen and (max-width: 600px) {

  .page-container,
  .main-header {
    width: 100% !important;
  }

  .mb {
    font-size: 1.2rem;
    line-height: 180%;
    color: #FFF;
  }

  .mainp {
    font-size: 1.2rem;
  }

  .mainbtn {
    font-size: 1rem;
  }

  .container {
    width: 90%;
  }

  .container.custom-container-width {
    max-width: 100%;
    padding: 0;
  }

  .poster {
    font-size: 1rem;
    padding: 0.8rem;
  }

  /*
  .bigbtn {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 1.5rem;
    padding: 0.5rem;
    margin: 1rem;
  }

  .bigbtn2 {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 1.5rem;
    padding: 0.5rem;
    margin: 1rem;
  }
    */

  .bigbtn,
  .bigbtn2 {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 1.5rem;
    padding: 0.5rem;
    margin: 1rem;
    display: inline-block;
    /* 確保按鈕是行內塊元素，便於排版 */
  }



  .maintt {
    font-size: 1.5rem;
  }

  .fixed_vote {
    position: fixed;
    z-index: 99;
    right: 10px;
    bottom: 10px;
  }

  .btn-circle.btn-xl {
    width: 80px;
    height: 80px;
    padding: 10px;
    border-radius: 40px;
    font-size: 14pt;
    font-weight: 700;
    line-height: 1.33;
  }

  .ytbn {
    border-radius: 0%;
    vertical-align: middle;
    width: 4em;
    height: 2.8em;
    cursor: pointer;
    margin-bottom: 0.5em;
  }

  .topmenuicon {
    top: 30px;
    right: 10px;
  }

  .toplogo {
    margin-top: 15px;
    margin-left: 10px;
  }

  .img-fluid-lg {
    width: 100%;
  }

  .mobilemr {
    margin-top: 10px;
    color: #FFF;
    background-color: #4c4948;
    /*border: 1px solid #333;*/
  }

  #go-top {
    border: 2px solid #000;
    color: #000;
    bottom: 120px;
    right: 25px;
  }

  .text-md-my2 {
    font-size: 1rem;
  }

  .text-md-my {
    font-weight: 300;
    font-size: 0.8rem;
  }

  .table {
    width: 100%;
  }

  .nowidth {
    width: 30px;
  }

  .lightboxInner {
    width: 90%;
    height: 80%;
    margin: 30px auto;
  }

  .exit button {
    margin-left: 90%;
  }

  iframe.myframe {
    border-radius: 10px;
    max-height: 100%;
    padding: 5px;
  }
}

/*************************2023�s�W******************************/

/**************header**************/
.header {
  padding: 0;
}

.table {
  width: 90%;
  margin: 0 auto;
}

.menu .menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  border: none;
  z-index: 30;
  cursor: pointer;
  outline: none;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
}

.menu .menu-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  width: 40px;
  margin: 0 auto;
  background-color: #4c4948;
  height: 1px;
  display: inline-block;
  transition-property: transform, opacity;
  transition-duration: 0.5s;
}

/*
.menu .menu-toggle span:nth-of-type(2) {
  width: 25px;
  margin-right: 20px;
}
*/
.menu .menu-toggle span:first-of-type {
  top: 30px;
}

.menu .menu-toggle span:nth-of-type(2) {
  top: 40px;
}

.menu .menu-toggle span:nth-of-type(3) {
  top: 50px;
}

.menu .menu-toggle.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
  background-color: #4c4948;
}

.menu .menu-toggle.active span:nth-of-type(2) {
  opacity: 0;
}

.menu .menu-toggle.active span:nth-of-type(3) {
  webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
  background-color: #4c4948;
}

.menu-wrapper {
  z-index: 29;
  width: 100%;
  top: -100%;
  position: fixed;
  left: 0;
  padding: 50px 0;
  background: #FFF;
  transform-origin: top;
  transition: 0.5s;
  font-size: 1.5rem;
}

.menu-wrapper.active {
  top: 0;
  transition: 0.5s;
}

.menu-list-block-item {
  margin: 0 2%;
}

.menu-list-block-item a {
  color: ##FFF;
  font-size: 1em;
  font-weight: 500;
}

.menu-list-block {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .menu .menu-toggle {
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .menu .menu-toggle span:first-of-type {
    top: 15px;
  }

  .menu .menu-toggle span:nth-of-type(2) {
    top: 25px;
  }

  .menu .menu-toggle span:nth-of-type(3) {
    top: 35px;
  }

  .menu-list-block {
    align-items: center;
    flex-direction: column;
  }

  .menu-list-block-item {
    margin: 2% 0;
  }

  .menu-list-block-item a {
    font-size: 1.5rem;
  }
}

/* unvisited link */
.menu-wrapper a:link {
  color: #4c4948;
  text-decoration: none;
  font-weight: 300;
}

/* visited link */
.menu-wrapper a:visited {
  color: #4c4948;
  text-decoration: none;
  font-weight: 300;
}

/* mouse over link */
.menu-wrapper a:hover {
  color: #ea68a2;
  text-decoration: underline;
  font-weight: 300;
}

/* selected link */
.menu-wrapper a:active {
  color: #ea68a2;
  font-weight: 300;
}

.vote-container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.fixedbranding {
  width: 600px;
  height: 100vh;
  margin: 0px auto;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  z-index: -99;
}

@media (max-width: 767px) {
  .fixedbranding {
    width: 90%;
    height: auto;
    margin: 30px auto 0;
    /*text-align: center;*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.fixedbranding img {
  max-width: 100%;
}


.slognp2 {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 900;
  font-size: 5rem;
  color: #FFF;
  width: 100%;
  text-align: center;
}

.slognp {
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 900;
  font-size: 5rem;
  color: #FFF;
  width: 100%;
  text-align: center;
}

.slogn {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 767px) {
  .slognp2 {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: #FFF;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .slognp {
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: #FFF;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}

.votebtn {
  padding: 0.5em 1em;
  background: #990000;
  color: #fff;
  border: 0;
  font-family: "Noto Sans TC", sans-serif;
  margin: 20px;
  white-space: nowrap;
}

/*首頁按鈕*/
.btncontainer {
  width: 600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: center;
  text-align: center;
  padding: 20px;
}

.block {
  flex: 1;
  width: 40%;
  padding: 10px;
  color: #150201;
  font-weight: 700;
}

/* 選擇第一個元素並僅在它的右側添加間距 */
.block:first-child {
  margin-right: 20px;
}


@media (max-width: 768px) {
  .btncontainer {
    width: 90%;
    flex-direction: column;
    padding: 20px 0px 0px;
  }

  .block {
    flex: 1;
    width: 100%;
    padding: 10px;
    color: #150201;
    font-weight: 700;
  }

  .block,
  .block:not(:last-child),
  .block:first-child {
    margin-right: 0;
    margin-bottom: 20px;
    /* 在堆疊時添加底部間距 */
  }
}

/*font color*/
.redfont {
  color: #fe5165;
  font-weight: 500;
}

.bluefont {
  color: #30c0fc;
  font-weight: 500;
}


.morevote {
  margin: 10px 0;
  font-size: 1.5rem;
  font-weight: 900;
  text-align: left;
}


/* 響應式設計，根據屏幕尺寸調整按鈕尺寸 */
@media (max-width: 768px) {

  .gradient-button,
  .gradient-button2 {
    padding: 8px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {

  .gradient-button,
  .gradient-button2 {
    padding: 6px 15px;
    font-size: 12px;
  }
}


.fade {
  opacity: 0;
  transform: translateY(20px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
}

.fade.in {
  opacity: 1;
  transform: none;
}

article {
  padding-top: 50px;
}

section {
  max-width: 1100px;
  width: 80%;
  margin: 0 auto;
  /*background-color: rgba(215, 0, 15, 0.8)*/
  ;
}

.commentarea {
  padding: 1em 3em 0em;
}

@media (max-width: 767px) {
  section {
    width: 90%;
  }

  .commentarea {
    padding: 0.5em;
  }
}

.commentarea p {
  text-align: center;
  line-height: 1.8;
  color: #333;
  font-size: 24px;
  font-weight: 700;
}

.commentarea ul {
  width: 80%;
  margin: 0 auto;
  text-align: left;
  line-height: 1.8;
  color: #333;
}

@media (max-width: 768px) {
  .commentarea ul {
    width: 100%;
    margin: 0 auto;
    text-align: left;
    line-height: 1.8;
    color: #333;
    font-size: 14px;
  }
}


/**************comment**************/
.commentarea .commbox {
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .commentarea {
    width: 100%;
    padding: 0px;
    margin-bottom: 20px;
  }

  .commbox {
    width: 100%;
    padding: 0px;
  }
}


.commentarea h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 600px;
  height: 5px;
  background: linear-gradient(to right, #8FC31F, #187FC4, #A40B5D, #132B88, #C8421C);
}

.div-with-span {
  margin: 0 auto;
  margin-bottom: 1em;
  text-align: center;
}

.div-with-gradient-border {
  width: auto;
  position: relative;
  /* 這將允許偽元素相對於這個區塊定位 */
  margin: 20px auto;
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 700;
  font-size: 60px;
  color: #333;
  text-align: center;
  font-style: normal;
  position: relative;
}


.div-with-gradient-border4 {
  width: 200px;
  margin: 30px auto;
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #FFF;
  text-align: center;
  font-style: normal;
  position: relative;
  padding: 5px;
  /* 添加內邊距以便於看到漸變邊框 */
  background: #D7020F;
  /* 文字的背景色 */
  cursor: pointer;
}


@media (max-width: 767px) {
  h2 {
    font-size: 26px;
  }

  .votesituation h3 {
    font-size: 20px;
  }

  .commentarea p {
    font-size: 1em;
  }

  .div-with-gradient-border {
    width: auto;
    position: relative;
    /* 這將允許偽元素相對於這個區塊定位 */
    margin: 20px auto;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #333;
  }

  .div-with-gradient-border4 {
    width: 160px;
    margin: 20px auto;
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    font-style: normal;
    position: relative;
    padding: 5px;
    /* 添加內邊距以便於看到漸變邊框 */
    /* 文字的背景色 */
    cursor: pointer;
  }
}

.leftlogoarea {
  width: 50%;
  margin: 30px auto 0px;
}

.main_title {
  max-width: 20%;
}

@media (max-width: 767px) {
  article {
    padding-top: 10px;
  }

  .leftlogoarea {
    width: 50%;
    margin: 20px 30px 0px;
  }

  .main_title {
    max-width: 50%;
  }
}

.bigbtn {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 3rem;
  padding: 1rem 2rem 1rem 2rem;
  margin: 2rem;
  background: #D7020F;
}

.bigbtn:hover {
  filter: brightness(2);
}

.bigbtn2 {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 3rem;
  padding: 1rem 2rem 1rem 2rem;
  margin: 2rem;
  background: #132B88;
  border: 1px solid #132B88;
}

.bigbtncontainer {
  display: flex;
  flex-wrap: wrap;
  /* 這樣在小視窗時按鈕會自動換行 */
  justify-content: center;
  /* 中央對齊按鈕 */
}

/* 當視窗寬度小於768px時的樣式 */
@media (max-width: 768px) {

  .bigbtn,
  .bigbtn2 {
    font-size: 2.5rem;
    /* 減小字體大小 */
    padding: 0.4rem;
    /* 減少內距 */
    margin: 0.5rem;
    /* 減少外距 */
  }
}

/* 當視窗寬度小於480px時的樣式 */
@media (max-width: 480px) {

  .bigbtn,
  .bigbtn2 {
    font-size: 2rem;
    /* 進一步減小字體大小 */
    padding: 0.3rem;
    /* 進一步減少內距 */
    margin: 0.25rem;
    /* 進一步減少外距 */
  }
}

.card {
  border: 0px;
}

.card-footer {
  background: #ea68a2;
}

.playyt_empty {
  background: #FABE01;
  border-radius: 50% / 10%;
  color: #FABE01;
  font-size: 1.2em;
  /* change this to change size */
  height: 2.5em;
  margin: 10px auto;
  padding: 0;
  position: relative;
  text-align: center;
  text-indent: 0.1em;
  transition: all 150ms ease-out;
  width: 3em;
}

.playyt {
  background: red;
  border-radius: 50% / 10%;
  color: #FFFFFF;
  font-size: 1.2em;
  /* change this to change size */
  height: 2.5em;
  margin: 10px auto;
  padding: 0;
  position: relative;
  text-align: center;
  text-indent: 0.1em;
  transition: all 150ms ease-out;
  width: 3em;
}

.playyt:hover {
  background: darkorange;
}

.playyt::before {
  background: inherit;
  border-radius: 5% / 50%;
  bottom: 9%;
  content: "";
  left: -5%;
  position: absolute;
  right: -5%;
  top: 9%;
}

.playyt::after {
  border-style: solid;
  border-width: 1em 0 1em 1.732em;
  border-color: transparent transparent transparent rgba(255, 255, 255, 1);
  content: ' ';
  font-size: 0.75em;
  height: 0;
  margin: -1em 0 0 -0.75em;
  top: 50%;
  position: absolute;
  width: 0;
}


@media (min-width: 768px) and (max-width: 1400px) {
  .playyt {
    background: red;
    border-radius: 50% / 10%;
    color: #FFFFFF;
    font-size: 1em;
    /* change this to change size */
    height: 2em;
    margin: 10px auto;
    padding: 0;
    position: relative;
    text-align: center;
    text-indent: 0.1em;
    transition: all 150ms ease-out;
    width: 2.5em;
  }

  .label__check {
    display: inline-block;
    border-radius: 0%;
    border: 5px solid rgba(0, 0, 0, 0.1);
    background: white;
    vertical-align: middle;
    /*margin-right: 10px;*/
    width: 3em;
    height: 2em;
    cursor: pointer;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease;
  }
}

.mintlogo {
  width: 20%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  text-align: center;
  padding: 10px;
  color: #FFF;
}

.mintlogo img {
  max-width: 30%;
  padding: 10px;
}

.symbolicon {
  width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

.symbolicon img {
  width: 20%;
}


@media (max-width: 767px) {
  .playyt {
    margin: 10px auto 17px;
  }

  .mintlogo img {
    max-width: 80%;
    padding: 10px;
  }


  .symbolicon {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
  }

  .symbolicon img {
    width: 26%;
  }

}


.card {
  background: rgb(236, 236, 235);
}


/**************footer**************/
.footer {
  color: #333;
  font-size: 0.8rem;
  line-height: 1.5;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

#facebook {
  margin: 20px;
  font-size: 4rem;
  color: #333;
}

#line {
  margin: 20px;
  font-size: 4rem;
  color: #333;
}

.bigger {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.ticket {
  margin-top: 0px;
}

@media (max-width: 768px) {
  .ticket {
    margin-top: 50px;
  }
}

.wbg {
  background: rgb(255, 255, 255, 0.8);
}


ul.menu-list-block {
  list-style-type: none;
}

.menu-list-block-item {
  list-style-type: none;
}

@media (max-width: 767px) {
  ul.menu-list-block {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

  .menu-list-block-item {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-bottom: 0.5rem;
  }
}


.prize {
  width: 100%;
  max-width: 600px;
}


@media (max-width: 767px) {
  .prize {
    width: 100%;
    /*max-width: 300px;*/
  }
}

.logo {
  width: 100%;
  max-width: 400px;
}


@media (max-width: 767px) {
  .logo {
    width: 100%;
    max-width: 300px;
  }
}

.singer {
  font-size: 10pt;
  font-weight: 700;
}

.logo {
  width: 100%;
  max-width: 600px;
  margin-bottom: 30px;
}


@media (max-width: 767px) {
  .logo {
    width: 90%;
    max-width: 400px;
    margin-bottom: 30px;
  }
}

.app_title {
  font-size: 36px;
  font-weight: 900;
}