@charset "UTF-8";
@-webkit-keyframes shine {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes shine {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes AniFloat {
  0% {
    -webkit-transform: translateY(3%);
            transform: translateY(3%);
  }
  50% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    -webkit-transform: translateY(3%);
            transform: translateY(3%);
  }
}
@keyframes AniFloat {
  0% {
    -webkit-transform: translateY(3%);
            transform: translateY(3%);
  }
  50% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    -webkit-transform: translateY(3%);
            transform: translateY(3%);
  }
}
:root {
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI",'Microsoft JhengHei',"Noto Sans TC", "微軟正黑體", "Meiryo UI", Roboto, Helvetica, Arial, sans-serif;
  --mainTitle: 22px;
  --mainTxt: 18px;
  --mainPrice: 20px;
  --mainNote: 15px;
}
@media (min-width: 768px) {
  :root {
    --mainTitle: 27px;
    --mainTxt: 20px;
    --mainPrice: 20px;
    --mainNote: 15px;
  }
}
:root {
  --font-color-dark: #fff;
  --font-color-light: #111;
}
:root html:lang(ja-JP) *:not(.material-icons):not(.fa):not(.buttonicons) {
  --font: -apple-system, BlinkMacSystemFont,"Meiryo UI", Arial, sans-serif;
}

img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}

picture {
  display: grid;
}

.computex {
  font-family: var(--font);
  color: var(--font-color-light);
  background: #f0f0f0;
}
.computex__header {
  text-align: center;
  padding: 6px 0;
}
.computex__header picture {
  width: 100%;
  max-width: 140px;
  margin: 0 auto;
}
.computex__kv {
  width: 100%;
}
.computex__tabs {
  position: sticky;
  top: 0;
  background: rgba(25, 25, 25, 0.9529411765);
  color: #e3e3e3;
  z-index: 100;
}
.computex__tabs--open .computex__tabs-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.computex__tabs--open .computex__tabs-toggle-icon span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.computex__tabs--open .computex__tabs-toggle-icon span:nth-child(2) {
  opacity: 0;
}
.computex__tabs--open .computex__tabs-toggle-icon span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}
.computex__tabs-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 12px 1rem;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.computex__tabs-toggle-label {
  pointer-events: none;
}
.computex__tabs-toggle-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 24px;
  height: 18px;
}
.computex__tabs-toggle-icon span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}
.computex__tabs-menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0;
  padding: 0 1rem 12px;
}
@media (min-width: 996px) {
  .computex__tabs-toggle {
    display: none;
  }
  .computex__tabs-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.35rem 0.5rem;
    padding: 15px 0 17px;
  }
}
.computex__tab {
  color: inherit;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 0;
  -webkit-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}
