@charset "UTF-8";
@use 'keyframes.css';
@-webkit-keyframes floatS {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(5px, 10px);
            transform: translate(5px, 10px);
  }
}
@keyframes floatS {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(5px, 10px);
            transform: translate(5px, 10px);
  }
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(5vh);
            transform: translateY(5vh);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(5vh);
            transform: translateY(5vh);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@-webkit-keyframes floatShadow {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@keyframes floatShadow {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

/*--------------------------------------------*/
body {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  background: #014550 url("img/kv_bg.png") center bottom/cover fixed no-repeat;
}

a {
  color: inherit;
}

.g_header {
  -webkit-transition: background 400ms;
  transition: background 400ms;
  background: linear-gradient(135deg, #8be01a, #005f4b 33%, #014550);
}

.g_header .header_menu {
  position: relative;
}

.g_header .nav_area {
  position: relative;
  z-index: 3;
}

.g_header .nav_item {
  font-size: 1.125em;
}

.g_header .nav-link {
  color: #93ee21;
}

.g_header .nav-link:hover {
  color: #fcee21;
}

.g_header .navbar-expand-lg .navbar-nav .nav-link {
  padding-left: .75rem;
  padding-right: .75rem;
  line-height: 28px;
}

.g_header.is_active {
  background-color: #003a3f;
}

.theme_lines {
  position: relative;
  width: 100%;
  height: 1em;
  font-size: 12px;
}

.theme_lines span {
  position: absolute;
  top: 0;
  border-radius: .5em;
  height: 1em;
}

.theme_lines .l1 {
  left: 0;
  z-index: 2;
  width: calc(76% + 1em);
  margin-left: -.5em;
  background-color: #00aa83;
  background-image: -webkit-gradient(linear, left top, right top, from(#00a583), color-stop(#00b336), to(#fcee21));
  background-image: linear-gradient(90deg, #00a583, #00b336, #fcee21);
}

.theme_lines .l2 {
  left: 76%;
  z-index: 1;
  width: calc(14% + 1em);
  margin-left: -.5em;
  background-color: #93ea20;
}

.theme_lines .l3 {
  left: 90%;
  z-index: 2;
  width: calc(10% + 1em);
  margin-left: -.5em;
  background-color: #008686;
}

.all_wrap {
  overflow: hidden;
}

.ly_sty {
  padding-top: 40px;
  padding-bottom: 40px;
}

.patten {
  position: absolute;
  z-index: 1;
  background: radial-gradient(circle, #0b4d87 3.5px, transparent 3.5px) 0 0/24px 24px repeat;
}

.sc_title {
  position: relative;
  text-align: center;
  margin-bottom: 24px;
}

.sc_title .tit {
  color: #0b4d87;
  display: inline-block;
}

.sc_title .tit .zh {
  padding: 0 1em;
  font-size: 2em;
  font-weight: 700;
}

.sc_title .tit .sup {
  font-size: 1.25em;
}

.sc_title .sup_link {
  position: absolute;
  right: 0;
  bottom: 0;
  padding-right: 20px;
  color: #00AC34;
}

.sc_title .sup_link::after {
  content: '';
  position: absolute;
  right: 5px;
  bottom: 3px;
  width: 16px;
  height: 16px;
  border: 2px solid #00AC34;
  border-width: 2px 2px 0 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.sc_title .sup_link:hover a {
  color: #003a3f;
}

.sc_title .sup_link:hover::after {
  border-color: #003a3f;
}

.sc_title .theme_lines {
  margin: 10px auto 30px;
  max-width: 360px;
  width: 80%;
  font-size: 6px;
}

.kv_wrap {
  margin-top: 60px;
}

.kv_wrap .d_kv {
  position: relative;
}

.kv_wrap .d_kv .bg {
  height: 50vw;
  overflow: hidden;
}

.kv_wrap .d_kv .logo {
  position: absolute;
  top: 0;
  right: 7.8125%;
  width: 21.35417%;
}

.kv_wrap .d_kv .cnt {
  position: absolute;
  right: 7.8125%;
  top: 25%;
  width: 74.27083%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.kv_wrap .d_kv .main_t {
  position: relative;
  width: 53.99719%;
  height: auto;
}

.kv_wrap .d_kv .sub_book {
  position: relative;
  width: 37.86816%;
  margin: 3% 0 0 0;
}

.kv_wrap .d_kv .sub_book-book {
  position: relative;
  width: 70.37037%;
}

.kv_wrap .d_kv .sub_book-info {
  position: relative;
  width: 100%;
  margin: 3% 0 5% 0;
}

.kv_wrap .d_kv .sub_book-btn {
  position: relative;
  width: 64.81481%;
  margin: 0 0 0 auto;
  cursor: pointer;
}

.kv_wrap .d_kv .sub_book-btn img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.kv_wrap .d_kv .sub_book-btn:hover img {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

@media (max-height: 700px) {
  .kv_wrap .d_kv .bg {
    height: 40vw;
  }
  .kv_wrap .d_kv .logo {
    top: -5%;
    right: 18.22917%;
  }
  .kv_wrap .d_kv .cnt {
    right: 18.22917%;
    top: 25%;
    width: 57.29167%;
  }
}

.kv_wrap img {
  width: 100%;
  max-width: 100%;
}

.sc_active {
  position: relative;
  z-index: 2;
}

.sc_active .sc_title .tit {
  letter-spacing: -.02em;
}

.section_block {
  padding: 40px 30px 60px;
}

.white_bk {
  background-color: #fff;
}

.white_bk .sc_title .tit .sup {
  opacity: 0.8;
  font-weight: 300;
}

.light_bk {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#8be01a), to(#fff));
  background-image: linear-gradient(0deg, #8be01a, #fff);
}

.light_bk .sc_title .sup {
  opacity: 0.8;
  font-weight: 300;
}

.deep_bk {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 95, 75, 0.8)), to(rgba(0, 65, 62, 0.9)));
  background-image: linear-gradient(180deg, rgba(0, 95, 75, 0.8), rgba(0, 65, 62, 0.9));
}

.deep_bk .sc_title .tit {
  color: #fff;
}

.deep_bk .sc_title .sup {
  opacity: 0.8;
  font-weight: 300;
}

.sec1_bk {
  padding: 40px 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#8be01a), color-stop(10%, #fff));
  background-image: linear-gradient(0deg, #8be01a, #fff 10%);
}

.intro_cnt .text {
  padding: 0 2rem;
  font-size: 1.25rem;
}

.intro_cnt .strong {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0b4d87;
}

.rules_cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 0;
}

.rules_cnt .part {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.rules_cnt .part.p_other {
  width: 60%;
}

.rules_cnt .part.p_other .item {
  width: 33.33%;
}

.rules_cnt .part.p_veeam {
  position: relative;
  width: 40%;
}

.rules_cnt .part.p_veeam .bg {
  position: absolute;
  left: 20px;
  top: -50px;
  z-index: 3;
  width: 100%;
  height: 100%;
  color: #93ee21;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}

.rules_cnt .part.p_veeam .bg::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 40px;
  bottom: -80px;
  z-index: 10;
  border-radius: 20px;
  border: 2px solid #93ee21;
}

.rules_cnt .part.p_veeam .item {
  width: 50%;
}

.rules_cnt .item {
  position: relative;
  text-align: center;
}

.rules_cnt .item .pic {
  position: relative;
  padding-top: 60px;
}

.rules_cnt .item .pic::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0.6) 55%, rgba(255, 255, 255, 0) 60%);
}

.rules_cnt .item .num {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  font-size: 120px;
  font-weight: 900;
  font-family: 'Roboto', sans-serif;
  line-height: 1;
  color: #00b336;
}

.rules_cnt .item .icon {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 180px;
  max-width: 100%;
}

.rules_cnt .item .txt {
  line-height: 1.3;
  font-size: 20px;
}

.best_cnt .items {
  position: relative;
  padding: 0 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.best_cnt .item {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 20px);
          flex: 0 0 calc(50% - 20px);
  color: #fff;
  padding: 20px 0;
}

.best_cnt .item .tit {
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 1.25rem;
  color: #93ee21;
}

.switch_tab {
  text-align: center;
}

.switch_tab .sw_tabs {
  position: relative;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  max-width: 510px;
}

.switch_tab .sw_tabs .tab {
  position: relative;
  z-index: 5;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 20%;
          flex: 1 0 20%;
  padding: 16px;
  cursor: pointer;
  font-size: 22px;
  color: rgba(11, 77, 135, 0.35);
  font-weight: 700;
  -webkit-transition: color 200ms;
  transition: color 200ms;
}

.switch_tab .sw_tabs .tab:hover {
  color: rgba(11, 77, 135, 0.7);
}

.switch_tab .sw_tabs .tab.is_active {
  color: #0b4d87;
}

.switch_tab .sw_tabs::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  border-radius: 40px;
  width: 33.33%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#8be01a), to(#00b336));
  background: linear-gradient(90deg, #8be01a, #00b336);
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
  -webkit-transform: translateX(-150%);
          transform: translateX(-150%);
}

.switch_tab .sw_wraps {
  margin-top: 15px;
  overflow: hidden;
}

.switch_tab .sw_wraps .wrap_scroll {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  -webkit-transition: left 400ms;
  transition: left 400ms;
}

.switch_tab .sw_wraps .wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  opacity: .5;
  -webkit-transition: opacity 300ms 300ms;
  transition: opacity 300ms 300ms;
}

.switch_tab .sw_wraps .wrap.is_active {
  opacity: 1;
}

.switch_tab .sw_wraps .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.switch_tab .sw_wraps .items .item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 25%;
          flex: 1 0 25%;
}

.switch_tab .sw_wraps .items .icon {
  max-width: 200px;
  margin: 0 auto;
}

.switch_tab .sw_wraps .items .word {
  margin-top: 20px;
  text-align: center;
  font-size: 20px;
  line-height: 1.3;
  color: #fff;
}

.switch_tab.tab1_now .sw_tabs::after {
  -webkit-transform: translateX(-150%);
          transform: translateX(-150%);
}

.switch_tab.tab1_now .wrap_scroll {
  left: 0;
}

.switch_tab.tab2_now .sw_tabs::after {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.switch_tab.tab2_now .wrap_scroll {
  left: -100%;
}

.switch_tab.tab3_now .sw_tabs::after {
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.switch_tab.tab3_now .wrap_scroll {
  left: -200%;
}

.quote_wrap {
  position: relative;
  padding-left: 40px;
  margin: 0 auto;
  max-width: 860px;
}

.quote_wrap::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 25px;
  height: 25px;
  background: url("img/ui/icon_quote.svg") center/contain no-repeat;
}

.quote_wrap .w {
  font-size: 1.25rem;
  color: #fff;
}

.quote_wrap .s {
  margin-top: .5rem;
  color: #8be01a;
  text-align: right;
}

.need_cnt .parag {
  text-align: center;
  font-size: 20px;
  margin-bottom: 30px;
}

.need_cnt .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.need_cnt .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  color: #0b4d87;
  text-align: center;
}

.need_cnt .item .tit {
  padding: 20px 0 6px;
  font-size: 1.25rem;
  font-weight: 700;
}

.need_cnt .item .text {
  display: inline-block;
  width: 9em;
}

.need_cnt .item .icon {
  max-width: 130px;
  margin: 0 auto;
}

.bonus_cnt {
  position: relative;
  padding-top: 4rem;
  font-size: 0;
}

.bonus_cnt .p_0 {
  right: calc(100% - 12px);
  left: -204px;
  bottom: calc(100% - 72px);
  top: -48px;
}

.bonus_cnt .tit {
  display: inline-block;
  width: 50%;
  font-size: 2rem;
  font-weight: 300;
  padding-right: 4rem;
  line-height: 1.2;
}

.bonus_cnt .tit img {
  margin-right: .5rem;
  height: 1.5em;
  vertical-align: baseline;
}

.bonus_cnt .cnt {
  position: relative;
  display: inline-block;
  width: 50%;
}

.bonus_cnt .cnt .p_1 {
  left: calc(100% - 240px);
  right: 0;
  top: calc(100% + 4px);
  bottom: -52px;
}

.bonus_cnt .cnt .p_2 {
  left: 100%;
  right: -48px;
  top: calc(100% - 92px);
  bottom: -52px;
}

.bonus_cnt .slick_wrap {
  position: relative;
  z-index: 2;
  border-radius: 1rem;
  padding: 1rem;
  border: 2px solid #93ee21;
  background-color: #fff;
}

.bonus_cnt .slick_wrap .items {
  margin: 0 auto;
  width: 50%;
}

.bonus_cnt .slick_wrap .items .arr_wrap {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0.6;
  cursor: pointer;
}

.bonus_cnt .slick_wrap .items .arr_wrap:hover {
  opacity: 1;
}

.bonus_cnt .slick_wrap .items .arr_wrap .arr {
  border: 2px solid #014550;
  width: 22px;
  height: 22px;
}

.bonus_cnt .slick_wrap .items .arr_wrap.p_arr {
  right: 100%;
}

.bonus_cnt .slick_wrap .items .arr_wrap.p_arr .arr {
  border-width: 2px 0 0 2px;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.bonus_cnt .slick_wrap .items .arr_wrap.n_arr {
  left: 100%;
}

.bonus_cnt .slick_wrap .items .arr_wrap.n_arr .arr {
  border-width: 2px 2px 0 0;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.bonus_cnt .slick_wrap .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
}

.bonus_cnt .slick_wrap .item .str {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  font-size: 2.25rem;
  font-weight: 700;
}

.bonus_cnt .slick_wrap .item .text {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  font-size: 1.1rem;
  line-height: 1.3;
}

.section_gift_block {
  background-color: #f8f8f9;
  padding: 60px 2vw;
}

.sc_form .parag,
.sc_form .point_list {
  max-width: 900px;
  margin: 0 auto;
}

.sc_form .parag {
  font-size: 1.25em;
  text-align: center;
}

.sc_form .parag strong {
  color: #005f4b;
  line-height: 1.8;
}

.sc_form .point_list {
  position: relative;
  padding-left: 75px;
  padding-right: 75px;
  margin-top: 1.5em;
}

.sc_form .point_list::before, .sc_form .point_list::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 24px;
  width: 30px;
  height: calc(100% - 64px);
  border: 2px solid #00a583;
}

.sc_form .point_list::before {
  left: 15px;
  border-right-width: 0;
}

.sc_form .point_list::after {
  right: 10px;
  border-left-width: 0;
}

.sc_form .point_list .tit,
.sc_form .point_list .item,
.sc_form .point_list .cta {
  position: relative;
  z-index: 2;
}

.sc_form .point_list .tit {
  margin-bottom: .5em;
  font-size: 2em;
  font-weight: 700;
  color: #00a583;
  text-align: center;
}

.sc_form .point_list .item {
  border-radius: 22px;
  margin-top: .5em;
  padding: 2px;
  background: linear-gradient(60deg, #005f4b, #00a583, #93ee21);
  font-size: 1.125em;
  line-height: 1.1;
}

.sc_form .point_list .item .txt {
  border-radius: 20px;
  padding: .75em 2em;
  min-width: 60%;
  background-color: #fff;
  font-weight: 700;
  color: #454545;
}

.sc_form .point_list .item:nth-child(3) {
  background: linear-gradient(-60deg, #005f4b, #00a583, #93ee21);
}

.sc_form .main_button {
  position: relative;
  display: inline-block;
  margin-top: 1em;
  padding: 1em 2em;
  background: linear-gradient(132deg, #00a583, #005f4b, #003a3f);
  color: #fff;
  font-size: 1.625em;
  line-height: 1.1;
  border-radius: 1.5em;
  font-weight: 400;
  letter-spacing: .08em;
  cursor: pointer;
  -webkit-animation: scaleInBounce 1000ms linear both;
          animation: scaleInBounce 1000ms linear both;
}

.sc_form .main_button .text {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.29);
}

.sc_form .main_button .theme_lines {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 75%;
  font-size: 10px;
  margin-top: 6px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: width 300ms;
  transition: width 300ms;
}

.sc_form .main_button:hover {
  -webkit-animation: scaleOutBounce 1000ms linear both;
          animation: scaleOutBounce 1000ms linear both;
}

.modal .modal-body {
  padding: 30px;
}

.modal .form_tit {
  text-align: center;
  margin-bottom: 20px;
}

.modal .form_tit .h2 span {
  font-weight: 700;
  color: #005f4b;
}

.modal .form_tit .tip {
  margin-top: 6px;
  color: red;
}

.modal .main_button {
  position: relative;
  display: inline-block;
  margin-top: 1em;
  padding: 1em 2em;
  background: linear-gradient(132deg, #00a583, #005f4b, #003a3f);
  color: #fff;
  font-size: 1.625em;
  line-height: 1.1;
  border-radius: 1.5em;
  font-weight: 400;
  letter-spacing: .08em;
  cursor: pointer;
  -webkit-animation: scaleInBounce 1000ms linear both;
          animation: scaleInBounce 1000ms linear both;
}

.modal .main_button .text {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.29);
}

.modal .main_button .theme_lines {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 75%;
  font-size: 10px;
  margin-top: 6px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: width 300ms;
  transition: width 300ms;
}

.modal .main_button:hover {
  -webkit-animation: scaleOutBounce 1000ms linear both;
          animation: scaleOutBounce 1000ms linear both;
}

.sc_gifts {
  padding-top: 40px;
}

.sc_gifts .sc_title {
  margin-top: 1em;
}

.sc_gifts .sc_title .theme_lines {
  margin-bottom: 0;
}

.sc_gifts .gift_tit {
  font-size: 1.25em;
  text-align: center;
}

.sc_gifts .gift_tit span {
  display: block;
  color: #343434;
}

.sc_gifts .gift_tit .main {
  display: inline-block;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  padding: .75rem 2rem;
  background: linear-gradient(-132deg, #00a583, #005f4b, #003a3f);
}

.sc_gifts .text {
  margin-top: 1.5em;
  text-align: center;
  font-size: 1.25em;
  line-height: 1.2;
}

.sc_gifts .text .sub {
  position: relative;
  top: -3px;
  border: 1px solid currentColor;
  border-radius: 6px;
  margin-left: .5rem;
  padding: 3px 8px;
  font-size: .875rem;
  color: #00b336;
}

.sc_gifts .gift_name {
  margin-top: .5rem;
  font-size: 1.75em;
  line-height: 1.3;
  text-align: center;
}

.sc_gifts .gift_name .brand {
  display: block;
  color: #00a583;
  font-weight: 700;
}

.sc_gifts .gift_name .name {
  color: #005f4b;
  font-weight: 700;
}

.sc_gifts .gift_name .tip {
  margin-top: 6px;
  font-size: 1rem;
  color: #00b336;
}

.sc_gifts .img {
  position: relative;
  width: 400px;
  margin: 20px auto 0;
}

.sc_gifts .img img {
  position: relative;
  z-index: 2;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.sc_gifts .img::before {
  position: absolute;
  border-radius: 12px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-132deg, #00a583, #005f4b, #003a3f);
}

.main_content {
  position: relative;
  z-index: 2;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.19);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.19);
}

.sc_infomation {
  padding: 50px 5%;
  background-color: #005f4b;
}

.sc_infomation .g_whitebk,
.sc_infomation .g_hotvd {
  position: relative;
  padding: 40px 25px;
  background-color: white;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.19);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.19);
  overflow: hidden;
}

.sc_infomation .g_whitebk .theme_lines,
.sc_infomation .g_hotvd .theme_lines {
  position: absolute;
  left: 0;
  bottom: 0;
}

.sc_infomation .g_whitebk .hvd_items,
.sc_infomation .g_hotvd .hvd_items {
  margin-bottom: 30px;
}

.sc_infomation .g_case {
  padding-bottom: 20px;
}

.sc_infomation .g_case .sc_title .tit {
  color: #93ee21;
  text-shadow: none;
  line-height: 1;
}

.sc_infomation .g_case .sc_title .sup_link {
  color: #fff;
}

.sc_infomation .g_case .sc_title .sup_link::after {
  border-color: #fff;
}

.sc_infomation .g_case .sc_title .sup_link:hover a {
  color: #fcee21;
}

.sc_infomation .g_case .sc_title .sup_link:hover::after {
  border-color: #fcee21;
}

.sc_infomation .g_case .item {
  position: relative;
}

.sc_infomation .g_case .item:hover .img::after {
  opacity: .5;
}

.sc_infomation .g_case .item:hover .img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.sc_infomation .g_case .img {
  position: relative;
  overflow: hidden;
}

.sc_infomation .g_case .img::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-color: #003a3f;
  opacity: 0;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}

.sc_infomation .g_case .img img {
  position: relative;
  z-index: 1;
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}

.sc_infomation .g_case .text {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 3em 1em 1em;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: #fff;
  font-size: 1.25em;
  line-height: 1.2;
}

.sc_infomation .g_hotvd {
  margin-top: 15px;
}

.sc_infomation .sc_title {
  margin-top: 0;
  margin-bottom: 20px;
}

.sc_infomation .sc_title .tit {
  text-shadow: 2px 2px 0 #fff;
}

.sc_infomation .item {
  position: relative;
  display: block;
  line-height: 1.4;
  -webkit-transition-property: background, color, border;
  transition-property: background, color, border;
}

.sc_infomation .item .name {
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1.2;
  text-decoration: underline;
}

.sc_infomation .item .info {
  margin-top: .5em;
  line-height: 1.4;
}

.sc_infomation .item .info ul {
  padding-left: 1.5em;
  margin: 10px 0;
}

.sc_infomation .item .info ul li {
  margin: 3px 0;
}

.sc_infomation .item:hover {
  color: #005f4b;
  border-color: #003a3f;
  text-decoration: none;
}

.sc_infomation .g_whitebk .wbk_items .item {
  border-radius: 10px;
  padding: 20px;
  padding-left: 100px;
  -webkit-transition: background 200ms;
  transition: background 200ms;
}

.sc_infomation .g_whitebk .wbk_items .item::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 20px;
  width: 64px;
  height: 64px;
  background: center/contain no-repeat;
  background-image: url("img/ic_whb.svg");
}

.sc_infomation .g_whitebk .wbk_items .item:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.sc_infomation .g_whitebk .wbk_bn_items .items_wrap,
.sc_infomation .g_whitebk .wbk_bn_items .item {
  outline: none;
}

.sc_infomation .g_whitebk .wbk_bn_items .items_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sc_infomation .g_whitebk .wbk_bn_items .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  cursor: pointer;
  padding: 0 1px;
  text-align: center;
  text-decoration: none;
}

.sc_infomation .g_whitebk .wbk_bn_items .item .img {
  padding-top: 50%;
  background: center/cover no-repeat;
  overflow: hidden;
}

.sc_infomation .g_whitebk .wbk_bn_items .item .img img {
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}

.sc_infomation .g_whitebk .wbk_bn_items .item .name {
  margin-top: .5rem;
}

.sc_infomation .g_whitebk .wbk_bn_items .item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.sc_infomation .g_hotvd .item {
  margin: 0 auto;
}

.sc_infomation .g_hotvd .item .img {
  margin-bottom: 10px;
  overflow: hidden;
  background-color: #000;
}

.sc_infomation .g_hotvd .item img {
  -webkit-transition: -webkit-transform 200ms;
  transition: -webkit-transform 200ms;
  transition: transform 200ms;
  transition: transform 200ms, -webkit-transform 200ms;
}

.sc_infomation .g_hotvd .item:hover img {
  -webkit-transform: scale(0.96, 0.93);
          transform: scale(0.96, 0.93);
}

.sc_infomation .g_hotvd .more_items {
  margin: 1rem 0;
}

.sc_infomation .g_hotvd .more_items .tit {
  margin: 0 auto;
  max-width: 240px;
}

.sc_infomation .g_hotvd .more_items a {
  position: relative;
  z-index: 1;
  display: block;
  border: 1px solid #005f4b;
  border-radius: 24px;
  padding: .5em 2em;
  font-size: 1.125em;
  text-align: center;
  overflow: hidden;
}

.sc_infomation .g_hotvd .more_items a span {
  position: relative;
  z-index: 2;
  color: #005f4b;
  -webkit-transition: color 200ms 100ms;
  transition: color 200ms 100ms;
}

.sc_infomation .g_hotvd .more_items a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
  background-color: #003a3f;
}

