@import "https://storage-asset.msi.com/frontend/css/common-creation-font.css";
:root {
  --MSIBodyFont: -apple-system, BlinkMacSystemFont, "Segoe UI","Noto Sans TC", "Microsoft JhengHei", "Meiryo UI", Helvetica, Arial, sans-serif;
  --body-font-size: var(--text-md);
  /*font size*/
  --title-xl: 24px;
  --title-lg: 22px;
  --title-md: 20px;
  --title-sm: 18px;
  --title-xs: 16px;
  --text-xl: 20px;
  --text-lg: 18px;
  --text-md: 17px;
  --text-sm: 16px;
  --text-xs: 15px;
  --note-lg: 16px;
  --note-xl: 14px;
  --note-md: 13px;
  --note-sm: 12px;
  --link-xl: 20px;
  --link-lg: 18px;
  --link-md: 17px;
  --link-sm: 16px;
  --line-xs: 14px;
  --line-height-xl: 2;
  --line-height-lg: 1.8;
  --line-height-md: 1.5;
  --line-height-xs: 1.3;
  --line-height-list: 1.8;
  --line-height-article: 1.8;
}
@media (min-width: 992px) {
  :root {
    --title-xl: 36px;
    --title-lg: 26px;
  }
}
@media (min-width: 1930px) {
  :root {
    --title-md: 22px;
    --title-sm: 20px;
    --title-xs: 17px;
    --text-lg: 19px;
    --text-md: 18px;
    --text-sm: 17px;
    --text-xs: 16px;
    --note-lg: 17px;
    --note-xl: 15px;
    --note-md: 14px;
    --note-sm: 13px;
    --link-lg: 19px;
    --link-md: 18px;
    --link-sm: 17px;
    --line-xs: 16px;
  }
}

html:lang(ja-JP) body,
html:lang(JP) body {
  --MSIBodyFont: -apple-system, BlinkMacSystemFont, "Meiryo UI", "Yu Gothic", "Segoe UI", Arial, sans-serif;
}

html:lang(zh-TW) body,
html:lang(zh-CN) body,
html:lang(ja-JP) body,
html:lang(JP) body,
html:lang(ko-KR) body {
  --title-md: 22px;
  --text-md: 18px;
}
@media (min-width: 1930px) {
  html:lang(zh-TW) body,
  html:lang(zh-CN) body,
  html:lang(ja-JP) body,
  html:lang(JP) body,
  html:lang(ko-KR) body {
    --title-md: 26px;
    --text-md: 20px;
  }
}

:root {
  --color-black: #000;
  --color-white: #ffffff;
  --color-error: var(--color-red-400);
  --color-gray-100: #fafafa;
  --color-gray-200: #ececec;
  --color-gray-300: #cccccc;
  --color-gray-400: #808080;
  --color-gray-500: #7c7b7b;
  --color-gray-600: #696969;
  --color-gray-700: #333333;
  --color-gray-800: #222222;
  --color-gray-900: #1a1a1a;
  --color-gold-400: #9a8555;
  --color-red-300: #e92c2c;
  --color-red-400: #ea2023;
  --color-red-500: #fe0000;
  --color-red-600: #cc0000;
  --color-green-300: #92b457;
  --color-green-400: #86b000;
  --color-green-500: #82BC00;
  --color-gaming: var(--color-red-500);
  --color-cc: var(--color-gold-400);
  --color-bp: var(--color-gold-400);
  --color-amd: var(--color-green-400);
  --color-alpha: var(--color-green-300);
  --color-ws: var(--color-green-500);
  --body-bgcolor: var(--color-white);
  --body-text-color: var(--color-gray-700);
}

