﻿/* 2023/09 撰寫  AAAA */
/*  ----- 通用 ----------- */
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

.page-wrap {
  position: relative;
  background-color: #F6F5F5;
  font-size: 20px;
  line-height: 35px;
}

@media (max-width: 768px) {
  .page-wrap {
    font-size: 16px;
    line-height: 28px;
  }
}

.red {
  color: red;
}

/*Navbar*/

.scroll-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 5px 5px 10px #00000060;
}

.navR {
  background-color: #fff;
  width: 100%;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.navR img {
  width: 100%;
}

@media (max-width: 768px) {
  .navR .navbar-brand {
    width: 60%;
    max-width: 280px;
    min-width: 180px;
  }
}

.navR .navbar-nav .nav-item .nav-link {
  color: #000;
}

.navR .navbar-nav .nav-item .nav-link:hover {
  color: #EE6F57;
}

/* .navR .navbar-nav .nav-item .nav-link.active {
  color: #EE6F57;
} */
.navR ul li a {
  font-weight: 700;
}

.navR ul li a i {
  font-size: 26px;
  margin-right: 5px;
}

/* scrollup */
.scrollup {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  z-index: 999;
  animation: bounceIn .5s;
  border: 3px dotted #154d8d;
  background-color: #e5f7ffa6;
  border-radius: 50%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  animation: size infinite alternate-reverse 1.5s;

}

.scrollup:before {
  content: "\f106";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 3px;
  width: 40px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  color: #154d8d;
}

@keyframes size {
  0% {
    scale: 0.9;
  }

  100% {
    scale: 1.1;
  }
}

/*網頁內容背景*/
.page-wrap .info-container {
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 5px 5px 5px #00000021;
}

@media (max-width: 768px) {
  .page-wrap .info-container {
    padding: 10px;
    margin-bottom: 15px;
  }
}


/*分頁內容標題*/
.page-wrap .page-title-box {
  background-color: #154d8d;
  color: #fff;
  font-weight: 900;
  border-radius: 15px;
  box-shadow: 2px 2px 2px 2px #bbb;
}

.page-wrap .page-title-box h2 {
  padding: 25px 0;
  background-repeat: no-repeat;
  background-size: 300px;
  background-position: right center;
  font-size: 32px;
}

.page-wrap .page-content-box .sppb-addon-title {
  position: relative;
  margin-bottom: 30px;
}

.page-wrap .page-content-box .sppb-addon-title:before {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  background: #555;
  width: 150px;
  bottom: -5px;
}

.page-wrap .page-content-box .sppb-addon-title:after {
  content: "";
  display: block;
  height: 2px;
  width: 220px;
  background: #555;
  position: absolute;
  bottom: -8px;
}

/* QR CODE 用 */
.page-wrap .btn.btn-qr {
  border: none;
  background-color: #EE6F57;
  border-radius: 10px;
  padding: 2px 8px;
  color: #fff;
  font-weight: 900;
}

#QR_Box .modal-header {
  background-color: #154d8d;
  color: #fff;
}

#QR_Box .btn-close {
  color: #fff;
}

/* footer 設定 */
#sp-bottom {
  background-image: url(../images//background/bg-decoration.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-color: #0f3a6b;
  color: #fff;
  padding: 20px 20px 0;
  font-size: 15px;
}

@media (max-width: 450px) {
  #sp-bottom {
    background-size: cover;
  }
}

#sp-bottom a {
  color: #EE6F57;
  text-decoration: none;
}

.sp-module .sp-module-title {
  display: inline-block;
  font-size: 22px;
  position: relative;
  margin-bottom: 20px;
}

.sp-module .sp-module-title:before {
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  background: #ff8454;
  width: calc(100% + 20px);
  bottom: -2px;
}

/* .sp-module .sp-module-title:after {
  content: "";
  display: block;
  height: 1px;
  width: 50%;
  max-width: 220px;
  background: #ccc;
  position: absolute;
  bottom: -8px;
} */
#sp-bottom .underline {
  border-bottom: 3px dotted #727272;
}

@media (max-width: 576px) {
  #sp-bottom .underline-rwd {
    border-bottom: 3px dotted #727272;
  }
}


#sp-footer {
  padding: 5px 0;
  text-align: center;
  color: #fff;
  font-size: 16px;
}

/*  ----- 通用 ----------- */
/*  ----- .page-index ----------- */

/*Banner*/
.page-index .banner {
  width: 100%;
}

.page-index .banner img {
  width: 100%;
  min-width: 350px;
}

.page-index .bannerMenu {
  background-image: url("../images/indexbg.png");
}

.page-index .item-box .item {
  margin-bottom: 40px;
}

.page-index .item-box .item h3 {
  font-weight: 800;
  font-size: 30px;
  margin-bottom: 15px;
}

.page-index .item-box .item .step {
  background-color: #cadbeea6;
  position: relative;
  width: 300px;
  min-height: 120px;
  margin: 0 auto;
  border-radius: 15px;
  margin-bottom: 10px;
  padding: 4px;
}

@media (max-width: 768px) {
  .page-index .item-box .item .step {
    width: 98%;
  }
}

.page-index .item-box .item .step::before {
  content: "";
  display: inline-block;
  background-color: #154d8d;
  width: 5px;
  position: absolute;
  left: 24px;
  top: 0px;
  bottom: 0px;
}

.page-index .item-box .item .step .tag {
  position: absolute;
  left: 4px;
  top: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  background-color: #154d8d;
  color: #fff;
  font-weight: 900;
  margin: 8px 4px 0px;
}


.page-index .item-box .item .step .txt {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  padding: 5px;
  font-weight: 800;
  text-decoration: none;
  font-size: 20px;
}

@media (max-width: 768px) {
  .page-index .item-box .item .step .txt {
    font-size: 18px;
  }

}


.page-index .item-box .item .step .txt a {
  text-decoration: none;
  color: #EE6F57;
}


/* 注意事項 */
.page-index .item-box .item .indexPoint {
  margin-left: 20px;
}

.page-index .item-box .item .indexPoint li {
  list-style: decimal;
  margin: 15px 0;
  line-height: 40px;
}

.page-index .item-box .item .indexPoint li a {
  text-decoration: none;
  font-weight: 600;
}

