@import url("vendor/reset.css");
@import url("https://fonts.googleapis.com/css2?family=Inter&family=Montserrat:wght@300;500;600&family=Abhaya+Libre:wght@800&family=Noto+Sans+TC:wght@300;400;500;700;900&family=Potta+One&display=swap");
body, html {
  font-family: "Noto Sans TC", Arial;
  -webkit-tap-highlight-color: transparent;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
  background-color: #fff;
  -webkit-text-size-adjust: none;
  color: #686868;
}

a {
  transition: 0.5s ease;
  text-decoration: none;
}

button {
  transition: 0.5s ease;
}

textarea, select, input, button {
  outline: none;
}

:focus {
  outline-color: transparent;
  outline-style: none;
}

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

h3, p {
  text-align: justify;
  text-justify: inter-word;
}

.clear-fix {
  clear: both;
}

::-moz-placeholder {
  color: #B1B1B1;
}

::placeholder {
  color: #B1B1B1;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  box-shadow: none;
  border-radius: 10px;
  background: #E8E8E8;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #7A7A7A;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #1D1D1D;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  background-color: #fff;
  box-shadow: 0px 2px 5px 0px rgba(151, 151, 151, 0.4);
}
header .header-div {
  position: relative;
  padding: 0;
}
header .header-div .outer-div {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
header .header-div .outer-div .brand a {
  display: flex;
}
header .header-div .outer-div .brand a img {
  height: 20px;
}
header .header-div .outer-div .links .navi li {
  display: inline-block;
  position: relative;
}
header .header-div .outer-div .links .navi li a {
  font-weight: 400;
  font-size: 16px;
  color: #1D1D1D;
  padding: 25px 25px;
  display: inline-block;
  position: relative;
}
header .header-div .outer-div .links .navi li a:hover {
  color: #4DA1FF;
}
header .header-div .outer-div .links .navi li a i {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(./../images/icon_arrow_down_gray.svg);
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 5px;
}
header .header-div .outer-div .links .navi li a.had-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
header .header-div .outer-div .links .navi li:hover i {
  background-image: url(./../images/icon_arrow_down_blue.svg);
}
header .header-div .outer-div .links .navi li:hover .dropdown-menu {
  display: block;
}
header .header-div .outer-div .dropdown-menu {
  background: #FFF;
  box-shadow: 0px 3px 3px 3px rgba(151, 151, 151, 0.05);
  /*backdrop-filter: blur(15px);*/
  position: absolute;
  left: 0;
  top: 77.19px;
  display: none;
  min-width: 290px;
}
header .header-div .outer-div .dropdown-menu.menu-01 {
  min-width: 290px;
}
header .header-div .outer-div .dropdown-menu.menu-02 {
  min-width: 290px;
}
header .header-div .outer-div .dropdown-menu.menu-03 {
  min-width: 143px;
}
header .header-div .outer-div .dropdown-menu .box-div .item {
  border-bottom: 1px solid #F0F0F0;
}
header .header-div .outer-div .dropdown-menu .box-div .item a {
  display: block;
  color: #1D1D1D;
  font-size: 12px;
  line-height: 2;
  padding: 12px 25px;
}
header .header-div .outer-div .dropdown-menu .box-div .item a:hover {
  color: #4DA1FF;
}
header .header-div .outer-div .dropdown-menu .box-div .item a span {
  display: block;
}
header .header-div .outer-div .dropdown-menu .box-div .item a span:nth-child(1) {
  font-size: 14px;
}
header .header-div .outer-div .dropdown-menu .box-div .item a span:nth-child(2) {
  font-size: 10px;
}
header .header-div .outer-div .member {
  display: inline-flex;
  align-items: center;
}
header .header-div .outer-div .member button {
  background-color: transparent;
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  color: #1D1D1D;
  line-height: 26px;
  padding: 25px 0px;
  font-weight: 400;
}
header .header-div .outer-div .member button i {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
header .header-div .outer-div .member button.btn-help i {
  background-image: url(./../images/icon_arrow_down_gray.svg);
  margin-left: 5px;
}
header .header-div .outer-div .member button.btn-user {
  margin-left: 30px;
}
header .header-div .outer-div .member button.btn-user i {
  background-image: url(./../images/icon_regularuser_gray.svg);
  margin-right: 5px;
}
header .header-div .outer-div .member button.btn-user a {
  color: #1D1D1D;
}
header .header-div .outer-div .member button.btn-user a:hover {
  color: #4DA1FF;
}
header .header-div .outer-div .member button.btn-user:hover {
  color: #4DA1FF;
}
header .header-div .outer-div .member button:hover {
  color: #4DA1FF;
}
header .header-div .outer-div .member button:hover.btn-help i {
  background-image: url(./../images/icon_arrow_down_blue.svg);
}
header .header-div .outer-div .member button:hover.btn-user i {
  background-image: url(./../images/icon_regularuser_blue.svg);
}
header .header-div .outer-div .member button:hover a {
  color: #4DA1FF;
}
header .header-div .outer-div .member .dropdown-menu {
  display: none;
}
header .header-div .outer-div .member .help .dropdown-menu {
  left: auto;
  right: 0;
}
header .header-div .outer-div .member .help, header .header-div .outer-div .member .user {
  position: relative;
}
header .header-div .outer-div .member .help:hover .dropdown-menu, header .header-div .outer-div .member .user:hover .dropdown-menu {
  display: block;
}
header .header-div .outer-div .member .cart {
  position: relative;
}
header .header-div .outer-div .member .cart .btn-cart {
  margin-left: 30px;
  background-color: transparent;
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  color: #1D1D1D;
  line-height: 26px;
  padding: 25px 0px;
}
header .header-div .outer-div .member .cart .btn-cart a {
  color: #1D1D1D;
}
header .header-div .outer-div .member .cart .btn-cart a:hover {
  color: #4DA1FF;
}

main {
  margin-top: 77.19px;
  position: relative;
  z-index: 1;
}

@media all and (max-width: 1390px) {
  header .header-div .outer-div .member .cate .dropdown-menu {
    width: 220px;
  }
}
@media all and (max-width: 1280px) {
  header .header-div .outer-div .search .border {
    width: 260px;
  }
}
@media all and (max-width: 1200px) {
  header .header-div {
    padding: 15px 0;
  }
  header .header-div .outer-div .brand {
    width: 100%;
    text-align: center;
  }
  header .header-div .outer-div .brand a {
    justify-content: center;
  }
  header .header-div .outer-div .links .navi {
    display: none;
  }
  header .header-div .outer-div .member {
    display: none;
  }
  header .header-div .outer-div .search {
    /*margin-right: 35px;*/
    position: absolute;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    top: 70px;
    width: calc(100% - 40px);
    left: 0;
    padding: 15px 20px;
    display: none;
    border-top: 1px solid #96C83E;
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  header .header-div .outer-div .search .border {
    width: 100%;
    border-color: transparent;
    background-color: transparent;
  }
  header .header-div .outer-div .mobile-search {
    display: inline-flex;
  }
  main {
    /*margin-top: 70px;*/
    margin-top: 50px;
  }
  .body-search-active {
    overflow: hidden;
  }
  .body-search-active header .header-div .outer-div .search {
    display: inline-block;
  }
}
@media all and (max-width: 640px) {
  header .header-div {
    padding: 12.5px 0;
  }
  header .header-div .outer-div .brand a img {
    height: 25px;
  }
  header .header-div .outer-div .search {
    top: 65px;
  }
  header .header-div .outer-div .search .border {
    /*width: 45vw;*/
  }
  main {
    margin-top: 50px;
  }
}
footer {
  position: relative;
  z-index: 2;
}
footer .section-footer {
  background: #252B3B;
  padding: 50px 0;
}
footer .section-footer .block-outer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  font-size: 13px;
  color: #fff;
}
footer .section-footer .block-outer a {
  color: #fff;
}
footer .section-footer .block-outer a:hover {
  color: #4DA1FF;
}
footer .section-footer .block-outer .two-cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .section-footer .block-outer .two-cols .col01 {
  width: 246px;
  text-align: center;
}
footer .section-footer .block-outer .three-cols {
  display: flex;
  flex-wrap: wrap;
}
footer .section-footer .block-outer .three-cols .col01 {
  width: 295px;
}
footer .section-footer .block-outer .three-cols .col02 {
  width: calc(100% - 295px - 295px);
}
footer .section-footer .block-outer .three-cols .col03 {
  width: 295px;
}
footer .section-footer .block-outer .society {
  margin-top: 30px;
}
footer .section-footer .block-outer .society a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 5px 0;
}
footer .section-footer .block-outer .society a i {
  display: inline-flex;
  margin-right: 10px;
}
footer .section-footer .block-outer .society a span {
  display: inline-block;
  width: calc(100% - 28px);
}
footer .section-footer .block-outer .links {
  display: flex;
  flex-wrap: wrap;
  margin-right: 0px;
}
footer .section-footer .block-outer .links .item {
  width: 33.3333333333%;
}
footer .section-footer .block-outer .links .item h3 {
  margin-bottom: 30px;
  font-weight: 600;
}
footer .section-footer .block-outer .links .item a {
  display: block;
  padding: 5px 0;
}
footer .section-footer .block-outer .subscribe-title {
  margin-bottom: 25px;
}
footer .section-footer .block-outer .subscribe-title h3 {
  font-weight: 600;
}
footer .section-footer .block-outer .subscribe-form .box {
  background: #BBC8D4;
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
footer .section-footer .block-outer .subscribe-form .box input {
  padding: 0;
  font-size: 16px;
  width: calc(100% - 40px);
  border: none;
  color: #252B3B;
  background-color: transparent;
}
footer .section-footer .block-outer .subscribe-form .box input::-moz-placeholder {
  color: #6D7D8B;
  opacity: 1; /* Firefox */
}
footer .section-footer .block-outer .subscribe-form .box input::placeholder {
  color: #6D7D8B;
  opacity: 1; /* Firefox */
}
footer .section-footer .block-outer .subscribe-form .box input::-ms-input-placeholder { /* Edge 12-18 */
  color: #6D7D8B;
}
footer .section-footer .block-outer .subscribe-form .box button {
  background-image: url(./../images/icon_arrow_forward_purple.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  width: 40px;
  height: 30px;
}
footer .section-footer .block-outer .website-info .society .icons-desc {
  display: inline-block;
}
footer .section-footer .block-outer .website-info .society .icons {
  display: inline-flex;
  justify-content: flex-start;
}
footer .section-footer .block-outer .website-info .society a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  outline: 1px solid #fff;
  border-radius: 200px;
  margin: 0 8px;
  padding: 0;
}
footer .section-footer .block-outer .website-info .society a:hover {
  outline: 1px solid #4DA1FF;
}
footer .section-footer .block-outer .website-info .society .desc {
  margin: 15px 0 30px 0;
  font-size: 13px;
  text-align: left;
}
footer .section-footer .block-outer .website-links .links {
  display: inline-flex;
  flex-wrap: wrap;
}
footer .section-footer .block-outer .website-links .links .item {
  margin-left: 100px;
  display: inline-block;
  width: auto;
}
footer .section-footer .block-outer .website-links .links .item:nth-child(2) {
  margin-left: 50px;
}
footer .section-footer .block-outer .website-links .links .item h3 {
  font-size: 16px;
}
footer .section-footer .block-outer .website-links .links .item h3 a {
  font-size: 16px;
  color: #fff;
  padding: 0;
}
footer .section-footer .block-outer .website-links .links .item a {
  font-size: 14px;
  color: #868686;
}
footer .section-footer .block-outer .website-links .links .item a:hover {
  color: #4DA1FF;
}

.toggle-btn {
  display: none;
  position: fixed;
  top: 10px;
  left: 20px;
  width: 22px;
  height: 30px;
  z-index: 889;
  background: none;
  border: none;
  padding: 0;
}
.toggle-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #4DA1FF;
  margin: 5px 0;
  transition: 0.5s ease;
}
.toggle-btn span:last-child {
  /*width: 12px;*/
}

.body-mobile-active {
  overflow: hidden;
}
.body-mobile-active #mobile-nav {
  display: block;
}
.body-mobile-active .toggle-btn {
  /*display: none;*/
  left: 250px;
}
.body-mobile-active .toggle-btn span:nth-child(1) {
  transform: rotate(45deg);
  margin-bottom: -7px;
}
.body-mobile-active .toggle-btn span:nth-child(2) {
  transform: rotate(135deg);
}
.body-mobile-active .toggle-btn span:last-child {
  display: none;
}
.body-mobile-active .overlay {
  display: block;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  cursor: pointer;
}