* {
  border: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ol, ul, li {
  list-style: none;
}

button, select {
  appearance: none;
  outline: none;
}

a {
  outline: none;
  text-decoration: none;
  appearance: none;
}

body {
  font-family: var(--MSIBodyFont);
  font-size: var(--text-lg);
  color: var(--color-gray-800);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}
body img {
  max-width: 100%;
}
body picture {
  display: block;
}

.msi__container {
  width: 100%;
  margin: 0 auto;
  max-width: 1330px;
  padding: 0 25px;
}
@media (min-width: 1930px) {
  .msi__container {
    max-width: 1600px;
    padding: 0;
  }
}

.common-title {
  font-size: 28px;
  font-weight: bold;
  padding: 25px 0 15px;
  line-height: 1.4;
}
.common-title--blue {
  color: #209CB5;
}
.common-title--green {
  color: #80BA34;
}
.common-title--white {
  color: #fff;
}
@media (min-width: 996px) {
  .common-title {
    font-size: 36px;
  }
}
.common-summary {
  font-size: 20px;
}
.common-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border-radius: 30px;
  color: #ffffff;
  font-size: var(--link-sm);
  padding: 20px 25px;
  transition: 0.5s all ease;
}
.common-btn::after {
  content: "";
  width: 25px;
  height: 20px;
  background: url("../images/btn-arrow.png") center right no-repeat;
  margin-left: 15px;
  transition: 0.5s all ease;
}
.common-btn:hover {
  padding: 20px 15px;
}
.common-btn:hover::after {
  width: 50px;
}
.common-btn--green {
  background: #80BA34;
}
.common-btn--green:hover {
  background: #209CB5;
}
.common-btn--blue {
  background: #209CB5;
}
.common-btn--blue:hover {
  background: #80BA34;
}

.toolBar-form {
  position: fixed;
  z-index: 701;
  bottom: 100px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #ffffff;
  background: #80BA34;
  cursor: pointer;
}
.toolBar-form:hover::before {
  width: 100%;
  height: 200%;
}
.toolBar-form span {
  display: none;
  writing-mode: vertical-rl;
  letter-spacing: 5px;
  padding: 15px;
  font-size: 16px;
  position: relative;
}
.toolBar-form i {
  font-size: 24px;
  position: relative;
  margin: 0 auto;
}
@media (min-width: 996px) {
  .toolBar-form {
    width: auto;
    height: auto;
    bottom: auto;
    top: 25%;
    right: 0;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    padding-bottom: 5px;
  }
  .toolBar-form::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    bottom: -20%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 80px;
    background: #209CB5;
    transition: 0.5s all ease;
  }
  .toolBar-form span {
    display: block;
  }
}
.toolBar-gotop {
  display: none;
  position: fixed;
  z-index: 701;
  bottom: 50px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #DCDDDD;
  color: #595757;
  font-size: 30px;
  cursor: pointer;
}
.toolBar-gotop i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.toolBar-gotop:hover {
  background: #209CB5;
  color: #fff;
}
@media (min-width: 996px) {
  .toolBar-gotop {
    width: 50px;
    height: 50px;
    border-radius: 20px;
  }
}