/* .page-index .item-box .item .indexPoint li button {
  border: none;
  background-color: #154d8d;
  border-radius: 10px;
  padding: 2px 8px;
  color: #fff;
  font-weight: 900;
} */

.page-index .item-box .item .qr-box {
  text-align: center;
}

@media (max-width: 768px) {
  .page-index .item-box .item h3 {
    font-size: 22px;
  }
}

/*  ----- .page-index ----------- */
/*  ----- .page-description ----------- */
.page-description .page-title-box h2 {
  background-image: url(../images/background/open-map-white.png);
}

.page-description .page-content-box {
  position: relative;
}

.page-description .page-content-box .text-item {
  margin: 40px 0;
  padding: 15px 0;
  border-bottom: 2px solid #bbb;
}

.page-description .page-content-box .text-item:first-child {
  margin: 0px 0;
}

.page-description .page-content-box .text-item h4 {
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 10px;
  line-height: 40px;
}

.page-description .page-content-box .text-item h4::first-letter {
  font-size: 30px;
}

.page-description .page-content-box .text-item>ol {
  margin-left: 1em;
}

.page-description .page-content-box .text-item>ol>li {
  text-indent: -2em;
  margin-left: 2em;
}

.page-description .page-content-box .text-item>ol>li>ul {}

.page-description .page-content-box .text-item>ol>li>ul>li {
  text-indent: -2em;
  margin-left: 2em;
}

.page-description .page-content-box .text-item>ol>li>ul>li>.film>li {
  text-indent: -1.3em;
  margin-left: 1.3em;
}

/* .page-description .page-content-box .text-item>ol>li>ol>li,
.page-description .page-content-box .text-item>ol>li>ul>li {
  list-style: square;
} */

/* 表單 */
.page-description .page-content-box .text-item .price-content .thing {
  display: flex;
  background-color: #f8f8f8;
}

.page-description .page-content-box .text-item .price-content .showmsg .thing:nth-child(even) {
  background-color: #abc6ff28;
}

.page-description .page-content-box .text-item .price-content .thing:last-child {
  border-radius: 0px 0px 15px 15px;
}

.page-description .page-content-box .text-item .price-content .thing .vtd {
  font-size: 18px;
  font-weight: 600;
  padding: 5px;
}

.page-description .page-content-box .text-item .price-content .thing:last-child .vtd:first-child {
  border-radius: 0px 0px 0px 15px;
}

.page-description .page-content-box .text-item .price-content .thing:last-child .vtd:last-child {
  border-radius: 0px 0px 15px 0px;
}

.page-description .page-content-box .text-item .price-content .thing .name {
  flex-grow: 1;
  padding-left: 20px;
}

.page-description .page-content-box .text-item .price-content .better {
  flex-shrink: 0;
  min-width: 140px;
}

.page-description .page-content-box .text-item .price-content .good {
  flex-shrink: 0;
  width: 140px;
}

.page-description .page-content-box .text-item .price-content .thing .vth {
  background-color: #154d8d;
  color: #fff;
  font-weight: 900;
  text-align: center;
  padding: 5px 0;
}

.page-description .page-content-box .text-item .price-content .thing .vth:first-child {
  border-radius: 15px 0px 0px 0px;
}

.page-description .page-content-box .text-item .price-content .thing .vth:last-child {
  border-radius: 0px 15px 0px 0px;
}




@media (max-width: 992px) {
  .page-description .page-content-box .text-item .price-content .thing {
    display: block;
    background-color: #cfdaf328;
    border: 2px solid #929292;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 8px;
  }

  .page-description .page-content-box .text-item .price-content .showmsg .thing:nth-child(even) {
    background-color: #cfdaf328;
  }

  .page-description .page-content-box .text-item .price-content .thing.title {
    display: none;
    padding: 0;
  }

  .page-description .page-content-box .text-item .price-content .thing .vtd.name {
    text-align: center;
    font-weight: 600;
    background-color: #154d8d;
    color: #fff;
    border-radius: 15px;
    box-shadow: inset 2px 2px 2px #00000052;
    margin-bottom: 5px;
  }

  .page-description .page-content-box .text-item .price-content .thing .vtd.better {
    display: inline-block;
    width: 49%;
    text-align: center;
  }

  .page-description .page-content-box .text-item .price-content .thing .vtd.good {
    display: inline-block;
    width: 49%;
    text-align: center;
  }

  .page-description .page-content-box .text-item .price-content .thing .vtd.better::before,
  .page-description .page-content-box .text-item .price-content .thing .vtd.good::before {
    content: attr(data-th);
    display: block;
    width: 80%;
    margin: 0 auto;
    color: #154d8d;
    border-bottom: 3px dashed #154d8d;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 3px;
  }

}

