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

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

.easySharing {
  position: relative;
  margin-top: 25px;
}
.easySharing--notop {
  margin-top: 0 !important;
}
.easySharing__text {
  padding: 25px;
  text-align: center;
}
.easySharing__text h2 span {
  display: block;
}
@media (min-width: 996px) {
  .easySharing {
    background: #eee;
    overflow: hidden;
    margin-top: 60px;
  }
  .easySharing__img {
    position: relative;
    z-index: 1;
    width: 80%;
    padding-left: 5%;
  }
  .easySharing__img img {
    vertical-align: bottom;
  }
  .easySharing__text {
    position: absolute;
    z-index: 2;
    top: 15%;
    left: 50%;
    padding: 0;
    text-align: left;
    width: 40%;
    text-shadow: #fff 1px 1px 5px;
  }
  .easySharing__text h2 span {
    display: inline-block;
  }
}
@media (min-width: 1600px) {
  .easySharing__text {
    top: 25%;
    width: 34%;
  }
}
@media (min-width: 1930px) {
  .easySharing__img {
    padding-left: 20%;
  }
}

.evse__appearance {
  position: relative;
  padding: 0 25px;
}
.evse__appearance img {
  width: 100%;
}
.evse__appearance__img {
  position: relative;
  z-index: 0;
}
.evse__appearance__imgLine {
  display: none;
  position: absolute;
  z-index: 1;
  inset: 0;
}
@media (min-width: 996px) {
  .evse__appearance__imgLine {
    display: block;
  }
  .evse__appearance h2 {
    position: absolute;
    z-index: 2;
    width: 100%;
    text-align: center;
    top: 10%;
  }
  .evse__appearance__text {
    position: absolute;
    z-index: 2;
    width: 25%;
  }
  .evse__appearance__text-1 {
    top: 40%;
    width: 21%;
    left: 7%;
  }
  .evse__appearance__text-2 {
    top: 73%;
    right: 68%;
    text-align: right;
  }
  .evse__appearance__text-3 {
    left: 70%;
    top: 45%;
  }
  .evse__appearance__text-4 {
    left: 65%;
    top: 76%;
  }
}

.evse__use {
  position: relative;
  padding: 25px 0;
}
.evse__use img {
  width: 100%;
}
.evse__use h2 span {
  display: block;
}
.evse__use__imgbox figure {
  position: relative;
}
.evse__use__imgbox figcaption {
  position: absolute;
  z-index: 2;
  font-size: 20px;
}
.evse__use__imgbox img {
  position: relative;
  z-index: 0;
}
.evse__use__imgbox .img1 figcaption {
  bottom: 35px;
  left: 35px;
}
.evse__use__imgbox .img2 figcaption {
  top: 35px;
  right: 35px;
}
.evse__use__iconbox {
  display: flex;
  justify-content: center;
  color: #80BA34;
}
.evse__use__iconbox figure {
  flex: 1;
  margin: 15px;
  max-width: 150px;
}
.evse__use__iconbox figcaption {
  padding-top: 5px;
}
@media (min-width: 996px) {
  .evse__use {
    padding-top: 50px;
  }
  .evse__use h2 {
    position: absolute;
    left: 80px;
    top: 80px;
  }
  .evse__use__imgbox {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .evse__use__imgbox .img1 {
    order: 2;
    flex: 0 0 38%;
  }
  .evse__use__imgbox .img2 {
    order: 1;
    flex: 0 0 58%;
    margin-top: 140px;
  }
  .evse__use__iconbox {
    position: absolute;
    width: 35%;
    top: 65%;
    right: 35px;
    text-align: center;
  }
}

.evse__install {
  background: #cad4d3;
  position: relative;
}
.evse__install img {
  width: 100%;
  vertical-align: bottom;
}
.evse__install__text {
  padding: 25px;
  text-shadow: #fff 1px 2px 3px;
}
.evse__install__text dl {
  font-weight: bold;
}
.evse__install__imgbox {
  position: relative;
  text-align: left;
}
.evse__install__imgbox dl {
  position: absolute;
  z-index: 2;
  top: 5px;
  width: 50%;
  left: 15px;
  font-size: 13px;
}
.evse__install__imgbox dt {
  position: relative;
  padding-left: 20px;
}
.evse__install__imgbox dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  color: #fff;
  font-size: 12px;
  background: #80BA34;
  text-align: center;
}
.evse__install__imgbox .text1::before {
  content: "1";
}
.evse__install__imgbox .text2::before {
  content: "2";
}
.evse__install__imgNum {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 25px;
  color: #fff;
  font-size: 12px;
  line-height: 25px;
  background: #80BA34;
  text-align: center;
}
.evse__install__imgNum-1 {
  right: 15%;
  top: 25%;
}
.evse__install__imgNum-2 {
  left: 45%;
  top: 75%;
}
@media (min-width: 996px) {
  .evse__install__text {
    position: absolute;
    z-index: 2;
    width: 50%;
    left: 30px;
    padding-top: 10%;
  }
  .evse__install__imgNum {
    display: none;
  }
  .evse__install__imgbox dt {
    position: absolute;
    font-size: 16px;
  }
  .evse__install__imgbox dt::before {
    display: none;
  }
  .evse__install__imgbox dl {
    width: 100%;
    height: 100%;
    inset: 0;
  }
  .evse__install__imgbox .text1 {
    right: 15%;
    top: 48%;
  }
  .evse__install__imgbox .text2 {
    width: 20%;
    left: 15%;
    top: 75%;
  }
}

