@charset "UTF-8";
/* 會員共用樣式 start */
* {
  font-family: "微軟正黑體";
  color: #333;
}

.container-720 {
  max-width: 770px;
}

.container-1000 {
  max-width: 1050px;
}

/*讓平板斷點時html寬度固定為1200px*/
/* @media screen and (min-width: 768px) and (max-width: 1199px) {
  .layoutC01 {
    width: 1200px;
  }
}
@media screen and (max-width: 1199px) {
  .container {
    width: 1200px;
  }

  .container-1000,
.container-720 {
    padding: 0 25px;
  }
} */
@media screen and (max-width: 1199px) {
  .container {
    width: 100%;
  }

  .container-1000,
.container-720 {
    padding: 0 20px;
  }

  .hidden-m {
    display: none;
  }
}
a:link {
  text-decoration: none;
}
a:link:hover {
  text-decoration: none;
}

/*紅色提醒文字 */
.red-text {
  color: #E50000;
  display: inline-block;
}

/*表單自動帶值時的樣式 */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  /*背景色*/
  transition: background-color 5000s ease-in-out 0s;
  /*透明*/
  -webkit-text-fill-color: #333333;
  /*字體顏色*/
}

label {
  font-weight: normal;
  cursor: pointer;
}

input[type=text]:focus {
  background-color: #fff;
  color: #333333;
}

/*清除ie叉叉 */
::-ms-clear,
::-ms-reveal {
  display: none;
}

.no-scroll {
  overflow-y: hidden;
}