@media (max-width: 430px) {
  .page-description .page-content-box .text-item .price-content .thing .vtd.better {
    display: block;
    width: 100%;
    text-align: center;
  }

  .page-description .page-content-box .text-item .price-content .thing .vtd.good {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* 右邊選單 */
.page-description .page-content-box .class2 {
  position: sticky;
  top: 100px;
}

.page-description .page-content-box .class2 .sp-module {
  background: linear-gradient(135deg, #fff 80%, rgb(200, 226, 247));
  box-shadow: 3px 3px 3px 3px rgba(1, 31, 94, 0.315);
  width: 100%;
  padding: 15px;
  border-radius: 20px;
}

.page-description .page-content-box .class2 .sp-module h3 {
  text-shadow: 2px 2px 2px rgba(113, 221, 185, 0.09);
  font-weight: 900;
}

.page-description .page-content-box .class2 ul {
  padding: 0 10px;
}

.page-description .page-content-box .class2 ul li {
  margin-left: 20px;
  list-style: square;
}

.page-description .page-content-box .class2 ul li a {
  font-weight: 800;
  text-decoration: none;
  color: #154d8d;
  position: relative;
}

.page-description .page-content-box .class2 ul li a:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 3px;
  background-color: #EE6F57;
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: .5s;
}

.page-description .page-content-box .class2 ul li a:hover:after {
  width: 100%;
}

.page-description .page-content-box .cate-btn {
  width: 30px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50% 0 0 50%;
  background-color: #154d8d;
  color: #fff;
  border: none;
  position: fixed;
  right: 0;
  top: 120px;
}

.page-description .page-content-box .cate-btn i {
  transition: .5s;
}

.page-description .page-content-box .cate-btn.active i {
  transform: rotate(180deg);
}

.page-description .page-content-box .msgbox {
  width: 250px;
  position: fixed;
  right: -250px;
  top: 160px;
  transition: .5s;
}

.page-description .page-content-box .msgbox.active {
  right: 0px;
}



/*  ----- .page-description ----------- */
/*  ----- .page-item ----------- */

.page-item .page-title-box h2 {
  background-image: url(../images/background/bg-Files.svg);
  background-size: 130px;
  background-position: top right;
}

.page-item .select-box {
  position: relative;
  width: 60%;
  min-width: 220px;
  background-color: rgb(243, 243, 243);
  border-radius: 15px;
  padding: 5px;
  padding-top: 20px;
  margin: 20px auto;
  border: 2px solid rgba(238, 112, 87, 0.459);
}

.page-item .select-box .tag {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-20%, -50%);
  background-color: #EE6F57;
  color: #fff;
  padding: 0px 8px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
}

.page-item .select-box .select-form {
  display: flex;
  padding: 5px;
}

.page-item .select-box .select-form select {
  border: none;
  width: 100%;
  padding: 8px;
  padding-left: 15px;
  border-radius: 5px;
  margin-right: 5px;
}

.page-item .select-box .select-form select:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .page-item .select-box {
    width: 90%;
  }
}


.page-item .show-boxes .box {
  margin: 0px 0 20px;
}

.page-item .show-boxes .box h4 {
  margin: 0px 0 30px;
  font-size: 25px;
  font-weight: 700;
}

.page-item .show-boxes .box h4::first-letter {
  font-size: 30px;
}

/* 第一種表格樣式 */
.page-item .show-boxes .my-table .table-content-one {
  font-size: 17px;
}

.page-item .show-boxes .my-table .table-content-one .square {
  display: flex;
}

.page-item .show-boxes .my-table .table-content-one .square .vth {
  background-color: #154d8d;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-weight: 900;
  font-size: 22px;
}

.page-item .show-boxes .my-table .table-content-one .square .vth.name {
  border-radius: 15px 0px 0px 0px;
}

.page-item .show-boxes .my-table .table-content-one .square .vth.skill {
  border-radius: 0px 15px 0px 0px;
}

.page-item .show-boxes .my-table .table-content-one .square .vtd {
  padding: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3px dotted #999;
  font-weight: 600;
  font-size: 19px;
}

.page-item .show-boxes .my-table .table-content-one .square .vtd.name {
  background-color: #cddff5;
}

.page-item .show-boxes .my-table .table-content-one .square .name {
  flex-basis: 300px;
  flex-shrink: 0;
}

.page-item .show-boxes .my-table .table-content-one .square .skill {
  flex-grow: 1;
}

.page-item .show-boxes .my-table .table-content-one .square .vtd.skill {
  background-color: #f7fbff;
  font-size: 18px;
}

@media (max-width: 768px) {
  .page-item .show-boxes .my-table .table-content-one {
    padding: 0px;
  }

  .page-item .show-boxes .my-table .table-content-one .square {
    background-color: #e9f0faa4;
    display: block;
    padding: 10px;
    margin: 10px;
    border-radius: 15px;
    border: 4px solid #2a4b81;
  }

  .page-item .show-boxes .my-table .table-content-one .square.square-title {
    display: none;
  }

  .page-item .show-boxes .my-table .table-content-one .square .vtd {
    text-align: start;
    display: block;
    position: relative;
    padding-top: 45px;
    padding-left: 20px;
    border-bottom: none;
  }

  .page-item .show-boxes .my-table .table-content-one .square .vtd:before {
    content: attr(data-th);
    display: inline-block;
    color: #154d8d;
    border-bottom: 3px solid #154d8d;
    position: absolute;
    top: 5px;
    left: 10px;
    transform: translate(0%, 0%);
    font-weight: 800;
    font-size: 18px;
  }

  .page-item .show-boxes .my-table .table-content-one .square .vtd.name {
    background-color: transparent;
  }

  .page-item .show-boxes .my-table .table-content-one .square .vtd.skill {
    padding: 8px;
    padding-top: 45px;
    padding-left: 20px;
  }
}

/* 第二種表格樣式 */
.page-item .show-boxes .my-table .table-content-two {}

.page-item .show-boxes .my-table .table-content-two .title {
  background-color: #154d8d;
  color: #fff;
  padding: 10px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  border-radius: 20px 20px 0px 0px;
}

.page-item .show-boxes .my-table .table-content-two ul {
  border: 5px solid #154d8d;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 15px;
  border-radius: 0px 0px 20px 20px;
}

.page-item .show-boxes .my-table .table-content-two ul li {
  position: relative;
  flex-basis: 49.5%;
  padding: 3px;
  padding-left: 15px;
  font-weight: 600;
}

.page-item .show-boxes .my-table .table-content-two ul li:nth-child(odd) {
  border-right: 5px dashed #bac1ce;
}

@media (max-width: 768px) {
  .page-item .show-boxes .my-table .table-content-two ul li {
    flex-basis: 100%;
  }
}

.page-item .show-boxes .press a {
  color: #EE6F57;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.page-item .show-boxes .press a img {
  width: 80px;
}

/*  ----- .page-item ----------- */
/*  ----- .page-FQA ----------- */
.page-FQA .page-title-box h2 {
  background-image: url(../images/background/bg-fqa.svg);
  background-size: 150px;
}

.page-FQA .Qbox ol {
  padding: 0;
}

.page-FQA .Qbox ol li {
  margin-bottom: 35px;
}

.page-FQA .Qbox ol li .question {
  background-color: #2d4866;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.page-FQA .Qbox ol li .question::first-letter {
  font-size: 25px;
  font-weight: 600;
}

.page-FQA .Qbox ol li .ans {
  display: none;
  background-color: #ee705710;
  border: 3px dashed #EE6F57;
  /* border-top: none; */
  width: 95%;
  margin: 8px auto 0;
  padding: 20px;
  border-radius: 15px 15px 15px 15px;
  letter-spacing: 2px;
}