@media (min-width: 996px) {
  .computex__tab {
    margin: 0 20px;
    padding: 0;
  }
}
.computex__tab:hover {
  color: #ff63be;
}
.computex__tab--active {
  color: #ff63be;
}
.computex__section-title {
  margin: 0rem 0 1rem;
  text-align: center;
  font-size: var(--mainTitle);
  font-weight: 700;
  color: #ffffff;
  font-size: 30px;
  background: url(https://storage-asset.msi.com/event/msi_ipc/images/products_header_bg_sbc.jpg) top right no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 70px 0;
}
.computex__section-subtitle {
  margin: 50px 0 30px;
  text-align: center;
  font-size: 25px;
  color: #000000;
  font-weight: 700;
}
@media (min-width: 996px) {
  .computex__section-title {
    font-size: 40px;
  }
}
.computex__spotlight {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
  overflow: hidden;
}
.computex__spotlight-media {
  width: 50%;
  margin: 50px 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px;
}
.computex__spotlight-media img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.computex__spotlight-media:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.computex__spotlight-title {
  margin: 0;
  font-size: 50px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 1;
  color: #ffffff;
  font-size: 30px;
  background: url(https://storage-asset.msi.com/event/2026/ipc/computex2026/images/ipc-solutions-1.webp) top right no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 70px 0;
}
@media (min-width: 996px) {
  .computex__spotlight-flex {
    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;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
  }
  .computex__spotlight-title {
    font-size: 40px;
  }
}
.computex__demos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  padding: 0 0rem 0rem;
  max-width: 1200px;
  margin: 0px auto 15px;
}
@media (min-width: 996px) {
  .computex__demos {
    margin: 80px auto;
    padding: 0 1rem 0rem;
  }
}
.computex__demo {
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0px;
}
.computex__demo--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.computex__demo--stack {
  grid-template-columns: 1fr;
}
.computex__demo-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .computex__demo-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.computex__demo-media {
  min-width: 0;
  border-radius: 15px;
  overflow: hidden;
  margin: 25px;
}
.computex__demo-body {
  min-width: 0;
  margin: 20px 25px 20px;
}
.computex__demo-title {
  font-size: var(--mainTitle);
}
.computex__demo-partner-link {
  position: relative;
  display: inline-block;
  color: inherit;
}
.computex__demo-partner-link img {
  height: 50px;
  -webkit-transition: -webkit-transform 0.1s ease-in-out;
  transition: -webkit-transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}
.computex__demo-partner-link:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.computex__demo-desc {
  margin: 0;
  font-size: var(--mainTxt);
  line-height: 1.55;
}
.computex__demo-desc a {
  color: #ed018c;
  text-decoration: underline;
  font-weight: 500;
}
@media (min-width: 996px) {
  .computex__demo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
  }
  .computex__demo-media {
    border-radius: 25px;
    margin: 20px;
  }
  .computex__demo-media50 {
    width: 50%;
  }
  .computex__demo-body {
    margin: 40px 20px 20px;
  }
  .computex__demo-body50 {
    width: 50%;
  }
}
.computex__showcase {
  padding: 2rem 0 3rem;
  border-top: 1px solid #eee;
}
.computex__showcase-frame {
  position: relative;
  max-width: 1280px;
  margin: 0 auto 30px;
  padding: 0 3rem;
}
@media (max-width: 767px) {
  .computex__showcase-frame {
    padding: 0 2.5rem;
  }
}
.computex__showcase-slider {
  position: relative;
}
.computex__showcase-slider .slick-list {
  overflow: hidden;
}
.computex__showcase-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.computex__showcase-slide {
  outline: none;
  text-align: center;
  padding: 0 0.5rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.computex__showcase-media {
  margin: 0 auto 1rem;
  max-width: 420px;
}
.computex__showcase-media picture img {
  width: 100%;
  height: 180px;
}
.computex__showcase-product-title {
  margin: 0 0 0.5rem;
  font-size: 20px;
}
.computex__showcase-product-title span {
  font-size: 18px;
  color: #4f4f4f;
}
.computex__showcase-desc {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 16px;
  line-height: 1.55;
  color: #000;
}
.computex__showcase-link {
  display: inline-block;
  text-decoration: none;
  padding: 5px 20px;
  border-radius: 5px;
  background: #383838;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.55;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.computex__showcase-link:hover {
  background: #f884c0;
}
.computex__video {
  background-color: rgba(197, 197, 197, 0.9529411765);
}
.computex__video-frame {
  position: relative;
  max-width: 1280px;
  margin: 50px auto 0px;
  padding: 30px 0 40px;
}
@media (max-width: 767px) {
  .computex__video-frame {
    padding: 0 2.5rem;
  }
}
.computex__video-slide {
  outline: none;
  text-align: center;
  padding: 0 0.5rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
}
.computex__video-slide:hover .youtube img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.computex__video .youtube {
  overflow: hidden;
  text-align: center;
}
.computex__video .youtube img {
  width: 100%;
  margin: 0 auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.computex__video-product-title {
  margin: 10px 0 0;
  font-size: 20px;
  padding: 0 20px;
}
.computex .link {
  background-color: rgba(197, 197, 197, 0.9529411765);
  padding: 100px 0;
}
.computex .link__block {
  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;
  gap: 1rem;
}
.computex .link__block a {
  display: block;
}
.computex .link__block a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-filter: invert(1);
          filter: invert(1);
  mix-blend-mode: darken;
}
.computex .link__block a .nofilter {
  -webkit-filter: none;
          filter: none;
}
.computex .slick-next, .computex .slick-prev {
  width: auto;
  height: 100%;
}
.computex .slick-next::before {
  display: block;
  content: "";
  background: url(https://storage-asset.msi.com/event/2026/ipc/computex2026/images/center-next.png) no-repeat center center;
  background-size: contain;
  width: 25px;
  height: 100%;
}
.computex .slick-prev::before {
  display: block;
  content: "";
  background: url(https://storage-asset.msi.com/event/2026/ipc/computex2026/images/center-pre.png) no-repeat center center;
  background-size: contain;
  width: 25px;
  height: 100%;
}
@media (min-width: 996px) {
  .computex .slick-next::before {
    width: 25px;
  }
  .computex .slick-prev::before {
    width: 25px;
  }
}

#edgexpert,
#ipcSolutions,
#products,
#videos,
#gallery {
  scroll-margin-top: 53px;
}/*# sourceMappingURL=main.css.map */