@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Heebo:wght@100..900&family=Noto+Sans+SC:wght@100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Secular+One&display=swap");

@font-face {
  font-family: "Made Regular";
  src: url("../fonts/Made-Tommy_regular.woff") format("woff"),
    url("../fonts/Made-Tommy_regular.woff2") format("woff2");
}
@font-face {
  font-family: "Made Medium";
  src: url("../fonts/Made-Tommy_medium.woff") format("woff"),
    url("../fonts/Made-Tommy_medium.woff2") format("woff2");
}
@font-face {
  font-family: "Made Bold";
  src: url("../fonts/Made-Tommy_bold.woff") format("woff"),
    url("../fonts/Made-Tommy_bold.woff2") format("woff2");
}
@font-face {
  font-family: "Made Extra";
  src: url("../fonts/Made-Tommy_extrabold.woff") format("woff"),
    url("../fonts/Made-Tommy_extrabold.woff2") format("woff2");
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  background-color: #f9f9f9;
  color: #234354;
  overflow-x: hidden;
}

.subheader {
  display: block;
  position: relative;
  width: 100%;
  z-index: 9;
  background: #2fc3e5;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  user-select: none;
  -webkit-user-select: none;
}
.subheader > .headercover {
  display: block;
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  height: 28px;
}
.subheader > .headercover > .left {
  display: block;
  position: relative;
  float: left;
  height: 28px;
  line-height: 28px;
  font-size: 12px;
  color: #ffffff;
}
.subheader > .headercover > .right {
  display: block;
  position: relative;
  float: right;
}
.subheader > .headercover > .right > a.feedback {
  display: block;
  position: relative;
  float: left;
  font-size: 12px;
  line-height: 28px;
  height: 28px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: rgba(0, 0, 0, 0.04);
  padding: 0px 12px 0px 30px;
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.subheader > .headercover > .right > a.feedback:hover {
  background: rgba(0, 0, 0, 0.08);
}
.subheader > .headercover > .right > a.feedback > i {
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  font-size: 16px;
  top: calc(50% - 8px);
  left: 10px;
}
.subheader > .headercover > .right > .language {
  display: block;
  position: relative;
  float: right;
}
.subheader > .headercover > .right > .language > .selected {
  display: block;
  position: relative;
  float: left;
  height: 28px;
  line-height: 28px;
  font-size: 12px;
  font-weight: 600;
  color: #000000;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 18px 0px 38px;
  cursor: pointer;
}
.subheader > .headercover > .right > .language > .selected > span {
  display: block;
  position: absolute;
  height: 14px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  width: 22px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  top: calc(50% - 7px);
  left: 10px;
  border: solid 1px rgba(0, 0, 0, 0.8);
}
.subheader > .headercover > .right > .language > .selected > i {
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  font-size: 16px;
  top: calc(50% - 7px);
  right: 0px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.subheader > .headercover > .right > .language.active > .selected > i {
  top: calc(50% - 8px);
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.subheader > .headercover > .right > .language > .list {
  display: block;
  position: absolute;
  width: 120px;
  background: #ffffff;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.4);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  top: 28px;
  right: 0;
  padding: 6px 0px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.subheader > .headercover > .right > .language.active > .list {
  opacity: 1;
  visibility: visible;
  top: 32px;
}
.subheader > .headercover > .right > .language > .list a {
  display: block;
  position: relative;
  width: 100%;
  height: 28px;
  line-height: 28px;
  font-size: 14px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 10px;
  color: #000000;
}
.header {
  display: block;
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 8;
  background: #ffffff;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  border-bottom: solid 4px #fcd404;
  user-select: none;
  -webkit-user-select: none;
}
.header > .headercover {
  display: block;
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  height: 54px;
}
.header > .headercover > a.logo {
  display: block;
  position: relative;
  float: left;
  line-height: 0px;
  height: 54px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 13px 0px;
}
.header > .headercover > a.logo > img {
  display: block;
  position: relative;
  height: 100%;
}
.header > .headercover > .action {
  display: block;
  position: relative;
  float: right;
}
.header > .headercover > .action > .menu {
  display: block;
  position: relative;
  float: left;
  margin: 0px 40px 0px 0px;
}
.header > .headercover > .action > .menu a {
  display: block;
  position: relative;
  float: left;
  height: 54px;
  line-height: 54px;
  font-size: 14px;
  color: #0f4759;
  margin: 0px 54px 0px 0px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  font-weight: 600;
}
.header > .headercover > .action > .menu a:last-child {
  margin: 0px;
}
.header > .headercover > .action > .login {
  display: block;
  position: relative;
  float: left;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 10px 0px;
}
.header > .headercover > .action > .login a {
  display: block;
  position: relative;
  float: left;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  height: 34px;
  line-height: 34px;
  padding: 0px 16px;
  font-size: 14px;
  background: #fcd404;
  color: #0f4759;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.header > .headercover > .action > .login a:hover {
  background: #2fc3e5;
  color: #ffffff;
}
.header > .headercover > .action > .icon a:last-child {
  margin: 0px;
}
.header > .headercover > .action > .icon a > i {
  display: block;
  position: absolute;
  width: 20px;
  line-height: 20px;
  height: 20px;
  text-align: center;
  font-size: 20px;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
}

.slider {
  display: block;
  position: relative;
  width: 100%;
}
.slider > .swiper {
  display: block;
  position: relative;
  width: 100%;
}
.slider > .swiper .swiper-slide .slidebox {
  display: block;
  position: relative;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.04);
  user-select: none;
  -webkit-user-select: none;
}
.slider > .swiper .swiper-slide .slidebox > img {
  display: block;
  position: relative;
  width: 100%;
}
.slider > .swiper .swiper-slide .slidebox > .container {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
}
.slider > .swiper .swiper-slide .slidebox > .container > .slidecover {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 1180px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.slider
  > .swiper
  .swiper-slide
  .slidebox
  > .container
  > .slidecover
  > .content {
  display: block;
  position: relative;
  width: 100%;
}
.slider
  > .swiper
  .swiper-slide
  .slidebox
  > .container
  > .slidecover
  > .content
  > h1 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 34px;
  line-height: 44px;
  font-weight: 800;
  color: #ffffff;
  margin: 0px 0px 14px 0px;
}
.slider
  > .swiper
  .swiper-slide
  .slidebox
  > .container
  > .slidecover
  > .content
  > h2 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.4px;
  margin: 0px 0px 30px 0px;
  user-select: none;
  -webkit-user-select: none;
}
.slider
  > .swiper
  .swiper-slide
  .slidebox
  > .container
  > .slidecover
  > .content
  > a {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 18px;
  height: 42px;
  line-height: 40px;
  color: #000000;
  background: #fcd404;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  font-size: 16px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.slider
  > .swiper
  .swiper-slide
  .slidebox
  > .container
  > .slidecover
  > .content
  > a:hover {
  background: #2fc3e5;
  color: #ffffff;
}

.certified {
  display: block;
  position: relative;
  width: 100%;
  z-index: 1;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
}
.certified > .certcover {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}
.certified > .certcover > div {
  display: block;
  position: absolute;
  right: 20px;
  line-height: 0px;
  height: 100px;
  top: -50px;
  white-space: nowrap;
}
.certified > .certcover > div img {
  display: inline-block;
  position: relative;
  width: 100px;
  margin: 0px 8px 0px 0px;
}
.certified > .certcover > div img:last-child {
  margin: 0px;
}
.fullbanner {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  margin: 0px 0px 40px 0px;
}
.fullbanner > .fullcover {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  height: 400px;
  background-color: #f7f7fa;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 4px;
  -webkit-border-radius: 4px;
}
.fullbanner > .fullcover > .content {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 40px;
  text-align: right;
}
.fullbanner > .fullcover > .content > div {
  display: block;
  position: relative;
  width: 100%;
  font-size: 34px;
  font-weight: 800;
  line-height: 40px;
  margin: 0px 0px 10px 0px;
  color: #0f4759;
}
.fullbanner > .fullcover > .content > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  margin: 0px 0px 30px 0px;
  color: #0f4759;
}
.fullbanner > .fullcover > .content > a {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  background: #2fc3e5;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  height: 42px;
  line-height: 40px;
  font-size: 14px;
  color: #ffffff;
}
.products {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  margin: 0px 0px 40px 0px;
}
.products > .productcover {
  display: flex;
  position: relative;
  max-width: 1180px;
  height: 400px;
  width: 100%;
  margin: 0 auto;
  background-color: #f7f7fa;
  align-items: center;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.products > .productcover .productbox {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 40px;
}
.products > .productcover .productbox > img {
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.products > .productcover .productbox > .title {
  display: block;
  position: relative;
  width: 100%;
  font-size: 34px;
  font-weight: 800;
  line-height: 40px;
  margin: 0px 0px 10px 0px;
}
.products > .productcover .productbox > .text {
  display: block;
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  margin: 0px 0px 30px 0px;
}
.products > .productcover .productbox > .link {
  display: block;
  position: relative;
  width: 100%;
}
.products > .productcover .productbox > .link > a {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  background: #2fc3e5;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  height: 42px;
  line-height: 40px;
  font-size: 14px;
  color: #ffffff;
}
.summary {
  display: block;
  position: relative;
  width: 100%;
  background-color: #f7f7fa;
  background-repeat: no-repeat;
  background-position: 50% 0%;
  background-size: cover;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
}
.summary > .sumcover {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 60px 0px 0px 0px;
  text-align: center;
}
.summary > .sumcover > .title {
  display: block;
  position: relative;
  width: 100%;
  font-size: 34px;
  font-weight: 800;
  line-height: 40px;
  margin: 0px 0px 10px 0px;
}
.summary > .sumcover > .text {
  display: block;
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  margin: 0px 0px 80px 0px;
  color: #0f4759;
}
.summary > .sumcover > .note {
  display: block;
  position: relative;
  width: 100%;
  height: 420px;
}
.summary > .sumcover > .note .box {
  display: block;
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  -webkit-borde-radius: 50%;
  background: #fcd404;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 28px 12px;
  z-index: 1;
}
.summary > .sumcover > .note .box:nth-child(1) {
  bottom: -14px;
  left: 0px;
}
.summary > .sumcover > .note .box:nth-child(2) {
  bottom: 220px;
  left: 200px;
}
.summary > .sumcover > .note .box:nth-child(3) {
  top: -40px;
  left: calc(50% - 80px);
}
.summary > .sumcover > .note .box:nth-child(4) {
  bottom: 220px;
  right: 200px;
}
.summary > .sumcover > .note .box:nth-child(5) {
  bottom: -14px;
  right: 0px;
}
.summary > .sumcover > .note .box > img {
  display: block;
  position: relative;
  width: 68px;
  margin: 0px auto 8px auto;
}
.summary > .sumcover > .note .box > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  font-weight: 600;
}
.testimonial {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
}
.testimonial > .testcover {
  display: block;
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 60px 0px;
}
.testimonial > .testcover > .title {
  display: block;
  position: relative;
  width: 100%;
  font-size: 44px;
  line-height: 54px;
  margin: 0px 0px 40px 0px;
  text-align: center;
  font-weight: 700;
  color: #0f4759;
  text-transform: uppercase;
}
.testimonial > .testcover > .review {
  display: block;
  position: relative;
  width: 100%;
  margin: 0px 0px 40px 0px;
}
.testimonial > .testcover > .review .testbox {
  display: block;
  position: relative;
  width: 100%;
  background: #ffffff;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.1);
  padding: 26px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  color: #0f4759;
}
.testimonial > .testcover > .review .testbox > .name {
  display: block;
  position: relative;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  margin: 0px 0px 16px 0px;
}
.testimonial > .testcover > .review .testbox > .text {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  max-height: 60px;
  overflow: hidden;
  margin: 0px 0px 20px 0px;
}
.testimonial > .testcover > .review .testbox > .stars {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.testimonial > .testcover > .review .testbox > .stars i {
  display: block;
  position: relative;
  float: left;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-size: 24px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  background: rgba(0, 0, 0, 0.06);
  margin: 0px 4px 0px 0px;
  color: #4991f4;
}
.testimonial > .testcover > .note {
  display: block;
  position: relative;
  width: 100%;
  font-size: 16px;
  color: #0f4759;
  text-align: center;
  margin: 0px 0px 30px 0px;
}
.testimonial > .testcover > .link {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
}
.testimonial > .testcover > .link > a {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 24px;
  height: 46px;
  line-height: 46px;
  color: #234354;
  background: #fcd404;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.location {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  margin: 0px 0px 60px 0px;
}
.location > .locationcover {
  display: block;
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 80px 20px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  background-repeat: no-repeat !important;
  background-position: 50% 50% !important;
  background-size: cover !important;
  color: #ffffff;
  text-align: center;
  background-image: url(../images/store_bg_long.png);
}
.location > .locationcover > .icon {
  display: inline-block;
  position: relative;
  margin: 0px 0px 20px 0px;
}
.location > .locationcover > .icon > i {
  display: block;
  position: relative;
  width: 74px;
  line-height: 74px;
  font-size: 74px;
  height: 74px;
}
.location > .locationcover > .title {
  display: block;
  position: relative;
  width: 100%;
  font-size: 54px;
  line-height: 64px;
  font-weight: 800;
  margin: 0px 0px 10px 0px;
}
.location > .locationcover > a {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 24px;
  height: 46px;
  line-height: 46px;
  color: #234354;
  background: #ffffff;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.quote {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  background: #f7f7fa;
}
.quote > .quotecover {
  display: block;
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 20px 0px 60px 0px;
  overflow: hidden;
}
.quote > .quotecover > .title {
  display: flex;
  align-items: flex-start;
  position: absolute;
  width: 320px;
  top: 0;
  left: 0;
  flex-wrap: wrap;
}
.quote > .quotecover > .title > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 34px;
  line-height: 42px;
  text-transform: uppercase;
  font-weight: 600;
  color: #234354;
  padding-bottom: 10px;
  font-weight: 800;
}

.quote > .quotecover > .title > a {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 24px;
  height: 46px;
  line-height: 46px;
  color: #234354;
  background: #79caf3;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.quote > .quotecover > .title > a:hover {
  background: #fcd404;
  color: #ffffff;
}

.quote > .quotecover > .list {
  display: flex;
  gap: 20px;
  position: relative;
  float: right;
  width: calc(100% - 360px);
}
.quote > .quotecover > .list .box {
  display: block;
  position: relative;
  width: 100%;
}
.quote > .quotecover > .list .box > .image {
  display: block;
  position: relative;
  width: 100%;
  height: 240px;
  background-color: #0f4759;
  background-position: 50% 50% !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0px 0px 10px 0px;
}
.quote > .quotecover > .list .box > .message {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.widget {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
}
.widget > .widgetcover {
  display: block;
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 80px 0px;
  overflow: hidden;
}
.widget > .widgetcover > .left {
  display: block;
  position: relative;
  width: calc(100% - 360px);
  float: left;
}
.widget > .widgetcover > .left .box {
  display: block;
  position: relative;
  float: left;
  width: 50%;
  margin: 0px 0px 40px 0px;
}
.widget > .widgetcover > .left .box:nth-child(3),
.widget > .widgetcover > .left .box:nth-child(4) {
  margin: 0px;
}
.widget > .widgetcover > .left .box > .title {
  display: inline-block;
  position: relative;
  font-size: 18px;
  font-weight: 800;
  margin: 0px 0px 28px 0px;
}
.widget > .widgetcover > .left .box > .title > span {
  display: block;
  position: absolute;
  width: 36px;
  height: 3px;
  background: #000000;
  bottom: -16px;
  left: 0px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
.widget > .widgetcover > .left .box > .list {
  display: block;
  position: relative;
  width: 100%;
}
.widget > .widgetcover > .left .box > .list a {
  display: inline-block;
  position: relative;
  font-size: 14px;
  margin: 0px 20px 0px 0px;
  color: #000000;
}
.widget > .widgetcover > .left .box > .list a:last-child {
  margin: 0px;
}
.widget > .widgetcover > .right {
  display: block;
  position: relative;
  width: 320px;
  float: right;
}
.widget > .widgetcover > .right > .title {
  display: inline-block;
  position: relative;
  font-size: 18px;
  font-weight: 800;
  margin: 0px 0px 28px 0px;
}
.widget > .widgetcover > .right > .title > span {
  display: block;
  position: absolute;
  width: 36px;
  height: 3px;
  background: #000000;
  bottom: -16px;
  left: 0px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
.widget > .widgetcover > .right > .address {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
}
.footer {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  background: #2fc3e5;
  color: #ffffff;
}
.footer > .footercover {
  display: block;
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 20px 0px;
  text-align: center;
  font-size: 12px;
}
.dashboard {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
}
.dashboard > .dashcover {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 60px 0px;
}
.dashboard > .dashcover > .sidemenu {
  display: block;
  position: relative;
  float: left;
  width: 280px;
}
.dashboard > .dashcover > .sidemenu a {
  display: block;
  position: relative;
  width: 100%;
  height: 52px;
  line-height: 52px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 14px 0px 46px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  color: #234354;
  font-size: 14px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.dashboard > .dashcover > .sidemenu a:hover {
  background: rgba(0, 0, 0, 0.02);
}
.dashboard > .dashcover > .sidemenu a.active {
  background: #79caf3;
  color: #ffffff;
}
.dashboard > .dashcover > .sidemenu a > i {
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 20px;
  left: 14px;
  top: calc(50% - 10px);
}
.dashboard > .dashcover > .content {
  display: block;
  position: relative;
  float: right;
  width: calc(100% - 320px);
}
.dashboard > .dashcover > .content > .account {
  display: block;
  position: relative;
  width: 100%;
}
.dashboard > .dashcover > .content > .account > .title {
  display: block;
  position: relative;
  width: 100%;
  font-size: 20px;
  height: 20px;
  line-height: 20px;
  font-weight: 800;
  margin: 0px 0px 26px 0px;
}
.dashboard > .dashcover > .content > .account > .title > a {
  display: block;
  position: absolute;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  border: solid 1px #2fc3e5;
  top: calc(50% - 16px);
  right: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 12px 0px 36px;
  color: #2fc3e5;
  font-weight: 400;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.dashboard > .dashcover > .content > .account > .title > a:hover {
  background: #2fc3e5;
  color: #ffffff;
}
.dashboard > .dashcover > .content > .account > .title > a > i {
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 20px;
  top: calc(50% - 10px);
  left: 12px;
}
.dashboard > .dashcover > .content > .account > .profile {
  display: block;
  position: relative;
  width: 100%;
}
.dashboard > .dashcover > .content > .account > .profile .row {
  display: block;
  position: relative;
  float: left;
  width: calc(50% - 10px);
  margin: 0px 0px 20px 0px;
}
.dashboard > .dashcover > .content > .account > .profile .row:nth-child(even) {
  float: right;
}
.dashboard > .dashcover > .content > .account > .profile .row:nth-child(3) {
  margin: 0px;
}
.dashboard > .dashcover > .content > .account > .profile .row:nth-child(4) {
  margin: 0px;
}
.dashboard > .dashcover > .content > .account > .profile .row > div {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  margin: 0px 0px 8px 0px;
  color: #969696;
}
.dashboard > .dashcover > .content > .account > .profile .row > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
}
.dashboard > .dashcover > .content > .account > .form {
  display: block;
  position: relative;
  width: 100%;
}
.dashboard > .dashcover > .content > .account > .form .row {
  display: block;
  position: relative;
  float: left;
  width: calc(50% - 10px);
  margin: 20px 0px 0px 0px;
}
.dashboard > .dashcover > .content > .account > .form .row:nth-child(even) {
  float: right;
}
.dashboard > .dashcover > .content > .account > .form .row:nth-child(1) {
  margin: 0px;
}
.dashboard > .dashcover > .content > .account > .form .row:nth-child(2) {
  margin: 0px;
}
.dashboard > .dashcover > .content > .account > .form .row > div {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  margin: 0px 0px 8px 0px;
}
.dashboard > .dashcover > .content > .account > .form .row > input {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  border: solid 1px rgba(0, 0, 0, 0.2);
  line-height: 38px;
  line-height: 36px;
  padding: 0px 14px;
}
.dashboard > .dashcover > .content > .account > .btn {
  display: block;
  position: relative;
  width: 100%;
  margin: 40px 0px 0px 0px;
}
.dashboard > .dashcover > .content > .account > .btn > a {
  display: inline-block;
  position: relative;
  height: 40px;
  line-height: 38px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  border: solid 1px #2fc3e5;
  color: #2fc3e5;
  font-size: 14px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
}
.dashboard > .dashcover > .content > .account > .line {
  display: block;
  position: relative;
  width: 100%;
  margin: 40px 0px;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}
.dashboard > .dashcover > .content > .account > .shipping {
  display: block;
  position: relative;
  width: 100%;
}
.dashboard > .dashcover > .content > .account > .shipping .empty {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 40px 20px;
  text-align: center;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0px 0px 20px 0px;
}
.dashboard > .dashcover > .content > .account > .shipping > .list {
  display: block;
  position: relative;
  width: 100%;
}
.dashboard > .dashcover > .content > .account > .shipping > .list .adbox {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 20px 140px 20px 20px;
  border: solid 1px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0px 0px 8px 0px;
  background: #ffffff;
}
.dashboard
  > .dashcover
  > .content
  > .account
  > .shipping
  > .list
  .adbox.default {
  background: rgba(0, 0, 0, 0.02);
  border: solid 1px #79caf3;
}
.dashboard
  > .dashcover
  > .content
  > .account
  > .shipping
  > .list
  .adbox:last-child {
  margin: 0px;
}
.dashboard
  > .dashcover
  > .content
  > .account
  > .shipping
  > .list
  .adbox
  > .contact {
  display: block;
  position: relative;
  width: 100%;
  margin: 0px 0px 10px 0px;
}
.dashboard
  > .dashcover
  > .content
  > .account
  > .shipping
  > .list
  .adbox
  > .contact
  > div {
  display: inline-block;
  position: relative;
  font-weight: 600;
  font-size: 14px;
  margin: 0px 20px 0px 0px;
}
.dashboard
  > .dashcover
  > .content
  > .account
  > .shipping
  > .list
  .adbox
  > .contact
  > span {
  display: inline-block;
  position: relative;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
}
.dashboard
  > .dashcover
  > .content
  > .account
  > .shipping
  > .list
  .adbox
  > .address {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 22px;
}
.dashboard
  > .dashcover
  > .content
  > .account
  > .shipping
  > .list
  .adbox
  > .default {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-size: 14px;
  margin: 18px 0px 0px 0px;
  color: rgba(0, 0, 0, 0.2);
}
.dashboard > .dashcover > .content > .account > .shipping > .list .adbox > a {
  display: inline-block;
  position: relative;
  font-size: 14px;
  margin: 18px 0px 0px 0px;
  color: #2fc3e5;
}
.dashboard
  > .dashcover
  > .content
  > .account
  > .shipping
  > .list
  .adbox
  > .action {
  display: block;
  position: absolute;
  height: 40px;
  top: calc(50% - 20px);
  right: 20px;
}
.dashboard
  > .dashcover
  > .content
  > .account
  > .shipping
  > .list
  .adbox
  > .action
  a {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: rgba(0, 0, 0, 0.02);
  float: left;
  margin: 0px 8px 0px 0px;
  color: #000000;
}
.dashboard
  > .dashcover
  > .content
  > .account
  > .shipping
  > .list
  .adbox
  > .action
  a.delete {
  color: #e20a0a;
}
.dashboard
  > .dashcover
  > .content
  > .account
  > .shipping
  > .list
  .adbox
  > .action
  a:last-child {
  margin: 0px;
}
.dashboard
  > .dashcover
  > .content
  > .account
  > .shipping
  > .list
  .adbox
  > .action
  a
  > i {
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 20px;
  text-align: center;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
}
.dashboard > .dashcover > .content > .orders {
  display: block;
  position: relative;
  width: 100%;
}
.dashboard > .dashcover > .content > .orders > .tab {
  display: flex;
  position: relative;
  width: 100%;
  height: 40px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  overflow: hidden;
  margin: 0px 0px 20px 0px;
}
.dashboard > .dashcover > .content > .orders > .tab a {
  display: block;
  position: relative;
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-weight: 600;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  text-align: center;
  color: #000000;
}
.dashboard > .dashcover > .content > .orders > .tab a.active {
  color: #ffffff;
  background: #2fc3e5;
}
.dashboard > .dashcover > .content > .orders > .empty {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 40px 20px;
  text-align: center;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0px 0px 20px 0px;
}
.dashboard > .dashcover > .content > .orders > .list {
  display: block;
  position: relative;
  width: 100%;
}
.dashboard > .dashcover > .content > .orders > .list .box {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0px 0px 8px 0px;
}
.dashboard > .dashcover > .content > .orders > .list .box > .date {
  display: block;
  position: relative;
  width: 100%;
  height: 50px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  background: rgba(0, 0, 0, 0.02);
}
.dashboard > .dashcover > .content > .orders > .list .box > .date > div {
  display: block;
  position: relative;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  float: left;
}
.dashboard > .dashcover > .content > .orders > .list .box > .date > span {
  display: block;
  position: relative;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 0px 0px 24px;
  float: right;
  font-weight: 600;
}
.dashboard
  > .dashcover
  > .content
  > .orders
  > .list
  .box.pending
  > .date
  > span {
  color: #fcd404;
}

.dashboard
  > .dashcover
  > .content
  > .orders
  > .list
  .box.ongoing
  > .date
  > span {
  color: #f1842e;
}
.dashboard
  > .dashcover
  > .content
  > .orders
  > .list
  .box.completed
  > .date
  > span {
  color: #30b441;
}
.dashboard
  > .dashcover
  > .content
  > .orders
  > .list
  .box.cancelled
  > .date
  > span {
  color: #ca1616;
}
.dashboard > .dashcover > .content > .orders > .list .box > .date > span > i {
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  line-height: 16px;
  top: calc(50% - 8px);
  left: 0px;
  font-size: 16px;
}
.dashboard > .dashcover > .content > .orders > .list .box > .detail {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 20px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.dashboard > .dashcover > .content > .orders > .list .box > .detail > .image {
  display: block;
  position: relative;
  float: left;
  width: 120px;
  height: 120px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0px 20px 0px 0px;
}
.dashboard > .dashcover > .content > .orders > .list .box > .detail > .name {
  display: flex;
  align-items: center;
  position: relative;
  float: left;
  width: calc(100% - 380px);
  height: 120px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0px 20px 0px 0px;
}
.dashboard
  > .dashcover
  > .content
  > .orders
  > .list
  .box
  > .detail
  > .name
  > .namecover {
  display: block;
  position: relative;
  width: 100%;
}
.dashboard
  > .dashcover
  > .content
  > .orders
  > .list
  .box
  > .detail
  > .name
  > .namecover
  > div {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  margin: 0px 0px 8px 0px;
}
.dashboard
  > .dashcover
  > .content
  > .orders
  > .list
  .box
  > .detail
  > .name
  > .namecover
  > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 22px;
}
.dashboard > .dashcover > .content > .orders > .list .box > .detail > .amount {
  display: flex;
  align-items: center;
  position: relative;
  float: left;
  width: 60px;
  height: 120px;
  font-size: 14px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0px 20px 0px 0px;
}
.dashboard > .dashcover > .content > .orders > .list .box > .detail > .cost {
  display: flex;
  align-items: center;
  position: relative;
  float: right;
  width: 140px;
  height: 120px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  text-align: right;
}
.dashboard
  > .dashcover
  > .content
  > .orders
  > .list
  .box
  > .detail
  > .cost
  > .costcover {
  display: block;
  position: relative;
  width: 100%;
}
.dashboard
  > .dashcover
  > .content
  > .orders
  > .list
  .box
  > .detail
  > .cost
  > .costcover
  > div {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}
.dashboard
  > .dashcover
  > .content
  > .orders
  > .list
  .box
  > .detail
  > .cost.discount
  > .costcover
  > div {
  text-decoration: line-through;
}
.dashboard
  > .dashcover
  > .content
  > .orders
  > .list
  .box
  > .detail
  > .cost
  > .costcover
  > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 22px;
}
.dashboard > .dashcover > .content > .orders > .list .box > .fee {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 20px;
}
.dashboard > .dashcover > .content > .orders > .list .box > .fee > .text {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0px 0px 20px 0px;
}
.dashboard
  > .dashcover
  > .content
  > .orders
  > .list
  .box
  > .fee
  > .text
  > .ship {
  display: block;
  position: relative;
  float: left;
  font-size: 14px;
  line-height: 24px;
}
.dashboard
  > .dashcover
  > .content
  > .orders
  > .list
  .box
  > .fee
  > .text
  > .ship
  > span {
  font-weight: 600;
}
.dashboard
  > .dashcover
  > .content
  > .orders
  > .list
  .box
  > .fee
  > .text
  > .total {
  display: block;
  position: relative;
  float: right;
  font-size: 16px;
  line-height: 24px;
}
.dashboard
  > .dashcover
  > .content
  > .orders
  > .list
  .box
  > .fee
  > .text
  > .total
  > span {
  font-weight: 600;
}
.dashboard > .dashcover > .content > .orders > .list .box > .fee > .action {
  display: block;
  position: relative;
  width: 100%;
  text-align: right;
}
.dashboard > .dashcover > .content > .orders > .list .box > .fee > .action a {
  display: inline-block;
  position: relative;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 18px;
  font-size: 14px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  margin: 0px 0px 0px 8px;
}
.dashboard
  > .dashcover
  > .content
  > .orders
  > .list
  .box
  > .fee
  > .action
  a.view {
  color: #2fc3e5;
  border: solid 1px #2fc3e5;
}
.dashboard
  > .dashcover
  > .content
  > .orders
  > .list
  .box
  > .fee
  > .action
  a.cancel {
  color: #ca1616;
  border: solid 1px #ca1616;
}
.dashboard > .dashcover > .content > .item {
  display: block;
  position: relative;
  width: 100%;
}
.dashboard > .dashcover > .content > .item > .head {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0px 0px 40px 0px;
}
.dashboard > .dashcover > .content > .item > .head > div {
  display: block;
  position: relative;
  float: left;
  font-size: 14px;
  line-height: 20px;
}
.dashboard > .dashcover > .content > .item > .head > span {
  display: block;
  position: relative;
  float: right;
  font-size: 14px;
  line-height: 20px;
}
.dashboard > .dashcover > .content > .item > .step {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0px 0px 20px 0px;
}
.dashboard > .dashcover > .content > .item > .step > .line {
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
  left: 0px;
  top: 10px;
}
.dashboard > .dashcover > .content > .item > .step .stepbox {
  display: block;
  position: relative;
  float: left;
  width: calc(25% - 9px);
  margin: 0px 12px 0px 0px;
  z-index: 1;
}
.dashboard > .dashcover > .content > .item > .step .stepbox:nth-child(3) {
  text-align: center;
}
.dashboard > .dashcover > .content > .item > .step .stepbox:nth-child(4) {
  text-align: center;
}
.dashboard > .dashcover > .content > .item > .step .stepbox:last-child {
  margin: 0px;
  text-align: right;
}
.dashboard > .dashcover > .content > .item > .step .stepbox > .dot {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: #ececec;
  border: solid 1px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0px 0px 8px 0px;
}
.dashboard > .dashcover > .content > .item > .step .stepbox.active > .dot {
  border: solid 1px #2fc3e5;
}
.dashboard > .dashcover > .content > .item > .step .stepbox > .dot > span {
  display: none;
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: #2fc3e5;
  top: calc(50% - 6px);
  left: calc(50% - 6px);
}
.dashboard
  > .dashcover
  > .content
  > .item
  > .step
  .stepbox.active
  > .dot
  > span {
  display: block;
}
.dashboard > .dashcover > .content > .item > .step .stepbox > .text {
  display: block;
  position: relative;
  width: 100%;
  font-size: 12px;
  line-height: 18px;
}
.dashboard > .dashcover > .content > .item > .step .stepbox.active > .text {
  font-weight: 600;
  color: #2fc3e5;
}
.dashboard > .dashcover > .content > .item > .shipment {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0px 0px 20px 0px;
}
.dashboard > .dashcover > .content > .item > .shipment > .address {
  display: block;
  position: relative;
  float: left;
  width: 50%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 26px;
}
.dashboard > .dashcover > .content > .item > .shipment > .address > .title {
  display: block;
  position: relative;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  margin: 0px 0px 24px 0px;
}
.dashboard > .dashcover > .content > .item > .shipment > .address > .text {
  display: block;
  position: relative;
  width: 100%;
}
.dashboard
  > .dashcover
  > .content
  > .item
  > .shipment
  > .address
  > .text
  > div {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  margin: 0px 0px 8px 0px;
}
.dashboard
  > .dashcover
  > .content
  > .item
  > .shipment
  > .address
  > .text
  > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 22px;
}
.dashboard > .dashcover > .content > .item > .shipment > .cost {
  display: block;
  position: relative;
  float: left;
  width: 50%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 26px;
  border-left: solid 1px rgba(0, 0, 0, 0.1);
}
.dashboard > .dashcover > .content > .item > .shipment > .cost > .title {
  display: block;
  position: relative;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  margin: 0px 0px 24px 0px;
}
.dashboard > .dashcover > .content > .item > .shipment > .cost > .list {
  display: block;
  position: relative;
  width: 100%;
}
.dashboard > .dashcover > .content > .item > .shipment > .cost > .list .row {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0px 0px 6px 0px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.dashboard
  > .dashcover
  > .content
  > .item
  > .shipment
  > .cost
  > .list
  .row:last-child {
  margin: 14px 0px 0px 0px;
  padding: 14px 0px 0px 0px;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
}
.dashboard
  > .dashcover
  > .content
  > .item
  > .shipment
  > .cost
  > .list
  .row
  > div {
  display: block;
  position: relative;
  float: left;
  font-size: 14px;
  line-height: 20px;
}
.dashboard
  > .dashcover
  > .content
  > .item
  > .shipment
  > .cost
  > .list
  .row
  > span {
  display: block;
  position: relative;
  float: right;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.dashboard
  > .dashcover
  > .content
  > .item
  > .shipment
  > .cost
  > .list
  .row:last-child
  > span {
  color: #2fc3e5;
}
.dashboard > .dashcover > .content > .item > .product {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0px 0px 8px 0px;
}
.dashboard > .dashcover > .content > .item > .product > .date {
  display: block;
  position: relative;
  width: 100%;
  height: 50px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  background: rgba(0, 0, 0, 0.02);
}
.dashboard > .dashcover > .content > .item > .product > .date > div {
  display: block;
  position: relative;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  float: left;
}
.dashboard > .dashcover > .content > .item > .product > .date > span {
  display: block;
  position: relative;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 0px 0px 24px;
  float: right;
  font-weight: 600;
}
.dashboard > .dashcover > .content > .item > .product > .date > span > i {
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  line-height: 16px;
  top: calc(50% - 8px);
  left: 0px;
  font-size: 16px;
}
.dashboard > .dashcover > .content > .item > .product > .detail {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 20px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.dashboard > .dashcover > .content > .item > .product > .detail > .image {
  display: block;
  position: relative;
  float: left;
  width: 120px;
  height: 120px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0px 20px 0px 0px;
}
.dashboard > .dashcover > .content > .item > .product > .detail > .name {
  display: flex;
  align-items: center;
  position: relative;
  float: left;
  width: calc(100% - 380px);
  height: 120px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0px 20px 0px 0px;
}
.dashboard
  > .dashcover
  > .content
  > .item
  > .product
  > .detail
  > .name
  > .namecover {
  display: block;
  position: relative;
  width: 100%;
}
.dashboard
  > .dashcover
  > .content
  > .item
  > .product
  > .detail
  > .name
  > .namecover
  > div {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  margin: 0px 0px 8px 0px;
}
.dashboard
  > .dashcover
  > .content
  > .item
  > .product
  > .detail
  > .name
  > .namecover
  > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 22px;
}
.dashboard > .dashcover > .content > .item > .product > .detail > .amount {
  display: flex;
  align-items: center;
  position: relative;
  float: left;
  width: 60px;
  height: 120px;
  font-size: 14px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0px 20px 0px 0px;
}
.dashboard > .dashcover > .content > .item > .product > .detail > .cost {
  display: flex;
  align-items: center;
  position: relative;
  float: right;
  width: 140px;
  height: 120px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  text-align: right;
}
.dashboard
  > .dashcover
  > .content
  > .item
  > .product
  > .detail
  > .cost
  > .costcover {
  display: block;
  position: relative;
  width: 100%;
}
.dashboard
  > .dashcover
  > .content
  > .item
  > .product
  > .detail
  > .cost
  > .costcover
  > div {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}
.dashboard
  > .dashcover
  > .content
  > .item
  > .product
  > .detail
  > .cost.discount
  > .costcover
  > div {
  text-decoration: line-through;
}
.dashboard
  > .dashcover
  > .content
  > .item
  > .product
  > .detail
  > .cost
  > .costcover
  > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 22px;
}
.dashboard > .dashcover > .content > .item > .product > .fee {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 20px;
}
.dashboard > .dashcover > .content > .item > .product > .fee > .action {
  display: block;
  position: relative;
  width: 100%;
  text-align: right;
}
.dashboard > .dashcover > .content > .item > .product > .fee > .action a {
  display: inline-block;
  position: relative;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 18px;
  font-size: 14px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  margin: 0px 0px 0px 8px;
}
.dashboard > .dashcover > .content > .item > .product > .fee > .action a.view {
  color: #2fc3e5;
  border: solid 1px #2fc3e5;
}
.dashboard
  > .dashcover
  > .content
  > .item
  > .product
  > .fee
  > .action
  a.cancel {
  color: #ca1616;
  border: solid 1px #ca1616;
}

.dashboard > .dashcover > .content > .subscription {
  display: block;
  position: relative;
  width: 100%;
}
.dashboard > .dashcover > .content > .subscription > .tab {
  display: flex;
  position: relative;
  width: 100%;
  height: 40px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  overflow: hidden;
  margin: 0px 0px 20px 0px;
}
.dashboard > .dashcover > .content > .subscription > .tab a {
  display: block;
  position: relative;
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-weight: 600;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  text-align: center;
  color: #000000;
}
.dashboard > .dashcover > .content > .subscription > .tab a.active {
  color: #ffffff;
  background: #2fc3e5;
}
.dashboard > .dashcover > .content > .subscription > .empty {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 40px 20px;
  text-align: center;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0px 0px 20px 0px;
}
.dashboard > .dashcover > .content > .subscription > .list {
  display: block;
  position: relative;
  width: 100%;
}
.dashboard > .dashcover > .content > .subscription > .list .box {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0px 0px 8px 0px;
}
.dashboard > .dashcover > .content > .subscription > .list .box > .date {
  display: block;
  position: relative;
  width: 100%;
  height: 50px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  background: rgba(0, 0, 0, 0.02);
}
.dashboard > .dashcover > .content > .subscription > .list .box > .date > div {
  display: block;
  position: relative;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  float: left;
  font-weight: 600;
}
.dashboard > .dashcover > .content > .subscription > .list .box > .date > span {
  display: block;
  position: relative;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 0px 0px 24px;
  float: right;
  font-weight: 600;
}
.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box.pending
  > .date
  > span {
  color: #fcd404;
}

.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box.completed
  > .date
  > span {
  color: #30b441;
}

.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box.ongoing
  > .date
  > span {
  color: #f1842e;
}

.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box.ended
  > .date
  > span {
  color: #ca1616;
}
.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box.cancelled
  > .date
  > span {
  color: #ca1616;
}
.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box
  > .date
  > span
  > i {
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  line-height: 16px;
  top: calc(50% - 8px);
  left: 0px;
  font-size: 16px;
}
.dashboard > .dashcover > .content > .subscription > .list .box > .detail {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 20px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box
  > .detail
  > .image {
  display: block;
  position: relative;
  float: left;
  width: 120px;
  height: 120px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0px 20px 0px 0px;
}
.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box
  > .detail
  > .name {
  display: flex;
  align-items: center;
  position: relative;
  float: left;
  width: calc(100% - 380px);
  height: 120px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0px 20px 0px 0px;
}
.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box
  > .detail
  > .name
  > .namecover {
  display: block;
  position: relative;
  width: 100%;
}
.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box
  > .detail
  > .name
  > .namecover
  > div {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  margin: 0px 0px 8px 0px;
}
.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box
  > .detail
  > .name
  > .namecover
  > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 22px;
}
.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box
  > .detail
  > .amount {
  display: flex;
  align-items: center;
  position: relative;
  float: left;
  width: 60px;
  height: 120px;
  font-size: 14px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0px 20px 0px 0px;
}
.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box
  > .detail
  > .cost {
  display: flex;
  align-items: center;
  position: relative;
  float: right;
  width: 140px;
  height: 120px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  text-align: right;
}
.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box
  > .detail
  > .cost
  > .costcover {
  display: block;
  position: relative;
  width: 100%;
}
.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box
  > .detail
  > .cost
  > .costcover
  > div {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}
.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box
  > .detail
  > .cost.discount
  > .costcover
  > div {
  text-decoration: line-through;
}
.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box
  > .detail
  > .cost
  > .costcover
  > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 22px;
}
.dashboard > .dashcover > .content > .subscription > .list .box > .fee {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 20px;
}
.dashboard > .dashcover > .content > .subscription > .list .box > .fee > .text {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0px 0px 20px 0px;
}
.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box
  > .fee
  > .text
  > .ship {
  display: block;
  position: relative;
  float: left;
  font-size: 14px;
  line-height: 24px;
}
.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box
  > .fee
  > .text
  > .ship
  > span {
  font-weight: 600;
}
.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box
  > .fee
  > .text
  > .total {
  display: block;
  position: relative;
  float: right;
  font-size: 16px;
  line-height: 24px;
}
.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box
  > .fee
  > .text
  > .total
  > span {
  font-weight: 600;
}
.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box
  > .fee
  > .action {
  display: block;
  position: relative;
  width: 100%;
  text-align: right;
}
.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box
  > .fee
  > .action
  a {
  display: inline-block;
  position: relative;
  height: 40px;
  line-height: 38px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 18px;
  font-size: 14px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  margin: 0px 0px 0px 8px;
}
.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box
  > .fee
  > .action
  a.view {
  color: #2fc3e5;
  border: solid 1px #2fc3e5;
}
.dashboard
  > .dashcover
  > .content
  > .subscription
  > .list
  .box
  > .fee
  > .action
  a.cancel {
  color: #ca1616;
  border: solid 1px #ca1616;
}
.dashboard > .dashcover > .content > .referral {
  display: block;
  position: relative;
  width: 100%;
}
.dashboard > .dashcover > .content > .referral > .code {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 20px 24px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  background: rgba(0, 0, 0, 0.04);
  border: dashed 1px rgba(0, 0, 0, 0.4);
  margin: 0px 0px 20px 0px;
}
.dashboard > .dashcover > .content > .referral > .code > div {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  margin: 0px 0px 8px 0px;
}
.dashboard > .dashcover > .content > .referral > .code > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 28px;
  font-weight: 800;
}
.dashboard > .dashcover > .content > .referral > .note {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 24px;
}
.dashboard > .dashcover > .content > .referral > .line {
  display: block;
  position: relative;
  width: 100%;
  margin: 40px 0px;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}
.dashboard > .dashcover > .content > .referral > .total {
  display: block;
  position: relative;
  width: 100%;
  font-size: 20px;
  height: 20px;
  line-height: 20px;
  font-weight: 800;
  margin: 0px 0px 26px 0px;
}
.dashboard > .dashcover > .content > .referral > .total > div {
  color: #2fc3e5;
  display: inline-block;
  position: relative;
}
.dashboard > .dashcover > .content > .referral > .total > span {
  margin: 0px 0px 0px 10px;
  opacity: 0.6;
  font-size: 14px;
  font-weight: 400;
}
.dashboard > .dashcover > .content > .referral > .empty {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 40px 20px;
  text-align: center;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0px 0px 20px 0px;
}
.dashboard > .dashcover > .content > .referral > .list {
  display: block;
  position: relative;
  width: 100%;
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  -webkit-border-radius: 4px;
}
.dashboard > .dashcover > .content > .referral > .list .box {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 20px 160px 20px 20px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
.dashboard > .dashcover > .content > .referral > .list .box > .date {
  display: block;
  position: relative;
  width: 100%;
  margin: 0px 0px 10px 0px;
  font-size: 16px;
  font-weight: 600;
}
.dashboard > .dashcover > .content > .referral > .list .box > .detail {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
.dashboard > .dashcover > .content > .referral > .list .box > .gain {
  display: block;
  position: absolute;
  width: 120px;
  font-size: 18px;
  font-weight: 800;
  height: 20px;
  line-height: 20px;
  top: calc(50% - 10px);
  right: 20px;
  text-align: right;
}
.dashboard > .dashcover > .content > .voucher {
  display: block;
  position: relative;
  width: 100%;
}
.dashboard > .dashcover > .content > .voucher > .search {
  display: flex;
  position: relative;
  width: 300px;
  margin: 0px 0px 40px 0px;
}
.dashboard > .dashcover > .content > .voucher > .search > input {
  display: block;
  position: relative;
  width: 100%;
  height: 42px;
  line-height: 42px;
  font-size: 14px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.4);
  border-radius: 4px 0px 0px 4px;
  -webkit-border-radius: 4px 0px 0px 4px;
  padding: 0px 14px;
}
.dashboard > .dashcover > .content > .voucher > .search > a {
  display: block;
  position: relative;
  white-space: nowrap;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  height: 42px;
  line-height: 42px;
  background: #2fc3e5;
  padding: 0px 14px;
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
  border-radius: 0px 4px 4px 0px;
  -webkit-border-radius: 0px 4px 4px 0px;
}
.dashboard > .dashcover > .content > .voucher > .empty {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 40px 20px;
  text-align: center;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0px 0px 20px 0px;
}
.dashboard > .dashcover > .content > .voucher > .list {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.dashboard > .dashcover > .content > .voucher > .list .box {
  display: block;
  position: relative;
  width: calc(50% - 10px);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  float: left;
  padding: 0px 100px 0px 0px;
  margin: 0px 0px 20px 0px;
}
.dashboard > .dashcover > .content > .voucher > .list .box:nth-child(even) {
  float: right;
}
.dashboard > .dashcover > .content > .voucher > .list .box > .image {
  display: block;
  position: relative;
  width: 90px;
  height: 90px;
  float: left;
  background: rgba(0, 0, 0, 0.08);
  margin: 0px 14px 0px 0px;
}
.dashboard > .dashcover > .content > .voucher > .list .box > .content {
  display: block;
  position: relative;
  float: left;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 14px 0px;
  width: calc(100% - 104px);
}
.dashboard > .dashcover > .content > .voucher > .list .box > .content > .main {
  display: block;
  position: relative;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  margin: 0px 0px 10px 0px;
}
.dashboard > .dashcover > .content > .voucher > .list .box > .content > .sub {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  margin: 0px 0px 6px 0px;
}
.dashboard > .dashcover > .content > .voucher > .list .box > .content > .note {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  opacity: 0.6;
}
.dashboard > .dashcover > .content > .voucher > .list .box > .action {
  display: block;
  position: absolute;
  height: 32px;
  top: calc(50% - 16px);
  right: 14px;
}
.dashboard > .dashcover > .content > .voucher > .list .box > .action > a {
  display: block;
  position: relative;
  height: 32px;
  line-height: 30px;
  border: solid 1px #2fc3e5;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  color: #2fc3e5;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0px 14px;
}
.dashboard > .dashcover > .content > .voucher > .list .box > .action > span {
  display: block;
  position: relative;
  height: 32px;
  line-height: 32px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0px 14px;
}
.shop {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
}
.shop > .shopcover {
  display: block;
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 40px 0px;
}
.shop > .shopcover > .title {
  display: block;
  position: relative;
  width: 100%;
  font-size: 34px;
  font-weight: 800;
  line-height: 40px;
  margin: 0px 0px 40px 0px;
}
.shop > .shopcover > .detail {
  display: block;
  position: relative;
  width: 100%;
}
.shop > .shopcover > .detail > .left {
  display: flex;
  position: relative;
  float: left;
  width: calc(100% - 400px);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  -webkit-border-radius: 4px;
}

.shop > .shopcover > .detail > .left .product_image {
  width: 300px;
  height: 300px;
}

.shop > .shopcover > .detail > .left .product_option {
  width: calc(100% - 300px);
  background: #ffffff;
}

.shop > .shopcover > .detail > .left .product_image img {
  width: auto;
  max-width: 100%;
}

.shop > .shopcover > .detail > .left .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  overflow: hidden;
  height: 150px;
  flex-wrap: wrap;
}
.shop > .shopcover > .detail > .left .head > .image {
  display: block;
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  background: rgba(0, 0, 0, 0.1);
  float: left;
  margin: 0px 20px 0px 0px;
}
.shop > .shopcover > .detail > .left .head > .name {
  display: flex;
  align-items: center;
  position: relative;
}
.shop > .shopcover > .detail > .left .head > .name > .namecover {
  display: block;
  position: relative;
  width: 100%;
}
.shop > .shopcover > .detail > .left .head > .name > .namecover > div {
  display: block;
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin: 0px 0px 10px 0px;
}
.shop > .shopcover > .detail > .left .head > .name > .namecover > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
}
.shop > .shopcover > .detail > .left .head > .amount {
  display: flex;
  align-items: center;
  position: relative;
}
.shop > .shopcover > .detail > .left .head > .amount > .amountcover {
  display: flex;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  -webkit-border-radius: 4px;
}
.shop > .shopcover > .detail > .left .head > .amount > .amountcover span {
  display: block;
  position: relative;
  white-space: nowrap;
  width: 32px;
  text-align: center;
  height: 32px;
  line-height: 32px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
}
.shop > .shopcover > .detail > .left .head > .amount > .amountcover input {
  display: block;
  position: relative;
  width: 60px;
  text-align: center;
  height: 32px;
  line-height: 32px;
  font-size: 16px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px;
  border: solid 1px rgba(0, 0, 0, 0.6);
  border-radius: 0px;
  -webkit-border-radius: 0px;
}
.shop > .shopcover > .detail > .left .option {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 20px;
  background: rgba(0, 0, 0, 0.04);
  overflow: hidden;
  height: 150px;
}
.shop > .shopcover > .detail > .left .option label {
  display: block;
  position: relative;
  width: 49%;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: #ffffff;
  border: solid 1px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0px 12px 0px 0px;
  padding: 28px 16px;
}
.shop > .shopcover > .detail > .left .option label:last-child {
  margin: 0px;
}
.shop > .shopcover > .detail > .left .option label > input {
  width: 1px;
  height: 1px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.shop > .shopcover > .detail > .left .option label > .text {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
}
.shop > .shopcover > .detail > .left .option label > .text > div {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  margin: 0px 0px 10px 0px;
}
.shop > .shopcover > .detail > .left .option label > .text > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}
.shop > .shopcover > .detail > .left .option label > span {
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  top: 10px;
  left: 10px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.4);
}
.shop > .shopcover > .detail > .left .option label > input:checked ~ span {
  background: #2fc3e5;
}
.shop > .shopcover > .detail > .right {
  display: block;
  position: relative;
  float: right;
  width: 380px;
}
.shop > .shopcover > .detail > .right > .voucher {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0px 0px 10px 0px;
  padding: 20px 40px 20px 20px;
  cursor: pointer;
  background: #ffffff;
}
.shop > .shopcover > .detail > .right > .voucher > .text {
  display: block;
  position: relative;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  margin: 0px 0px 10px 0px;
}
.shop > .shopcover > .detail > .right > .voucher > .selected {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
}
.shop > .shopcover > .detail > .right > .voucher > span {
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  right: 20px;
}
.shop > .shopcover > .detail > .right > .voucher > span > i {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 20px;
}
.shop > .shopcover > .detail > .right > .sumup {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  padding: 20px;
  background: #ffffff;
}
.shop > .shopcover > .detail > .right > .sumup .row {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0px 0px 10px 0px;
}
.shop > .shopcover > .detail > .right > .sumup .row:nth-child(3) {
  margin: 0px 0px 20px 0px;
}
.shop > .shopcover > .detail > .right > .sumup .row > div {
  display: block;
  position: relative;
  float: left;
  font-size: 14px;
  line-height: 18px;
}
.shop > .shopcover > .detail > .right > .sumup .row > span {
  display: block;
  position: relative;
  float: right;
  font-size: 14px;
  line-height: 18px;
}
.shop > .shopcover > .detail > .right > .sumup .total {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0px 40px 0px;
  border-top: solid 1px rgba(0, 0, 0, 0.2);
}
.shop > .shopcover > .detail > .right > .sumup .total > div {
  display: block;
  position: relative;
  float: left;
  font-size: 16px;
  line-height: 20px;
}
.shop > .shopcover > .detail > .right > .sumup .total > span {
  display: block;
  position: relative;
  float: right;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.shop > .shopcover > .detail > .right > .sumup > a {
  display: block;
  position: relative;
  width: 100%;
  background: #2fc3e5;
  color: #ffffff;
  font-size: 16px;
  height: 46px;
  line-height: 46px;
  font-weight: 600;
  text-align: center;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
}
.shop > .shopcover > .detail > .ship {
  display: block;
  position: relative;
  float: left;
  width: calc(100% - 400px);
  float: left;
}
.shop > .shopcover > .detail > .ship > .text {
  display: block;
  position: relative;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  margin: 0px 0px 20px 0px;
}
.shop > .shopcover > .detail > .ship > .text > a {
  display: block;
  position: absolute;
  height: 32px;
  line-height: 30px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px #2fc3e5;
  color: #2fc3e5;
  font-size: 14px;
  top: calc(50% - 16px);
  right: 0px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  padding: 0px 12px 0px 30px;
  font-weight: 400;
}
.shop > .shopcover > .detail > .ship > .text > a > i {
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  top: calc(50% - 8px);
  left: 10px;
}
.shop > .shopcover > .detail > .ship > .list {
  display: block;
  position: relative;
  width: 100%;
  margin: 0px 0px 20px 0px;
}

.shop > .shopcover > .detail > .ship > .list > .empty {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 40px 20px;
  text-align: center;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0px 0px 20px 0px;
}

.shop > .shopcover > .detail > .ship > .list label {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  padding: 24px 70px 24px 24px;
  overflow: hidden;
  cursor: pointer;
  margin: 0px 0px 10px 0px;
  background: #ffffff;
}
.shop > .shopcover > .detail > .ship > .list label > input {
  display: block;
  position: absolute;
  width: 1px;
  height: 1px;
  top: 0;
  left: 0;
  opacity: 0;
}
.shop > .shopcover > .detail > .ship > .list label > span {
  display: none;
  position: absolute;
  width: 22px;
  height: 22px;
  top: 0;
  left: 0;
  background: #30b441;
  border-radius: 0px 0px 4px 0px;
  -webkit-border-radius: 0px 0px 4px 0px;
}
.shop > .shopcover > .detail > .ship > .list label > input:checked ~ span {
  display: block;
}
.shop > .shopcover > .detail > .ship > .list label > span > i {
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  color: #ffffff;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
}
.shop > .shopcover > .detail > .ship > .list label > .content {
  display: block;
  position: relative;
  width: 100%;
}
.shop > .shopcover > .detail > .ship > .list label > .content > div {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  margin: 0px 0px 8px 0px;
}
.shop > .shopcover > .detail > .ship > .list label > .content > div > span {
  font-size: 14px;
  font-weight: 400;
  margin: 0px 0px 0px 10px;
  line-height: 20px;
}
.shop > .shopcover > .detail > .ship > .list label > .content > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
}
.shop > .shopcover > .detail > .ship > .list label > .edit {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: rgba(0, 0, 0, 0.02);
  top: calc(50% - 18px);
  right: 24px;
}
.shop > .shopcover > .detail > .ship > .list label > .edit > a {
  color: #2fc3e5;
}
.shop > .shopcover > .detail > .ship > .list label > .edit > i {
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  font-size: 20px;
  text-align: center;
  line-height: 24px;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
}
.shop > .shopcover > .detail > .ship > .check {
  display: block;
  position: relative;
  width: 100%;
}
.shop > .shopcover > .detail > .ship > .check label {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 0px 0px 28px;
  margin: 0px 0px 20px 0px;
}
.shop > .shopcover > .detail > .ship > .check label:last-child {
  margin: 0px;
}
.shop > .shopcover > .detail > .ship > .check label > input {
  display: block;
  position: absolute;
  width: 1px;
  height: 1px;
  top: 0;
  left: 0;
  opacity: 0;
}
.shop > .shopcover > .detail > .ship > .check label > span {
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  top: 4px;
  left: 0;
}
.shop > .shopcover > .detail > .ship > .check label > div {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 22px;
}
.shop > .shopcover > .detail > .right > .text {
  display: block;
  position: relative;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  margin: 0px 0px 20px 0px;
}

.shop > .shopcover > .detail > .right > .item-list {
  overflow-y: auto;
  max-height: 400px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #ffffff;
  border-radius: 4px;
  padding: 20px;
  box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.2);
}

.shop > .shopcover > .detail > .right > .item-list > .item {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.shop > .shopcover > .detail > .right > .item-list > .item > .image {
  display: block;
  position: relative;
  float: left;
  width: 100px;
  height: 100px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  background: rgba(0, 0, 0, 0.2);
}
.shop > .shopcover > .detail > .right > .item-list > .item > .image img {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.shop > .shopcover > .detail > .right > .item-list > .item > .content {
  display: block;
  position: relative;
  float: right;
  width: calc(100% - 120px);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 8px 0px;
}
.shop > .shopcover > .detail > .right > .item-list > .item > .content > div {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  margin: 0px 0px 6px 0px;
}
.shop > .shopcover > .detail > .right > .item-list > .item > .content span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 12px;
  margin: 0px 0px 6px 0px;
}
.shop
  > .shopcover
  > .detail
  > .right
  > .item-list
  > .item
  > .content
  span:last-child {
  margin: 0px;
}
.contact {
  display: block;
  position: relative;
  width: 100%;
}
.contact > .contactcover {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
}
.contact > .contactcover > .cover {
  display: block;
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}
.contact > .contactcover > .cover > .title {
  display: block;
  position: relative;
  width: calc(100% - 560px);
  margin: 80px 0px 60px 0px;
}
.contact > .contactcover > .cover > .title > h1 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 34px;
  font-weight: 800;
  line-height: 40px;
  margin: 0px 0px 20px 0px;
  text-transform: uppercase;
}
.contact > .contactcover > .cover > .title > h2 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.contact > .contactcover > .cover > .enquiry {
  display: block;
  position: absolute;
  width: 520px;
  top: -40px;
  right: 0px;
  background: #ffffff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  z-index: 1;
  box-shadow: 4px 4px 14px 0px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 50px;
}
.contact > .contactcover > .cover > .enquiry > .title {
  display: block;
  position: relative;
  width: 100%;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin: 0px 0px 40px 0px;
  color: #fcd404;
}
.contact > .contactcover > .cover > .enquiry > .form {
  display: block;
  position: relative;
  width: 100%;
}
.contact > .contactcover > .cover > .enquiry > .form .inputbox {
  display: block;
  position: relative;
  float: left;
  width: calc(50% - 10px);
  margin: 0px 0px 20px 0px;
}
.contact > .contactcover > .cover > .enquiry > .form .inputbox.message {
  width: 100%;
}
.contact > .contactcover > .cover > .enquiry > .form .inputbox:nth-child(even) {
  float: right;
}
.contact > .contactcover > .cover > .enquiry > .form .inputbox > div {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  margin: 0px 0px 8px 0px;
}
.contact > .contactcover > .cover > .enquiry > .form .inputbox > input {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  background: rgba(0, 0, 0, 0.04);
  border: none;
  line-height: 42px;
  padding: 0px 14px;
}
.contact > .contactcover > .cover > .enquiry > .form .inputbox > textarea {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  height: 100px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  background: rgba(0, 0, 0, 0.04);
  border: none;
  line-height: 20px;
  padding: 10px 14px;
  resize: none;
}
.contact > .contactcover > .cover > .enquiry > .form a {
  display: block;
  position: relative;
  width: 100%;
  height: 50px;
  line-height: 50px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  background: #79caf3;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}
.contact > .background {
  display: block;
  position: relative;
  width: 100%;
  height: 380px;
  background: #79caf3;
}
.contact > .note {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
}
.contact > .note > .notecover {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1180px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0 auto;
  padding: 60px 0px;
}
.contact > .note > .notecover > .title {
  display: block;
  position: relative;
  width: 100%;
  font-size: 34px;
  font-weight: 800;
  line-height: 40px;
  margin: 0px 0px 40px 0px;
  text-align: center;
}
.contact > .note > .notecover > .list {
  display: flex;
  position: relative;
  width: 100%;
  gap: 20px;
}
.contact > .note > .notecover > .list .box {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 42px 40px 42px 116px;
  background: #ffffff;
  overflow: hidden;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  border: solid 1px rgba(0, 0, 0, 0.1);
}
.contact > .note > .notecover > .list .box > img {
  display: block;
  position: absolute;
  width: 54px;
  top: calc(50% - 27px);
  left: 36px;
}
.contact > .note > .notecover > .list .box > .text {
  display: block;
  position: relative;
  width: 100%;
}
.contact > .note > .notecover > .list .box > .text > div {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  margin: 0px 0px 12px 0px;
}
.contact > .note > .notecover > .list .box > .text > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: 0.6px;
}
.faq {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
}
.faq > .faqcover {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 60px 0px;
}
.faq > .faqcover > h1 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 34px;
  font-weight: 800;
  line-height: 40px;
  margin: 0px 0px 20px 0px;
  text-transform: uppercase;
}
.faq > .faqcover > h2 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  padding-bottom: 60px;
}
.faq > .faqcover .list {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 40px;
}
.faq > .faqcover .list .faq-category {
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 20px;
  text-transform: uppercase;
}
.faq > .faqcover .list .box {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: #ffffff;
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0px 0px 10px 0px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.faq > .faqcover .list .box > .question {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 24px 50px 24px 28px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
.faq > .faqcover .list .box > .answer {
  display: none;
  position: relative;
  width: 100%;
}
.faq > .faqcover .list .box.active > .answer {
  display: block;
}
.faq > .faqcover .list .box > .answer > div {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 28px 28px 28px;
  font-size: 14px;
  line-height: 22px;
}
.faq > .faqcover .list .box > .icon {
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  top: 30px;
  right: 28px;
}
.faq > .faqcover .list .box > .icon > div {
  display: block;
  position: absolute;
  width: 14px;
  height: 2px;
  background: #000000;
  top: calc(50% - 1px);
  left: 0px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
}
.faq > .faqcover .list .box > .icon > span {
  display: block;
  position: absolute;
  width: 2px;
  height: 14px;
  background: #000000;
  top: 0px;
  left: calc(50% - 1px);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.faq > .faqcover .list .box.active > .icon > span {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.media {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
}
.media > .mediacover {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 0px;
}
.media > .mediacover > .title {
  display: block;
  position: relative;
  width: 100%;
  margin: 0px 0px 60px 0px;
}
.media > .mediacover > .title > h1 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 34px;
  font-weight: 800;
  line-height: 40px;
  margin: 0px 0px 20px 0px;
  text-transform: uppercase;
}
.media > .mediacover > .title > h2 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.media > .mediacover > .list {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  position: relative;
  row-gap: 20px;
  width: 100%;
  overflow: hidden;
}
.media > .mediacover > .list a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  width: 18.4%;
  height: 132px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  line-height: 0px;
  padding: 0px 40px;
  background: #ffffff;
}

.media > .mediacover > .list a > img {
  display: block;
  position: relative;
  max-width: 100%;
  max-height: 88px;
}
.widgetbottom {
  display: block;
  position: relative;
  width: 100%;
  background: #234354;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
}
.widgetbottom > .widgetcover {
  display: block;
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 60px 0px;
  overflow: hidden;
}
.widgetbottom > .widgetcover > .left {
  display: block;
  position: relative;
  float: left;
  width: 460px;
}
.widgetbottom > .widgetcover > .left > .about {
  display: block;
  position: relative;
  width: 100%;
  color: #ffffff;
  margin: 0px 0px 40px 0px;
}
.widgetbottom > .widgetcover > .left > .about > img {
  display: block;
  position: relative;
  height: 38px;
  margin: 0px 0px 16px 0px;
  width: auto;
  max-width: 100%;
}
.widgetbottom > .widgetcover > .left > .about > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 24px;
}
.widgetbottom > .widgetcover > .left > .company {
  display: block;
  position: relative;
  width: 100%;
  color: #ffffff;
}
.widgetbottom > .widgetcover > .left > .company > div {
  display: block;
  position: relative;
  width: 100%;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0px 0px 16px 0px;
}
.widgetbottom > .widgetcover > .left > .company > img {
  display: block;
  position: relative;
  width: 150px;
  margin: 0px 0px 14px 0px;
}
.widgetbottom > .widgetcover > .left > .company > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 24px;
}
.widgetbottom > .widgetcover > .left > .company > span > span {
  display: block;
  position: relative;
  width: 100%;
  margin: 10px 0px 0px 0px;
}
.widgetbottom > .widgetcover > .right {
  display: block;
  position: relative;
  float: right;
  width: calc(100% - 500px);
}
.widgetbottom > .widgetcover > .right > .newsletter {
  display: block;
  position: relative;
  width: 100%;
  text-align: right;
  margin: 0px 0px 40px 0px;
}
.widgetbottom > .widgetcover > .right > .newsletter > .newscover {
  display: inline-block;
  position: relative;
  text-align: left;
  width: 100%;
  max-width: 340px;
}
.widgetbottom > .widgetcover > .right > .newsletter > .newscover > .text {
  display: block;
  position: relative;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0px 0px 14px 0px;
}
.widgetbottom > .widgetcover > .right > .newsletter > .newscover > .input {
  display: block;
  position: relative;
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: #ffffff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  padding: 0px 134px 0px 44px;
}
.widgetbottom > .widgetcover > .right > .newsletter > .newscover > .input > i {
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  font-size: 24px;
  text-align: center;
  top: calc(50% - 12px);
  left: 10px;
  color: #234354;
}
.widgetbottom > .widgetcover > .right > .newsletter > .newscover > .input > a {
  display: block;
  position: absolute;
  width: 120px;
  height: 32px;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 32px;
  text-align: center;
  top: 4px;
  right: 4px;
  background: #fcd404;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 18px;
  color: #234354;
  font-weight: 600;
  letter-spacing: 0.8px;
}
.widgetbottom
  > .widgetcover
  > .right
  > .newsletter
  > .newscover
  > .input
  > input {
  display: block;
  position: relative;
  height: 40px;
  line-height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0);
  margin: 0px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px;
  font-size: 14px;
}
.widgetbottom > .widgetcover > .right > .social {
  display: block;
  position: relative;
  width: 100%;
  text-align: right;
  margin: 0px 0px 60px 0px;
}
.widgetbottom > .widgetcover > .right > .social > .socialcover {
  display: inline-block;
  position: relative;
  text-align: left;
  width: 340px;
}
.widgetbottom > .widgetcover > .right > .social > .socialcover > .text {
  display: block;
  position: relative;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0px 0px 14px 0px;
}
.widgetbottom > .widgetcover > .right > .social > .socialcover > .btns {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.widgetbottom > .widgetcover > .right > .social > .socialcover > .btns a {
  display: block;
  position: relative;
  float: left;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  background: #ffffff;
  margin: 0px 8px 0px 0px;
}
.widgetbottom
  > .widgetcover
  > .right
  > .social
  > .socialcover
  > .btns
  a:last-child {
  margin: 0px;
}
.widgetbottom > .widgetcover > .right > .directory {
  display: block;
  position: relative;
  width: 100%;
  text-align: right;
}
.widgetbottom > .widgetcover > .right > .directory > .directorycover {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  gap: 2%;
  row-gap: 30px;
  text-align: left;
}
.widgetbottom > .widgetcover > .right > .directory .box {
  display: block;
  position: relative;
  width: 23.5%;
}

.widgetbottom > .widgetcover > .right > .directory .box > div {
  display: block;
  position: relative;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.4px;
  margin: 0px 0px 14px 0px;
}
.widgetbottom > .widgetcover > .right > .directory .box > span {
  display: block;
  position: relative;
  width: 100%;
}
.widgetbottom > .widgetcover > .right > .directory .box > span a {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 20px;
  margin: 0px 0px 14px 0px;
}
.widgetbottom > .widgetcover > .right > .directory .box > span a:last-child {
  margin: 0px;
}
.widgetbottom > .widgetcover > .right > .directory .box > span a:hover {
  color: #ffffff;
}
.footerbottom {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
}
.footerbottom > .footcover {
  display: block;
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 20px 0px;
  overflow: hidden;
}
.footerbottom > .footcover > .left {
  display: block;
  position: relative;
  float: left;
  font-size: 12px;
}
.footerbottom > .footcover > .right {
  display: block;
  position: relative;
  float: right;
  font-size: 12px;
}
.footerbottom > .footcover > .right a {
  display: inline-block;
  position: relative;
  margin: 0px 16px 0px 0px;
  color: #234354;
}
.footerbottom > .footcover > .right a:last-child {
  margin: 0px;
}

.mainheader {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  background: #ffffff;
  border-bottom: solid 1px rgba(0, 0, 0, 0.06);
}
.mainheader > .headercover {
  display: block;
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 14px 0px;
}
.mainheader > .headercover > a.logo {
  display: block;
  position: relative;
  float: left;
  height: 36px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 4px 0px;
  line-height: 0px;
  margin: 0px 60px 0px 0px;
}
.mainheader > .headercover > a.logo > img {
  display: block;
  position: relative;
  height: 100%;
}
.mainheader > .headercover > .menu {
  display: block;
  position: relative;
  float: left;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 4px 0px;
}
.mainheader > .headercover > .menu a {
  display: block;
  position: relative;
  float: left;
  height: 28px;
  line-height: 28px;
  font-size: 14px;
  color: #0f4759;
  letter-spacing: 0.2px;
  margin: 0px 40px 0px 0px;
}
.mainheader > .headercover > .action {
  display: block;
  position: relative;
  float: right;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 2px 0px;
}
.mainheader > .headercover > .action > a.now {
  display: block;
  position: relative;
  float: left;
  height: 32px;
  line-height: 32px;
  background: #fcd404;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 14px;
  text-transform: uppercase;
  margin: 0px 10px 0px 0px;
}
.mainheader > .headercover > .action > a.login {
  display: block;
  position: relative;
  float: left;
  height: 32px;
  line-height: 32px;
  background: #2fc3e5;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 14px;
  text-transform: uppercase;
}
.header-space {
  display: block;
  position: relative;
  width: 100%;
  height: 64px;
}
.certification {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
}
.certification > .certcover {
  display: block;
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}
.certification > .certcover > div {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
  line-height: 0px;
}
.certification > .certcover > div > img {
  display: inline-block;
  position: relative;
  width: 120px;
  margin: 0px 8px;
}
.bottomwidget {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  background: #fcd404;
}
.bottomwidget > .widcover {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 60px 0px;
}
.bottomwidget > .widcover > .desc {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 22px;
  margin: 0px 0px 40px 0px;
}
.bottomwidget > .widcover > .social {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
}
.bottomwidget > .widcover > .social a {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.1);
  margin: 0px 8px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}