.page-FQA .Qbox ol li:first-child .ans {
  display: block;
}

.page-FQA .Qbox ol li .ans a {
  color: #EE6F57;
  text-decoration: none;
  font-weight: 700;
}


/*  ----- .page-FQA ----------- */

/*  ----- .page-login ----------- */
.page-login .page-title-box h2 {
  background-image: url(../images/background/bg-login.svg);
  background-size: 150px;
  background-position: top right;
}

.page-login .loginForm {
  max-width: 1200px;
  margin: 0px auto;
  background-color: #154d8d1f;
  border-radius: 40px;
}

.page-login .loginForm .login-box {
  padding: 15px;
}

.page-login .loginForm .login-box .head-pic {
  text-align: center;
}

.page-login .loginForm .login-box .head-pic img {
  width: 50%;
  max-width: 180px;
  min-width: 120px;
  background-color: #fff;
  border-radius: 50%;
}

.page-login .loginForm .login-box h3 {
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  margin: 20px 0;
  text-shadow: 2px 2px 2px #84aad8;
}

.page-login .loginForm .login-box .input-box {
  width: 80%;
  margin: 0 auto;
}

.page-login .loginForm .login-box .input-box label {
  font-weight: 600;
  color: #154d8d;
}

.page-login .loginForm .login-box .input-box input {
  display: block;
  width: 100%;
  border-radius: 30px;
  border: 2px solid #84aad8;
  padding: 2px 30px;
}

.page-login .loginForm .login-box .input-box input:focus {
  outline: none;
}

.page-login .loginForm .login-box .input-box p {
  font-size: 15px;
  font-weight: 600;
}

.page-login .loginForm .login-box .input-box .forget-box {
  text-align: end;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .page-login .loginForm .login-box .input-box .forget-box {
    text-align: end;
    margin-bottom: 10px;
  }
}

.page-login .loginForm .login-box .input-box .forget-box input {
  display: inline-block;
  background-color: transparent;
  border: none;
  width: auto;
  font-weight: 900;
  color: #154d8d;
  text-decoration: none;
  font-size: 16px;
  margin-top: 3px;
  margin-right: 8px;
  padding: 0px 8px;
  position: relative;
  border-radius: 5px;
}

.page-login .loginForm .login-box .input-box .forget-box input:hover {
  color: #EE6F57;
}

.page-login .loginForm .login-box .input-box .forget-box input:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: #103258;
}

.page-login .loginForm .login-box .input-box .forget-box input:hover:after {
  background-color: #EE6F57;
}


.page-login .loginForm .login-box .input-box .btn-box {
  text-align: center;
  margin-top: 15px;
}

.page-login .loginForm .login-box .input-box .btn-box input {
  background-color: #154d8d;
  border: none;
  color: #fff;
  font-weight: 600;
  text-align: center;
  width: 100%;
  border-radius: 30px;
  padding: 2px 30px;
}

.page-login .loginForm .login-box .input-box .ssl-box p {
  line-height: 25px;
}

.page-login .loginForm .login-box .input-box .ssl-box .ssl-pic-wrap {
  text-align: center;
}

.page-login .loginForm .login-box .input-box .ssl-box .ssl-pic-wrap .SMALL {
  display: inline-block;
}

.page-login .loginForm .input-box .StarMsg .my-outter {
  border: 6px solid #829cac;
  padding: 4px;
  border-radius: 20px;
}

.page-login .loginForm .input-box .StarMsg .my-outter .my-inner {
  border: 2px solid #95b0b6;
  padding: 15px;
  border-radius: 30px;
}

.page-login .loginForm .input-box .StarMsg .my-outter .my-inner .my-inner-text {
  position: relative;
  font-weight: 900;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-login .loginForm .input-box .StarMsg .my-outter .my-inner .my-inner-text h1 {
  text-align: center;
  width: 80%;
  font-size: 25px;
}

.page-login .loginForm .input-box .StarMsg .my-outter .my-inner .my-inner-text h1.wait span {
  display: inline-block;
  font-size: 30px;
  margin: 8px 0;
}

@media (max-width: 500px) {
  .page-login .loginForm .input-box .StarMsg .my-outter .my-inner .my-inner-text h1.stop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    font-size: 22px;
  }

  .page-login .loginForm .input-box .StarMsg .my-outter .my-inner .my-inner-text h1.wait {
    display: inline-block;
    font-size: 22px;
    margin: 8px 0;
  }

  .page-login .loginForm .input-box .StarMsg .my-outter .my-inner .my-inner-text h1.wait span {
    font-size: 26px;
  }
}


.page-login .loginForm .login-pic {
  background-image: url(../images/icons/loginPic.svg);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  border-radius: 0px 40px 40px 0px;
}


/*  ----- .page-login ----------- */
/*  ----- .page-forget ----------- */
.page-forget .page-title-box h2 {
  background-image: url(../images/background/bg-login.svg);
  background-size: 150px;
  background-position: top right;
}

.page-forget .forgetForm {
  max-width: 1200px;
  margin: 60px auto;
  background-color: #154d8d1f;
  border-radius: 40px;
  padding: 15px;
}

.page-forget .forgetForm .forget-box {
  padding: 10px 25px;
}

.page-forget .forgetForm .forget-box .head-pic {
  text-align: center;
  display: none;
}

.page-forget .forgetForm .forget-box .head-pic img {
  width: 50%;
  max-width: 180px;
  min-width: 120px;
  background-color: #fff;
  border-radius: 50%;
}

@media (max-width: 992px) {
  .page-forget .forgetForm .forget-box .head-pic {
    display: block;
  }
}

.page-forget .forgetForm .forget-box h3 {
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  margin: 20px 0;
  text-shadow: 2px 2px 2px #3091617e;
}

.page-forget .forgetForm .forget-box .input-box {
  width: 80%;
  margin: 0 auto;
}

.page-forget .forgetForm .forget-box .input-box label {
  font-weight: 600;
  color: #165736;
}

