/* kv */
#kv {
  position: relative;
  overflow: hidden;
}

#kv .bgBox {
  width: 100%;
  overflow: hidden;
}

#kv .bgBox .bg {
  width: 100%;
  min-width: 1920px;
  display: block;
  position: relative;
}

#kv .textBox {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}

#kv .textBox .box {
  display: flex;
  justify-content: end;
  max-width: calc(var(--WebMinWidth) - 174px);
}

#kv .textBox .text {
  width: 100%;
  max-width: 861px;
}

#kv .btnBox {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;

}

#kv .btnBox .btns {
  border-radius: 10px;
  border: 1px solid rgba(255, 249, 194, 0.56);
  background: rgba(255, 255, 255, 0.41);
  display: flex;
  z-index: 20;
}

#kv .btnBox .btns .btn:first-child {
  border-radius: 10px 0px 0px 10px;

}

#kv .btnBox .btns .btn:last-child {
  border-radius: 0 10px 10px 0;
}

#kv .btnBox .btns .btn {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #FFFFFF;
  text-decoration: none;
  display: inline-block;
  text-shadow: 5px 5px 5px rgba(14, 5, 10, 0.28);
  padding: 20px 15px;
}

#kv .btnBox .btns .btn.active {
  background: rgba(255, 249, 194, 0.41);
}

#kv .btnBox .btns .btn:hover {
  background: rgba(255, 249, 194, 0.41);
}

#kv .kvBtnController {
  position: absolute;
  right: 0;
  bottom: 20px;
  color: #fff;
  font-size: 18px;
  text-shadow: 5px 5px 5px rgba(14, 5, 10, 0.28);
  background: rgba(255, 249, 194, 0.41);
  border: 1px solid rgba(255, 249, 194, 0.56);
  border-radius: 12px 0px 0px 12px;
  writing-mode: vertical-rl;
  /* 垂直排列，從右向左 */
  text-orientation: upright;
  /* 直立字形 */
  padding: 16px 16px 11px;
  letter-spacing: 15px;
  cursor: pointer;
  display: none;
  z-index: 20;
}

@media (max-width:1223px) {

  #kv .kvBtnController {
    display: block;
  }

  #kv .btnBox {
    justify-content: flex-end;
    width: 246px;
    left: unset;
    right: -150%;
    transition: .5s;
  }

  #kv .btnBox .btns {
    display: unset;
    border-radius: 10px 0 0 10px;
    width: 246px;
  }

  #kv .btnBox .btns .btn {
    display: block;
    padding: 27px 0;
    width: 100%;
    text-align: center;
  }

  #kv .btnBox .btns .btn:first-child {
    border-radius: 10px 0px 0px 0px;

  }

  #kv .btnBox .btns .btn:last-child {
    border-radius: 0 0 0 10px;
  }

}

@media (max-width:480px) {

  #kv .bgBox .bg {
    width: unset;
    max-width: unset;
    height: 100vh;
    left: -110%;
  }
}

.indexsec_pc {
  width: 100%;
  display: block;
}

.indexsec_mb {
  width: 100%;
  display: none;
}

@media (max-width:480px) {
  .indexsec_pc {
    width: 100%;
    display: none;
  }

  .indexsec_mb {
    width: 100%;
    display: block;
  }
}


/* crisis */
#crisis {
  background-image: url(../imgs/index_crisis_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#crisis .box {
  padding: 51px 0 105px;
  display: flex;
  justify-content: space-between;
}

#crisis .left {
  width: calc((100% - 89px) * .72);
}

#crisis .right {
  width: calc((100% - 89px) * .28);
}

#crisis img {
  width: 100%;
}

@media (max-width:480px) {
  #crisis .box {
    padding: 40px 0;
    flex-direction: column;
    gap: 30px;
  }

  #crisis .left,
  #crisis .right {
    width: 100%;
  }
}

/* feel */

#feel {
  background-color: #89908D;
  position: relative;
}

#feel .bg_l {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1;
}

#feel .bg_r {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

#feel .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}

#feel .box .left {
  width: calc((100% - 64px) * .32);
}

#feel .box .right {
  width: calc((100% - 64px) * .68);
}

#feel .box img {
  width: 100%;
}

@media (max-width:480px) {
  #feel .box {
    flex-direction: column-reverse;
  }

  #feel .box .right {
    width: 100%;
  }

  #feel .box .left {
    width: 70%;
  }

  #feel .bg_l {
    top: unset;
    bottom: 0;
    height: 50%;
  }

  #feel .bg_r {
    position: absolute;
    top: 0;
    right: 0;
    height: 50%;
  }
}

