<!DOCTYPE html>
<html lang="">
  <head>
    <title>머스트잇::서비스 정기점검중입니다</title>
    <meta http-equiv="Content-Type" content="charset=UTF-8" />
    <meta
      name="viewport"
      content="user-scalable=yes, initial-scale=1.0, width=device-width"
    />
    <link
      rel="stylesheet"
      type="text/css"
      href="https://static-ux.mustit.co.kr/ux/service/common/mustit-webfonts.css"
    />
    <style type="text/css">
      * {
        margin: 0;
        padding: 0;
      }
      html,
      body {
        width: auto;
        height: 100%;
        font-family: "SD Gothic Neo", sans-serif;
      }
      .mi-layout-center {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
      }
      .mi-error {
        position: absolute;
        top: 50%;
        left: 15px;
        right: 15px;
        transform: translateY(-50%);
        text-align: center;
      }
      .mi-error-type {
        margin-bottom: 15px;
      }
      .mi-error-text {
        margin-bottom: 15px;
      }
      .mi-error-text p {
        font-size: 14px;
        color: #646464;
        line-height: 20px;
      }
      .maintenance-title {
        font-size: 24px;
        color: #141414;
        font-weight: bold;
        margin-bottom: 10px;
      }
      .maintenance-time {
        width: 500px;
        background-color: #f0f0f0;
        padding: 15px 20px;
        margin: auto;
        box-sizing: border-box;
      }
      .maintenance-thanks {
        margin-top: 15px;
        font-size: 14px;
        line-height: 20px;
        color: #646464;
        text-align: center;
      }
      .mi-error-image {
        width: 140px;
      }
      .mi-error-footer {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px 0 30px;
        text-align: center;
        background-color: #fff;
      }
      .mi-error-footer span {
        margin: 0 5px;
      }
      .mi-copyrighter span {
        color: #a0a0a0;
        font-size: 12px;
        line-height: 18px;
      }
      .mi-pc-logo {
        line-height: 11px;
        margin-bottom: 4px;
      }
      .mi-copyrighter {
        line-height: 15px;
      }
      .mi-mobile-logo {
        display: none;
      }
      .maintenance-time-mobile {
        background-color: #f0f0f0;
        display: none;
      }
      .maintenance-time-mobile > table {
        color: #141414;
        padding: 15px 20px;
        font-size: 14px;
        width: 100%;
      }
      .maintenance-row {
        display: table;
        table-layout: fixed;
        width: 100%;
      }
      .maintenance-row:first-child {
        margin-bottom: 10px;
      }
      .maintenance-cell {
        display: table-cell;
        font-size: 14px;
        text-align: left;
      }
      .maintenance-cell:first-child {
        width: 70px;
        font-weight: bold;
      }
      @media only screen and (max-width: 768px) {
        .mi-error {
          position: absolute;
          top: 50%;
          left: 30px;
          right: 30px;
          transform: translateY(-50%);
          text-align: center;
        }
        .maintenance-time {
          width: auto;
        }
        .maintenance-title {
          font-size: 20px;
          line-height: 30px;
        }
      }
    </style>
  </head>
  <body>
    <div class="mi-layout-center">
      <div class="mi-error">
        <div class="mi-error-type">
          <img
            src="https://static-ux.mustit.co.kr/img/front/icon/icon_overhaul.png"
            alt="서비스점검"
            class="mi-error-image"
          />
        </div>
        <div class="maintenance-title">시스템 정기점검중입니다.</div>
        <div class="mi-error-text">
          <p>
            안녕하세요. 머스트잇입니다.<br />
            보다 안정적인 서비스 제공과 성능 향상을 위해 시스템 점검이
            진행중입니다.<br /><br />
            점검이 진행되는 중에는 서비스 이용이 불가합니다.<br />
            불편을 드려 죄송합니다.
          </p>
        </div>
        <div class="maintenance-time">
          <div class="maintenance-row">
            <span class="maintenance-cell">- 점검시간</span>
            <span id="inspectionTime" class="maintenance-cell"></span>
          </div>
          <div class="maintenance-row">
            <span class="maintenance-cell">- 점검내용</span>
            <span id="instpecionDescription" class="maintenance-cell"></span>
          </div>
        </div>
        <div class="maintenance-thanks">
          더욱 안정적인 서비스 제공을 위해 노력하겠습니다.<br />
          감사합니다.
        </div>
      </div>
      <div class="mi-error-footer">
        <div class="mi-pc-logo">
          <img
            src="https://static-ux.mustit.co.kr/img/front/bi/bi_mustit_small_2ver.png"
            alt="MUSTIT"
            style="width: 66px"
          />
        </div>
        <div class="mi-copyrighter">
          <span>머스트잇 고객센터 1566 - 3516</span>
        </div>
      </div>
    </div>

    <script type="text/javascript">
      var INSPECTION_START_TIME = new Date("2026/07/27 02:00:00") // 점검 시작 시간.
      var INSPECTION_END_TIME = new Date("2026/07/27 07:00:00") // 점검 종료 시간.
      var INSPECTION_DESCRIPTION = "서비스 안정화" // 점검 내용.

      var TXT_DAY = ["일", "월", "화", "수", "목", "금", "토"]
      var TIME_REGEXP = /^(\d\d:\d\d)/
      document.getElementById("instpecionDescription").innerText =
        INSPECTION_DESCRIPTION
      document.getElementById("inspectionTime").innerText =
        INSPECTION_START_TIME.getFullYear() +
        "년 " +
        (INSPECTION_START_TIME.getMonth() + 1).toString().padStart(2, "0") +
        "월 " +
        INSPECTION_START_TIME.getDate().toString().padStart(2, "0") +
        "일(" +
        TXT_DAY[INSPECTION_START_TIME.getDay()] +
        ") " +
        TIME_REGEXP.exec(INSPECTION_START_TIME.toTimeString())[0] +
        " ~ " +
        TIME_REGEXP.exec(INSPECTION_END_TIME.toTimeString())[0] +
        " (총 " +
        (INSPECTION_END_TIME.getTime() - INSPECTION_START_TIME.getTime()) /
          (60 * 60 * 1000) +
        "시간)"
    </script>
  </body>
</html>