.header {
  position: fixed;
  z-index: 100;
  width: 100vw;
  top: 0;
  left: 0;
  background: #fff;
}
@media (min-width: 996px) {
  .header {
    position: relative;
  }
}
.header .noShow {
  display: none;
}
.headerBar {
  display: none;
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 701;
  background: #80BA34;
  color: #ffffff;
  text-align: center;
  padding: 10px 0 20px;
}
.headerBar a, .headerBar button {
  color: #ffffff;
  font-size: 15px;
  cursor: pointer;
}
.headerBar a:hover, .headerBar button:hover {
  text-decoration: underline;
}
@media (min-width: 996px) {
  .headerBar {
    position: relative;
    display: block;
    padding: 10px 0;
  }
  .headerBar .msi__container {
    display: flex;
    justify-content: space-between;
  }
}
.header__langBtn button {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  font-family: var(--MSIBodyFont);
  background: none;
  cursor: pointer;
}
.header__langBtn button span {
  padding: 0 5px;
}
.header__langBtn button:hover {
  text-decoration: none;
}
.header__langBtn button:hover span {
  text-decoration: underline;
}
@media (min-width: 996px) {
  .header__langBtn {
    order: 2;
  }
  .header__langBtn button {
    padding: 0;
  }
}
.header__relatedLinks {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.header__relatedLinks li {
  margin-right: 10px;
}
.header__relatedLinks li:last-child {
  margin-right: 0;
}
.header__relatedLinks a {
  padding: 15px;
}
.header__relatedLinks i {
  font-size: 85%;
  margin-right: 6px;
}
@media (min-width: 996px) {
  .header__relatedLinks {
    margin: 0;
  }
  .header__relatedLinks a {
    padding: 10px;
  }
}
.headerNav {
  text-align: center;
  position: relative;
}
.headerNav a {
  color: var(--color-gray-800);
}
.headerNav.on .header__logo {
  box-shadow: #eee 0 10px 10px;
}
@media (min-width: 996px) {
  .headerNav {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1930px) {
  .headerNav {
    max-width: 1600px;
  }
}
.header__logo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: #ccc 1px solid;
}
.header__logo img {
  width: auto;
  height: 25px;
  margin-top: 8px;
}
@media (min-width: 996px) {
  .header__logo {
    border-bottom: none;
    width: auto;
    height: auto;
  }
  .header__logo img {
    height: 40px;
  }
}
.header__btnNav {
  position: absolute;
  z-index: 50;
  left: 25px;
  top: 20px;
}
.header__btnNav i {
  transition: all 0.3s ease;
}
@media (min-width: 996px) {
  .header__btnNav {
    display: none;
  }
}
.header__mainNav {
  display: none;
  position: absolute;
  z-index: 5;
  width: 100%;
  height: calc(100vh - 60px);
  padding: 25px 0;
  text-align: left;
  background: #fff;
  font-weight: bold;
}
.header__mainNav li {
  padding: 15px 25px;
}
.header__mainNav li i {
  display: none;
}
@media (min-width: 996px) {
  .header__mainNav {
    display: block;
    position: relative;
    height: auto;
    background: none;
    padding: 0;
  }
  .header__mainNav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .header__mainNav li {
    padding: 0;
    margin-right: 55px;
  }
  .header__mainNav li:last-child {
    margin-right: 0;
  }
  .header__mainNav li i {
    display: inline-block;
    font-size: 30px;
  }
  .header__mainNav li span {
    display: none;
  }
  .header__mainNav li.wtb a {
    padding: 20px 0;
  }
  .header__mainNav li.wtb a:hover::before {
    display: none;
  }
  .header__mainNav a {
    display: block;
    padding: 25px 0;
    font-size: 18px;
    position: relative;
  }
  .header__mainNav a:hover, .header__mainNav a.active {
    color: #80BA34;
  }
  .header__mainNav a:hover::before, .header__mainNav a.active::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: #80BA34;
  }
}

.langMenu {
  display: none;
}
.langMenu__body {
  display: flex;
  justify-content: space-between;
  padding-bottom: 25px;
}
.langMenu__body a {
  display: block;
  flex: 1;
  text-align: center;
  padding: 10px 15px;
}
.langMenu__close, .langMenu h2 {
  display: none;
}
@media (min-width: 996px) {
  .langMenu {
    position: fixed;
    z-index: 900;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
  }
  .langMenu__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    background: #ffffff;
    color: var(--color-gray-800);
    text-align: center;
    padding: 30px 50px 50px;
    box-shadow: #eee 0 0 30px;
  }
  .langMenu__inner h2 {
    text-align: center;
  }
  .langMenu__inner a {
    color: var(--color-gray-800);
    border: #ccc 1px solid;
    margin-top: 10px;
  }
  .langMenu__inner a:hover {
    background: #209CB5;
    color: #fff;
    text-decoration: none;
  }
  .langMenu__body, .langMenu__close, .langMenu h2 {
    display: block;
  }
  .langMenu__close {
    position: absolute;
    right: 20px;
    top: 20px;
  }
  .langMenu__close i {
    color: var(--color-gray-800);
    font-size: 30px;
  }
  .langMenu__close:hover i {
    color: #80BA34;
  }
}

