@charset "UTF-8";
[data-requirement] {
  transition: all 0.3s;
  color: #666;
}

/* 未完成狀態：顯示空心圓圈 */
[data-requirement].pending {
  color: #999;
}

[data-requirement].pending::before {
  content: "○ ";
  color: #999;
  font-weight: normal;
}

/* 完成狀態：顯示綠色打勾 */
[data-requirement].valid {
  color: #4CAF50;
}

[data-requirement].valid::before {
  content: "✓ ";
  color: #4CAF50;
  font-weight: bold;
}

/************************* reset *************************/
*, :after, :before {
  box-sizing: border-box;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, var,
b, i, a, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  vertical-align: top;
  font-family: Arial, "Microsoft JhengHei", "PingFang TC", "STHeiti TC", sans-serif;
  line-height: 30px;
  font-size: 16px;
}

::-webkit-scrollbar {
  display: none;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  text-rendering: optimizeLegibility;
}

ul, ol {
  margin-left: 1.25em;
  white-space: normal;
  word-break: break-all;
  word-wrap: break-word;
}

article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  color: #000;
  vertical-align: baseline;
  background: transparent;
}

img, object, embed, video {
  max-width: 100%;
  height: auto;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  float: none;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  background: #ccc;
  border: 0;
  display: block;
}

button, input, select, textarea {
  -webkit-appearance: none;
  width: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  font-size: 16px;
  font-family: Arial, "Microsoft JhengHei", "PingFang TC", "STHeiti TC", sans-serif;
  color: #000;
  background: #fff;
  overflow: visible;
}

button, a {
  cursor: pointer;
}

input[type=checkbox], input[type=radio] {
  display: none;
}

input[type=checkbox] + label i, input[type=radio] + label i {
  display: inline-block;
  border: 1px solid #e8e9ea;
  border-radius: 5px;
  width: 25px;
  height: 25px;
  margin-right: 0.5em;
  background: url(../images/account/check_radio_sheet.png);
  background-size: 100px;
  cursor: pointer;
}

input[type=checkbox]:checked + label i {
  background: url(../images/account/check_radio_sheet.png) -25px 0 no-repeat;
  background-size: 100px;
}

input[type=radio] + label i {
  border-radius: 20px;
  background: url(../images/account/check_radio_sheet.png) -50px 0 no-repeat;
  background-size: 100px;
}

input[type=radio]:checked + label i {
  background: url(../images/account/check_radio_sheet.png) -75px 0 no-repeat;
  background-size: 100px;
}

textarea {
  overflow: auto;
  vertical-align: text-top;
}

select {
  background: url(../../images/account/arrow_d.png) #fff center right 10px no-repeat;
  background-size: 25px;
}

/************************* base *************************/
a {
  text-decoration: none;
}

button:hover {
  opacity: 0.9;
}

.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}

body {
  position: relative;
  color: #000;
}

/************************* wrapper *************************/
.wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  font-weight: bold;
}

.ul_flex {
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
}

.ul_flex li {
  list-style: none;
  width: 100%;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 20px;
  align-items: center;
  z-index: 99;
}

header i {
  width: 50px;
  height: 50px;
  margin-right: 20px;
  display: inline-block;
}

header h1 {
  cursor: pointer;
}

.header-dropdown {
  width: 200px;
  position: fixed;
  right: 180px;
}

.b_time {
  padding: 2px 25px 2px 55px;
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
}

main {
  position: relative;
  width: 100%;
  /* min-width: 980px; */
  margin: 0 auto;
}

.o-form-group {
  width: 100%;
}

.o-form-control__error {
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translate(0, -50%);
  margin-top: 2px;
  color: #E00;
}

.login_box {
  position: relative;
  width: 100%;
}

.login_box input, .login_box button {
  width: 100%;
  padding: 10px;
  font-weight: bold;
}

.login_box i img {
  width: 100px;
  height: 100px;
  background: 100%;
}

.login_box h1, .register_box h1 {
  text-align: center;
  font-size: 24px;
  color: #3f4ce8;
}

.login_box form {
  width: 100%;
  justify-content: space-between;
}

.login_box form h3, .login_box form p {
  width: 100%;
}

/* .login_box form * {
  margin: 5px 0;
} */
.register_box {
  position: relative;
  width: 100%;
  overflow: auto;
  padding: 30px 50px;
}

.register_box input {
  width: 100%;
  padding: 10px;
  font-weight: bold;
  padding-left: 40px;
}

.register_box h1 {
  padding-bottom: 10px;
}

.register_box .inbox {
  background: url(../../images/account/email.png) 8px 10px no-repeat;
}

.register_box .passwd {
  background: url(../../images/account/password.png) 10px 6px no-repeat;
}

