﻿:root  {
  --cy-bg: #f3f7fa;
  --cy-card: #ffffff;
  --cy-ink: #142433;
  --cy-text: #31495a;
  --cy-muted: #6e7f8a;
  --cy-border: #dce7ee;
  --cy-cyan: #009ad6;
  --cy-gold: #fdb933;
  --cy-green: #006c54;
  --cy-blue: #426ab3;
  --cy-navy: #2b4490;
  --cy-shadow: 0 8px 28px rgba(43, 68, 144, 0.08);
  --cy-radius: 10px;
}
*  {
  box-sizing: border-box;
}
html  {
  min-height: 100%;
}
body.cy-page  {
  margin: 0;
  min-height: 100vh;
  min-width: 1440px;
  display: flex;
  flex-direction: column;
  background: var(--cy-bg);
  color: var(--cy-ink);
  font-family: "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.cy-page > main  {
  flex: 1 0 auto;
}
body.cy-page > .cy-footer,
body.cy-page > .ci-footer  {
  flex: 0 0 auto;
}

a  {
  color: inherit;
  text-decoration: none;
}
img  {
  display: block;
  max-width: 100%;
}
.cy-topbar  {
  background: linear-gradient(135deg, var(--cy-navy), var(--cy-blue) 52%, var(--cy-cyan));
  color: #fff;
  position: relative;
  box-shadow: 0 10px 30px rgba(43, 68, 144, 0.16);
}
.cy-topbar::after  {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cy-cyan), var(--cy-gold), var(--cy-green), var(--cy-blue));
  background-size: 220% 100%;
  animation: cyFlowLine 5s linear infinite;
}
.cy-topbar-inner  {
  width: 1400px;
  margin: 0 auto;
  height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.cy-logo  {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.cy-logo img  {
  width: 180px;
  height: auto;
  filter: none;
}
.cy-nav  {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
  height: 42px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.cy-nav a  {
  min-width: auto;
  height: 40px;
  padding: 0 15px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.cy-nav a:hover,
.cy-nav a.is-active  {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transform: translateY(-1px);
}
.cy-nav a.is-active  {
  background: rgba(253, 185, 51, 0.18);
  color: var(--cy-gold);
  box-shadow: inset 0 -2px 0 var(--cy-gold);
}
.cy-userbar  {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  min-width: 0;
  justify-content: flex-end;
}
.cy-userbar a,
.cy-userbar button  {
  min-width: 64px;
  height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.cy-userbar a:hover,
.cy-userbar button:hover  {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}
.cy-userbar .cy-register  {
  background: var(--cy-gold);
  color: var(--cy-navy);
  border-color: var(--cy-gold);
}
.cy-userbar .cy-user-profile  {
  min-width: 0;
  width: auto;
  max-width: 170px;
  height: 42px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  grid-template-rows: 15px 17px;
  align-content: center;
  column-gap: 7px;
  row-gap: 2px;
  padding: 5px 8px 5px 6px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 22px rgba(14, 38, 88, 0.12);
}
.cy-user-avatar  {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cy-gold), var(--cy-cyan));
  color: var(--cy-navy);
  font-size: 14px;
  font-weight: 900;
  box-shadow:
    0 8px 16px rgba(0, 154, 214, 0.18),
    inset 0 0 0 2px rgba(255, 255, 255, 0.42);
}
.cy-user-avatar img  {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cy-user-name-text  {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  max-width: 82px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
  font-weight: 900;
  line-height: 15px;
  color: #fff;
}
.cy-user-role  {
  grid-column: 2;
  grid-row: 2;
  width: fit-content;
  max-width: 58px;
  height: 17px;
  padding: 0 6px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(253, 185, 51, 0.18);
  color: var(--cy-gold);
  font-size: 10px;
  font-weight: 900;
}
.cy-userbar #cyLogout  {
  min-width: 48px;
  height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}
.cy-userbar #cyLogout:hover  {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.cy-page-title  {
  width: 1400px;
  margin: 24px auto 0;
  padding: 24px 28px;
  border-radius: var(--cy-radius);
  background: var(--cy-card);
  border: 1px solid var(--cy-border);
  box-shadow: var(--cy-shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cy-page-title h1  {
  margin: 0;
  color: var(--cy-navy);
  font-size: 24px;
  letter-spacing: 2px;
}
.cy-page-title-heading  {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cy-page-title-back  {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--cy-border);
  border-radius: 6px;
  color: var(--cy-blue);
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}
.cy-page-title-back:hover  {
  border-color: var(--cy-cyan);
  color: var(--cy-cyan);
}
.cy-breadcrumb  {
  color: var(--cy-muted);
  font-size: 13px;
}
.cy-breadcrumb a  {
  color: var(--cy-blue);
  text-decoration: none;
}
.cy-breadcrumb a:hover  {
  color: var(--cy-cyan);
}
.cy-breadcrumb-separator  {
  margin: 0 7px;
  color: rgba(85, 111, 145, 0.7);
}
.cy-breadcrumb-current  {
  color: var(--cy-muted);
}
.cy-main  {
  width: 1400px;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 26px;
  align-items: start;
}
.cy-main.cy-main-single  {
  grid-template-columns: 1fr;
}

.cy-card  {
  background: var(--cy-card);
  border: 1px solid var(--cy-border);
  border-radius: var(--cy-radius);
  box-shadow: var(--cy-shadow);
  overflow: hidden;
}
.cy-card-head  {
  min-height: 54px;
  padding: 0 20px;
  border-bottom: 1px solid var(--cy-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--cy-navy);
  font-weight: 900;
}
.cy-card-head::before  {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cy-gold);
  box-shadow: 0 0 10px rgba(253, 185, 51, 0.5);
}
.cy-card-head span  {
  margin-right: auto;
}
.cy-card-body  {
  padding: 20px;
}
.cy-toolbar  {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.cy-mt-sm  {
  margin-top: 10px;
}
.cy-mt-md  {
  margin-top: 16px;
}
.cy-mt-lg  {
  margin-top: 18px;
}
.cy-mt-xl  {
  margin-top: 22px;
}

.cy-input,
.cy-select,
.cy-textarea  {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--cy-border);
  border-radius: 8px;
  padding: 0 12px;
  outline: none;
  color: var(--cy-ink);
  background: #fff;
  font: inherit;
}
.cy-textarea  {
  min-height: 120px;
  padding: 12px;
  resize: vertical;
}
.cy-input:focus,
.cy-select:focus,
.cy-textarea:focus  {
  border-color: var(--cy-cyan);
  box-shadow: 0 0 0 3px rgba(0, 154, 214, 0.08);
}
.cy-btn  {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cy-cyan), var(--cy-blue));
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(43, 68, 144, 0.16);
}
.cy-btn.cy-btn-gold  {
  background: linear-gradient(135deg, var(--cy-gold), #e6a520);
  color: var(--cy-navy);
}
.cy-btn.cy-btn-plain  {
  background: #fff;
  color: var(--cy-cyan);
  border: 1px solid rgba(0, 154, 214, 0.28);
  box-shadow: none;
}
.cy-table .cy-btn.cy-btn-plain  {
  min-width: 62px;
  min-height: 32px;
  height: 32px;
  padding: 0 14px;
  border-radius: 7px;
  border-color: rgba(0, 154, 214, 0.34);
  background: #fff;
  color: var(--cy-cyan);
  font-size: 13px;
  font-weight: 900;
}
.cy-table .cy-btn.cy-btn-plain:hover  {
  border-color: var(--cy-cyan);
  background: var(--cy-cyan);
  color: #fff;
}
.cy-btn.cy-btn-plain.is-liked  {
  background: rgba(0, 154, 214, 0.08);
  color: var(--cy-blue);
  border-color: rgba(0, 154, 214, 0.38);
}
.cy-btn.cy-btn-plain.is-collected  {
  background: rgba(253, 185, 51, 0.16);
  color: var(--cy-navy);
  border-color: rgba(253, 185, 51, 0.5);
}
.cy-table  {
  width: 100%;
  border-collapse: collapse;
}
.cy-table-wrap  {
  width: 100%;
  overflow-x: auto;
}
.cy-table-wrap .cy-table  {
  min-width: 720px;
}
.cy-table th,
.cy-table td  {
  border-bottom: 1px solid rgba(0, 154, 214, 0.08);
  padding: 13px 10px;
  text-align: left;
  font-size: 13px;
}
.cy-table th  {
  color: var(--cy-muted);
  background: rgba(0, 154, 214, 0.04);
  font-weight: 900;
}
.cy-table tr:hover td  {
  background: rgba(0, 154, 214, 0.03);
}

.cy-period-btn  {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(0, 154, 214, 0.22);
  border-radius: 7px;
  background: #fff;
  color: var(--cy-text);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}
.cy-period-btn.is-active  {
  background: linear-gradient(135deg, var(--cy-cyan), var(--cy-blue));
  border-color: var(--cy-cyan);
  color: #fff;
}

.cy-list  {
  display: grid;
  gap: 12px;
}
.cy-list-item  {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid var(--cy-border);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(0, 154, 214, 0.035), rgba(253, 185, 51, 0.035));
}
.cy-list-title  {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--cy-ink);
  font-size: 15px;
  font-weight: 900;
}
.cy-list-meta  {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--cy-muted);
  font-size: 12px;
}

