: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, "Segoe UI", "Meiryo 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;
}

main {
  margin-top: 60px;
}
@media (min-width: 996px) {
  main {
    margin-top: 0;
  }
}

.productHeader {
  background: var(--color-gray-200);
  position: sticky;
  z-index: 80;
  top: 60px;
  width: 100%;
}
@media (min-width: 996px) {
  .productHeader {
    top: -1px;
  }
}

.productNav {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 1330px;
  padding: 8px 25px;
}
@media (min-width: 996px) {
  .productNav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
  }
}
@media (min-width: 1930px) {
  .productNav {
    max-width: 1600px;
  }
}
.productNav--mobile .productNav__titleBox {
  width: calc(100% - 120px);
}
.productNav--mobile .productNav-category {
  display: none;
}
.productNav--mobile .productNav-tab {
  display: none;
  text-transform: uppercase;
}
.productNav--mobile .productNav-tab.active {
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: var(--color-gray-300);
  padding: 0 25px;
}
.productNav--mobile .productNav-tab.active li {
  display: inline-flex;
  width: 50%;
}
.productNav--mobile .productNav-buynowBtn {
  width: 50px;
  height: 34px;
  font-size: 24px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.productNav--mobile .productNav-buynowBtn i {
  display: block;
}
.productNav--mobile .productNav-buynowBtn span {
  display: none;
}
.productNav--mobile .productNav-menuShow {
  display: block;
}
.productNav-category {
  text-transform: uppercase;
  font-size: var(--note-sm);
  color: #444;
}
.productNav-title {
  font-size: var(--title-md);
}
@media (min-width: 996px) {
  .productNav__tabBox {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
.productNav-tab {
  display: flex;
}
@media (min-width: 996px) {
  .productNav-tab {
    margin-right: 30px;
  }
}
.productNav-tab li {
  font-size: 14px;
  text-transform: uppercase;
}
@media (min-width: 996px) {
  .productNav-tab li {
    font-size: var(--text-sm);
  }
}
.productNav-tab li a {
  color: var(--color-gray-600);
  padding: 10px;
  display: block;
  position: relative;
}
@media (min-width: 996px) {
  .productNav-tab li a {
    padding: 20px 10px;
    margin: 0 20px;
  }
}
.productNav-tab li a:hover {
  color: var(--color-gray-800);
}
.productNav-tab li.active a {
  color: var(--color-gray-800);
}
.productNav-tab li.active a::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  left: 0;
  bottom: 0;
  background: #2E98E5;
}
.productNav-buynowBtn {
  background: #2E98E5;
  border: #2E98E5 1px solid;
  color: #fff;
  border-radius: 3px;
  text-transform: uppercase;
  cursor: pointer;
}
.productNav-buynowBtn:hover {
  background: none;
  color: #2E98E5;
}
@media (min-width: 996px) {
  .productNav-buynowBtn {
    padding: 10px 20px;
  }
}
.productNav-buynowBtn i {
  display: none;
}
.productNav-menuShow {
  display: none;
  position: absolute;
  z-index: 2;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  background: none;
  width: 45px;
  height: 34px;
}

.dwHead {
  position: relative;
  z-index: 1;
  background: url("../images/download-bg.png") top center no-repeat ;
  background-size: cover;
  text-align: center;
  padding: 25px;
}
@media (min-width: 996px) {
  .dwHead {
    text-align: left;
    padding-bottom: 60px;
  }
}
.dwHead-img {
  width: 60%;
  margin: 0 auto;
  max-width: auto;
}
@media (min-width: 996px) {
  .dwHead-img {
    flex: 0 0 40%;
    width: auto;
    text-align: right;
  }
  .dwHead-img img {
    width: 200px;
    margin-right: 30px;
  }
}
@media (min-width: 996px) {
  .dwHead__text {
    flex: 0 0 60%;
  }
}
.dwHead p {
  font-size: 16px;
}
.dwHead__box {
  padding-bottom: 40px;
}
@media (min-width: 996px) {
  .dwHead__box {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.dwTab {
  position: relative;
  z-index: 3;
  margin-top: -30px;
}
.dwTab ul {
  display: flex;
  justify-content: space-between;
}
.dwTab li {
  position: relative;
  flex: 1;
  background: #fff;
  border: #ccc 1px solid;
  text-align: center;
  margin-right: 15px;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
}
@media (min-width: 996px) {
  .dwTab li {
    font-size: 16px;
  }
}
.dwTab li:hover, .dwTab li.active {
  color: #2E98E5;
}
.dwTab li:hover::after, .dwTab li.active::after {
  content: "";
  position: absolute;
  background: none;
  border: #2E98E5 3px solid;
  inset: -1px;
  border-radius: 4px;
}
.dwTab li i {
  font-size: 34px;
}
.dwTab li span {
  display: block;
}
.dwTab li:last-child {
  margin-right: 0;
}
.dwBox__content {
  margin-top: 45px;
  display: none;
}
.dwBox__content:first-child {
  display: block;
}
.dwBox__content.active {
  display: block;
}
.dwBox .title {
  text-align: center;
  font-size: 20px;
  padding-bottom: 15px;
  margin-top: 45px;
}
@media (min-width: 996px) {
  .dwBox .title {
    display: none;
  }
}

.spec_area {
  width: 100%;
  margin: 0 auto;
  max-width: 1330px;
  padding: 0 25px;
}

#product__download {
  padding-bottom: 60px;
}
@media (min-width: 996px) {
  #product__download {
    padding-bottom: 100px;
  }
}

.att-box {
  position: relative;
  background: #Fafafa;
  padding: 15px;
  font-size: 15px;
}
@media (min-width: 996px) {
  .att-box {
    padding: 30px;
    margin-bottom: 20px;
  }
}
.att-box h5 {
  font-size: 16px;
  padding-bottom: 15px;
  display: flex;
}
.att-box h5::before {
  content: "\f018";
  font-family: "msi-icons";
  margin-right: 5px;
}
.att-box p {
  padding-bottom: 15px;
}
.att-box p:last-child {
  padding-bottom: 0;
}
.att-box a {
  color: #2E98E5;
}
.att-box a:hover {
  text-decoration: underline;
}
.att-box .heightLieTXT {
  color: var(--color-red-500);
}

.point-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
  border: #dfe9ec 2px solid;
  border-top: #2E6187 3px solid;
}
.point-col {
  display: flex;
  flex: 0 0 100%;
  border-bottom: #ececec 1px solid;
}
.point-col:first-child {
  background: #dfe9ec;
}
.point-col .data-point_label {
  flex: 0 0 25%;
}
.point-col-4 {
  flex: 0 0 25%;
  flex-direction: column;
  border-left: #ececec 1px solid;
}

.data-point_label {
  background: #fafafa;
  padding: 10px;
}
.data-point_value {
  padding: 10px;
}

.dowload_btn {
  display: flex;
  align-items: center;
  color: #2E98E5;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: bold;
}
.dowload_btn:hover {
  color: #2E6187;
}
.dowload_btn::after {
  content: "\f021";
  font-family: "msi-icons";
  font-size: 30px;
  margin-left: 10px;
}

.btn-dropdown-group {
  text-align: right;
}
.btn-dropdown-group .item-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (min-width: 996px) {
  .btn-dropdown-group .item-row {
    width: 400px;
    margin-left: calc(100% - 400px);
  }
}
.btn-dropdown-group .filters {
  position: relative;
  text-align: left;
  margin-left: 10px;
  font-size: 15px;
}
.btn-dropdown-group .filters.open ul {
  display: block;
  top: calc(100% + 5px);
}
.btn-dropdown-group button {
  position: relative;
  background: #fff;
  border: #ccc 1px solid;
  border-radius: 3px;
  padding: 10px 20px 10px 10px;
  display: block;
  width: 300px;
  cursor: pointer;
  text-align: left;
}
.btn-dropdown-group button:after {
  content: "\ea11";
  font-family: "msi-icons";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.btn-dropdown-group ul {
  display: none;
  position: absolute;
  z-index: 10;
  width: 100%;
  top: 100%;
  font-size: 15px;
  left: 0;
  background: #fff;
  border: #ccc 1px solid;
  border-radius: 3px;
  transition: 0.5s all ease;
}
.btn-dropdown-group ul a {
  color: var(--color-gray-800);
  display: block;
  padding: 5px 10px;
}
.btn-dropdown-group ul a:hover {
  background: #fafafa;
}

.prod-seo {
  width: 100%;
  margin: 0 auto;
  max-width: 1280px;
  padding-bottom: 60px;
}
@media (min-width: 1930px) {
  .prod-seo {
    max-width: 1600px;
    padding: 0;
  }
}