.newsubheader {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  background: #79caf3;
}
.newsubheader > .headercover {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1180px;
  /*
  height: 24px;
  */

  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.newheader {
  display: block;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  background: #ffffff;

  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.37);
  -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.37);
  -moz-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.37);
}
.newheader > .headercover {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1180px;
  height: 80px;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.newheader > .headercover > a.logo {
  display: block;
  position: relative;
  float: left;
  height: 80px;
  width: 154px;
  overflow: hidden;
}
.newheader > .headercover > a.logo > img {
  display: block;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.newheader > .headercover > .action {
  display: block;
  position: relative;
  float: right;
}
.newheader > .headercover > .action > .menu {
  display: block;
  position: relative;
  float: left;
  margin: 0px 30px 0px 0px;
}
.newheader > .headercover > .action > .menu a {
  display: flex;
  align-items: center;
  position: relative;
  height: 80px;
  float: left;
  margin: 0px 30px 0px 0px;
}
.newheader > .headercover > .action > .menu a:last-child {
  margin: 0px;
}
.newheader > .headercover > .action > .menu a > div {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #234354;
  letter-spacing: 0.6px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.newheader > .headercover > .action > .menu a:hover > div {
  color: #fcd404;
}
.newheader > .headercover > .action > .menu a > div > span {
  display: inline-block;
  position: absolute;
  width: 0px;
  height: 3px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  background: #fcd404;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.newheader > .headercover > .action > .menu a:hover > div > span {
  width: 20px;
}
.newheader > .headercover > .action > .other {
  display: block;
  position: relative;
  float: left;
}
.newheader > .headercover > .action > .other div {
  display: block;
  position: relative;
  height: 80px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 22px 0px;
  float: left;
  margin: 0px 12px 0px 0px;
}
.newheader > .headercover > .action > .other div:last-child {
  margin: 0px;
}
.newheader > .headercover > .action > .other div > a {
  display: block;
  position: relative;
  white-space: nowrap;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 22px;
  height: 38px;
  line-height: 38px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  background: #234354;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1.4px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.newheader > .headercover > .action > .other .shopnow > a {
  background: #fcd404;
  color: #234354;
}
.newheader > .headercover > .action > .other .login > a {
  background: #234354;
  color: #ffffff;
}
.newheader > .headercover > .action > .other .profile > a {
  width: 38px;
  padding: 0px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.14);
  color: #234354;
}
.newheader > .headercover > .action > .other .profile > .list {
  display: block;
  position: absolute;
  width: 134px;
  height: auto;
  padding: 6px;
  top: 54px;
  right: 0px;
  background: #ffffff;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.newheader > .headercover > .action > .other .profile:hover > .list {
  opacity: 1;
  visibility: visible;
  top: 68px;
}
.newheader > .headercover > .action > .other .profile > .list a {
  display: block;
  position: relative;
  width: 100%;
  text-transform: unset;
  font-size: 14px;
  letter-spacing: 0.6px;
  background: none;
  color: #234354;
  height: 34px;
  line-height: 34px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 12px 0px 36px;
}
.newheader > .headercover > .action > .other .profile > .list a:last-child {
  color: #ca1616;
}
.newheader > .headercover > .action > .other .profile > .list a:hover {
  background: rgba(0, 0, 0, 0.04);
}
.newheader > .headercover > .action > .other .profile > .list a > i {
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  line-height: 18px;
  top: calc(50% - 9px);
  left: 10px;
  font-size: 18px;
}
.mainbanner {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
}
.mainbanner .firstbox {
  display: block;
  position: relative;
  width: 100%;
}
.mainbanner .firstbox > .bannercover {
  display: block;
  position: relative;
  max-width: 1180px;
  width: 100%;
  height: 580px;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 40px 0px;
}
.mainbanner .firstbox > .bannercover > .image {
  display: block;
  position: absolute;
  width: 480px;
  height: 480px;
  bottom: 40px;
  right: 0px;
}
.mainbanner .firstbox > .bannercover > .image > img {
  display: block;
  position: absolute;
  width: 560px;
  bottom: 0px;
  right: 0px;
  z-index: 1;
}
.mainbanner .firstbox > .bannercover > .image > .circle1 {
  display: block;
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: #ffeec8;
  bottom: 0px;
  right: 0px;
}
.mainbanner .firstbox > .bannercover > .image > .element1 {
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  border: solid 8px #def2ff;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  top: 0px;
  left: 0px;
}
.mainbanner .firstbox > .bannercover > .image > .element2 {
  display: block;
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  border: solid 8px #def2ff;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  top: 100px;
  right: 0px;
}
.mainbanner .firstbox > .bannercover > .image > .element3 {
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  bottom: 100px;
  left: -140px;
}
.mainbanner .firstbox > .bannercover > .image > .element3 span:nth-child(1) {
  display: block;
  position: absolute;
  width: 100%;
  height: 8px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  background: #fddc82;
  top: calc(50% - 4px);
  left: 0px;
}
.mainbanner .firstbox > .bannercover > .image > .element3 span:nth-child(2) {
  display: block;
  position: absolute;
  height: 100%;
  width: 8px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  background: #fddc82;
  top: 0px;
  left: calc(50% - 4px);
}
.mainbanner .firstbox > .bannercover > .content {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.mainbanner .firstbox > .bannercover > .content > .cover {
  display: block;
  position: relative;
  width: 100%;
}
.mainbanner .firstbox > .bannercover > .content > .cover > .bar {
  display: block;
  position: relative;
  width: 28px;
  height: 6px;
  background: #79caf3;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  margin: 0px 0px 20px 0px;
}
.mainbanner .firstbox > .bannercover > .content > .cover > h1 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 54px;
  line-height: 64px;
  font-weight: 800;
  margin: 0px 0px 12px 0px;
  letter-spacing: 1px;
  color: #234354;
}
.mainbanner .firstbox > .bannercover > .content > .cover > h1 > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 32px;
  line-height: 32px;
  margin: 0px 0px 8px 0px;
}
.mainbanner .firstbox > .bannercover > .content > .cover > h1 > b {
  display: block;
  position: relative;
  width: 100%;
  color: #79caf3;
}
.mainbanner .firstbox > .bannercover > .content > .cover > h2 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.4px;
  margin: 0px 0px 30px 0px;
  font-weight: 600;
  color: #234354;
}
.mainbanner .firstbox > .bannercover > .content > .cover > a {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 24px;
  height: 46px;
  line-height: 46px;
  color: #234354;
  background: #fcd404;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.mainbanner .firstbox > .bannercover > .content > .cover > a:hover {
  background: #79caf3;
  color: #ffffff;
}
.mainbanner .secondbox {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
}
.mainbanner .secondbox > .bannercover {
  display: block;
  position: relative;
  max-width: 1180px;
  width: 100%;
  height: 580px;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 0px 40px 0px;
}
.mainbanner .secondbox > .bannercover > .image {
  display: block;
  position: absolute;
  width: 480px;
  height: 480px;
  top: 40px;
  left: 0px;
}
.mainbanner .secondbox > .bannercover > .image > img {
  display: block;
  position: absolute;
  width: 620px;
  bottom: 0px;
  left: 0px;
  z-index: 1;
}
.mainbanner .secondbox > .bannercover > .image > .circle1 {
  display: block;
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  top: 0px;
  left: 120px;
  background: #d9f2ff;
}
.mainbanner .secondbox > .bannercover > .content {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.mainbanner .secondbox > .bannercover > .content > .cover {
  display: block;
  position: relative;
  width: 100%;
  text-align: right;
}
.mainbanner .secondbox > .bannercover > .content > .cover > .bar {
  display: inline-block;
  position: relative;
  width: 28px;
  height: 6px;
  background: #fcd404;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  margin: 0px 0px 20px 0px;
}
.mainbanner .secondbox > .bannercover > .content > .cover > h1 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 54px;
  line-height: 64px;
  font-weight: 800;
  margin: 0px 0px 12px 0px;
  letter-spacing: 1px;
  color: #234354;
}
.mainbanner .secondbox > .bannercover > .content > .cover > h1 span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 32px;
  line-height: 32px;
  margin: 0px 0px 8px 0px;
}
.mainbanner .secondbox > .bannercover > .content > .cover > h1 b {
  color: #fcd404;
}
.mainbanner .secondbox > .bannercover > .content > .cover > h2 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.4px;
  margin: 0px 0px 30px 0px;
  font-weight: 600;
  color: #234354;
}
.mainbanner .secondbox > .bannercover > .content > .cover > a {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 24px;
  height: 46px;
  line-height: 46px;
  color: #234354;
  background: #79caf3;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.mainbanner .secondbox > .bannercover > .content > .cover > a:hover {
  background: #fcd404;
  color: #ffffff;
}
.whybanner {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
}
.whybanner > .bannercover {
  display: block;
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 0px 60px 0px;
}
.whybanner > .bannercover > .title {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
  margin: 0px 0px 40px 0px;
}
.whybanner > .bannercover > .title > h1 {
  display: block;
  position: relative;
  width: 100%;
  font-weight: 800;
  font-size: 44px;
  line-height: 54px;
  color: #234354;
  text-transform: uppercase;
  margin: 0px 0px 8px 0px;
}
.whybanner > .bannercover > .title > h1 > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 32px;
  line-height: 32px;
  margin: 0px 0px 12px 0px;
  font-weight: 600;
}
.whybanner > .bannercover > .title > div {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
}
.whybanner > .bannercover > .title > div > span {
  display: inline-block;
  position: relative;
  width: 32px;
  height: 6px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: #79caf3;
}
.whybanner > .bannercover > .list {
  display: flex;
  position: relative;
  width: 100%;
  text-align: center;
  gap: 30px;
}
.whybanner > .bannercover > .list .box {
  display: block;
  position: relative;
  width: 100%;
}
.whybanner > .bannercover > .list .box > .image {
  display: block;
  position: relative;
  margin: 18px auto 40px auto;
  width: 154px;
  height: 154px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  background-repeat: no-repeat !important;
  background-position: 50% 50% !important;
  background-size: cover !important;
}
.whybanner > .bannercover > .list .box:nth-child(2) > .image {
  width: 190px;
  height: 190px;
  margin: 0px auto 22px auto;
}
.whybanner > .bannercover > .list .box > .image > span {
  display: block;
  position: absolute;
  width: calc(100% + 28px);
  height: calc(100% + 28px);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  top: -14px;
  left: -14px;
}
.whybanner > .bannercover > .list .box > .text {
  display: block;
  position: relative;
  width: 100%;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  margin: 0px 0px 10px 0px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  color: #234354;
  text-transform: uppercase;
}
.whybanner > .bannercover > .list .box > .desc {
  display: block;
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  color: #234354;
}
.factsbanner {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  background: #ffffff;
}
.factsbanner > .bannercover {
  display: block;
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 60px 0px;
}
.factsbanner > .bannercover > .title {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
  margin: 0px 0px 40px 0px;
}
.factsbanner > .bannercover > .title > h1 {
  display: block;
  position: relative;
  width: 100%;
  font-weight: 800;
  font-size: 44px;
  line-height: 54px;
  color: #234354;
  text-transform: uppercase;
  margin: 0px 0px 8px 0px;
}
.factsbanner > .bannercover > .title > h1 > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 32px;
  line-height: 32px;
  font-weight: 600;
  margin: 0px 0px 12px 0px;
}
.factsbanner > .bannercover > .title > div {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
}
.factsbanner > .bannercover > .title > div > span {
  display: inline-block;
  position: relative;
  width: 32px;
  height: 6px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: #fcd404;
}
.factsbanner > .bannercover > .list {
  display: flex;
  position: relative;
  width: 100%;
  gap: 20px;
}
.factsbanner > .bannercover > .list .yellow-circle {
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: solid 10px #fcd404;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.factsbanner > .bannercover > .list .blue-circle {
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: solid 10px #79caf3;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.factsbanner > .bannercover > .list .yellow-plus {
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.factsbanner > .bannercover > .list .yellow-plus span:nth-child(1) {
  display: block;
  position: absolute;
  width: 100%;
  height: 10px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  background: #fcd404;
  top: calc(50% - 5px);
  left: 0px;
}
.factsbanner > .bannercover > .list .yellow-plus span:nth-child(2) {
  display: block;
  position: absolute;
  height: 100%;
  width: 10px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  background: #fcd404;
  left: calc(50% - 5px);
  top: 0px;
}
.factsbanner > .bannercover > .list img {
  display: block;
  position: relative;
  width: 100%;
}
.factsbanner > .bannercover > .list .col {
  display: block;
  position: relative;
  width: 100%;
}
.factsbanner > .bannercover > .list .col .vape-image {
  display: flex;
  height: 100%;
  align-items: center;
}
.factsbanner > .bannercover > .list .col:nth-child(odd) > .box {
  display: block;
  position: relative;
  width: 100%;
  line-height: 0px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 4px #79caf3;
  background-color: rgba(0, 0, 0, 0.02);
  margin: 0px 0px 20px 0px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
}
.factsbanner > .bannercover > .list .col:nth-child(odd) > .box > .d {
  display: block;
  position: absolute;
  width: 100%;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  text-align: center;
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  opacity: 1;
}
.factsbanner > .bannercover > .list .col:nth-child(odd) > .box:hover > .d {
  opacity: 0;
}
.factsbanner > .bannercover > .list .col:nth-child(odd) > .box > .h {
  display: flex;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  text-align: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  opacity: 0;
}
.factsbanner > .bannercover > .list .col:nth-child(odd) > .box:hover > .h {
  opacity: 1;
}
.factsbanner > .bannercover > .list .col:nth-child(odd) > .box > .h > span {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 24px;
  font-size: 16px;
  line-height: 28px;
}
.factsbanner > .bannercover > .list .col:nth-child(odd) > .image {
  display: flex;
  position: relative;
  width: 100%;
  flex: 1;
  overflow: hidden;
  gap: 20px;
}
.factsbanner > .bannercover > .list .col > .image .ibox {
  display: block;
  position: relative;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.04);
  line-height: 0px;
  border-radius: 4px;
  -webkit-borde-radius: 4px;
  background-repeat: no-repeat !important;
  background-position: 50% 50% !important;
  background-size: cover !important;
  border: solid 1px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  opacity: 0.8;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.factsbanner > .bannercover > .list .col > .image .ibox.b1,
.factsbanner > .bannercover > .list .col > .image .ibox.b3,
.factsbanner > .bannercover > .list .col > .image .ibox.b5,
.factsbanner > .bannercover > .list .col > .image .ibox.v1,
.factsbanner > .bannercover > .list .col > .image .ibox.v3,
.factsbanner > .bannercover > .list .col > .image .ibox.v5 {
  border: solid 4px #79caf3;
}
.factsbanner > .bannercover > .list .col > .image .ibox.b2,
.factsbanner > .bannercover > .list .col > .image .ibox.b4,
.factsbanner > .bannercover > .list .col > .image .ibox.b6,
.factsbanner > .bannercover > .list .col > .image .ibox.b7,
.factsbanner > .bannercover > .list .col > .image .ibox.v2,
.factsbanner > .bannercover > .list .col > .image .ibox.v4,
.factsbanner > .bannercover > .list .col > .image .ibox.v6,
.factsbanner > .bannercover > .list .col > .image .ibox.v7 {
  border: solid 4px #fcd404;
}
.factsbanner > .bannercover > .list .col > .image .ibox:hover {
  opacity: 1;
}
.factsbanner > .bannercover > .list .col > .image .ibox > .pic {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat !important;
  background-position: 50% 50% !important;
  background-size: cover !important;
}
.factsbanner > .bannercover > .list .col > .image .ibox > .content {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.factsbanner > .bannercover > .list .col:nth-child(even) > .box {
  display: block;
  position: relative;
  width: 100%;
  line-height: 0px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 4px #fcd404;
  background-color: rgba(0, 0, 0, 0.02);
  margin: 0px 0px 20px 0px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
}
.factsbanner > .bannercover > .list .col:nth-child(even) > .box > .d {
  display: block;
  position: absolute;
  width: 100%;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  text-align: center;
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  opacity: 1;
}
.factsbanner > .bannercover > .list .col:nth-child(even) > .box:hover > .d {
  opacity: 0;
}
.factsbanner > .bannercover > .list .col:nth-child(even) > .box > .h {
  display: flex;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  text-align: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  opacity: 0;
}
.factsbanner > .bannercover > .list .col:nth-child(even) > .box:hover > .h {
  opacity: 1;
}
.factsbanner > .bannercover > .list .col:nth-child(even) > .box > .h > span {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 24px;
  font-size: 16px;
  line-height: 28px;
}
.factsbanner > .bannercover > .list .col:nth-child(even) > .image {
  display: flex;
  position: relative;
  width: 100%;
  flex: 1;
  overflow: hidden;
  gap: 20px;
  margin: 0px 0px 20px 0px;
}
.factsbanner > .bannercover > .list .col:nth-child(even) > .image div {
  display: block;
  position: relative;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.04);
  line-height: 0px;
  overflow: hidden;
  border-radius: 4px;
  -webkit-borde-radius: 4px;
  background-repeat: no-repeat !important;
  background-position: 50% 50% !important;
  background-size: cover !important;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.06);
}
.factsbanner > .bannercover > .list .col > .box > .for {
  display: flex;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  background: #f4f4f4;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
.factsbanner > .bannercover > .list .col > .box > .for.active {
  opacity: 1;
  visibility: visible;
}
.factsbanner > .bannercover > .list .col > .box > .for > span {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 28px;
}
.factsbanner > .bannercover > .list .col > .box > .for > span > b {
  display: block;
  position: relative;
  width: 100%;
  margin: 0px 0px 4px 0px;
  font-size: 20px;
  font-weight: 700;
}
.itembanner {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
}
.itembanner > .bannercover {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1180px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0 auto;
  overflow: hidden;
}
.itembanner > .bannercover > .content {
  display: block;
  position: relative;
  float: left;
  width: calc(50% - 40px);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 60px 0px;
}
.itembanner > .bannercover > .content > h1 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 44px;
  line-height: 54px;
  font-weight: 800;
  margin: 0px 0px 12px 0px;
  letter-spacing: 1px;
  color: #234354;
  text-transform: uppercase;
}
.itembanner > .bannercover > .content > h1 > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 32px;
  line-height: 32px;
  margin: 0px 0px 8px 0px;
  font-weight: 600;
}
.itembanner > .bannercover > .content > h2 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.4px;
  margin: 0px 0px 20px 0px;
  font-weight: 500;
  color: #234354;
  font-weight: 600;
}
.itembanner > .bannercover > .content > div {
  display: block;
  position: relative;
  width: 100%;
  margin: 0px 0px 20px 0px;
}
.itembanner > .bannercover > .content > div > span {
  display: inline-block;
  position: relative;
  width: 32px;
  height: 6px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: #fcd404;
}
.itembanner > .bannercover > .content > a {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 24px;
  height: 46px;
  line-height: 46px;
  color: #234354;
  background: #fcd404;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.itembanner > .bannercover > .content > a:hover {
  background: #79caf3;
  color: #ffffff;
}
.itembanner > .bannercover > .image {
  display: block;
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.04);
  background-position: 50% 50% !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.lastbanner {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
}
.lastbanner > .bannercover {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1180px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0 auto;
  overflow: hidden;
}
.lastbanner > .bannercover > .image {
  display: block;
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.04);
  background-position: 50% 50% !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.lastbanner > .bannercover > .content {
  display: block;
  position: relative;
  float: right;
  width: calc(50% - 40px);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 60px 0px;
}
.lastbanner > .bannercover > .content > h1 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 44px;
  line-height: 54px;
  font-weight: 800;
  margin: 0px 0px 12px 0px;
  letter-spacing: 1px;
  color: #234354;
  text-transform: uppercase;
}
.lastbanner > .bannercover > .content > h1 > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 32px;
  line-height: 32px;
  margin: 0px 0px 8px 0px;
  font-weight: 600;
}
.lastbanner > .bannercover > .content > h2 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.4px;
  margin: 0px 0px 20px 0px;
  color: #234354;
  font-weight: 600;
}
.lastbanner > .bannercover > .content > div {
  display: block;
  position: relative;
  width: 100%;
  margin: 0px 0px 20px 0px;
}
.lastbanner > .bannercover > .content > div > span {
  display: inline-block;
  position: relative;
  width: 32px;
  height: 6px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: #79caf3;
}
.lastbanner > .bannercover > .content > a {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 24px;
  height: 46px;
  line-height: 46px;
  color: #234354;
  background: #79caf3;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.lastbanner > .bannercover > .content > a:hover {
  background: #fcd404;
  color: #ffffff;
}
.aboutus {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 60px 20px;
}
.aboutus > .lefttext {
  display: flex;
  position: relative;
  max-width: 1180px;
  width: 100%;
  gap: 20px;
  margin: 0 auto;
  align-items: center;
}
.aboutus > .lefttext > .text {
  display: block;
  position: relative;
  width: 50%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 20px 0px;
}
.aboutus > .lefttext > .text > h1 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 54px;
  line-height: 64px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.aboutus > .lefttext > .text > span {
  display: inline-block;
  position: relative;
  width: 32px;
  height: 6px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  background: #fcd404;
  margin: 20px 0px;
}
.aboutus > .lefttext > .text > p {
  display: block;
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.4px;
}
.aboutus > .lefttext > .image {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.1);
  background-repeat: no-repeat !important;
  background-position: 50% 50% !important;
  background-size: cover !important;
  overflow: hidden;
}

