@charset "UTF-8";
.account-main {
  padding: 40px 20px;
  background: url("../images/account-bg1.png") center top no-repeat, url("../images/account-bg2.png") center top repeat;
  background-size: cover, cover; /* 第一張維持原大小，第二張鋪滿 */
}
.account-main .account-frame {
  max-width: 1200px;
  margin: auto;
  display: flex;
}
.account-main .account-frame aside {
  max-width: 240px;
  width: 100%;
}
@media (max-width: 768px) {
  .account-main .account-frame aside {
    display: none;
  }
}
.account-main .account-frame aside .aside-box {
  box-shadow: 0 0px 12px rgba(46, 129, 253, 0.2);
  background: #fff;
  border-radius: 20px;
  padding: 25px 25px 0 25px;
}
.account-main .account-frame aside .aside-box .title {
  display: block;
  font-size: 14px;
  color: #737373;
  margin: 15px 0;
}
.account-main .account-frame aside .aside-box ul {
  padding-left: 10px;
  list-style: none;
  margin: 0;
}
.account-main .account-frame aside .aside-box ul li.active, .account-main .account-frame aside .aside-box ul li:hover {
  position: relative;
}
.account-main .account-frame aside .aside-box ul li.active:before, .account-main .account-frame aside .aside-box ul li:hover:before {
  content: "";
  width: 4px;
  height: 100%;
  position: absolute;
  left: -35px;
  top: 0;
  background: #2e81fd;
  display: block;
}
.account-main .account-frame aside .aside-box ul li.active a, .account-main .account-frame aside .aside-box ul li:hover a {
  font-weight: bold;
}
.account-main .account-frame aside .aside-box ul li a {
  color: #616161;
  text-decoration: none;
  position: relative;
  padding: 17px 30px 17px 50px;
  display: block;
}
.account-main .account-frame aside .aside-box ul li a:before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 10px;
}
.account-main .account-frame aside .aside-box ul li a::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  top: 18px;
  background: url("../images/icon/account-arrow.svg") center center no-repeat;
  background-size: 24px 24px;
}
.account-main .account-frame aside .aside-box ul li a.icon1:before {
  background: url("../images/icon/account1.svg") center center no-repeat;
  background-size: 40px 40px;
}
.account-main .account-frame aside .aside-box ul li a.icon2:before {
  background: url("../images/icon/account2.svg") center center no-repeat;
  background-size: 40px 40px;
}
.account-main .account-frame aside .aside-box ul li a.icon3:before {
  background: url("../images/icon/account3.svg") center center no-repeat;
  background-size: 40px 40px;
}
.account-main .account-frame aside .aside-box ul li a.icon4:before {
  background: url("../images/icon/account4.svg") center center no-repeat;
  background-size: 40px 40px;
}
.account-main .account-frame aside .aside-box ul li a.icon5:before {
  background: url("../images/icon/account5.svg") center center no-repeat;
  background-size: 40px 40px;
}
.account-main .account-frame aside .aside-box ul li a.icon6:before {
  background: url("../images/icon/account6.svg") center center no-repeat;
  background-size: 40px 40px;
}
.account-main .account-frame aside .aside-box ul li a.icon7:before {
  background: url("../images/icon/account7.svg") center center no-repeat;
  background-size: 40px 40px;
}
.account-main .account-frame aside .aside-box ul li a.icon8:before {
  background: url("../images/icon/account8.svg") center center no-repeat;
  background-size: 40px 40px;
}
.account-main .account-frame article {
  width: calc(100% - 240px);
  padding-left: 65px;
}
@media (max-width: 768px) {
  .account-main .account-frame article {
    width: 100%;
    padding-left: 0;
  }
}
.account-main .account-frame article h1 {
  color: #404040;
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .account-main .account-frame article h1 {
    font-size: 24px;
  }
}
.account-main .account-frame article h2 {
  color: #404040;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .account-main .account-frame article h2 {
    font-size: 18px;
  }
}

.create-btn {
  width: 240px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  color: #fff;
  font-size: 16px;
  border-radius: 32px;
  background: linear-gradient(180deg, #82b3fe 0%, #2e81fd 100%);
  text-decoration: none;
  font-weight: bold;
}
.create-btn:hover {
  color: #fff;
}
.create-btn:after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("../images/icon/target.svg") center center no-repeat;
  background-size: 24px 24px;
  margin-left: 8px;
}

.block-info {
  margin-bottom: 40px;
}

