@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
.top {
  cursor: pointer;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 100;
  transition: all 0.2s;
}

.top:hover {
  opacity: 0.7;
}

/* header */
.header {
  position: relative;
  z-index: 99;
  background: linear-gradient(to right, #70e8c3, #31d5d2);
}
@media screen and (max-width: 1200px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
}
.header.header_s {
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.15);
}
.header .header_w {
  width: 100%;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding: 14px 30px;
}
@media screen and (max-width: 576px) {
  .header .header_w {
    padding: 7px 14px;
  }
}
@media screen and (max-width: 576px) {
  .header .header_w .logo a img {
    width: 200px;
  }
}
.header .header_w .menu {
  display: flex;
  line-height: 0;
}
@media screen and (max-width: 1200px) {
  .header .header_w .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to right, #70e8c3, #31d5d2);
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
  }
  .header .header_w .menu.menu_open {
    transform: translateY(0);
  }
  .header .header_w .menu .nav {
    margin-top: 53px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
    overflow-y: scroll;
  }
}
.header .header_w .menu .nav > li {
  margin-left: 47px;
  line-height: 0;
}
@media screen and (max-width: 1310px) {
  .header .header_w .menu .nav > li {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .header .header_w .menu .nav > li {
    margin: 0;
    width: 100%;
    text-align: center;
    background: linear-gradient(to right, #31d4d1, #2ec5db, #bdffaf);
  }
}
.header .header_w .menu .nav > li a,
.header .header_w .menu .nav > li div {
  display: block;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.5px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .header .header_w .menu .nav > li a,
  .header .header_w .menu .nav > li div {
    font-size: 24px;
    line-height: 24px;
    padding: 34px 0;
  }
}
@media screen and (min-width: 1201px) {
  .header .header_w .menu .nav > li a .sub_menu,
  .header .header_w .menu .nav > li div .sub_menu {
    position: absolute;
    visibility: hidden;
    padding-top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 120px;
    opacity: 0;
    transition: all 0.2s ease;
  }
  .header .header_w .menu .nav > li a .sub_menu li a,
  .header .header_w .menu .nav > li div .sub_menu li a {
    background-color: #fff;
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.5px;
    padding: 4px 18px;
    outline: 1px solid #fff;
    color: #2ccadc;
    text-align: center;
  }
  .header .header_w .menu .nav > li a .sub_menu li a:hover,
  .header .header_w .menu .nav > li div .sub_menu li a:hover {
    background-color: #2ccadc;
    color: #fff;
  }
}
@media screen and (max-width: 1200px) {
  .header .header_w .menu .nav > li a .sub_menu,
  .header .header_w .menu .nav > li div .sub_menu {
    position: relative;
    z-index: 5;
    width: 100%;
    text-align: center;
    margin-top: 34px;
    display: none; /* 預設隱藏，但可以通過 JavaScript 控制顯示 */
  }
  .header .header_w .menu .nav > li a .sub_menu.sub_menu_open,
  .header .header_w .menu .nav > li div .sub_menu.sub_menu_open {
    display: block;
  }
  .header .header_w .menu .nav > li a .sub_menu li a,
  .header .header_w .menu .nav > li div .sub_menu li a {
    background-color: #fff;
    display: block;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0.5px;
    color: #2ccadc;
    text-align: center;
    line-height: 24px;
    padding: 34px 0;
  }
}
.header .header_w .menu .nav > li div {
  cursor: default;
}
.header .header_w .menu .nav > li div:hover .sub_menu {
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 1201px) {
  .header .header_w .menu .nav > li div:hover .sub_menu {
    visibility: visible;
    opacity: 1;
  }
}
.header .header_w .menu .menu_close {
  display: none;
}
@media screen and (max-width: 1200px) {
  .header .header_w .menu .menu_close {
    display: block;
    cursor: pointer;
    position: fixed;
    top: 0px;
    left: 0;
    text-align: right;
    padding-top: 5px;
    height: 53px;
    width: 100%;
    background: linear-gradient(to right, #70e8c3, #31d5d2);
    z-index: 5;
  }
  .header .header_w .menu .menu_close img {
    width: 53px;
  }
}
.header .header_w .menu_btn {
  display: none;
}
@media screen and (max-width: 1200px) {
  .header .header_w .menu_btn {
    display: block;
    cursor: pointer;
  }
  .header .header_w .menu_btn img {
    width: 39px;
  }
}

/* footer */
footer {
  width: 100%;
  padding: 10px;
  text-align: center;
}
footer .footer {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
}
@media screen and (max-width: 576px) {
  footer .footer {
    font-size: 16px;
    line-height: 24px;
  }
}

#privacyModal {
  background: rgba(0, 0, 0, 0.78);
}
#privacyModal .modal-dialog {
  max-width: 536px;
}
@media screen and (max-width: 576px) {
  #privacyModal .modal-dialog {
    max-width: 100%;
    margin: 1.75rem auto;
    padding: 0 24px;
  }
}
#privacyModal .modal-content {
  border-radius: 30px 0 30px 30px;
  border: 3px solid #000;
  padding-bottom: 32px;
}
#privacyModal .modal-header {
  padding: 32px;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
}
#privacyModal .modal-header .modal-title {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
  text-align: center;
}
#privacyModal .modal-header .close {
  position: absolute;
  top: 12px;
  right: 12px;
  opacity: 1;
  transition: all 0.2s ease;
}
#privacyModal .modal-header .close:hover {
  transform: rotate(180deg);
}
#privacyModal .modal-body {
  padding: 0 32px;
  padding-right: 14px;
}
#privacyModal .modal-body .privacy_scroll_box {
  overflow-y: auto;
  max-height: 70vh;
  padding-right: 8px;
  /* 滾動條軌道（背景） */
  /* 可拖動的滾動塊 */
  /* 滑鼠 hover 在滾動塊上 */
}
#privacyModal .modal-body .privacy_scroll_box::-webkit-scrollbar {
  width: 10px; /* 垂直滾動條寬度 */
  height: 10px; /* 水平滾動條高度 */
}
#privacyModal .modal-body .privacy_scroll_box::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 5px;
}
#privacyModal .modal-body .privacy_scroll_box::-webkit-scrollbar-thumb {
  background: #c9c9c9;
  border-radius: 5px;
}
#privacyModal .modal-body .privacy_scroll_box::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
#privacyModal .modal-body .privacy_scroll_box .privacy-content > * {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #000;
  font-weight: 400;
}
#privacyModal .modal-body .privacy_scroll_box .privacy-content h6 {
  font-weight: 700;
}
#privacyModal .modal-body .privacy_scroll_box .privacy-content .privacy_list {
  counter-reset: sub-counter third-counter;
  margin-top: 27px;
}
#privacyModal .modal-body .privacy_scroll_box .privacy-content .privacy_list > li:not(:last-child) {
  margin-bottom: 27px;
  list-style: none;
}
#privacyModal .modal-body .privacy_scroll_box .privacy-content .privacy_list > li:not(:last-child) > ol {
  counter-reset: sub-counter;
  margin-left: 20px;
}
#privacyModal .modal-body .privacy_scroll_box .privacy-content .privacy_list > li:not(:last-child) > ol > li {
  counter-increment: sub-counter;
  list-style: none;
  position: relative;
  padding-left: 30px;
}
#privacyModal .modal-body .privacy_scroll_box .privacy-content .privacy_list > li:not(:last-child) > ol > li::before {
  content: "（" counter(sub-counter, cjk-ideographic) "）";
  position: absolute;
  left: -20px;
}
#privacyModal .modal-body .privacy_scroll_box .privacy-content .privacy_list > li:not(:last-child) > ol > li > ol {
  counter-reset: third-counter;
  margin-left: 10px;
}
#privacyModal .modal-body .privacy_scroll_box .privacy-content .privacy_list > li:not(:last-child) > ol > li > ol > li {
  counter-increment: third-counter;
  list-style: none;
  position: relative;
  padding-left: 0px;
}
#privacyModal .modal-body .privacy_scroll_box .privacy-content .privacy_list > li:not(:last-child) > ol > li > ol > li::before {
  content: counter(third-counter) ". ";
  position: absolute;
  left: -25px;
  font-weight: bold;
  color: #000;
}