.page-forget .forgetForm .forget-box .input-box input {
  display: block;
  width: 100%;
  border-radius: 30px;
  border: 2px solid #22724a;
  padding: 5px 30px;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-forget .forgetForm .forget-box .input-box input:focus {
  outline: none;
}

.page-forget .forgetForm .forget-box .input-box .btn-box {
  text-align: center;
}

.page-forget .forgetForm .forget-box .input-box .btn-box .btn-forget {
  background-color: #165736;
  display: inline-block;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  width: 100%;
  border-radius: 30px;
  padding: 5px 10px;
  text-decoration: none;
}


.page-forget .forgetForm .forget-pic {
  background-image: url(../images/icons/forget.svg);
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
  border-radius: 40px 0px 0px 40px;
}

/*  ----- .page-forget ----------- */

/*  ----- .page-list ----------- */

.page-list .page-title-box h2 {
  background-image: url(../images/background/bg-trophy.svg);
  background-size: 150px;
  background-position: right top;
}

.page-list .howto-get {
  position: relative;
}

.page-list .howto-get h3 {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #154d8d;
}

.page-list .howto-get h3 i {
  font-size: 30px;
  font-weight: 800;
  margin-right: 10px;
}

.page-list .howto-get ol li {
  margin: 8px 0;
}

.page-list .howto-get ol li.warning {
  position: relative;
  border: 3px dashed #EE6F57;
  padding: 8px;
  padding-top: 20px;
  text-align: center;
  border-radius: 10px;
  width: 90%;
  margin: 20px auto 0;
  font-weight: 900;
}

.page-list .howto-get ol li.warning .tag {
  position: absolute;
  left: -20px;
  top: -20px;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  background-color: rgb(0, 0, 0);
  color: #FF0;
  font-size: 23px;
}

.page-list .howto-get ol>li>ol {
  margin: 10px 0px 10px 20px;
}

.page-list .howto-get ol>li a {
  color: #EE6F57;
  text-decoration: none;
  font-weight: 900;
  text-decoration: underline;
  margin: 0 2px;
}

.page-list .howto-get .forbtn {
  display: inline-block;
  position: absolute;
  top: 50px;
  right: 15%;
}

.page-list .howto-get .forbtn a {
  text-decoration: none;
  display: inline-block;

}

.page-list .howto-get .forbtn .forbtn-click {
  display: inline-block;
  width: 90px;
  height: 90px;
  background-color: #154d8d;
  border: 5px solid #4b5e7c;
  border-radius: 45px;
  box-shadow: -2px 4px 8px #09305cb9;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  line-height: 20px;
  text-align: center;
  padding-top: 10px;
  position: relative;
  overflow: hidden;
  animation: size00 3s infinite alternate-reverse;
}

.page-list .howto-get .forbtn .forbtn-click::before {
  content: "";
  position: absolute;
  top: 0;
  left: -250px;
  background: linear-gradient(0deg, transparent, #ffffff50, transparent);
  width: 300px;
  height: 20px;
  transform: rotate(45deg);
  animation: flash00 3s infinite reverse;
}

@keyframes flash00 {
  0% {
    left: -250px;
  }

  100% {
    left: -50px;
  }
}

@keyframes size00 {
  0% {}

  100% {
    scale: 1.05;
  }
}

@media (max-width: 768px) {
  .page-list .howto-get .forbtn {
    top: 10px;
    right: 50px;
  }
}

@media (max-width: 500px) {
  .page-list .howto-get .forbtn {
    position: relative;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    margin-top: 15px;
  }

  .page-list .howto-get .forbtn .forbtn-click {
    display: inline-block;
    width: 120px;
    height: 60px;
    border-radius: 15px;
    padding-top: 6px;
  }
}



.page-list .select-box {
  position: relative;
  width: 40%;
  min-width: 250px;
  background-color: rgb(243, 243, 243);
  border-radius: 15px;
  padding: 5px;
  padding-top: 20px;
  margin: 20px auto;
  border: 2px solid rgba(238, 112, 87, 0.459);
}

.page-list .select-box .tag {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-20%, -50%);
  background-color: #EE6F57;
  color: #fff;
  padding: 0px 8px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
}

.page-list .select-box .select-form {
  display: flex;
  padding: 5px;
}

.page-list .select-box .select-form select {
  border: none;
  width: 100%;
  padding: 2px;
  border-radius: 5px;
  margin-right: 5px;
}

.page-list .select-box .select-form select:focus {
  outline: none;
  border: none;
}

.page-list .select-box .select-form button {
  background-color: #EE6F57;
  color: #fff;
}

.page-list .select-box .select-form button:focus {
  outline: none;
  border: none;
}

.page-list .win01Wrapper .title {
  display: inline-block;
  background-color: #2d4866;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 10px 2px;
  border-radius: 10px 10px 0px 0px;
}

.page-list .win01Wrapper .win01 {
  background-color: #fff;
  border: 3px solid #2d4866;
  border-radius: 0px 10px 10px 10px;
  margin-bottom: 40px;
}

.page-list .win01Wrapper .win01 h3 {
  color: #EE6F57;
  -webkit-text-stroke: 1px #b6b6b650;
  font-weight: 900;
  text-align: center;
  margin: 20px 0 0px;
  font-size: 28px;
}

@media (max-width: 576px) {
  .page-list .win01Wrapper .win01 {
    border-radius: 0px 0px 10px 10px;
    margin-bottom: 20px;
  }

  .page-list .win01Wrapper .win01 h3 {
    font-size: 22px;
  }

}

.page-list .win01Wrapper .win01 ol {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 10px;
}

.page-list .win01Wrapper .win01 ol li {
  background-color: #ee705710;
  color: #154d8d;
  border: 2px solid #ee70572f;
  font-weight: 500;
  flex-basis: 180px;
  padding: 3px;
  margin: 5px;
  margin-bottom: 8px;
  font-family: monospace;
  text-align: center;
  border-radius: 20px;
  position: relative;
  /* box-shadow: 2px 2px 2px #00000049; */
}


@media (max-width: 768px) {
  .page-list .win01Wrapper .win01 ol li {
    flex-basis: 45%;
  }
}

/*  ----- .page-list ----------- */



/*  ----- .page-apply ----------- */

.page-apply .page-title-box h2 {
  background-image: url(../images/background/bg-Files.svg);
  background-size: 130px;
  background-position: top right;
}

/* 步驟條共用設定 */

.page-apply .StepWrapper .steps {
  display: flex;
  justify-content: space-between;
  margin: 20px auto;
  width: 100%;
}

.page-apply .StepWrapper .steps .step {
  flex-grow: 1;
  position: relative;
  padding-top: 50px;
}

.page-apply .StepWrapper .steps .step .tag {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  background-color: #EE6F57;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #e2e2e2;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 28px;
}

.page-apply .StepWrapper .steps .step::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 23px;
  height: 5px;
  background-color: #eee2df;
}