.table-grid {
  border-radius: 32px;
  box-shadow: 0 0 12px rgba(46, 129, 253, 0.2);
  background: #fff;
  padding: 24px;
}
.table-grid .table-responsive table {
  table-layout: fixed;
}
.table-grid table {
  width: 100%;
}
@media (max-width: 768px) {
  .table-grid table {
    display: block;
  }
}
.table-grid table thead {
  border-bottom: 1px #d5e6ff solid;
}
@media (max-width: 768px) {
  .table-grid table thead {
    display: none;
  }
}
.table-grid table thead tr th {
  padding: 8px 5px;
  font-weight: 700;
  color: #737373;
}
@media (max-width: 768px) {
  .table-grid table tbody {
    display: block;
    padding: 0 10px;
  }
}
.table-grid table tbody tr {
  border-bottom: 1px #d5e6ff solid;
}
@media (max-width: 768px) {
  .table-grid table tbody tr {
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
  }
}
.table-grid table tbody tr td {
  color: #737373;
  padding: 15px 5px;
  vertical-align: text-top;
}
@media (max-width: 768px) {
  .table-grid table tbody tr td {
    display: block;
    width: 50%;
    padding: 0;
    margin-bottom: 20px;
  }
  .table-grid table tbody tr td.td-block {
    width: 100%;
  }
}
.table-grid table tbody tr td a {
  color: #737373;
}
.table-grid table tbody tr td .td-name {
  display: none;
}
@media (max-width: 992px) {
  .table-grid table tbody tr td .td-name {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .table-grid table tbody tr td .td-name {
    display: block;
    color: #737373;
    font-weight: bold;
    padding-left: 15px;
    position: relative;
    margin-bottom: 10px;
  }
  .table-grid table tbody tr td .td-name::before {
    content: "";
    display: block;
    width: 4px;
    height: 12px;
    background: #ffcb2e;
    left: 0;
    top: 5px;
    position: absolute;
  }
}

.tabs-cont {
  padding: 0;
  list-style: none;
  margin-bottom: 40px;
  display: flex;
}
.tabs-cont li a {
  color: #a1a1a1;
  font-size: 18px;
  display: inline-block;
  font-weight: bold;
  padding: 10px;
  text-decoration: none;
}
.tabs-cont li a:hover {
  color: #404040;
}
.tabs-cont li.active {
  color: #fff;
  position: relative;
}
.tabs-cont li.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: linear-gradient(180deg, #82b3fe 0%, #2e81fd 100%);
  position: absolute;
  left: 0;
  bottom: 0px;
}
.tabs-cont li.active a {
  color: #404040;
  position: relative;
}

select.input {
  border-radius: 8px;
  padding: 0 40px 0 10px;
  border: 2px #d5e6ff solid;
  height: 40px;
  background: #fff;
  color: #a1a1a1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* 標準屬性 */
  background: url(../images/icon/select.svg) no-repeat center right 15px;
  background-size: 12px 6px;
}
@media (max-width: 992px) {
  select.input {
    width: 100%;
  }
}

.active-modal-content::-webkit-scrollbar {
  width: 6px;
  /* Sets scrollbar width */
}
.active-modal-content::-webkit-scrollbar-thumb {
  background-color: #82b3fe;
  /* Sets thumb color */
  border-radius: 6px;
  /* Rounds the corners of the thumb */
}
.active-modal-content::-webkit-scrollbar-track {
  background-color: #eaf2ff;
  /* Sets track color */
}

.reviewlist-table {
  width: 100%;
}
@media (max-width: 768px) {
  .reviewlist-table {
    display: block;
  }
}
@media (max-width: 768px) {
  .reviewlist-table tbody {
    display: block;
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .reviewlist-table tbody tr {
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
  }
}
@media (max-width: 768px) {
  .reviewlist-table tbody tr.t-thead {
    display: none;
  }
}
@media (max-width: 768px) {
  .reviewlist-table tbody tr td {
    display: block;
    width: 50%;
    padding: 0;
    margin-bottom: 20px;
  }
  .reviewlist-table tbody tr td.td-block {
    width: 100%;
  }
}
.reviewlist-table tbody tr td a {
  color: #737373;
}
.reviewlist-table tbody tr td .td-name {
  display: none;
}
@media (max-width: 992px) {
  .reviewlist-table tbody tr td .td-name {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .reviewlist-table tbody tr td .td-name {
    display: block;
    color: #737373;
    font-weight: bold;
    padding-left: 15px;
    position: relative;
    margin-bottom: 10px;
  }
  .reviewlist-table tbody tr td .td-name::before {
    content: "";
    display: block;
    width: 4px;
    height: 12px;
    background: #ffcb2e;
    left: 0;
    top: 5px;
    position: absolute;
  }
}

.button-group {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.button-group > * {
  float: none !important;
  margin: 10px 0;
}
@media (max-width: 768px) {
  .button-group {
    display: block;
  }
}/*# sourceMappingURL=member.css.map */