.wxcy-calendar {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  flex: 0 0 auto;
  gap: 3px 8px;
  overflow: hidden;
  padding: 7px 12px 0;
}

.wxcy-element-tone {
  --wxcy-element-bg: #fff;
  --wxcy-element-border: rgba(0, 0, 0, 0.16);
  --wxcy-element-color: #111;
  --wxcy-element-ring: #eda315;
}

.wxcy-element--wood {
  --wxcy-element-bg: #eef8f1;
  --wxcy-element-border: rgba(12, 136, 66, 0.24);
  --wxcy-element-color: #0c8842;
  --wxcy-element-ring: #0c8842;
}

.wxcy-element--fire {
  --wxcy-element-bg: #fff0f0;
  --wxcy-element-border: rgba(229, 34, 36, 0.28);
  --wxcy-element-color: #e52224;
  --wxcy-element-ring: #e52224;
}

.wxcy-element--earth {
  --wxcy-element-bg: #fff7e8;
  --wxcy-element-border: rgba(226, 138, 0, 0.3);
  --wxcy-element-color: #e28a00;
  --wxcy-element-ring: #e28a00;
}

.wxcy-element--metal {
  --wxcy-element-bg: #fffaf0;
  --wxcy-element-border: rgba(181, 133, 22, 0.3);
  --wxcy-element-color: #b58516;
  --wxcy-element-ring: #b58516;
}

.wxcy-element--water {
  --wxcy-element-bg: #eef4fb;
  --wxcy-element-border: rgba(32, 50, 82, 0.26);
  --wxcy-element-color: #203252;
  --wxcy-element-ring: #203252;
}

.wxcy-date p {
  color: #5d6262;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.wxcy-date h2 {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 3px 0 0;
  color: #050505;
  font-family: inherit;
  font-size: 29px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.wxcy-date h2 span,
.wxcy-date > p:first-child span {
  width: 0;
  height: 0;
  border-top: 5px solid #666;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.wxcy-date em {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  margin-top: 4px;
  padding: 0 7px;
  border-radius: 5px;
  background: #eff8f0;
  color: #0e8a45;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
}

.wxcy-cycle {
  position: relative;
  align-self: center;
  width: 106px;
  height: 106px;
}

.wxcy-cycle > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wxcy-cycle b {
  position: absolute;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  font-family: Georgia, "Songti SC", serif;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.wxcy-cycle .wood { top: 6px; left: 41px; background: linear-gradient(135deg, #3aa663, #0d7e42); }
.wxcy-cycle .fire { top: 36px; right: 6px; background: linear-gradient(135deg, #ef3d3b, #c80014); }
.wxcy-cycle .earth { right: 24px; bottom: 13px; background: linear-gradient(135deg, #f4a51b, #d78808); }
.wxcy-cycle .metal { bottom: 13px; left: 24px; border: 1px solid #cfd3d1; background: #fff; color: #111; }
.wxcy-cycle .water { top: 36px; left: 7px; background: linear-gradient(135deg, #444, #0f0f0f); }

.wxcy-today-element {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 31px 1fr;
  gap: 9px;
  align-items: center;
  margin: 4px -12px 0;
  padding: 5px 12px 6px;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.wxcy-today-element > span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 0;
  background: transparent;
  color: var(--wxcy-element-color);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.wxcy-today-element h3 {
  margin: 0 0 2px;
  color: #111;
  font-size: 17px;
  font-weight: 900;
}

.wxcy-today-element b {
  color: var(--wxcy-element-color);
  font-size: 19px;
}

.wxcy-today-element small {
  margin-left: 8px;
  font-size: 16px;
  font-weight: 500;
}

.wxcy-today-element p {
  margin: 0;
  color: #555b5b;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wxcy-today-element p + p {
  display: none;
}

@media (max-width: 390px) {
  .wxcy-calendar { grid-template-columns: 1.08fr 0.82fr; }
  .wxcy-cycle { justify-self: end; width: 98px; height: 98px; }
}

@media (max-height: 720px) {
  .wxcy-calendar { grid-template-columns: 1fr 88px; padding-top: 5px; }
  .wxcy-date p { font-size: 14.5px; line-height: 1.18; }
  .wxcy-date h2 { font-size: 26px; }
  .wxcy-date em { min-height: 16px; font-size: 15px; }
  .wxcy-cycle { width: 86px; height: 86px; }
  .wxcy-cycle b { width: 20px; height: 20px; font-size: 18px; }
  .wxcy-cycle .wood { top: 5px; left: 33px; }
  .wxcy-cycle .fire { top: 29px; right: 5px; }
  .wxcy-cycle .earth { right: 19px; bottom: 10px; }
  .wxcy-cycle .metal { bottom: 10px; left: 19px; }
  .wxcy-cycle .water { top: 29px; left: 6px; }
  .wxcy-today-element { grid-template-columns: 26px 1fr; padding: 3px 10px 4px; }
  .wxcy-today-element > span { width: 26px; height: 26px; font-size: 20px; }
  .wxcy-today-element h3 { font-size: 15.5px; }
}
