@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
body {
  background-color: #eee;
  font-family: "Roboto", sans-serif;
}
body.bgWH {
  background-color: white;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.9;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

/*NAV*/
.navBar {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #f8d80e;
  z-index: 99;
}
.navBar.op {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}
.navBar .inner {
  width: 100%;
  height: 56px;
  max-width: 1920px;
  margin: auto;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.navBar .inner .logo img {
  width: auto;
  height: 40px;
}
.navBar .inner .navBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navBar .inner .navBtn .fwh {
  color: #000;
}
.navBar .inner .navBtn .mr8 {
  width: 24px;
  height: 24px;
}
.navBar .inner .checkBtn {
  font-size: 1rem;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  color: #484848;
}
.navBar ~ .content {
  padding-top: 88px;
}

/*footer*/
footer {
  background-color: #B9B9B9;
  padding: 2em 1em;
  text-align: center;
}
footer .menu {
  margin-bottom: 1em;
}
footer .menu a {
  font-size: 0.875rem;
  letter-spacing: 1px;
  color: white;
  display: inline-block;
  padding: 4px 1em;
  text-decoration: none;
  border-right: 1px solid #7b73ab;
}
footer .menu a:last-child {
  border-right: none;
}
footer .copyright {
  font-size: 0.8125rem;
  color: #7b73ab;
}

/*使用者*/
.userBase {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1em;
}
.userBase .cover {
  width: 88px;
  height: 88px;
  position: relative;
  margin-bottom: 1.75em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.userBase .cover img {
  border-radius: 20em;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.userBase .cover .userPoint {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  background-color: white;
  border: 2px solid #eee;
  padding: 4px 12px;
  border-radius: 1em;
  font-size: 1.25rem;
  margin-bottom: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: -1em;
}
.userBase .userName {
  font-size: 1rem;
  color: #000;
  margin-bottom: 8px;
}
.userBase .userJoin {
  color: #888888;
}
.userBase .switchBase {
  width: 100%;
  max-width: 686px;
  margin: auto;
  margin-top: 1em;
  padding: 0 1em;
  text-align: center;
}
.userBase .switchBase .inner {
  background-color: white;
  width: 100%;
  padding: 1em;
  border-radius: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.userBase .switchBase .inner .fwh {
  color: #000;
}
.userBase .switchBase span {
  margin-right: 8px;
}
.userBase .hit {
  font-size: 0.9375rem;
  line-height: 1.5em;
  margin-top: 8px;
  color: #ff4b4b;
  display: block;
  width: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.userBase .permitSwitch {
  display: none;
}
.userBase .permitSwitch + .permitBtn {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 28px;
  background-color: #eee;
  border-radius: 30em;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.userBase .permitSwitch + .permitBtn::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #B9B9B9;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 4px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  z-index: 1;
}
.userBase .permitSwitch + .permitBtn::after {
  content: attr(data-deny);
  color: #B9B9B9;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 12px;
  font-weight: 300;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.userBase .permitSwitch + .permitBtn ~ .hit {
  visibility: visible;
  opacity: 1;
}
.userBase .permitSwitch:checked + .permitBtn {
  background-color: #34c759;
}
.userBase .permitSwitch:checked + .permitBtn::before {
  background-color: white;
  right: 36px;
}
.userBase .permitSwitch:checked + .permitBtn::after {
  content: attr(data-permit);
  color: white;
  left: 27px;
}
.userBase .permitSwitch:checked + .permitBtn + .hit {
  display: none;
}

/*後台*/
.settingsBase {
  max-width: 686px;
  margin: auto;
  padding: 1em;
  line-height: 1.5em;
  /*銀行匯款提領*/
}
.settingsBase .settingItem {
  background-color: white;
  border-radius: 1em;
  padding: 2em;
  color: #000;
  margin-bottom: 1em;
  /*提領*/
}
.settingsBase .settingItem .title {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #ededed;
}
.settingsBase .settingItem .title h2 {
  text-align: center;
  font-size: 1rem;
}
.settingsBase .settingItem .promoteBase {
  border: 1px solid #eee;
  border-radius: 1em;
  overflow: hidden;
  margin-bottom: 1em;
}
.settingsBase .settingItem .promoteBase h3 {
  width: 100%;
  text-align: center;
  padding: 1em;
  background-color: #000;
  color: white;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.settingsBase .settingItem .promoteBase h3 .ic_about {
  width: 20px;
  height: 20px;
  background: url(https://d329550v33ld1x.cloudfront.net/apps/web/Cherry/ic_about_wh_20.svg) center no-repeat;
  background-size: cover;
  display: block;
  margin-left: 4px;
}
.settingsBase .settingItem .promoteBase .promoteInfo {
  padding: 2em 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.settingsBase .settingItem .promoteBase .promoteInfo p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: #34c759;
  margin-bottom: 1rem;
}
.settingsBase .settingItem .promoteBase .promoteInfo p span {
  font-size: 0.875rem;
  color: #B9B9B9;
  margin-top: 8px;
}
.settingsBase .settingItem .promoteBase .promoteInfo .exchangebtn {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #000;
  padding: 12px 2em;
  margin: 0 1em;
  background-color: #F8D80E;
  border-radius: 10em;
  border: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.settingsBase .settingItem .promoteBottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1em 0 0;
  border-top: 1px solid #eeeeee;
  margin-top: 1em;
}
.settingsBase .settingItem .promoteBottom a {
  padding: 8px 12px;
  border-radius: 10em;
  width: 100%;
  margin: 0 4px;
  text-align: center;
}
.settingsBase .settingItem .promoteBottom .link {
  color: #000;
  border: 1px solid;
}
.settingsBase .settingItem .promoteBottom .buBtn {
  color: white;
  background-color: #7482fd;
  border: none;
}
.settingsBase .settingItem .listBase {
  padding: 0;
}
.settingsBase .settingItem .listBase li {
  list-style: none;
}
.settingsBase .settingItem .listBase .emptyBase {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 200px;
  background-color: #f4f4f4;
}
.settingsBase .settingItem .listBase .emptyBase span {
  font-size: 1rem;
  color: #888888;
  margin: auto;
}
.settingsBase .settingItem .listBase .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1em 0;
  border-bottom: 1px solid #eeeeee;
}
.settingsBase .settingItem .listBase .row .done {
  color: #34c759;
}
.settingsBase .settingItem .listBase .row .fail {
  color: #ff4b4b;
}
.settingsBase .settingItem .listBase .row .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.settingsBase .settingItem .listBase .row .right {
  text-align: right;
}
.settingsBase .settingItem .listBase .row .right p {
  font-size: 1rem;
}
.settingsBase .settingItem .formBase .item {
  margin-bottom: 1.5em;
}
.settingsBase .settingItem .formBase .item .it {
  font-size: 0.9375rem;
  margin-bottom: 8px;
}
.settingsBase .settingItem .formBase .item .rd {
  font-size: 0.75rem;
  color: #ff4b4b;
  margin-top: 4px;
}
.settingsBase .settingItem .formBase .item .inputText {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  color: #B9B9B9;
  background-color: white;
  border: 1px solid #b9b9b9;
  border-radius: 12px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin-bottom: 4px;
}
.settingsBase .settingItem .formBase .item .inputText::-webkit-input-placeholder {
  color: #b9b9b9;
}
.settingsBase .settingItem .formBase .item .inputText::-moz-placeholder {
  color: #b9b9b9;
}
.settingsBase .settingItem .formBase .item .inputText:-ms-input-placeholder {
  color: #b9b9b9;
}
.settingsBase .settingItem .formBase .item .inputText::-ms-input-placeholder {
  color: #b9b9b9;
}
.settingsBase .settingItem .formBase .item .inputText::placeholder {
  color: #b9b9b9;
}
.settingsBase .settingItem .formBase .item .inputText:focus {
  border: 1px solid #B9B9B9;
}
.settingsBase .settingItem .formBase .item .radio input {
  display: none;
}
.settingsBase .settingItem .formBase .item .radio .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1em;
  padding: 0 1em;
  min-height: 72px;
  background: linear-gradient(135deg, rgb(252, 216, 94) 0%, rgb(241, 157, 212) 100%);
  border: 2px solid white;
  position: relative;
  margin-bottom: 1rem;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.settingsBase .settingItem .formBase .item .radio .label .float {
  position: absolute;
  padding: 2px 1em;
  letter-spacing: 1px;
  top: -16px;
  background-color: #000;
  border-radius: 12px;
  color: white;
}
.settingsBase .settingItem .formBase .item .radio .label .float.rf {
  right: 8px;
}
.settingsBase .settingItem .formBase .item .radio .label .box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  line-height: 1.25em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.25rem;
}
.settingsBase .settingItem .formBase .item .radio .label .box.left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  font-weight: bold;
}
.settingsBase .settingItem .formBase .item .radio .label .box.right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.settingsBase .settingItem .formBase .item .radio .label .box.right .sub {
  display: block;
  line-height: 100%;
  color: #ff4b4b;
}
.settingsBase .settingItem .formBase .item .radio .label .box i {
  margin: 0 4px 0 0;
}
.settingsBase .settingItem .formBase .item .radio .label .box .sub {
  font-size: 0.8125rem;
}
.settingsBase .settingItem .formBase .item .radio input:checked ~ .label {
  border: 2px solid #eee;
}
.settingsBase .settingItem .formBase .item .checkbox {
  width: 1.8em;
  height: 1.8em;
}
.settingsBase .settingItem .formBase .item .checkbox ~ label {
  font-size: 0.9375rem;
}
.settingsBase .settingItem .formBase .item .coupon {
  padding: 8px;
  background-color: #fff0ee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-bottom: 1px dotted #fff;
}
.settingsBase .settingItem .formBase .item .coupon:last-child {
  border-bottom: none;
}
.settingsBase .settingItem .formBase .item .coupon .couponImg {
  width: 42px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 8px;
}
.settingsBase .settingItem .formBase .item .coupon .right h2 {
  font-size: 14px;
}
.settingsBase .settingItem .formBase .item .coupon .right h3 {
  font-size: 12px;
  font-weight: 400;
  color: #888888;
}
.settingsBase .settingItem .formBase .item .coupon .right .dayline {
  font-size: 12px;
  color: #ec6c5e;
}
.settingsBase .settingItem .formBase .item .coupon .btnBase {
  position: absolute;
  right: 8px;
}
.settingsBase .settingItem .formBase .item .coupon .btnBase .btn {
  background-color: #7482fd;
  border: 1px solid #7482fd;
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 13px;
  padding: 4px 12px;
}
.settingsBase .settingItem .formBase .item .coupon .btnBase .btn.active {
  color: #888888;
  border: 1px solid #888888;
  background-color: transparent;
}
.settingsBase .settingItem .formBase .preview {
  padding: 1em;
  background-color: #eeeeee;
  font-size: 0.875rem;
  font-weight: bold;
  color: #484848;
  text-align: center;
  margin-bottom: 1em;
}
.settingsBase .settingItem .formBase .preview img {
  width: 100%;
  height: auto;
  margin-top: 1em;
}
.settingsBase .settingItem .formBase .notice {
  margin: 2em 0;
  font-size: 0.9375rem;
}
.settingsBase .settingItem .formBase .notice p {
  margin-bottom: 8px;
}
.settingsBase .settingItem .formBase .notice .noticeItem {
  padding: 0 1em;
}
.settingsBase .settingItem .formBase .notice .noticeItem li {
  margin-bottom: 8px;
}
.settingsBase .settingItem .formBase .bottomBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 2em;
  text-align: center;
}
.settingsBase .settingItem .formBase .bottomBtn .buBtn {
  color: #000;
  padding: 12px 2em;
  background-color: #F8D80E;
  border-radius: 10em;
  border: none;
  width: 100%;
}
.settingsBase .settingItem .state {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  margin-bottom: 1em;
}
.settingsBase .settingItem .state.done span {
  color: #34c759;
  background-color: #d5eedd;
  border: 1px solid #34c759;
}
.settingsBase .settingItem .state.message {
  border: 1px solid;
}
.settingsBase .settingItem .state.message span {
  background-color: transparent;
  border: none;
  color: #B9B9B9;
  padding: 1em;
  line-height: 1.5em;
}
.settingsBase .settingItem .state span {
  background-color: #ff8173;
  border: 1px solid #ec6c5e;
  color: #ffe1de;
  padding: 8px 2em;
  border-radius: 10em;
}
.settingsBase .settingItem table.orderList {
  width: 100%;
  border: 1px solid #b9b9b9;
  font-size: 0.9375rem;
}
.settingsBase .settingItem table.orderList tr:nth-child(odd) {
  background-color: #f4f4f4;
}
.settingsBase .settingItem table.orderList tr.bgbk {
  color: #fff;
  background-color: #B9B9B9;
}
.settingsBase .settingItem table.orderList th {
  padding: 15px;
  width: 50%;
}
.settingsBase .settingItem table.orderList td {
  padding: 15px;
  text-align: left;
  width: 100%;
}
.settingsBase .settingsTab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.settingsBase .settingsTab .tabinput {
  display: none;
}
.settingsBase .settingsTab .tabinput:checked + .tabmenu {
  color: #000;
  font-weight: bold;
  -webkit-box-shadow: 0 2px 0 #000;
          box-shadow: 0 2px 0 #000;
}
.settingsBase .settingsTab .tabinput:checked + .tabmenu + .settingItem {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: initial;
  width: 100%;
}
.settingsBase .settingsTab .tabmenu {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.125rem;
  text-align: center;
  padding: 1em 8px;
  cursor: pointer;
  color: #B9B9B9;
  margin-bottom: 1em;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.settingsBase .settingsTab .tabmenu:hover {
  color: #000;
}
.settingsBase .settingsTab .settingItem {
  display: none;
}

/*QA*/
.QAbase {
  max-width: 686px;
  margin: auto;
  padding: 1em;
  line-height: 1.5em;
}
.QAbase .QAlist {
  background-color: white;
  border-radius: 1em;
  font-size: 1.125rem;
  margin-bottom: 8px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  line-height: 1.25em;
  color: #000;
}
.QAbase .QAlist:hover {
  background-color: #000;
  color: white;
}
.QAbase .QAlist:focus {
  background-color: #fff0ee;
}
.QAbase .QAlist .QAradio {
  display: none;
}
.QAbase .QAlist .QAradio:checked + .question ~ .answer {
  display: block;
}
.QAbase .QAlist .question {
  font-size: 1.125rem;
  display: block;
  padding: 1em 1em 1em 38px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
}
.QAbase .QAlist .question::before {
  content: attr(data-num);
  position: absolute;
  left: 1em;
}
.QAbase .QAlist .answer {
  padding: 1em;
  border-top: 1px solid #eee;
  display: none;
}
.QAbase .QAlist .answer .textLink {
  display: block;
  width: 100%;
  font-weight: 400;
}
.QAbase .QAlist .answer ul {
  margin-bottom: 16px;
  padding: 0;
}
.QAbase .QAlist .answer ul:last-child {
  margin-bottom: 0;
}
.QAbase .QAlist .answer ul li {
  list-style: none;
  line-height: 1.5em;
  margin-bottom: 4px;
}
.QAbase .QAlist .answer ul li:last-child {
  margin-bottom: 0;
}

/*政策*/
.policy {
  max-width: 686px;
  margin: auto;
  color: #000;
  padding: 1em 2em;
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 1.25em;
}
.policy h1 {
  margin-bottom: 1em;
}
.policy .intro,
.policy .intro_inside {
  margin-bottom: 1em;
}
.policy .rome li {
  margin-bottom: 1em;
}
.policy .rome li .circle {
  margin-top: 1em;
}
/*任務*/
.missionBase {
  max-width: 686px;
  margin: auto;
  padding: 1rem;
  line-height: 1.5em;
}
.missionBase .missionList {
  padding: 0;
  margin-bottom: 2rem;
}
.missionBase .missionList .title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #000;
}
.missionBase .missionList li {
  list-style: none;
  padding: 1em 85px 1em 1em;
  position: relative;
  border-radius: 12px;
  background-color: white;
  margin-bottom: 1rem;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.missionBase .missionList li .key {
  font-weight: bold;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  margin-bottom: 4px;
}
.missionBase .missionList li .key span {
  background-color: #484848;
  padding: 2px 10px;
  border-radius: 10rem;
}
.missionBase .missionList li .key img {
  width: 24px;
  margin-right: 8px;
}
.missionBase .missionList li .key + .info {
  margin-top: 8px;
}
.missionBase .missionList li .info {
  font-size: 1.0625rem;
}
.missionBase .missionList li .mission-btn {
  position: absolute;
  margin: auto;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 8px 12px;
  background-color: #7482fd;
  border-radius: 8px;
  color: white;
  min-width: 64px;
  text-align: center;
  cursor: pointer;
}
.missionBase .missionList li .mission-btn.undone {
  background-color: #ec6c5e;
}
.missionBase .missionList li .mission-btn.done {
  color: #b9b9b9;
  background-color: #888888;
}

/*友好度*/
.favorabilityBase {
  max-width: 686px;
  margin: auto;
  padding: 2.5rem 1rem 1rem;
  line-height: 1.5em;
  text-align: center;
  color: #000;
}
.favorabilityBase img {
  width: 100%;
  height: auto;
}
.favorabilityBase .infoBase.one {
  margin-bottom: 1rem;
}
.favorabilityBase .infoBase.one h1 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.favorabilityBase .infoBase.one h2 {
  font-size: 1rem;
  font-weight: 400;
}
.favorabilityBase .infoBase.one .inner {
  padding: 1.5rem 1rem;
  background-color: #FFF8F7;
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.favorabilityBase .infoBase.one .inner .pic1 {
  max-width: 50%;
}
.favorabilityBase .infoBase.one .inner .icHeart {
  max-width: 42px;
}
.favorabilityBase .infoBase.one .inner span {
  font-size: 1.25rem;
  color: #484848;
  margin: 8px 0 1rem;
}
.favorabilityBase .infoBase.one .inner span:last-child {
  margin-bottom: 0;
}
.favorabilityBase .infoBase.two {
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 1.5rem;
}
.favorabilityBase .infoBase.two h2 {
  font-size: 1.25rem;
}
.favorabilityBase .infoBase.two h3 {
  font-size: 1rem;
  font-weight: 400;
  margin: 1.5rem;
}
.favorabilityBase .infoBase.two .pic2 {
  max-width: 75%;
}

/*彈跳視窗*/
body.modal-open {
  position: fixed; /* 固定位置防止滾動 */
  width: 100%;
  overflow: hidden; /* 禁用滾動 */
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: opacity 150ms;
  transition: opacity 150ms;
  z-index: 101;
  visibility: hidden;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2em;
}
.overlay:target {
  opacity: 1;
  visibility: visible;
}
.overlay.target {
  opacity: 1;
  visibility: visible;
}
.overlay .popup {
  width: 100%;
  max-width: 84vw;
  background-color: white;
  border-radius: 1em;
  padding: 1em;
  overflow: hidden;
}
.overlay .popup .popupTitle {
  padding: 0 0 1em;
  border-bottom: 1px solid #eeeeee;
  position: relative;
  margin-bottom: 1em;
}
.overlay .popup .popupTitle h2 {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}
.overlay .popup .popupTitle .closeBtn {
  display: block;
  width: 20px;
  height: 20px;
  background: url(https://d329550v33ld1x.cloudfront.net/apps/web/Cherry/ic_close_bk.svg) center/contain no-repeat;
  position: absolute;
  top: 0;
  right: 1em;
  border: none;
}
.overlay .popup .popupInfo {
  font-size: 1rem;
  text-align: center;
  line-height: 1.5em;
  margin-bottom: 1em;
  padding: 0 8px;
  max-height: 70vh;
  overflow-y: auto; /* 啟用垂直滾動 */
  -webkit-overflow-scrolling: touch; /* 啟用平滑滾動效果 */
}
.overlay .popup .popupInfo ul {
  padding: 0 1em;
  margin-top: 1em;
  text-align: left;
}
.overlay .popup .popupInfo ul li {
  padding: 4px;
}
.overlay .popup .popupInfo .cover {
  width: 80px;
  height: 80px;
  border-radius: 50rem;
  overflow: hidden;
  margin: 0 auto 1rem;
}
.overlay .popup .popupInfo .cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.overlay .popup .popupInfo.record {
  padding: 0;
  height: 70vh;
}
.overlay .popup .popupInfo.record ul {
  padding: 0;
  margin: 0;
}
.overlay .popup .popupInfo.record ul li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.0625rem;
  padding: 8px 12px;
  background-color: #fbfbfb;
  border-radius: 8px;
  margin-bottom: 8px;
}
.overlay .popup .popupInfo.record ul li .state {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.overlay .popup .popupInfo.record ul li .state::before {
  content: "";
  width: 20px;
  height: 20px;
  -webkit-mask: url("https://d329550v33ld1x.cloudfront.net/apps/web/Cherry/ic_diamond_bk_24.svg") enter/contain no-repeat;
  mask: url("https://d329550v33ld1x.cloudfront.net/apps/web/Cherry/ic_diamond_bk_24.svg") center/contain no-repeat;
  margin-right: 4px;
}
.overlay .popup .popupInfo.record ul li .state .detail {
  width: 100%;
  font-size: 0.8125rem;
  margin-left: 4px;
}
.overlay .popup .popupInfo.record ul li .date {
  font-size: 0.875rem;
  color: #888888;
}
.overlay .popup .popupInfo.record ul li.pay {
  color: #EC6C5E;
}
.overlay .popup .popupInfo.record ul li.pay .state::before {
  background-color: #EC6C5E;
}
.overlay .popup .popupInfo.record ul li.get {
  color: #34C759;
}
.overlay .popup .popupInfo.record ul li.get .state::before {
  background-color: #34C759;
}
.overlay .popup input[type=file] {
  display: none;
}
.overlay .popup .uploadBank {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background-color: #f4f4f4;
}
.overlay .popup .uploadBank::before {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  background: url(https://d329550v33ld1x.cloudfront.net/apps/web/Cherry/ic_plus_opwh44.svg) center no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
}
.overlay .popup .uploadBank .uploadImg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.overlay .popup .loginBase {
  margin-bottom: 1em;
}
.overlay .popup .loginBase select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.overlay .popup .loginBase .inputList {
  width: 100%;
  border: 1px solid #b9b9b9;
  padding: 1em;
  border-radius: 1em;
  font-size: 1rem;
}
.overlay .popup .loginBase .input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #b9b9b9;
  padding: 0 1em;
  border-radius: 1em;
}
.overlay .popup .loginBase .input select {
  margin-right: 1em;
  border: none;
  background-color: transparent;
  color: #B9B9B9;
  font-size: 1rem;
}
.overlay .popup .loginBase .input .inputList {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
}
.overlay .popup .bottom {
  text-align: center;
  font-size: 1rem;
}
.overlay .popup .bottom .buBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #000;
  padding: 12px 2em;
  margin: 0 1em;
  background-color: #F8D80E;
  border-radius: 10em;
  border: none;
}
.overlay .popup .bottom .grBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #888888;
  padding: 12px 2em;
  margin: 0 1em;
  background-color: #d9d9d9;
  border-radius: 10em;
  border: none;
}
.overlay .popup .bottom .rdBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: white;
  padding: 12px 2em;
  margin: 0 1em;
  background-color: #ff4b4b;
  border-radius: 10em;
  border: none;
}
.overlay .popup .bottom .text {
  font-size: 0.875rem;
  margin-top: 1.25em;
  line-height: 1.25em;
}
.overlay .popup .bottom .text.tgr {
  color: #888888;
}
.overlay .popup .bottom .form {
  margin: 0 0 1.25em;
  padding: 1em 0;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.overlay .popup .bottom .form .paymode {
  font-size: 1rem;
  padding: 8px;
  border: none;
  background-color: #eeeeee;
  border-radius: 8px;
}

/*GuideLine*/
.ic_diamond_bk {
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  margin-left: 4px;
  background-image: url(https://d329550v33ld1x.cloudfront.net/apps/web/Cherry/ic_diamond_bk_24.svg);
}

/*扭蛋機*/
.gachaBase {
  max-width: 540px;
  height: 100vh;
  position: relative;
  background: url(https://d329550v33ld1x.cloudfront.net/apps/web/Cherry/pic_fisg_bg.svg) top center;
  background-size: contain;
  background-attachment: fixed;
  margin: auto;
}
.gachaBase .machineStatic {
  text-align: center;
  padding: 2em 0 1em;
}
.gachaBase .machineStatic img {
  width: 320px;
  height: auto;
}
.gachaBase .gachaPlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gachaBase .gachaPlay .gachaPlaybtn {
  min-width: 128px;
  background: #F8D80E;
  border: none;
  padding: 8px 1em;
  border-radius: 50em;
  margin: 0 0.5em;
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gachaBase .gachaPlay .gachaPlaybtn::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(https://d329550v33ld1x.cloudfront.net/apps/web/Cherry/gachaBall.svg) center no-repeat;
  background-size: cover;
  display: inline-block;
  margin-right: 4px;
}
.gachaBase .gachaPrizeList {
  max-width: 540px;
  background-color: white;
  margin: 1.5rem auto;
  border-radius: 1em;
  padding: 0;
}
.gachaBase .gachaPrizeList li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 1em 0;
  color: #484848;
  border-bottom: 1px solid #eee;
}
.gachaBase .gachaPrizeList li:nth-child(even) {
  background-color: #fbfbfb;
}
.gachaBase .gachaPrizeList li.top {
  color: #000;
  font-weight: bold;
}
.gachaBase .gachaPrizeList li span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  padding: 0 4px;
  line-height: 1.25em;
}
.gachaBase .gachaPrizeList li span.nickName {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gachaBase .gachaPrizeList li span.awards {
  color: #000;
  font-weight: bold;
}
.gachaBase .gachaPrizeList .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gachaBase .gachaPrizeList .bottom a {
  text-align: center;
  padding: 1em;
  width: 100%;
  background-color: #F8D80E;
  font-size: 1rem;
  border: none;
  color: #000;
  border-bottom-left-radius: 1em;
  border-bottom-right-radius: 1em;
}
.gachaBase .floatBtn {
  position: absolute;
  top: 1em;
  right: 1em;
  background: url(https://d329550v33ld1x.cloudfront.net/apps/web/Cherry/ic_about_wh32.svg) center no-repeat;
  background-size: cover;
  width: 32px;
  height: 32px;
  z-index: 10;
}
.gachaBase .changekeyBtn {
  position: absolute;
  top: 1em;
  left: 1.5em;
  background: url(https://d329550v33ld1x.cloudfront.net/apps/web/Cherry/ic_changeKeyBtn.svg) center no-repeat;
  background-size: cover;
  width: 40px;
  height: 40px;
  z-index: 10;
}

.gacha-Popup {
  position: relative;
}
.gacha-Popup.noSpacing {
  padding: 0;
  overflow: visible;
}
.gacha-Popup .gachaPay {
  text-align: center;
  margin-bottom: 1.5em;
}
.gacha-Popup .gachaPay .h2 {
  font-size: 1.125rem;
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gacha-Popup .gachaPay .h2 .price {
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 4px;
  color: #DAB32D;
}
.gacha-Popup .gachaPay .h2 .price::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(https://d329550v33ld1x.cloudfront.net/apps/web/Cherry/ic_diamond_circle.svg) center no-repeat;
  background-size: cover;
  display: inline-block;
  margin-right: 4px;
}
.gacha-Popup .gachaPay .h3 {
  font-size: 1.125rem;
}
.gacha-Popup .gachaPrize {
  text-align: center;
}
.gacha-Popup .gachaPrize .h2 {
  font-size: 1.125rem;
  margin-bottom: 1em;
}
.gacha-Popup .gachaPrize .prizeList {
  width: 100%;
  max-height: 70vh;
  overflow-y: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gacha-Popup .gachaPrize .prizeList .list {
  width: 33.33333%;
  padding: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4px;
}
.gacha-Popup .gachaPrize .prizeList .list .item {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 4px;
}
.gacha-Popup .gachaPrize .prizeList .list .text {
  font-size: 0.875rem;
  line-height: 1.25em;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.gacha-Popup .gachaPrizeList {
  background-color: transparent;
  border-radius: 1em;
  padding: 0;
  max-height: 70vh;
  overflow-y: scroll;
}
.gacha-Popup .gachaPrizeList li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 1em 0;
  color: #000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.gacha-Popup .gachaPrizeList li:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.1);
}
.gacha-Popup .gachaPrizeList li.top {
  color: #484848;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.gacha-Popup .gachaPrizeList li span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.gacha-Popup .gachaPrizeList li span.nickName {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gacha-Popup .gachaPrizeList li span.awards {
  color: #B9B9B9;
}
.gacha-Popup .gachaPrizeList li span.item {
  font-size: 0.875rem;
  line-height: 1.15em;
  padding: 0 8px;
}
.gacha-Popup .gachaPrizeList li span.probability {
  font-size: 1rem;
}
.gacha-Popup .changeKeylist .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1em 1em 8px;
  padding: 1em;
  border: 2px solid #ededed;
  border-radius: 1em;
  background-color: #f4f4f4;
}
.gacha-Popup .changeKeylist .top .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 8px;
}
.gacha-Popup .changeKeylist .top .inner img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}
.gacha-Popup .changeKeylist .top .inner span {
  font-size: 1.125rem;
  color: white;
  background-color: #484848;
  padding: 4px 16px;
  border-radius: 50em;
  margin-left: 8px;
}
.gacha-Popup .changeKeylist .top .inner:nth-child(2) span {
  background-color: #EC6C5E;
}
.gacha-Popup .changeKeylist .content {
  padding: 0 1em 1em;
}
.gacha-Popup .changeKeylist .content .list {
  background-color: #F8D80E;
  padding: 1em;
  border-radius: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 1em;
  border: 2px solid #F4D00F;
  -webkit-box-shadow: 0 4px 0 #F4D00F;
          box-shadow: 0 4px 0 #F4D00F;
}
.gacha-Popup .changeKeylist .content .list .key {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(109, 95, 16, 0.5);
  border-radius: 16px;
  position: relative;
  -webkit-box-shadow: 0px 0px 4px white;
          box-shadow: 0px 0px 4px white;
}
.gacha-Popup .changeKeylist .content .list .key.gr {
  background: url(https://d329550v33ld1x.cloudfront.net/apps/web/Cherry/ic_C_key_gr.svg) center no-repeat;
  background-size: cover;
}
.gacha-Popup .changeKeylist .content .list .key.og {
  background: url(https://d329550v33ld1x.cloudfront.net/apps/web/Cherry/ic_C_ikey_og.svg) center no-repeat;
  background-size: cover;
}
.gacha-Popup .changeKeylist .content .list .key.yw {
  background: url(https://d329550v33ld1x.cloudfront.net/apps/web/Cherry/ic_C_key_yw.svg) center no-repeat;
  background-size: cover;
}
.gacha-Popup .changeKeylist .content .list .key .amount {
  background: #fff;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 10em;
  -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
}
.gacha-Popup .changeKeylist .content .list .equal {
  margin: 0 1em;
}
.gacha-Popup .changeKeylist .btnBase {
  margin-left: 1em;
  text-align: center;
}
.gacha-Popup .changeKeylist .btnBase .btn {
  border: none;
  border-radius: 1em;
  background: linear-gradient(135deg, #73b5fb 0%, #7482fd 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  padding: 10px 1em;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 4px;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 4px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 0 rgba(0, 0, 0, 0.1);
}
.gacha-Popup .changeKeylist .btnBase .btn.active {
  color: #b9b9b9;
  background: #888888;
  -webkit-box-shadow: 0px 0px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 0 rgba(0, 0, 0, 0.1);
}
.gacha-Popup .controlBase {
  margin-top: 1em;
  text-align: center;
}
.gacha-Popup .controlBase button {
  margin: 0 auto 0.875em;
  display: block;
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 12px 1em;
  border-radius: 8px;
  font-size: 1rem;
}
.gacha-Popup .controlBase button:last-child {
  margin: 0;
}
.gacha-Popup .controlBase button.pink {
  color: #fff;
  background-color: #F8D80E;
  color: #000;
}
.gacha-Popup .controlBase button.gray {
  color: #888888;
  background-color: #ededed;
}
.gacha-Popup .floatBtn {
  position: absolute;
  top: -12px;
  right: -12px;
  background: url(https://d329550v33ld1x.cloudfront.net/apps/web/Cherry/ic_c_close_bk32.svg) center no-repeat;
  background-size: cover;
  width: 32px;
  height: 32px;
}

.disable-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 9999;
}

.mb4 {
  margin-bottom: 0.25rem;
}
.mb8 {
  margin-bottom: 0.5rem;
}
.mb16 {
  margin-bottom: 1rem;
}
.mb24 {
  margin-bottom: 1.5rem;
}
.mb32 {
  margin-bottom: 2rem;
}

.mr4 {
  margin-right: 0.25rem;
}
.mr8 {
  margin-right: 0.5rem;
}
.mr16 {
  margin-right: 1rem;
}
.mr24 {
  margin-right: 1.5rem;
}
.mr32 {
  margin-right: 2rem;
}

.fbb {
  font-weight: bold;
}
.f12 {
  font-size: 0.75rem;
}
.f14 {
  font-size: 0.875rem;
}
.f16 {
  font-size: 1rem;
}
.f18 {
  font-size: 1.125rem;
}
.f20 {
  font-size: 1.25rem;
}
.f24 {
  font-size: 1.5rem;
}
.f32 {
  font-size: 2rem;
}

.frd {
  color: #ff4b4b;
}
.fgr {
  color: #888888;
}
.fwh {
  color: white;
}
.fbu {
  color: #7482fd;
}
.fgn {
  color: #34c759;
}

.textLink {
  color: #7482fd;
  text-decoration: none;
  font-weight: bold;
}

.taC {
  text-align: center;
}
.taR {
  text-align: left;
}
.taR {
  text-align: right;
}

@media screen and (max-width: 768px) {
  .settingsBase {
    /*銀行匯款提領*/
  }
  .settingsBase .settingItem {
    padding: 1em;
    /*表單*/
  }
  .settingsBase .settingItem .formBase .item .radio .label {
    min-height: 64px;
  }
  .settingsBase .settingItem .formBase .item .radio .label .box {
    font-size: 1.125rem;
  }
  .settingsBase .settingItem .formBase .bottomBtn {
    padding-top: 0;
  }
  .settingsBase .settingsTab .tabmenu {
    padding: 0 8px 1em 8px;
  }
  /*友好度*/
  .favorabilityBase .infoBase.one .inner .pic1 {
    max-width: 216px;
  }
  .favorabilityBase .infoBase.two .pic2 {
    max-width: 100%;
  }
  /*QA*/
}