@charset "UTF-8";
/* 重置浏览器样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  font-family: Arial, sans-serif;
}
@font-face {
  font-family: ZihunQuYuanHei;
  src: local("字魂趣圆黑"), url("/assets/%E5%AD%97%E9%AD%82%E8%B6%A3%E5%9C%86%E9%BB%91-QyiiVaMi.ttf") format("truetype"); /* 字体文件路径 */
}
.app-container {
  height: 100%;
  width: 100%;
  position: fixed;
  font-family: PingFang SC;
}
.app-container {
  display: flex;
  flex-direction: column;
  background-color: #f6f6f6;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.main {
  display: flex;
  justify-content: center;
  align-items: center;
}
.body {
  width: 70vw;
  height: 82vh;
  background-color: #ffffff;
  border-radius: 0.8rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  padding: 1rem 1rem 1rem 0rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.body.mobile {
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  flex-direction: column;
  overflow: hidden;
}
.body.mobile .left-tab {
  width: 100%;
  height: auto;
  border-right: none;
  border-bottom: 1px solid #e8e8e8;
  flex-shrink: 0;
}
.body.mobile .left-tab .left-expert-info {
  height: auto;
  padding: 15px 15px 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.body.mobile .left-tab .left-expert-info .logout-icon {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 18px;
  color: #ff4d4f;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
.body.mobile .left-tab .left-expert-info .logout-icon .logout-text {
  max-width: 100px;
  opacity: 1;
  color: #ff4d4f;
}
.body.mobile .left-tab .left-expert-info .info-left {
  width: 100%;
}
.body.mobile .left-tab .left-expert-info .info-left .avatar {
  height: 80px;
}
.body.mobile .left-tab .left-expert-info .info-left .avatar .avatar-img {
  width: 60px;
  height: 60px;
}
.body.mobile .left-tab .left-expert-info .info-left .avatar .avatar-img::before {
  background: conic-gradient(transparent, transparent, transparent, #ff0080);
  animation: rotate 15s linear infinite;
}
.body.mobile .left-tab .left-expert-info .info-left .username {
  padding-left: 0;
  font-size: 13px;
}
.body.mobile .left-tab .left-expert-info .info-right {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 5px;
}
.body.mobile .left-tab .left-expert-info .info-right .user-level {
  position: static;
}
.body.mobile .left-tab .parting-line {
  display: none;
}
.body.mobile .left-tab .left-tab-info {
  padding: 0 15px 10px;
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 8px;
}
.body.mobile .left-tab .left-tab-info::-webkit-scrollbar {
  display: none;
}
.body.mobile .left-tab .left-tab-info .menu-item {
  flex: 1;
  min-width: 80px;
  padding: 10px 8px;
  white-space: nowrap;
  border-radius: 8px;
}
.body.mobile .left-tab .left-tab-info .menu-item:first-child {
  margin-left: 0;
}
.body.mobile .left-tab .left-tab-info .menu-item:last-child {
  margin-right: 0;
}
.body.mobile .left-tab .left-tab-info .menu-item.active::before {
  display: none;
}
.body.mobile .left-tab .left-tab-info .menu-item .menu-label {
  font-size: 12px;
}
.body.mobile .right-content {
  width: 100%;
  flex: 1;
  min-height: 0;
  padding: 0 12px 12px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.body.mobile .right-content .content-title {
  height: 50px;
  font-size: 16px;
  flex-shrink: 0;
}
.body.mobile .right-content .content-body {
  padding: 12px;
  border-radius: 8px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.body.mobile .right-content .bottom-copyright {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 11px;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.body .left-tab {
  width: 220px;
  height: 100%;
  border-right: 0.5px rgba(154, 154, 156, 0.3137254902) solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: left 0.3s ease;
}
.body .left-tab .left-expert-info {
  height: 150px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  position: relative;
}
.body .left-tab .left-expert-info .logout-icon {
  position: absolute;
  top: 10px;
  right: 30px;
  cursor: pointer;
  font-size: 18px;
  color: #999;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
.body .left-tab .left-expert-info .logout-icon:hover {
  color: #ff4d4f;
}
.body .left-tab .left-expert-info .logout-icon:hover .logout-text {
  max-width: 100px;
  opacity: 1;
}
.body .left-tab .left-expert-info .logout-icon .logout-text {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.3s ease-in-out;
  opacity: 0;
  margin-left: 5px;
  font-size: 14px;
}
.body .left-tab .left-expert-info .info-left {
  width: 80%;
}
.body .left-tab .left-expert-info .info-left .avatar {
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}
.body .left-tab .left-expert-info .info-left .avatar:hover {
  transform: translateY(-2px);
}
.body .left-tab .left-expert-info .info-left .avatar:hover ~ .info-right {
  transform: translateY(-2px);
}
.body .left-tab .left-expert-info .info-left .avatar .avatar-img {
  position: relative;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  overflow: hidden;
  padding: 3px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.body .left-tab .left-expert-info .info-left .avatar .avatar-img:hover {
  height: 90px;
  width: 90px;
  transform: translateY(-1px);
  transform: translateX(-1px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.body .left-tab .left-expert-info .info-left .avatar .avatar-img:hover ~ .info-right {
  transform: translateY(-5px);
}
.body .left-tab .left-expert-info .info-left .avatar .avatar-img::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, transparent, transparent, #0095ff);
  animation: rotate 15s linear infinite;
}
.body .left-tab .left-expert-info .info-left .avatar .avatar-img::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}
.body .left-tab .left-expert-info .info-left .avatar .avatar-img img {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.body .left-tab .left-expert-info .info-left .username {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-left: 10px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  background: linear-gradient(to right, yellow, red, blue);
  -webkit-background-clip: text;
  color: transparent; /* 重要：使文字透明，以便背景渐变显示 */
}
.body .left-tab .left-expert-info .info-right {
  width: 40px;
  transition: transform 0.3s ease;
  position: relative;
}
.body .left-tab .left-expert-info .info-right .user-level {
  position: absolute;
  font-size: 14px;
  padding: 0 5px;
  left: -60px;
  top: 10px;
  font-style: italic;
  background: linear-gradient(to right, red, blue);
  -webkit-background-clip: text;
  color: transparent; /* 重要：使文字透明，以便背景渐变显示 */
}
.body .left-tab .left-expert-info .info-right .user-level .level-num {
  font-style: normal;
  font-size: 16px;
}
.body .left-tab .parting-line {
  width: 90%;
  height: 0.5px;
  border-top: 0.5px rgba(154, 154, 156, 0.3137254902) solid;
}
.body .left-tab .left-tab-info {
  width: 100%;
  flex: 1;
  padding: 10px 0;
}
.body .left-tab .left-tab-info .menu-item {
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s;
  color: #666;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.body .left-tab .left-tab-info .menu-item .anticon {
  font-size: 16px;
}
.body .left-tab .left-tab-info .menu-item .menu-label {
  font-size: 14px;
}
.body .left-tab .left-tab-info .menu-item:hover {
  color: #1890ff;
  background-color: rgba(24, 144, 255, 0.05);
}
.body .left-tab .left-tab-info .menu-item.active {
  color: #1890ff;
  background-color: rgba(24, 144, 255, 0.1);
  font-weight: 500;
}
.body .left-tab .left-tab-info .menu-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background-color: #1890ff;
  border-radius: 0 2px 2px 0;
}
.body .right-content {
  flex: 1;
  height: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  min-height: 0;
  overflow: hidden;
}
.body .right-content .content-title {
  width: 100%;
  height: 60px;
  border-bottom: 0.5px rgba(154, 154, 156, 0.3137254902) solid;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  flex-shrink: 0;
}
.body .right-content .content-body {
  flex: 1;
  min-height: 0;
}
.body .right-content .bottom-copyright {
  margin-top: 10px;
  font-size: 12px;
  font-style: italic;
  color: #999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .app-container.main {
    align-items: stretch;
  }
  .body {
    width: 100vw;
    height: 100vh;
  }
}
/* 重置浏览器样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  font-family: Arial, sans-serif;
}
@font-face {
  font-family: ZihunQuYuanHei;
  src: local("字魂趣圆黑"), url("/assets/%E5%AD%97%E9%AD%82%E8%B6%A3%E5%9C%86%E9%BB%91-QyiiVaMi.ttf") format("truetype"); /* 字体文件路径 */
}
.app-container {
  height: 100%;
  width: 100%;
  position: fixed;
  font-family: PingFang SC;
}
.account-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.account-info .content-title {
  width: 100%;
  height: 60px;
  border-bottom: 0.5px var(--divider-color) solid;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  flex-shrink: 0;
  margin-bottom: 20px;
}
.account-info .info-content {
  height: 0;
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  margin-top: 10px;
  width: 100%;
  border: 0.5px rgba(154, 154, 156, 0.3137254902) solid;
  display: flex;
  align-items: center;
  justify-content: center;
}
.account-info .info-content .balance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
  max-width: 600px;
  width: 100%;
}
.account-info .balance-card {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  max-height: 100px;
}
.account-info .balance-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.account-info .balance-card .card-label {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}
.account-info .balance-card .card-value {
  font-size: 24px;
  font-weight: 600;
  color: #333;
}
.account-info .balance-card .card-value.red {
  color: #ff4d4f;
}
@media screen and (max-width: 768px) {
  .account-info {
    padding: 15px;
  }
  .account-info .balance-grid {
    gap: 12px;
  }
  .account-info .balance-card {
    padding: 12px;
  }
  .account-info .balance-card .card-label {
    font-size: 13px;
  }
  .account-info .balance-card .card-value {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .account-info {
    padding: 10px;
  }
  .account-info .balance-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .account-info .balance-card {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .account-info .balance-card .card-label {
    margin-bottom: 0;
  }
}
/* 重置浏览器样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  font-family: Arial, sans-serif;
}
@font-face {
  font-family: ZihunQuYuanHei;
  src: local("字魂趣圆黑"), url("/assets/%E5%AD%97%E9%AD%82%E8%B6%A3%E5%9C%86%E9%BB%91-QyiiVaMi.ttf") format("truetype"); /* 字体文件路径 */
}
.app-container {
  height: 100%;
  width: 100%;
  position: fixed;
  font-family: PingFang SC;
}
.on-sale-creation {
  width: 100%;
  min-height: 100%;
  border-radius: 0.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.on-sale-creation .content-title {
  width: 100%;
  height: 60px;
  border-bottom: 0.5px var(--divider-color) solid;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  flex-shrink: 0;
}
.on-sale-creation .info-content {
  height: 0;
  flex-grow: 1;
  border: 0.5px rgba(154, 154, 156, 0.3137254902) solid;
  background-color: #ffffff;
  border-radius: 8px;
  margin-top: 10px;
  background-color: #f5f7fa;
}
.on-sale-creation .creation-list {
  padding: 12px;
  position: relative;
  min-height: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.on-sale-creation .creation-list .creation-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  gap: 24px;
}
.on-sale-creation .creation-list .creation-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.on-sale-creation .creation-list .creation-item .item-content {
  flex: 1;
  min-width: 0;
}
.on-sale-creation .creation-list .creation-item .item-content .item-header {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
}
.on-sale-creation .creation-list .creation-item .item-content .item-header .plan-id {
  font-size: 13px;
  color: #999;
  font-weight: 500;
}
.on-sale-creation .creation-list .creation-item .item-content .item-header .status-tag {
  position: absolute;
  right: 10px;
}
.on-sale-creation .creation-list .creation-item .item-content .item-header .item-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.on-sale-creation .creation-list .creation-item .item-content .item-header .item-scheme-type {
  font-size: 14px;
  color: #fff;
  background: linear-gradient(90deg, #ff7a45 0%, #fb3d3d 100%);
  padding: 3px 8px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  min-width: 48px;
}
.on-sale-creation .creation-list .creation-item .item-content .item-header .item-scheme-type::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 2px;
  background: #fff;
  right: -25%;
  top: -100%;
  transform: rotate(45deg);
  animation: diagonalSweepReverse 2s ease-in-out infinite;
}
@keyframes diagonalSweep {
  0% {
    bottom: -100%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    bottom: 200%;
    opacity: 0;
  }
}
.on-sale-creation .creation-list .creation-item .item-content .item-subtitle {
  font-size: 14px;
  color: #666;
  margin: 0 0 16px 0;
  line-height: 1.5;
}
.on-sale-creation .creation-list .creation-item .item-content .item-meta {
  background: #f9fafb;
  border-radius: 8px;
  padding: 8px 8px;
  margin-bottom: 16px;
}
.on-sale-creation .creation-list .creation-item .item-content .item-meta .meta-row {
  display: flex;
  align-items: center;
  font-size: 13px;
  margin-bottom: 8px;
}
.on-sale-creation .creation-list .creation-item .item-content .item-meta .meta-row:last-child {
  margin-bottom: 0;
}
.on-sale-creation .creation-list .creation-item .item-content .item-meta .meta-row .meta-label {
  color: #999;
  min-width: 70px;
}
.on-sale-creation .creation-list .creation-item .item-content .item-meta .meta-row .meta-value {
  color: #333;
  font-weight: 500;
}
.on-sale-creation .creation-list .creation-item .item-content .item-meta .meta-row .meta-value.highlight {
  color: rgba(38, 85, 238, 0.8745098039);
  font-weight: 500;
  font-size: 15px;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.on-sale-creation .creation-list .creation-item .item-content .item-meta .meta-row .meta-divider {
  margin: 0 12px;
  color: #ddd;
}
.on-sale-creation .creation-list .creation-item .item-content .item-meta .match-info {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.on-sale-creation .creation-list .creation-item .item-content .item-meta .match-info .highlight {
  flex: 1;
  min-width: 0;
}
.on-sale-creation .creation-list .creation-item .item-content .item-meta .match-info .play-type {
  font-size: 10px;
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 500;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(102, 126, 234, 0.3);
}
.on-sale-creation .creation-list .creation-item .item-content .item-meta .match-info .match-time {
  font-size: 10px;
  color: #999;
  flex-shrink: 0;
}
.on-sale-creation .creation-list .creation-item .item-content .item-meta .odds-row {
  display: flex;
  gap: 12px;
}
.on-sale-creation .creation-list .creation-item .item-content .item-meta .odds-row .odds-option-container .odds-item {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}
.on-sale-creation .creation-list .creation-item .item-content .item-meta .odds-row .odds-option-container .odds-item:hover {
  border-color: #1890ff;
  background: #f0f7ff;
}
.on-sale-creation .creation-list .creation-item .item-content .item-meta .odds-row .odds-option-container .odds-item .odds-label-tag {
  font-size: 12px;
  color: #999;
  width: 100px;
}
.on-sale-creation .creation-list .creation-item .item-content .item-meta .odds-row .odds-option-container .odds-item .odds-label {
  font-size: 11px;
  color: #999;
}
.on-sale-creation .creation-list .creation-item .item-content .item-meta .odds-row .odds-option-container .odds-item .odds-value {
  font-size: 14px;
  font-weight: 600;
  color: #ff4d4f;
}
.on-sale-creation .creation-list .creation-item .item-content .item-meta .odds-row .odds-option-container .other-w-label:first-child {
  width: auto !important;
  flex: 0 0 auto !important;
}
.on-sale-creation .creation-list .creation-item .item-content .item-footer {
  font-size: 12px;
  color: #999;
}
.on-sale-creation .creation-list .creation-item .item-content .item-footer .time-label {
  margin-right: 4px;
}
.on-sale-creation .creation-list .creation-item .item-content .item-footer .time-value {
  color: #666;
}
.on-sale-creation .creation-list .creation-item .item-content .item-footer .sales-text {
  margin-left: 8px;
}
.on-sale-creation .creation-list .creation-item .item-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex-shrink: 0;
  min-width: 100px;
  justify-content: space-between;
}
.on-sale-creation .creation-list .creation-item .item-action .price-section {
  text-align: right;
}
.on-sale-creation .creation-list .creation-item .item-action .price-section .price-current {
  display: flex;
  align-items: baseline;
  margin-bottom: 4px;
}
.on-sale-creation .creation-list .creation-item .item-action .price-section .price-current .price-symbol {
  font-size: 16px;
  color: #ff4d4f;
  font-weight: 500;
}
.on-sale-creation .creation-list .creation-item .item-action .price-section .price-current .price-value {
  font-size: 28px;
  color: #ff4d4f;
  font-weight: 700;
}
.on-sale-creation .creation-list .creation-item .item-action .price-section .price-original {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}
.on-sale-creation .creation-list .creation-item .item-action .price-section .buy-type {
  font-size: 10px;
  color: #fff;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 500;
  display: inline-block;
  box-shadow: 0 1px 3px rgba(255, 107, 107, 0.3);
  position: relative;
  overflow: hidden;
  animation: pulseGlow 2s ease-in-out infinite;
}
.on-sale-creation .creation-list .creation-item .item-action .price-section .buy-type::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 2px;
  background: #fff;
  left: -25%;
  bottom: -100%;
  transform: rotate(45deg);
  animation: diagonalSweep 2s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 1px 3px rgba(255, 107, 107, 0.3);
  }
  50% {
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.5);
  }
}
@keyframes diagonalSweepReverse {
  0% {
    top: -100%;
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    top: 200%;
    opacity: 0;
  }
}
.on-sale-creation .creation-list .creation-item .item-action .button-group {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.on-sale-creation .creation-list .creation-item .item-action .button-group .ant-btn {
  height: 36px;
  font-size: 14px;
  border-radius: 6px;
}
.on-sale-creation .creation-list .creation-item:last-child {
  margin-bottom: 0px;
}
.on-sale-creation .creation-list .loading-more,
.on-sale-creation .creation-list .no-more {
  text-align: center;
  padding: 16px;
  color: #999;
  font-size: 14px;
}
.on-sale-creation .creation-list .no-more {
  color: #ccc;
}
.on-sale-creation .creation-list .empty-state {
  text-align: center;
  color: #999;
  padding: 60px 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 移动元素回到其自身大小的50% */
}
.on-sale-creation .creation-list .empty-state .empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.on-sale-creation .creation-list .empty-state .empty-text {
  font-size: 16px;
  margin-bottom: 8px;
  color: #666;
}
.on-sale-creation .creation-list .empty-state .empty-hint {
  font-size: 14px;
  color: #999;
}
.on-sale-creation .creation-list-empty {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: absolute;
}
.on-sale-creation .creation-list-empty .empty-state {
  display: flex;
  padding: 0;
  position: static;
  transform: none;
}
@media screen and (max-width: 768px) {
  .on-sale-creation .creation-list {
    padding: 8px;
  }
  .on-sale-creation .creation-list .creation-item {
    flex-direction: column;
    padding: 12px;
    gap: 12px;
  }
  .on-sale-creation .creation-list .creation-item .item-content {
    width: 100%;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-header {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-header .plan-id {
    font-size: 12px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-header .item-title {
    font-size: 15px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-header .item-scheme-type {
    font-size: 12px;
    padding: 2px 6px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-header .status-tag {
    position: static;
    margin-left: auto;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-subtitle {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta {
    padding: 8px 10px;
    margin-bottom: 10px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta .meta-row {
    font-size: 12px;
    margin-bottom: 6px;
    flex-wrap: wrap;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta .meta-row .meta-label {
    min-width: 55px;
    flex-shrink: 0;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta .meta-row .meta-value {
    flex: 1;
    min-width: 0;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta .meta-row .meta-value.highlight {
    font-size: 13px;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    flex: none;
    min-width: auto;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta .match-info {
    flex-wrap: wrap;
    gap: 6px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta .match-info .highlight {
    font-size: 12px;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    flex: 1 1 100%;
    min-width: 100%;
    order: 1;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta .match-info .play-type {
    font-size: 9px;
    padding: 1px 4px;
    flex-shrink: 0;
    order: 2;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta .match-info .match-time {
    font-size: 9px;
    flex-shrink: 0;
    order: 3;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta .odds-row {
    gap: 6px;
    padding-top: 8px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta .odds-row .odds-item {
    padding: 4px;
    flex-direction: column;
    gap: 2px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta .odds-row .odds-item .odds-label {
    font-size: 10px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta .odds-row .odds-item .odds-value {
    font-size: 13px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-footer {
    font-size: 11px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-footer .sales-text {
    margin-left: 4px;
  }
  .on-sale-creation .creation-list .creation-item .item-action {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-width: auto;
    gap: 12px;
  }
  .on-sale-creation .creation-list .creation-item .item-action .price-section {
    text-align: left;
    flex-shrink: 0;
  }
  .on-sale-creation .creation-list .creation-item .item-action .price-section .price-current {
    margin-bottom: 2px;
  }
  .on-sale-creation .creation-list .creation-item .item-action .price-section .price-current .price-symbol {
    font-size: 12px;
  }
  .on-sale-creation .creation-list .creation-item .item-action .price-section .price-current .price-value {
    font-size: 22px;
  }
  .on-sale-creation .creation-list .creation-item .item-action .price-section .price-original {
    font-size: 11px;
  }
  .on-sale-creation .creation-list .creation-item .item-action .price-section .buy-type {
    font-size: 9px;
    padding: 1px 4px;
  }
  .on-sale-creation .creation-list .creation-item .item-action .button-group {
    width: auto;
    flex-direction: row;
    gap: 6px;
    flex: 1;
    justify-content: flex-end;
  }
  .on-sale-creation .creation-list .creation-item .item-action .button-group .ant-btn {
    padding: 0 10px;
    height: 30px;
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .on-sale-creation .creation-list {
    padding: 6px;
  }
  .on-sale-creation .creation-list .creation-item {
    padding: 10px;
    gap: 10px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-header {
    gap: 6px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-header .item-title {
    font-size: 14px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-header .item-scheme-type {
    font-size: 11px;
    padding: 1px 4px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-subtitle {
    font-size: 11px;
    margin-bottom: 8px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta {
    padding: 6px 8px;
    margin-bottom: 8px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta .meta-row {
    font-size: 11px;
    margin-bottom: 4px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta .meta-row .meta-label {
    min-width: 50px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta .meta-row .meta-value.highlight {
    font-size: 12px;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    flex: none;
    min-width: auto;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta .match-info .highlight {
    font-size: 11px;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    flex: 1 1 100%;
    min-width: 100%;
    order: 1;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta .match-info .play-type {
    font-size: 8px;
    padding: 1px 3px;
    flex-shrink: 0;
    order: 2;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta .match-info .match-time {
    font-size: 8px;
    flex-shrink: 0;
    order: 3;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta .odds-row {
    gap: 4px;
    padding-top: 6px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta .odds-row .odds-item {
    padding: 3px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta .odds-row .odds-item .odds-label {
    font-size: 9px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-meta .odds-row .odds-item .odds-value {
    font-size: 12px;
  }
  .on-sale-creation .creation-list .creation-item .item-content .item-footer {
    font-size: 10px;
  }
  .on-sale-creation .creation-list .creation-item .item-action {
    gap: 8px;
  }
  .on-sale-creation .creation-list .creation-item .item-action .price-section .price-current .price-symbol {
    font-size: 11px;
  }
  .on-sale-creation .creation-list .creation-item .item-action .price-section .price-current .price-value {
    font-size: 18px;
  }
  .on-sale-creation .creation-list .creation-item .item-action .price-section .price-original {
    font-size: 10px;
  }
  .on-sale-creation .creation-list .creation-item .item-action .price-section .buy-type {
    font-size: 8px;
    padding: 1px 3px;
  }
  .on-sale-creation .creation-list .creation-item .item-action .button-group {
    gap: 4px;
  }
  .on-sale-creation .creation-list .creation-item .item-action .button-group .ant-btn {
    padding: 0 8px;
    height: 28px;
    font-size: 11px;
  }
}
/* 重置浏览器样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  font-family: Arial, sans-serif;
}
@font-face {
  font-family: ZihunQuYuanHei;
  src: local("字魂趣圆黑"), url("/assets/%E5%AD%97%E9%AD%82%E8%B6%A3%E5%9C%86%E9%BB%91-QyiiVaMi.ttf") format("truetype"); /* 字体文件路径 */
}
.app-container {
  height: 100%;
  width: 100%;
  position: fixed;
  font-family: PingFang SC;
}
.odds-option-container {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
}
.odds-option-container .odds-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  position: relative;
  padding: 8px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  transition: all 0.3s;
  max-width: 200px;
}
.odds-option-container .odds-item .odds-label {
  color: #999;
  font-size: 14px;
}
.odds-option-container .odds-item .odds-value {
  color: #ff4d4f;
  font-size: 14px;
}
.odds-option-container .odds-item .odds-pankou {
  color: #999;
  font-size: 14px;
}
.odds-option-container .odds-item .recommend-tag {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 10px;
  background-color: #ff4d4f;
  color: #fff;
  padding: 0 4px;
  border-radius: 0 4px 0 4px;
  line-height: 1.2;
}
.odds-option-container .odds-item.selected {
  background-color: #269BF8 !important;
  color: #FFFFFF !important;
}
.odds-option-container .odds-item.selected .odds-label {
  color: #FFFFFF !important;
}
.odds-option-container .odds-item.selected .odds-value {
  color: #FFFFFF !important;
}.option-21-detail {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  background-color: #f9fafb !important;
}
.option-21-detail .odds-row {
  display: flex;
  width: 100%;
}
.option-21-detail .odds-row .let-option {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  color: #999;
  position: relative;
}
.option-21-detail .odds-row .let-option img:last-child {
  position: absolute;
  top: -3px;
  right: -3px;
}
.option-21-detail .odds-row .let-option .odds-label {
  color: #999;
}
.option-21-detail .odds-row .let-option .odds-val {
  color: #ff4d4f;
}
.option-21-detail .odds-row .is-recommend {
  background-color: #269bf8 !important;
  color: #ffffff !important;
}
.option-21-detail .odds-row .is-recommend .odds-label {
  color: #ffffff;
}
.option-21-detail .odds-row .is-recommend .odds-val {
  color: #ffffff;
}.option-31-detail {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  background-color: #f9fafb !important;
}
.option-31-detail .odds-row {
  display: flex;
  width: 100%;
}
.option-31-detail .odds-row .let-option {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  color: #999;
  position: relative;
}
.option-31-detail .odds-row .let-option img:last-child {
  position: absolute;
  top: -3px;
  right: -3px;
}
.option-31-detail .odds-row .let-option .odds-label {
  color: #999;
}
.option-31-detail .odds-row .let-option .odds-val {
  color: #ff4d4f;
}
.option-31-detail .odds-row .is-recommend {
  background-color: #269bf8 !important;
  color: #ffffff !important;
}
.option-31-detail .odds-row .is-recommend .odds-label {
  color: #ffffff;
}
.option-31-detail .odds-row .is-recommend .odds-val {
  color: #ffffff;
}.option-32-detail {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  background-color: #f9fafb !important;
}
.option-32-detail .odds-row {
  display: flex;
  width: 100%;
}
.option-32-detail .odds-row .let-option {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  color: #999;
  position: relative;
}
.option-32-detail .odds-row .let-option img:last-child {
  position: absolute;
  top: -3px;
  right: -3px;
}
.option-32-detail .odds-row .let-option .odds-label {
  color: #999;
}
.option-32-detail .odds-row .let-option .odds-val {
  color: #ff4d4f;
}
.option-32-detail .odds-row .is-recommend {
  background-color: #269bf8 !important;
  color: #ffffff !important;
}
.option-32-detail .odds-row .is-recommend .odds-label {
  color: #ffffff;
}
.option-32-detail .odds-row .is-recommend .odds-val {
  color: #ffffff;
}.option-41-detail {
  display: flex;
  gap: 12px;
  display: flex;
  width: 100%;
}
.option-41-detail .option-item {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  color: #999;
  position: relative;
}
.option-41-detail .option-item img:last-child {
  position: absolute;
  top: -3px;
  right: -3px;
}
.option-41-detail .is-rec {
  background-color: #269bf8 !important;
  color: #fff;
}.option-50-detail {
  display: flex;
  gap: 12px;
  display: flex;
  width: 100%;
}
.option-50-detail .option-item {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  color: #999;
  position: relative;
}
.option-50-detail .option-item img:last-child {
  position: absolute;
  top: -3px;
  right: -3px;
}
.option-50-detail .is-rec {
  background-color: #269bf8 !important;
  color: #fff;
}
.option-50-detail .let-spf-label {
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #999;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}
.option-51-detail {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(5, 1fr);
  justify-content: center;
  gap: 6px;
}
.option-51-detail .option-item {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 2px;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  color: #999;
  display: flex;
  flex-direction: column;
  max-height: 36px;
  position: relative;
}
.option-51-detail .option-item img:last-child {
  position: absolute;
  top: -3px;
  right: -3px;
}
.option-51-detail .option-item .odds-label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 14px;
  color: #999;
}
.option-51-detail .option-item .odds-value {
  font-size: 16px;
  line-height: 16px;
  color: #b8b3b3;
}
.option-51-detail .grid-container :nth-child(14) {
  /* 核心代码：从第6列开始，跨2列（占2份宽度） */
  grid-column: 6/span 2;
}
.option-51-detail .is-rec {
  background-color: #269bf8 !important;
  color: #fff !important;
}
.option-51-detail .is-rec .odds-label {
  color: #fff !important;
}
.option-51-detail .is-rec .odds-value {
  color: #fff !important;
}

.option-51-detail :nth-child(13) {
  /* 核心代码：从第6列开始，跨2列（占2份宽度） */
  grid-column: 6/span 2;
}.option-61-detail {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  justify-content: center;
  gap: 6px;
}
.option-61-detail .option-item {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  color: #999;
  position: relative;
}
.option-61-detail .option-item img:last-child {
  position: absolute;
  top: -3px;
  right: -3px;
}
.option-61-detail .is-rec {
  background-color: #269bf8 !important;
  color: #fff;
}.option-71-detail {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  justify-content: center;
  gap: 6px;
}
.option-71-detail .option-item {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 2;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  color: #999;
  display: flex;
  flex-direction: column;
  max-height: 36px;
  position: relative;
}
.option-71-detail .option-item img:last-child {
  position: absolute;
  top: -3px;
  right: -3px;
}
.option-71-detail .option-item .odds-label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 14px;
}
.option-71-detail .option-item .odds-value {
  font-size: 16px;
  line-height: 16px;
}
.option-71-detail .is-rec {
  background-color: #269bf8 !important;
  color: #fff;
}.creation-detail-modal .ant-modal-content {
  border-radius: 12px;
  overflow: hidden;
}
.creation-detail-modal .ant-modal-header {
  padding: 16px 24px;
  margin: 0;
  border-bottom: 1px solid #f0f0f0;
  cursor: move;
  user-select: none;
  position: relative;
  z-index: 1;
}
.creation-detail-modal .ant-modal-header .result-status-icon {
  position: absolute;
  right: 10px;
  top: 155%;
  transform: translateY(-50%);
  width: 80px;
  height: auto;
  object-fit: contain;
  z-index: 9999;
  pointer-events: none;
}
.creation-detail-modal .ant-modal-close {
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.creation-detail-modal .ant-modal-close:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: rotate(90deg);
}
.creation-detail-modal .ant-modal-close .anticon {
  font-size: 16px;
  color: #666;
}
.creation-detail-modal .detail-content {
  padding: 24px;
  max-height: 70vh;
  display: flex;
  flex-direction: column;
}
.creation-detail-modal .detail-content .detail-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.creation-detail-modal .detail-content .detail-header .detail-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  flex: 1;
}
.creation-detail-modal .detail-content .detail-header .scheme-type-tag {
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 4px;
}
.creation-detail-modal .detail-content .detail-descriptions {
  margin-bottom: 12px;
}
.creation-detail-modal .detail-content .detail-descriptions .ant-descriptions {
  padding: 0;
}
.creation-detail-modal .detail-content .detail-descriptions .ant-descriptions-item-label {
  font-weight: 500;
  color: #666;
  font-size: 13px;
}
.creation-detail-modal .detail-content .detail-descriptions .ant-descriptions-item-content {
  color: #333;
  font-weight: 500;
  font-size: 13px;
}
.creation-detail-modal .detail-content .match-details-scroll {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}
.creation-detail-modal .detail-content .match-details-scroll .section-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
}
.creation-detail-modal .detail-content .match-details .match-item {
  background: #f9fafb;
  border-radius: 8px;
  padding: 8px 8px;
  margin-bottom: 12px;
}
.creation-detail-modal .detail-content .match-details .match-item:last-child {
  margin-bottom: 0;
}
.creation-detail-modal .detail-content .match-details .match-item .match-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
  position: relative;
}
.creation-detail-modal .detail-content .match-details .match-item .match-info .league-name {
  font-size: 13px;
  color: #333;
  font-weight: 500;
}
.creation-detail-modal .detail-content .match-details .match-item .match-info .match-teams {
  font-size: 15px;
  font-weight: 600;
  color: rgba(38, 85, 238, 0.8745098039);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.creation-detail-modal .detail-content .match-details .match-item .match-info .play-type-tag {
  font-size: 10px;
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 500;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(102, 126, 234, 0.3);
}
.creation-detail-modal .detail-content .match-details .match-item .odds-section {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.creation-detail-modal .detail-content .match-details .match-item .odds-section .odds-sign-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 10px 16px;
}
.creation-detail-modal .detail-content .match-details .match-item .odds-section .odds-sign-item > span:first-child {
  color: #fff;
  background: linear-gradient(135deg, #269bf8, #667eea 100%);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 500;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(102, 126, 234, 0.3);
}
.creation-detail-modal .detail-content .match-details .match-item .odds-section .odds-sign-item .odds-option-container {
  width: 100%;
  margin-top: 10px;
}
.creation-detail-modal .detail-content .match-details .match-item .odds-section .odds-sign-item .odds-option-container .odds-item {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}
.creation-detail-modal .detail-content .match-details .match-item .odds-section .odds-sign-item .odds-option-container .odds-item:hover {
  border-color: #1890ff;
  background: #f0f7ff;
}
.creation-detail-modal .detail-content .match-details .match-item .odds-section .odds-sign-item .odds-option-container .odds-item .odds-label {
  font-size: 11px;
  color: #999;
}
.creation-detail-modal .detail-content .match-details .match-item .odds-section .odds-sign-item .odds-option-container .odds-item .odds-value {
  font-size: 14px;
  font-weight: 600;
  color: #ff4d4f;
}
.creation-detail-modal .detail-content .match-details .match-item .odds-section .odds-sign-item .odds-option-container .other-w-label:first-child {
  width: auto !important;
  flex: 0 0 auto !important;
}

@media screen and (max-width: 768px) {
  .creation-detail-modal .ant-modal {
    margin: 0;
    max-width: 100vw;
    top: 0;
    padding-bottom: 0;
  }
  .creation-detail-modal .ant-modal-content {
    border-radius: 0;
    height: 100vh;
  }
  .creation-detail-modal .detail-content {
    padding: 16px;
    max-height: calc(100vh - 32px);
  }
  .creation-detail-modal .detail-content .detail-header .detail-title {
    font-size: 18px;
  }
  .creation-detail-modal .detail-content .match-details .match-item {
    padding: 12px;
  }
  .creation-detail-modal .detail-content .match-details .match-item .match-info .match-teams {
    font-size: 14px;
  }
}
/* 重置浏览器样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  font-family: Arial, sans-serif;
}
@font-face {
  font-family: ZihunQuYuanHei;
  src: local("字魂趣圆黑"), url("/assets/%E5%AD%97%E9%AD%82%E8%B6%A3%E5%9C%86%E9%BB%91-QyiiVaMi.ttf") format("truetype"); /* 字体文件路径 */
}
.app-container {
  height: 100%;
  width: 100%;
  position: fixed;
  font-family: PingFang SC;
}
.history-creation {
  width: 100%;
  min-height: 100%;
  border-radius: 0.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.history-creation .content-title {
  width: 100%;
  height: 60px;
  border-bottom: 0.5px var(--divider-color) solid;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  flex-shrink: 0;
}
.history-creation .info-content {
  height: 0;
  flex-grow: 1;
  border: 0.5px rgba(154, 154, 156, 0.3137254902) solid;
  background-color: #f5f7fa;
  border-radius: 8px;
  margin-top: 10px;
}
.history-creation .creation-list {
  padding: 12px;
  position: relative;
  min-height: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.history-creation .creation-list .creation-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  gap: 24px;
}
.history-creation .creation-list .creation-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.history-creation .creation-list .creation-item .item-content {
  flex: 1;
  min-width: 0;
}
.history-creation .creation-list .creation-item .item-content .item-header {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
}
.history-creation .creation-list .creation-item .item-content .item-header .plan-id {
  font-size: 13px;
  color: #999;
  font-weight: 500;
}
.history-creation .creation-list .creation-item .item-content .item-header .status-tag {
  position: absolute;
  right: 10px;
}
.history-creation .creation-list .creation-item .item-content .item-header .item-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.history-creation .creation-list .creation-item .item-content .item-header .item-scheme-type {
  font-size: 14px;
  color: #fff;
  background: linear-gradient(90deg, #ff7a45 0%, #fb3d3d 100%);
  padding: 3px 8px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  min-width: 48px;
}
.history-creation .creation-list .creation-item .item-content .item-header .item-scheme-type::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 2px;
  background: #fff;
  right: -25%;
  top: -100%;
  transform: rotate(45deg);
  animation: diagonalSweepReverse 2s ease-in-out infinite;
}
@keyframes diagonalSweep {
  0% {
    bottom: -100%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    bottom: 200%;
    opacity: 0;
  }
}
.history-creation .creation-list .creation-item .item-content .item-header .result-type-tag {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
}
.history-creation .creation-list .creation-item .item-content .item-header .result-type-tag .result-hit-icon {
  width: 48px;
  height: auto;
  object-fit: contain;
}
.history-creation .creation-list .creation-item .item-content .item-subtitle {
  font-size: 14px;
  color: #666;
  margin: 0 0 16px 0;
  line-height: 1.5;
}
.history-creation .creation-list .creation-item .item-content .item-meta {
  background: #f9fafb;
  border-radius: 8px;
  padding: 8px 8px;
  margin-bottom: 16px;
}
.history-creation .creation-list .creation-item .item-content .item-meta .meta-row {
  display: flex;
  align-items: center;
  font-size: 13px;
  margin-bottom: 8px;
}
.history-creation .creation-list .creation-item .item-content .item-meta .meta-row:last-child {
  margin-bottom: 0;
}
.history-creation .creation-list .creation-item .item-content .item-meta .meta-row .meta-label {
  color: #999;
  min-width: 70px;
}
.history-creation .creation-list .creation-item .item-content .item-meta .meta-row .meta-value {
  color: #333;
  font-weight: 500;
}
.history-creation .creation-list .creation-item .item-content .item-meta .meta-row .meta-value.highlight {
  color: rgba(38, 85, 238, 0.8745098039);
  font-weight: 500;
  font-size: 15px;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.history-creation .creation-list .creation-item .item-content .item-meta .meta-row .meta-divider {
  margin: 0 12px;
  color: #ddd;
}
.history-creation .creation-list .creation-item .item-content .item-meta .match-info {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.history-creation .creation-list .creation-item .item-content .item-meta .match-info .highlight {
  flex: 1;
  min-width: 0;
}
.history-creation .creation-list .creation-item .item-content .item-meta .match-info .play-type {
  font-size: 10px;
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 500;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(102, 126, 234, 0.3);
}
.history-creation .creation-list .creation-item .item-content .item-meta .match-info .match-time {
  font-size: 10px;
  color: #999;
  flex-shrink: 0;
}
.history-creation .creation-list .creation-item .item-content .item-meta .odds-row {
  display: flex;
  gap: 12px;
}
.history-creation .creation-list .creation-item .item-content .item-meta .odds-row .odds-option-container .odds-item {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}
.history-creation .creation-list .creation-item .item-content .item-meta .odds-row .odds-option-container .odds-item:hover {
  border-color: #1890ff;
  background: #f0f7ff;
}
.history-creation .creation-list .creation-item .item-content .item-meta .odds-row .odds-option-container .odds-item .odds-label-tag {
  font-size: 12px;
  color: #999;
  width: 100px;
}
.history-creation .creation-list .creation-item .item-content .item-meta .odds-row .odds-option-container .odds-item .odds-label {
  font-size: 11px;
  color: #999;
}
.history-creation .creation-list .creation-item .item-content .item-meta .odds-row .odds-option-container .odds-item .odds-value {
  font-size: 14px;
  font-weight: 600;
  color: #ff4d4f;
}
.history-creation .creation-list .creation-item .item-content .item-meta .odds-row .odds-option-container .other-w-label:first-child {
  width: auto !important;
  flex: 0 0 auto !important;
}
.history-creation .creation-list .creation-item .item-content .item-footer {
  font-size: 12px;
  color: #999;
}
.history-creation .creation-list .creation-item .item-content .item-footer .time-label {
  margin-right: 4px;
}
.history-creation .creation-list .creation-item .item-content .item-footer .time-value {
  color: #666;
}
.history-creation .creation-list .creation-item .item-content .item-footer .sales-text {
  margin-left: 8px;
}
.history-creation .creation-list .creation-item .item-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex-shrink: 0;
  min-width: 100px;
  justify-content: space-between;
}
.history-creation .creation-list .creation-item .item-action .price-section {
  text-align: right;
}
.history-creation .creation-list .creation-item .item-action .price-section .price-current {
  display: flex;
  align-items: baseline;
  margin-bottom: 4px;
}
.history-creation .creation-list .creation-item .item-action .price-section .price-current .price-symbol {
  font-size: 16px;
  color: #ff4d4f;
  font-weight: 500;
}
.history-creation .creation-list .creation-item .item-action .price-section .price-current .price-value {
  font-size: 28px;
  color: #ff4d4f;
  font-weight: 700;
}
.history-creation .creation-list .creation-item .item-action .price-section .price-original {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}
.history-creation .creation-list .creation-item .item-action .price-section .buy-type {
  font-size: 10px;
  color: #fff;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 500;
  display: inline-block;
  box-shadow: 0 1px 3px rgba(255, 107, 107, 0.3);
  position: relative;
  overflow: hidden;
  animation: pulseGlow 2s ease-in-out infinite;
}
.history-creation .creation-list .creation-item .item-action .price-section .buy-type::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 2px;
  background: #fff;
  left: -25%;
  bottom: -100%;
  transform: rotate(45deg);
  animation: diagonalSweep 2s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 1px 3px rgba(255, 107, 107, 0.3);
  }
  50% {
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.5);
  }
}
@keyframes diagonalSweepReverse {
  0% {
    top: -100%;
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    top: 200%;
    opacity: 0;
  }
}
.history-creation .creation-list .creation-item .item-action .button-group {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.history-creation .creation-list .creation-item .item-action .button-group .ant-btn {
  height: 36px;
  font-size: 14px;
  border-radius: 6px;
}
.history-creation .creation-list .creation-item:last-child {
  margin-bottom: 0px;
}
.history-creation .creation-list .loading-more,
.history-creation .creation-list .no-more {
  text-align: center;
  padding: 16px;
  color: #999;
  font-size: 14px;
}
.history-creation .creation-list .no-more {
  color: #ccc;
}
.history-creation .creation-list .empty-state {
  text-align: center;
  color: #999;
  padding: 60px 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.history-creation .creation-list .empty-state .empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.history-creation .creation-list .empty-state .empty-text {
  font-size: 16px;
  margin-bottom: 8px;
  color: #666;
}
.history-creation .creation-list .empty-state .empty-hint {
  font-size: 14px;
  color: #999;
}
.history-creation .creation-list-empty {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: absolute;
}
.history-creation .creation-list-empty .empty-state {
  display: flex;
  padding: 0;
  position: static;
  transform: none;
}
@media screen and (max-width: 768px) {
  .history-creation .creation-list {
    padding: 8px;
  }
  .history-creation .creation-list .creation-item {
    flex-direction: column;
    padding: 16px;
  }
  .history-creation .creation-list .creation-item .item-content .item-header .item-title {
    font-size: 18px;
  }
  .history-creation .creation-list .creation-item .item-content .match-details .match-item {
    padding: 12px;
  }
  .history-creation .creation-list .creation-item .item-content .match-details .match-item .match-info .match-teams {
    font-size: 14px;
  }
  .history-creation .creation-list .creation-item .item-action {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
  }
  .history-creation .creation-list .creation-item .item-action .price-section {
    text-align: left;
  }
  .history-creation .creation-list .creation-item .item-action .price-section .price-current .price-value {
    font-size: 24px;
  }
  .history-creation .creation-list .creation-item .item-action .button-group {
    width: auto;
    flex-direction: row;
  }
}
/* 重置浏览器样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  font-family: Arial, sans-serif;
}
@font-face {
  font-family: ZihunQuYuanHei;
  src: local("字魂趣圆黑"), url("/assets/%E5%AD%97%E9%AD%82%E8%B6%A3%E5%9C%86%E9%BB%91-QyiiVaMi.ttf") format("truetype"); /* 字体文件路径 */
}
.app-container {
  height: 100%;
  width: 100%;
  position: fixed;
  font-family: PingFang SC;
}
.publish-creation {
  width: 100%;
  min-height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.publish-creation .content-title {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: end !important;
  flex-shrink: 0;
  border-bottom: 1px solid #f0f2f5;
  position: relative;
}
.publish-creation .content-title .tab-container {
  height: 100%;
  display: flex;
  align-items: end;
  position: relative;
  margin-bottom: 1px;
}
.publish-creation .content-title .tab-item {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 10px 28px;
  border-radius: 8px 8px 0 0;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #646a73;
  margin-bottom: -1px;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.publish-creation .content-title .tab-item:hover {
  color: #646a73;
  background: rgba(192, 207, 221, 0.1254901961);
}
.publish-creation .content-title .tab-item.active {
  color: #1890ff;
  font-weight: 600;
  background: #ffffff;
  border: 1px solid #e8eaf0;
  border-bottom-color: #ffffff;
  box-shadow: 0 -2px 8px rgba(99, 102, 241, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
}
.publish-creation .content-title .tab-item.active img {
  height: 15px;
  width: 15px;
  position: absolute;
  top: 5px;
  right: 10px;
}
.publish-creation .content-title .tab-item.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #1890ff, #1890ff);
  border-radius: 2px;
}
.publish-creation .content-title .tab-item .match-num {
  min-width: 20px;
  min-height: 20px;
  /* border: .5px #ff2222 solid; */
  font-size: 10px;
  line-height: 10px;
  border-radius: 50%;
  color: #ff2222;
}
.publish-creation .content-title .match-time {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-size: 12px;
  color: #646a73;
  margin-bottom: 2px;
}
.publish-creation .content-title .match-time .date-select {
  padding: 6px 12px;
  border: 1px solid #e8eaf0;
  border-radius: 6px;
  font-size: 12px;
  color: #4a5568;
  background: #ffffff;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  min-width: 100px;
}
.publish-creation .content-title .match-time .date-select:hover {
  border-color: #1890ff;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.publish-creation .content-title .match-time .date-select:focus {
  border-color: #1890ff;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.publish-creation .content-title .match-tips {
  font-size: 12px;
  color: #ff2222;
  margin-bottom: 10px;
  position: absolute;
  right: 200px;
}
.publish-creation .info-content {
  height: 0;
  flex-grow: 1;
  overflow-y: auto;
  padding: 16px;
  position: relative;
  margin-top: 10px;
  width: 100%;
  border-radius: 8px;
  border: 0.5px rgba(154, 154, 156, 0.3137254902) solid;
}
.publish-creation .info-content .match-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.publish-creation .info-content .match-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f2f5;
  cursor: pointer;
  position: relative;
}
.publish-creation .info-content .match-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.publish-creation .info-content .match-item .match-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.publish-creation .info-content .match-item .match-header .league-name {
  font-size: 13px;
  color: #646a73;
  padding: 2px 8px;
  background: #f5f7fa;
  border-radius: 4px;
}
.publish-creation .info-content .match-item .match-header .match-date {
  font-size: 13px;
  color: #8f959e;
}
.publish-creation .info-content .match-item .match-header .scheme-count {
  margin-left: auto;
  font-size: 12px;
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}
.publish-creation .info-content .match-item .match-content {
  display: grid;
  grid-template-columns: 5fr 6fr 15px;
  flex-grow: 1;
  width: 100%;
}
.publish-creation .info-content .match-item .match-content .match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 200px;
}
.publish-creation .info-content .match-item .match-content .match-teams .home-team {
  display: flex;
  align-items: end;
}
.publish-creation .info-content .match-item .match-content .match-teams .home-team .team-name {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  text-align: end;
  min-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.publish-creation .info-content .match-item .match-content .match-teams .away-team {
  display: flex;
  align-items: start;
}
.publish-creation .info-content .match-item .match-content .match-teams .away-team .team-name {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  text-align: start;
  min-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.publish-creation .info-content .match-item .match-content .match-teams .team {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.publish-creation .info-content .match-item .match-content .match-teams .team img {
  height: 30px !important;
  width: 30px !important;
}
.publish-creation .info-content .match-item .match-content .match-teams .team .team-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: #f5f7fa;
}
.publish-creation .info-content .match-item .match-content .vs {
  font-size: 14px;
  color: #8f959e;
  font-weight: 600;
  padding: 0 12px;
}
.publish-creation .info-content .match-item .match-content .arrow {
  font-size: 20px;
  color: #c0c4cc;
  margin-left: 8px;
}
.publish-creation .info-content .match-item .match-content .main-odds-options {
  background-color: #f5f7fa;
  padding: 5px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.publish-creation .info-content .match-item .match-content .main-odds-options .odds-label {
  font-size: 10px;
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 500;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(102, 126, 234, 0.3);
  width: 40px;
  text-align: center;
}
.publish-creation .info-content .match-item .match-content .main-odds-options .odds-value {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 6px;
}
.publish-creation .info-content .match-item .match-content .main-odds-options .odds-value span {
  background-color: #fff;
  text-align: center;
  border: 1px solid #e8eaf0;
  border-radius: 4px;
  line-height: 16px;
  padding: 6px;
  color: #8f959e;
}
.publish-creation .info-content .empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.publish-creation .info-content .empty-state .empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.publish-creation .info-content .empty-state .empty-text {
  font-size: 14px;
  color: #8f959e;
}
.publish-creation .info-content .tooltip {
  position: fixed;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 8px;
  pointer-events: none;
  z-index: 9999;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
  transition: all 0.2s ease;
  font-weight: 500;
}
.publish-creation .info-content .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #8b5cf6;
}
.publish-creation .publish-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.2s ease;
}
.publish-creation .publish-modal {
  background: #ffffff;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.3s ease;
}
.publish-creation .publish-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f2f5;
}
.publish-creation .publish-modal .modal-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2329;
  margin: 0;
}
.publish-creation .publish-modal .modal-header .close-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #8f959e;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.publish-creation .publish-modal .modal-header .close-btn:hover {
  background: #f5f7fa;
  color: #646a73;
}
.publish-creation .publish-modal .modal-body {
  padding: 24px;
}
.publish-creation .publish-modal .modal-body .match-info {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eaf0 100%);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}
.publish-creation .publish-modal .modal-body .match-info .match-basic {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.publish-creation .publish-modal .modal-body .match-info .match-basic .league {
  font-size: 13px;
  color: #646a73;
  padding: 2px 8px;
  background: #ffffff;
  border-radius: 4px;
}
.publish-creation .publish-modal .modal-body .match-info .match-basic .match-time {
  font-size: 13px;
  color: #8f959e;
}
.publish-creation .publish-modal .modal-body .match-info .teams-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.publish-creation .publish-modal .modal-body .match-info .teams-display .team-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.publish-creation .publish-modal .modal-body .match-info .teams-display .team-item .team-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
}
.publish-creation .publish-modal .modal-body .match-info .teams-display .team-item span {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.publish-creation .publish-modal .modal-body .match-info .teams-display .vs-text {
  font-size: 16px;
  font-weight: 600;
  color: #8f959e;
}
.publish-creation .publish-modal .modal-body .scheme-form .form-item {
  margin-bottom: 20px;
}
.publish-creation .publish-modal .modal-body .scheme-form .form-item label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}
.publish-creation .publish-modal .modal-body .scheme-form .form-item .form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e8eaf0;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: all 0.2s ease;
}
.publish-creation .publish-modal .modal-body .scheme-form .form-item .form-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.publish-creation .publish-modal .modal-body .scheme-form .form-item .form-input::placeholder {
  color: #c0c4cc;
}
.publish-creation .publish-modal .modal-body .scheme-form .form-item .form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e8eaf0;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  outline: none;
  resize: none;
  transition: all 0.2s ease;
}
.publish-creation .publish-modal .modal-body .scheme-form .form-item .form-textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.publish-creation .publish-modal .modal-body .scheme-form .form-item .form-textarea::placeholder {
  color: #c0c4cc;
}
.publish-creation .publish-modal .modal-body .scheme-form .form-item .odds-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.publish-creation .publish-modal .modal-body .scheme-form .form-item .odds-options .odds-btn {
  padding: 10px 20px;
  border: 2px solid #e8eaf0;
  border-radius: 8px;
  background: #ffffff;
  font-size: 14px;
  color: #646a73;
  cursor: pointer;
  transition: all 0.2s ease;
}
.publish-creation .publish-modal .modal-body .scheme-form .form-item .odds-options .odds-btn:hover {
  border-color: #6366f1;
  color: #6366f1;
}
.publish-creation .publish-modal .modal-body .scheme-form .form-item .odds-options .odds-btn:active {
  background: #f0f0ff;
}
.publish-creation .publish-modal .modal-body .scheme-form .form-item .scheme-type {
  display: flex;
  gap: 24px;
}
.publish-creation .publish-modal .modal-body .scheme-form .form-item .scheme-type .type-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #646a73;
}
.publish-creation .publish-modal .modal-body .scheme-form .form-item .scheme-type .type-label input[type=radio] {
  width: 16px;
  height: 16px;
  accent-color: #6366f1;
}
.publish-creation .publish-modal .modal-footer {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid #f0f2f5;
}
.publish-creation .publish-modal .modal-footer .btn-cancel {
  flex: 1;
  padding: 12px;
  border: 1px solid #e8eaf0;
  border-radius: 8px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 500;
  color: #646a73;
  cursor: pointer;
  transition: all 0.2s ease;
}
.publish-creation .publish-modal .modal-footer .btn-cancel:hover {
  background: #f5f7fa;
}
.publish-creation .publish-modal .modal-footer .btn-publish {
  flex: 2;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}
.publish-creation .publish-modal .modal-footer .btn-publish:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 重置浏览器样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  font-family: Arial, sans-serif;
}
@font-face {
  font-family: ZihunQuYuanHei;
  src: local("字魂趣圆黑"), url("/assets/%E5%AD%97%E9%AD%82%E8%B6%A3%E5%9C%86%E9%BB%91-QyiiVaMi.ttf") format("truetype"); /* 字体文件路径 */
}
.app-container {
  height: 100%;
  width: 100%;
  position: fixed;
  font-family: PingFang SC;
}
.publish-detail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  flex-direction: column;
}
.publish-detail-overlay .publish-detail {
  background: #ffffff;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.publish-detail-overlay .publish-detail .detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 8px 20px;
  border-bottom: 1px solid #f0f2f5;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}
.publish-detail-overlay .publish-detail .detail-header .back-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #333;
  background: #f5f7fa;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.publish-detail-overlay .publish-detail .detail-header .back-btn:hover {
  background: #e8eaf0;
}
.publish-detail-overlay .publish-detail .detail-header h2 {
  font-size: 17px;
  font-weight: 600;
  color: #1f2329;
  margin: 0;
}
.publish-detail-overlay .publish-detail .detail-header .placeholder {
  width: 36px;
}
.publish-detail-overlay .publish-detail .detail-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  border: 1px solid #e8eaf0;
  border-radius: 8px;
  margin: 16px 0px;
}
.publish-detail-overlay .publish-detail .detail-content .match-section {
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  color: #666;
  border: 1px solid #f0f2f5;
}
.publish-detail-overlay .publish-detail .detail-content .match-section .match-header-info {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.publish-detail-overlay .publish-detail .detail-content .match-section .match-header-info .league {
  font-size: 13px;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
.publish-detail-overlay .publish-detail .detail-content .match-section .match-header-info .match-time {
  font-size: 13px;
  opacity: 0.9;
}
.publish-detail-overlay .publish-detail .detail-content .match-section .teams-row {
  display: grid;
  grid-template-columns: 3fr 1fr 3fr;
  align-items: center;
  justify-content: space-between;
}
.publish-detail-overlay .publish-detail .detail-content .match-section .teams-row .team-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.publish-detail-overlay .publish-detail .detail-content .match-section .teams-row .team-box .team-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.publish-detail-overlay .publish-detail .detail-content .match-section .teams-row .team-box .team-name {
  font-size: 14px;
  font-weight: 500;
}
.publish-detail-overlay .publish-detail .detail-content .match-section .teams-row .home-box {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.publish-detail-overlay .publish-detail .detail-content .match-section .teams-row .away-box {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.publish-detail-overlay .publish-detail .detail-content .match-section .teams-row .vs-text {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.8;
  text-align: center;
}
.publish-detail-overlay .publish-detail .detail-content .section {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid #f0f2f5;
}
.publish-detail-overlay .publish-detail .detail-content .section .section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.publish-detail-overlay .publish-detail .detail-content .section .section-row .label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.publish-detail-overlay .publish-detail .detail-content .section .section-row .diamond-select {
  display: flex;
  align-items: center;
  gap: 8px;
}
.publish-detail-overlay .publish-detail .detail-content .section .section-row .diamond-select .label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.publish-detail-overlay .publish-detail .detail-content .section .section-row .diamond-select .price-select {
  width: 120px;
  border-radius: 10px;
  border-color: #d9d9d9;
}
.publish-detail-overlay .publish-detail .detail-content .section .section-row .diamond-select .price-select :global(.ant-select-selector) {
  border-radius: 10px !important;
  border-color: #d9d9d9 !important;
  padding: 8px 12px !important;
  transition: all 0.2s ease;
}
.publish-detail-overlay .publish-detail .detail-content .section .section-row .diamond-select .price-select :global(.ant-select-selector):hover {
  border-color: #269bf8 !important;
}
.publish-detail-overlay .publish-detail .detail-content .section .section-row .diamond-select .price-select :global(.ant-select-selector):focus {
  border-color: #269bf8 !important;
}
.publish-detail-overlay .publish-detail .detail-content .section .section-row .diamond-select .price-select :global(.ant-select-dropdown) {
  border-radius: 10px;
  border-color: #d9d9d9;
  margin-top: 4px;
}
.publish-detail-overlay .publish-detail .detail-content .section .section-row .diamond-select .price-select :global(.ant-select-item) {
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 6px;
  margin: 2px 6px;
}
.publish-detail-overlay .publish-detail .detail-content .section .section-row .diamond-select .price-select :global(.ant-select-item):hover {
  background: #e8f4ff;
  color: #269bf8;
}
.publish-detail-overlay .publish-detail .detail-content .section .section-row .diamond-select .price-select :global(.ant-select-item).ant-select-item-option-selected {
  background: #269bf8 !important;
  color: #ffffff !important;
}
.publish-detail-overlay .publish-detail .detail-content .section .section-row .diamond-select .price-select :global(.ant-select-item-option-active) {
  background: #e8f4ff !important;
  color: #269bf8 !important;
}
.publish-detail-overlay .publish-detail .detail-content .section .checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #646a73;
  cursor: pointer;
}
.publish-detail-overlay .publish-detail .detail-content .section .checkbox-label input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #1890ff;
}
.publish-detail-overlay .publish-detail .detail-content .section .tabs-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.publish-detail-overlay .publish-detail .detail-content .section .tabs-row .tab-btn {
  padding: 8px 24px;
  font-size: 14px;
  color: #646a73;
  background: #f5f7fa;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.publish-detail-overlay .publish-detail .detail-content .section .tabs-row .tab-btn.active {
  color: #ffffff;
  background: linear-gradient(135deg, #1890ff, #1890ff);
}
.publish-detail-overlay .publish-detail .detail-content .section .tabs-row .period-tabs {
  margin-left: auto;
  display: flex;
  background: #f5f7fa;
  border-radius: 20px;
  padding: 2px;
}
.publish-detail-overlay .publish-detail .detail-content .section .tabs-row .period-tabs .period-btn {
  padding: 6px 16px;
  font-size: 12px;
  color: #646a73;
  background: transparent;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.publish-detail-overlay .publish-detail .detail-content .section .tabs-row .period-tabs .period-btn.active {
  color: #ffffff;
  background: linear-gradient(135deg, #1890ff, #1890ff);
}
.publish-detail-overlay .publish-detail .detail-content .section .options-row .options-label {
  font-size: 13px;
  color: #8f959e;
  margin-bottom: 12px;
  display: block;
}
.publish-detail-overlay .publish-detail .detail-content .section .options-row .options-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  background-color: #fff;
}
.publish-detail-overlay .publish-detail .detail-content .section .options-row .options-list .option-item {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  color: #999;
  max-width: 150px;
  cursor: pointer;
}
.publish-detail-overlay .publish-detail .detail-content .section .options-row .options-list .option-item:hover {
  background: #e8f4ff;
  color: #1890ff;
  border-color: #1890ff;
}
.publish-detail-overlay .publish-detail .detail-content .section .options-row .options-list .option-item.selected {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.publish-detail-overlay .publish-detail .detail-content .section .options-row .options-list .no-options {
  font-size: 13px;
  color: #8f959e;
}
.publish-detail-overlay .publish-detail .detail-content .section .section-title {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 12px;
  display: block;
}
.publish-detail-overlay .publish-detail .detail-content .section .content-preview {
  margin-bottom: 12px;
  border: 1px solid #e8eaf0;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.publish-detail-overlay .publish-detail .detail-content .section .content-preview:focus {
  border-color: #6366f1;
}
.publish-detail-overlay .publish-detail .detail-content .section .content-preview::placeholder {
  color: #c0c4cc;
}
.publish-detail-overlay .publish-detail .detail-content .section .content-preview .preview-text {
  font-size: 13px;
  color: #8f959e;
  margin: 0;
  padding: 10px;
  background: #f5f7fa;
  border-radius: 6px;
}
.publish-detail-overlay .publish-detail .detail-content .section .content-textarea {
  width: 100%;
  height: 120px;
  padding: 12px;
  font-size: 14px;
  color: #333;
  border: 1px solid #e8eaf0;
  border-radius: 8px;
  resize: none;
  outline: none;
  box-sizing: border-box;
}
.publish-detail-overlay .publish-detail .detail-content .section .content-textarea:focus {
  border-color: #6366f1;
}
.publish-detail-overlay .publish-detail .detail-content .section .content-textarea::placeholder {
  color: #c0c4cc;
}
.publish-detail-overlay .publish-detail .detail-content .section .char-count {
  font-size: 12px;
  color: #8f959e;
  float: right;
  margin-top: 4px;
}
.publish-detail-overlay .publish-detail .detail-footer {
  padding: 16px;
  border-top: 1px solid #f0f2f5;
  background: #ffffff;
  position: sticky;
  bottom: 0;
}
.publish-detail-overlay .publish-detail .detail-footer .publish-btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
  transition: all 0.2s ease;
}
.publish-detail-overlay .publish-detail .detail-footer .publish-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
}.withdraw-income {
  width: 100%;
  min-height: 100%;
  background-color: #f5f7fa;
  border-radius: 0.5rem;
  position: relative;
}
.withdraw-income .content-title {
  width: 100%;
  height: 60px;
  border-bottom: 0.5px var(--divider-color) solid;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  flex-shrink: 0;
}
.withdraw-income .income-summary {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.withdraw-income .income-summary .summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.withdraw-income .income-summary .summary-item:last-child {
  border-bottom: none;
}
.withdraw-income .income-summary .summary-item .label {
  font-size: 14px;
  color: #666;
}
.withdraw-income .income-summary .summary-item .value {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.withdraw-income .withdraw-form {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.withdraw-income .withdraw-form h3 {
  margin: 0 0 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.withdraw-income .withdraw-form .form-group {
  margin-bottom: 20px;
}
.withdraw-income .withdraw-form .form-group .form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.withdraw-income .withdraw-form .form-group .form-input,
.withdraw-income .withdraw-form .form-group .form-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.withdraw-income .withdraw-form .form-group .form-input:focus,
.withdraw-income .withdraw-form .form-group .form-select:focus {
  border-color: #1890ff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.1);
}
.withdraw-income .withdraw-form .form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}
.withdraw-income .withdraw-form .form-actions .btn {
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}
.withdraw-income .withdraw-form .form-actions .btn.btn-primary {
  background: #1890ff;
  color: #fff;
}
.withdraw-income .withdraw-form .form-actions .btn.btn-primary:hover {
  background: #40a9ff;
}.login-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f5f7fa;
  background-image: url("/assets/background-BhR6y1OH.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.login-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(3px);
  z-index: 0;
}
.login-container .login-logo {
  height: 170px;
  width: 350px;
  background-image: url("/assets/logo-C9Qxnxuu.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.6s ease-out;
}
.login-container .login-body {
  margin-top: 20px;
  height: 460px;
  width: 800px;
  max-width: 95%;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: row;
  overflow: hidden;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s ease-out;
}
.login-container .login-body .login-body-left {
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
}
.login-container .login-body .login-body-left .login-form-left-title {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-container .login-body .login-body-left .login-form-left-title h1 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin: 0;
  position: relative;
}
.login-container .login-body .login-body-left .login-form-left-title h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #38B0D2 0%, #4287DB 100%);
  border-radius: 2px;
}
.login-container .login-body .login-body-left .login-body-form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.login-container .login-body .login-body-left .login-body-form form {
  width: 85%;
  max-width: 320px;
}
.login-container .login-body .login-body-left .login-body-form .ant-form-item {
  margin-bottom: 22px;
}
.login-container .login-body .login-body-left .login-body-form .ant-input-lg {
  padding: 10px 12px;
  font-size: 15px;
  height: auto;
  line-height: 1.5;
}
.login-container .login-body .login-body-left .login-body-form .ant-input {
  border-radius: 8px;
  border: 1.5px solid #e0e0e0;
  transition: all 0.3s ease;
}
.login-container .login-body .login-body-left .login-body-form .ant-input:hover {
  border-color: #38B0D2;
}
.login-container .login-body .login-body-left .login-body-form .ant-input:focus {
  border-color: #38B0D2;
  box-shadow: 0 0 0 3px rgba(56, 176, 210, 0.15);
}
.login-container .login-body .login-body-left .login-body-form .ant-input-affix-wrapper-lg {
  padding: 10px 12px;
  height: auto;
  line-height: 1.5;
}
.login-container .login-body .login-body-left .login-body-form .ant-input-affix-wrapper {
  border-radius: 8px;
  border: 1.5px solid #e0e0e0;
  transition: all 0.3s ease;
  padding: 10px 12px;
}
.login-container .login-body .login-body-left .login-body-form .ant-input-affix-wrapper:hover {
  border-color: #38B0D2;
}
.login-container .login-body .login-body-left .login-body-form .ant-input-affix-wrapper:focus, .login-container .login-body .login-body-left .login-body-form .ant-input-affix-wrapper.ant-input-affix-wrapper-focused {
  border-color: #38B0D2;
  box-shadow: 0 0 0 3px rgba(56, 176, 210, 0.15);
}
.login-container .login-body .login-body-left .login-body-form .ant-input-affix-wrapper .ant-input {
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  font-size: 15px;
}
.login-container .login-body .login-body-left .login-body-form .ant-input-affix-wrapper .ant-input:hover, .login-container .login-body .login-body-left .login-body-form .ant-input-affix-wrapper .ant-input:focus {
  border: none !important;
  box-shadow: none !important;
}
.login-container .login-body .login-body-left .login-body-form .ant-input-affix-wrapper .ant-input-suffix {
  color: #999;
}
.login-container .login-body .login-body-left .login-body-form .ant-form-item-control-input-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-container .login-body .login-body-left .login-body-form #sub-btn {
  width: 100%;
  max-width: 220px;
  height: 44px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  background: linear-gradient(135deg, #38B0D2 0%, #4287DB 100%);
  border: none;
  box-shadow: 0 4px 12px rgba(56, 176, 210, 0.35);
  transition: all 0.3s ease;
}
.login-container .login-body .login-body-left .login-body-form #sub-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 176, 210, 0.45);
}
.login-container .login-body .login-body-left .login-body-form #sub-btn:active {
  transform: translateY(0);
}
.login-container .login-body .login-body-left .login-body-form .ant-space-compact {
  width: 100%;
}
.login-container .login-body .login-body-left .login-body-form .ant-space-compact .ant-input-lg {
  padding: 10px 12px;
  font-size: 15px;
  height: auto;
  line-height: 1.5;
}
.login-container .login-body .login-body-left .login-body-form .ant-space-compact .ant-input {
  border-radius: 8px 0 0 8px;
}
.login-container .login-body .login-body-left .login-body-form .ant-space-compact .ant-btn-lg {
  height: auto;
  padding: 10px 12px;
  font-size: 15px;
  line-height: 1.5;
}
.login-container .login-body .login-body-left .login-body-form .ant-space-compact .ant-btn-primary {
  border-radius: 0 8px 8px 0;
  min-width: 110px;
  background: linear-gradient(135deg, #38B0D2 0%, #4287DB 100%);
  border: none;
  font-weight: 500;
}
.login-container .login-body .login-body-left .login-body-form .ant-space-compact .ant-btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #2fa0c2 0%, #3a7acc 100%);
}
.login-container .login-body .login-body-left .login-body-form .ant-space-compact .ant-btn-primary:disabled {
  background: #d9d9d9;
  cursor: not-allowed;
}
.login-container .login-body .login-body-left .login-body-form .ant-btn-text {
  color: #38B0D2;
  font-size: 14px;
  padding: 4px 12px;
  height: auto;
}
.login-container .login-body .login-body-left .login-body-form .ant-btn-text:hover {
  color: #2fa0c2;
  background: rgba(56, 176, 210, 0.08);
}
.login-container .login-body .login-body-right {
  height: 100%;
  width: 50%;
  background: linear-gradient(135deg, #38B0D2 0%, #4287DB 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.login-container .login-body .login-body-right::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}
.login-container .login-body .login-body-right .r-1 {
  height: 130px;
  color: #FFFFFF;
  font-size: 26px;
  font-weight: 600;
  display: flex;
  align-items: end;
  justify-content: center;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.login-container .login-body .login-body-right .r-2 {
  height: 140px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.login-container .login-body .login-body-right .r-2 img {
  height: 140px;
  width: 140px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}
.login-container .login-body .login-body-right .r-2 img:hover {
  transform: scale(1.05);
}
.login-container .login-body .login-body-right .r-3 {
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  color: #FFFFFF;
  padding-top: 20px;
  font-size: 14px;
  position: relative;
  z-index: 1;
  opacity: 0.95;
}

.login-container.mobile {
  padding: 20px 0;
  overflow-y: auto;
  justify-content: flex-start;
}
.login-container.mobile::before {
  background: rgba(255, 255, 255, 0.4);
}
.login-container.mobile .login-logo {
  height: 70px;
  width: 160px;
  margin-bottom: 15px;
  flex-shrink: 0;
}
.login-container.mobile .login-body {
  width: 92%;
  max-width: 420px;
  height: auto;
  min-height: 520px;
  flex-direction: column;
  margin: 0;
  border-radius: 12px;
}
.login-container.mobile .login-body .login-body-left {
  width: 100%;
  padding: 25px 20px 20px;
}
.login-container.mobile .login-body .login-body-left .login-form-left-title {
  height: 50px;
  margin-bottom: 15px;
}
.login-container.mobile .login-body .login-body-left .login-form-left-title h1 {
  font-size: 22px;
}
.login-container.mobile .login-body .login-body-left .login-form-left-title h1::after {
  width: 40px;
  bottom: -8px;
}
.login-container.mobile .login-body .login-body-left .login-body-form form {
  width: 90%;
}
.login-container.mobile .login-body .login-body-left .login-body-form .ant-form-item {
  margin-bottom: 18px;
}
.login-container.mobile .login-body .login-body-left .login-body-form .ant-input-lg {
  padding: 10px 12px !important;
  font-size: 15px !important;
  height: auto !important;
  line-height: 1.5 !important;
}
.login-container.mobile .login-body .login-body-left .login-body-form .ant-input-affix-wrapper-lg {
  padding: 10px 12px !important;
  height: auto !important;
  line-height: 1.5 !important;
}
.login-container.mobile .login-body .login-body-left .login-body-form .ant-input-affix-wrapper {
  padding: 10px 12px !important;
  height: auto !important;
  line-height: 1.5 !important;
}
.login-container.mobile .login-body .login-body-left .login-body-form .ant-input-affix-wrapper .ant-input {
  font-size: 15px !important;
  padding: 0 !important;
  height: auto !important;
  line-height: 1.5 !important;
}
.login-container.mobile .login-body .login-body-left .login-body-form #sub-btn {
  max-width: 100%;
  height: 46px;
  font-size: 16px;
  font-weight: 600;
}
.login-container.mobile .login-body .login-body-left .login-body-form .ant-space-compact .ant-input-lg {
  padding: 10px 12px !important;
  font-size: 15px !important;
  height: auto !important;
  line-height: 1.5 !important;
}
.login-container.mobile .login-body .login-body-left .login-body-form .ant-space-compact .ant-btn-lg {
  height: auto !important;
  padding: 10px 12px !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
}
.login-container.mobile .login-body .login-body-left .login-body-form .ant-space-compact .ant-btn-primary {
  min-width: 100px;
  font-size: 14px;
}
.login-container.mobile .login-body .login-body-left .login-body-form .ant-btn-text {
  font-size: 14px;
  padding: 6px 12px;
}
.login-container.mobile .login-body .login-body-right {
  width: 100%;
  padding: 25px 20px;
}
.login-container.mobile .login-body .login-body-right .r-1 {
  height: auto;
  font-size: 20px;
  margin-bottom: 12px;
  align-items: center;
}
.login-container.mobile .login-body .login-body-right .r-2 {
  height: auto;
  margin-bottom: 12px;
}
.login-container.mobile .login-body .login-body-right .r-2 img {
  height: 110px;
  width: 110px;
}
.login-container.mobile .login-body .login-body-right .r-3 {
  height: auto;
  padding-top: 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
}

@media screen and (max-width: 480px) {
  .login-container.mobile {
    padding: 15px 0;
  }
  .login-container.mobile .login-logo {
    height: 60px;
    width: 140px;
    margin-bottom: 12px;
  }
  .login-container.mobile .login-body {
    width: 94%;
    min-height: 500px;
  }
  .login-container.mobile .login-body .login-body-left {
    padding: 20px 15px 15px;
  }
  .login-container.mobile .login-body .login-body-left .login-form-left-title {
    height: 45px;
    margin-bottom: 12px;
  }
  .login-container.mobile .login-body .login-body-left .login-form-left-title h1 {
    font-size: 20px;
  }
  .login-container.mobile .login-body .login-body-left .login-body-form form {
    width: 92%;
  }
  .login-container.mobile .login-body .login-body-left .login-body-form .ant-form-item {
    margin-bottom: 16px;
  }
  .login-container.mobile .login-body .login-body-left .login-body-form #sub-btn {
    height: 44px;
    font-size: 15px;
  }
  .login-container.mobile .login-body .login-body-left .login-body-form .ant-space-compact .ant-btn-primary {
    min-width: 95px;
    font-size: 13px;
  }
  .login-container.mobile .login-body .login-body-right {
    padding: 20px 15px;
  }
  .login-container.mobile .login-body .login-body-right .r-1 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .login-container.mobile .login-body .login-body-right .r-2 img {
    height: 100px;
    width: 100px;
  }
  .login-container.mobile .login-body .login-body-right .r-3 {
    font-size: 12px;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, -10px);
  }
}.code-slider {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/* 重置浏览器样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  font-family: Arial, sans-serif;
}
@font-face {
  font-family: ZihunQuYuanHei;
  src: local("字魂趣圆黑"), url("/assets/%E5%AD%97%E9%AD%82%E8%B6%A3%E5%9C%86%E9%BB%91-QyiiVaMi.ttf") format("truetype"); /* 字体文件路径 */
}
.app-container {
  height: 100%;
  width: 100%;
  position: fixed;
  font-family: PingFang SC;
}/* stylelint-disable */
html,
body {
  width: 100%;
  height: 100%;
}
input::-ms-clear,
input::-ms-reveal {
  display: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
}
[tabindex='-1']:focus {
  outline: none;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: 500;
}
p {
  margin-top: 0;
  margin-bottom: 1em;
}
abbr[title],
abbr[data-original-title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  border-bottom: 0;
  cursor: help;
}
address {
  margin-bottom: 1em;
  font-style: normal;
  line-height: inherit;
}
input[type='text'],
input[type='password'],
input[type='number'],
textarea {
  -webkit-appearance: none;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1em;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
dt {
  font-weight: 500;
}
dd {
  margin-bottom: 0.5em;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1em;
}
dfn {
  font-style: italic;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
pre,
code,
kbd,
samp {
  font-size: 1em;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
}
pre {
  margin-top: 0;
  margin-bottom: 1em;
  overflow: auto;
}
figure {
  margin: 0 0 1em;
}
img {
  vertical-align: middle;
  border-style: none;
}
a,
area,
button,
[role='button'],
input:not([type='range']),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}
table {
  border-collapse: collapse;
}
caption {
  padding-top: 0.75em;
  padding-bottom: 0.3em;
  text-align: left;
  caption-side: bottom;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html [type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type='radio'],
input[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}
input[type='date'],
input[type='time'],
input[type='datetime-local'],
input[type='month'] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.5em;
  padding: 0;
  color: inherit;
  font-size: 1.5em;
  line-height: inherit;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none !important;
}