.cy-filter-btn,
.cy-period-btn  {
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #fff;
  color: var(--cy-text);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.cy-filter-btn:hover,
.cy-filter-btn.is-active,
.cy-period-btn:hover,
.cy-period-btn.is-active  {
  border-color: rgba(0, 154, 214, 0.28);
  background: linear-gradient(135deg, var(--cy-cyan), var(--cy-blue));
  color: #fff;
}

.cy-period-options  {
  display: flex;
  gap: 0;
  padding: 3px;
  border: 1px solid var(--cy-border);
  border-radius: 999px;
  background: rgba(0, 154, 214, 0.04);
}
.cy-period-options .cy-period-btn  {
  border-radius: 999px;
  border-color: transparent;
}

.cy-muted-text  {
  color: var(--cy-muted);
}
.cy-status  {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}
.cy-status-ok  {
  background: rgba(0, 108, 84, 0.12);
  color: var(--cy-green);
}

.cy-table-actions  {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cy-copy-code  {
  min-height: 28px;
  padding: 0 10px;
}

.cy-status-wait  {
  color: var(--cy-gold);
  font-weight: 900;
}

.cy-balls  {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cy-balls-dense  {
  flex-wrap: nowrap;
  gap: 4px;
}
.cy-ball  {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #e73535, #b51224);
  box-shadow: 0 3px 9px rgba(229, 42, 42, 0.22);
}
.cy-balls-dense .cy-ball  {
  width: 28px;
  height: 28px;
  font-size: 12px;
  box-shadow: 0 2px 6px rgba(229, 42, 42, 0.18);
}
.cy-ball.blue  {
  background: linear-gradient(135deg, #2f8cff, #1d4fb7);
  box-shadow: 0 3px 9px rgba(47, 140, 255, 0.22);
  color: #fff;
}
.cy-tabs  {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.cy-tab  {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid var(--cy-border);
  background: #fff;
  color: var(--cy-text);
  font-weight: 900;
  cursor: pointer;
}
.cy-tab.is-active  {
  color: #fff;
  border-color: var(--cy-cyan);
  background: linear-gradient(135deg, var(--cy-cyan), var(--cy-blue));
}

.cy-pagination  {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 22px;
}
.cy-pagination,
.cy-pagination *,
.cy-page .layui-laypage,
.cy-page .layui-laypage *  {
  box-sizing: border-box;
}
.cy-page .layui-laypage  {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  color: var(--cy-text);
  font-size: 13px;
}
.cy-page .layui-laypage a,
.cy-page .layui-laypage span,
.cy-pagination button  {
  min-width: 34px;
  height: 34px;
  margin: 0;
  padding: 0 11px;
  border: 1px solid rgba(0, 154, 214, 0.2);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--cy-navy);
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}
.cy-page .layui-laypage a:hover,
.cy-pagination button:hover  {
  border-color: rgba(0, 154, 214, 0.48);
  background: rgba(0, 154, 214, 0.08);
  color: var(--cy-cyan);
}
.cy-page .layui-laypage .layui-laypage-curr  {
  position: relative;
  min-width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}
.cy-page .layui-laypage .layui-laypage-curr .layui-laypage-em  {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: var(--cy-cyan);
}
.cy-page .layui-laypage .layui-laypage-curr em:not(.layui-laypage-em)  {
  position: relative;
  min-width: 34px;
  height: 34px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-style: normal;
  font-weight: 900;
  z-index: 1;
}
.cy-page .layui-laypage .layui-disabled,
.cy-page .layui-laypage .layui-disabled:hover  {
  border-color: rgba(0, 154, 214, 0.12);
  background: rgba(247, 251, 255, 0.82);
  color: #b7c2cb !important;
  cursor: not-allowed !important;
}
.cy-page .layui-laypage .layui-laypage-count,
.cy-page .layui-laypage .layui-laypage-limits,
.cy-page .layui-laypage .layui-laypage-skip  {
  min-width: auto;
  border-color: transparent;
  background: transparent;
  color: var(--cy-muted);
  font-weight: 800;
  cursor: default;
}
.cy-page .layui-laypage .layui-laypage-skip input  {
  width: 48px;
  height: 32px;
  margin: 0 6px;
  border: 1px solid rgba(0, 154, 214, 0.22);
  border-radius: 6px;
  color: var(--cy-navy);
  font-weight: 900;
  text-align: center;
}
.cy-page .layui-laypage .layui-laypage-skip button  {
  height: 32px;
  margin-left: 6px;
  padding: 0 12px;
  border: 1px solid rgba(0, 154, 214, 0.22);
  border-radius: 6px;
  background: #fff;
  color: var(--cy-navy);
  font-weight: 900;
  cursor: pointer;
}
.cy-page .layui-laypage .layui-laypage-skip button:hover  {
  border-color: rgba(0, 154, 214, 0.48);
  background: rgba(0, 154, 214, 0.08);
  color: var(--cy-cyan);
}
.cy-empty  {
  padding: 38px 20px;
  text-align: center;
  color: var(--cy-muted);
}
.cy-dashboard-grid  {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.cy-dashboard-card,
.cy-action-card  {
  padding: 16px;
  border: 1px solid var(--cy-border);
  border-radius: 8px;
  background: #fff;
}
.cy-dashboard-card  {
  min-height: 96px;
  background: linear-gradient(135deg, #f8fcfe, #fff);
}
.cy-dashboard-label  {
  color: var(--cy-muted);
  font-size: 13px;
  font-weight: 900;
}
.cy-dashboard-value  {
  margin-top: 8px;
  color: var(--cy-navy);
  font-size: 24px;
  font-weight: 900;
}
.cy-action-grid  {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.cy-action-card  {
  display: grid;
  gap: 6px;
  min-height: 88px;
  color: var(--cy-text);
}
.cy-action-card:hover  {
  border-color: rgba(0, 154, 214, 0.36);
  box-shadow: 0 8px 18px rgba(43, 68, 144, 0.08);
}
.cy-action-card strong  {
  color: var(--cy-navy);
}
.cy-action-card span  {
  color: var(--cy-muted);
  font-size: 12px;
}

.cy-status  {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(253, 185, 51, 0.18);
  color: #9a6500;
  font-size: 12px;
  font-weight: 900;
}
.cy-status.is-ok  {
  background: rgba(0, 108, 84, 0.12);
  color: var(--cy-green);
}

.cy-edit-form  {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.cy-edit-avatar-panel  {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 24px 0 12px;
  border-bottom: 1px solid rgba(0, 154, 214, 0.08);
}
.cy-edit-avatar-button  {
  position: relative;
  width: 92px;
  height: 92px;
  padding: 0;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #edf6fb;
  box-shadow:
    0 12px 28px rgba(43, 68, 144, 0.16),
    0 0 0 1px rgba(0, 154, 214, 0.12);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.cy-edit-avatar-button::after  {
  content: "上传";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28px;
  display: grid;
  place-items: center;
  background: rgba(20, 36, 51, 0.58);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  transform: translateY(100%);
  transition: transform 0.18s;
}
.cy-edit-avatar-button:hover  {
  transform: translateY(-1px);
  box-shadow:
    0 16px 34px rgba(43, 68, 144, 0.2),
    0 0 0 1px rgba(0, 154, 214, 0.2);
}
.cy-edit-avatar-button:hover::after  {
  transform: translateY(0);
}
.cy-edit-avatar-button img  {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cy-edit-avatar-tip  {
  margin: 0;
  color: var(--cy-muted);
  font-size: 12px;
  line-height: 1.4;
}
.cy-edit-avatar-change  {
  height: 28px;
  padding: 0 14px;
  border: 1px solid rgba(0, 154, 214, 0.22);
  border-radius: 999px;
  background: #fff;
  color: var(--cy-cyan);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.cy-edit-avatar-change:hover  {
  border-color: var(--cy-cyan);
  background: rgba(0, 154, 214, 0.06);
}
.cy-edit-field  {
  display: grid;
  gap: 7px;
}

@keyframes cySpin  {
  to  {
  transform: rotate(360deg);
}

}
.cy-edit-form label  {
  color: var(--cy-muted);
  font-size: 13px;
  font-weight: 900;
}
.cy-sidebar  {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 18px;
}
.cy-side-link  {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  border-bottom: 1px solid rgba(0, 154, 214, 0.08);
  color: var(--cy-text);
  font-size: 13px;
  font-weight: 800;
}
.cy-side-link:last-child  {
  border-bottom: none;
}
.cy-side-link:hover  {
  color: var(--cy-cyan);
}
.cy-qr  {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
  color: var(--cy-muted);
  font-size: 13px;
}
.cy-qr img  {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--cy-border);
}
.cy-form  {
  display: grid;
  gap: 14px;
}
.cy-form-row  {
  display: grid;
  gap: 8px;
}
.cy-form-row label  {
  color: var(--cy-text);
  font-size: 13px;
  font-weight: 900;
}

.cy-captcha-row  {
  grid-template-columns: 1fr 128px;
  align-items: stretch;
}

.cy-footer,
.ci-footer  {
  position: relative;
  margin-top: 48px;
  padding: 28px 0;
  background: var(--cy-card);
  border-top: 0;
}
.cy-footer::before,
.ci-footer::before  {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cy-cyan), var(--cy-gold), var(--cy-green), var(--cy-blue));
}
.cy-footer-inner,
.ci-footer-inner  {
  width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cy-muted);
  font-size: 13px;
}
.cy-footer-links,
.ci-footer-links  {
  display: flex;
  gap: 22px;
}
.cy-footer-links a,
.cy-footer-meta a,
.ci-footer-links a,
.ci-footer-meta a,
.ci-icp-link  {
  color: var(--cy-muted);
}
.cy-footer-links a:hover,
.cy-footer-meta a:hover,
.ci-footer-links a:hover,
.ci-footer-meta a:hover,
.ci-icp-link:hover  {
  color: var(--cy-cyan);
}
.cy-footer-meta,
.ci-footer-meta  {
  display: grid;
  justify-items: end;
  gap: 6px;
}

@keyframes cyFlowLine  {
  0%  {
  background-position: 0% 50%;
}
100%  {
  background-position: 220% 50%;
}

}