/* 清除ul */
.no-ul,
.no-ul > li {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 通用按鈕 */
.common-btn {
  border: none;
  padding: 0;
  transition: all 0.4s;
  outline: none;
  overflow: hidden;
  color: #fff;
  cursor: pointer;
  background-color: #005EB8;
  display: flex;
  justify-content: center;
  padding: 0 10px;
  position: relative;
  margin: 0;
  text-align: center;
  min-width: 160px;
  height: auto;
  vertical-align: bottom;
}
.common-btn:hover {
  opacity: 0.7;
}
.common-btn .text {
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 48px;
  color: #fff;
  z-index: 1;
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.common-btn.white {
  background-color: #fff;
  border: 1px solid #E6E6E6;
}
.common-btn.white .text {
  color: #333333;
}

.common-btn.gray {
  background-color: #F0F0F0;
  border: none;
}
.common-btn.gray .text,
.common-btn.gray .cart-num {
  color: #999999;
}
.common-btn.gray i {
  color: #999999;
}

/* 透明連結按鈕 */
.common-btn.transparent {
  padding: 18px 25px;
  color: #005EB8;
  background-color: #fff;
  border: 1px solid #005EB8;
}
.common-btn.transparent:hover {
  opacity: 1;
  background-color: rgba(0, 94, 184, 0.04);
}
.common-btn.transparent .text {
  position: relative;
  font-size: 14px;
  line-height: 24px;
  color: #005EB8;
  z-index: 1;
  transition: all 0.4s;
}
.common-btn.transparent .text:before {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url("../../images/2020RWD/common/oeztw-right-arrow-blue.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  padding-top: 0;
  width: 20px;
  height: 20px;
  right: -20px;
  transition: all 0.4s;
  top: 50%;
  transform: translateY(-50%) translateZ(0);
}

@media screen and (max-width: 767px) {
  .common-btn .text {
    line-height: 40px;
  }
}
/* 帶向右arrow的連結  */
.member-common-link {
  font-size: 0;
  line-height: 0;
}
.member-common-link:nth-child(n+2) {
  margin-top: 8px;
}
.member-common-link a {
  text-decoration: none;
  color: #333333;
  position: relative;
  display: inline-block;
  padding-right: 19px;
  text-align: left;
  transition: all 0.4s;
  font-size: 14px;
  line-height: 24px;
}
.member-common-link a:before {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url("../../images/2020RWD/common/oeztw-right-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  padding-top: 0;
  width: 19px;
  height: 19px;
  right: 0px;
  transition: all 0.4s;
  top: 50%;
  transform: translateY(-50%) translateZ(0);
}
.member-common-link a:hover, .member-common-link a:active, .member-common-link a:visited, .member-common-link a:focus {
  opacity: 0.7;
  color: #333333;
}

.member-common-link.blue a {
  color: #005EB8;
}
.member-common-link.blue a::before {
  background-image: url("../../images/2020RWD/common/oeztw-right-arrow-blue.svg");
}

/* 雙按鈕跳窗start---------------------------------------------------------------- */
.lightbox {
  position: fixed;
  width: 100%;
  height: 101%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: none;
  top: 0;
  left: 0;
  overflow: auto;
}

.lightbox .lightbox-container {
  background-color: #fff;
  width: 600px;
  margin: auto;
  margin-top: 325px;
  text-align: center;
  padding: 71px 124px;
  position: relative;
  margin-bottom: 80px;
}

.lightbox .lightbox-container .lightbox-close {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
}

.lightbox .lightbox-container .title {
  font-size: 24px;
  line-height: 34px;
  text-align: center;
}

.lightbox .lightbox-container .inner-content {
  margin-top: 16px;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}

.lightbox .lightbox-container .inner-note {
  max-height: 320px;
  overflow: auto;
  text-align: left;
  margin-top: 16px;
  font-size: 14px;
  line-height: 24px;
}

.lightbox .lightbox-container .btn-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.lightbox .lightbox-container .btn-container .common-btn {
  display: inline-flex;
}
.lightbox .lightbox-container .btn-container .redirect-btn:first-child {
  margin-right: 24px;
}

@media screen and (max-width: 767px) {
  .lightbox .lightbox-container {
    width: 320px;
    margin-top: 150px;
    padding: 66px 20px;
  }

  .lightbox .lightbox-container .lightbox-close {
    right: 16px;
    top: 16px;
  }

  .lightbox .lightbox-container .title {
    font-size: 20px;
    line-height: 27px;
  }

  .lightbox .lightbox-container .redirect-btn + .redirect-btn {
    margin-top: 8px;
  }

  .lightbox .lightbox-container .btn-container {
    flex-wrap: wrap;
    margin-top: 32px;
  }
  .lightbox .lightbox-container .btn-container .common-btn {
    display: inline-flex;
    width: 100%;
  }
  .lightbox .lightbox-container .btn-container .common-btn .text {
    line-height: 48px;
  }
  .lightbox .lightbox-container .btn-container .redirect-btn:first-child {
    margin-right: 0px;
  }
}
@media screen and (max-width: 360px) {
  .lightbox .lightbox-container {
    width: calc(100% - 40px);
  }
}
/* 雙按鈕跳窗end-------------------------------------------------------------------------------------------------------------------------------- */
/* 單按鈕跳窗start---------------------------------------------------------------- */
.one-btn-lightbox .lightbox-container {
  padding: 62px 124px;
}

@media screen and (max-width: 767px) {
  .lightbox .lightbox-container {
    padding: 62px 20px;
  }
}
/* 單按鈕跳窗end---------------------------------------------------------------- */
/* 上方灰色區塊 start */
.member-nav {
  color: #333;
  background: #f0f0f0;
  height: 106px;
  display: flex;
  align-items: center;
}

.member-nav .member-inner-wrap {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}

.member-nav .member-inner-wrap .page-nav {
  line-height: 1;
  margin-right: auto;
}

.member-nav .member-inner-wrap .page-nav .page-nav {
  text-decoration: none;
}

.member-nav .member-inner-wrap .page-nav .title {
  margin-bottom: 13px;
  line-height: 24px;
  font-size: 14px;
}

.member-nav .member-inner-wrap .page-nav .subtitle {
  font-size: 18px;
  line-height: 24px;
}

.member-nav-list {
  display: flex;
  justify-content: center;
  position: relative;
}

.member-nav-list-item {
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.6px;
  color: #333333;
  display: flex;
  align-items: center;
  position: relative;
}

.member-nav-list-item:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: none;
}

.member-nav-list-item:hover:after {
  background: #999;
}

.member-nav-list-item.active:after {
  background-color: #005EB8;
}

.member-nav-list-link {
  display: block;
  width: 100%;
  color: inherit !important;
  padding: 0 24px;
  text-align: center;
  line-height: inherit;
}

.member-nav-list-link:hover {
  text-decoration: none;
}

/* @media screen and (max-width: 1199px) {
  .member-nav {
    width: 1200px;
  }
} */
@media screen and (max-width: 1199px) {
  .member-nav {
    display: block;
    height: 104px;
    position: relative;
    width: 100%;
  }

  .member-nav .member-inner-wrap {
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    display: block;
  }
  .member-nav .member-inner-wrap .member-nav-list-link {
    padding: 0;
  }

  .member-nav .member-inner-wrap .page-nav {
    margin-right: 0;
    padding: 20px 20px 0;
  }

  .no-nav-tab {
    display: flex;
    height: 96px;
  }
  .no-nav-tab .member-inner-wrap .page-nav {
    padding: 0;
  }

  .member-nav .member-inner-wrap .page-nav .title {
    display: none;
  }

  .member-nav.no-nav-tab .member-inner-wrap .page-nav .title {
    display: block;
  }

  .member-nav-list {
    display: flex;
    position: static;
    margin-top: 16px;
    top: auto;
  }

  .member-nav-list-item {
    font-size: 12px;
    text-align: center;
    line-height: 44px;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 0.6px;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-grow: 1;
  }

  .member-nav-list-item:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: none;
  }

  .member-nav-list-item:hover:after {
    background: #999;
  }

  .member-nav-list-item.active:after {
    background-color: #005EB8;
  }
}
/*各字體大小樣式 */
.member-font18 {
  font-size: 18px;
  line-height: 24px;
}

.member-font16 {
  font-size: 16px;
  line-height: 24px;
}

.member-font14 {
  font-size: 14px;
  line-height: 24px;
}

.member-font12 {
  font-size: 12px;
  line-height: 18px;
}

/* 標題帶底線 */
.title-has-line {
  position: relative;
  margin-bottom: 48px;
}
.title-has-line::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  height: 1px;
  bottom: -8px;
  background-color: #E6E6E6;
}

.article-block + .article-block {
  margin-top: 72px;
}

.flex-block {
  display: flex;
}

/* 左標題右文字 */
.two-column-atricle p {
  font-size: 16px;
  line-height: 24px;
}
.two-column-atricle div p + p {
  margin-top: 40px;
}

.two-column-atricle + .two-column-atricle {
  margin-top: 40px;
}

.two-column-atricle > p {
  margin-right: 80px;
  min-width: 160px;
}

/*  大標題*/
.member-main-title {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 40px;
}

/* 左文字、右select選單 */
.flex-select {
  margin-bottom: 40px;
  align-items: center;
}

.left-statement {
  margin-right: 16px;
}

.common-member-select {
  position: relative;
  border: 1px solid #E6E6E6;
}
.common-member-select::after {
  position: absolute;
  right: 16.5px;
  top: 24px;
  height: 5px;
  width: 9px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
  pointer-events: none;
  background-image: url(../../images/2020RWD/common/form-select-arrow.svg);
}
.common-member-select select {
  width: 160px;
  height: 48px;
  padding: 0px 32px 0px 16px;
  position: relative;
  cursor: pointer;
  background-color: #fff;
  color: #333333;
  font-family: "微軟正黑體";
  font-size: 14px;
  line-height: 24px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  border-radius: 0;
  outline: none;
  border: none;
}

select::-ms-expand {
  display: none;
}

@media screen and (max-width: 767px) {
  .flex-block {
    flex-wrap: wrap;
  }

  .left-statement {
    margin-right: 0px;
    margin-bottom: 13px;
    width: 100%;
  }

  .two-column-atricle p {
    font-size: 16px;
    line-height: 24px;
  }
  .two-column-atricle div {
    width: 100%;
    margin-top: 16px;
  }
  .two-column-atricle div p {
    font-size: 14px;
  }
  .two-column-atricle div p + p {
    margin-top: 16px;
  }

  .two-column-atricle > p {
    margin-right: 0;
    width: 100%;
    color: rgba(51, 51, 51, 0.5);
  }
}
/* 上方灰色區塊 end*/
/* 表格 start*/
.table-block {
  width: 100%;
  overflow: hidden;
  max-width: 1200px;
  /* 橫式表格基處設定 */
  /* 橫式表格基處設定 */
}
.table-block table {
  table-layout: fixed;
  border-spacing: 0px;
  max-width: 100%;
}
.table-block .table-column-overflow > tbody > tr > td {
  overflow: auto;
  overflow-y: hidden;
}
.table-block .table-column-overflow {
  width: 100%;
}
.table-block .table-column-overflow,
.table-block .table-column-overflow > tbody,
.table-block .table-column-overflow > tbody > tr,
.table-block .table-column-overflow > tbody > tr > td {
  display: block;
}
.table-block .table-column-overflow {
  min-width: 100%;
  overflow: hidden;
}
.table-block table.table-column {
  width: 100%;
  table-layout: auto;
  overflow: hidden;
}
.table-block .table-column th {
  padding: 14px;
  background-color: #F2F7FB;
  vertical-align: middle;
}
.table-block .table-column tbody tr {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #e6e6e6;
}
.table-block .table-column thead th {
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #e6e6e6;
}
.table-block .table-column > thead > tr th:last-child {
  border: none;
}
.table-block .table-column tbody td {
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #e6e6e6;
}
.table-block .table-column > tbody > tr td:last-child {
  border: none;
}
.table-block .table-column th[colspan] {
  text-align: center;
  vertical-align: middle;
}
.table-block .table-column th > p {
  line-height: 24px;
  font-size: 14px;
  color: #333333;
  text-align: center;
  white-space: nowrap;
}
.table-block .table-column td {
  padding: 14px;
  vertical-align: middle;
}
.table-block .table-column td > p {
  line-height: 24px;
  font-size: 14px;
  color: #333333;
  text-align: center;
}
.table-block .table-column td > p a {
  color: #005EB8;
}
.table-block .table-column td > p a:link {
  line-height: 24px;
  font-size: 14px;
  color: #005EB8;
  text-decoration: underline;
  display: inline-block;
}
@media screen and (max-width: 1199px) {
  .table-block .table-column-overflow {
    overflow: auto;
    overflow-y: hidden;
  }
  .table-block .table-column {
    min-width: 1000px;
  }
}
@media screen and (max-width: 767px) {
  .table-block table.table-column {
    overflow: auto;
  }
}

/* 表格 end*/
/* 頁碼--start */
.page-selector {
  text-align: center;
  height: 19px;
  margin-top: 40px;
}

.page-number {
  text-align: center;
  position: relative;
  margin: 0 auto;
  display: inline-block;
}

.page-number .left-arrow,
.page-number .right-arrow {
  top: 0;
  width: 19px;
  height: 19px;
  outline: none;
  margin-top: 0;
  position: absolute;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-number .left-arrow {
  left: -35px;
}

.page-number .left-arrow:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 19px;
  height: 19px;
  background-image: url("../../images/2020RWD/common/oeztw-left-arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.4s;
}

.page-number .disable {
  opacity: 0.6;
  cursor: auto;
  pointer-events: none;
}

.page-number .number {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  line-height: 19px;
  color: #333333;
  align-items: center;
}

.page-number .number .this-page a {
  opacity: 0.4;
}

.page-number .number div a {
  text-decoration: none;
  color: #333333;
  display: block;
  width: 24px;
  transition: color 0.4s;
  text-align: center;
}

.page-number .number div a:hover {
  opacity: 0.4;
}

.page-number .number div:nth-child(n+2) {
  margin-left: 16px;
}

.page-number .right-arrow {
  right: -35px;
}

.page-number .right-arrow::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 19px;
  height: 19px;
  background-image: url("../../images/2020RWD/common/oeztw-right-arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.4s;
}

/* 頁碼--end */
/* 會員共用樣式 end */

/* ================================================================ */
/* ================================================================ */
/* ================================================================ */

/* Ivan start */

/* I-Member 新會員註冊：STEP3 start */

.member-container.common-padding-1 {
  padding: 64px 0 72px 0;
}

.member-container.common-padding-2 {
  padding: 72px 0 72px 0;
}

@media screen and (max-width: 767px) {
  .member-container.common-padding-1 {
    padding: 32px 0 80px 0;
  }

  .member-container.common-padding-2 {
    padding: 32px 0 80px 0;
  }
}

.sign-up-success-block {
    margin-top: 72px;
}

.sign-up-success-block.mb-80 {
  margin-bottom: 80px;
}

.sign-up-success-title {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 24px;
}

.forget-password-title {
  text-align: center;
  font-size: 14px;
  line-height: 24px;
}

.forget-password-content {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  line-height: 24px;
}

.sign-up-success-info {
    font-size: 14px;
    line-height: 24px;
}

.sign-up-success-info a {
    text-decoration: underline;
}

.sign-up-success-info a:hover {
    text-decoration: underline;
}

.sign-up-success-title.complete {
    margin: 0;
    text-align: center;
}

.sign-up-success-block.narrow {
    margin-top: 72px;
    margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
    .sign-up-success-block {
        margin-top: 48px;
    }

    .sign-up-success-title {
        margin-bottom: 32px;
        font-size: 16px;
    }

    .sign-up-success-block.mb-80 {
      margin-bottom: 32px;
    }

    .sign-up-success-block.narrow {
        margin-top: 32px;
        margin-bottom: 32px;
    }
}

/* I-Member 新會員註冊：STEP3 end */

/* 退會申請 start */

a.omron-healthcare-link {
    color: #005EB8;
    text-decoration: underline;
}

a.omron-healthcare-link:hover {
    text-decoration: underline;
}

.withdrawal_reason {
    margin-top: 24px;
    padding: 16px;
    width: 100%;
    height: 150px;
    font-size: 14px;
    line-height: 24px;
    border: 1px solid #E6E6E6;
}

.withdrawal_reason:focus {
    outline: none;
}

/* 退會申請 end */

/* 型錄索取 start */

.catalog-select-title {
    font-size: 24px;
    line-height: 34px;
}

.check-list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 40px;
    margin-bottom: 72px;
}

.catalog {
    padding: 32px;
    width: calc(50% - 16px);
    border: 1px solid #E6E6E6;
}

.catalog-image {
    width: 100%;
    padding-top: 70%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.catalog-title-wrapper {
    margin-top: 8px;
    font-size: 16px;
    line-height: 24px;
}

.catalog-title {
    font-size: 16px;
    line-height: 24px;
}

.catalog-info {
    margin-top: 24px;
    font-size: 14px;
    line-height: 24px;
}

@media screen and (max-width: 767px) {
    .catalog-title {
        margin-top: 34px;
    }

    .check-list {
        display: block;
    }

    .catalog {
        width: 100%;
    }

    .catalog + .catalog {
        margin-top: 24px;
    }
}

/* 型錄索取 end */


/* Ivan end */

/* ================================================================ */
/* ================================================================ */
/* ================================================================ */

/* Jared start */

/* 會員總攬----------------------------------------------------------------------start*/
.member-container {
  padding: 80px 0 72px 0;
}
.member-container .member-block {
  display: flex;
  flex-wrap: wrap;
}
.member-container .member-block .card-content {
  width: calc((100% - 30px) / 3);
  background-color: #FAFAFA;
}
.member-container .member-block .card-content:nth-of-type(n+4) {
  margin-top: 16px;
}
.member-container .member-block .card-content:nth-of-type(n+2) {
  margin-left: 15px;
}
.member-container .member-block .card-content:nth-of-type(3n+1) {
  margin-left: 0px;
}
.member-container .member-block .card-content .card-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 66.25%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.member-container .member-block .card-content:nth-of-type(1) .card-image-wrapper {
  background-image: url(../../images/2020RWD/member/oeztw-img1.jpg);
}
.member-container .member-block .card-content:nth-of-type(2) .card-image-wrapper {
  background-image: url(../../images/2020RWD/member/oeztw-img2.jpg);
}
.member-container .member-block .card-content:nth-of-type(3) .card-image-wrapper {
  background-image: url(../../images/2020RWD/member/oeztw-img3.jpg);
}
.member-container .member-block .card-content:nth-of-type(4) .card-image-wrapper {
  background-image: url(../../images/2020RWD/member/oeztw-img4.jpg);
}
.member-container .member-block .card-content:nth-of-type(5) .card-image-wrapper {
  background-image: url(../../images/2020RWD/member/oeztw-img5.jpg?v=20220128);
}
.member-container .member-block .card-content:nth-of-type(6) .card-image-wrapper {
  background-image: url(../../images/2020RWD/member/oeztw-img6.jpg);
}
.member-container .member-block .card-content .card-text-wrapper {
  padding: 20px;
}
.member-container .member-block .card-content .card-text-wrapper .card-title {
  color: #333333;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 16px;
}

/* @media screen and (max-width: 1199px) {
  .member-container {
    width: 1200px;
    margin: 0 auto;
  }
} */
@media screen and (max-width: 1199px) {
  .member-container {
    padding: 40px 0 80px 0;
    width: 100%;
  }
  .member-container .member-block {
    max-width: 320px;
    margin: 0 auto;
  }
  .member-container .member-block .card-content {
    max-width: 320px;
    width: 100%;
  }
  .member-container .member-block .card-content:nth-of-type(n+2) {
    margin-top: 16px;
  }
  .member-container .member-block .card-content:nth-of-type(n+2) {
    margin-left: 0;
  }
}
/* 會員總攬----------------------------------------------------------------------end*/
/* 我的新訓----------------------------------------------------------------------start*/
.news-container .table-block {
  /* 七欄式表格設定start */
  /* th設定start */
  /* th設定end */
  /* td設定start */
}
.news-container .table-block .seven-table-column tr:first-child th:first-child {
  width: 58px;
}
.news-container .table-block .seven-table-column tr:first-child th:nth-child(2) {
  width: 76px;
}
.news-container .table-block .seven-table-column tr:first-child th:nth-child(3) {
  width: 144px;
}
.news-container .table-block .seven-table-column tr:first-child th:nth-child(4) {
  width: 106px;
}
.news-container .table-block .seven-table-column tr:first-child th:nth-child(5) {
  width: 301px;
}
.news-container .table-block .seven-table-column tr:first-child th:nth-child(6) {
  width: 164px;
}
.news-container .table-block .seven-table-column tr:first-child th:nth-child(7) {
  width: 144px;
}
.news-container .table-block .seven-table-column th > p {
  text-align: center;
}
.news-container .table-block .seven-table-column td:nth-child(5) > p {
  text-align: left;
}
.news-container .table-block .seven-table-column td:nth-child(6) > p {
  text-align: left;
}
.news-container .table-block .seven-table-column td > p {
  text-align: center;
}

/* 我的新訓----------------------------------------------------------------------end*/
/* 我的影音----------------------------------------------------------------------start*/
.video-container .table-block {
  /* 七欄式表格設定start */
  /* th設定start */
  /* th設定end */
  /* td設定start */
}
.video-container .table-block .four-table-column tr:first-child th:first-child {
  width: 144px;
}
.video-container .table-block .four-table-column tr:first-child th:nth-child(2) {
  width: 450px;
}
.video-container .table-block .four-table-column tr:first-child th:nth-child(3) {
  width: 262px;
}
.video-container .table-block .four-table-column tr:first-child th:nth-child(4) {
  width: 144px;
}
.video-container .table-block .four-table-column th > p {
  text-align: center;
}
.video-container .table-block .four-table-column td:nth-child(2) > p {
  text-align: left;
}
.video-container .table-block .four-table-column td:nth-child(3) > p {
  text-align: left;
}
.video-container .table-block .four-table-column td > p {
  text-align: center;
}

/* 我的影音----------------------------------------------------------------------end*/
/* 我的聯絡----------------------------------------------------------------------start*/
.contact-container {
  /* 四欄式表格設定start */
}
.contact-container .table-block {
  /* th設定start */
  /* th設定end */
  /* td設定start */
}
.contact-container .table-block .four-table-column tr:first-child th:first-child {
  width: 144px;
}
.contact-container .table-block .four-table-column tr:first-child th:nth-child(2) {
  width: 250px;
}
.contact-container .table-block .four-table-column tr:first-child th:nth-child(3) {
  width: 144px;
}
.contact-container .table-block .four-table-column tr:first-child th:nth-child(4) {
  width: 462px;
}
.contact-container .table-block .four-table-column tr:first-child th:nth-child(4) > p {
  width: 116px;
}
.contact-container .table-block .four-table-column th > p {
  text-align: center;
}
.contact-container .table-block .four-table-column td:nth-child(2) > p {
  text-align: left;
}
.contact-container .table-block .four-table-column td:nth-child(4) > p {
  width: 116px;
}
.contact-container .table-block .four-table-column td > p {
  text-align: center;
}

/* 我的聯絡----------------------------------------------------------------------end*/
/* 我的申請----------------------------------------------------------------------start*/
.apply-container .table-block {
  /* 七欄式表格設定start */
  /* th設定start */
  /* th設定end */
  /* td設定start */
}
.apply-container .table-block .five-table-column tr:first-child th:first-child {
  width: 144px;
}
.apply-container .table-block .five-table-column tr:first-child th:nth-child(2) {
  width: 368px;
}
.apply-container .table-block .five-table-column tr:first-child th:nth-child(3) {
  width: 144px;
}
.apply-container .table-block .five-table-column tr:first-child th:nth-child(4) {
  width: 200px;
}
.apply-container .table-block .five-table-column tr:first-child th:nth-child(5) {
  width: 144px;
}
.apply-container .table-block .five-table-column th > p {
  text-align: center;
}
.apply-container .table-block .five-table-column td:nth-child(2) > p,
.apply-container .table-block .five-table-column td:nth-child(4) > p {
  text-align: left;
}
.apply-container .table-block .five-table-column td > p {
  text-align: center;
}

/* 我的申請----------------------------------------------------------------------end*/
/* 我的報名----------------------------------------------------------------------start*/
.mapply-container .flex-block {
  position: relative;
  display: flex;
  align-items: center;
}
.mapply-container .flex-block p {
  min-width: 100px;
}
.mapply-container .flex-block .input-block {
  margin: 0 33px 0 16px;
  display: flex;
}
.mapply-container .flex-block .inner-input {
  margin-left: 33px;
  position: relative;
  width: 160px;
}
.mapply-container .flex-block .inner-input .text-content {
  width: 100%;
  height: 24px;
  font-size: 16px;
  height: 48px;
  line-height: 24px;
  padding: 0 12px 0 12px;
  border: 1px solid #E6E6E6;
  outline: none;
  color: #333333;
  -webkit-appearance: none;
  border-radius: 0;
  text-align: center;
  vertical-align: middle;
  background-color: #fff;
}
.mapply-container .flex-block .first-input {
  margin-left: 0px;
}
.mapply-container .flex-block .first-input::before {
  content: "";
  width: 3px;
  height: 1px;
  background-color: #333333;
  right: -17px;
  top: 23.5px;
  display: block;
  position: absolute;
}
.mapply-container .date-search + .date-search {
  margin-top: 24px;
}
.mapply-container .outer-content + .outer-content {
  margin-top: 72px;
}
.mapply-container .title-has-line {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.mapply-container .title-has-line .member-common-link {
  margin-left: 32px;
}
.mapply-container .table-block {
  /* 九欄式表格設定start */
  /* th設定start */
  /* th設定end */
  /* td設定start */
}
.mapply-container .table-block .nine-table-column tr:first-child th:first-child {
  width: 197px;
}
.mapply-container .table-block .nine-table-column tr:first-child th:nth-child(2) {
  width: 83px;
}
.mapply-container .table-block .nine-table-column tr:first-child th:nth-child(3) {
  width: 90px;
}
.mapply-container .table-block .nine-table-column tr:first-child th:nth-child(4) {
  width: 120px;
}
.mapply-container .table-block .nine-table-column tr:first-child th:nth-child(5) {
  width: 90px;
}
.mapply-container .table-block .nine-table-column tr:first-child th:nth-child(6) {
  width: 90px;
}
.mapply-container .table-block .nine-table-column tr:first-child th:nth-child(7) {
  width: 120px;
}
.mapply-container .table-block .nine-table-column tr:first-child th:nth-child(8) {
  width: 120px;
}
.mapply-container .table-block .nine-table-column tr:first-child th:nth-child(9) {
  width: 90px;
}
.mapply-container .table-block .nine-table-column th > p {
  text-align: center;
}
.mapply-container .table-block .nine-table-column td > p {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .mapply-container .flex-block {
    flex-wrap: wrap;
  }
  .mapply-container .flex-block p {
    width: 100%;
  }
  .mapply-container .flex-block .input-block {
    margin: 13px 0 16px 0;
    display: flex;
    width: 100%;
  }
  .mapply-container .flex-block .inner-input {
    max-width: 143px;
    width: auto;
  }
  .mapply-container .date-search + .date-search {
    margin-top: 40px;
  }
  .mapply-container .title-has-line .member-common-link {
    margin-left: 0;
    width: 100%;
    margin-top: 8px;
  }
}
/* 我的報名----------------------------------------------------------------------end*/
/* 我的購物----------------------------------------------------------------------start*/
.member-myshop-container .date-search {
  margin-bottom: 40px;
}
.member-myshop-container .table-block {
  /* 八欄式表格設定start */
  /* th設定start */
  /* th設定end */
  /* td設定start */
}
.member-myshop-container .table-block .eight-table-column tr:first-child th:first-child {
  width: 100px;
}
.member-myshop-container .table-block .eight-table-column tr:first-child th:nth-child(2) {
  width: 200px;
}
.member-myshop-container .table-block .eight-table-column tr:first-child th:nth-child(3) {
  width: 106px;
}
.member-myshop-container .table-block .eight-table-column tr:first-child th:nth-child(4) {
  width: 140px;
}
.member-myshop-container .table-block .eight-table-column tr:first-child th:nth-child(5) {
  width: 107px;
}
.member-myshop-container .table-block .eight-table-column tr:first-child th:nth-child(6) {
  width: 100px;
}
.member-myshop-container .table-block .eight-table-column tr:first-child th:nth-child(7) {
  width: 120px;
}
.member-myshop-container .table-block .eight-table-column tr:first-child th:nth-child(8) {
  width: 120px;
}
.member-myshop-container .table-block .eight-table-column th > p {
  text-align: center;
}
.member-myshop-container .table-block .eight-table-column td:nth-child(2) > p {
  text-align: left;
}
.member-myshop-container .table-block .eight-table-column td > p {
  text-align: center;
}

/* 我的購物----------------------------------------------------------------------end*/
/* 我的購物訂單查詢內容頁----------------------------------------------------------------------start*/
.member-form-detail-container {
  /* 七欄式表格設定start */
  /* 五欄式表格設定start */
}
.member-form-detail-container .complete-order p:first-child {
  font-size: 18px;
}
.member-form-detail-container .table-block {
  /* th設定start */
  /* th設定end */
  /* td設定start */
}
.member-form-detail-container .table-block .seven-table-column tr:first-child th:first-child {
  width: 56px;
}
.member-form-detail-container .table-block .seven-table-column tr:first-child th:nth-child(2) {
  width: 175px;
}
.member-form-detail-container .table-block .seven-table-column tr:first-child th:nth-child(3) {
  width: 80px;
}
.member-form-detail-container .table-block .seven-table-column tr:first-child th:nth-child(4) {
  width: 90px;
}
.member-form-detail-container .table-block .seven-table-column tr:first-child th:nth-child(5) {
  width: 100px;
}
.member-form-detail-container .table-block .seven-table-column tr:first-child th:nth-child(6) {
  width: 90px;
}
.member-form-detail-container .table-block .seven-table-column tr:first-child th:nth-child(7) {
  width: 122px;
}
.member-form-detail-container .table-block .seven-table-column th > p {
  text-align: center;
}
.member-form-detail-container .table-block .seven-table-column td:nth-child(2) > p {
  text-align: left;
}
.member-form-detail-container .table-block .seven-table-column td:nth-child(3) > p,
.member-form-detail-container .table-block .seven-table-column td:nth-child(5) > p {
  text-align: right;
}
.member-form-detail-container .table-block .seven-table-column td > p {
  text-align: center;
}
.member-form-detail-container .remittance > p {
  margin-right: 30px;
}
.member-form-detail-container .p-form {
  padding-bottom: 40px;
}
.member-form-detail-container .p-form-button {
  padding: 0;
}
.member-form-detail-container .p-form__box--entered {
  margin-bottom: 0;
  margin-top: 32px;
}
.member-form-detail-container .table-block {
  /* th設定start */
  /* th設定end */
  /* td設定start */
}
.member-form-detail-container .table-block .five-table-column tr:first-child th:first-child {
  width: 225px;
}
.member-form-detail-container .table-block .five-table-column tr:first-child th:nth-child(2) {
  width: 225px;
}
.member-form-detail-container .table-block .five-table-column tr:first-child th:nth-child(3) {
  width: 80px;
}
.member-form-detail-container .table-block .five-table-column tr:first-child th:nth-child(4) {
  width: 90px;
}
.member-form-detail-container .table-block .five-table-column tr:first-child th:nth-child(5) {
  width: 100px;
}
.member-form-detail-container .table-block .five-table-column th > p {
  text-align: center;
}
.member-form-detail-container .table-block .five-table-column td:nth-child(2) > p,
.member-form-detail-container .table-block .five-table-column td:first-child > p {
  text-align: left;
}
.member-form-detail-container .table-block .five-table-column td:nth-child(3) > p,
.member-form-detail-container .table-block .five-table-column td:nth-child(5) > p {
  text-align: right;
}
.member-form-detail-container .table-block .five-table-column td > p {
  text-align: center;
}
.member-form-detail-container .right-article {
  margin-top: 24px;
}
.member-form-detail-container .right-article p {
  text-align: right;
}
.member-form-detail-container .right-article p + p {
  margin-top: 16px;
}
.member-form-detail-container .gray-line {
  width: 100%;
  background-color: #E6E6E6;
  height: 1px;
  margin: 40px 0;
}
.member-form-detail-container .plural-list:last-child .gray-line {
  display: none;
}
.member-form-detail-container .form-box-container:nth-child(n+2) {
  margin-top: 40px;
}
.member-form-detail-container .form-box-container textarea {
  margin-top: 16px;
  padding: 16px 16px 16px 12px;
  width: 100%;
  border: 1px solid #E6E6E6;
  outline: none;
  background-color: #fff;
  font-size: 14px;
  line-height: 24px;
  height: 150px;
}
.member-form-detail-container .form-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}
.member-form-detail-container .form-box input {
  margin: 0;
}
.member-form-detail-container .form-box .form-box-title {
  min-width: 77px;
  margin-right: 20px;
}
.member-form-detail-container .form-box .form-box-radio {
  flex-grow: 1;
  display: flex;
}
.member-form-detail-container .form-box .form-box-radio .form-radio-content {
  width: calc((100% - 24px) / 4);
}
.member-form-detail-container .form-box .form-box-radio .form-radio-content .p-form__button-label {
  width: 100%;
}
.member-form-detail-container .form-box .form-box-radio .form-radio-content .p-form__button-txt {
  letter-spacing: 0;
}
.member-form-detail-container .form-box .form-box-radio .form-radio-content:nth-child(n+2) {
  margin-left: 8px;
}
.member-form-detail-container .common-btn {
  width: 320px;
  margin: 0 auto;
  margin-top: 40px;
}
.member-form-detail-container .common-btn .text {
  line-height: 56px;
}

@media screen and (max-width: 767px) {
  .member-form-detail-container .complete-order p:first-child {
    font-size: 20px;
    line-height: 27px;
  }
  .member-form-detail-container .complete-order p:last-child {
    font-size: 14px;
  }
  .member-form-detail-container .right-article p {
    text-align: left;
  }
  .member-form-detail-container .remittance > p {
    margin-right: 0;
  }
  .member-form-detail-container .form-box {
    flex-wrap: wrap;
    margin-top: 32px;
  }
  .member-form-detail-container .form-box input {
    margin: 0;
  }
  .member-form-detail-container .form-box .form-box-title {
    width: 100%;
    margin-right: 0;
  }
  .member-form-detail-container .form-box .form-box-radio {
    flex-wrap: wrap;
  }
  .member-form-detail-container .form-box .form-box-radio .form-radio-content {
    width: 100%;
    margin-top: 16px;
  }
  .member-form-detail-container .form-box .form-box-radio .form-radio-content:nth-child(n+2) {
    margin-left: 0;
  }
  .member-form-detail-container .member-font16 + .form-box {
    margin-top: 16px;
  }
  .member-form-detail-container .common-btn {
    margin-top: 48px;
  }
}
@media screen and (max-width: 359px) {
  .member-form-detail-container .common-btn {
    width: 100%;
    max-width: 320px;
  }
}
/* 我的購物訂單查詢內容頁----------------------------------------------------------------------end*/
/* 訂單詢問紀錄----------------------------------------------------------------------start*/
.member-myshop-list-container .date-search {
  margin-bottom: 40px;
}
.member-myshop-list-container .table-block {
  /* 七欄式表格設定start */
  /* th設定start */
  /* th設定end */
  /* td設定start */
}
.member-myshop-list-container .table-block .seven-table-column tr:first-child th:first-child {
  width: 120px;
}
.member-myshop-list-container .table-block .seven-table-column tr:first-child th:nth-child(2) {
  width: 120px;
}
.member-myshop-list-container .table-block .seven-table-column tr:first-child th:nth-child(3) {
  width: 239px;
}
.member-myshop-list-container .table-block .seven-table-column tr:first-child th:nth-child(4) {
  width: 120px;
}
.member-myshop-list-container .table-block .seven-table-column tr:first-child th:nth-child(5) {
  width: 159px;
}
.member-myshop-list-container .table-block .seven-table-column tr:first-child th:nth-child(6) {
  width: 102px;
}
.member-myshop-list-container .table-block .seven-table-column tr:first-child th:nth-child(7) {
  width: 140px;
}
.member-myshop-list-container .table-block .seven-table-column th > p {
  text-align: center;
}
.member-myshop-list-container .table-block .seven-table-column td:nth-child(3) > p,
.member-myshop-list-container .table-block .seven-table-column td:nth-child(5) > p {
  text-align: left;
}
.member-myshop-list-container .table-block .seven-table-column td > p {
  text-align: center;
}

/* 訂單詢問紀錄----------------------------------------------------------------------end*/
/* 我的維修----------------------------------------------------------------------start*/
.member-repair-container .date-search {
  margin-bottom: 40px;
}
.member-repair-container .table-block {
  /* 八欄式表格設定start */
  /* th設定start */
  /* th設定end */
  /* td設定start */
}
.member-repair-container .table-block .eight-table-column tr:first-child th:first-child {
  width: 140px;
}
.member-repair-container .table-block .eight-table-column tr:first-child th:nth-child(2) {
  width: 170px;
}
.member-repair-container .table-block .eight-table-column tr:first-child th:nth-child(3) {
  width: 145px;
}
.member-repair-container .table-block .eight-table-column tr:first-child th:nth-child(4) {
  width: 106px;
}
.member-repair-container .table-block .eight-table-column tr:first-child th:nth-child(5) {
  width: 136px;
}
.member-repair-container .table-block .eight-table-column tr:first-child th:nth-child(6) {
  width: 106px;
}
.member-repair-container .table-block .eight-table-column tr:first-child th:nth-child(7) {
  width: 80px;
}
.member-repair-container .table-block .eight-table-column tr:first-child th:nth-child(8) {
  width: 112px;
}
.member-repair-container .table-block .eight-table-column th > p {
  text-align: center;
}
.member-repair-container .table-block .eight-table-column td:nth-child(2) > p {
  text-align: left;
}
.member-repair-container .table-block .eight-table-column td:nth-child(7) > p i {
  font-size: 16px;
  color: #005EB8;
}
.member-repair-container .table-block .eight-table-column td > p {
  text-align: center;
}

/* 我的維修----------------------------------------------------------------------end*/
/*Jared負責頁面end  */

/* Jared end */
