/* ==========================================================================
   index.css
   page-specific rules and final overrides (Part B)
   ========================================================================== */

/* ==========================================================================
   1. ANIMATIONS (動畫定義 - 首頁專屬特效)
   ========================================================================== */

@keyframes bg2 {
  0% {
    transform: translateY(80px);
  }

  50% {
    transform: translateY(0);
  }

  100% {
    opacity: 0;
  }
}

/* 將重複的放大淡入動畫合併為單一 keyframe */
@keyframes zoomInFade {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes robotGlow {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.02);
    opacity: 0.6;
  }
}

@keyframes bgZoomOut {
  0% {
    opacity: 0;
    transform: scale(1.15);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes objFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes moveTrain {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-900px, 510px);
  }
}

@keyframes moveCar1 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }

  10%,
  80% {
    opacity: 1;
  }

  90%,
  100% {
    transform: translate(200px, 100px);
    opacity: 0;
  }
}

@keyframes moveCar2 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }

  10%,
  80% {
    opacity: 1;
  }

  90%,
  100% {
    transform: translate(-100px, 50px);
    opacity: 0;
  }
}

@keyframes pin {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ==========================================================================
   2. COMMON COMPONENTS (通用組件與全域設定)
   ========================================================================== */

.box-padding {
  padding-top: clamp(5rem, 7vw, 6rem);
  padding-bottom: clamp(5rem, 8vw, 7rem);
}

.animateEnter {
  animation: zoomInFade 0.8s ease-out forwards;
}

.animateCenter {
  animation: zoomInFade 1s ease-out forwards;
}

.animateGlow {
  animation: robotGlow 2s ease-in-out infinite;
}

.iconshake {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  margin: 0 auto 10px;
  z-index: 99;
}

.iconshake img {
  margin: auto;
  width: 40px;
}

ul.boxlist {
  padding-right: 1rem;
}

ul.boxlist>li {
  position: relative;
  font-size: clamp(1.0625rem, 2.4vw, 20px);
  line-height: 32px;
  padding-left: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
}

ul.boxlist>li+li {
  margin-top: 10px;
}

ul.boxlist>li:before {
  display: inline-block;
  vertical-align: top;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 10px;
  background-color: #36a4ff;
}

ul.boxlist>li *,
ul.boxlist table th,
ul.boxlist table td {
  font-size: clamp(1rem, 2.2vw, 18px);
}

ul.boxlist>li b {
  font-weight: bold;
}

ul.boxlist>li p a {
  text-decoration: underline;
}

ul.boxlist>li>ul {
  position: relative;
  font-size: clamp(1.0625rem, 2.4vw, 20px);
  line-height: 32px;
  padding-left: 20px;
}

ul.boxlist>li>ul>li {
  list-style: auto;
  padding-top: 10px;
}

ul.boxlist>li>ul>li:last-child {
  padding-bottom: 0;
}

ul.boxlist table {
  width: 95%;
  margin: 10px 0;
}

ul.boxlist table th,
ul.boxlist table td {
  padding: 3px 10px;
  border: 1px solid #ccc;
  text-align: center;
}

ul.boxlist table caption {
  font-size: clamp(1.0625rem, 2.4vw, 20px);
  line-height: 32px;
  margin-bottom: 5px;
}

ul.boxlist table thead th {
  border: 1px solid #fff;
  background-color: #dfdfdf;
}

ul.boxlist table thead th.th2 {
  background: #fadaba;
}

ul.boxlist table thead th.th3 {
  background: #b7e7df;
}

ul.boxlist table tbody tr.point td {
  background-color: var(--primary-cyan);
  color: #fff;
}

ul.boxlist img {
  max-width: 100%;
  margin: auto;
}

/* ==========================================================================
   3. SECTION - bannerScene 
   ========================================================================== */

#bannerScene.smart-city-banner {
  position: relative;
  width: 100%;
  max-width: 999999px;
  margin: 0 auto;
  overflow: hidden;
  background-color: var(--bg-dark);
}

#bannerScene .banner-inner {
  position: absolute;
  top: -2.5%;
  left: -2.5%;
  width: 105%;
  height: 105%;
  will-change: transform;
}

#bannerScene .bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: bgZoomOut 1.5s ease-out forwards;
}

#bannerScene .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/pc-banner.jpg");
  background-size: cover;
  background-position: center;
}

#bannerScene .obj-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: objFadeIn 0.8s ease-out forwards;
  pointer-events: none;
}

#bannerScene .delay-1 {
  animation-delay: 1s;
}

#bannerScene .delay-2 {
  animation-delay: 1.3s;
}

#bannerScene .delay-3 {
  animation-delay: 1.6s;
}

#bannerScene .delay-4 {
  animation-delay: 1.1s;
}

#bannerScene .delay-5 {
  animation-delay: 1.8s;
}

#bannerScene .delay-6 {
  animation-delay: 1.4s;
}

#bannerScene .delay-7 {
  animation-delay: 2s;
}

#bannerScene.smart-city-banner .asset {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  will-change: transform;
}

#bannerScene .text-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 850px;
  z-index: 20;
  pointer-events: none;
}

#bannerScene .mock-text-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

#bannerScene .text-bottom p {
  font-size: clamp(1rem, 2vw, 18px);
  width: 80%;
  max-width: 680px;
  font-weight: 600;
  line-height: 1.7;
  color: #333;
  text-align: justify;
  pointer-events: auto;
  user-select: text;
  margin-top: 1rem;
}

#bannerScene .text-top {
  opacity: 0;
  animation: fadeDown 1s ease-out forwards;
  animation-delay: 2.2s;
}

#bannerScene .text-middle {
  opacity: 0;
  animation: fadeRight 1s ease-out forwards;
  animation-delay: 2.6s;
}