/* http://meyerweb.com/eric/tools/css/reset/ */
/* v1.0 | 20080212 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/* remember to define focus styles! */
:focus {
  outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

a:hover {
  text-decoration: none;
}

.allHidden {
  overflow: hidden;
}

body {
  min-width: 350px;
  width: 100%;
  margin: 0 auto;
  font-family: "Noto Sans TC", sans-serif;
  overflow-x: hidden;
  color: #000000;
  background: #E60012;
  line-height: 0;
}
body.allHidden {
  overflow: hidden;
}

a {
  text-decoration: none;
}
a:hover {
  color: initial;
}

.follow {
  position: fixed;
  bottom: 30%;
  right: 40px;
  z-index: 888;
}
.follow li {
  cursor: pointer;
  margin-bottom: 7px;
  transition: all 0.1s;
}
.follow li:hover {
  opacity: 0.7;
}

.follow_m {
  display: none;
}

.main {
  overflow: hidden;
  position: relative;
  background: #E60012;
  padding: 16px;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .main {
    padding: 12px;
  }
}

.m_container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  padding: 0 64px;
}
@media screen and (max-width: 768px) {
  .m_container {
    padding: 0 25px;
  }
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f3f3f3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.load_10 {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: relative;
}

.load_10 .bounce1,
.load_10 .bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #2a2a2a;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.load_10 .bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
#loader span {
  margin-top: 10px;
  width: 100%;
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #e60012;
  text-align: center;
  text-transform: uppercase;
}