.footer {
  position: relative;
  z-index: 500;
  background: #fff;
}
.footer__box {
  position: relative;
}
.footerNav {
  padding: 25px 0;
}
@media (min-width: 996px) {
  .footerNav {
    padding: 40px 0 50px;
  }
}
.footerNav span {
  position: relative;
  display: block;
  padding: 10px;
  border-bottom: var(--color-gray-300) 1px solid;
  font-weight: bold;
  text-transform: capitalize;
  font-size: 20px;
}
@media (min-width: 996px) {
  .footerNav span {
    border: none;
  }
}
.footerNav .icon-msi-down {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (min-width: 996px) {
  .footerNav .icon-msi-down {
    display: none;
  }
}
.footerNav ul ul {
  padding: 10px;
  display: none;
}
.footerNav ul ul a {
  display: block;
  padding: 10px;
  color: var(--color-gray-800);
  font-size: 15px;
}
.footerNav ul ul a:hover {
  text-decoration: underline;
}
@media (min-width: 996px) {
  .footerNav ul {
    display: flex;
  }
  .footerNav ul li {
    flex: 0 0 200px;
  }
  .footerNav ul ul {
    display: block;
  }
  .footerNav ul ul a {
    padding: 5px 0;
  }
}
.footer__community {
  text-align: center;
}
.footer__community a {
  color: var(--color-gray-700);
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: #D9D9D9;
  font-size: 24px;
  margin: 5px;
}
.footer__community a:hover {
  background: #209CB5;
  color: #fff;
}
@media (min-width: 996px) {
  .footer__community {
    position: absolute;
    right: 0;
    top: 50px;
  }
}
.footer__links {
  background: #D9D9D9;
  font-size: 13px;
  text-align: center;
  padding: 25px 0;
  margin-top: 30px;
}
.footer__links a {
  display: inline-block;
  color: var(--color-gray-700);
}
.footer__links a:hover {
  text-decoration: underline;
}
.footer__links li {
  display: inline-block;
  margin-left: 15px;
}
.footer__links li:first-child {
  margin-left: 0;
}
@media (min-width: 996px) {
  .footer__links {
    padding: 15px 0 15px;
  }
  .footer__links li {
    margin-left: 40px;
  }
}
.footer__copyright {
  color: var(--color-gray-700);
  padding-top: 15px;
}
@media (min-width: 996px) {
  .footer__copyright {
    order: 1;
    padding-top: 0;
  }
}
@media (min-width: 996px) {
  .footer__box2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer__box2 ul {
    order: 2;
  }
}

.breadCrumbs {
  position: relative;
  z-index: 50;
  background: #80BA34;
  font-size: 14px;
  color: #eeeeee;
  padding: 10px 0;
}
.breadCrumbs a {
  color: #eeeeee;
}
.breadCrumbs a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.breadCrumbs i {
  padding: 0 10px;
}
.breadCrumbs span {
  color: #fff;
}
.breadCrumbs.sp {
  margin-top: 50px;
}
@media (min-width: 996px) {
  .breadCrumbs.sp {
    margin-top: 90px;
  }
}

.focus {
  background: var(--color-gray-100);
  text-align: center;
  padding: 60px 0 40px;
}
.focus__img {
  padding: 30px 0 0;
  width: 80%;
  margin: 0 auto;
  max-width: auto;
}
.focus ul {
  text-align: left;
  padding: 25px 0;
  margin-left: 20px;
}
.focus ul li {
  padding: 8px 0;
  list-style: square;
}
.focus h1 {
  font-size: 28px;
}
@media (min-width: 768px) {
  .focus {
    text-align: left;
    padding: 100px 0 60px;
  }
  .focus__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .focus__img {
    width: 100%;
    flex: 0 0 40%;
    text-align: left;
  }
  .focus__text {
    flex: 0 0 55%;
  }
}
@media (min-width: 996px) {
  .focus {
    padding: 40px 0 50px;
  }
  .focus h1 {
    font-size: 36px;
  }
}

:root {
  --block-title-xl: 60px;
  --block-title-lg: 28px;
  --block-title-md: 20px;
  --block-title-sm: 18px;
  --block-title-xs: 18px;
  --block-text-lg: 20px;
  --block-text-md: 17px;
  --block-text-sm: 16px;
  --block-text-xs: 15px;
  --block-font: var(--MSIBodyFont);
  --block-bg: #000;
  --block-color: var(--color-white);
  --block-title-color: var(--color-white);
}
@media (min-width: 996px) {
  :root {
    --block-title-lg: 32px;
    --block-title-md: 26px;
    --block-title-sm: 20px;
  }
}

.pd-block {
  background-color: var(--block-bg);
  color: var(--block-color);
  font-size: var(--block-text-md);
}
.pd-block img {
  max-width: 100%;
}
.pd-block .title--main {
  font-size: var(--block-title-lg);
  color: var(--block-title-color);
  margin-bottom: 10px;
  font-weight: bold;
}
.pd-block .title--sub {
  font-size: var(--block-title-md);
  color: var(--block-title-color);
  margin-bottom: 10px;
}
.pd-block .title--list {
  font-size: var(--block-title-sm);
  color: var(--block-title-color);
  margin-bottom: 5px;
  font-weight: bold;
}
.pd-block .text--list {
  font-size: var(--block-text-sm);
}
.pd-block .text--note {
  font-size: var(--block-text-xs);
  opacity: 0.7;
  margin-top: 25px;
}
.pd-block .data__value span {
  font-size: var(--block-title-xl);
  font-weight: 400;
}
.pd-block p {
  line-height: 1.5;
}
.pd-block .sp {
  padding-top: 20px;
  padding-bottom: 20px;
}
.pd-block .sp--top {
  padding-top: 20px;
}
.pd-block .sp--bottom {
  padding-bottom: 20px;
}
.pd-block .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 1930px) {
  .pd-block .container {
    max-width: 1600px;
    padding: 0;
  }
}
.pd-block .container--full {
  width: 100%;
  max-width: 3840px;
  margin: 0 auto;
}
.pd-block[data-feature-theme=white] {
  --block-bg: var(--color-white);
  --block-color: var(--color-gray-800);
  --block-title-color: var(--color-gray-800);
}
.pd-block[data-font=creation] {
  --block-font: "CenturyGothic", "Microsoft JhengHei", Arial, sans-serif;
}