#bannerScene .text-bottom {
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 3s;
}

#bannerScene .text-bottom .logo{
  width: 65px;
  display: block;
  margin-top: 1rem;
}

#bannerScene.smart-city-banner .train {
  width: 100%;
  animation: moveTrain 8s linear infinite;
  z-index: 5;
}

#bannerScene.smart-city-banner .tunnel-cover {
  width: 100%;
  z-index: 99;
  pointer-events: none;
  opacity: 0;
  animation: bgZoomOut 1.5s ease-out forwards;
}

#bannerScene.smart-city-banner .car-group-1 {
  width: 100%;
  animation: moveCar1 3s linear infinite;
  z-index: 6;
}

#bannerScene.smart-city-banner .car-group-2 {
  width: 100%;
  animation: moveCar2 3s linear infinite;
  z-index: 6;
}

#bannerScene.smart-city-banner .icon-phone {
  width: 100%;
}

#bannerScene.smart-city-banner .icon-pin {
  width: 100%;
  animation: pin 3s ease-in-out infinite;
}

#bannerScene.smart-city-banner .icon-float-1,
#bannerScene.smart-city-banner .icon-float-3,
#bannerScene.smart-city-banner .icon-float-5 {
  width: 100%;
  animation: float 3s ease-in-out infinite;
}

#bannerScene.smart-city-banner .icon-float-2,
#bannerScene.smart-city-banner .icon-float-4 {
  width: 100%;
  animation: float 4s ease-in-out infinite 1s;
}

#bannerScene .mobile-banner {
  display: none;
  width: 100%;
  height: auto;
  vertical-align: top;
}
.iconshake {
  position: absolute;
  z-index: 9;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto 1.5rem;
  bottom: 80px;
  width: 100%;
   left: 50%;
  transform: translateX(-50%);
}

.iconshake a {
  width: 60px;
  height: 60px;
  display: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/scroll.svg);
  background-position: bottom center;margin: 0 auto;
}

@media (max-width: 1024px) {
  .iconshake a {
      display: block !important;
    background-image: url(../images/scroll_xs.svg);
    width: 45px;
  }
}

/* ==========================================================================
   4. SECTION - FORUM
   ========================================================================== */
#forum {
  background: linear-gradient(180deg, #007bc1 -15.88%, #8aafdf 98.76%);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#forum::before ,
#forum::after {
  background-size: 100% auto !important;
  opacity: 0;
  z-index: 0;
}
#forum::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/forum-xs-top.png) center top no-repeat;

}

#forum.active::before {
  animation: bgTopZoomIn 1s ease-out forwards;
}
@keyframes bgTopZoomIn {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

#forum::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: url(../images/forum-xs-bottom.png) bottom center no-repeat;

}


#forum.active::after {
  animation: bgBottomZoomIn 1s ease-out forwards;
}



@keyframes bgBottomZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}




#forum>div {
  padding: 1rem;
  z-index: 1;
}

#forum p {
  font-size: clamp(1.625rem, 3.5vw, 30px);
  margin: 60px auto 30px auto;
  text-align: center;
  font-weight: bold;
}

#forum ul.info {
  margin-top: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

#forum ul.info li {
  display: block;
  margin: 0rem 5px 1rem;
  color: #000000;
  font-size: clamp(1.05rem, 3.2vw, 28px);
  font-weight: 600;
  text-align: left;
  letter-spacing: 1px;
}

#forum ul.info li span {
  font-size: clamp(1.375rem, 3vw, 26px);
  color: #000;
}

#forum ul.info li>img {
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 3px;
  width: 23px;
}

#forum ul.info li a.map {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

#forum ul.info li a.map img {
  animation: jump 0.8s infinite;
}

#forum .btns {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.info-add-s {
  text-align: left;
  margin-left: 105px;
}

#foruminfo ul.speaker {
  display: flex;
  width: 100%;
  text-align: center;
  margin: auto;
  max-width: 1000px;
  flex-wrap: wrap;
  justify-content: center;
}

#foruminfo .notice p {
  font-size: clamp(1.25rem, 2.8vw, 24px);
  margin: 20px 0;
  padding-left: 20px;
  font-weight: bold;
}

#foruminfo .notice ul {
  width: 90%;
  margin: 1rem 0 2rem;
  list-style: auto;
  padding-left: 42px;
}

#foruminfo .notice ul>li {
  font-size: clamp(0.875rem, 2vw, 16px);
  padding-bottom: 10px;
}

#foruminfo ul.speaker li {
  margin-bottom: 30px;
  width: 24%;
  float: left;
  margin-left: 1.04167%;
  margin-right: 1.04167%;
}

#foruminfo ul.speaker figure img {
  margin: auto;
}

#foruminfo ul.speaker figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: clamp(0.875rem, 2vw, 16px);
}

#foruminfo ul.speaker figcaption b {
  display: block;
  font-size: clamp(1.125rem, 2.6vw, 22px);
}

#foruminfo ul.speaker+ul {
  max-width: 1000px;
}

#foruminfo ul.speaker+ul li {
  margin-bottom: 10px;
  width: 22.91667%;
  float: left;
  margin-left: 1.04167%;
  margin-right: 1.04167%;
}

#foruminfo .schedule p {
  font-size: clamp(1.25rem, 2.8vw, 24px);
  margin: 20px 0;
  padding-left: 20px;
  font-weight: bold;
}

#foruminfo ul.timer {
  padding-top: 20px;
}

#foruminfo ul.timer li {
  position: relative;
}

#foruminfo ul.timer li span {
  font-size: clamp(0.875rem, 2vw, 16px);
  display: inline-block;
  vertical-align: top;
  width: 120px;
  text-align: right;
  padding: 10px 10px 10px 0px;
}

#foruminfo ul.timer li:first-child span {
  position: relative;
}