.sc_infomation .g_hotvd .more_items a:hover {
  text-decoration: none;
}

.sc_infomation .g_hotvd .more_items a:hover span {
  color: #fff;
}

.sc_infomation .g_hotvd .more_items a:hover::after {
  opacity: 1;
}

.sc_infomation .demo_items .item_wrap {
  padding: 0 10px;
  margin-bottom: 20px;
}

.sc_infomation .demo_items .item_wrap:nth-child(2n) .item {
  background-color: rgba(0, 95, 75, 0.7);
}

.sc_infomation .demo_items .item_wrap:nth-child(2n) .item::after {
  border-left-color: #fcee21;
}

.sc_infomation .demo_items .item {
  position: relative;
  display: block;
  padding: 1em 1.5em;
  background-color: rgba(0, 95, 75, 0.9);
  height: 100%;
  overflow: hidden;
}

.sc_infomation .demo_items .item .title {
  position: relative;
  font-size: 1.125em;
  line-height: 1.2;
  color: #fff;
  min-height: 42px;
  left: 0;
  -webkit-transition: left 300ms;
  transition: left 300ms;
}

.sc_infomation .demo_items .item::after {
  content: '';
  position: absolute;
  left: -10px;
  top: 0;
  border-left: 10px solid #e9fcd3;
  height: 100%;
  -webkit-transition: left 300ms;
  transition: left 300ms;
}