.bread {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 15px;
}
.bread .bread-item {
  letter-spacing: 0.5px;
  font-size: 14px;
  line-height: 28px;
  color: #666;
  font-weight: 500;
}
@media screen and (max-width: 576px) {
  .bread .bread-item {
    font-size: 12px;
    line-height: 18px;
  }
}
.bread .bread-item:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  box-orient: vertical;
}
.bread a.bread-item:hover {
  opacity: 0.7;
}
.bread span {
  display: inline-block;
  letter-spacing: 0.5px;
  font-size: 14px;
  line-height: 28px;
  color: #666;
  font-weight: 500;
  margin: 0 15px;
}
@media screen and (max-width: 576px) {
  .bread span {
    font-size: 12px;
    line-height: 18px;
  }
}

.my_fadeInUp {
  animation: my_fadeInUp 0.3s linear forwards;
}

#index #news .m_container .news-wra .swiper .item.my_fadeInUp {
  animation: my_fadeInUp 0.7s linear forwards;
}

@keyframes my_fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.kv-pulse {
  animation: pulse 0.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.kv-fadeInUp {
  animation: kv-fadeInUp 0.5s ease-out forwards;
}

.kv-fadeInLeft {
  animation: kv-fadeInLeft 0.3s ease-out forwards;
}

.kv-fadeInRight {
  animation: kv-fadeInRight 0.3s ease-out forwards;
}

.kv-bounceIn {
  animation: kv-bounceIn 0.6s ease-out forwards;
}

.kv-scaleIn {
  animation: kv-scaleIn 0.6s ease-out forwards;
}

@keyframes kv-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes kv-fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes kv-fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes kv-bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes kv-scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.banner {
  background: url(../img/bg_1920.jpg) no-repeat center center/cover;
  min-height: 650px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .banner {
    background: url(../img/bg_1280.jpg) no-repeat center center/cover;
  }
}
@media screen and (max-width: 767px) {
  .banner {
    background: url(../img/bg_mobile.jpg) no-repeat center top/cover;
    min-height: 485px;
  }
}
.banner .logo {
  position: absolute;
  top: 32px;
  left: 54px;
  z-index: 5;
}
@media screen and (max-width: 1050px) {
  .banner .logo {
    top: 28px;
    left: 28px;
  }
  .banner .logo img {
    width: 80px;
  }
}
@media screen and (max-width: 576px) {
  .banner .logo img {
    width: 53px;
  }
}

#index .d-none {
  display: none !important;
}
@media screen and (min-width: 768px) {
  #index .d-md-block {
    display: inline-block !important;
  }
}
#index .kv-none {
  display: none !important;
}
#index .kv {
  max-width: 1248px;
  max-width: 972px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
#index .kv .kv_wra {
  position: relative;
  padding-top: 30px;
  padding-bottom: 157px;
}
@media screen and (max-width: 767px) {
  #index .kv .kv_wra {
    padding: 17.6vw 8.8vw 38.1333vw;
  }
}
#index .kv img {
  position: absolute;
  width: 100%;
}
#index .kv img.main_kv {
  margin-right: -16px;
  position: relative;
  max-width: 66.976%;
}
@media screen and (max-width: 767px) {
  #index .kv img.main_kv {
    max-width: 100%;
    margin-right: 0;
  }
}
#index .kv img.sticker_1 {
  top: 37.2%;
  left: 3.9%;
  max-width: 12.346%;
}
@media screen and (max-width: 767px) {
  #index .kv img.sticker_1 {
    top: 42.7%;
    left: auto;
    right: 12.8%;
    max-width: 15.084%;
  }
}
#index .kv img.sticker_2 {
  top: 55.6%;
  left: 0;
  max-width: 14.404%;
}
@media screen and (max-width: 767px) {
  #index .kv img.sticker_2 {
    top: 51.3%;
    left: auto;
    right: 7.4%;
    max-width: 17.095%;
  }
}
#index .kv img.sticker_3 {
  top: 36.9%;
  right: 7.4%;
  max-width: 12.346%;
}
@media screen and (max-width: 767px) {
  #index .kv img.sticker_3 {
    top: 64.5%;
    right: auto;
    left: 6%;
    max-width: 17.095%;
  }
}
#index .kv img.sticker_4 {
  top: 56.1%;
  right: 3.3%;
  max-width: 10.2881%;
}
@media screen and (max-width: 767px) {
  #index .kv img.sticker_4 {
    top: 74.7%;
    right: auto;
    left: 9.7%;
    max-width: 15.385%;
  }
}
#index .kv img.start_btn {
  width: 100%;
  max-width: 26.029%;
  bottom: 5.45%;
  left: 50%;
  margin-left: -12.4489%;
}
@media screen and (max-width: 767px) {
  #index .kv img.start_btn {
    max-width: 47.01%;
    bottom: 7.2%;
    margin-left: -23.505%;
  }
}