.evse__plug {
  padding: 25px;
  text-align: center;
}
.evse__plug h2 span {
  display: block;
}
.evse__plug__spec {
  font-size: 15px;
  margin: 20px auto;
  vertical-align: top;
}
.evse__plug__spec__img {
  margin-bottom: 15px;
}
.evse__plug__spec__img img {
  vertical-align: bottom;
  width: 100px;
}
.evse__plug__spec ul {
  list-style: none;
}
.evse__plug__spec ul li {
  display: flex;
  align-items: center;
  border-bottom: #80BA34 1px solid;
  padding: 8px;
}
.evse__plug__spec ul li b, .evse__plug__spec ul li span {
  display: block;
}
.evse__plug__spec ul li b {
  flex: 0 0 150px;
  text-align: left;
}
.evse__plug__spec ul li span {
  flex: 0 0 calc(100% - 100px);
  text-align: center;
}
.evse__plug .note-xs {
  font-size: 14px;
  color: #666;
  padding-top: 10px;
  text-align: center;
}
.evse__plug .note-lg {
  display: none;
}
@media (min-width: 768px) {
  .evse__plug h2 span {
    display: inline-block;
  }
  .evse__plug__box {
    display: flex;
    width: 90%;
    margin: 0 auto;
    max-width: auto;
  }
  .evse__plug__spec:first-child {
    flex: 0 0 60%;
  }
  .evse__plug__spec:first-child .evse__plug__spec__img {
    display: flex;
    justify-content: flex-end;
    text-align: center;
    width: calc(100% - 100px);
    margin-left: 100px;
  }
  .evse__plug__spec:first-child .evse__plug__spec__img img {
    margin: 0 auto;
  }
  .evse__plug__spec:last-child {
    flex: 0 0 40%;
    flex-direction: column;
  }
  .evse__plug__spec:last-child span {
    flex: 0 0 100%;
  }
  .evse__plug__spec:last-child b {
    display: none;
  }
  .evse__plug__spec__img {
    width: 100%;
    max-width: auto;
  }
  .evse__plug__spec__img img {
    width: 180px;
  }
  .evse__plug__spec li:last-child {
    min-height: 100px;
  }
  .evse__plug .note-xs {
    display: none;
  }
  .evse__plug .note-lg {
    display: block;
    font-size: 14px;
    color: #666;
    padding-top: 10px;
    text-align: center;
  }
}
@media (min-width: 996px) {
  .evse__plug {
    text-align: center;
    padding: 50px 0 0;
  }
}