.gotop {
  position: fixed;
  right: 0;
  top: 80vh;
  z-index: 3;
  overflow: hidden;
  width: 56px;
  height: 56px;
  border-radius: 100px;
}
.gotop:hover {
  opacity: 0.5;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
.gotop:active {
  opacity: 1;
}

.hide {
  display: none;
}

.body-popup-active {
  overflow: hidden;
}

.overlay {
  /*z-index: 128;*/
  z-index: 3;
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
}

.body-popup-active .overlay {
  display: block;
}

.body-popup-active main {
  filter: blur(15px);
}

.body-popup-active footer {
  filter: blur(15px);
}

.popup-div {
  display: none;
  width: 300px;
  background: #FFFFFF;
  border: 1px solid #4DA1FF;
  border-radius: 8px;
  position: fixed;
  z-index: 900;
  top: 100px;
  left: calc(50% - 166px);
  max-height: calc(100vh - 150px - 100px);
  overflow-y: auto;
  padding: 15px;
}
.popup-div.active {
  display: block;
}
.popup-div .popup-close {
  text-align: right;
}
.popup-div .popup-close .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background-image: url(../images/icon_close_gray.svg);
  background-color: transparent;
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  border: none;
  width: 16px;
  height: 16px;
  z-index: 10;
}
.popup-div .popup-title {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #1D1D1D;
  margin-top: 15px;
}
.popup-div .popup-info {
  font-size: 15px;
  color: #1D1D1D;
}
.popup-div .popup-action {
  text-align: center;
  margin-top: 15px;
}
.popup-div .popup-action button {
  min-width: 100%;
  margin: 5px 0;
  font-size: 18px;
}

.loading-div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 7;
  background-color: #fff;
}
.loading-div.active {
  display: flex;
}
.loading-div h3 {
  color: #96C83E;
  font-size: 20px;
  font-weight: 700;
  margin-top: 15px;
}

.loader {
  border: 10px solid #f3f3f3;
  border-radius: 50px;
  border-top: 10px solid #96C83E;
  border-radius: 100px;
  width: 50px;
  height: 50px; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.body-popup-active .popup-div.active {
  display: block;
}

#mobile-nav {
  border-left: 8px solid #4DA1FF;
  z-index: 130;
  display: none;
  position: fixed;
  left: 0;
  top: 0px;
  height: auto;
  height: calc(100vh - 30px);
  overflow-y: auto;
  padding-top: 0px;
  padding-bottom: 30px;
  overflow-y: auto;
  /*width: 217px;*/
  width: 277px;
  background-color: #fff;
  border-radius: 0px 10px 10px 0px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
#mobile-nav .dropdown-menu {
  display: none;
}
#mobile-nav .dropdown-menu .box-div .item {
  padding: 0 10px 0 20px;
}
#mobile-nav .dropdown-menu .box-div .item a {
  display: block;
  color: #B1B1B1;
  font-size: 12px;
  border-radius: 100px;
  padding: 3px 10px;
}
#mobile-nav .dropdown-menu .box-div .item a span:nth-child(2) {
  display: none;
}
#mobile-nav .dropdown-menu .box-div .item a:hover {
  color: #4DA1FF;
  background-color: #DBECFF;
}
#mobile-nav .member {
  padding: 50px 0px 20px 10px;
  border-bottom: 1px solid #4DA1FF;
}
#mobile-nav .member .btn-user, #mobile-nav .member .btn-help {
  display: block;
  padding: 10px;
  position: relative;
  background-color: transparent;
  text-align: left;
  width: 100%;
  color: #B1B1B1;
  font-size: 14px;
}
#mobile-nav .member .btn-user i, #mobile-nav .member .btn-help i {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(./../images/icon_arrow_down_light_gray.svg);
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 10px;
  top: 10px;
}
#mobile-nav .member .btn-user a, #mobile-nav .member .btn-help a {
  color: #B1B1B1;
}
#mobile-nav .member .btn-user.not-yet-login i, #mobile-nav .member .btn-help.not-yet-login i {
  display: none;
}
#mobile-nav .member .btn-user.not-yet-login a, #mobile-nav .member .btn-help.not-yet-login a {
  display: block;
}
#mobile-nav .member .cart .btn-cart {
  display: block;
  padding: 10px;
  position: relative;
  background-color: transparent;
  text-align: left;
  width: 100%;
  color: #B1B1B1;
  font-size: 14px;
}
#mobile-nav .member .cart .btn-cart a {
  color: #B1B1B1;
  padding: 0;
}
#mobile-nav .member .cart .btn-cart a:hover {
  color: #4DA1FF;
}
#mobile-nav .member .dropdown-menu {
  display: none;
}
#mobile-nav .member .active .btn-user, #mobile-nav .member .active .btn-help {
  color: #4DA1FF;
}
#mobile-nav .member .active .btn-user i, #mobile-nav .member .active .btn-help i {
  background-image: url(./../images/icon_arrow_down_blue.svg);
  transform: rotate(180deg);
}
#mobile-nav .member .active .btn-user a, #mobile-nav .member .active .btn-help a {
  color: #4DA1FF;
}
#mobile-nav .member .active .dropdown-menu {
  display: block;
}
#mobile-nav .links {
  margin-top: 20px;
  padding-left: 10px;
}
#mobile-nav .links ul li {
  color: #B1B1B1;
  font-size: 14px;
}
#mobile-nav .links ul li a {
  color: #B1B1B1;
  padding: 10px 10px;
  display: block;
}
#mobile-nav .links ul li a:hover {
  color: #4DA1FF;
}
#mobile-nav .links ul li .had-menu {
  display: block;
  padding: 10px;
  position: relative;
}
#mobile-nav .links ul li .had-menu i {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(./../images/icon_arrow_down_light_gray.svg);
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 10px;
  top: 10px;
}
#mobile-nav .links ul li.active .had-menu {
  color: #4DA1FF;
}
#mobile-nav .links ul li.active .had-menu i {
  background-image: url(./../images/icon_arrow_down_blue.svg);
  transform: rotate(180deg);
}
#mobile-nav .links ul li.active .dropdown-menu {
  display: block;
}

.gotop-div {
  position: relative;
  text-align: center;
  padding: 50px 0px 30px 0;
}
.gotop-div .gotop {
  background-color: transparent;
}
.gotop-div.gotop-remove-margin-bottom {
  padding-top: 0;
  padding-bottom: 10px;
}

