  .clock-container {
    display: flex;
    justify-content: start;
    align-items: center;
    height: 240px;
    font-family: sans-serif;
    margin: 10px 0 0 0;
  }

  .clock {
    position: relative;
    width: 200px;
    height: 200px;
    border: 10px solid rgba(10, 50, 100, 0.75);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);

    box-shadow:
      inset 7px 7px 10px rgba(200, 200, 256, 0.6),
      /* 上亮 */
      inset -7px -7px 10px rgba(0, 0, 20, 0.2),
      /* 下暗 */
      2px 2px 5px rgba(0, 0, 0, 0.4);
  }

  .glass-overlay {

    top: 10px;
    left: 10px;
    width: calc(100%);
    /* 6px 左 + 6px 右 */
    height: calc(100%);
    /* 6px 上 + 6px 下 */
    pointer-events: none;
  }

  .hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom;
    transform: rotate(0deg);
  }

  .hour {
    width: 6px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3;
    border-radius: 10px;
  }

  .minute {
    width: 4px;
    height: 65px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    border-radius: 10px;
  }

  .second {
    width: 2px;
    height: 80px;
    background: rgba(255, 0, 0, 0.75);
    z-index: 1;
    border-radius: 10px;
  }

  .center-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(80, 80, 80, 1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
  }

  .number {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    transform: rotate(calc(30deg * var(--n)));
  }



  .number {
    counter-reset: n var(--n);
    font-size: 16px;
    font-weight: bold;
    transform: rotate(calc(30deg * var(--n)));
  }



  .label {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: #333;
  }

  .timezone {
    bottom: 60px;
  }

  .date {
    top: 60px;
  }

  @media (max-width: 1024px) {

    .clock-container {
      display: flex;
      justify-content: start;
      align-items: center;
      height: 140px;
      font-family: sans-serif;
    }

    .clock {
      position: relative;
      width: 125px;
      height: 125px;
      border: 7px solid rgba(0, 87, 184, 0.75);
      border-radius: 50%;

      box-shadow:
        inset 1px 2px 1px rgba(200, 200, 256, 0.6),
        /* 上亮 */
        inset -1px -2px 1px rgba(0, 0, 20, 0.2),
        /* 下暗 */
        2px 2px 5px rgba(0, 0, 0, 0.4);
    }

    .hand {
      position: absolute;
      bottom: 50%;
      left: 50%;
      transform-origin: bottom;
      transform: rotate(0deg);
    }

    .hour {
      width: 6px;
      height: 45px;
      z-index: 3;
      border-radius: 10px;
      box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.3);
    }

    .minute {
      width: 4px;
      height: 55px;
      z-index: 2;
      border-radius: 10px;
      box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.3);
    }

    .second {
      width: 2px;
      height: 60px;
      z-index: 1;
      border-radius: 10px;
      box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.3);
    }

    .center-dot {
      position: absolute;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 4;
      box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.3);
    }

    .number {
      position: absolute;
      width: 100%;
      height: 100%;
      text-align: center;
      transform: rotate(calc(30deg * var(--n)));
    }



    .number {
      counter-reset: n var(--n);
      font-size: 12px;
      font-weight: bold;
      transform: rotate(calc(30deg * var(--n)));
    }

    .label {
      position: absolute;
      width: 100%;
      text-align: center;
      font-size: 9px;
      font-weight: bold;
      color: #333;
    }

    .timezone {
      bottom: 42px;
    }

    .date {
      top: 42px;
    }

    .glass-overlay {
      top: 7px;
      left: 7px;
      width: calc(100%);
      /* 6px 左 + 6px 右 */
      height: calc(100%);
      /* 6px 上 + 6px 下 */
    }


  }