html {
  scroll-behavior: smooth;
}

#form {
  scroll-margin-top: 20px;
}

a[href^="#"] {
  transition: all 0.3s ease;
}
a[href^="#"]:hover {
  transform: translateY(-2px);
}

#result > * {
  scroll-behavior: smooth;
}
#result .kv-none {
  display: none !important;
}
#result .kv-opacity {
  opacity: 0;
}
#result .result_wra {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 29px 0;
}
@media screen and (max-width: 992px) {
  #result .result_wra {
    padding: 4px;
  }
}
#result .result_wra .result_header {
  background: url(../img/result/result_header.png) no-repeat center center;
  background-size: 100% 100%;
  padding-bottom: 3.2734%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_header {
    background: url(../img/result/result_header_m.png) no-repeat center center;
    background-size: 100% 100%;
    padding-bottom: 11.664%;
  }
}
#result .result_wra .result_content {
  background: linear-gradient(to bottom, #ffffff, #f25932);
  position: relative;
  padding: 35px 64px;
  display: flex;
  align-items: flex-start;
  gap: 21px;
  border: 3px solid #000;
  border-top: 0;
}
@media screen and (max-width: 1200px) {
  #result .result_wra .result_content {
    padding: 28px 30px;
  }
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content {
    flex-direction: column;
    padding: 21px 13px;
  }
}
#result .result_wra .result_content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 2px, transparent 2px);
  background-size: 25px 25px;
  background-position: 0 0, 15px 15px;
  pointer-events: none;
  z-index: 1;
}
#result .result_wra .result_content > * {
  position: relative;
  z-index: 2;
}
#result .result_wra .result_content .result_left_pic {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_left_pic {
    width: 100%;
  }
}
#result .result_wra .result_content .result_left_pic .result_left_pic_top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_left_pic .result_left_pic_top {
    margin-bottom: 20px;
  }
}
#result .result_wra .result_content .result_left_pic .logo {
  max-width: 25%;
  flex-shrink: 0;
}
#result .result_wra .result_content .result_left_pic .logo a {
  display: block;
  width: 100%;
}
#result .result_wra .result_content .result_left_pic .logo a img {
  width: 100%;
}
#result .result_wra .result_content .result_left_pic .btn_group {
  display: flex;
  align-items: center;
  justify-content: end;
}
#result .result_wra .result_content .result_left_pic .btn_group .download_btn {
  max-width: 54.94%;
  transition: all 0.2s ease;
  margin-right: 6px;
}
#result .result_wra .result_content .result_left_pic .btn_group .download_btn:hover {
  filter: brightness(1.1);
}
#result .result_wra .result_content .result_left_pic .btn_group .download_btn img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_left_pic .btn_group .download_btn {
    max-width: 55.74%;
    margin-right: 4px;
  }
}
#result .result_wra .result_content .result_left_pic .btn_group .fb_share_btn {
  margin-right: 6px;
  max-width: 17%;
}
#result .result_wra .result_content .result_left_pic .btn_group .fb_share_btn img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_left_pic .btn_group .fb_share_btn {
    max-width: 18.01%;
    margin-right: 4px;
  }
}
#result .result_wra .result_content .result_left_pic .btn_group .line_share_btn {
  max-width: 17%;
}
#result .result_wra .result_content .result_left_pic .btn_group .line_share_btn img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_left_pic .btn_group .line_share_btn {
    max-width: 18.01%;
  }
}
#result .result_wra .result_content .result_left_pic .result_pic_box {
  position: relative;
}
#result .result_wra .result_content .result_left_pic .result_pic_box img:not(.subtitle) {
  width: 100%;
  max-width: 378px;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_left_pic .result_pic_box img:not(.subtitle) {
    max-width: 100%;
  }
}
#result .result_wra .result_content .result_left_pic .slogan_box {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  color: #ffffff;
  padding: 10px 24px;
  letter-spacing: 0;
  background: #000000;
  border-radius: 0 30px 30px 30px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