/* care */
#care {
  background-image: url(../imgs/index_care_bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#care .box {
  padding: 41px 0 150px;
}

#care .box img {
  width: 100%;
}

/* middle */
#middle {
  background-image: url(../imgs/index_middle_bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#middle .box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#middle .box .title {
  width: 100%;
  max-width: 1032px;
  margin-bottom: 68px;
}

#middle .box .title img {
  width: 100%;
}

.pessimistic {
  width: 100%;
}

.pessimistic .title2 {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.pessimistic .title2 img {
  width: 100%;
  max-width: 370px;
}

.pessimistic .talks {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.pessimistic .talks .people {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 274px;
}

.pessimistic .talks .card {
  display: block;
  width: 100%;
  max-width: 428px;
  position: relative;
}

.pessimistic .talks .card .card_t {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 16px;
  border-radius: 70px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  align-items: center;
  background-color: #FFF9C2;
  display: inline;
  color: #000;
}

.pessimistic .talks .card .voice {
  text-align: right;
  line-height: 150%;
  color: #FFFFFF;
}

.pessimistic .talks .card .voice span {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  color: #FF7E00;
}

.pessimistic .talks .card .texts {
  padding: 20px 14px;
  border-radius: 10px;
  background-color: var(--White25);
}

.pessimistic .talks .card .texts .des {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #FFFFFF;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  border-bottom: 1px solid #fff;
  margin-bottom: 8px;
}

.pessimistic .talks .card .texts .remark {
  font-size: 16px;
  line-height: 150%;
  color: #000000;
}

.pessimistic .talks .people img {
  width: 100%;
}

.pessimistic .talks .left,
.pessimistic .talks .right {
  width: calc(50% - 185px);
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pessimistic .talks .right {
  align-items: flex-end;
}

/* female */

#female {
  margin-bottom: 70px;
}

#female .left .cardBox1 {
  padding-left: 110px;
}

#female .left .cardBox2 {
  padding-right: 110px;
}

#female .left .cardBox3 {
  padding-left: 80px;
}

#female .left .cardBox4 {
  padding-right: 110px;
}

#female .right .cardBox1 {
  padding-right: 118px;
}

#female .right .cardBox2 {
  padding-left: 118px;
}

#female .right .cardBox3 {
  padding-right: 50px;
}

#female .right .cardBox4 {
  padding-right: 85px;
}

/* male */

#male .talks .people {
  width: 224px;
}

#male .talks .left,
#male .talks .right {
  width: calc(50% - 112px);
}

#male .talks .right {
  align-items: flex-start;
}

#male .talks .card .card_t {
  background-color: var(--PaleBlue70);
}

#male .left .cardBox1 {
  padding-left: 110px;
}

#male .left .cardBox2 {
  padding-right: 105px;
  padding-left: 55px;
}

#male .left .cardBox3 {
  padding-right: 150px;
}

#male .left .cardBox4 {
  padding-left: 110px;
  padding-right: 10px;
}

#male .right .cardBox1 {
  padding-right: 50px;
  padding-left: 20px;
  width: 100%;
}

#male .right .cardBox2 {
  padding-left: 40px;
  padding-right: 30px;
}

#male .right .cardBox3 {
  padding-right: 20px;
  padding-left: 60px;
}

#male .right .cardBox4 {
  padding-right: 60px;
  width: 100%;
}

@media (max-width:1370px) {

  .pessimistic .talks .people {
    width: 170px;
  }

  .pessimistic .talks .left,
  .pessimistic .talks .right {
    width: calc(50% - 85px);
  }

  #female .left .cardBox1 {
    padding-left: 40px;
  }

  #female .left .cardBox2 {
    padding-right: 40px;
  }

  #female .left .cardBox3 {
    padding-left: 40px;
    padding-right: 10px;
  }

  #female .right .cardBox1 {
    padding-right: 40px;
  }

  #female .right .cardBox2 {
    padding-left: 40px;
  }

  #female .right .cardBox3 {
    padding-left: 10px;
  }

  #female .right .cardBox4 {
    padding-right: 50px;
  }

  #male .talks .people {
    width: 130px;
  }

  #male .talks .left,
  #male .talks .right {
    width: calc(50% - 65px);
  }

  #male .left .cardBox2 {
    padding-right: 50px;
  }

  #male .left .cardBox3 {
    padding-right: 60px;
  }

  #male .left .cardBox4 {
    padding-left: 50px;
  }

  #male .right .cardBox2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  #male .right .cardBox3 {
    padding-left: 40px;
  }
}