#foruminfo ul.timer li:first-child span:before,
#foruminfo ul.timer li:first-child span:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: -25px;
  background: #999;
}

#foruminfo ul.timer li:first-child span:before {
  width: 2px;
  height: 41px;
  right: -11px;
}

#foruminfo ul.timer li:first-child span:after {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  right: -16px;
}

#foruminfo ul.timer li div {
  font-size: clamp(1rem, 2.2vw, 18px);
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 130px);
  position: relative;
  padding: 6px 0 12px 25px;
}

#foruminfo ul.timer li div b {
  font-size: clamp(1.25rem, 2.8vw, 24px);
  line-height: 1.6em;
  color: var(--primary-blue);
  display: block;
  margin-top: -3px;
  font-weight: 600;
}

#foruminfo ul.timer li div:before,
#foruminfo ul.timer li div:after {
  content: "";
  display: block;
  position: absolute;
}

#foruminfo ul.timer li div:before {
  width: 2px;
  height: 100%;
  background: #999;
  left: 5px;
  top: 21px;
}

#foruminfo ul.timer li div:after {
  width: 12px;
  height: 12px;
  background: var(--primary-blue);
  left: 0px;
  top: 15px;
  border-radius: 50%;
}

#foruminfo ul.timer li:last-child div:before {
  display: none;
}

/* ==========================================================================
   5. SECTION - SURVEY & VOTE
   ========================================================================== */
#survey {
  background: linear-gradient(179.22deg, #02afa0 -9.38%, #d4dbff 66.27%);
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
}

#survey::before,
#survey::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  /* 將原本的 background-size: cover !important; 改為： */
  background-size: 100% auto !important;
  opacity: 0;
  z-index: 0;
}

#survey::before {
  top: 0;
  background: url(../images/survey-xs-top.svg) center top no-repeat;
}

#survey::after {
  bottom: 0;
  background: url(../images/survey-xs-bottom.svg) bottom center no-repeat;
  bottom: 0;
}

#survey.active::before {
  animation: bgTopZoomIn 1s ease-out forwards;
}

#survey.active::after {
animation: bgBottomSlideUp 1s ease-out forwards;
}

@keyframes bgBottomSlideUp {
  0% {
    opacity: 0;
    transform: translateY(50px); /* 起始位置：往下偏移 50px */
  }

  100% {
    opacity: 1;
    transform: translateY(0); /* 結束位置：回到原本的預設位置 */
  }
}

#survey .btns {
  position: relative;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#survey .title {
  color: var(--primary-blue);
  font-size: clamp(2.2rem, 9vw, 56px);
  line-height: 1.25;
}

#survey .text {
  font-weight: 500;
  color: #000000;
  margin-top: 1.25rem;
  line-height: 1.4;
  font-size: clamp(1.5rem, 3.5vw, 36px);
  text-align: center;
}

#survey .title:after {
  display: none;
}

#vote {
  position: relative;
  background: #f2f2f2;
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}

#vote .btns {
  margin-top: 70px;
  margin-left: -10px;
}

#vote.active:before,
#vote.active:after {
  transform: translateX(0%);
}

#surveyresult .tab_container,
#surveyyear .tab_container {
  max-width: 830px;
  margin: auto;
}

#surveyresult h3,
#surveyyear h3 {
  font-size: clamp(2rem, 5.5vw, 40px);
  font-weight: bold;
  padding: 10px;
}

#surveyresult h5,
#surveyyear h5 {
  font-size: clamp(1rem, 2.2vw, 18px);
  color: #fff;
  text-align: center;
  padding: 10px;
  margin: 20px 0;
  clear: both;
}

#surveyresult h5.green,
#surveyyear h5.green {
  background-color: #f6ab36;
}

#surveyresult h5.blue,
#surveyyear h5.blue {
  background-color: var(--primary-green);
}

#surveyresult .tab_content#leading,
#surveyresult .tab_content#leading_lastyear,
#surveyyear .tab_content#leading,
#surveyyear .tab_content#leading_lastyear {
  text-align: left;
  max-width: 1000px;
}

#surveyresult .tab_content#leading p,
#surveyresult .tab_content#leading_lastyear p,
#surveyyear .tab_content#leading p,
#surveyyear .tab_content#leading_lastyear p {
  font-size: clamp(1rem, 2.2vw, 18px);
}

#surveyresult .tab_content#leading ul li,
#surveyresult .tab_content#leading_lastyear ul li,
#surveyyear .tab_content#leading ul li,
#surveyyear .tab_content#leading_lastyear ul li {
  margin: 25px 0;
}

#surveyresult .tab_content#leading ul li b,
#surveyresult .tab_content#leading_lastyear ul li b {
  font-size: clamp(1.125rem, 2.6vw, 22px);
  margin-bottom: 5px;
  display: flex;
  font-weight: bold;
  align-items: center;
}

#surveyyear .tab_content#leading ul li b,
#surveyyear .tab_content#leading_lastyear ul li b {
  font-size: clamp(1.125rem, 2.6vw, 22px);
  margin-bottom: 5px;
  display: block;
  font-weight: bold;
}

#surveyresult .tab_content#leading ul li b img,
#surveyresult .tab_content#leading_lastyear ul li b img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  width: 25px;
  height: 25px;
}

#surveyyear .tab_content#leading ul li b img,
#surveyyear .tab_content#leading_lastyear ul li b img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  width: 28px;
}

#surveyresult .tab_content#government ul,
#surveyresult .tab_content#government_lastyear ul,
#surveyyear .tab_content#government ul,
#surveyyear .tab_content#government_lastyear ul {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}