@media screen and (max-width: 992px) {
  #result .result_wra .result_content .result_left_pic .slogan_box {
    font-size: 20px;
    line-height: 30px;
    padding: 10px 16px;
  }
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_left_pic .slogan_box {
    text-align: left;
    font-size: 18px;
    line-height: 27px;
    padding: 12px 20px;
    border-radius: 0 15px 15px 15px;
  }
}
#result .result_wra .result_content .result_right {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_right {
    width: 100%;
  }
}
#result .result_wra .result_content .result_right .result_right_text {
  padding: 32px;
  padding-right: 14px;
  border-radius: 40px 0 40px 40px;
  background: linear-gradient(to bottom, #fff, #e8e8e8);
  border: 3px solid #000000;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_right .result_right_text {
    width: 100%;
    padding: 21px;
    border-radius: 0 20px 20px 20px;
  }
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box {
  overflow-x: hidden;
  overflow-y: scroll;
  padding-right: 8px;
  max-height: 578px;
  /* 滾動條軌道（背景） */
  /* 可拖動的滾動塊 */
  /* 滑鼠 hover 在滾動塊上 */
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box {
    padding-right: 0;
    overflow-y: initial;
    max-height: initial;
    max-width: 500px;
    margin: 0 auto;
  }
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box::-webkit-scrollbar {
  width: 10px;
  /* 垂直滾動條寬度 */
  height: 10px;
  /* 水平滾動條高度 */
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 5px;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box::-webkit-scrollbar-thumb {
  background: #c9c9c9;
  border-radius: 5px;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box * {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  color: #000000;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box * {
    font-size: 16px;
    line-height: 24px;
  }
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box #title {
  margin-bottom: 14px;
  font-weight: 900;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box #text1 {
  margin-bottom: 14px;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .advantages,
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .remind {
  display: flex;
  align-items: center;
  gap: 0 16px;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .advantages span,
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .remind span {
  font-weight: 700;
  color: #fff;
  padding: 6px 16px;
  display: inline-block;
  background: #000;
  border-radius: 6px;
  min-width: 104px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .advantages span,
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .remind span {
    min-width: 96px;
  }
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .advantages {
  margin-bottom: 11px;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .remind {
  margin-bottom: 18px;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .result_name {
  padding: 6px 0;
  border-top: 2.5px solid #000;
  border-bottom: 2.5px solid #000;
  margin-bottom: 18px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .result_name {
    font-size: 14px;
    border-top: 1.5px solid #000;
    border-bottom: 1.5px solid #000;
    text-align: center;
    width: 100%;
  }
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .result_intro {
  display: flex;
  flex-direction: column;
  gap: 18px 0;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .result_intro {
    gap: 24px 0;
  }
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .result_intro p span {
  font-weight: 900;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .resource_box {
  max-width: 460px;
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .resource_box {
    max-width: 100%;
  }
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .resource_box .resource_list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 20px;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .resource_box .resource_list {
    gap: 20px;
  }
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .resource_box .resource_list .resource_item {
  width: calc(50% - 10px);
  text-align: center;
}
@media screen and (max-width: 992px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .resource_box .resource_list .resource_item {
    width: 100%;
  }
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .resource_box .resource_list .resource_item a,
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .resource_box .resource_list .resource_item div {
  display: block;
  line-height: 0;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .resource_box .resource_list .resource_item a img,
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .resource_box .resource_list .resource_item div img {
  width: 100%;
  max-width: 163px;
  transition: all 0.4s ease;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .resource_box .resource_list .resource_item > a:hover img {
  filter: brightness(1.1);
  transform: translateY(-3px);
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .resource_box .resource_list .resource_item .resource_intro {
  margin-top: 12px;
  display: inline-flex;
  flex-direction: column;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .resource_box .resource_list .resource_item .resource_intro * {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .resource_box .resource_list .resource_item .resource_intro a {
  display: inline-block;
  line-height: 24px;
  color: #e60012;
  text-decoration: underline;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .resource_box .resource_list .resource_item .resource_intro a:hover {
  color: #000;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .result_intro_bottom {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .result_intro_bottom {
    text-align: center;
  }
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #000;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra h2 {
  font-size: 22px;
  font-weight: 900;
  line-height: 33px;
  margin-bottom: 18px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra h2 {
    font-size: 20px;
    line-height: 30px;
  }
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form > * {
  line-height: 0;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item {
    margin-bottom: 24px;
  }
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item h3 {
    font-size: 16px;
    line-height: 24px;
  }
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .form_group p {
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .form_group p {
    font-size: 14px;
    line-height: 21px;
  }
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .form_group .form_item_box {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .form_group .form_item_box .items {
  display: flex;
  width: calc(33.3333333333% - 8px);
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 992px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .form_group .form_item_box .items {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .form_group .form_item_box .items {
    width: calc(33.3333333333% - 8px);
  }
}
@media screen and (max-width: 460px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .form_group .form_item_box .items {
    width: auto;
  }
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .form_group .form_item_box .items input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .form_group .form_item_box .items input {
    width: 18px;
    height: 18px;
  }
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .form_group .form_item_box .items input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #000;
  background-color: #fff;
  border-radius: 2px;
  position: relative;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .form_group .form_item_box .items input[type=checkbox]:checked {
  background-color: #E60012;
  border-color: #E60012;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .form_group .form_item_box .items input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .form_group .form_item_box .items input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #000;
  background-color: #fff;
  border-radius: 2px;
  position: relative;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .form_group .form_item_box .items input[type=radio]:checked {
  background-color: #E60012;
  border-color: #E60012;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .form_group .form_item_box .items input[type=radio]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .form_group .form_item_box .items input[type=radio]:checked::after {
    font-size: 12px;
  }
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .form_group .form_item_box .items label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  flex-shrink: 0;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .form_group .form_item_box .items .other_input {
  width: 100%;
  max-width: 110px;
  height: auto;
  border: 0;
  border-bottom: 1px solid #000;
  font-size: 14px;
  line-height: 18px;
  display: none;
  background: initial;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item:nth-child(2) h3 {
  margin-bottom: 16px;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item:nth-child(2) .form_group .name_item {
  flex-direction: column;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item:nth-child(2) .form_group .name_item .items {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item:nth-child(2) .form_group .name_item .items {
    width: 180px;
  }
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item:nth-child(2) .form_group .name_item .items input {
  width: 100%;
  height: 30px;
  flex-shrink: 0;
  border-radius: 2px;
  font-size: 14px;
  line-height: 1;
  padding: 0 5px;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item:nth-child(2) .form_group .name_item .items input {
    height: 26px;
  }
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item:nth-child(2) .form_group .name_item .items label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  flex-shrink: 0;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item:nth-child(3) .form_group {
  margin-bottom: 18px;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item:nth-child(3) .form_group:last-child {
  margin-bottom: 0;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .time_group .form_item_box .items {
  width: calc(33.3333333333% - 8px);
}
@media screen and (max-width: 1100px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .time_group .form_item_box .items {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 440px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .time_group .form_item_box .items {
    width: 100%;
  }
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .age_group .form_item_box .items {
  width: calc(20% - 8px);
}
@media screen and (max-width: 1200px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .age_group .form_item_box .items {
    width: calc(33.3333333333% - 8px);
  }
}
@media screen and (max-width: 440px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .age_group .form_item_box .items {
    width: calc(50% - 49px);
  }
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .area_group .form_item_box .items {
  width: calc(20% - 8px);
}
@media screen and (max-width: 1200px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .area_group .form_item_box .items {
    width: calc(33.3333333333% - 8px);
  }
}
@media screen and (max-width: 768px) {
  #result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item .area_group .form_item_box .items {
    width: calc(25% - 8px);
  }
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .form_item textarea {
  width: 100%;
  height: 84px;
  padding: 10px 16px;
  border: 1px solid #000;
  border-radius: 4px;
  resize: none;
  font-size: 14px;
  line-height: 1.5;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .submit_btn {
  line-height: 0;
  margin-top: -8px;
  text-align: center;
  margin-bottom: 12px;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .submit_btn button {
  background: initial;
  border: 0;
  padding: 0;
  line-height: 0;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .submit_btn button img {
  width: 100%;
  max-width: 110px;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .privacy_box {
  text-align: center;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .privacy_box a {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: underline;
  color: #E60012;
  cursor: pointer;
  transition: all 0.3s ease;
}
#result .result_wra .result_content .result_right .result_right_text .text_scroll_box .form_wra form .privacy_box a:hover {
  color: #000;
}
#result .result_wra .result_content .result_right .btn_group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 15px;
}
@media screen and (max-width: 576px) {
  #result .result_wra .result_content .result_right .btn_group {
    flex-direction: column;
    gap: 14px;
  }
}
#result .result_wra .result_content .result_right .btn_group .btn_back {
  display: block;
  width: 100%;
  max-width: 173px;
}
#result .result_wra .result_content .result_right .btn_group .btn_back:hover img {
  filter: brightness(1.1);
}
#result .result_wra .result_content .result_right .btn_group .btn_back img {
  width: 100%;
}
#result .result_wra .result_content .result_right .btn_group .btn_again {
  width: 100%;
  max-width: 173px;
}
#result .result_wra .result_content .result_right .btn_group .btn_again:hover img {
  filter: brightness(1.1);
}
#result .result_wra .result_content .result_right .btn_group .btn_again img {
  width: 100%;
}
#result .result_wra #result_2 {
  background: linear-gradient(to bottom, #fff, #ade855);
}
#result .result_wra #result_2 .result_left_pic .result_pic_box img {
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  #result .result_wra #result_2 .result_left_pic .result_pic_box img {
    max-width: 101.5%;
    width: 101.5%;
  }
}
#result .result_wra #result_3 {
  background: linear-gradient(to bottom, #fff, #edb61f);
}
#result .result_wra #result_4 {
  background: linear-gradient(to bottom, #fff, #28a3f5);
}
#result .result_wra #result_4 .result_left_pic .result_pic_box img {
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  #result .result_wra #result_4 .result_left_pic .result_pic_box img {
    max-width: 100%;
  }
}

#intro .d-none {
  display: none !important;
}
@media screen and (min-width: 768px) {
  #intro .d-md-block {
    display: inline-block !important;
  }
}
#intro .kv-none {
  display: none !important;
}
#intro .intro_wra {
  max-width: 1248px;
  margin: 0 auto;
  padding: 142px 45px 162px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  #intro .intro_wra {
    padding: 100px 19px 148px;
    padding: 26.6666vw 5.07vw 39.5vw;
  }
}
#intro .intro_wra img:not(.start_btn) {
  width: 100%;
  max-width: 970px;
}
#intro .intro_wra .start_btn {
  width: 100%;
  max-width: 19.3916%;
  bottom: 40px;
  bottom: 5.5%;
  left: 50%;
  margin-left: -9.6958%;
  position: absolute;
}
@media screen and (max-width: 767px) {
  #intro .intro_wra .start_btn {
    max-width: 47.01%;
    bottom: 7.5%;
    margin-left: -23.505%;
  }
}

#test .banner {
  position: relative;
  min-height: 734px;
}
@media screen and (max-width: 768px) {
  #test .banner {
    min-height: 643px;
  }
}
#test .test_wra {
  max-width: 1248px;
  margin: 0 auto;
  padding: 45px;
  position: relative;
  text-align: center;
  line-height: 1;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  #test .test_wra {
    padding: 100px 16px 54px;
  }
}
@media screen and (max-width: 576px) {
  #test .test_wra {
    position: relative;
    top: auto;
    left: auto;
    transform: initial;
  }
}
#test .test_wra .test_content {
  max-width: 645px;
  width: 100%;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  border: 4px solid #000;
}
@media screen and (max-width: 576px) {
  #test .test_wra .test_content {
    border-radius: 20px;
    border: 2px solid #000;
  }
}
#test .test_wra .test_content header {
  background: linear-gradient(to bottom, #ff4755, #e60012);
  padding: 16px;
}
#test .test_wra .test_content header .question_num {
  font-family: "Avenir", sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 25px;
  letter-spacing: 0.5px;
  color: white;
}
@media screen and (max-width: 768px) {
  #test .test_wra .test_content header .question_num {
    font-size: 30px;
    line-height: 20px;
  }
}
@media screen and (max-width: 576px) {
  #test .test_wra .test_content header .question_num {
    font-size: 24px;
    line-height: 17px;
  }
}
#test .test_wra .test_content section {
  background: linear-gradient(to bottom, #fff, #e60012);
  padding: 30px 41px 24px;
}
@media screen and (max-width: 576px) {
  #test .test_wra .test_content section {
    padding: 20px 12px 30px;
  }
}
#test .test_wra .test_content section .question_title {
  display: flex;
  align-items: center;
  gap: 12px;
}
#test .test_wra .test_content section .question_title .qusetion_avatar {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background-image: url("../img/test/question_boy.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #test .test_wra .test_content section .question_title .qusetion_avatar {
    width: 75px;
    height: 75px;
    background-size: 75px 75px;
  }
}
@media screen and (max-width: 576px) {
  #test .test_wra .test_content section .question_title .qusetion_avatar {
    width: 60px;
    height: 60px;
    background-size: 60px 60px;
  }
}
#test .test_wra .test_content section .question_title .title_text {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  color: #fff;
  padding: 20px 24px;
  background-color: #000000;
  border-radius: 0 30px 30px 30px;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #test .test_wra .test_content section .question_title .title_text {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 576px) {
  #test .test_wra .test_content section .question_title .title_text {
    font-size: 18px;
    line-height: 27px;
    padding: 12px 16px;
    border-radius: 0 20px 20px 20px;
  }
}
#test .test_wra .test_content section .question_title .title_text::after {
  content: "";
  position: absolute;
  background-image: url(../img/test/question_icon1.png);
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  bottom: -18px;
  width: 40px;
  height: 40px;
}
#test .test_wra .test_content section .question_options {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#test .test_wra .test_content section .question_options .option_item {
  cursor: pointer;
}
#test .test_wra .test_content section .question_options .option_item:last-child {
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  #test .test_wra .test_content section .question_options .option_item:last-child {
    margin-bottom: 0;
  }
}
#test .test_wra .test_content section .question_options .option_item .answer_text {
  background: #fff;
  color: #000;
  filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.25));
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.5px;
  padding: 12px 32px;
  border-radius: 100px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #test .test_wra .test_content section .question_options .option_item .answer_text {
    font-size: 20px;
    line-height: 30px;
    padding: 12px 24px;
  }
}
@media screen and (max-width: 576px) {
  #test .test_wra .test_content section .question_options .option_item .answer_text {
    font-size: 18px;
    line-height: 22px;
    padding: 12px 16px;
    gap: 4px;
    letter-spacing: 0.3px;
  }
}
#test .test_wra .test_content section .question_options .option_item .answer_text p {
  font-size: 18px;
  line-height: 22px;
}
#test .test_wra .test_content section .question_options .option_item .answer_text span {
  font-family: "Avenir", sans-serif;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  #test .test_wra .test_content section .question_options .option_item .answer_text span {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  #test .test_wra .test_content section .question_options .option_item .answer_text span {
    font-size: 18px;
  }
}
#test .test_wra .test_content section .question_options .option_item .answer_text svg {
  position: absolute;
  right: -8.43px;
  bottom: -4.55px;
}
@media screen and (max-width: 576px) {
  #test .test_wra .test_content section .question_options .option_item .answer_text svg {
    width: 22px;
    height: 28px;
    right: -5px;
    bottom: -6px;
  }
}
#test .test_wra .test_content section .question_options .option_item.selected .answer_text {
  background: #2e5eda;
  color: #fff;
}
#test .test_wra .test_content section .question_options .option_item.selected .answer_text svg path {
  fill: #2e5eda;
}
#test .test_wra .test_content section .question_options .option_item:hover .answer_text {
  background: #4c75dd;
  color: #fff;
}
#test .test_wra .test_content section .question_options .option_item:hover .answer_text svg path {
  fill: #4c75dd;
}
#test .test_wra .test_content section .result_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px 10px 32px;
  background: #FBDC4D;
  border: 3px solid #000;
  border-radius: 100px;
  margin-top: 8px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #test .test_wra .test_content section .result_btn {
    padding: 5px 24px 5px 32px;
  }
  #test .test_wra .test_content section .result_btn svg {
    width: 32px;
    height: 32px;
  }
}
#test .test_wra .test_content section .result_btn p {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  line-height: 36px;
}
@media screen and (max-width: 768px) {
  #test .test_wra .test_content section .result_btn p {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 576px) {
  #test .test_wra .test_content section .result_btn p {
    font-size: 18px;
    line-height: 27px;
  }
}
#test .test_wra .test2 .question_content .question_title .title_text::after {
  background-image: url(../img/test/question_icon2.png);
}
#test .test_wra .test3 .question_content .question_title .title_text::after {
  background-image: url(../img/test/question_icon3.png);
}
#test .test_wra .test4 .question_content .question_title .title_text::after {
  background-image: url(../img/test/question_icon4.png);
}
#test .test_wra .test5 .question_content .question_title .title_text::after {
  background-image: url(../img/test/question_icon1.png);
}
#test .test_wra .test6 .question_content .question_title .title_text::after {
  background-image: url(../img/test/question_icon2.png);
}

/*# sourceMappingURL=style.css.map */