.sc_infomation .demo_items .item:hover::after {
  left: 0;
}

.sc_infomation .demo_items .item:hover .title {
  left: 6px;
}

.sc_event .col_wrap {
  padding: 10px;
}

.sc_event .evt_item {
  position: relative;
  display: block;
  border-radius: 4px;
  border: 1px solid #e9fcd3;
  padding: 1rem;
  height: 100%;
  background-color: rgba(233, 252, 211, 0);
  font-size: 0;
  -webkit-transition: background 100ms;
  transition: background 100ms;
}

.sc_event .evt_item.un_open {
  border-color: #bbb;
  background-color: #f8f8f8;
}

.sc_event .evt_item.un_open .text_block {
  width: calc(100% - 2.5em);
}

.sc_event .evt_item.un_open::before {
  content: '敬請期待';
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 4px 0 2px 0;
  width: 2.75rem;
  padding: .5rem;
  background-color: #bbb;
  font-size: .875rem;
  line-height: 1.1;
  text-align: center;
  color: #fff;
}

.sc_event .evt_item.un_open::after {
  content: '';
  background-image: none;
}

.sc_event .evt_item.un_open:hover {
  background-color: #f8f8f8;
}

.sc_event .evt_item .date_block,
.sc_event .evt_item .text_block, .sc_event .evt_item::after {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.25rem;
}