#surveyresult .tab_content#government ul li,
#surveyresult .tab_content#government_lastyear ul li,
#surveyyear .tab_content#government ul li,
#surveyyear .tab_content#government_lastyear ul li {
  width: 47.91667%;
  float: left;
  margin-left: 1.04167%;
  margin-right: 1.04167%;
  margin-bottom: 20px;
}

#surveyresult .tab_content#government ul li img,
#surveyresult .tab_content#government_lastyear ul li img,
#surveyyear .tab_content#government ul li img,
#surveyyear .tab_content#government_lastyear ul li img {
  margin: auto;
}

#surveyresult .tab_content#government ul.boxlist,
#surveyresult .tab_content#government_lastyear ul.boxlist,
#surveyyear .tab_content#government ul.boxlist,
#surveyyear .tab_content#government_lastyear ul.boxlist {
  margin-top: 0;
}

#surveyresult .tab_content#government ul.boxlist li,
#surveyresult .tab_content#government_lastyear ul.boxlist li,
#surveyyear .tab_content#government ul.boxlist li,
#surveyyear .tab_content#government_lastyear ul.boxlist li {
  margin: 0;
}

#surveyresult .tab_content#government p,
#surveyresult .tab_content#government_lastyear p,
#surveyyear .tab_content#government p,
#surveyyear .tab_content#government_lastyear p {
  font-size: clamp(0.75rem, 1.5vw, 13px);
  font-weight: bold;
  margin: 10px auto;
  max-width: 356px;
  width: 100%;
  display: table;
}

#surveyresult .tab_content#people ul li,
#surveyresult .tab_content#people_lastyear ul li,
#surveyyear .tab_content#people ul li,
#surveyyear .tab_content#people_lastyear ul li {
  width: 97.91667%;
  float: left;
  margin-left: 1.04167%;
  margin-right: 1.04167%;
  font-size: clamp(1.0625rem, 2.4vw, 20px);
  margin-bottom: 20px;
}

#surveyresult .tab_content table,
#surveyyear .tab_content table {
  max-width: 356px;
  width: 100%;
  border-collapse: inherit;
  border-spacing: 1px;
  margin: auto;
}

#surveyresult .tab_content table th,
#surveyresult .tab_content table td,
#surveyyear .tab_content table th,
#surveyyear .tab_content table td {
  padding: 6px 15px;
  text-align: center;
  font-size: clamp(0.8125rem, 1.7vw, 14px);
  font-weight: bold;
}

#surveyresult .tab_content table thead th,
#surveyyear .tab_content table thead th {
  background: #ffedde;
}

#surveyresult .tab_content table tbody th,
#surveyyear .tab_content table tbody th {
  background: #ffdfc3;
}

#surveyresult .tab_content table tbody td,
#surveyyear .tab_content table tbody td {
  background: #eaeaea;
}

#surveyi03 ul,
.surveyi03 ul {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#surveyi03 ul li,
.surveyi03 ul li {
  width: 48%;
  display: inline-block;
  vertical-align: top;
  margin: 1rem 0;
}

#surveyi03 ul:after,
.surveyi03 ul:after {
  content: "";
  flex: auto;
}

#surveyi03 figure img,
.surveyi03 figure img {
  margin: auto;
}

#surveyi03 figcaption {
  margin-top: 0.6rem;
}

#surveyi03 figcaption b,
.surveyi03 figcaption b {
  font-size: clamp(1.125rem, 2.6vw, 22px);
  display: block;
}

#surveyi03 figcaption span,
.surveyi03 figcaption span {
  display: inline-block;
}

#voteway ul.way1 {
  max-width: 580px;
  margin: auto;
}

#voteway ul.way1 li i {
  display: inline-block;
  vertical-align: middle;
  width: 120px;
  height: 120px;
  background: #f6ab36;
  text-align: center;
  font-size: clamp(1.625rem, 3.5vw, 30px);
  line-height: 33px;
  padding: 35px;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
}

#voteway ul.way1 li i.big {
  padding: 35px 24px;
}

#voteway ul.way1 li p {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 160px);
  margin-left: 10px;
  font-size: clamp(1.0625rem, 2.4vw, 20px);
}

#voteway ul.way1 li p span {
  display: block;
  font-size: clamp(1.0625rem, 2.4vw, 20px);
}

#voteway ul.way1 li+li {
  margin-top: 20px;
}

#voteway ul.way1 li+li i {
  background: var(--primary-green);
}

#voteway ul.way2 {
  margin: 20px 0;
  text-align: center;
}

#voteway ul.way2 li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 10px 20px;
}

#voteway ul.way2 li>div {
  display: inline-block;
  vertical-align: middle;
  width: 180px;
  height: 180px;
  border: 3px solid var(--primary-cyan);
  text-align: center;
  border-radius: 50%;
  padding: 20px;
}

#voteway ul.way2 li>div i {
  display: table;
  margin: 0 auto 5px auto;
}

#voteway ul.way2 li>div p {
  font-size: clamp(1.125rem, 2.6vw, 22px);
}

#voteway ul.way2 li>div p span {
  font-size: clamp(1.125rem, 2.6vw, 22px);
  display: block;
}

#voteway ul.way2 li+li:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: -11px;
  top: 50%;
  margin-top: -11px;
  background: url(../images/way2icon.png) center center no-repeat;
}

#voteway .way3 {
  margin: 20px 0;
  text-align: center;
}

#voteway .way3 .percent {
  display: inline-block;
  vertical-align: middle;
}

#voteway .way3 .percent li {
  width: 100%;
}

#voteway .way3 .percent li div {
  display: inline-block;
  vertical-align: middle;
}

#voteway .way3 .percent li span {
  display: inline-block;
  vertical-align: middle;
  font-size: clamp(1.75rem, 4.5vw, 35px);
  margin: 0 10px;
}