@media all and (max-width: 1200px) {
  .toggle-btn {
    display: inline-block;
  }
  footer .section-footer .block-outer .three-cols {
    display: block;
  }
  footer .section-footer .block-outer .three-cols .col01 {
    width: 100%;
    margin: 0 auto;
  }
  footer .section-footer .block-outer .three-cols .col01 .society {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  footer .section-footer .block-outer .three-cols .col01 .society a {
    width: 16.6666666667%;
  }
  footer .section-footer .block-outer .three-cols .col02 {
    width: 100%;
    margin-top: 30px;
  }
  footer .section-footer .block-outer .three-cols .col03 {
    width: 100%;
    margin-top: 30px;
  }
  footer .section-footer .block-outer .links {
    margin-right: 0;
  }
  footer .section-footer .block-outer .links .item h3 {
    margin-bottom: 10px;
  }
  footer .section-footer .block-outer .links .item a {
    font-size: 12px;
  }
  footer .section-footer .block-outer .subscribe-title {
    margin-bottom: 15px;
  }
}
@media all and (max-width: 820px) {
  footer .section-footer .block-outer .two-cols {
    display: block;
    max-width: 460px;
    margin: 0 auto;
  }
  footer .section-footer .block-outer .two-cols .col01 {
    width: 100%;
  }
  footer .section-footer .block-outer .two-cols .col02 {
    width: 100%;
  }
  footer .section-footer .block-outer .website-links {
    display: block;
  }
  footer .section-footer .block-outer .website-links .links {
    width: 100%;
  }
  footer .section-footer .block-outer .website-links .links .item {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
  footer .section-footer .block-outer .website-links .links .item:nth-child(2) {
    margin-left: 0px;
  }
  footer .section-footer .block-outer .website-links .links .item h3 {
    display: flex;
    flex-wrap: wrap;
  }
  footer .section-footer .block-outer .website-links .links .item h3 span {
    width: calc(100% - 24px);
  }
  footer .section-footer .block-outer .website-links .links .item h3 i {
    display: inline-block;
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(./../images/icon_footer_link_toggle_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: 0.5s ease;
  }
  footer .section-footer .block-outer .website-links .links .item .sub-links {
    display: none;
  }
  footer .section-footer .block-outer .website-links .links .item.active h3 i {
    transform: rotate(180deg);
  }
  footer .section-footer .block-outer .website-links .links .item.active .sub-links {
    display: block;
  }
  footer .section-footer .block-outer .subscribe-form .box {
    margin: 0 10px;
  }
}
@media all and (max-width: 768px) {
  footer .section-footer {
    padding: 30px 0;
  }
  footer .section-footer .block-outer .three-cols .col01 .society a {
    width: 33.3333333333%;
  }
}
@media all and (max-width: 480px) {
  .popup-div {
    width: 250px;
    left: calc(50% - 140px);
  }
}
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox-container .checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 1px solid #4DA1FF;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #fff;
  border: 1px solid #4DA1FF;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  /*background-color: $colorBlue;*/
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container input:checked ~ .checkmark:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 16px;
  height: 16px;
  background-color: #4DA1FF;
}

.checkbox-container .checkmark:after {
  left: 5px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.btn-blue {
  min-width: 180px;
  background-color: #4DA1FF;
  border: 1px solid #4DA1FF;
  font-size: 12px;
  line-height: 32px;
  border-radius: 100px;
  text-align: center;
  color: #fff;
}
.btn-blue a {
  color: #fff;
  display: block;
}
.btn-blue:hover {
  background-color: #1890FF;
  border: 1px solid #1890FF;
}
.btn-blue:active {
  background-color: #252B3B;
  border: 1px solid #252B3B;
}
.btn-blue:disabled {
  opacity: 0.6;
}

.btn-white {
  min-width: 180px;
  background-color: #fff;
  border: 1px solid #4DA1FF;
  font-size: 12px;
  line-height: 32px;
  border-radius: 100px;
  text-align: center;
  color: #4DA1FF;
}
.btn-white:hover {
  background-color: #4DA1FF;
  border-color: #4DA1FF;
  color: #fff;
}
.btn-white:active {
  background-color: #252B3B;
  border-color: #252B3B;
  color: #fff;
}
.btn-white:disabled {
  opacity: 0.6;
}
.btn-white.btn-transparent {
  background-color: transparent;
}
.btn-white.btn-transparent:hover {
  color: #fff;
  border-color: #fff;
}

.btn-darkBlue {
  min-width: 180px;
  background-color: #252B3B;
  border: 1px solid #252B3B;
  font-size: 12px;
  line-height: 32px;
  border-radius: 100px;
  text-align: center;
  color: #fff;
}
.btn-darkBlue a {
  color: #fff;
  display: block;
}
.btn-darkBlue:hover {
  background-color: #66AEFE;
  border: 1px solid #66AEFE;
}
.btn-darkBlue:active {
  background-color: #fff;
  border: 1px solid #fff;
  color: #252B3B;
}
.btn-darkBlue:disabled {
  opacity: 0.6;
}

.form-div .item {
  margin: 10px 0;
}
.form-div .item .label {
  font-size: 12px;
  color: #686868;
  font-weight: 700;
}
.form-div .item .label.wid-label {
  width: -moz-max-content;
  width: max-content;
}
.form-div .item .label sup {
  color: #96C83E;
}
.form-div .item .controller {
  margin-top: 5px;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.form-div .item .controller input {
  width: calc(100% - 22px);
  padding: 0 10px;
  border: 1px solid #B1B1B1;
  line-height: 43px;
  border-radius: 5px;
  font-size: 14px;
}
.form-div .item .controller input::-webkit-outer-spin-button,
.form-div .item .controller input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-div .item .controller input[type=number] {
  -moz-appearance: textfield;
}
.form-div .item .controller .checkbox-container input {
  width: auto;
}
.form-div .item .controller .checked-container input {
  width: auto;
}
.form-div .item .controller select {
  border: 1px solid #B1B1B1;
  line-height: 43px;
  border-radius: 5px;
  font-size: 14px;
  width: 100%;
  padding: 0 10px;
  height: 45px;
  background-color: #fff;
  color: #686868;
}
.form-div .item .controller textarea {
  resize: none;
  border: 1px solid #B1B1B1;
  border-radius: 5px;
  font-size: 14px;
  padding: 10px 10px;
  width: calc(100% - 22px);
  height: 184px;
}
.form-div .item .controller .desc p {
  color: #B1B1B1;
  font-size: 10px;
  margin-bottom: 15px;
}
.form-div .item .controller .desc p:last-child {
  margin-bottom: 0;
}
.form-div .item .controller .file-container {
  position: relative;
}
.form-div .item .controller .file-container label {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-div .item .controller .file-container label input {
  width: calc(100% - 22px - 132px - 10px);
}
.form-div .item .controller .file-container label input:disabled {
  background-color: #fff;
}
.form-div .item .controller .file-container label button {
  min-width: 132px;
  background-color: #96C83E;
  border: 1px solid #96C83E;
  border-radius: 5px;
  font-size: 12px;
  line-height: 43px;
  text-align: center;
  color: #fff;
}
.form-div .item .controller .file-container label button:hover {
  background-color: #cbe49f;
}
.form-div .item .controller .file-container .file-upload {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.form-div .item .two-col {
  margin-left: -5px;
  margin-right: -5px;
  display: flex;
  flex-wrap: wrap;
}
.form-div .item .two-col .col {
  width: calc(50% - 10px);
  margin: 0 5px;
}
.form-div .item .three-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-div .item .three-col .col {
  width: calc(33.3333333333% - 7.5px);
}
.form-div .item .keyin-item:hover .label {
  color: #96C83E;
}
.form-div .item .keyin-item:hover .controller input {
  border-color: #96C83E;
}
.form-div .item .keyin-item:hover .controller select {
  border-color: #96C83E;
  color: #96C83E;
}
.form-div .item .keyin-item:hover .controller textarea {
  border-color: #96C83E;
}
.form-div .item .city-State {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-div .item .city-State .keyin-item:nth-child(1) {
  width: 196px;
}
.form-div .item .city-State .keyin-item:nth-child(2) {
  width: 108px;
}
.form-div .item .city-State .keyin-item:nth-child(2) select {
  width: 100%;
}
.form-div .item .col-2-3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-div .item .col-2-3 .keyin-item:nth-child(1) {
  width: 110px;
}
.form-div .item .col-2-3 .keyin-item:nth-child(2) {
  width: calc(100% - 110px - 10px);
}
.form-div .item .col-3-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-div .item .col-3-2 .keyin-item:nth-child(1) {
  width: calc(100% - 110px - 10px);
}
.form-div .item .col-3-2 .keyin-item:nth-child(2) {
  width: 110px;
}
.form-div .item .qty {
  width: 196px;
}
.form-div .item .qty .controller select {
  width: 100%;
}
.form-div .item .ups-ffdex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.form-div .item .ups-ffdex .col01 {
  width: calc(100% - 540px);
}
.form-div .item .ups-ffdex .col01 .radio-container {
  margin-top: 15px;
}
.form-div .item .ups-ffdex .col02 {
  width: 540px;
}
.form-div .item .keep-forgot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.form-div .item .keep-forgot .col01 {
  width: 50%;
}
.form-div .item .keep-forgot .col02 {
  width: 50%;
  text-align: right;
  font-size: 12px;
  color: #B1B1B1;
}
.form-div .item .keep-forgot .col02 a {
  color: #96C83E;
}
.form-div .item.or {
  margin: 20px 0;
}
.form-div .item.or .or-div {
  color: #686868;
  font-size: 12px;
  position: relative;
  text-align: center;
}
.form-div .item.or .or-div span {
  background-color: #fff;
  padding: 0 10px;
}
.form-div .item.or .or-div:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #F5F5F7;
}
.form-div .item.remark {
  margin: 20px 0;
}
.form-div .item.action {
  margin-top: 20px;
  margin-bottom: 0;
}
.form-div .item.action button {
  width: 100%;
  border: none;
  border-radius: 5px;
  background-color: #96C83E;
  font-size: 12px;
  line-height: 45px;
  color: #fff;
  margin: 0 auto;
}
.form-div .item.action button:hover {
  opacity: 0.3;
}
.form-div .item.action button a {
  color: #fff;
  display: block;
}
.form-div .item .apply-account {
  text-align: center;
  color: #B1B1B1;
  font-size: 12px;
}
.form-div .item .apply-account span {
  display: block;
}
.form-div .item .apply-account .green {
  color: #96C83E;
}

.form-item .box-div {
  background-color: #fff;
  padding: 20px 55px 50px 55px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.form-item .item-title h3 {
  font-size: 14px;
  color: #96C83E;
  font-weight: 700;
  margin-left: -30px;
}
.form-item .item-desc p {
  font-size: 10px;
  color: #B1B1B1;
}

@media all and (max-width: 640px) {
  .form-div .item .two-col {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
  .form-div .item .two-col .col {
    margin: 0;
    width: 100%;
  }
  .form-div .item .two-col .col:nth-child(2) {
    margin-top: 10px;
  }
  .form-div .item .col-3-2 .keyin-item:nth-child(1) {
    width: calc(65% - 10px);
  }
  .form-div .item .col-3-2 .keyin-item:nth-child(2) {
    width: 35%;
  }
  .form-div .item .col-2-3 .keyin-item:nth-child(1) {
    width: 35%;
  }
  .form-div .item .col-2-3 .keyin-item:nth-child(2) {
    width: calc(65% - 10px);
  }
  .form-div .item .keep-forgot {
    display: block;
  }
  .form-div .item .keep-forgot .col01 {
    width: 100%;
  }
  .form-div .item .keep-forgot .col02 {
    margin-top: 5px;
    width: 100%;
    text-align: left;
  }
  .form-div .item .three-col {
    display: block;
  }
  .form-div .item .three-col .col {
    width: 100%;
    margin: 10px 0;
  }
}
.block-outer {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

.block-small-width .block-outer {
  max-width: 480px;
}
.block-small-width .block-outer .div-form {
  margin: 0 10px;
}
.block-small-width .block-outer .div-signup {
  margin: 0 10px;
}

.block-terms-service .block-outer, .block-web-rename .block-outer, .block-creat-account .block-outer, .block-email-send .block-outer, .block-registered-success .block-outer {
  min-height: calc(100vh - 77.19px - 327.19px - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-detail-div {
  padding: 40px 0;
}
.section-detail-div.section-oa-account {
  padding: 0;
}
.section-detail-div .logo {
  text-align: center;
  margin-bottom: 15px;
}
.section-detail-div .logo img {
  min-height: 36px;
}
.section-detail-div .info {
  margin-bottom: 15px;
}
.section-detail-div .info h2 {
  color: #1D1D1D;
  font-size: 20px;
  text-align: center;
}
.section-detail-div .info p {
  color: #808FA3;
  font-size: 13px;
  text-align: center;
}

.section-terms-service {
  background-color: #F5F7FA;
  position: relative;
  overflow: hidden;
}
.section-terms-service:before {
  content: url(../images/terms_service_deco01.svg);
  position: absolute;
  left: 0;
  top: 0;
}
.section-terms-service:after {
  content: url(../images/terms_service_deco02.svg);
  position: absolute;
  right: -70px;
  bottom: -50px;
}
.section-terms-service .block-terms-service .logo img {
  width: 88px;
}
.section-terms-service .block-terms-service .box {
  width: 390px;
  padding: 25px;
  background-color: #fff;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 51, 0.08);
  position: relative;
  z-index: 10;
}
.section-terms-service .block-terms-service .box .info h2 {
  color: #4DA1FF;
  font-size: 24px;
  font-weight: 700;
  text-align: left;
}
.section-terms-service .block-terms-service .box .info p {
  color: #808FA3;
  margin-top: 20px;
  text-align: left;
}
.section-terms-service .block-terms-service .box .div-form {
  margin: 0;
}
.section-terms-service .block-terms-service .box .div-form .item .checkbox-container-wrapper .sub-item {
  font-size: 13px;
  margin-top: 15px;
  line-height: 2;
}
.section-terms-service .block-terms-service .box .div-form .item .checkbox-container-wrapper .sub-item .checkbox-container .checkmark {
  width: 16px;
  height: 16px;
  border-color: #D9D9D9;
}
.section-terms-service .block-terms-service .box .div-form .item .checkbox-container-wrapper .sub-item .checkbox-container input:checked ~ .checkmark:before {
  left: 1px;
  top: 1px;
}
.section-terms-service .block-terms-service .box .div-form .item .checkbox-container-wrapper .sub-item .checkbox-container input:checked ~ .checkmark:after {
  left: 5.5px;
  top: 1px;
}
.section-terms-service .block-terms-service .box .div-form .item.action {
  margin-top: 60px;
}
.section-terms-service .block-terms-service .box .deco-div {
  position: relative;
}
.section-terms-service .block-terms-service .box .deco-div .deco01 {
  position: absolute;
  left: -240px;
  top: -100px;
  transform: scale(0.8);
}
.section-terms-service .block-terms-service .box .deco-div .deco02 {
  position: absolute;
  right: -110px;
  transform: scale(0.8);
}
.section-terms-service .block-terms-service .links {
  margin-top: 30px;
  text-align: center;
  position: relative;
  z-index: 20;
}
.section-terms-service .block-terms-service .links a {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #808FA3;
  display: inline-block;
  margin: 0 5px;
}

.section-home {
  background-color: #F5F7FA;
  padding-top: 0;
  padding-bottom: 100px;
}
.section-home .big-banner-div {
  position: relative;
}
.section-home .big-banner-div .block-outer {
  max-width: 1240px;
  width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
.section-home .big-banner-div .img img {
  width: 100%;
}
.section-home .big-banner-div .img .mobile {
  display: none;
}
.section-home .big-banner-div .info-outer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.section-home .big-banner-div .info-outer .info-div {
  display: inline-block;
}
.section-home .big-banner-div .info-outer .info-div .top-div h1 {
  font-size: 48px;
  color: #fff;
}
.section-home .big-banner-div .info-outer .info-div .top-div p {
  color: #fff;
  font-size: 18px;
}
.section-home .big-banner-div .info-outer .info-div .bottom-div {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section-home .big-banner-div .info-outer .info-div .bottom-div button {
  width: 45%;
  padding: 0;
  overflow: hidden;
}
.section-home .big-banner-div .info-outer .info-div .bottom-div button.btn-white {
  background-color: #fff;
}
.section-home .big-banner-div .info-outer .info-div .bottom-div button.btn-white:hover {
  background-color: #1890FF;
  border-color: #1890FF;
  color: #fff;
}
.section-home .big-banner-div .info-outer .info-div .bottom-div button.btn-white:active {
  background-color: #4DA1FF;
  border-color: #4DA1FF;
  color: #fff;
}
.section-home .big-banner-div .info-outer .info-div .bottom-div button.btn-white a {
  display: block;
  color: #4DA1FF;
}
.section-home .big-banner-div .info-outer .info-div .bottom-div button.btn-white a:hover {
  background-color: #1890FF;
  border-color: #1890FF;
  color: #fff;
}
.section-home .block-home .info-outer {
  padding-right: 10%;
}
.section-home .block-home .info h2 {
  border-radius: 20px 20px 0px 20px;
  background-color: #4DA1FF;
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  padding: 10px 20px;
  text-align: left;
}
.section-home .block-home .info ul {
  font-size: 20px;
  color: #1D1D1D;
  padding-top: 40px;
  margin-left: 10px;
}
.section-home .block-home .info ul li {
  padding-left: 35px;
  background-image: url(./../images/icon_check_circle_blue.svg);
  background-position: left 5px;
  background-repeat: no-repeat;
  min-height: 24px;
  margin-top: 30px;
}
.section-home .block-home .action {
  margin-top: 50px;
}
.section-home .block-home .action a {
  font-size: 16px;
  color: #4DA1FF;
  display: inline-block;
}
.section-home .block-home .action a i {
  display: inline-block;
  background-image: url(./../images/icon_learn_more_arrow_blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 10px;
  margin-left: 10px;
}
.section-home .block-home .action a:hover {
  color: #1890FF;
}
.section-home .block-home .action a:active {
  color: #252B3B;
}
.section-home .block-home .action a:active i {
  background-image: url(./../images/icon_learn_more_arrow_black.svg);
}
.section-home .block-home .sub-block-01 {
  background-image: url(./../images/home_system.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 50vw auto;
  min-height: 60vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 50px;
}
.section-home .block-home .sub-block-01 .block-outer {
  width: 1200px;
}
.section-home .block-home .sub-block-01 .two-cols {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.section-home .block-home .sub-block-01 .two-cols .col01 {
  display: none;
  width: 50%;
  margin-left: 50%;
  margin-right: -100%;
  text-align: center;
}
.section-home .block-home .sub-block-01 .two-cols .col02 {
  width: 50%;
  position: relative;
}
.section-home .block-home .sub-block-01 .deco {
  position: absolute;
  right: 30px;
  bottom: -50px;
}
.section-home .block-home .sub-block-02 {
  margin-top: 100px;
}
.section-home .block-home .sub-block-02 .two-cols {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.section-home .block-home .sub-block-02 .two-cols .col01 {
  width: 50%;
}
.section-home .block-home .sub-block-02 .two-cols .col01 img {
  max-height: 614px;
}
.section-home .block-home .sub-block-02 .two-cols .col02 {
  width: 50%;
}
.section-home .block-home .sub-block-03 {
  margin-top: 100px;
}
.section-home .block-home .sub-block-03 .two-cols {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.section-home .block-home .sub-block-03 .two-cols .col01 {
  width: 50%;
  margin-left: 50%;
  margin-right: -100%;
  text-align: center;
}
.section-home .block-home .sub-block-03 .two-cols .col01 img {
  max-width: 100%;
}
.section-home .block-home .sub-block-03 .two-cols .col02 {
  width: 50%;
  position: relative;
}

.section-price-plan {
  background-color: #F5F7FA;
  padding-bottom: 0;
}

.div-form .item {
  margin-bottom: 5px;
}
.div-form .item:last-child {
  margin-bottom: 0;
}
.div-form .item .label {
  font-size: 16px;
  color: #000;
}
.div-form .item .controler {
  margin-top: 3px;
}
.div-form .item .controler .box {
  border: 1px solid #8A8A8A;
  padding: 10px 10px;
  display: flex;
  flex-wrap: wrap;
  border-radius: 5px;
}
.div-form .item .controler .box:hover {
  border-color: #4DA1FF;
}
.div-form .item .controler .box:hover input::-moz-placeholder {
  color: #4DA1FF;
}
.div-form .item .controler .box:hover input::placeholder {
  color: #4DA1FF;
}
.div-form .item .controler .box:hover input::-ms-input-placeholder {
  color: #4DA1FF;
}
.div-form .item .controler .box input {
  color: #000;
  font-size: 16px;
  padding: 0;
  border: none;
  width: 100%;
}
.div-form .item .controler .box input::-moz-placeholder {
  color: #B8B8B8;
  opacity: 1; /* Firefox */
}
.div-form .item .controler .box input::placeholder {
  color: #B8B8B8;
  opacity: 1; /* Firefox */
}
.div-form .item .controler .box input::-ms-input-placeholder { /* Edge 12-18 */
  color: #B8B8B8;
}
.div-form .item .controler .box.box-eye input {
  width: calc(100% - 20px);
}
.div-form .item .controler .box.box-eye i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(./../images/icon_eye_open_gray.svg);
}
.div-form .item .controler .box.box-eye:hover i {
  background-image: url(./../images/icon_eye_open_blue.svg);
}
.div-form .item .controler .box.box-eye.hide i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(./../images/icon_eye_hide_gray.svg);
}
.div-form .item .controler .box.box-eye.hide:hover i {
  background-image: url(./../images/icon_eye_hide_blue.svg);
}
.div-form .item .controler .box textarea {
  resize: none;
  min-height: 200px;
  color: #000;
  font-size: 16px;
  padding: 0;
  border: none;
  width: 100%;
}
.div-form .item .controler .box textarea::-moz-placeholder {
  color: #B8B8B8;
  opacity: 1; /* Firefox */
}
.div-form .item .controler .box textarea::placeholder {
  color: #B8B8B8;
  opacity: 1; /* Firefox */
}
.div-form .item .controler .box textarea::-ms-input-placeholder { /* Edge 12-18 */
  color: #B8B8B8;
}
.div-form .item.action {
  margin-top: 20px;
}
.div-form .item.action .btn-blue {
  font-size: 20px;
  min-width: 100%;
  font-weight: 400;
  padding: 5px 0;
}
.div-form .item.action .btn-white {
  font-size: 20px;
  min-width: 100%;
  font-weight: 400;
  padding: 5px 0;
}
.div-form .item.action.two-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.div-form .item.action.two-btns .btn-blue, .div-form .item.action.two-btns .btn-white {
  min-width: 48%;
}
.div-form .item.action.two-btns02 button:first-child {
  margin-bottom: 10px;
}
.div-form .item .checkbox-container-wrapper {
  margin-top: 20px;
}
.div-form .item .checkbox-container-wrapper .sub-item {
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  line-height: 1.2;
  color: #1D1D1D;
}
.div-form .item .checkbox-container-wrapper .sub-item .checkbox-container {
  height: 30px;
}
.div-form .item .checkbox-container-wrapper .sub-item .checkbox-container .checkmark {
  top: 2px;
}
.div-form .item .checkbox-container-wrapper .sub-item b {
  display: inline-block;
  width: calc(100% - 30px);
}
.div-form .item .checkbox-container-wrapper .sub-item b a {
  color: #4DA1FF;
}

.div-remark {
  margin-top: 15px;
}
.div-remark p {
  color: #1D1D1D;
  font-size: 16px;
  margin-bottom: 15px;
  text-align: center;
}
.div-remark p a {
  color: #4DA1FF;
}
.div-remark p:last-child {
  margin-bottom: 0;
}

.div-or {
  color: #818181;
  font-size: 20px;
  padding: 15px 0;
  text-align: center;
}

.div-signup .item {
  margin-bottom: 10px;
}
.div-signup .item:last-child {
  margin-bottom: 0;
}
.div-signup .item button {
  background-color: transparent;
  border: 1px solid #8A8A8A;
  padding: 4.5px 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  width: 100%;
  font-size: 16px;
  color: #000;
}
.div-signup .item button span {
  font-weight: 400;
}
.div-signup .item button i {
  display: inline-flex;
  margin-right: 10px;
}
.div-signup .item button i img {
  height: 28px;
}
.div-signup .item button:hover {
  background-color: #4DA1FF;
  border-color: #4DA1FF;
  color: #fff;
}

.block-email-send .div-form .item.action {
  margin-top: 60px;
}

.block-registered-success .div-form .item.action {
  margin-top: 60px;
}

.section-step-div {
  padding: 0;
}

.block-step-div {
  position: relative;
}
.block-step-div:before {
  content: "";
  position: absolute;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #F5F7FA;
}
.block-step-div .block-outer {
  padding: 0;
}
.block-step-div .block-outer .two-cols {
  display: flex;
  flex-wrap: wrap;
}
.block-step-div .block-outer .two-cols .col01 {
  width: 50%;
  padding-top: 160px;
}
.block-step-div .block-outer .two-cols .col02 {
  width: 50%;
  padding: 110px 0;
}
.block-step-div .step-list .item {
  display: flex;
  flex-wrap: wrap;
}
.block-step-div .step-list .item .number b {
  width: 40px;
  height: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-image: url(./../images/icon_step_gray.svg);
  background-position: center;
  background-repeat: no-repeat;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.25);
  margin-top: 2px;
}
.block-step-div .step-list .item .info {
  width: calc(100% - 40px - 15px);
  padding-left: 15px;
  margin-bottom: 10px;
}
.block-step-div .step-list .item .info h3 {
  color: rgba(29, 29, 29, 0.3);
  font-size: 24px;
  font-weight: 600;
}
.block-step-div .step-list .item .info h3 span:nth-child(2) {
  display: none;
}
.block-step-div .step-list .item .info P {
  color: rgba(128, 143, 163, 0.5);
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}
.block-step-div .step-list .item.active .number {
  position: relative;
}
.block-step-div .step-list .item.active .number b {
  background-image: url(./../images/icon_step_blue.svg);
  color: #fff;
}
.block-step-div .step-list .item.active .number:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50px;
  width: 1px;
  height: 25px;
  background-color: #4DA1FF;
}
.block-step-div .step-list .item.active .info h3 {
  color: #4DA1FF;
}
.block-step-div .step-list .item.active .info p {
  color: #808FA3;
}
.block-step-div .step-list .item.checked .number {
  position: relative;
}
.block-step-div .step-list .item.checked .number b {
  background-image: url(./../images/icon_step_checked.svg);
  text-indent: -9999px;
}
.block-step-div .step-list .item.checked .number:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50px;
  width: 1px;
  height: 25px;
  background-color: #4DA1FF;
}
.block-step-div .step-list .item.checked + .item.active .number:before {
  background-color: transparent;
}
.block-step-div .step-info-div {
  margin-left: 80px;
}
.block-step-div .step-info-div .info-top h3 {
  color: #4DA1FF;
  font-size: 24px;
  font-weight: 800;
}
.block-step-div .step-info-div .info-top p {
  color: #8A8A8A;
  font-size: 16px;
  font-weight: 400;
}
.block-step-div .step-info-div .info-middle {
  margin-top: 55px;
}
.block-step-div .step-info-div .form-div {
  min-height: 200px;
  padding-bottom: 50px;
}
.block-step-div .step-info-div .form-div .item {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}
.block-step-div .step-info-div .form-div .item .label {
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  width: 90px;
}
.block-step-div .step-info-div .form-div .item .label b {
  color: #4DA1FF;
  font-size: 14px;
  font-weight: 400;
  padding-top: 5px;
  display: inline-block;
  margin-right: 5px;
}
.block-step-div .step-info-div .form-div .item .controler {
  width: calc(100% - 90px);
  font-size: 14px;
  font-weight: 400;
}
.block-step-div .step-info-div .form-div .item .controler input {
  width: calc(100% - 22px);
  border: 1px solid #D9D9D9;
  font-size: 14px;
  min-height: 32px;
  padding: 0 10px;
}
.block-step-div .step-info-div .form-div .item .controler input:hover {
  border: 1px solid #4DA1FF;
}
.block-step-div .step-info-div .form-div .item .controler .box-number {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.block-step-div .step-info-div .form-div .item .controler .box-number input {
  width: calc(100% - 22px - 45px);
}
.block-step-div .step-info-div .form-div .item .controler .box-number b {
  display: block;
  width: 45px;
  text-align: right;
}
.block-step-div .step-info-div .form-div .item .controler .box-two-dropdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.block-step-div .step-info-div .form-div .item .controler .box-two-dropdown .col {
  width: calc(50% - 5px);
}
.block-step-div .step-info-div .form-div .item .controler .select-dropdown-div {
  position: relative;
}
.block-step-div .step-info-div .form-div .item .controler .select-dropdown-div button {
  background-color: transparent;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.25);
  padding: 0 10px;
  border: 1px solid #D9D9D9;
  min-height: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.block-step-div .step-info-div .form-div .item .controler .select-dropdown-div button:hover {
  border: 1px solid #4DA1FF;
}
.block-step-div .step-info-div .form-div .item .controler .select-dropdown-div button b {
  display: inline-block;
  width: calc(100% - 12px);
  color: #B1B1B1;
}
.block-step-div .step-info-div .form-div .item .controler .select-dropdown-div button i {
  display: inline-block;
  width: 12px;
  height: 20px;
  background-image: url(./../images/icon_dropdown_arrow_down.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.block-step-div .step-info-div .form-div .item .controler .select-dropdown-div button.active b {
  color: #000;
}
.block-step-div .step-info-div .form-div .item .controler .select-dropdown-div .dropdown-menu {
  position: absolute;
  display: none;
  background-color: #fff;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-height: 160px;
  overflow-y: auto;
}
.block-step-div .step-info-div .form-div .item .controler .select-dropdown-div .dropdown-menu .sub-item {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
  padding: 5px 10px;
  cursor: pointer;
}
.block-step-div .step-info-div .form-div .item .controler .select-dropdown-div .dropdown-menu .sub-item input {
  display: none;
}
.block-step-div .step-info-div .form-div .item .controler .select-dropdown-div .dropdown-menu .sub-item:hover {
  background-color: #DBECFF;
}
.block-step-div .step-info-div .form-div .item .controler .select-dropdown-div:hover .dropdown-menu {
  display: block;
}
.block-step-div .step-info-div .form-div .item.item-email .label {
  width: 80px;
}
.block-step-div .step-info-div .form-div .item.item-email .controler {
  width: calc(100% - 80px);
}
.block-step-div .step-info-div .form-div .item.item-email .box-email {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.block-step-div .step-info-div .form-div .item.item-email .box-email input {
  width: calc(100% - 22px - 100px);
}
.block-step-div .step-info-div .form-div .item.item-email .box-email b {
  display: block;
  width: 100px;
  text-align: right;
}
.block-step-div .step-info-div .form-div.form-wide-label-div .item .label {
  width: 140px;
}
.block-step-div .step-info-div .form-div.form-wide-label-div .item .controler {
  width: calc(100% - 140px);
}
.block-step-div .step-info-div .action {
  text-align: right;
}
.block-step-div .step-info-div .action button {
  background-color: #4DA1FF;
  min-width: 200px;
  min-height: 48px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  border-radius: 100px;
}
.block-step-div .step-info-div .action button i {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url(./../images/icon_continue_arrow_white.svg);
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 5px;
}
.block-step-div .step-info-div .action button:hover {
  background-color: #1D1D1D;
}
.block-step-div .step-info-div .scroll-div {
  max-height: 180px;
  overflow-y: auto;
  margin-bottom: 25px;
  background: #F5F7FA;
  padding: 18px;
  font-size: 14px;
  font-weight: 400;
  color: #808FA3;
}
.block-step-div .step-info-div .scroll-div .checkbox-container {
  padding-left: 25px;
  font-size: 14px;
}
.block-step-div .step-info-div .scroll-div .checkbox-container .checkmark {
  border: 1px solid #4DA1FF;
  height: 16px;
  width: 16px;
  top: 3px;
}
.block-step-div .step-info-div .scroll-div .checkbox-container .checkmark:after {
  left: 5px;
  top: 1px;
}
.block-step-div .step-info-div .scroll-div .checkbox-container input:checked ~ .checkmark:before {
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
}
.block-step-div .step-info-div .scroll-div .item {
  position: relative;
  margin: 8px 0;
}
.block-step-div .step-info-div .scroll-div .item b {
  color: #1D1D1D;
}
.block-step-div .step-info-div .scroll-div .item.itme-line {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  color: #4DA1FF;
}
.block-step-div .step-info-div .scroll-div .item.itme-line b {
  display: inline-block;
  padding: 0 10px;
  background-color: #F5F7FA;
  position: relative;
  z-index: 2;
}
.block-step-div .step-info-div .scroll-div .item.itme-line:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: #4DA1FF;
}

.block-oa-account {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.block-oa-account:before {
  content: "";
  position: absolute;
  background: #F5F7FA;
  left: 0;
  top: -100px;
  width: 100%;
  height: 300px;
}
.block-oa-account .info h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1D1D1D;
}
.block-oa-account .info h2 .blue {
  color: #4DA1FF;
}
.block-oa-account .info P {
  font-size: 20px;
  font-weight: 400;
  color: #1D1D1D;
}
.block-oa-account .swiper-pagination {
  bottom: 0;
}
.block-oa-account .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  opacity: 1;
  border-radius: 100px;
  background-color: #EAEAEA;
}
.block-oa-account .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
  background-color: #4DA1FF;
}
.block-oa-account .sub-block-01 {
  position: relative;
  padding-bottom: 100px;
}
.block-oa-account .sub-block-01:before {
  content: "";
  position: absolute;
  background: rgba(245, 247, 250, 0.5);
  top: -15%;
  left: -10vw;
  width: 120vw;
  height: 115%;
  border-radius: 100%;
}
.block-oa-account .sub-block-01:after {
  content: "";
  position: absolute;
  background: #F5F7FA;
  top: -10%;
  left: -5vw;
  width: 110vw;
  height: 105%;
  border-radius: 100%;
}
.block-oa-account .sub-block-01 .info P {
  margin-top: 30px;
}
.block-oa-account .sub-block-01 .block-outer {
  max-width: 1180px;
  position: relative;
  z-index: 3;
}
.block-oa-account .sub-block-01 .five-troubled-wrap {
  margin-top: 60px;
}
.block-oa-account .sub-block-01 .five-troubled-wrap .five-troubled-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.block-oa-account .sub-block-01 .five-troubled-wrap .five-troubled-list .box {
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 51, 0.08);
  border-radius: 20px;
  background-color: #fff;
  min-width: 320px;
  min-height: 88px;
  margin: 10px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.block-oa-account .sub-block-01 .five-troubled-wrap .five-troubled-list .box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #4DA1FF;
  text-align: center;
  width: 100%;
  background-image: url(./../images/icon_comma_blue.svg);
  background-repeat: no-repeat;
  background-position: top right;
}
.block-oa-account .sub-block-01 .five-troubled-wrap .five-troubled-list .box p {
  font-size: 13px;
  font-weight: 300;
  color: #1D1D1D;
  text-align: center;
  margin-top: 20px;
}
.block-oa-account .sub-block-01 .five-troubled-wrap .five-troubled-mobile {
  display: none;
  position: relative;
  padding-bottom: 20px;
}
.block-oa-account .sub-block-01 .five-troubled-wrap .five-troubled-mobile .swiper-pagination {
  bottom: -20px;
}
.block-oa-account .sub-block-01 .action {
  text-align: center;
  margin-top: 40px;
}
.block-oa-account .sub-block-01 .action button {
  background-color: #4DA1FF;
  border-radius: 100px;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  min-width: 400px;
  min-height: 48px;
}
.block-oa-account .sub-block-01 .action button:hover {
  background-color: #1D1D1D;
}
.block-oa-account .sub-block-02 {
  margin-top: 100px;
}
.block-oa-account .sub-block-02 .block-outer {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.block-oa-account .sub-block-02 .two-cols {
  display: flex;
  flex-wrap: wrap;
}
.block-oa-account .sub-block-02 .two-cols .col02 {
  padding-left: 50px;
}
.block-oa-account .sub-block-02 .two-cols .col02 .info h3 {
  border-radius: 20px 20px 0px 20px;
  background-color: #4DA1FF;
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  padding: 10px 20px;
  width: calc(100% - 40px);
}
.block-oa-account .sub-block-02 .two-cols .col02 .info p {
  font-size: 20px;
  font-weight: 400;
  color: #4DA1FF;
  background-color: #DBECFF;
  border-radius: 20px 20px 20px 0px;
  display: inline-block;
  padding: 10px 20px;
  margin-top: 30px;
  color: #4DA1FF;
}
.block-oa-account .sub-block-02 .two-cols .col02 .pipeline-list .item {
  padding: 25px 0;
}
.block-oa-account .sub-block-02 .two-cols .col02 .pipeline-list .item .box {
  padding-left: 58px;
  background-image: url(./../images/icon_line_official_account_blue.svg);
  background-position: left 5px;
  background-size: auto 48px;
  background-repeat: no-repeat;
  min-height: 56px;
}
.block-oa-account .sub-block-02 .two-cols .col02 .pipeline-list .item .box h4 {
  font-size: 20px;
  font-weight: 600;
  color: #4DA1FF;
}
.block-oa-account .sub-block-02 .two-cols .col02 .pipeline-list .item .box p {
  font-size: 16px;
  font-weight: 400;
  color: #808FA3;
}
.block-oa-account .sub-block-03 {
  margin-top: 100px;
}
.block-oa-account .sub-block-03 .block-outer {
  overflow: hidden;
  max-width: 1100px;
}
.block-oa-account .sub-block-03 .info {
  text-align: center;
}
.block-oa-account .sub-block-03 .info p {
  background-color: #DBECFF;
  border-radius: 20px 20px 20px 0px;
  display: inline-block;
  padding: 10px 0px;
  margin: 0 auto;
  margin-top: 30px;
  min-width: 410px;
  color: #4DA1FF;
}
.block-oa-account .sub-block-03 .mative-functionality-list {
  margin-top: 50px;
  padding: 0 60px;
  padding-bottom: 60px;
  overflow: hidden;
  position: relative;
}
.block-oa-account .sub-block-03 .mative-functionality-list .mative-functionality-swiper {
  overflow: hidden;
}
.block-oa-account .sub-block-03 .mative-functionality-list .mative-functionality-swiper .swiper-slide {
  padding-bottom: 25px;
}
.block-oa-account .sub-block-03 .mative-functionality-list .mative-functionality-swiper .swiper-slide .box {
  background-color: #F5F7FA;
  border-radius: 20px;
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 51, 0.08);
  padding: 10px;
}
.block-oa-account .sub-block-03 .mative-functionality-list .mative-functionality-swiper .swiper-slide .box .deco b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 10px;
}
.block-oa-account .sub-block-03 .mative-functionality-list .mative-functionality-swiper .swiper-slide .box .desc {
  margin-top: 25px;
}
.block-oa-account .sub-block-03 .mative-functionality-list .mative-functionality-swiper .swiper-slide .box .desc h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1D1D1D;
  text-align: left;
}
.block-oa-account .sub-block-03 .mative-functionality-list .mative-functionality-swiper .swiper-slide .box .desc h3.small {
  font-size: 17px;
}
.block-oa-account .sub-block-03 .mative-functionality-list .mative-functionality-swiper .swiper-slide .box .desc h3 .small {
  font-size: 12px;
}
.block-oa-account .sub-block-03 .mative-functionality-list .mative-functionality-swiper .swiper-slide .box .desc p {
  font-size: 14px;
  font-weight: 300;
  color: #808FA3;
  margin-top: 15px;
  min-height: 50px;
}
.block-oa-account .sub-block-03 .mative-functionality-list .mative-functionality-swiper.blue-swiper .deco b {
  background-color: #4DA1FF;
}
.block-oa-account .sub-block-03 .mative-functionality-list .mative-functionality-swiper.yellow-swiper .deco b {
  background-color: #FFB200;
}
.block-oa-account .sub-block-03 .mative-functionality-list .mative-functionality-swiper .swiper-button-next {
  top: calc(50% - 50px);
  z-index: 1;
}
.block-oa-account .sub-block-03 .mative-functionality-list .mative-functionality-swiper .swiper-button-prev {
  top: calc(50% - 50px);
  z-index: 1;
}
.block-oa-account .sub-block-03 .swiper-button-next {
  width: 45px;
  height: 45px;
  background-image: url(./../images/icon_swiper_next_blue.svg);
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 100px;
  background-color: #4DA1FF;
  right: 0;
}
.block-oa-account .sub-block-03 .swiper-button-next:after {
  color: transparent;
}
.block-oa-account .sub-block-03 .swiper-button-next:hover {
  background-color: #252B3B;
}
.block-oa-account .sub-block-03 .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-image: url(./../images/icon_swiper_prev_blue.svg);
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 100px;
  background-color: #4DA1FF;
  left: 0;
}
.block-oa-account .sub-block-03 .swiper-button-prev:after {
  color: transparent;
}
.block-oa-account .sub-block-03 .swiper-button-prev:hover {
  background-color: #252B3B;
}
.block-oa-account .sub-block-03 .info + .mative-functionality-list + .info {
  margin-top: 50px;
}
.block-oa-account .sub-block-04 {
  margin-top: 120px;
  background-color: #F5F7FA;
  padding: 120px 0;
}
.block-oa-account .sub-block-04 .block-outer {
  max-width: 1100px;
}
.block-oa-account .sub-block-04 .info {
  text-align: center;
}
.block-oa-account .sub-block-04 .info p {
  background-color: #DBECFF;
  border-radius: 20px 20px 20px 0px;
  display: inline-block;
  padding: 10px 0px;
  margin: 0 auto;
  margin-top: 30px;
  min-width: 410px;
  color: #4DA1FF;
}
.block-oa-account .sub-block-04 .create-step-list {
  display: inline-block;
  width: 400px;
  text-align: left;
}
.block-oa-account .sub-block-04 .create-step-list .item {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
}
.block-oa-account .sub-block-04 .create-step-list .item .number {
  width: 40px;
  position: relative;
}
.block-oa-account .sub-block-04 .create-step-list .item .number:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 45px;
  width: 1px;
  height: 20px;
  background-color: #1890FF;
}
.block-oa-account .sub-block-04 .create-step-list .item .number b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1890FF;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  border-radius: 100px;
  width: 32px;
  height: 32px;
  margin-top: 5px;
}
.block-oa-account .sub-block-04 .create-step-list .item .desc {
  text-align: left;
  width: calc(100% - 40px);
}
.block-oa-account .sub-block-04 .create-step-list .item .desc h3 {
  color: #1D1D1D;
  font-size: 20px;
  font-weight: 600;
}
.block-oa-account .sub-block-04 .create-step-list .item .desc p {
  color: #808FA3;
  font-size: 14px;
}
.block-oa-account .sub-block-04 .create-step-list .item:last-child .number:before {
  background-color: transparent;
}
.block-oa-account .sub-block-04 .action {
  margin-top: 50px;
}
.block-oa-account .sub-block-04 .action button {
  min-width: 400px;
  min-height: 48px;
  background-color: #4DA1FF;
  border-radius: 100px;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
}
.block-oa-account .sub-block-04 .action button:hover {
  background-color: #1890FF;
}
.block-oa-account .sub-block-04 .action button:active {
  background-color: #252B3B;
}
.block-oa-account .sub-block-04 .action button:disabled {
  opacity: 0.6;
}
.block-oa-account .sub-block-04 .create-brand {
  background-image: url(./../images/img_line_oa_01.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 50vw auto;
  min-height: 50vw;
}
.block-oa-account .sub-block-04 .create-brand .two-cols {
  display: flex;
  flex-wrap: wrap;
  padding-top: 100px;
}
.block-oa-account .sub-block-04 .create-brand .two-cols .col01 {
  display: none;
  width: 50%;
  margin-left: -50%;
  margin-right: 100%;
  text-align: center;
}
.block-oa-account .sub-block-04 .create-brand .two-cols .col01 img {
  max-width: 100%;
}
.block-oa-account .sub-block-04 .create-brand .two-cols .col02 {
  width: 50%;
  text-align: left;
}
.block-oa-account .sub-block-05 {
  padding: 20px 0 100px 0;
  background-color: #F5F7FA;
}
.block-oa-account .sub-block-05 .info p {
  color: #808FA3;
  font-size: 20px;
  font-weight: 400;
}
.block-oa-account .sub-block-05 .client-list {
  position: relative;
  padding: 0 50px;
}
.block-oa-account .sub-block-05 .client-list .client-swiper {
  padding-bottom: 80px;
}
.block-oa-account .sub-block-05 .client-list .client-swiper .swiper-slide .box {
  background-color: #fff;
  /*box-shadow: 0px 10px 25px 0px rgba(0, 0, 51, 0.08);*/
  filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.2));
  padding: 20px;
  min-height: 260px;
}
.block-oa-account .sub-block-05 .client-list .client-swiper .swiper-slide .box .star-list i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(./../images/icon_star_yellow.svg);
  background-size: 16px auto;
  background-position: center;
  background-repeat: no-repeat;
}
.block-oa-account .sub-block-05 .client-list .client-swiper .swiper-slide .box .info {
  min-height: 155px;
}
.block-oa-account .sub-block-05 .client-list .client-swiper .swiper-slide .box .info p {
  color: #000;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.block-oa-account .sub-block-05 .client-list .client-swiper .swiper-slide .box .client {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.block-oa-account .sub-block-05 .client-list .client-swiper .swiper-slide .box .client .img b {
  display: inline-flex;
  overflow: hidden;
  border-radius: 100px;
  width: 56px;
  height: 56px;
}
.block-oa-account .sub-block-05 .client-list .client-swiper .swiper-slide .box .client .img b img {
  width: 100%;
}
.block-oa-account .sub-block-05 .client-list .client-swiper .swiper-slide .box .client .name {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  margin-left: 20px;
}
.block-oa-account .sub-block-06 {
  background-color: #DBECFF;
  padding: 45px 0;
  text-align: center;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.block-oa-account .sub-block-06 .deco01 {
  position: absolute;
  left: 0;
  top: 25px;
}
.block-oa-account .sub-block-06 .deco02 {
  position: absolute;
  right: 0;
  top: 45px;
}
.block-oa-account .sub-block-06 h3 {
  color: #4DA1FF;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}
.block-oa-account .sub-block-06 button {
  min-width: 214px;
  min-height: 48px;
  border-radius: 100px;
  background-color: #1D1D1D;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  margin-top: 30px;
  margin-left: 15px;
  margin-right: 15px;
}
.block-oa-account .sub-block-06 button.btn-blue {
  background-color: #4DA1FF;
  color: #fff;
}
.block-oa-account .sub-block-06 button.btn-blue:hover {
  background-color: #1D1D1D;
  border-color: #1D1D1D;
}
.block-oa-account .sub-block-06 button.btn-white {
  background-color: transparent;
  color: #4DA1FF;
}
.block-oa-account .sub-block-06 button.btn-white:hover {
  background-color: #4DA1FF;
  color: #fff;
}
.block-oa-account .sub-block-07 {
  background-color: #4DA1FF;
  padding: 45px 0;
  text-align: center;
}
.block-oa-account .sub-block-07 h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}
.block-oa-account .sub-block-07 button {
  min-width: 400px;
  min-height: 48px;
  border-radius: 100px;
  background-color: #1D1D1D;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  margin-top: 30px;
}
.block-oa-account .sub-block-07 button:hover {
  background-color: #fff;
  color: #4DA1FF;
}

.block-policy-terms-div .title {
  text-align: center;
}
.block-policy-terms-div .title h2 {
  color: #4DA1FF;
  font-size: 40px;
  font-weight: 700;
}
.block-policy-terms-div .title p {
  color: #1D1D1D;
  text-align: center;
  font-size: 24px;
  margin-top: 30px;
}
.block-policy-terms-div .info {
  font-size: 12px;
  margin-top: 40px;
  text-align: left;
}
.block-policy-terms-div .info h3 {
  color: #4DA1FF;
  font-weight: 700;
  text-align: left;
}
.block-policy-terms-div .info p {
  color: #808FA3;
  text-align: left;
  margin-bottom: 20px;
}
.block-policy-terms-div .info ol {
  color: #808FA3;
  list-style: decimal;
  padding-left: 18px;
  margin-bottom: 20px;
}
.block-policy-terms-div .info ul {
  color: #808FA3;
  list-style: disc;
  padding-left: 18px;
  margin-bottom: 20px;
}

.block-price-plan .block-outer {
  padding: 0;
  max-width: 1260px;
}
.block-price-plan .title h2 {
  font-size: 36px;
  text-align: center;
  font-weight: 700;
  color: #4DA1FF;
}
.block-price-plan .title p {
  text-align: center;
  font-size: 20px;
  color: #1D1D1D;
  margin-top: 15px;
}
.block-price-plan .div-form .item {
  margin-bottom: 30px;
}
.block-price-plan .div-form .item:last-child {
  margin-bottom: 0;
}
.block-price-plan .div-form .item .label {
  font-size: 20px;
}
.block-price-plan .div-form .item .label span {
  color: #4DA1FF;
}
.block-price-plan .div-form .item .label i {
  font-size: 16px;
  font-style: normal;
}
.block-price-plan .div-form .item .remark {
  font-size: 16px;
}
.block-price-plan .div-form .item .remark .blue {
  color: #4DA1FF;
}
.block-price-plan .div-form .item .controler .box {
  background-color: #fff;
  border-color: #D9D9D9;
  border-radius: 0;
}
.block-price-plan .div-form .item .controler .box:hover {
  border-color: #4DA1FF;
}
.block-price-plan .div-form .item .controler .box:hover input::-moz-placeholder {
  color: #B1B1B1;
}
.block-price-plan .div-form .item .controler .box:hover input::placeholder {
  color: #B1B1B1;
}
.block-price-plan .div-form .item .controler .qrcode {
  text-align: center;
}
.block-price-plan .div-form .item .controler .qrcode img {
  max-width: 100%;
  margin: 0 auto;
}
.block-price-plan .div-form .item .controler .qrcode .mobile {
  display: none;
}
.block-price-plan .div-form .item .controler .two-cols {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.block-price-plan .div-form .item .controler .two-cols .col {
  width: calc(50% - 40px);
  padding: 0 20px;
}
.block-price-plan .div-form .item .controler .two-cols .col .sub-title h3 {
  display: inline-block;
  color: #4DA1FF;
  font-size: 18px;
  background-color: #DBECFF;
  border-radius: 10px 10px 0px 10px;
  display: inline-block;
  padding: 5px 0px;
  min-width: 289px;
  text-align: center;
}
.block-price-plan .div-form .item .controler .two-cols .col .checkbox-container-wrapper .sub-item {
  font-size: 14px;
}
.block-price-plan .div-form .item .controler .two-cols .col .checkbox-container-wrapper .sub-item b {
  color: #808FA3;
}
.block-price-plan .div-form .item .controler .two-cols .col .checkbox-container-wrapper .sub-item b span {
  color: #1D1D1D;
}
.block-price-plan .div-form .item .controler .two-cols .col .checkbox-container-wrapper .sub-item .checkbox-container input:checked ~ .checkmark:before {
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
}
.block-price-plan .div-form .item .controler .two-cols .col .checkbox-container-wrapper .sub-item .checkbox-container .checkmark:after {
  left: 5px;
  top: 1px;
}
.block-price-plan .div-form .item.action {
  margin-bottom: 0;
  text-align: center;
}
.block-price-plan .div-form .item.action button {
  min-width: 484px;
}
.block-price-plan .div-form .item.agree {
  text-align: center;
  padding-bottom: 50px;
}
.block-price-plan .div-form .item.agree .checkbox-container-wrapper {
  display: inline-block;
}
.block-price-plan .qrcode-deco {
  position: relative;
}
.block-price-plan .qrcode-deco .deco01 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.block-price-plan .qrcode-deco .deco02 {
  position: absolute;
  right: 0;
  top: 0;
}
.block-price-plan .price-plan-toggle-div .links-wrap {
  text-align: center;
}
.block-price-plan .price-plan-toggle-div .links-wrap .links {
  text-align: center;
  margin-top: 30px;
  display: inline-block;
  background-color: rgba(233, 239, 244, 0.48);
  border-radius: 4px;
  padding: 5px;
}
.block-price-plan .price-plan-toggle-div .links-wrap .links a {
  display: inline-block;
  color: #cccccc;
  font-size: 13px;
  padding: 5px 0;
  min-width: 100px;
}
.block-price-plan .price-plan-toggle-div .links-wrap .links a.active, .block-price-plan .price-plan-toggle-div .links-wrap .links a:hover {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
  color: #1D1D1D;
}
.block-price-plan .price-plan-toggle-div .details .detail {
  display: none;
}
.block-price-plan .price-plan-toggle-div .details .detail.active {
  display: block;
}
.block-price-plan .price-plan-toggle-div .details .detail .plan-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
.block-price-plan .price-plan-toggle-div .details .detail .plan-list .item {
  width: 240px;
  margin: 0 5px;
}
.block-price-plan .price-plan-toggle-div .details .detail .plan-list .item .box {
  background-color: #fff;
}
.block-price-plan .price-plan-toggle-div .details .detail .plan-list .item .box .line {
  height: 10px;
}
.block-price-plan .price-plan-toggle-div .details .detail .plan-list .item .box .line.light-blue {
  background-color: #DBECFF;
}
.block-price-plan .price-plan-toggle-div .details .detail .plan-list .item .box .line.blue {
  background-color: #4DA1FF;
}
.block-price-plan .price-plan-toggle-div .details .detail .plan-list .item .box .line.dark-blue {
  background-color: #252B3B;
}
.block-price-plan .price-plan-toggle-div .details .detail .plan-list .item .box .line.yellow {
  background-color: #FFB200;
}
.block-price-plan .price-plan-toggle-div .details .detail .plan-list .item .box .plan-deco {
  padding: 15px;
  min-height: 50px;
}
.block-price-plan .price-plan-toggle-div .details .detail .plan-list .item .box .plan-title {
  margin: 0 15px;
}
.block-price-plan .price-plan-toggle-div .details .detail .plan-list .item .box .plan-title h3 {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 700;
}
.block-price-plan .price-plan-toggle-div .details .detail .plan-list .item .box .plan-title p {
  font-size: 11px;
  color: #868686;
}
.block-price-plan .price-plan-toggle-div .details .detail .plan-list .item .box .plan-price {
  color: #4DA1FF;
  font-size: 16px;
  margin: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid #cccccc;
}
.block-price-plan .price-plan-toggle-div .details .detail .plan-list .item .box .plan-price b {
  font-weight: 700;
  font-size: 24px;
  display: inline-block;
  margin-left: 3px;
}
.block-price-plan .price-plan-toggle-div .details .detail .plan-list .item .box .plan-price span {
  font-size: 24px;
  display: inline-block;
  margin-left: 3px;
}
.block-price-plan .price-plan-toggle-div .details .detail .plan-list .item .box .plan-function {
  margin: 15px;
}
.block-price-plan .price-plan-toggle-div .details .detail .plan-list .item .box .plan-function .sub-item {
  font-size: 12px;
  color: #8A8A8A;
  margin: 10px 0;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0.8;
}
.block-price-plan .price-plan-toggle-div .details .detail .plan-list .item .box .plan-function .sub-item i {
  width: 15px;
  height: 15px;
  background-image: url(../images/icon_plan_uncheck.svg);
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 5px;
}
.block-price-plan .price-plan-toggle-div .details .detail .plan-list .item .box .plan-function .sub-item.available {
  color: #1D1D1D;
  opacity: 1;
}
.block-price-plan .price-plan-toggle-div .details .detail .plan-list .item .box .plan-function .sub-item.available i {
  background-image: url(../images/icon_plan_checked.svg);
}
.block-price-plan .price-plan-toggle-div .details .detail .plan-list .item .box .plan-action {
  text-align: center;
  margin: 30px 15px 0 15px;
  padding-bottom: 30px;
}
.block-price-plan .price-plan-toggle-div .details .detail .plan-list .item .box .plan-action button {
  font-size: 14px;
  min-width: 100%;
}
.block-price-plan .plan-details-div {
  margin-top: 50px;
}
.block-price-plan .plan-details-div .title {
  text-align: center;
}
.block-price-plan .plan-details-div .title h2 {
  display: inline-block;
  color: #4DA1FF;
  font-size: 24px;
  background-color: #DBECFF;
  border-radius: 20px 20px 0px 20px;
  display: inline-block;
  padding: 5px 0px;
  min-width: 400px;
  text-align: center;
}
.block-price-plan .plan-details-div .plan-table {
  margin-top: 50px;
}
.block-price-plan .plan-details-div .plan-table .table .tr {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #D9D9D9;
  padding: 0 20px;
}
.block-price-plan .plan-details-div .plan-table .table .tr .td {
  font-size: 15px;
  width: 16.6666666667%;
  padding: 10px 0;
  color: #1D1D1D;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.block-price-plan .plan-details-div .plan-table .table .tr .td i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
}
.block-price-plan .plan-details-div .plan-table .table .tr .td i.available {
  background-image: url(../images/icon_plan_detail_available.svg);
}
.block-price-plan .plan-details-div .plan-table .table .tr .td i.unavailable {
  background-image: url(../images/icon_plan_detail_unavailable.svg);
}
.block-price-plan .plan-details-div .plan-table .table .tr .td:nth-child(1) {
  text-align: left;
  justify-content: flex-start;
}
.block-price-plan .plan-details-div .plan-table .table .thead .tr .td {
  color: #757F98;
}
.block-price-plan .plan-details-div .plan-table .table .thbody {
  background-color: #fff;
}
.block-price-plan .plan-details-div .plan-table .table .tfoot {
  background-color: #fff;
}
.block-price-plan .plan-details-div .plan-table .table .tfoot .tr .td {
  width: 100%;
  color: #4DA1FF;
}
.block-price-plan .plan-details-div .plan-table.line-table .table .tr .td {
  width: 20%;
}
.block-price-plan .plan-customize {
  background-color: #4DA1FF;
  padding: 30px 0;
  margin-top: 60px;
}
.block-price-plan .plan-customize .block-outer {
  text-align: center;
}
.block-price-plan .plan-customize .block-outer h2, .block-price-plan .plan-customize .block-outer h3 {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.block-price-plan .plan-customize .block-outer .btn-darkBlue {
  font-size: 22px;
  min-width: 484px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 10px 0;
}

@media all and (max-width: 1300px) {
  .block-oa-account .sub-block-02 .two-cols {
    display: block;
  }
  .block-oa-account .sub-block-02 .two-cols .col01 {
    width: 100%;
    text-align: center;
  }
  .block-oa-account .sub-block-02 .two-cols .col01 img {
    max-width: 100%;
  }
  .block-oa-account .sub-block-02 .two-cols .col02 {
    width: 100%;
    margin-top: 50px;
    padding-left: 0;
  }
}
@media all and (max-width: 1260px) {
  .block-price-plan .block-outer {
    padding: 0 15px;
  }
  .block-price-plan .price-plan-toggle-div .details {
    overflow-x: auto;
  }
  .block-price-plan .price-plan-toggle-div .details .detail {
    min-width: 1260px;
    padding-bottom: 20px;
  }
  .block-price-plan.block-line-oa-price-plan .price-plan-toggle-div .details {
    overflow-x: auto;
  }
  .block-price-plan.block-line-oa-price-plan .price-plan-toggle-div .details .detail {
    min-width: 1000px;
  }
  .block-price-plan .plan-details-div .plan-table {
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .block-price-plan .plan-details-div .plan-table .table {
    min-width: 1000px;
  }
  .block-price-plan .plan-details-div .plan-table .table .tr .td {
    font-size: 13px;
  }
  .block-price-plan .plan-details-div .plan-table .table .tr .td i {
    width: 15px;
    height: 15px;
    background-size: 100% auto;
  }
}
@media all and (max-width: 1240px) {
  .block-step-div:before {
    background-color: transparent;
  }
  .block-step-div .block-outer .two-cols {
    display: block;
  }
  .block-step-div .block-outer .two-cols .col01 {
    width: 100%;
    background-color: #F5F7FA;
    padding: 40px 0;
    text-align: center;
  }
  .block-step-div .block-outer .two-cols .col02 {
    width: 100%;
    padding: 40px 0;
  }
  .block-step-div .step-list {
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto;
    display: inline-flex;
  }
  .block-step-div .step-list .item {
    display: block;
    width: calc(20% - 20px);
    padding: 0 10px;
  }
  .block-step-div .step-list .item.active .number:before {
    left: 60px;
    top: 20px;
    width: 15px;
    height: 1px;
  }
  .block-step-div .step-list .item.checked .number:before {
    left: 60px;
    top: 20px;
    width: 15px;
    height: 1px;
  }
  .block-step-div .step-list .item .number b {
    margin: 0 auto;
  }
  .block-step-div .step-list .item .info {
    width: 100%;
    padding-left: 0px;
    margin-bottom: 0px;
    margin-top: 10px;
  }
  .block-step-div .step-list .item .info h3 {
    font-size: 14px;
  }
  .block-step-div .step-list .item .info h3 span:nth-child(1) {
    display: none;
  }
  .block-step-div .step-list .item .info h3 span:nth-child(2) {
    display: block;
  }
  .block-step-div .step-list .item .info p {
    display: none;
  }
  .block-step-div .step-info-div {
    margin-left: 0;
    width: 60%;
    margin: 0 auto;
  }
  .block-step-div .step-info-div .info-middle {
    margin-top: 20px;
  }
  .block-step-div .step-info-div .form-div {
    padding-bottom: 30px;
  }
  .block-oa-account .sub-block-04 .create-brand {
    background-image: none;
  }
  .block-oa-account .sub-block-04 .create-brand .two-cols .col01 {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .block-oa-account .sub-block-04 .create-brand .two-cols .col02 {
    width: 100%;
  }
  .block-oa-account .sub-block-04 .create-step-list {
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto;
    display: block;
  }
  .block-oa-account .sub-block-04 .action {
    text-align: center;
  }
  .section-home .block-home .sub-block-01 .block-outer {
    width: calc(100% - 40px);
  }
  .section-home .block-home .info-outer {
    padding-right: 0;
  }
  .section-home .block-home .info h2 {
    font-size: 30px;
  }
}
@media all and (max-width: 1100px) {
  .block-oa-account .info h2 {
    font-size: 28px;
  }
  .block-oa-account .sub-block-06 {
    background-image: url(../images/line_OA_deco_03.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .block-oa-account .sub-block-06 .deco01 {
    display: none;
  }
  .block-oa-account .sub-block-06 .deco02 {
    display: none;
  }
  .section-home .block-home .info ul {
    font-size: 16px;
    padding-top: 0;
  }
  .section-home .block-home .info ul li {
    margin-top: 15px;
    background-size: auto 16px;
    padding-left: 22px;
  }
  .section-home .block-home .sub-block-01 {
    background-image: none;
  }
  .section-home .block-home .sub-block-01 .two-cols {
    display: block;
  }
  .section-home .block-home .sub-block-01 .two-cols .col01 {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    display: block;
  }
  .section-home .block-home .sub-block-01 .two-cols .col01 img {
    max-width: calc(100% + 20px);
    margin-right: -20px;
  }
  .section-home .block-home .sub-block-01 .two-cols .col02 {
    width: 100%;
    margin-top: 30px;
  }
  .section-home .block-home .sub-block-02 .two-cols {
    display: block;
  }
  .section-home .block-home .sub-block-02 .two-cols .col01 {
    width: 100%;
    text-align: center;
  }
  .section-home .block-home .sub-block-02 .two-cols .col02 {
    width: 100%;
    margin-top: 30px;
  }
  .section-home .block-home .sub-block-03 .two-cols {
    display: block;
  }
  .section-home .block-home .sub-block-03 .two-cols .col01 {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }
  .section-home .block-home .sub-block-03 .two-cols .col02 {
    width: 100%;
    margin-top: 30px;
  }
}
@media all and (max-width: 992px) {
  .block-step-div .step-info-div {
    width: 90%;
  }
}
@media all and (max-width: 920px) {
  .block-oa-account .sub-block-01 .five-troubled-wrap .five-troubled-list .box {
    padding: 15px;
    min-width: calc(50% - 30px);
  }
  .block-oa-account .sub-block-01 .five-troubled-wrap .five-troubled-list .box h3 {
    padding-top: 20px;
  }
  .block-oa-account .sub-block-01 .five-troubled-wrap .five-troubled-list .box p {
    margin-top: 10px;
  }
  .block-oa-account .sub-block-02 {
    margin-top: 50px;
  }
  .block-oa-account .sub-block-02 .two-cols .col02 .info h3 {
    font-size: 24px;
  }
  .block-oa-account .sub-block-02 .two-cols .col02 .info p {
    font-size: 16px;
  }
  .block-oa-account .sub-block-02 .two-cols .col02 .pipeline-list .item {
    padding: 10px 0;
  }
  .block-oa-account .sub-block-02 .two-cols .col02 .pipeline-list .item .box {
    background-position: left 0px;
  }
  .block-oa-account .sub-block-02 .two-cols .col02 .pipeline-list .item .box h4 {
    font-size: 18px;
    line-height: 1.2;
  }
  .block-oa-account .sub-block-02 .two-cols .col02 .pipeline-list .item .box p {
    font-size: 13px;
  }
  .block-oa-account .sub-block-03 {
    margin-top: 50px;
  }
  .block-oa-account .sub-block-03 .mative-functionality-list .mative-functionality-swiper .swiper-slide .box .desc h3 {
    font-size: 20px;
  }
  .block-oa-account .sub-block-03 .mative-functionality-list .mative-functionality-swiper .swiper-slide .box .desc p {
    font-size: 14px;
    margin-top: 10px;
  }
  .block-oa-account .sub-block-04 {
    margin-top: 50px;
    padding: 50px 0;
  }
  .block-oa-account .sub-block-05 {
    padding: 10px 0 50px 0;
  }
  .block-oa-account .sub-block-05 .info p {
    font-size: 16px;
  }
  .block-oa-account .sub-block-05 .client-list .client-swiper .swiper-slide .box {
    min-height: 265px;
  }
  .block-oa-account .sub-block-05 .client-list .client-swiper .swiper-slide .box .info {
    min-height: 140px;
  }
  .block-oa-account .sub-block-05 .client-list .client-swiper .swiper-slide .box .info p {
    font-size: 13px;
  }
  .block-price-plan .title h2 {
    font-size: 24px;
  }
  .block-price-plan .title p {
    font-size: 14px;
    margin-top: 0;
  }
  .block-price-plan .title p span {
    display: block;
  }
  .block-price-plan .plan-details-div .title h2 {
    min-width: 300px;
  }
  .block-price-plan .plan-customize .block-outer h2, .block-price-plan .plan-customize .block-outer h3 {
    font-size: 20px;
  }
  .block-price-plan .plan-customize .block-outer .btn-darkBlue {
    font-size: 20px;
    padding: 5px 0;
    min-width: 300px;
  }
  .block-price-plan .div-form .item {
    margin-bottom: 10px;
  }
  .block-price-plan .div-form .item .label {
    font-size: 18px;
  }
  .block-price-plan .div-form .item .controler .two-cols {
    display: block;
  }
  .block-price-plan .div-form .item .controler .two-cols .col {
    width: 100%;
    padding: 0;
  }
  .block-price-plan .div-form .item .controler .two-cols .col .sub-title {
    text-align: center;
  }
  .block-price-plan .div-form .item .controler .two-cols .col .sub-title h3 {
    min-width: 200px;
    font-size: 14px;
  }
}
@media all and (max-width: 850px) {
  .section-terms-service .block-terms-service .box .deco-div .deco01 {
    left: -150px;
    top: 80px;
  }
  .section-home .block-home .info h2 {
    font-size: 20px;
  }
}
@media all and (max-width: 768px) {
  .block-oa-account .info h2 .blue {
    display: block;
  }
  .block-oa-account .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .block-oa-account .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 20px;
  }
  .block-oa-account .sub-block-03 .mative-functionality-list {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 50px;
  }
  .block-oa-account .sub-block-03 .mative-functionality-list .swiper-button-next {
    display: none;
  }
  .block-oa-account .sub-block-03 .mative-functionality-list .swiper-button-prev {
    display: none;
  }
  .block-oa-account .sub-block-04 .create-brand .two-cols {
    padding-top: 0px;
  }
  .block-policy-terms-div .title h2 {
    font-size: 24px;
  }
  .block-policy-terms-div .title p {
    font-size: 16px;
    margin-top: 10px;
  }
}
@media all and (max-width: 700px) {
  .block-oa-account .sub-block-01:before {
    left: -50vw;
    width: 200vw;
  }
  .block-oa-account .sub-block-01:after {
    left: -45vw;
    width: 190vw;
  }
  .block-oa-account .sub-block-05 .client-list {
    padding: 0 15px;
  }
  .section-home .big-banner-div .info-outer {
    align-items: flex-end;
  }
  .section-home .big-banner-div .info-outer .info-div {
    margin-bottom: 50px;
  }
  .section-home .big-banner-div .info-outer .info-div .top-div h1 {
    font-size: 28px;
  }
  .section-home .big-banner-div .info-outer .info-div .top-div p {
    font-size: 16px;
  }
  .section-home .big-banner-div .info-outer .info-div .bottom-div {
    margin-top: 25vw;
  }
  .section-home .big-banner-div .img .web {
    display: none;
  }
  .section-home .big-banner-div .img .mobile {
    display: block;
  }
  .section-home .block-home .sub-block-01 {
    margin-top: 50px;
  }
  .section-home .block-home .sub-block-02 {
    margin-top: 50px;
  }
  .section-home .block-home .sub-block-02 .two-cols .col01 img {
    max-height: none;
    max-width: 100%;
  }
  .section-home .block-home .sub-block-03 {
    margin-top: 50px;
  }
}
@media all and (max-width: 640px) {
  .section-detail-div {
    padding: 30px 0;
    min-height: 240px;
  }
  .section-detail-div .logo {
    margin-bottom: 15px;
  }
  .section-detail-div .logo img {
    height: 40px;
  }
  .section-detail-div .logo.email img {
    height: 70px;
  }
  .section-detail-div .logo.mobile-hide {
    display: none;
  }
  .section-detail-div .info {
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .section-detail-div .info h2 {
    font-size: 20px;
  }
  .section-detail-div .info p {
    font-size: 13px;
  }
  .section-detail-div.section-step-div {
    padding: 0;
  }
  .section-detail-div.section-price-plan {
    padding-bottom: 0;
  }
  .section-home {
    padding-top: 0;
  }
  .section-home .big-banner-div .info-outer .info-div .bottom-div button {
    min-width: auto;
    width: 48%;
  }
  .section-home .block-home .info h2 {
    text-align: center;
  }
  .section-home .block-home .action {
    margin-top: 0;
  }
  .section-home .block-home .sub-block-01 .deco img {
    width: 35vw;
  }
  .section-home .block-home .sub-block-02 {
    margin-top: 80px;
  }
  .section-terms-service {
    padding: 60px 0;
  }
  .section-terms-service .block-terms-service .box {
    width: 90%;
    margin: 0 auto;
    padding: 30px 15px;
  }
  .section-terms-service .block-terms-service .box .info {
    margin: 0;
  }
  .section-terms-service .block-terms-service .box .info h2 {
    font-size: 20px;
  }
  .section-terms-service .block-terms-service .box .info p {
    font-size: 15px;
    margin-top: 15px;
  }
  .section-terms-service .block-terms-service .box .deco-div {
    display: none;
  }
  .section-terms-service .block-terms-service .box .div-form .item.action {
    margin-top: 30px;
  }
  .section-terms-service .block-terms-service .box .div-form .item .checkbox-container-wrapper {
    margin-top: 15px;
  }
  .section-terms-service .block-terms-service .box .div-form .item .checkbox-container-wrapper .sub-item {
    margin-top: 15px;
  }
  .section-terms-service .block-terms-service .box .div-form .item .checkbox-container-wrapper .sub-item .checkbox-container {
    padding-left: 25px;
  }
  .section-terms-service .block-terms-service .links {
    margin-top: 15px;
  }
  .section-terms-service .block-terms-service .links a {
    font-size: 14px;
  }
  .block-oa-account {
    padding-top: 50px;
  }
  .block-oa-account .info h2 {
    font-size: 28px;
  }
  .block-oa-account .sub-block-01 .info P {
    font-size: 20px;
    margin-top: 10px;
  }
  .block-oa-account .sub-block-01 .five-troubled-wrap {
    margin-top: 50px;
  }
  .block-oa-account .sub-block-01 .five-troubled-wrap .five-troubled-list .item {
    width: 50%;
  }
  .block-oa-account .sub-block-01 .five-troubled-wrap .five-troubled-list .box {
    margin: 10px;
    padding: 10px;
    min-width: auto;
  }
  .block-oa-account .sub-block-01 .five-troubled-wrap .five-troubled-list .box h3 {
    font-size: 16px;
  }
  .block-oa-account .sub-block-01 .five-troubled-wrap .five-troubled-web {
    display: none;
  }
  .block-oa-account .sub-block-01 .five-troubled-wrap .five-troubled-mobile {
    display: block;
  }
  .block-oa-account .sub-block-01 .action button {
    min-width: 100%;
  }
  .block-oa-account .sub-block-03 .info p {
    min-width: 100%;
  }
  .block-oa-account .sub-block-04 .action button {
    min-width: 100%;
  }
  .block-oa-account .sub-block-04 .create-step-list .item .desc h3 {
    font-size: 20px;
  }
  .block-oa-account .sub-block-04 .create-step-list .item .desc p {
    font-size: 13px;
  }
  .block-oa-account .sub-block-06 {
    min-height: 280px;
  }
  .block-oa-account .sub-block-06 .free-consultation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .block-oa-account .sub-block-06 .free-consultation button {
    font-size: 20px;
    min-width: 48%;
    margin-top: 15px;
    margin-left: 0;
    margin-right: 0;
  }
  .block-oa-account .sub-block-06 h3 {
    font-size: 20px;
  }
  .block-oa-account .sub-block-07 h3 {
    font-size: 20px;
  }
  .block-oa-account .sub-block-07 button {
    font-size: 20px;
    min-width: 100%;
  }
  .div-form .item .label {
    font-size: 14px;
  }
  .div-form .item .controler .box {
    padding: 7px 7px;
    min-height: 20px;
  }
  .div-form .item .controler .box input {
    font-size: 14px;
  }
  .div-form .item .controler .box textarea {
    font-size: 14px;
  }
  .div-form .item.action {
    margin-top: 20px;
  }
  .div-form .item.action.two-btns {
    margin-top: 20px;
  }
  .div-form .item.action .btn-blue {
    font-size: 18px;
    padding: 2px 0;
    line-height: 32px;
  }
  .div-form .item.action .btn-white {
    font-size: 18px;
    padding: 2px 0;
    line-height: 30px;
  }
  .div-form .item .checkbox-container-wrapper .sub-item {
    font-size: 14px;
  }
  .div-form .item .checkbox-container-wrapper .sub-item .checkbox-container {
    font-size: 14px;
  }
  .div-or {
    font-size: 18px;
    padding: 15px 0;
  }
  .div-signup .item button {
    padding: 5px 10px;
    font-size: 14px;
  }
  .div-signup .item button i {
    height: 24px;
  }
  .div-remark {
    margin-top: 20px;
  }
  .div-remark p {
    font-size: 13px;
  }
  .block-step-div .step-list .item {
    width: calc(20% - 10px);
    padding: 0 5px;
  }
  .block-step-div .step-list .item.active .number:before {
    left: 52px;
  }
  .block-step-div .step-list .item.checked .number:before {
    left: 52px;
  }
  .block-step-div .step-list .item .info h3 {
    font-size: 13px;
  }
  .block-step-div .step-info-div .form-div .item {
    display: block;
  }
  .block-step-div .step-info-div .form-div .item .label {
    width: 100%;
  }
  .block-step-div .step-info-div .form-div .item .controler {
    width: 100%;
  }
  .block-step-div .step-info-div .form-div.form-wide-label-div .item .label {
    width: 100%;
  }
  .block-step-div .step-info-div .form-div.form-wide-label-div .item .controler {
    width: 100%;
  }
  .block-price-plan .price-plan-toggle-div .details {
    margin-right: -15px;
    padding-right: 15px;
  }
  .block-price-plan .plan-details-div .plan-table {
    margin-right: -15px;
    padding-right: 15px;
  }
  .block-price-plan .div-form .item .remark {
    font-size: 14px;
  }
  .block-price-plan .div-form .item .controler .qrcode {
    padding: 10vw 0;
  }
  .block-price-plan .div-form .item .controler .qrcode .web {
    display: none;
  }
  .block-price-plan .div-form .item .controler .qrcode .mobile {
    display: block;
  }
  .block-price-plan .div-form .item .controler .two-cols .col .checkbox-container-wrapper .sub-item .checkbox-container {
    margin-top: -3px;
  }
  .block-price-plan .div-form .item .controler .two-cols .col .checkbox-container-wrapper .sub-item b {
    font-size: 12px;
  }
  .block-price-plan .div-form .item.action button {
    min-width: 300px;
  }
  .block-price-plan .qrcode-deco {
    overflow: hidden;
  }
  .block-price-plan .qrcode-deco .deco01 {
    left: -20vw;
    bottom: -5vw;
  }
  .block-price-plan .qrcode-deco .deco01 img {
    transform: scale(0.8);
    transform-origin: left bottom;
  }
  .block-price-plan .qrcode-deco .deco02 {
    top: 9vw;
    right: -13vw;
  }
  .block-price-plan .qrcode-deco .deco02 img {
    transform: scale(0.8);
    transform-origin: right;
  }
}
@media all and (max-width: 480px) {
  .block-oa-account .sub-block-01 .five-troubled-wrap .five-troubled-list .item {
    width: 100%;
  }
  .block-oa-account .sub-block-02 .two-cols .col01 img {
    max-width: 70%;
  }
  .block-oa-account .sub-block-04 .info p {
    min-width: 100%;
  }
}
.body-mobile-user-registration main {
  margin-top: 60px;
}

.mobile-user-registration-header-div {
  background-color: #4DA1FF;
  position: relative;
  border-top: 10px solid #66AEFE;
}
.mobile-user-registration-header-div .title h2 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-user-registration-div {
  background-color: #F5F7FA;
  min-height: calc(100vh - 60px);
}
.mobile-user-registration-div .user-registration-process {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 15px;
}
.mobile-user-registration-div .user-registration-process .user-header .img {
  text-align: center;
  padding: 50px 0 15px 0;
}
.mobile-user-registration-div .user-registration-process .user-header .img b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  background-color: #DBECFF;
  border-radius: 100px;
  overflow: hidden;
}
.mobile-user-registration-div .user-registration-process .user-header .img b img {
  width: 100%;
}
.mobile-user-registration-div .user-registration-process .user-header .img b img.icon {
  width: auto;
}
.mobile-user-registration-div .user-registration-process .user-header .desc {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #1D1D1D;
}
.mobile-user-registration-div .user-registration-process .links {
  background-color: #fff;
  padding: 5px;
  border-radius: 8px;
  text-align: center;
  margin-top: 30px;
}
.mobile-user-registration-div .user-registration-process .links a {
  color: #000;
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  padding: 8px 0px;
  border-bottom: 2px solid transparent;
}
.mobile-user-registration-div .user-registration-process .links a:hover {
  color: #1890FF;
}
.mobile-user-registration-div .user-registration-process .links a.active {
  color: #1890FF;
  border-bottom: 2px solid #1890FF;
}
.mobile-user-registration-div .user-registration-process .member-info-div {
  margin-top: 20px;
}
.mobile-user-registration-div .user-registration-process .form-div.form-member-info-div {
  padding-top: 20px;
}
.mobile-user-registration-div .user-registration-process .form-div .item {
  margin: 15px 0;
}
.mobile-user-registration-div .user-registration-process .form-div .item .label {
  font-size: 16px;
}
.mobile-user-registration-div .user-registration-process .form-div .item .label span {
  color: #e53935;
}
.mobile-user-registration-div .user-registration-process .form-div .item .controller input {
  border: none;
  border-radius: 0;
  font-size: 17px;
  min-height: 48px;
}
.mobile-user-registration-div .user-registration-process .form-div .item .controller input:disabled {
  border: 1px solid #D9D9D9;
  background-color: #F5F5F5;
}
.mobile-user-registration-div .user-registration-process .form-div .item .controller input.error-red {
  border: 1px solid #FF4D4F;
}
.mobile-user-registration-div .user-registration-process .form-div .item .controller .select-div {
  position: relative;
  background: #fff;
}
.mobile-user-registration-div .user-registration-process .form-div .item .controller .select-div select {
  border: none;
  border-radius: 0;
  background-color: transparent;
  font-size: 17px;
  min-height: 48px;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  z-index: 2;
}
.mobile-user-registration-div .user-registration-process .form-div .item .controller .select-div select.placeholder-shown {
  color: #B1B1B1;
}
.mobile-user-registration-div .user-registration-process .form-div .item .controller .select-div select.placeholder-hidden {
  color: #1D1D1D;
}
.mobile-user-registration-div .user-registration-process .form-div .item .controller .select-div i {
  position: absolute;
  right: 10px;
  top: 12px;
  display: inline-block;
  width: 12px;
  height: 20px;
  background-image: url(./../images/icon_dropdown_arrow_down.svg);
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.mobile-user-registration-div .user-registration-process .form-div .item .controller .three-cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mobile-user-registration-div .user-registration-process .form-div .item .controller .three-cols .col {
  width: calc(33.3333333333% - 5px);
}
.mobile-user-registration-div .user-registration-process .form-div .item .error {
  display: none;
  font-size: 14px;
  margin-top: 5px;
}
.mobile-user-registration-div .user-registration-process .form-div .item .error.active {
  display: block;
  color: #FF4D4F;
}
.mobile-user-registration-div .user-registration-process .form-div .item .two-cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
}
.mobile-user-registration-div .user-registration-process .form-div .item .two-cols a {
  color: #4DA1FF;
}
.mobile-user-registration-div .user-registration-process .form-div .item .remember-password .checkbox-container .checkmark {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  border-color: #cccccc;
}
.mobile-user-registration-div .user-registration-process .form-div .item .remember-password .checkbox-container input:checked ~ .checkmark {
  border-color: #4DA1FF;
}
.mobile-user-registration-div .user-registration-process .form-div .item .remember-password .checkbox-container input:checked ~ .checkmark:before {
  width: 20px;
  height: 20px;
  top: 0px;
  left: 0px;
  border-radius: 100px;
}
.mobile-user-registration-div .user-registration-process .form-div .item .remember-password .checkbox-container input:checked ~ .checkmark:after {
  left: 7.5px;
  top: 3.5px;
}
.mobile-user-registration-div .user-registration-process .form-div .item.remark .box {
  background-color: #DBECFF;
  padding: 8px 15px;
  color: #4DA1FF;
  font-size: 14px;
  border-radius: 2px;
}
.mobile-user-registration-div .user-registration-process .form-div .item.action button {
  min-height: 49px;
  border-radius: 100px;
  font-size: 18px;
  margin: 10px 0;
}
.mobile-user-registration-div .user-registration-process .form-div .item.action button.btn-blue {
  background-color: #4DA1FF;
  color: #fff;
  border: 1px solid #4DA1FF;
}
.mobile-user-registration-div .user-registration-process .form-div .item.action button.btn-blue:hover {
  background-color: #252B3B;
  border: 1px solid #252B3B;
  opacity: 1;
  color: #fff;
}
.mobile-user-registration-div .user-registration-process .form-div .item.action button.btn-white {
  background-color: #fff;
  border: 1px solid #4DA1FF;
  color: #4DA1FF;
}
.mobile-user-registration-div .user-registration-process .form-div .item.action button.btn-white:hover {
  background-color: #4DA1FF;
  border: 1px solid #4DA1FF;
  opacity: 1;
  color: #4DA1FF;
}
.mobile-user-registration-div .user-registration-process .form-div .item.refresh {
  text-align: center;
  margin: 20px;
}
.mobile-user-registration-div .user-registration-process .form-div .item.refresh a {
  display: inline-block;
  font-size: 14px;
  color: #1D1D1D;
}
.mobile-user-registration-div .user-registration-process .form-div .item.refresh a:hover {
  color: #4DA1FF;
}
.mobile-user-registration-div .user-registration-process .form-div .item .registration-result {
  margin-top: 10vh;
}
.mobile-user-registration-div .user-registration-process .form-div .item .registration-result .img {
  text-align: center;
}
.mobile-user-registration-div .user-registration-process .form-div .item .registration-result .desc {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  color: #1D1D1D;
}
.mobile-user-registration-div .user-registration-process .form-div .top-div {
  min-height: 180px;
}
.mobile-user-registration-div .user-registration-process .form-div .top-div.registration-result-top {
  min-height: 60vh;
}/*# sourceMappingURL=main.css.map */