@charset "utf-8";
/* CSS Document */
html {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  background-color: #f3f3f3;
  font-size: 0.875em;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: #b81c22;
  font-weight: 400;
  line-height: 1.5;
  background-attachment: fixed;
  background-size: cover;
  /*background-image: url(/images/2063277788.jpg);*/
  position: relative;
  /*border: solid 12px #b81c22;*/
  box-sizing: border-box;
  overflow: hidden;
  height: 100%;
  margin: 0;
  padding: 0;
}
.container {
  margin: 0 auto;
  padding-top: 3%;
}
#carousel{
  display:block;
  width: 100%;
  height: 100%;
  background-image: url('/images/part2-bg.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
.login {
}
.logowrap {
  text-align: center;
}
.logoontop {
  max-width: 250px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.login .card {
  width: 60%;
  height: auto;
  max-width: 420px;
  padding: 40px;
  margin: 0 auto;
  background-color: #FFF;
  border-radius: 0px;
  border: solid 1px rgba(0,0,0,0.1);
  overflow: hidden;
  box-shadow: 0px 10px 10px 2px rgba(0,0,0,0.2);
  /*絕對置中*/
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*3選1頁*/
.card_choose {
    display: flex;
    width: 90%;
    max-width: 1200px;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.card_choose .card_box {
    position: relative;
    width: 100%;
    margin: 0 1em;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0px 10px 10px 2px rgba(0,0,0,0.2);
}
.card_choose .card_1, .card_choose .card_2, .card_choose .card_3 {
    width: 100%;
    height: 300px;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    filter: brightness(0.5);
    transition: 0.5s all;
}
.card_choose .card_1:hover, .card_choose .card_2:hover, .card_choose .card_3:hover {
    background-position: right center;
    filter: brightness(1);
    transform: scale(1.2);
    transition: 0.5s all;
}
@media only screen and (max-width: 768px) {
    .card_choose {
        display: block;
        width: 100%;
    }
    .card_choose .card_box {
        width: 80%;
        margin: 0.5em auto;
    }
    .card_choose .card_1, .card_choose .card_2, .card_choose .card_3 {
        height: 180px;
    }
}
.card_choose .card_1 {
    background-image: url('/images/2359577005.jpg');
}
.card_choose .card_2 {
    background-image: url('/images/2109008411.jpg');
}
.card_choose .card_3 {
    background-image: url('/images/2276096089.jpg');
}
.card_choose a {
}
.card_choose a .card_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    font-size: 2em;
    line-height: 1.2em;
    text-align: center;
    color: #FFF;
    border-radius: 3px;
    margin: 0;
    padding: 5px 10px 7px;
    z-index: 1;
    transition: 0.5s all;
}
.card_choose a .card_text.wide_text {
    width: 80%;
}
.card_choose a:hover .card_text {
    background: rgba(184, 28, 34, 0.8);
}
.card_choose a .card_text:hover {
    background-color: #ff000a;
}
.login_name {
    font-weight: 800;
}
/*3選1頁end*/

/*2選1頁*/
.card_choose2 {
    display: flex;
    width: 90%;
    max-width: 800px;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.card_choose2 .card_box {
    position: relative;
    width: 100%;
    margin: 0 2em;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0px 10px 10px 2px rgba(0,0,0,0.2);
}
.card_choose2 .card_1, .card_choose2 .card_2 {
    width: 100%;
    height: 340px;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    filter: brightness(0.5);
    transition: 0.5s all;
}
.card_choose2 .card_1:hover, .card_choose2 .card_2:hover {
    background-position: right center;
    filter: brightness(1);
    transform: scale(1.3);
    transition: 0.5s all;
}
.card_choose2 .card_1 {
    background-image: url('/images/2109008411.jpg');
}
.card_choose2 .card_2 {
    background-image: url('/images/2276096089.jpg');
}
.card_choose2 a {
    background: rgba(255, 0, 0, 0.9);
}
.card_choose2 a span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.3em;
    letter-spacing: 0.5px;
    line-height: 1em;
    color: #FFF;
    margin: 0;
    padding: 5px 10px;
    z-index: 1;
    transition: 0.5s all;
}
.card_choose2 a:hover span {
    background-color: #b81c22;
}
.card_choose2 a span:hover {
    background-color: #ff000a;
}
/*2選1頁end*/

.login .form-group {
  position: relative; }
.login .form-control {
  height: 40px;
  width: 100%;
  border: none;
  border-radius: 0 !important;
  font-size: 1.3em;
  font-weight: 400;
  padding: 0;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 1px solid #ccc; }
.login .form-control:focus {
  border-color: transparent;
  outline: none;
  -webkit-box-shadow: none;
		  box-shadow: none; }
.login .float-label {
  pointer-events: none;
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 15px;
  font-weight: 500;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all; }
/*字上移*/
.login .form-control:focus ~ .float-label, .login .form-control:valid ~ .float-label {
  top: -14px;
  font-size: 11px; }
/*字底線*/
.login .form-bar {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 15px; }
.login .form-bar:after, .login .form-bar:before {
  content: '';
  height: 2px;
  width: 0;
  bottom: 0;
  margin-bottom: 14px;
  position: absolute;
  transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all; }
.login .form-bar:before {
  left: 50%; }
.login .form-bar:after {
  right: 50%; }
.login .form-control:focus ~ .form-bar:after, .login .form-control:focus ~ .form-bar:before {
  width: 50%; }
.login .form-primary .form-control:focus ~ .form-bar:after, .login .form-primary .form-control:focus ~ .form-bar:before {
  background: #b81c22; }
/*勾選*/
.checkbox-fade {
  padding-top: 40px;}
.checkbox-fade .checkme .checkme-icon, .checkbox-zoom .checkme .checkme-icon {
  color: #b81c22;
  font-size: 2.2em;
  left: -2px;
  font-weight: 600;
  line-height: 0;
  position: absolute;
  top: 40%;
}
.checkbox-fade .checkme, .checkbox-zoom .checkme {
  border-radius: 0;
  border: 2px solid #b81c22;
  float: left;
  width: 18px;
  height: 18px;
  margin-right: 0.6rem;
  position: relative;
}
.checkbox-fade label {
  line-height: 18px;
}
.checkbox-fade label input[type="checkbox"], .checkbox-fade label input[type="radio"] {
  display: none;
}
.checkbox-fade label input[type="checkbox"]:checked + .checkme > .checkme-icon, .checkbox-fade label input[type="radio"]:checked + .checkme > .checkme-icon {
  -webkit-transform: scale(1) rotateY(0deg);
  transform: scale(1) rotateY(0deg);
  opacity: 1;
}
.checkbox-fade label input[type="checkbox"] + .checkme > .checkme-icon, .checkbox-fade label input[type="radio"] + .checkme > .checkme-icon {
  -webkit-transform: scale(3) rotateY(-45deg);
  transform: scale(3) rotateY(-45deg);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.sign {
  width: 60%;
  background-color: #b81c22;
  color: #FFF;
  margin: 30px auto 0px;
  cursor: pointer;
  padding: 5px;
  text-align: center;
  font-size: 1.3em;
  border-radius: 0px;
  color: #FFF;
  text-decoration: none;
}
.sign a {
  color: #FFF;
  text-decoration: none;
}
.sign:hover {
  background-color: #ff000a;
  -webkit-box-shadow: -1px 1px 1px 1px #d2d2d2, 0px 0px 1px 1px rgba(255,255,255,0.2) inset;
  box-shadow: -1px 1px 2px 1px #d2d2d2, 0px 0px 1px 2px rgba(255,255,255,0.2) inset;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.forgot {
  float: right;
  margin: 40px auto 0px;
}
.forgot a {
  text-decoration: none;
  font-weight: 600;
  color: #b81c22;
}
/*驗證碼*/
.auth-code-wrap {
  width: 100%;
  display: flex;
}
.auth-code-p {
  line-height: 0;
}