.page-apply .StepWrapper .steps .step:first-child::before {
  left: 50%;
  right: 0px;
}

.page-apply .StepWrapper .steps .step:last-child::before {
  left: 0%;
  right: 50%;
}

.page-apply .StepWrapper .steps .step a {
  text-decoration: none;
}

.page-apply .StepWrapper .steps .step .text-box {
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 900;
  line-height: 20px;
  margin-top: 10px;
  color: #000;
  text-decoration: none;
}

.page-apply .StepWrapper .steps .step.now .tag {
  background-color: #1DA8A8;
  animation: jump 1s alternate-reverse infinite;
}

@keyframes jump {
  0% {
    transform: translate(-50%, 5px);
  }

  100% {
    transform: translate(-50%, -5px);
  }
}

.page-apply .StepWrapper .steps .step.now::before {
  background: linear-gradient(90deg, #eee2df, #08a7a77a, #eee2df);
}

.page-apply .StepWrapper .steps .step.done .tag {
  background-color: #0f7575;
}

.page-apply .StepWrapper .steps .step.done::before {
  background-color: #0f7575;
}

@media (max-width: 768px) {
  .page-apply .StepWrapper .steps {
    justify-content: center;
    width: 95%;
  }

  .page-apply .StepWrapper .steps .step {
    flex-grow: 0;
    width: 40px;
  }

  .page-apply .StepWrapper .steps .step .tag {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .page-apply .StepWrapper .steps .step::before {
    top: 17px;
  }

  .page-apply .StepWrapper .steps .step.now {
    width: 40%;
  }

  .page-apply .StepWrapper .steps .step .text-box {
    display: none;
  }

  .page-apply .StepWrapper .steps .step.now .text-box {
    display: block;
  }
}

/* 後面顯示共用 */

.page-apply .ApplyForm.user-check h4 {
  text-align: center;
  font-weight: 800;
  font-size: 26px;
  color: #0f2e52;
  margin-bottom: 15px;
}

.page-apply .ApplyForm.user-check .object {
  display: flex;
  margin-bottom: 10px;
}

@media (max-width: 500px) {
  .page-apply .ApplyForm.user-check .object {
    display: block;
    text-align: center;
  }
  .page-apply .ApplyForm.user-check .object .data{
    margin: 5px 0;
  }
}

.page-apply .ApplyForm.user-check .object .vth {
  width: 120px;
  flex-shrink: 0;
  /* text-align-last: justify; */
  color: #154d8d;
  font-weight: 600;
  font-size: 18px;
}

.page-apply .ApplyForm.user-check .object .data {
  margin-left: 3px;
  /* border-bottom: 2px dashed #ccc; */
  font-weight: 600;
  font-size: 18px;
}

@media (max-width: 768px) {
  .page-apply .ApplyForm.user-check .object .vth {
    width: 120px;
  }
}

.page-apply .ContentWrapper label {
  font-weight: 700;
  font-size: 17px;
}

.page-apply .ContentWrapper h3 {
  color: #068b64;
  font-weight: 800;
  font-size: 26px;
  text-align: center;
}

/* 填資料的邊框 */

.page-apply .ApplyForm {
  width: 100%;
  display: flex;
}

.page-apply .ApplyForm :is(input, select, textarea) {
  border: 2px solid #bbbbbbab;
  font-size: 17px;
  font-weight: 400;
}

.page-apply .ApplyForm .left {
  background-color: #073a3a;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 20px;
  border-radius: 15px 0 0 15px;
  margin-right: -12px;
}

.page-apply .ApplyForm.user-check .left {
  background-color: #3b9999;
}

.page-apply .ApplyForm .left h3 {
  writing-mode: vertical-lr;
  letter-spacing: 4px;
  font-weight: 900;
  font-size: 22px;
  color: #fff;
  position: sticky;
  top: 100px;
  /* text-shadow: 1px 1px 1px #f1f1f1; */
}

.page-apply .ApplyForm .right {
  flex-grow: 1;
  box-shadow: 5px 5px 10px #0000001f;
  padding: 25px;
  border-top: 5px solid #073a3a;
  border-radius: 0px 15px 15px 0px;
}

.page-apply .ApplyForm .right .phone :nth-child(1) {
  display: block;
}

.page-apply .ApplyForm .right .phone :nth-child(2) {
  display: inline-block;
  width: 4em;
}

.page-apply .ApplyForm .right .phone :nth-child(4) {
  display: inline-block;
  width: 6em;
}
.page-apply .ApplyForm .right .phone :nth-child(6) {
  display: inline-block;
  width: 6em;
}

.page-apply .ApplyForm.user-check .right {
  box-shadow: 5px 5px 10px #0000001f;
  border-top: 5px solid #3b9999;
  border-radius: 0px 15px 15px 0px;
}

@media (max-width: 768px) {
  .page-apply .ApplyForm .left {
    width: 40px;
  }

  .page-apply .ApplyForm .left h3 {
    font-size: 20px;
  }
  .page-apply .ApplyForm .right {
    padding-right: 0px;
  }
}

.page-apply .line {
  width: 95%;
  height: 3px;
  background-color: #ddddddc4;
  margin: 0 auto 10px;
}

.page-apply .btn-Tblue {
  background-color: #3b9999;
  color: #fff;
}

/*  ----- .page-apply ----------- */


/*  ----- .page-apply-step1 ----------- */

.page-apply-step1 .step1-box .ApplyForm label {
  font-weight: 700;
  font-size: 17px;
}

.page-apply-step1 .step1-box .ApplyForm .check {
  display: flex;
  align-items: end;
}

.page-apply-step1 .step1-box .ApplyForm .check input {
  border: #154d8d 2px solid;
}

.page-apply-step1 .step1-box .ApplyForm .school .school-name-box {
  position: relative;
}

.page-apply-step1 .step1-box .ApplyForm .school .school-name-box .search-tag {
  position: absolute;
  bottom: 4px;
  right: 20px;
  border: none;
  border-radius: 10px;
  background-color: #EE6F57;
  color: #fff;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .5s;
}

.page-apply-step1 .step1-box .ApplyForm .school .school-name-box .search-tag:hover {
  transform: scale(1.1);
  background-color: #154d8d;
  color: #fff;
}

.page-apply-step1 .step1-box .warning {
  border: 3px dashed #EE6F57;
  padding: 20px;
  border-radius: 15px;
}

.page-apply-step1 .step1-box .warning .txt h3 {
  color: #154d8d;
  font-weight: 800;
  font-size: 26px;
  text-align: center;
}

.page-apply-step1 .step1-box .warning .txt ul {
  padding-left: 20px;
}

.page-apply-step1 .step1-box .warning .txt ul li {
  list-style: square;
  font-weight: 700;
  color: #f00;
}

.page-apply-step1 .step1-box .warning .CheckBoxWrapper input {
  border: #154d8d 2px solid;
}

/*  ----- .page-apply-step1 ----------- */

/*  ----- .page-apply-step3 ----------- */
.page-apply-step3 .SubTitle{
  font-weight: 900;
  font-size: 25px;
  margin: 10px 0;
  text-align: center;
  color: #154d8d;
}
.page-apply-step3 .SubTitle:not(:first-child){
  padding: 15px 0;
  border-top: 5px dotted #ccc;
}

/*  ----- .page-apply-step3 ----------- */


/*  ----- .page-apply-step4 ----------- */

.page-apply .grade-box04 {
  padding: 10px;
  border: 3px dashed #aaa;
  border-radius: 15px;
  margin: 15px 0;
}
.page-apply .grade-box04 .grade-item {
  display: flex;
  font-weight: 600;
  font-size: 18px;
  padding: 5px 0;
  cursor: pointer;
}
.page-apply .grade-box04 .grade-item:not(:first-child){
  border-top: 3px dashed #ccc;
}

.page-apply .grade-box04 .grade-item .name{
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.page-apply .grade-box04 .grade-item .name input{
  flex-shrink: 0;
  margin-right: 5px;
  width: 20px;
  height: 20px;
}
.page-apply .grade-box04 .grade-item .name label{
  flex-shrink: 0;
}
.page-apply .grade-box04 .grade-item .name label .number{
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  margin-right: 5px;
  text-align: center;
  line-height: 20px;
}
.page-apply .grade-box04 .grade-item .detail{
  flex-shrink: 0;
  width: 500px;
  display: flex;
}
.page-apply .grade-box04 .grade-item .detail .type{
  flex-shrink: 0;
  width: 150px;
}
.page-apply .grade-box04 .grade-item .detail .score-box{
  flex-shrink: 0;
  width: 150px;
}
.page-apply .grade-box04 .grade-item .detail .warning-msg{
  flex-shrink: 0;
  width: 200px;
  background-color: rgb(199, 0, 0);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .page-apply .grade-box04 {
    display: flex;
    flex-wrap: wrap;
  }
  .page-apply .grade-box04 .grade-item {
    display: block;
    width: 49%;
    position: relative;
    background-color: rgba(235, 235, 235, 0.486);
    padding: 5px 10px;
    margin: 2px;
    border-radius: 8px;
  }
  .page-apply .grade-box04 .grade-item:not(:first-child){
    border-top: none;
  }
  .page-apply .grade-box04 .grade-item .name{
    display: block;
  }
  .page-apply .grade-box04 .grade-item .name input{
    position: absolute;
    top: 15px;
    right: 5px;
  }
  .page-apply .grade-box04 .grade-item .name label{
    padding-right: 30px;
  }
  .page-apply .grade-box04 .grade-item .detail{
    flex-direction: column;
    width: auto;
  }
  .page-apply .grade-box04 .grade-item .detail .type{
    width: auto; margin-top: 5px; }
  .page-apply .grade-box04 .grade-item .detail .score-box{
    width: auto; margin-top: 5px;  }
  .page-apply .grade-box04 .grade-item .detail .warning-msg{
    width: auto;  
    margin-right: 5px;
  }
}

@media screen and (max-width: 576px) {
  .page-apply .grade-box04 .grade-item {
    width: 100%;
  }
}



/* .page-apply table.grade {
  width: 95%;
  margin: 15px auto;
}

.page-apply table.grade thead th {
  background-color: #154d8d;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.page-apply table.grade thead th:first-child {
  border-radius: 15px 0px 0px 0px;
}

.page-apply table.grade thead th:last-child {
  border-radius: 0px 15px 0px 0px;
}

.page-apply table.grade tbody td {
  background-color: #f0f0f0;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
}

.page-apply table.grade tbody tr:last-child td:first-child {
  border-radius: 0px 0px 0px 15px;
}

.page-apply table.grade tbody tr:last-child td:last-child {
  border-radius: 0px 0px 15px 0px;
} */

/*  ----- .page-apply-step4 ----------- */
/*  ----- .page-apply-step5 ----------- */
.page-apply .grade-box {
  background-color: #f0f0f0;
  text-align: center;
  width: 95%;
  margin: 15px auto;
  border-radius: 15px;
}

.page-apply .grade-box h3 {
  text-align: center;
  padding: 5px 0;
  background-color: #154d8d;
  color: #fff;
  border-radius: 15px 15px 0 0;
  font-weight: 700;
  font-size: 22px;
}

.page-apply .grade-box div.grade-year {
  font-weight: 600;
  font-size: 25px;
}
.page-apply .grade-box div.grade-text {
  font-weight: 600;
  font-size: 25px;
}
@media screen and (max-width: 576px) {
  .page-apply .grade-box h3 {
    font-size: 18px;
  }
  .page-apply .grade-box div.grade-year {
    padding: 0;
    font-size: 18px;
  }
  .page-apply .grade-box div.grade-text {
    margin-top: 10px;
  }
  
}

.page-apply .grade-box .my-border {
  border-left: 2px dashed #ccc;
}

.page-apply-step5 .warning {
  border: 4px dashed #EE6F57;
  padding: 20px;
  border-radius: 20px;
}

.page-apply-step5 .warning input {
  border: 2px solid #154d8d;
}

.page-apply-step5 .warning #warning-info {
  display: none;
}

.page-apply-step5 .warning #warning-info i {
  font-size: 26px;
}

.page-apply-step5 .warning .my-alert {
  animation: shake .05s ease 6 alternate-reverse none;
}

@keyframes shake {
  0% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(10px);
  }
}