.compatible {
  background: url("../images/compatible-all-ev-xs.jpg") top right no-repeat ;
  background-size: cover;
  padding: 20vh 25px 40px;
  margin-top: 5px;
}
.compatible__box {
  background: #fff;
  box-shadow: #ccc 0 0 30px inset;
  text-align: center;
  padding: 25px;
}
.compatible__icons {
  display: flex;
  justify-content: center;
}
.compatible__icons > div {
  flex: 0 0 80px;
  margin-right: 20px;
  padding-top: 25px;
}
.compatible__icons > div:last-child {
  margin-right: 0;
}
.compatible__icons > div span {
  display: block;
  font-weight: bold;
}
@media (min-width: 996px) {
  .compatible {
    padding: 0;
  }
  .compatible__box {
    width: 45%;
    padding: 60px 40px;
  }
  .compatible__box p {
    font-size: 20px;
    padding: 20px 0;
    line-height: 1.8;
  }
  .compatible__icons > div {
    flex: 0 0 120px;
  }
}
@media (min-width: 1930px) {
  .compatible {
    background: url("../images/compatible-all-ev.jpg") top right no-repeat ;
    background-size: cover;
  }
  .compatible__box {
    width: 55%;
  }
}

.simple {
  background: #209CB5;
  position: relative;
  text-align: center;
  padding: 40px 25px;
  overflow: hidden;
}
.simple__bg {
  position: absolute;
  z-index: 0;
  width: 100%;
  bottom: 0%;
  right: -5%;
  opacity: 0.3;
}
.simple__bg img {
  width: 100%;
  transform: scale(2);
}
.simple__item {
  text-align: left;
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.simple__icon {
  flex: 0 0 80px;
  margin-right: 25px;
}
.simple__txt {
  flex: 0 0 calc(100% - 105px);
}
@media (min-width: 996px) {
  .simple {
    padding: 100px 0;
  }
  .simple__text p {
    font-size: 20px;
    padding: 20px 0;
    line-height: 1.8;
  }
  .simple__bg {
    width: 78%;
    bottom: -25%;
    right: -10%;
  }
  .simple__bg img {
    transform: scale(1);
  }
  .simple__box {
    display: flex;
    justify-content: space-between;
    padding-top: 70px;
  }
  .simple__item {
    flex: 1;
    margin-right: 40px;
  }
  .simple__item:last-child {
    margin-right: 0;
  }
  .simple__icon {
    flex: 0 0 100px;
  }
  .simple__txt {
    flex: 0 0 calc(100% - 105px);
  }
}

.forHome {
  background: #fff;
  box-shadow: #ccc 0 0 30px inset;
  padding: 45px 25px;
  text-align: center;
}
.forHome__text {
  padding-bottom: 25px;
}
.forHome__img {
  position: relative;
  padding-right: 10px;
}
.forHome__img::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  transform: skew(-10deg);
  background: #80BA34;
}
.forHome__img figure {
  position: relative;
  border-radius: 50px;
  transform: skew(-10deg);
  overflow: hidden;
}
.forHome__img figure img {
  transform: skew(10deg) scale(1.1);
}
.forHome__item {
  text-align: left;
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.forHome__icon {
  flex: 0 0 80px;
  margin-right: 25px;
}
.forHome__txt {
  flex: 0 0 calc(100% - 105px);
}
@media (min-width: 768px) {
  .forHome__img {
    width: 80%;
    margin: 0 auto;
    max-width: auto;
  }
}
@media (min-width: 996px) {
  .forHome {
    padding: 80px 0 100px;
  }
  .forHome__text {
    padding-bottom: 50px;
  }
  .forHome__text p {
    width: 80%;
    margin: 0 auto;
    max-width: auto;
    font-size: 20px;
    padding: 20px 0;
    line-height: 1.8;
  }
  .forHome__img {
    width: 100%;
    flex: 0 0 50%;
  }
  .forHome__features {
    flex: 0 0 40%;
    margin-left: 10%;
  }
  .forHome__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .forHome__item {
    flex: 1;
    margin-right: 40px;
  }
  .forHome__item:last-child {
    margin-right: 0;
  }
  .forHome__icon {
    flex: 0 0 100px;
  }
  .forHome__txt {
    flex: 0 0 calc(100% - 105px);
  }
}

.forWork {
  background: #fff;
  box-shadow: #ccc 0 10px 30px inset;
  padding: 45px 25px;
  text-align: center;
  margin-top: 5px;
}
.forWork__text {
  padding-bottom: 25px;
}
.forWork__img {
  position: relative;
  padding-right: 10px;
}
.forWork__img::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  transform: skew(-10deg);
  background: #209CB5;
}
.forWork__img figure {
  position: relative;
  border-radius: 50px;
  transform: skew(-10deg);
  overflow: hidden;
}
.forWork__img figure img {
  transform: skew(10deg) scale(1.1);
}
.forWork__item {
  text-align: left;
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.forWork__icon {
  flex: 0 0 80px;
  margin-right: 25px;
}
.forWork__txt {
  flex: 0 0 calc(100% - 105px);
}
@media (min-width: 768px) {
  .forWork__img {
    width: 80%;
    margin: 0 auto;
    max-width: auto;
  }
}
@media (min-width: 996px) {
  .forWork {
    padding: 80px 0 100px;
  }
  .forWork__text {
    padding-bottom: 50px;
  }
  .forWork__text span {
    display: block;
  }
  .forWork__text p {
    font-size: 20px;
    line-height: 1.8;
  }
  .forWork__img {
    width: 100%;
    flex: 0 0 50%;
    order: 2;
  }
  .forWork__features {
    flex: 0 0 40%;
    margin-right: 10%;
    order: 1;
  }
  .forWork__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .forWork__item {
    flex: 1;
    margin-right: 40px;
  }
  .forWork__item:last-child {
    margin-right: 0;
  }
  .forWork__icon {
    flex: 0 0 100px;
  }
  .forWork__txt {
    flex: 0 0 calc(100% - 105px);
  }
}

.certificate {
  background: url("../images/certificate-xs.jpg") top right no-repeat ;
  background-size: cover;
  padding: 20vh 25px 40px;
}
.certificate__box {
  background: #fff;
  box-shadow: #ccc 0 10px 30px inset;
  text-align: center;
  padding: 25px;
}
.certificate__icons {
  display: flex;
  justify-content: center;
}
.certificate__icons > div {
  flex: 1;
  margin-right: 20px;
  padding-top: 25px;
}
.certificate__icons > div img {
  width: 80px;
}
.certificate__icons > div:last-child {
  margin-right: 0;
}
.certificate__icons > div b {
  display: block;
  font-weight: bold;
}
.certificate__icons > div span {
  display: block;
}
@media (min-width: 996px) {
  .certificate {
    padding: 0;
    background: url("../images/certificate.jpg") top right no-repeat ;
    background-size: cover;
  }
  .certificate__box {
    width: 55%;
    padding: 60px 40px;
    margin-left: 45%;
    box-shadow: #ccc 0 10px 50px inset;
  }
  .certificate__box p {
    font-size: 20px;
    padding: 20px 0;
    line-height: 1.8;
  }
}

.scenarios {
  background: #fff;
  box-shadow: #ccc 0 0 30px inset;
  padding: 45px 25px;
  text-align: center;
}
.scenarios figure {
  display: block;
  position: relative;
  border-radius: 30px;
  transform: skew(-10deg);
  overflow: hidden;
}
.scenarios figure img {
  position: relative;
  transform: skew(10deg) scale(1.1);
  vertical-align: bottom;
}
.scenarios figure figcaption {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #fff;
  background: rgba(32, 156, 181, 0.5);
  padding: 10px;
  transform: skew(10deg);
  font-weight: bold;
  font-size: 16px;
}
.scenarios__item {
  display: flex;
  margin-top: 20px;
}
.scenarios__img {
  flex: 1;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .scenarios__box {
    position: relative;
    width: 90%;
    margin: 0 auto;
    max-width: auto;
  }
  .scenarios__item {
    display: block;
    position: absolute;
    width: calc(33.3333333333% - 5px);
  }
  .scenarios__item:nth-child(1) {
    left: 0;
    top: 0;
  }
  .scenarios__item:nth-child(2) {
    margin: 0 auto;
    position: relative;
    padding-top: 60px;
  }
  .scenarios__item:nth-child(3) {
    right: -10px;
    top: 0;
  }
  .scenarios__img {
    margin-top: 10px;
    margin-right: 0;
  }
}
@media (min-width: 996px) {
  .scenarios {
    padding: 80px 0 100px;
  }
  .scenarios__text {
    padding-bottom: 30px;
  }
  .scenarios__text p {
    width: 80%;
    margin: 0 auto;
    max-width: auto;
    font-size: 20px;
    padding: 20px 0;
    line-height: 1.8;
  }
  .scenarios__item {
    width: calc(33.3333333333% - 10px);
  }
  .scenarios__item .scenarios__img {
    margin-top: 18px;
  }
  .scenarios__item .scenarios__img:last-child {
    transform: translateX(-40px);
  }
  .scenarios figure figcaption {
    letter-spacing: 3px;
    padding: 20px 10px;
    transform: scale(1.05) skew(10deg);
  }
}

.app {
  background: #fff;
  box-shadow: #ccc 0 0 30px inset;
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}
.app img {
  width: 100%;
}
.app__bg {
  height: 30vh;
  overflow: hidden;
  position: absolute;
  z-index: 0;
}
.app__img {
  position: relative;
  width: 80%;
  margin: 0 auto;
  max-width: 450px;
  padding: 15vh 0 0;
}
.app__text {
  padding: 10px 25px 0;
}
.app ul {
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}
.app ul li {
  padding: 8px 0;
}
.app ul i {
  color: #209CB5;
  margin-right: 8px;
}
.app__qrcode {
  display: flex;
  justify-content: center;
  padding-top: 25px;
}
.app__qrcode > div {
  flex: 0 0 80px;
  margin-right: 10px;
}
.app__qrcode > div:last-child {
  margin-right: 0;
}
.app__qrcode h3 {
  font-size: 16px;
}
@media (min-width: 996px) {
  .app {
    padding-bottom: 0;
    text-align: left;
  }
  .app__bg {
    height: 100%;
    width: 40%;
    right: 0;
    top: 0;
  }
  .app__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
  }
  .app__img {
    order: 2;
    flex: 0 0 50%;
    padding: 0;
    max-width: none;
  }
  .app__img img {
    width: 90%;
  }
  .app__qrcode {
    justify-content: flex-start;
  }
  .app__qrcode > div {
    flex: 0 0 100px;
    margin-right: 15px;
    text-align: center;
  }
}