.sc_event .evt_item .date_block {
  padding: 4px 4px 8px;
  width: 2.25em;
  background-color: #005f4b;
  line-height: 1;
  text-align: center;
}

.sc_event .evt_item .date_block .day {
  color: #fcee21;
  font-weight: 700;
  font-size: 1.25em;
}

.sc_event .evt_item .date_block .mon {
  color: #fff;
  font-size: 0.75em;
}

.sc_event .evt_item .text_block {
  position: relative;
  width: calc(100% - 4.5em);
  padding-left: 14px;
  padding-right: 10px;
  line-height: 1.2;
}

.sc_event .evt_item .text_block .tit {
  font-size: .875em;
}

.sc_event .evt_item .text_block .stit {
  margin-top: 6px;
  color: #005f4b;
  font-size: 1.125em;
  font-weight: 700;
}

.sc_event .evt_item::after {
  content: '';
  width: 2em;
  height: 100%;
  background: url("img/right.svg") center no-repeat;
  opacity: .1;
  -webkit-transition: opacity 200ms;
  transition: opacity 200ms;
}

.sc_event .evt_item:hover {
  background-color: rgba(233, 252, 211, 0.5);
  color: inherit;
}

.sc_event .evt_item:hover::after {
  opacity: 1;
}

.row_others .item {
  display: block;
  border-radius: 8px;
  margin: 10px 0;
  padding: .75rem 1.5rem;
  font-size: 1.25em;
  line-height: 1.25;
  border: 2px solid #000;
  height: 3.125rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-transition-property: background, color;
  transition-property: background, color;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
}