#voteway .way3 .percent li>div.tt {
  font-size: clamp(1.125rem, 2.6vw, 22px);
  width: 120px;
  min-width: 350px;
  background: #f6ab36;
  text-align: center;
  padding: 35px;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
}

#voteway .way3 .percent li+li {
  margin-top: 15px;
}

#voteway .way3 .percent li+li>div.tt {
  background: var(--primary-green);
}

#voteway .way3 .total {
  display: inline-block;
  vertical-align: middle;
}

#voteway .way3 .total div {
  display: inline-block;
  vertical-align: middle;
}

#voteway .way3 .total div.score {
  font-size: clamp(1.75rem, 5vw, 36px);
  width: 120px;
  height: 120px;
  color: #fff;
  background: #f54746;
  border-radius: 50%;
  text-align: center;
  padding: 35px 0;
}

#voteway ul.award {
  width: 90%;
  margin: auto;
  max-width: 900px;
}

#voteway ul.award li {
  background: #f0f0f0;
  padding: 15px;
  position: relative;
}

#voteway ul.award li+li {
  margin-top: 15px;
}

#voteway ul.award figure {
  display: inline-block;
  vertical-align: top;
  width: 250px;
}

#voteway ul.award figcaption {
  padding-bottom: 30px;
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 280px);
  margin-left: 20px;
}

#voteway ul.award figcaption b {
  font-size: clamp(1.375rem, 3vw, 26px);
  font-weight: bold;
  margin: 15px 0;
  display: block;
}

#voteway ul.award figcaption p {
  font-size: clamp(1rem, 2.2vw, 18px);
}

#voteway ul.award figcaption span {
  color: #4c78be;
  position: absolute;
  left: 290px;
  bottom: 12px;
}

#voteway ul.award figcaption span b {
  display: inline;
  color: #4c78be;
  font-size: clamp(0.8125rem, 1.7vw, 14px);
}

/* ==========================================================================
   6. SECTION - AWARD & AWARDNAME
   ========================================================================== */
#award {
  position: relative;
  background: linear-gradient(180deg, #007bc1 -15.88%, #8aafdf 98.76%);
  background-size: cover;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#award::before,
#award::after {
  content: "";
  width: 30%;
  height: 100%;
  position: absolute;
  display: block;
}

#award::before {
  background: url(../images/award-right-bg.svg) right bottom no-repeat;
  background-size: 100%;
  transition: 1s all;
  bottom: -100%;
  right: 0;
}

#award::after {
  background: url(../images/award-left-bg.svg) left top no-repeat;
  background-size: 100%;
  transition: 1s all;
  top: -100%;
  left: 0px;
}

#award.active::before {
  bottom: 0px;
}

#award.active::after {
  top: 0px;
}

#award .title:after {
  display: none;
}

#award .btns {
  display: flex;
  margin-top: 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

#award .title {
  color: #ffffff;
  letter-spacing: 2px;
}

#award .year {
  color: #ffffff;
  letter-spacing: 2px;
  line-height: 1;
}

#award .text {
  font-weight: 500;
  color: #000000;
  margin-top: 1.25rem;
  line-height: 1.4;
  font-size: clamp(1.5rem, 3.5vw, 36px);
  text-align: center;
}

#award.active:before,
#award.active:after {
  transform: translateX(0%);
}

#awardname ul.list {
  max-width: 1000px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
}

#awardname ul.list li {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
}

#awardname ul.list li figcaption {
  text-align: left;
}

#awardname ul.list li figcaption i {
  margin: 5px 0;
  display: block;
  font-size: clamp(1.125rem, 2.6vw, 22px);
}

#awardname ul.list li figcaption i img {
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 5px;
}

#awardname ul.list li figcaption b {
  display: block;
  font-size: clamp(1.375rem, 3vw, 26px);
  font-weight: bold;
  margin: 10px 0;
  min-height: 85px;
}

#awardname ul.list li figcaption b span {
  display: block;
  font-size: clamp(1rem, 2.2vw, 18px);
  font-weight: bold;
}

#awardname ul.list li figcaption p {
  font-size: clamp(0.875rem, 2vw, 16px);
}

#awardname ul.list li.a1 i {
  color: #e65b5d;
}

#awardname ul.list li.a2 i {
  color: #5f6fb2;
}

#awardname ul.list li.a3 i {
  color: #125caa;
}

#awardname ul.list li.a4 i {
  color: #e45a7f;
}

#awardname ul.list li.a5 i {
  color: #62b54d;
}

#awardname ul.list li.a6 i {
  color: #f29d0b;
}

#awardname ul.list li.a7 i {
  color: #ec8622;
}

#awardname ul.list li.a8 i {
  color: #388d38;
}

#awardname ul.list li.a9 i {
  color: #2bb6fb;
}

/* ==========================================================================
   7. SECTION - VIDEO
   ========================================================================== */
#video {
  background: url(../images/video-xs-bg.png), linear-gradient(179.22deg, rgba(37, 182, 176, 0.8) -9.38%, rgba(212, 219, 255, 0.8) 66.27%);
  background-size: 100% auto;
  background-position: center bottom;
  background-repeat: repeat-x;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#video::before,
#video::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  opacity: 0;
  z-index: 0;
    background-size: 100% auto !important;
}

#video::before {
  top: 0;
  background: url(../images/video-xs-top.png) center top no-repeat;
}

#video::after {
  bottom: 0;
  background: url(../images/video-xs-bottom.png) bottom center no-repeat;
}

#video.active::before {
  animation: slideLeftToLeft 1s ease-out forwards;
}

@keyframes slideLeftToLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

#video.active::after {
  opacity: 1;
  /* 覆蓋原本的 opacity: 0，避免每次循環都重新淡入 */
  /* 將動畫設為 10秒 (可自行調整快慢)、勻速 (linear)、無限循環 (infinite) */
  animation: slideLeftToRightLoop 10s linear infinite;
}