.ems {
  background: #fff;
  box-shadow: #ccc 0 0 30px inset;
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}
.ems img {
  width: 100%;
}
.ems__bg {
  height: 30vh;
  overflow: hidden;
  position: absolute;
  z-index: 0;
}
.ems__img {
  position: relative;
  width: 80%;
  margin: 0 auto;
  max-width: 450px;
  padding: 15vh 0 0;
}
.ems__text {
  padding: 10px 25px 0;
}
.ems ul {
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}
.ems ul li {
  padding: 8px 0;
}
.ems ul i {
  color: #209CB5;
  margin-right: 8px;
}
.ems__qrcode {
  display: flex;
  justify-content: center;
  padding-top: 25px;
}
.ems__qrcode > div {
  flex: 0 0 80px;
  margin-right: 10px;
}
.ems__qrcode > div:last-child {
  margin-right: 0;
}
.ems__qrcode h3 {
  font-size: 16px;
}
@media (min-width: 996px) {
  .ems {
    padding-bottom: 0;
    text-align: left;
  }
  .ems__bg {
    height: 100%;
    width: 40%;
    left: 0;
    top: 0;
  }
  .ems__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 0 60px;
  }
  .ems__img {
    flex: 0 0 50%;
    padding: 0;
    max-width: none;
  }
  .ems__img img {
    width: 100%;
  }
  .ems__text {
    flex: 0 0 40%;
  }
  .ems ul {
    margin-left: 0;
  }
  .ems__qrcode {
    justify-content: flex-start;
  }
  .ems__qrcode > div {
    flex: 0 0 100px;
    margin-right: 15px;
    text-align: center;
  }
}

.spec {
  background: #fff;
  box-shadow: #ccc 0 0 30px inset;
  padding: 45px 25px;
  text-align: center;
}
.spec img {
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 996px) {
  .spec {
    padding: 100px 0;
  }
}

.pd-block .title--main {
  font-weight: bold;
}
.pd-block .title--main.color-green {
  color: #80BA34;
}
.pd-block .title--main.color-blue {
  color: #209CB5;
}

html[lang=zh-CN] [data-font=creation] .pd-block .title--main {
  font-weight: normal;
}