.register_box .people {
  background: url(../../images/account/user.png) 9px 5px no-repeat;
}

.register_box .phone {
  background: url(../../images/account/phone.png) 9px 8px no-repeat;
}

.register_box .file {
  background: url(../../images/account/file.png) 12px 8px no-repeat;
}

hr {
  width: 100%;
  margin: 20px 0 10px !important;
}

footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-weight: bold;
  border-bottom: 10px solid #3f4ce8;
  display: inline-block;
  z-index: 1;
}

.copyright {
  font-size: 13px;
}

.account_page header {
  background: #fff;
  border-bottom: 3px solid #3f4ce8;
}
.account_page header h1 {
  font-size: 24px;
  color: #3f4ce8;
}
.account_page .main_box {
  width: 640px;
  margin: 0 auto;
  padding: 75px 20px 50px;
  position: relative;
}
.account_page .main_box .img_box {
  width: 100%;
}
.account_page .main_box .img_box img {
  position: absolute;
  width: 130px;
  height: auto;
  aspect-ratio: 1/1; /* 固定成正方形 */
  -o-object-fit: contain;
     object-fit: contain;
  top: 20px;
  left: 40%;
}
.account_page .login_box, .account_page .register_box, .account_page .qa_form {
  margin-bottom: 20px;
  padding: 60px 50px 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 4px 4px 12px 4px rgba(51, 51, 102, 0.5);
}
.account_page .login_box i {
  position: absolute;
  top: -50px;
  left: calc(50% - 50px);
}
.account_page .login_box h1 {
  color: #e0744e;
}
.account_page input, .account_page textarea {
  border: 2px solid #c0c0c0;
  border-radius: 20px;
}
.account_page .user {
  padding-left: 40px;
  background: url(../../images/account/user@2x.png) left 10px center no-repeat;
  background-size: auto 25px;
}
.account_page .passw {
  padding-left: 40px;
  background: url(../../images/account/password@2x.png) left 13px center no-repeat;
  background-size: auto 20px;
}
.account_page button {
  background: #3f4ce8;
  color: #fff;
  border-radius: 20px;
}
.account_page .half {
  width: calc(50% - 10px);
}
.account_page .news_box li {
  margin: 10px 0;
}
.account_page .news_box li a {
  background: #fff;
  border-radius: 20px;
  box-shadow: 4px 4px 12px 4px rgba(51, 51, 102, 0.5);
}
.account_page .i_more {
  padding-bottom: 10px;
  justify-content: center;
  background: url(../../images/account/more@2x.png) bottom center no-repeat;
  background-size: auto 15px;
}
.account_page .news_ul li {
  background: #fff;
  border-radius: 15px;
  padding: 10px;
  margin-bottom: 10px;
  box-shadow: 4px 4px 12px 4px rgba(51, 51, 102, 0.5);
}
.account_page .news_ul h5 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #3f4ce8;
}
.account_page .news_ul a {
  background: url(../../images/account/download@2x.png) left no-repeat;
  background-size: 20px auto;
  padding: 0 0 0 25px;
}
.account_page .qa_form {
  margin: 100px auto;
  position: relative;
  width: 640px;
  overflow: auto;
  padding: 30px 50px;
}
.account_page .qa_form input, .account_page .qa_form textarea {
  width: 100%;
  padding: 10px;
  font-weight: bold;
  padding-left: 40px;
}
.account_page .qa_form h1 {
  padding-bottom: 10px;
}
.account_page .qa_ul li {
  background: #fff;
  border-radius: 15px;
  padding: 10px;
  margin-bottom: 10px;
  box-shadow: 4px 4px 12px 4px rgba(51, 51, 102, 0.5);
}
.account_page .qa_ul h5 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #3f4ce8;
}
.account_page .qa_ul a {
  background: url(../../images/account/download@2x.png) left no-repeat;
  background-size: 20px auto;
  padding: 0 0 0 25px;
}

/************************* slick *************************/
@media (max-width: 768px) {
  .register_page .main_box {
    width: 390px;
  }
}
.o-loading {
  position: absolute;
  pointer-events: none;
  z-index: 99999;
  font-weight: bold;
}

.o-loading--center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.o-loading--left {
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.o-loading--right {
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.o-loading__parent {
  position: relative;
  overflow: hidden !important;
}

.o-loading__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.75);
  z-index: 99999;
}

.o-loading__spinner {
  display: flex;
  align-items: center;
  border-radius: 50px;
  background-color: rgba(234, 242, 242, 0.8);
  padding: 0.5rem;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1), 0 0 1px rgba(0, 0, 0, 0.2);
  height: 3rem;
}

.o-loading__spinner .spinner-border {
  flex-shrink: 0;
}

.o-loading__text {
  flex-shrink: 0;
}/*# sourceMappingURL=account-style.css.map */