.evse__current {
  position: relative;
  padding: 50px 25px 0;
  background: url("../images//pdimg/ezgo/current-bg.jpg") top center no-repeat ;
  background-size: cover;
  text-align: center;
}
.evse__current__img img {
  width: 30%;
}
@media (min-width: 996px) {
  .evse__current .container {
    display: flex;
    text-align: left;
  }
  .evse__current__img {
    flex: 0 0 45%;
    text-align: right;
  }
  .evse__current__img img {
    width: auto;
    height: 60vh;
    margin-right: 12vw;
  }
  .evse__current__text {
    padding-top: 12vh;
    padding-left: 10vw;
  }
}

.evse__reserve {
  position: relative;
  background: #d7dbe4;
}
.evse__reserve img {
  width: 100%;
  vertical-align: bottom;
}
.evse__reserve__text {
  padding: 25px 25px 0;
}
@media (min-width: 996px) {
  .evse__reserve__text {
    position: absolute;
    z-index: 2;
    width: 50%;
    left: 45%;
    top: 10%;
  }
}
@media (min-width: 996px) {
  .evse__reserve .title--main span {
    display: block;
  }
}

.evse__app {
  position: relative;
  padding: 25px;
  display: block;
}
.evse__app__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding-bottom: 10px;
}
.evse__app__img {
  flex: 0 0 20%;
  margin-right: 20px;
}
.evse__app__imgScreenBox {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.evse__app__imgScreenBox figure {
  flex: 1;
  text-align: center;
}
@media (min-width: 996px) {
  .evse__app {
    padding-top: 60px;
  }
  .evse__app__box, .evse__app__imgScreen {
    display: block;
    width: 70%;
    margin-left: 30%;
  }
  .evse__app__imgScreenBox {
    margin-left: 30%;
    gap: 20px;
  }
  .evse__app__img {
    position: absolute;
    width: 25%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
  }
}

.evse__display {
  text-align: center;
  padding: 50px 25px 15px;
}
.evse__display img {
  width: 100%;
}
.evse__display p {
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
  margin: 0 auto !important;
}
.evse__display figure {
  margin: 10px auto;
}
.evse__display figcaption {
  padding-top: 10px;
  padding-bottom: 15px;
  font-weight: bold;
}
@media (min-width: 996px) {
  .evse__display {
    padding: 100px 25px 25px;
  }
  .evse__display__imgbox {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
    max-width: auto;
    padding: 25px 0;
  }
  .evse__display__imgbox figure {
    flex: 1;
    margin-right: 20px;
  }
  .evse__display__imgbox figure:last-child {
    margin-right: 0;
  }
  .evse__display__imgbox figcaption {
    font-size: 20px;
  }
}

.evse__led {
  padding: 25px;
}
.evse__led__img {
  padding-bottom: 25px;
  text-align: center;
}
.evse__led__img img {
  max-height: 250px;
}
.evse__led figure {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 5px;
}
.evse__led figure figcaption {
  margin-left: 5px;
}
.evse__led figure b {
  display: block;
}
@media (min-width: 768px) {
  .evse__led__imgbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .evse__led figure {
    display: inline-flex;
    flex-direction: column;
    text-align: center;
    width: calc(25% - 10px);
    margin: 15px 5px;
  }
  .evse__led figure b {
    padding-top: 8px;
    font-size: 18px;
  }
  .evse__led figure span {
    font-size: 15px;
    color: #444;
  }
}
@media (min-width: 996px) {
  .evse__led .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .evse__led__img {
    flex: 0 0 40%;
    text-align: center;
  }
  .evse__led__img img {
    max-height: none;
  }
  .evse__led__box {
    flex: 0 0 55%;
  }
  .evse__led__imgbox {
    justify-content: flex-start;
  }
  .evse__led figure {
    width: calc(33.3333333333% - 20px);
    margin: 15px 0;
    margin-right: 20px;
    line-height: 1.2;
  }
  .evse__led figure img {
    width: 100%;
  }
  .evse__led figure:nth-child(3n) {
    margin-right: 0;
  }
}

.evse__protect {
  position: relative;
  background: #eaeaea;
  padding: 25px;
  max-width: 1280px;
  margin: 0 auto;
}
.evse__protect__item {
  display: flex;
  align-items: center;
  text-align: left;
  width: 100%;
  margin-bottom: 20px;
}
.evse__protect__item p {
  padding-bottom: 0;
}
.evse__protect__item img {
  flex: 0 0 60px;
  width: 60px;
  margin-right: 10px;
}
@media (min-width: 996px) {
  .evse__protect {
    background: #fff;
  }
  .evse__protect h2 {
    position: absolute;
    z-index: 1;
    top: 10%;
  }
  .evse__protect h2 span {
    display: block;
  }
  .evse__protect h4 {
    font-size: 20px;
    padding-bottom: 5px;
  }
  .evse__protect__item {
    position: absolute;
    z-index: 1;
    width: auto;
    font-size: 16px;
  }
  .evse__protect__item-1 {
    top: 30%;
    left: 25px;
    width: 30%;
  }
  .evse__protect__item-2 {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    top: 50%;
    left: 25px;
    width: 25%;
  }
  .evse__protect__item-2 img {
    margin-bottom: 5px;
  }
  .evse__protect__item-3 {
    top: 40%;
    left: 35%;
    width: 25%;
    color: #fff;
    text-shadow: #000 0 0 10px;
  }
  .evse__protect__item-4 {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    top: 25%;
    right: 25px;
    width: 25%;
  }
  .evse__protect__item-4 img {
    margin-bottom: 5px;
  }
  .evse__protect__item-5 {
    top: 52%;
    right: 20px;
    width: 35%;
  }
  .evse__protect__item-6 {
    bottom: 20px;
    right: 30%;
    width: 25%;
  }
  .evse__protect__item-7 {
    bottom: 20px;
    right: 25px;
    width: 25%;
  }
  .evse__protect__img {
    position: relative;
    z-index: 0;
  }
  .evse__protect__img img {
    vertical-align: bottom;
  }
}

.evse__warranty {
  position: relative;
}
.evse__warranty .container {
  padding: 25px;
}
@media (min-width: 996px) {
  .evse__warranty {
    padding-top: 20px;
    padding-bottom: 50px;
  }
}
.evse__warranty img {
  width: 100%;
}
.evse__warranty__img {
  position: relative;
  z-index: 0;
}
.evse__warranty .icons {
  position: absolute;
  z-index: 3;
  width: 30%;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 996px) {
  .evse__warranty .icons {
    transform: none;
    top: 50%;
    width: 20%;
    left: 10%;
  }
}
@media (min-width: 996px) {
  .evse__warranty__text {
    position: absolute;
    z-index: 2;
    color: #fff !important;
    width: 40%;
    left: 10%;
    top: 25%;
  }
  .evse__warranty__text h2 {
    color: #fff !important;
  }
}

.evse__waterproof {
  position: relative;
}
@media (min-width: 996px) {
  .evse__waterproof {
    height: 60vh;
    overflow: hidden;
  }
}
.evse__waterproof img {
  width: 100%;
}
.evse__waterproof__img {
  position: relative;
  z-index: 0;
}
@media (min-width: 996px) {
  .evse__waterproof__img {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-60%);
  }
}
.evse__waterproof__text {
  position: relative;
  z-index: 2;
  z-index: 1;
  padding: 25px;
  margin-bottom: -65px;
}
@media (min-width: 996px) {
  .evse__waterproof__text {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    text-shadow: #fff 0 3px 5px;
  }
  .evse__waterproof__text p {
    width: 40%;
  }
}