/* 新增由左至右完整移動的 keyframes */
@keyframes slideLeftToRightLoop {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}


#video.box-padding {
  padding-bottom: 30vh;
}

#video h2.title {
  margin-bottom: 3rem;
}

#video h2.title>span {
  color: var(--primary-blue);
}

#video h2.title::after {
  background-color: var(--primary-blue);
}

#video .list {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: 40px;
}

#video .list li {
  margin-bottom: 10px;
  display: inline-block;
  vertical-align: top;
  width: 24%;
  padding: 5px;
}

#video .list li figcaption {
  padding-top: 10px;
  text-align: left;
  font-weight: 600;
}

#video .list li figcaption p {
  font-size: clamp(1.25rem, 2.8vw, 24px);
  line-height: 30px;
  color: #ffffff;
}

#video .list li figcaption span {
  font-size: clamp(1rem, 2.2vw, 18px);
  margin-top: 8px;
  line-height: 18px;
  text-align: center;
  color: #fffb95;
}

#video .btns {
  margin-top: 20px;
}

#video .btns a {
  background: #ff9d33;
}

#video .btns a:hover {
  background: var(--primary-blue);
}

/* ==========================================================================
   8. SECTION - UNIT
   ========================================================================== */
#unit {
  background: linear-gradient(179.22deg, #04aeb0 -9.38%, #8093e7 99.3%);
  position: relative;
  padding-bottom: 200px;
  margin-bottom: 60px;
}

#unit:before {
  content: "";
  display: block;
  background-image: url(../images/unit-bg.png);
  transition: 1s all;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 100%;
  left: 0px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
}

#unit h2.title {
  margin-bottom: 3rem;
}

#unit h2.title>span {
  color: var(--primary-blue);
}

#unit h2.title:after {
  background-color: var(--primary-blue);
}

#unit>div.con {
  position: relative;
}

#unit ul {
  text-align: center;
  width: auto;
  display: table;
  margin: auto;
}

#unit ul li {
  margin: 10px auto;
  width: 100%;
    max-width: 250px;

  float: left;
}

#unit ul li img {
  margin: auto;
  border: 1px solid #ccc;
  width: 100%;
}

#unit ul.one li {
  width: 100%;
}

#unit ul.five li {
  width: 17.91666%;
}

#unit .airplane {
  position: absolute;
  right: 10%;
  top: 5%;
}

#unit.active:before {
  top: 0px;
}

/* ==========================================================================
   9. SECTION - REPORT
   ========================================================================== */
#report {
  background: linear-gradient(180deg, #007bc1 -15.88%, #8aafdf 98.76%);
}

#report .btns {
  text-align: center;
  display: flex;
  justify-content: center;
}

#report h4 {
  margin-bottom: 40px;
}

#report .con {
  margin-bottom: 60px;
}

#report ul.list {
  display: inline-block;
  width: 100%;
  vertical-align: top;
}

#report ul.list li {
  float: left;
  width: 25%;
  margin-bottom: 20px;
  padding: 2px;
}

#report ul.list li a {
  display: block;
  text-align: center;
}

#report ul.list li a figure {
  overflow: hidden;
}

#report ul.list li a figure img {
  transition: 0.5s all;
  transform: scale(1);
}

#report ul.list li a figcaption {
  margin: 10px 0;
  font-size: clamp(1rem, 2.3vw, 18px);
  color: #ffffff;
  font-weight: 500;
}

#report ul.list li a:hover figure img {
  transform: scale(1.2);
}

#report ul.list li a:hover figcaption {
  text-decoration: underline;
}

#report h2.title>span {
  color: #ffffff;
}

#report h2.title:after {
  background: transparent;
}

/* ========================================================================== 
   10. MOBILE-FIRST RWD
   Breakpoints: phone (default) / tablet 768 / laptop 960 / desktop 1280
   ========================================================================== */