.row_others .news_wrap,
.row_others .article_wrap,
.row_others .blog_wrap {
  padding: 0 15px;
}

.row_others .news_wrap .item {
  border-color: #005f4b;
  background-color: rgba(0, 95, 75, 0.1);
  color: #005f4b;
}

.row_others .news_wrap .item:hover {
  background-color: #005f4b;
  color: #fff;
  text-decoration: none;
}

.row_others .article_wrap .item {
  border-color: #00a583;
  background-color: rgba(0, 165, 131, 0.1);
  color: #00a583;
}

.row_others .article_wrap .item:nth-child(3) {
  display: inline-table;
  margin-top: 0;
}

.row_others .article_wrap .item:hover {
  background-color: #00a583;
  color: #fff;
  text-decoration: none;
}

.row_others .blog_wrap .item {
  border-color: #00b336;
  background-color: rgba(0, 179, 54, 0.1);
  color: #00b336;
}

.row_others .blog_wrap .item:hover {
  background-color: #00b336;
  color: #fff;
  text-decoration: none;
}

.sc_company {
  padding-bottom: 80px;
}

.sc_company .container {
  position: relative;
  padding-left: 7%;
  padding-right: 7%;
}

.sc_company .parag_wrap {
  position: relative;
  border-radius: 20px;
  border: 1px solid #003a3f;
  padding: 45px 60px;
}

