@charset "UTF-8";

/* CSS Document */
.formBox select {
  box-sizing: border-box;
}

.peopleImgBox {
  position: relative;
  width: 215px;
  height: 215px;
  margin: 0 auto 30px;
}
@media (max-width: 960px) {
  .peopleImgBox {
    width: 150px;
    height: 150px;
  }
}
.peopleImg {
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.peopleImg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.peopleImgBox .uploadBtn {
  pointer-events: none;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45px;
  height: 45px;
  transition: all .4s ease;
  transform: translateY(20px);
  opacity: 0;
}

.peopleImgBox .uploadBtn.show {
  pointer-events: auto;
  transform: translate(0);
  opacity: 1;
}

.popBox form, .popBox, .formBox input[type=text], .formBox input[type=password] {
  transition: all 0.5s;
}

/*****內頁*****/
.mainArea.style01 {
  padding-bottom: 0;
  color: #e5e5e5;
  /* new_add */
  background: url(../png/bg_style02.png) no-repeat top center, #e4e4e4;
}
.mainArea.style01 .contentBox {
  /* background-color: #171717; */
  /* new_add */
  background-color: #ffffff;
}
/* new_add */
.mainArea.style01 .titleBox h2 {
    color: #000000;
}
@media (min-width: 961px) {
  .mainArea.style01 .contentBox {
    padding-top: 70px;
    padding-bottom: 90px;
  }
}
@media (min-width: 361px) and (max-width: 960px) {
  .mainArea.style01 .contentBox {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
@media (max-width: 360px) {
  .mainArea.style01 .contentBox {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
@media (min-width: 501px) {
  .mainArea.style01 .contentBox {
    margin-top: 70px;
  }
}
@media (min-width: 361px) and (max-width: 500px) {
  .mainArea.style01 .contentBox {
    margin-top: 50px;
  }
}
@media (max-width: 360px) {
  .mainArea.style01 .contentBox {
    margin-top: 40px;
  }
}
@media (max-width: 360px) {
  .mainArea.style01 .classLinkBox {
    margin-top: 40px;
  }
}
@media (min-width: 1181px) {
  .mainArea .memberInfoBox {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 1401px) {
  .mainArea .memberInfoBox > form {
    width: calc(100% - 380px);
  }
}
@media (min-width: 1181px) and (max-width: 1400px) {
  .mainArea .memberInfoBox > form {
    width: calc(100% - 300px);
  }
}
@media (min-width: 1181px) {
  .mainArea .memberInfoBox > form {
    padding-right: 70px;
  }
}
@media (min-width: 1401px) {
  .mainArea .memberInfoBox > .contactPerson {
    width: 380px;
    padding-left: 70px;
  }
}
@media (min-width: 1181px) and (max-width: 1400px) {
  .mainArea .memberInfoBox > .contactPerson {
    width: 300px;
    padding-left: 50px;
  }
}
@media (min-width: 1181px) {
  .mainArea .memberInfoBox > .contactPerson {
    padding-top: 10px;
    border-left: 1px solid #2f2f2f;
  }
}
@media (max-width: 1180px) {
  .mainArea .memberInfoBox > .contactPerson {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #2f2f2f;
  }
}

.contactPerson {
  font-size: 14px;
}
.contactPerson h4 {
  font-size: 25px;
  font-family: "Oswald", "微軟正黑體", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.contactPerson h4::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin-top: 25px;
  margin-bottom: 35px;
  background-color: #bd2020;
}
.contactPerson .title {
  margin-bottom: 8px;
  font-family: "Oswald", "微軟正黑體", sans-serif;
  font-weight: 600;
}
.contactPerson > a {
  display: block;
}
.contactPerson > a:not(:hover) {
  color: #919191;
}

/*****表單*****/
.formBox {
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  /* color: #fff; */
  color: #000;
}
.formBox .form {
  margin-top: 15px;
}
@media (min-width: 701px) {
  .formBox .form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
.formBox .form:first-child {
  margin: 0;
}
@media (min-width: 701px) {
  .formBox .form .left {
    width: 180px;
    text-align: right;
  }
}
@media (max-width: 700px) {
  .formBox .form .left {
    margin-bottom: 10px;
  }
}
.formBox .form .right {
  position: relative;
}
@media (min-width: 1181px) {
  .formBox .form .right {
    max-width: 650px;
  }
}
@media (min-width: 701px) {
  .formBox .form .right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: calc(100% - 180px);
    min-height: 40px;
    padding-left: 30px;
  }
}
.formBox .left em {
  display: inline-block;
  margin-right: 3px;
  color: #bd2020;
}
.formBox select {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  padding: 5px;
}
.formBox input[type=text], .formBox input[type=password] {
  width: 100%;
  height: 40px;
  line-height: 40px;
  /* border: 1px solid #3f3f3f; */
  /* new_add */
  border: 1px solid #cccccc;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #000;
  background: transparent;
}
@media (min-width: 701px) {
  .formBox input[type=text], .formBox input[type=password] {
    padding: 0 20px;
  }
}
@media (max-width: 700px) {
  .formBox input[type=text], .formBox input[type=password] {
    padding: 0 10px;
  }
}
.formBox input[type=text]:focus, .formBox input[type=password]:focus {
  border-color: #fff;
}
.formBox input[type=checkbox], .formBox input[type=radio] {
  position: relative;
  top: -3px;
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  margin-right: 5px;
  padding: 0;
  border: 2px solid #717171;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.formBox input[type=checkbox]::before, .formBox input[type=radio]::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 5;
  font-size: 12px;
  font-family: FontAwesome;
  color: #fff;
  opacity: 0;
}
.formBox input[type=checkbox]:checked, .formBox input[type=radio]:checked {
  border-color: #bd2020;
  background-color: #bd2020;
}
.formBox input[type=checkbox]:checked::before, .formBox input[type=radio]:checked::before {
  opacity: 1;
}
@media (min-width: 701px) {
  .formBox .nameBox input[type=text] {
    padding-right: 190px;
  }
  .formBox .nameBox .sexBox {
    position: absolute;
    top: 10px;
    right: 0;
    width: 170px;
  }
}
@media (max-width: 700px) {
  .formBox .nameBox .sexBox {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
  }
}
.formBox label {
  cursor: pointer;
}
.formBox label:not(:last-child) {
  margin-right: 20px;
}
.formBox b {
  display: inline-block;
  margin-top: 5px;
  margin-left: 5px;
  font-size: 13px;
  font-weight: 400;
  color: #999;
}
.formBox b a {
  color: #06F;
}
.formBox b a:hover {
  text-decoration: underline;
}
.formBox a.moreLink {
  font-size: 13px;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.3); */
  /* new_add */
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.formBox a.moreLink:hover {
  border-color: #bd2020;
  color: #bd2020;
}

.error {
  border: 1px solid #bd2020 !important;
  box-shadow: 0 0 10px #bd2020;
}

.checkArea {
  clear: both;
  padding-top: 25px;
}
@media (min-width: 701px) {
  .checkArea {
    padding-left: 210px;
  }
}
@media (max-width: 700px) {
  .checkArea {
    text-align: center;
  }
}

/*****表格*****/
table.favoriteTable th, table.favoriteTable td {
  border: 0;
}
table.favoriteTable th {
  vertical-align: middle;
  font-family: "Oswald", "微軟正黑體", sans-serif;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  background-color: #e3e3e3;
}
@media (min-width: 1181px) {
  table.favoriteTable th {
    padding: 20px 10px;
  }
}
@media (max-width: 1180px) {
  table.favoriteTable th {
    padding: 15px 10px;
  }
}
@media (max-width: 500px) {
  table.favoriteTable th {
    padding: 10px 5px;
  }
}
table.favoriteTable td {
  border-bottom: 1px solid #2f2f2f;
}
@media (min-width: 1181px) {
  table.favoriteTable td {
    padding: 30px 10px;
  }
}
@media (max-width: 1180px) {
  table.favoriteTable td {
    padding: 15px 10px;
  }
}
@media (min-width: 641px) {
  table.favoriteTable td:nth-child(3) {
    padding-left: 30px;
  }
}
@media (max-width: 500px) {
  table.favoriteTable a.btnSelCancel {
    display: block;
  }
}
table.favoriteTable a.btnSelCancel::before {
  content: "/";
  display: inline-block;
  margin: 0 5px;
}
table.favoriteTable .Img {
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 1181px) {
  table.favoriteTable .Img {
    width: 90px;
    margin-right: 20px;
  }
}
@media (max-width: 1180px) {
  table.favoriteTable .Img {
    width: 50px;
    margin-right: 10px;
  }
}
@media (max-width: 500px) {
  table.favoriteTable .Img {
    width: 30px;
  }
}
table.favoriteTable .Img img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
table.favoriteTable h3 {
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 1181px) {
  table.favoriteTable h3 {
    font-size: 16px;
    font-weight: 500;
  }
}
table.favoriteTable h3 a {
  color: #fff;
}
@media (min-width: 1181px) {
  table.favoriteTable .num {
    font-size: 16px;
    font-weight: 500;
  }
}
table.favoriteTable a.btnRemove {
  display: inline-block;
  vertical-align: middle;
}
table.favoriteTable a.btnRemove svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
table.favoriteTable.footable.breakpoint > tbody > tr > td > span.footable-toggle {
  font-size: 12px;
  color: #bd2020;
}
table.favoriteTable.favoriteTable2 {
  color: #000;
}
table.favoriteTable.favoriteTable2 th {
  background-color: #d6d6d6;
}
table.favoriteTable.favoriteTable2 td {
  border-color: #d6d6d6;
}
@media (min-width: 501px) {
  table.favoriteTable.favoriteTable2 .Img {
    width: 50px;
  }
}
table.favoriteTable.favoriteTable2 h3 {
  color: #000;
}
table.favoriteTable.favoriteTable2 .btnRemove svg {
  fill: #000;
}
table.favoriteTable.favoriteTable2 input,
table.favoriteTable.favoriteTable2 select,
table.favoriteTable.favoriteTable2 textarea {
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #d6d6d6;
  background-color: #fff;
}
table.favoriteTable.favoriteTable2 input {
  width: 70px;
  height: 35px;
  line-height: 35px;
  padding: 0 10px;
  text-align: center;
}
table.favoriteTable.favoriteTable2 select {
  width: 90px;
  height: 35px;
  padding: 0 10px;
}
table.favoriteTable.favoriteTable2 textarea {
  width: 100%;
  height: 50px;
  resize: none;
  padding: 3px 10px;
}

@media (min-width: 501px) {
  .formBox .btnBox {
    margin-bottom: 40px;
  }
}
@media (max-width: 500px) {
  .formBox .btnBox {
    margin-bottom: 30px;
  }
}
@media (max-width: 500px) {
  .formBox .btnBox a.btn {
    width: 100%;
  }
}

/*****洽詢表單*****/
.popBox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 55;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.popBox.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  overflow-y: auto;
}
.popBox .mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.92);
}
.popBox form {
  position: relative;
  top: 40vh;
  width: calc(100% - 40px);
  max-width: 1440px;
  min-height: 90vh;
  margin: 0 auto;
  background-color: #eee;
}
@media (min-width: 1601px) {
  .popBox form {
    padding: 110px;
  }
}
@media (min-width: 1181px) and (max-width: 1600px) {
  .popBox form {
    padding: 100px 0;
  }
}
@media (min-width: 641px) and (max-width: 1180px) {
  .popBox form {
    padding: 80px 0;
  }
}
@media (max-width: 640px) {
  .popBox form {
    padding: 50px 0;
  }
}
@media (max-width: 400px) {
  .popBox form .wrap {
    padding: 0 10px;
  }
}
.popBox.show form {
  top: 20vh;
}
.popBox .titleBox {
  margin-bottom: 40px;
}
.popBox .titleBox h3 {
  font-weight: 500;
  color: #000;
}
@media (min-width: 401px) {
  .popBox .titleBox h3 {
    font-size: 40px;
  }
}
@media (max-width: 400px) {
  .popBox .titleBox h3 {
    font-size: 30px;
  }
}
@media (min-width: 961px) {
  .popBox .btnBox {
    margin-top: 80px;
  }
}
@media (max-width: 960px) {
  .popBox .btnBox {
    margin-top: 50px;
  }
}
.popBox .btnClose {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 15px;
  font-family: "Oswald", "微軟正黑體", sans-serif;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: #bd2020;
}
@media (min-width: 1181px) {
  .popBox .btnClose {
    width: 160px;
    height: 100px;
    line-height: 100px;
  }
}
@media (min-width: 641px) and (max-width: 1180px) {
  .popBox .btnClose {
    width: 80px;
    height: 60px;
    line-height: 60px;
  }
}
@media (max-width: 640px) {
  .popBox .btnClose {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 0;
  }
  .popBox .btnClose::before {
    content: "";
    font-size: 15px;
    font-family: FontAwesome;
  }
}

/*****註冊頁面*****/
.section + .section {
  margin-top: 40px;
}
.section h3 {
  position: relative;
  clear: both;
  margin-bottom: 10px;
  padding: 0;
  font-size: 18px;
  font-family: "Oswald", "微軟正黑體", sans-serif;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}
.section h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin-top: 10px;
  margin-bottom: 20px;
  background-color: #bd2020;
}

.condition {
  padding-bottom: 20px;
}
.condition .textEditor {
  height: 160px;
  margin: 0;
  padding: 15px;
  border: 1px solid #3f3f3f;
  font-size: 13px;
  color: #c5c5c5;
  background-color: transparent;
  overflow-y: scroll;
}
.condition .check {
  clear: both;
  margin-top: 10px;
  font-weight: bold;
  color: #c5c5c5;
  -moz-user-select: none;
  -webkit-user-select: none;
}
.condition .check input[type=checkbox] {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  padding: 0;
  border: 2px solid #717171;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.condition .check input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 5;
  font-size: 12px;
  font-family: FontAwesome;
  color: #fff;
  opacity: 0;
}
.condition .check input[type=checkbox]:checked {
  border-color: #bd2020;
  background-color: #bd2020;
}
.condition .check input[type=checkbox]:checked::before {
  opacity: 1;
}

/*****轉出PDF說明視窗*****/
.pdfInfoArea {
    width: 400px;
    max-width: 98%;
    background-color: #fff;
}
.pdfInfoArea .box {
    padding: 20px 15px;
}
.pdfInfoArea img {
    display: block;
    width: 100%;
    max-width: 360px;
}
.pdfInfoArea .moduleClose {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    line-height: 18px;
    border: 1px solid #bd2020;
    border-radius: 50%;
    font-size: 12px;
    text-align: center;
    color: #fff;
    background-color: #bd2020;
}
.pdfInfoArea .title {
    font-size: 20px;
    color: #000;
}
.pdfInfoArea p {
    font-size: 16px;
    color: #666;
    text-align: center;
}
.pdfInfoArea .btnBox {
    margin-top: 20px;
}
.pdfInfoArea .btn::after {
    display: none;
}

.memberBox .loginToggle span {
  color: #000000;
}
/* new_add */
.languageBox span,
.header .menuBtn{
    color: #000000;
}
.header .menuBtn::before,
.header .menuBtn::after{
    background-color: rgba(0,0,0,0.5);
}
.bread span,
.classLinkBox > .title,
.header .menu > li > a{
    color: #4c4c4c;
}
header.shrink .menu > li > a,
header.shrink .menuBtn,
.m_menu .languageBox span{
    color: #ffffff;
}
header.shrink .menuBtn::before,
header.shrink .menuBtn::after{
    background-color: rgba(255,255,255,0.5);
}
@media (min-width: 961px){
    .classLinkBox {
        border-bottom: 1px solid #dadada;
    }
}
a.btn.btn_color1:not(:hover){
    color: #272e30;
    font-weight: 400;
    border-color: #bebebe;
}
@media (min-width: 961px){
    .mainArea.style01 .contentBox {
        padding-top: 50px;
    }
}

.mainArea.style01 .titleBox h2,
table.favoriteTable h3 a,
.formBox,
.contactPerson h4,
.contactPerson .title,
.formBox input[type=text], .formBox input[type=password] {
    color: #000000;
}
table.favoriteTable a.btnRemove svg{
    fill:#000000;
}
.formBox input[type=text]:focus, .formBox input[type=password]:focus{
    border-color: #3f3f3f;
}