/* --------------------------------------------------------------------------
   10-1. PHONE — default styles, no media query
   -------------------------------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
}

#bannerScene.smart-city-banner {
  aspect-ratio: auto;
  background-color: transparent;
}

#bannerScene .mobile-banner {
  display: block;
}

#bannerScene .text-content,
#bannerScene .banner-inner {
  display: none !important;
}

ul.boxlist {
  padding-right: 0;
}

ul.boxlist>li {
  padding-left: 1.25rem;
}

ul.boxlist>li::before {
  left: 0;
}

ul.boxlist table {
  width: 100%;
}

ul.boxlist table th,
ul.boxlist table td {
  padding: 0.25rem;
  word-break: break-word;
}

#forum {
  padding-top: clamp(4.375rem, 14vw, 5rem);
}

#forum>div {
  position: relative;
  width: 100%;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

#forum h2 {
  margin-bottom: 0;
}

#forum p {
  margin: clamp(2rem, 8vw, 3.75rem) auto clamp(1.5rem, 5vw, 1.875rem);
}

#forum ul.info {
  width: 100%;
  margin: 1.25rem auto 0;
}

#forum ul.info li span {
  display: block;
  margin-left: clamp(2.5rem, 14vw, 3.75rem);
}

.info-add-s {
  margin-left: clamp(4.5rem, 22vw, 5.375rem);
}

#foruminfo ul.speaker {
display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#foruminfo ul.speaker li,
#foruminfo ul.speaker+ul li {
  width: 47.91667%;
  margin-left: 1.04167%;
  margin-right: 1.04167%;
}

#foruminfo .schedule p {
  padding-left: 0;
}

#foruminfo ul.timer li span {
  width: 3.125rem;
  padding-right: 0;
  text-align: center;
}

#foruminfo ul.timer li span i {
  display: block;
  line-height: 1;
  text-align: center;
  transform: rotate(90deg);
}

#foruminfo ul.timer li div {
  width: calc(100% - 3.75rem);
  min-height: 4.875rem;
}

#survey {
  padding-top: clamp(6rem, 14vw, 5rem);
  padding-bottom: clamp(10rem, 14vw, 5rem);
}

#survey.active .survey-left {
  top: 0.75rem;
  left: -12%;
  width: 46%;
}

#survey.active .survey-right {
  right: 5%;
  bottom: 0;
  width: 30%;
}

#vote {
  padding-top: clamp(3.75rem, 12vw, 5rem);
  padding-bottom: 100%;
}

#vote .btns {
  margin-top: clamp(2rem, 8vw, 2.5rem);
}

#vote::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -20%;
  bottom: -8%;
  display: block;
  width: 100%;
  height: 50%;
  background-image: url(../images/vote_hand.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  transform: translateY(30%);
}

#vote::after {
  right: 0;
  background-image: url(../images/goodm.png);
}

#vote.active::before,
#vote.active::after {
  transform: translateY(0);
}

#surveyresult .tab_content#government ul li,
#surveyresult .tab_content#government_lastyear ul li,
#surveyresult .tab_content#people ul li,
#surveyyear .tab_content#government ul li,
#surveyyear .tab_content#government_lastyear ul li,
#surveyyear .tab_content#people ul li {
  float: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

#voteway ul.way1 li i,
#voteway ul.way1 li p {
  display: table;
  margin-inline: auto;
}

#voteway ul.way1 li p {
  width: 100%;
  margin-top: 0.75rem;
  text-align: center;
}

#voteway ul.way2 {
  width: 100%;
  max-width: 31.25rem;
  margin: auto;
}

#voteway ul.way2 li {
  display: block;
  width: 100%;
  max-width: 15rem;
  margin: 0 auto 0.625rem;
}

#voteway ul.way2 li+li::before {
  top: -0.25rem;
  left: 50%;
  margin-left: -0.6875rem;
  transform: rotate(90deg);
}

#voteway ul.way2 li+li:nth-child(3)::before {
  display: block;
}

#voteway .way3 .percent,
#voteway .way3 .total {
  display: block;
}

#voteway .way3 .percent li>div.tt {
  min-width: 100%;
  margin-bottom: 0.3125rem;
  padding: 0.625rem;
}

#voteway .way3 .percent li+li::before {
  content: "+";
  display: table;
  margin: auto;
  font-size: clamp(2.25rem, 8vw, 50px);
}

#voteway .way3 .total div {
  display: table;
  margin: auto;
}

#voteway .way3 .total div img {
  transform: rotate(90deg);
}

#voteway ul.award figure,
#voteway ul.award figcaption {
  width: 100%;
}

#voteway ul.award figure img {
  margin: auto;
}

#voteway ul.award figcaption {
  margin-left: 0;
}

#voteway ul.award figcaption span {
  left: 0.75rem;
}

#awardname ul.list li {
  width: 100%;
}

#video .list li {
  width: 100%;
}

#unit ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

#unit ul li,
#unit ul.one li,
#unit ul.two li,
#unit ul.four li,
#unit ul.five li {
  float: none;
  width: 100%;
}

#unit ul.one li {
  width: 100%;
}

#unit .airplane {
  display: none;
}

#report {
  padding-top: clamp(3.75rem, 12vw, 5rem);
  padding-bottom: clamp(3.75rem, 12vw, 5rem);
}

#report ul.list {
  display: flex;
  flex-wrap: wrap;
}

#report ul.list li {
  float: none;
  width: 100%;
}

.iconshake {
  display: block;
}

/* --------------------------------------------------------------------------
   UNIFIED MOBILE-FIRST BREAKPOINTS (SIGNUP BUTTON)
   -------------------------------------------------------------------------- */
#signup {
  display: none;
  /* Mobile預設隱藏 PC 按鈕 */
}

#signup_m {
  display: block;
  /* Mobile預設顯示 Mobile 按鈕 */
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 60px;
  color: #ffffff;
  background-color: var(--primary-orange);
  text-align: center;
  line-height: 60px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
}

/* --------------------------------------------------------------------------
   TABLET — 768px+
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  #signup {
    display: block;
    /* 平板以上顯示 PC 按鈕 */
    position: fixed;
    bottom: 120px;
    right: 20px;
    z-index: 100;
    width: 120px;
    transition: opacity 0.3s;
  }

  #signup:hover {
    opacity: 0.8;
  }

  #signup_m {
    display: none;
    /* 平板以上隱藏 Mobile 按鈕 */
  }

  section>div.con {
    padding-right: 20px;
    padding-left: 20px;
  }

  ul.tabs li a {
    padding: 8px 16px;
  }

  .iconshake {
    display: none;
  }

  ul.boxlist {
    padding-right: 1rem;
  }

  ul.boxlist>li {
    padding-left: 1.875rem;
  }

  ul.boxlist>li::before {
    left: 0.3125rem;
  }

  ul.boxlist table {
    width: 95%;
  }

  ul.boxlist table th,
  ul.boxlist table td {
    padding: 0.1875rem 0.625rem;
    word-break: normal;
  }

  #forum ul.info li span {
    display: inline;
    margin-left: 0;
  }

  .info-add-s {
    margin-left: 6.5625rem;
  }

  #foruminfo .schedule p {
    padding-left: 1.25rem;
  }

  #foruminfo ul.timer li span {
    width: 7.5rem;
    padding-right: 0.625rem;
    text-align: right;
  }

  #foruminfo ul.timer li span i {
    display: inline;
    line-height: inherit;
    transform: none;
  }

  #foruminfo ul.timer li div {
    width: calc(100% - 8.125rem);
    min-height: 0;
  }

  #surveyresult .tab_content#government ul li,
  #surveyresult .tab_content#government_lastyear ul li,
  #surveyyear .tab_content#government ul li,
  #surveyyear .tab_content#government_lastyear ul li {
    float: left;
    width: 47.91667%;
    margin-left: 1.04167%;
    margin-right: 1.04167%;
  }

  #surveyi03 ul li,
  .surveyi03 ul li {
    width: 32%;
  }