/*  ----- .page-apply-step5 ----------- */
/*  ----- .page-apply-step6 ----------- */
.page-apply-step6 .tips {
  background: linear-gradient(45deg, #fff 90%, #f5bd4c6e);
  border: 4px solid #F5BE4C;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
}

.page-apply-step6 .tips a {
  color: #EE6F57;
  font-weight: 600;
}

.page-apply-step6 .tips a:hover {
  color: #154d8d;
}

.page-apply-step6 .tips>ol {
  margin-left: 25px;
}

.page-apply-step6 .tips>ol>li {
  margin-bottom: 6px;
  list-style: circle;
}

.page-apply-step6 .tips>ol>li>ol {
  margin-left: 15px;
}

.page-apply-step6 .tips>ol>li>ol>li {
  list-style: square;
}


/*  ----- .page-apply-step6 ----------- */
/*  ----- .page-schoolList ----------- */
.page-wrap.schoolList .page-title-box h2 {
  background-image: url(../images/background/bg-school.svg);
  background-size: 130px;
  background-position: center right;
}


.page-wrap.schoolList {
  min-height: 100vh;
}

.page-wrap.schoolList h1 {
  font-weight: 900;
  font-size: 40px;
  text-align: center;
}

.page-wrap.schoolList .info-container {
  min-height: 80vh;
}

.page-wrap.schoolList .school-select-box {
  padding: 15px;
  width: 80%;
  margin: 0 auto;
  background-color: #fff3cda6;
  border: 4px solid #e0d09b;
  border-radius: 15px;
}

@media (max-width: 576px) {
  .page-wrap.schoolList .school-select-box {
    width: 100%;
  }
}

.page-wrap.schoolList .school-select-box .thing {
  display: flex;
  margin-bottom: 10px;
}

.page-wrap.schoolList .school-select-box :is(input, select) {
  border: 2px solid #bbb;
  box-shadow: none;
}

.page-wrap.schoolList .school-select-box input:focus {
  outline: none;
}

.page-wrap.schoolList .school-select-box label {
  text-align: center;
  min-width: 100px;
  font-weight: 600;
  font-size: 18px;
}

.page-wrap.schoolList .school-select-box input[type="submit"] {
  padding: 4px 12px;
  border: none;
  background-color: #154d8d;
  color: #fff;
  border-radius: 30px;
  margin-left: auto;
  font-weight: 600;
}



.page-wrap.schoolList .school-content .thing {
  display: flex;
  min-height: 50px;
}

.page-wrap.schoolList .school-content .thing.rwd-title {
  display: none;
}

.page-wrap.schoolList .school-content .thing .vth {
  background-color: #154d8d;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  font-size: 22px;
}

.page-wrap.schoolList .school-content .thing.title .vth:first-child {
  border-radius: 15px 0px 0px 0px;
}

.page-wrap.schoolList .school-content .thing.title .vth:last-child {
  border-radius: 0px 15px 0px 0px;
}

.page-wrap.schoolList .school-content .thing .vtd {
  border: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  padding: 10px;
}

.page-wrap.schoolList .school-content .thing .choose {
  width: 50px;
  flex-shrink: 0;
}

.page-wrap.schoolList .school-content .thing .choose input {
  transform: scale(1.2);
  border: 2px solid #154d8d;
}

.page-wrap.schoolList .school-content .thing .name {
  width: 35%;
  flex-shrink: 0;
}

.page-wrap.schoolList .school-content .thing .address {
  flex-grow: 1;
}

@media (max-width: 400px) {
  .page-wrap.schoolList .school-content .thing.title {
    display: none;
  }

  .page-wrap.schoolList .school-content .thing.rwd-title {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: #154d8d;
    color: #fff;
    font-weight: 800;
    font-size: 27px;
    padding: 5px;
    letter-spacing: 3px;
    margin-bottom: 4px;
  }

  .page-wrap.schoolList .school-content .thing.rwd-title i {
    animation: jump2 .5s ease infinite alternate-reverse;
  }

  .page-wrap.schoolList .school-content .thing {
    background-color: #fcfcfc;
    padding: 5px;
    border: 2px solid #154d8d;
    border-radius: 15px;
    display: block;
    margin-bottom: 4px;
  }

  .page-wrap.schoolList .school-content .thing .vtd {
    border: none;
    padding: 2px 10px;
    justify-content: start;
  }

  .page-wrap.schoolList .school-content .thing .choose {
    display: inline-block;
    text-align: center;
  }

  .page-wrap.schoolList .school-content .thing .name {
    display: inline-block;
    width: calc(100% - 60px);
    text-align: start;
  }
}

@keyframes jump2 {
  0% {
    transform: translate(0%, 2px);
  }

  100% {
    transform: translate(0%, -2px);
  }
}



/*  ----- .page-schoolList ----------- */
/*  ----- .page-consent ----------- */
.page-consent .text-box {
  border: 3px solid #EE6F57;
  border-radius: 15px;
  margin: 15px;
  padding: 15px;
  background-color: #dd998b41;
}

.page-consent .text-box h1 {
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #f00;
}

.page-consent .text-box .text {
  text-indent: 1em;
  padding: 8px;
  line-height: 35px;
  font-weight: 600;
  font-size: 20px;
}

@media (max-width: 768px) {
  .page-consent .text-box h1 {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .page-consent .text-box .text {
    padding: 3px;
    line-height: 30px;
    font-size: 16px;
  }
}

/*  ----- .page-consent ----------- */

/*  ----- .page-apply ----------- */
/*  ----- .page-apply ----------- */