@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;
  }
}

.software__tab {
  position: sticky;
  z-index: 110;
  top: 0;
  background: #fafafa;
  padding-top: 10px;
  color: #209CB5;
}
@media (min-width: 996px) {
  .software__tab {
    padding-top: 2vw;
  }
}
.software__tab ul {
  display: flex;
  justify-content: center;
  text-align: center;
}
.software__tab li {
  position: relative;
  flex: 1;
  padding: 15px;
  cursor: pointer;
  margin: 5px 1px 0;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  font-weight: bold;
  border-bottom: #eee 5px solid;
}
@media (min-width: 996px) {
  .software__tab li {
    font-size: 24px;
  }
}
.software__tab li a {
  color: #209CB5;
}
.software__tab li.active, .software__tab li:hover {
  border-color: #209CB5;
}

.titleNone {
  display: none;
}

.softwareApp {
  width: 100%;
}
.softwareApp__bg {
  background: var(--color-gray-100);
}
.softwareApp .introduction {
  padding: 100px 25px 50px;
}
@media (min-width: 996px) {
  .softwareApp .introduction {
    padding: 100px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .softwareApp .introduction__content span {
    display: block;
  }
}
.softwareApp .introduction__content {
  text-align: center;
  margin: 0 auto;
}
.softwareApp .introduction__content-title {
  font-size: var(--title-xl);
  color: #209CB5;
}
.softwareApp .introduction__content-subtitle {
  padding: 10px 0;
}
.softwareApp .introduction__content-qrcode {
  padding-top: 25px;
}
.softwareApp .introduction__content-qrcode img {
  width: 100px;
}
@media (min-width: 996px) {
  .softwareApp .introduction__content {
    text-align: left;
  }
}
.softwareApp .introduction__figure {
  margin: 0 auto;
  max-width: 700px;
}
.softwareApp .introduction__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.softwareApp .appBanner {
  padding: 250px 0;
  background: url("../images/software/app/app-banner.jpg") no-repeat center center/cover;
}
@media (min-width: 996px) {
  .softwareApp .appBanner {
    padding: 250px 0;
  }
}
.softwareApp .appBanner__title {
  font-size: var(--title-xl);
  color: #fff;
  text-align: center;
}
.softwareApp .appBanner__flex {
  margin: 20px auto 0;
  max-width: 1000px;
  color: #fff;
}
@media (min-width: 996px) {
  .softwareApp .appBanner__flex {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.softwareApp .appBanner__flex li {
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  text-align: center;
  border-bottom: 1px solid #fff;
}
@media (min-width: 996px) {
  .softwareApp .appBanner__flex li {
    max-width: 100%;
    padding: 0px 20px;
    border-bottom: none;
    border-right: 1px solid #fff;
  }
}
@media (min-width: 996px) {
  .softwareApp .appBanner__flex li:last-child {
    border: none;
  }
}
.softwareApp .businessBanner {
  background: url("https://storage-asset.msi.com/event/2024/Corp/EV-Charging/images/ems/ems-banner-2.jpg") no-repeat center center/cover;
}
.softwareApp .appFeature {
  position: relative;
  overflow: hidden;
  padding: 50px 25px;
}
.softwareApp .appFeature::before {
  content: "";
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 30%;
  left: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}
.softwareApp .appFeature__flex {
  position: relative;
  z-index: 5;
}
@media (min-width: 996px) {
  .softwareApp .appFeature__flex {
    display: flex;
    align-items: center;
  }
}
.softwareApp .appFeature__flex--line {
  margin: 25px auto;
}
.softwareApp .appFeature__flex--line::after {
  content: "";
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 3px;
  background: linear-gradient(to right, #eee, rgba(255, 255, 255, 0));
}
.softwareApp .appFeature__text {
  text-align: left;
}
.softwareApp .appFeature__title {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #80BA34;
  background: linear-gradient(to right, #eee, rgba(255, 255, 255, 0), #eee);
  padding: 50px;
  border-bottom: #595757 5px solid;
}
.softwareApp .appFeature__title img {
  width: 80px;
}
.softwareApp .appFeature__title h3 {
  font-size: 28px;
}
.softwareApp .appFeature__img--app {
  background: #eee;
  flex: 0 0 50%;
  text-align: center;
  padding: 15px;
  border-radius: 0 30px 0 30px;
}
.softwareApp .appFeature__img--app p {
  font-size: 14px;
  color: #666;
}
@media (min-width: 996px) {
  .softwareApp .appFeature__img--app {
    margin-right: 35px;
  }
  .softwareApp .appFeature__img--app img {
    max-height: 350px;
  }
}
.softwareApp .appFeature__item {
  position: relative;
  padding: 20px 0;
}
.softwareApp .appFeature__item h4 {
  position: relative;
  padding-left: 20px;
  font-size: 22px;
  padding-bottom: 15px;
  color: #209CB5;
}
.softwareApp .appFeature__item h4::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  left: 0;
  top: 10px;
  background: url("../images/../images/icons/check-mark.svg") center center no-repeat ;
  background-size: cover;
}
.softwareApp .appFeature__item p {
  padding-left: 15px;
}
@media (min-width: 996px) {
  .softwareApp .appFeature-1 .appFeature__img {
    position: absolute;
    left: -15%;
    top: -50%;
  }
  .softwareApp .appFeature-1 .appFeature__text {
    width: 50%;
    margin-left: 50%;
  }
}