@media (max-width:1023px) {
  .pessimistic .talks {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .pessimistic .talks .people {
    position: unset;
    transform: unset;
  }

  .pessimistic .talks .left,
  .pessimistic .talks .right,
  #male .talks .left,
  #male .talks .right {
    width: 100%;
    max-width: 428px;
  }

  .pessimistic .talks .left>div,
  .pessimistic .talks .right>div {
    padding: unset !important;
  }
}

@media (max-width:480px) {
  .pessimistic .title2 img {
    max-width: 185px;
  }

  .pessimistic .talks .card .card_t {
    font-size: 16px;
  }
}

/* info */

#info {
  background-image: url(../imgs/index_info_bg.png);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
}

#info .box {
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: end;
}

#info .box .q_box {
  width: 100%;
  max-width: 729px;
}

#info .box .q_box .title {
  width: 100%;
  display: block;
  margin-bottom: 60px;
  font-size: 50px;
  font-weight: 600;
  text-align: left;
  color: rgb(240, 230, 167);
  font-family: "Noto Serif TC", serif;
}

#info .box .q_box .btnContainer {
  width: 100%;
  display: flex;
  justify-content: center;
}

#info .box .q_box .btnContainer .btnBox {
  width: 224px;
  opacity: 1;
  transition: .5s;
}

#info .box .q_box .btnContainer .btnBox:hover {
  opacity: .5;
}

#info .box .q_box .btnContainer .btnBox img {
  width: 100%;
}

.question_list {
  display: none;
}

.question_list .title {
  text-align: center;
}

.question_list .title img {
  width: 100%;
  max-width: 579px;
}

.question_list .inputs {
  display: flex;
  justify-content: center;
  column-gap: 70px;
  row-gap: 20px;
  flex-wrap: wrap;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: #FFFFFF;
}

.que_answers {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 729px;
  display: none;
}

.que_answers .title {
  width: 100%;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(240, 230, 167);
  font-size: 50px;
  font-weight: 600;
  gap: 10px;
  text-align: left;
  font-family: "Noto Serif TC", serif;

}

.que_answers .title img {
  width: 40px;
  height: 40px;
}

.que_answers .text {
  width: 100%;
  max-width: 518px;
  margin-bottom: 60px;
}

.que_answers .text img {
  width: 30px;
  height: 30px;
}

.que_answers .text .que_answers_res {
  display: inline;
  font-family: "Noto Serif TC", serif;
  font-size: 27px;
  color: rgb(240, 230, 167);
  font-weight: 500;
}

.que_answers .btn {
  font-size: 20px;
  width: 187px;
  height: 52px;
  border-radius: 10px;
  background-color: rgb(224, 224, 224);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width:480px) {
  #info .box .q_box .title {
    font-size: 28px;
  }

  .que_answers .title {
    font-size: 28px;
  }

  .que_answers .title img {
    width: 20px;
    height: 20px;
  }

  .que_answers .text .que_answers_res {
    font-size: 18px;
  }

  .que_answers .text img {
    width: 20px;
    height: 20px;
  }

  .question_list .inputs {
    font-size: 20px;
    column-gap: 20px;
  }
}


#form {
  background-image: url(../imgs/index_form_bg.png);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  display: none;
}

#form .box {
  padding: 100px 0;
  max-width: 1076px;
}

#form .title {
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}

#form .title img {
  width: 100%;
  max-width: 953px;
}

#form .charts {
  width: 100%;
  display: flex;
  row-gap: 13px;
  column-gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

#form .charts img {
  width: calc((100% - 44px) / 3);
}

#form .inputs {
  width: 100%;
  display: flex;
  justify-content: center;
}

#form .inputs .inputsBox {
  width: 100%;
  max-width: 652px;
}

#form .inputs .inputsBox .des {
  width: 100%;
  margin-bottom: 40px;
}

#form .inputs .inputsBox .des img {
  width: 100%;
}






/* 隱藏原本的 radio 按鈕 */
input[type="radio"] {
  appearance: none;
  /* 移除瀏覽器的預設樣式 */
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 23px;
  /* 外框大小 */
  height: 23px;
  border: 2px solid #ccc;
  background-color: #fff;
  /* 外框顏色 */
  border-radius: 50%;
  /* 圓形按鈕 */
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

/* 點擊或選中時的外框樣式 */
input[type="radio"]:checked {
  border: 2px solid rgb(232, 168, 81);

}

/* 點擊或選中時的圓點樣式 */
input[type="radio"]:checked::before {
  content: '';
  /* 新增一個圓點 */
  display: block;
  width: 13px;
  /* 圓點大小 */
  height: 13px;
  margin: auto;
  background: rgb(232, 168, 81);
  /* 圓點顏色 */
  border-radius: 50%;
  /* 圓形 */
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}