#forum ul.info li a.map {
  width: 20px;
  height: 20px;

}
#award::before, #award::after {
    width: 25%;
}
  #voteway ul.way1 li i,
  #voteway ul.way1 li p {
    display: inline-block;
    margin: 0;
  }

  #voteway ul.way1 li p {
    width: calc(100% - 10rem);
    margin-left: 0.625rem;
    text-align: left;
  }

  #voteway ul.way2 li {
    display: inline-block;
    width: auto;
    max-width: 15rem;
    margin-bottom: 0;
  }

  #voteway ul.way2 li+li::before {
    top: 50%;
    left: -0.6875rem;
    margin-top: -0.6875rem;
    margin-left: 0;
    transform: none;
  }

  #voteway ul.way2 li+li:nth-child(3)::before {
    display: none;
  }

  #voteway .way3 .percent li>div.tt {
    min-width: 15.625rem;
    padding: 1.5rem;
  }

  #voteway ul.award figure {
    width: 15.625rem;
  }

  #voteway ul.award figcaption {
    width: calc(100% - 17.5rem);
    margin-left: 1.25rem;
  }

  #voteway ul.award figcaption span {
    left: 18.125rem;
  }

  #award::before,
  #award::after {
    background-size: 100%;
  }

  #awardname ul.list li {
    width: 47%;
  }


  #unit ul li {
    width: 33.33333%;
  }


#unit ul.two li {
  width: 47.91667%;
  float: left;
  margin-left: 1.04167%;
  margin-right: 1.04167%;
}

#unit ul.three li {
  width:30%;
  margin-left: 1.04167%;
  margin-right: 1.04167%;
}

#unit ul.four li {
  width:47%;
  margin-left: 1.04167%;
  margin-right: 1.04167%;
}


}

/* --------------------------------------------------------------------------
   LAPTOP — 960px+
   -------------------------------------------------------------------------- */
@media (min-width: 960px) {
  #bannerScene.smart-city-banner {
    aspect-ratio: 2 / 1;
    background-color: var(--bg-dark);
  }

  #unit {
    margin-bottom: 0;
  }

  #bannerScene .mobile-banner {
    display: none;
  }

  #bannerScene .text-content,
  #bannerScene .banner-inner {
    display: block !important;
  }

  #report ul.list li {
    width: 25%;
  }
}

/* --------------------------------------------------------------------------
   LAPTOP — 1180px+
   -------------------------------------------------------------------------- */
@media (min-width: 1180px) {
  section>div.con {
    padding-right: 15px;
    padding-left: 15px;
  }

  #forum::before {
    background: url(../images/forum-pc-top.svg) center top no-repeat;
  }

  #forum::after {
    background: url(../images/forum-pc-bottom.svg) bottom center no-repeat;
  }

  #survey::before {
    background: url(../images/survey-pc-top.svg) center top no-repeat;
  }

  #survey::after {
    background: url(../images/survey-pc-bottom.svg) bottom center no-repeat;
  }

  #video {
    background:
      url("../images/video-pc-bg.png"),
      linear-gradient(179.22deg, rgba(37, 182, 176, 0.8) -9.38%, rgba(212, 219, 255, 0.8) 66.27%);
    background-size: 100% auto;
    background-position: center bottom;
    background-repeat: repeat-x;
  }

  #video::before {
    background: url(../images/video-pc-top.svg) center top no-repeat;

  }

  #video::after {
    background: url(../images/video-pc-bottom.svg) bottom center no-repeat;
  }

 #foruminfo ul.speaker li {
    width: 20%;
  }

  #foruminfo ul.speaker+ul li {
    width: 22.91667%;
  }

  #vote {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }

  #vote::before {
    left: -10%;
    bottom: -8%;
    height: 50%;
  }

  #surveyresult .tab_content#people ul li,
  #surveyyear .tab_content#people ul li {
    float: left;
    width: 97.91667%;
    margin-left: 1.04167%;
    margin-right: 1.04167%;
  }

  #voteway .way3 .percent,
  #voteway .way3 .total {
    display: inline-block;
  }

  #voteway .way3 .percent li>div.tt {
    min-width: 23rem;
    padding: 2.2rem;
  }

  #voteway .way3 .percent li+li::before {
    display: none;
    content: none;
  }

  #voteway .way3 .total div {
    display: inline-block;
    margin: 0;
  }

  #voteway .way3 .total div img {
    transform: none;
  }

  #awardname ul.list li {
    width: 30%;
  }

  #video .list li {
    width: 24%;
  }

  #unit ul.five li {
    width: 17.91666%;
  }

  #unit .airplane {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   DESKTOP — 1280px+
   -------------------------------------------------------------------------- */
@media (min-width: 1280px) {
  section>div.con {
    padding-right: 0;
    padding-left: 0;
  }

  #forum .forum-left,
  #forum .forum-right {
    width: auto;
    height: 65%;
    max-height: 50rem;
  }

  #award.box-padding {
    padding-top: 0;
    padding-bottom: 2rem;
  }
}

/* Utility Classes */
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 960px) {
  .d-pc-none {
    display: none !important;
  }

  .d-pc-block {
    display: block !important;
  }

  .d-pc-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1280px) {
  .d-pc-lg-none {
    display: none !important;
  }

  .d-pc-lg-block {
    display: block !important;
  }

  .d-pc-lg-inline-block {
    display: inline-block !important;
  }
}