.evse__GTtest {
  position: relative;
  text-align: center;
}
@media (min-width: 996px) {
  .evse__GTtest {
    height: 60vh;
    overflow: hidden;
  }
}
.evse__GTtest img {
  width: 100%;
}
.evse__GTtest__img {
  position: relative;
  z-index: 0;
}
@media (min-width: 996px) {
  .evse__GTtest__img {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -30%;
  }
}
.evse__GTtest__text {
  z-index: 1;
  padding: 25px;
}
@media (min-width: 996px) {
  .evse__GTtest__text {
    position: absolute;
    text-align: center;
    width: 100%;
    top: 20%;
    left: 0;
  }
  .evse__GTtest__text p {
    width: 100%;
    margin: 0 auto !important;
    max-width: 1000px;
    color: #fff;
  }
}

@media (min-width: 996px) {
  .evse__GTtest__text {
    top: 15%;
  }
}
.evse__materials {
  padding: 25px;
  text-align: center;
}
@media (min-width: 996px) {
  .evse__materials {
    text-align: left;
    background: linear-gradient(to right, #eee 0%, #fff 70%);
  }
}
.evse__materials p {
  padding-bottom: 20px;
}
@media (min-width: 996px) {
  .evse__materials {
    display: flex;
    align-items: center;
    padding: 80px 25px;
  }
  .evse__materials__img {
    flex: 0 0 50%;
  }
  .evse__materials .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .evse__materials .evse__materials__img {
    flex: 0 0 30%;
  }
}

.evse__materials {
  background: linear-gradient(to right, #eee 0%, #fafafa 70%);
}

.evse__cable {
  position: relative;
  background: linear-gradient(25deg, #ccc 0%, #fafafa 70%);
}
.evse__cable img {
  vertical-align: bottom;
  width: 100%;
}
.evse__cable .container {
  padding: 25px;
}
@media (min-width: 996px) {
  .evse__cable .container {
    position: absolute !important;
    z-index: 2;
    inset: 0;
  }
  .evse__cable__text {
    width: 60%;
    color: #fff;
    text-shadow: #333 2px 2px 10px;
    padding-top: 50px;
  }
  .evse__cable__text h2 {
    color: #fff !important;
  }
}

@media (min-width: 996px) {
  .fitting {
    flex: 1;
  }
}
.fittingBox {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
@media (min-width: 996px) {
  .fittingBox {
    flex-direction: row;
    margin-top: 2px;
    gap: 4px;
  }
}
.fitting img {
  width: 100%;
  vertical-align: bottom;
}
.fitting ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fitting li {
  background: #dadada;
  padding: 5px;
  text-align: center;
}
.fitting li:first-child {
  background: #575756;
  color: #fff;
}

.evse__color {
  background: url("../images/../images/pdimg/ezgo/color-bg.jpg") center center no-repeat ;
  background-size: cover;
  text-align: center;
}
.evse__color img {
  width: 50%;
  vertical-align: bottom;
}
@media (min-width: 996px) {
  .evse__color img {
    width: 35%;
  }
}

.spec {
  padding: 25px;
  text-align: center;
}
.spec .title--main {
  text-align: center;
}
.spec img {
  max-width: 100%;
  margin: 0 auto;
}
.spec__img {
  padding-top: 15px;
  overflow: auto;
}

@media (min-width: 996px) {
  .spec {
    padding-top: 80px;
  }
}

.pdSpecTable {
  width: 100%;
  border-top: #80BA34 5px solid;
}
.pdSpecTable td {
  padding: 5px 15px;
  background: #dadada;
  color: #222;
  text-align: left;
}
.pdSpecTable td:first-child {
  background: #565654;
  color: #fff;
  text-align: right;
}

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

.evse {
  padding-bottom: 50px;
}
@media (min-width: 996px) {
  .evse {
    padding-bottom: 80px;
  }
}
.evse .container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
.evse p {
  margin: 0;
  padding-bottom: 20px;
}
.evse-note {
  margin: 0;
  padding: 0;
  font-size: 15px;
  color: #666;
}
.evse-note li {
  padding: 0 0 5px 0;
  margin: 0;
  list-style: none;
}

.evse__use__imgbox figcaption {
  color: #fff;
  text-shadow: #000 5px 0 10px;
}

@keyframes btn {
  0%, 100% {
    text-shadow: #bfeb11 0 0 10px;
  }
  50% {
    text-shadow: #fff 0 0 5px;
  }
}