.sc_company .parag_wrap::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  right: 8px;
  bottom: -8px;
  z-index: 1;
  border-radius: 16px;
  border: 1px solid #e9fcd3;
}

.sc_company .parag_wrap .parag {
  position: relative;
  z-index: 2;
}

.sc_company .parag_wrap .parag a {
  color: #005f4b;
  text-decoration: underline;
}

.sc_company .parag_wrap .parag a:hover {
  color: #e9fcd3;
}

.sc_company .company_tit {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 3;
  padding: 0 10px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
}

.sc_company .company_tit .ti,
.sc_company .company_tit .nam {
  display: inline-block;
}

.sc_company .company_tit .ti {
  border-radius: 20px;
  padding: 4px 12px;
  border: 1px solid #003a3f;
  color: #003a3f;
}

.sc_company .company_tit .nam {
  margin-left: 6px;
  width: 200px;
}

.line_wrap {
  position: relative;
  z-index: 2;
  padding: 30px 0;
  background-color: #00b336;
}

.line_wrap .logo,
.line_wrap .text {
  display: inline-block;
  vertical-align: middle;
}

.line_wrap .logo img {
  height: 40px;
}

.line_wrap .text {
  margin-left: 1rem;
  font-size: 2em;
  line-height: 1.1;
  color: #fcee21;
  font-weight: 700;
}