.aboutus > .lefttext > .image img {
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.aboutus > .lefttext > .imageslider {
  display: block;
  width: 50%;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  overflow: hidden;
}

.aboutus > .righttext > .imageslider {
  display: block;
  width: 50%;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  overflow: hidden;
}

.aboutus > .lefttext > .imageslider img,
.aboutus > .righttext > .imageslider img {
  display: block;
  object-fit: contain;
  width: auto;
  max-width: 100%;
}

.aboutus > .lefttext > .imageslider .swiper .image,
.aboutus > .righttext > .imageslider .swiper .image {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  overflow: hidden;
}

.aboutus > .righttext {
  display: flex;
  position: relative;
  max-width: 1180px;
  width: 100%;
  gap: 20px;
  margin: 0 auto;
  align-items: center;
}
.aboutus > .righttext > .text {
  display: inline-block;
  position: relative;
  width: calc(50% - 40px);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 20px 0px;
  text-align: left;
}
.aboutus > .righttext > .text > h1 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 54px;
  line-height: 64px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.aboutus > .righttext > .text > span {
  display: inline-block;
  position: relative;
  width: 32px;
  height: 6px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  background: #79caf3;
  margin: 20px 0px;
}
.aboutus > .righttext > .text > p {
  display: block;
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.4px;
}
.aboutus > .righttext > .image {
  display: block;
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.1);
  background-repeat: no-repeat !important;
  background-position: 50% 50% !important;
  background-size: cover !important;
}
.aboutus > .value {
  display: block;
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 60px 0px;
  text-align: center;
}
.aboutus > .value > h1 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 54px;
  line-height: 64px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.aboutus > .value > span {
  display: inline-block;
  position: relative;
  width: 32px;
  height: 6px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  background: #79caf3;
  margin: 20px 0px;
}
.aboutus > .value > .list {
  display: flex;
  position: relative;
  width: 100%;
}
.aboutus > .value > .list .box {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 40px 26px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  border: solid 1px rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.aboutus > .value > .list .box:hover {
  border: solid 1px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.aboutus > .value > .list .box > img.hover {
  display: block;
  position: absolute;
  width: 100px;
  top: 40px;
  left: calc(50% - 50px);
  z-index: 1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  opacity: 0;
}
.aboutus > .value > .list .box:hover > img.hover {
  opacity: 1;
}
.aboutus > .value > .list .box > img.default {
  display: block;
  position: relative;
  width: 100px;
  margin: 0 auto;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  opacity: 1;
}
.aboutus > .value > .list .box:hover > img.default {
  opacity: 0;
}
.aboutus > .value > .list .box > div {
  display: block;
  position: relative;
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  margin: 30px 0px 0px 0px;
}
.aboutus > .value > .list .box > span {
  display: block;
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  margin: 20px 0px 0px 0px;
}
.aboutus > .community {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}
.aboutus > .community > .image {
  display: block;
  position: relative;
  width: 100%;
  height: 360px;
  background-color: rgba(0, 0, 0, 0.1);
  background-repeat: no-repeat !important;
  background-position: 50% 50% !important;
  background-size: cover !important;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0px 0px 40px 0px;
}
.aboutus > .community > .text {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
}
.aboutus > .community > .text > h1 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 54px;
  line-height: 64px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.aboutus > .community > .text > span {
  display: inline-block;
  position: relative;
  width: 32px;
  height: 6px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  background: #79caf3;
  margin: 20px 0px;
}
.aboutus > .community > .text > p {
  display: block;
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.4px;
}

.aboutus > .community > .imageslider {
  width: 100%;
  padding: 30px 0px;
}

.aboutus > .community > .imageslider .swiper-slide .image {
  border-radius: 4px;
  overflow: hidden;
}

.aboutus > .community > .imageslider .swiper-slide .image img {
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.aboutus > .future {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1180px;
  text-align: center;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 60px 0px 0px 0px;
}
.aboutus > .future > h1 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 54px;
  line-height: 64px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.aboutus > .future > span {
  display: inline-block;
  position: relative;
  width: 32px;
  height: 6px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  background: #fcd404;
  margin: 20px 0px;
}
.aboutus > .future > p {
  display: block;
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.4px;
}
.review {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
}
.review > .reviewcover {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 60px 0px;
}

.review > .reviewcover .title {
  display: block;
  position: relative;
  width: 100%;
  margin: 0px 0px 60px 0px;
}

.review > .reviewcover .title > h1 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 34px;
  font-weight: 800;
  line-height: 40px;
  margin: 0px 0px 20px 0px;
  text-transform: uppercase;
}

.review > .reviewcover .title > h2 {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.review > .reviewcover .title > h2 b {
  color: #2fc3e5;
}

.review > .reviewcover > .head {
  display: flex;
  position: relative;
  width: 100%;
  overflow: hidden;
  gap: 40px;
  margin: 0px 0px 40px 0px;
}
.review > .reviewcover > .head > .overall {
  display: block;
  position: relative;
  width: 38%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: #ffffff;
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  text-align: center;
  padding: 40px;
}
.review > .reviewcover > .head > .overall > .title {
  display: block;
  position: relative;
  width: 100%;
  font-size: 18px;
  letter-spacing: 0.4px;
  font-weight: 800;
  margin: 0px 0px 30px 0px;
}
.review > .reviewcover > .head > .overall > .box {
  display: block;
  position: relative;
  width: 100%;
}
.review > .reviewcover > .head > .overall > .box > .rate {
  display: block;
  position: relative;
  width: 100%;
  font-size: 60px;
  font-weight: 700;
  margin: 0px 0px 10px 0px;
}
.review > .reviewcover > .head > .overall > .box > .stars {
  display: block;
  position: relative;
  width: 100%;
  margin: 0px 0px 30px 0px;
}
.review > .reviewcover > .head > .overall > .box > .stars i {
  display: inline-block;
  position: relative;
  font-size: 24px;
  color: rgba(0, 0, 0, 0.2);
}
.review > .reviewcover > .head > .overall > .box > .stars i.active {
  display: inline-block;
  position: relative;
  font-size: 24px;
  color: #fcd404;
}
.review > .reviewcover > .head > .overall > .box > .amount {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
}
.review > .reviewcover > .head > .chart {
  display: block;
  position: relative;
  width: 62%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 40px;
  background: #ffffff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  border: solid 1px rgba(0, 0, 0, 0.1);
}
.review > .reviewcover > .head > .chart > .title {
  display: block;
  position: relative;
  width: 100%;
  font-size: 18px;
  letter-spacing: 0.4px;
  font-weight: 800;
  margin: 0px 0px 20px 0px;
}
.review > .reviewcover > .head > .chart > .list {
  display: block;
  position: relative;
  width: 100%;
}
.review > .reviewcover > .head > .chart > .list .box {
  display: flex;
  position: relative;
  width: 100%;
  height: 20px;
  margin: 0px 0px 14px 0px;
  gap: 10px;
}
.review > .reviewcover > .head > .chart > .list .box:last-child {
  margin: 0px;
}
.review > .reviewcover > .head > .chart > .list .box > .num {
  display: block;
  position: relative;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 24px 0px 0px;
  font-size: 18px;
  line-height: 23px;
  height: 20px;
}
.review > .reviewcover > .head > .chart > .list .box > .num > i {
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  font-size: 20px;
  color: #fcd404;
  line-height: 20px;
  top: 0px;
  right: 0px;
}
.review > .reviewcover > .head > .chart > .list .box > .bar {
  display: block;
  position: relative;
  width: 100%;
  height: 20px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 7px 0px;
}
.review > .reviewcover > .head > .chart > .list .box > .bar > div {
  display: block;
  position: relative;
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  overflow: hidden;
}
.review > .reviewcover > .head > .chart > .list .box > .bar > div > span {
  display: block;
  position: relative;
  height: 100%;
  top: 0;
  left: 0;
  background: #79caf3;
}
.review > .reviewcover > .head > .chart > .list .box > .amount {
  display: block;
  position: relative;
  width: 36px;
  white-space: nowrap;
  text-align: right;
  font-size: 14px;
  line-height: 20px;
  height: 20px;
}
.review > .reviewcover > .list {
  display: block;
  position: relative;
  width: 100%;
}
.review > .reviewcover > .list .box {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: #ffffff;
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0px 0px 20px 0px;
}
.review > .reviewcover > .list .box:last-child {
  margin: 0px;
}
.review > .reviewcover > .list .box > .image {
  display: block;
  position: absolute;
  width: 300px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.06);
  background-repeat: no-repeat !important;
  background-position: 50% 50% !important;
  background-size: cover !important;
}
.review > .reviewcover > .list .box > .content {
  display: block;
  position: relative;
  float: right;
  width: calc(100% - 300px);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 40px;
}
.review > .reviewcover > .list .box > .content > .rate {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0px 0px 14px 0px;
}
.review > .reviewcover > .list .box > .content > .rate i {
  display: block;
  position: relative;
  float: left;
  width: 34px;
  height: 34px;
  line-height: 34px;
  font-size: 34px;
  text-align: center;
  color: rgba(0, 0, 0, 0.2);
}
.review > .reviewcover > .list .box > .content > .rate i.active {
  color: #fcd404;
}
.review > .reviewcover > .list .box > .content > .msg {
  display: block;
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  margin: 0px 0px 20px 0px;
}
.review > .reviewcover > .list .box > .content > .name {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 0px 0px 24px;
  font-size: 18px;
  font-weight: 500;
}
.review > .reviewcover > .list .box > .content > .name > i {
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  line-height: 18px;
  top: calc(50% - 9px);
  left: 0px;
  font-size: 18px;
}
.review > .reviewcover > .more {
  display: block;
  position: relative;
  text-align: center;
  width: 100%;
  margin: 40px 0px 0px 0px;
}
.review > .reviewcover > .more > a {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-size: 14px;
  height: 48px;
  line-height: 48px;
  background: #79caf3;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  color: #234354;
  font-weight: 700;
  padding: 0px 80px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.review > .reviewcover > .more > a:hover {
  background: #fcd404;
}