.line_wrap .text div {
  padding: 0 6px;
  text-shadow: 0 1px 3px black;
}

.line_wrap .theme_lines {
  margin-top: 6px;
  font-size: 10px;
}

.line_wrap .qr_wrap {
  position: relative;
  width: 100px;
  margin-left: 10px;
}

.line_wrap .qr {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .sc_infomation .wbk_items .item_wrap,
  .sc_infomation .wbk_bn_items .item_wrap {
    position: relative;
    margin: 0 auto;
    max-width: 1600px;
    padding: 0 90px;
  }
  .sc_infomation .wbk_items .item_wrap .arw,
  .sc_infomation .wbk_bn_items .item_wrap .arw {
    position: absolute;
    top: calc(50% - 20px);
    width: 40px;
    height: 40px;
    border-top: 2px solid #00AC34;
    border-left: 2px solid #00AC34;
    cursor: pointer;
    opacity: 0.4;
  }
  .sc_infomation .wbk_items .item_wrap .arw.arw_left,
  .sc_infomation .wbk_bn_items .item_wrap .arw.arw_left {
    left: 50px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .sc_infomation .wbk_items .item_wrap .arw.arw_right,
  .sc_infomation .wbk_bn_items .item_wrap .arw.arw_right {
    right: 50px;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .sc_infomation .wbk_items .item_wrap .arw:hover,
  .sc_infomation .wbk_bn_items .item_wrap .arw:hover {
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .navbar-nav {
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .navbar-toggler {
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .navbar-toggler-icon {
    background-image: url("img/menu.svg");
  }
  .sc_title .tit .zh {
    padding: 0;
    line-height: 1.2;
    font-size: 1.5rem;
  }
  .sc_title .tit .sup {
    margin-top: .5rem;
    font-size: 1.125rem;
  }
  .section_block {
    padding-left: 15px;
    padding-right: 15px;
  }
  .intro_cnt {
    max-width: 100%;
  }
  .intro_cnt .text {
    padding: 0;
    font-size: 18px;
  }
  .rules_cnt {
    display: block;
    margin-left: -15px;
    margin-right: -15px;
  }
  .rules_cnt .part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .rules_cnt .part.p_other {
    width: 100%;
  }
  .rules_cnt .part.p_other .item {
    width: 33.33%;
  }
  .rules_cnt .part.p_veeam {
    width: 100%;
    margin-top: 60px;
  }
  .rules_cnt .part.p_veeam .item {
    width: 50%;
  }
  .rules_cnt .part.p_veeam::before {
    left: 0;
    right: 0;
    border-width: 2px 0;
  }
  .rules_cnt .item {
    margin-bottom: 20px;
  }
  .rules_cnt .item .txt {
    padding-left: 6px;
    padding-right: 6px;
    line-height: 1.2;
    font-size: 18px;
  }
  .best_cnt .items {
    display: block;
  }
  .best_cnt .item {
    text-align: center;
    margin-bottom: 30px;
  }
  .best_cnt .item .tit {
    margin-top: 12px;
    line-height: 1.2;
  }
  .switch_tab .sw_tabs .tab {
    font-size: 16px;
  }
  .switch_tab .sw_wraps .items {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .switch_tab .sw_wraps .items .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .switch_tab .sw_wraps .items .icon {
    max-width: 100px;
  }
  .switch_tab .sw_wraps .items .word {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
    padding-left: 18px;
    text-align: left;
    font-size: 18px;
  }
  .quote_wrap {
    padding: 0;
    padding-top: 36px;
  }
  .quote_wrap .w {
    text-align: justify;
    font-size: 1.125rem;
  }
  .need_cnt {
    padding-top: 1rem;
  }
  .need_cnt .items {
    display: block;
  }
  .need_cnt .item {
    margin-bottom: 40px;
    text-align: left;
  }
  .need_cnt .item .icon {
    float: left;
    max-width: 120px;
    padding-right: 20px;
  }
  .need_cnt .item .tit {
    padding-top: 10px;
    padding-bottom: 0;
  }
  .need_cnt .item .text {
    max-width: 200px;
  }
  .bonus_cnt {
    padding-top: 2rem;
  }
  .bonus_cnt .p_0 {
    right: calc(100% + 12px);
  }
  .bonus_cnt .tit,
  .bonus_cnt .cnt {
    display: block;
  }
  .bonus_cnt .tit {
    width: 100%;
    padding-right: 0;
  }
  .bonus_cnt .tit img {
    width: 70%;
  }
  .bonus_cnt .cnt {
    margin-top: 1rem;
    width: 100%;
  }
  .bonus_cnt .slick_wrap {
    padding: 1rem;
  }
  .bonus_cnt .slick_wrap .items {
    width: 80%;
  }
  .bonus_cnt .slick_wrap .items .arr_wrap {
    width: 10%;
  }
  .bonus_cnt .slick_wrap .items .arr_wrap.n_arr {
    left: 104%;
  }
  .bonus_cnt .slick_wrap .items .arr_wrap.p_arr {
    right: 104%;
  }
  .sc_form strong {
    display: block;
  }
  .sc_form .point_list {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sc_form .point_list::before, .sc_form .point_list::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 24px;
    width: 20px;
    height: calc(100% - 64px);
    border: 2px solid #00a583;
  }
  .sc_form .point_list::before {
    left: -10px;
    border-right-width: 0;
  }
  .sc_form .point_list::after {
    right: -10px;
    border-left-width: 0;
  }
  .sc_form .point_list .tit {
    font-size: 1.5em;
    line-height: 1.2;
  }
  .sc_form .point_list .item .txt {
    padding: .75em 1em;
  }
  .sc_form .main_button {
    padding: 1em 1.25em;
    font-size: 1.5em;
  }
  .sc_gifts {
    padding-top: 50px;
  }
  .sc_gifts .gift_tit .main {
    padding-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.3;
    padding: .5rem 1rem .65rem;
    -webkit-transform: skew(0deg);
            transform: skew(0deg);
  }
  .sc_gifts .gift_name {
    text-align: center;
    line-height: 1.2;
  }
  .sc_gifts .gift_name > span {
    display: inline-block;
  }
  .sc_gifts .gift_name .sub {
    top: 0;
    display: inline-block;
    line-height: 1.5;
  }
  .main_content .sc_title .sup_link {
    position: static;
    text-align: right;
  }
  .sc_infomation .g_case .sc_title .sup_link {
    color: #fff;
  }
  .sc_infomation .g_whitebk {
    padding-left: 0px;
    padding-right: 0px;
  }
  .sc_infomation .g_whitebk .wbk_bn_items .items_wrap {
    display: block;
  }
  .sc_infomation .g_whitebk .wbk_bn_items .items_wrap .item {
    margin-bottom: 20px;
  }
  .sc_infomation .g_whitebk .wbk_bn_items .items_wrap .item .name {
    font-weight: 400;
  }
  .sc_infomation .g_whitebk .slide {
    margin-bottom: 1.5rem;
  }
  .sc_infomation .g_hotvd {
    margin-top: 40px;
  }
  .sc_infomation .g_hotvd .hvd_items .item {
    margin-bottom: 30px;
  }
  .row_others {
    padding-bottom: 40px;
  }
  .row_others .sc_news,
  .row_others .sc_article {
    padding-top: 0;
    padding-bottom: 0;
  }
  .row_others .sc_article {
    margin-top: 20px;
  }
  .row_others .item {
    height: auto;
  }
  .sc_company .parag_wrap {
    padding: 45px 30px 30px;
  }
  .sc_company .parag_wrap::after {
    left: 6px;
    top: 6px;
    right: 6px;
  }
  .sc_company .company_tit {
    -webkit-transform: translate(-50%, -65%);
            transform: translate(-50%, -65%);
  }
  .sc_company .company_tit .nam {
    margin-left: 0;
    margin-top: 6px;
  }
  .line_wrap .qr_wrap {
    width: 100%;
    margin-left: 0;
  }
  .line_wrap .qr_wrap .qr {
    position: relative;
    width: 160px;
    margin: 20px auto;
  }
}
/*# sourceMappingURL=style.css.map */