* {
  margin: 0;
  padding: 0;
}
:root {
  --background-color: #d2d5d6;
  --sss-box-back-ground: #eef1f2;
  --filter-invert: invert(0);
  --border-color: #d9d9d9;
  --shadow: 0px 0px 7px #999;
}
:root[theme="dark"] {
  --background-color: #343434;
  --sss-box-back-ground: #484848;
  --filter-invert: invert(1);
  --border-color: #9d9d9d;
  --font-color: white;
  --shadow: 0px 0px 7px #101010;
}
html,
body,
#app {
  height: 100%;
  color: var(--font-color);
  background-color: var(--background-color);
}
.progress,
.progress .dot,
.pointer,
.lrc .active,
.imgBox .img,
.imgBox .lrc,
tr,
input,
textarea {
  transition: all 0.3s;
}
.song,
.song .download {
  transition: all 0.1s;
}
input,
textarea {
  color: var(--font-color);
}
input:focus,
textarea:focus {
  box-shadow: inset -1px -1px 3px rgba(0, 0, 0, 0.2);
}
.el-input__count .el-input__count-inner,
.el-textarea__count .el-input__count-inner {
  background: transparent !important;
  color: #999;
  font-size: 12px;
  padding: 0;
}
.el-loading-mask {
  border-radius: 10px;
  background-color: var(--background-color) !important;
  opacity: 0.8;
}
.el-notification {
  background-color: var(--background-color) !important;
  border: none !important;
}
.el-notification__title,
.el-notification__content {
  color: var(--font-color) !important;
}
.el-pagination.is-background .btn-next,
.el-pagination.is-background .btn-prev,
.el-pagination.is-background .el-pager li {
  background-color: var(--background-color) !important;
  color: var(--font-color);
}
.el-pagination.is-background .el-pager li.is-active {
  color: #409eff !important;
}
*::-webkit-scrollbar {
  width: 5px;
  height: 1px;
}
*::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--sss-box-back-ground);
}
*::-webkit-scrollbar-track {
  border-radius: 10px;
  background: var(--background-color);
}
.box {
  width: 90%;
  max-width: 1024px;
  margin-top: 20px;
  background: var(--sss-box-back-ground);
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding-top: 15px;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.music .aplayer {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  visibility: hidden;
}
.music .imgBox {
  width: 100%;
  height: 300px;
  position: relative;
}
.music .imgBox .img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  box-shadow: var(--shadow);
  background: url("../images/singlecover.png") no-repeat;
  background-size: 104%;
  background-position: -4px -4px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 30px 0;
}
.music .imgBox .img .albumImg {
  width: 70%;
  height: 70%;
  border-radius: 50%;
  object-fit: cover;
  animation: rotate 20s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.music .imgBox .img .pointer {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100px;
  transform: rotate(100deg);
  transform-origin: 10px 10px;
}
.music .imgBox .img .pointerActive {
  transform: rotate(50deg);
}
.music .imgBox .lrc {
  width: 45%;
  text-align: center;
  font-size: 0.85rem;
  height: 100%;
  overflow-y: auto;
  margin-left: 3%;
  padding: 10px 5px;
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
}
.music .imgBox .lrc p {
  line-height: 30px;
  opacity: 0.3;
}
.music .imgBox .lrc .active {
  opacity: 1;
}
.music .imgBox .imgShow {
  left: 25%;
}
.music .imgBox .lrcShow {
  left: 65%;
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 700px) {
  .music .imgBox .imgShow {
    left: 50%;
    opacity: 0;
    visibility: hidden;
  }
  .music .imgBox .lrcShow {
    left: 50%;
    width: 85%;
  }
}
.music .name {
  width: 98%;
  line-height: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}
.music .progress {
  width: 90%;
  height: 4px;
  background-color: #999999;
  border-radius: 2px;
  cursor: pointer;
}
.music .progress .current {
  width: 20%;
  height: 100%;
  background: #e24e49;
  border-radius: 2px;
  position: relative;
}
.music .progress .dot {
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: gray;
  position: absolute;
  right: 0;
  top: 50%;
  user-select: none;
  transform: translate(50%, -50%);
}
.music .progress:hover .dot {
  width: 10px;
  height: 10px;
}
.music .time {
  width: 90%;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #999999;
}
.music .btns {
  width: 90%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  filter: var(--filter-invert);
}
.music .btns > div {
  cursor: pointer;
}
.music .btns div img {
  width: 100%;
}
.music .btns .right {
  transform: rotate(180deg);
}
.music .btns .left,
.music .btns .right {
  width: 35px;
}
.music .btns .action {
  width: 50px;
}
.music .btns .text,
.music .btns .reload {
  width: 25px;
}
.music .btns .close {
  opacity: 0.5;
}
.music .importLrc {
  width: 100%;
  padding: 10px 30px;
  box-sizing: border-box;
}
.music .importLrc .text {
  margin-top: 10px;
}
.music .importLrc .text p {
  color: red;
  margin-bottom: 5px;
}
.music .importLrc .text p:first-child {
  color: green;
}
.music .importLrc .text p:last-child {
  color: gray;
}
.tips {
  font-size: 12px;
  color: #999999;
  margin-top: 20px;
  text-align: center;
}
.list {
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.list .el-collapse {
  width: 100%;
  border: none;
}
.list .title > div > .el-collapse-item__header {
  font-size: 15px;
}
.list .title .el-collapse-item__header,
.list .title .el-collapse-item__wrap {
  background-color: transparent !important;
  border: none !important;
  color: var(--font-color) !important;
}
.list .title .el-collapse-item {
  border-bottom: 1px solid var(--border-color);
}
.list .title .itemBox {
  padding-left: 20px;
}
.list .title .collapse-item {
  background-color: var(--background-color);
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: inset 1px 1px 5px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  max-height: 500px;
}
.list .searchInput {
  border: none;
  width: 90%;
  padding: 10px;
  text-align: center;
  background-color: var(--background-color);
  outline: none;
  border-radius: 10px;
  margin: 0 auto;
  box-sizing: border-box;
  color: var(--font-color);
}
.list .searchResult {
  width: 90%;
  background-color: var(--background-color);
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: inset 1px 1px 5px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  max-height: 500px;
  margin-top: 10px;
}
.list .searchResult .song {
  font-size: 14px;
  padding: 8px 25px;
}
.list .searchResult .red {
  color: red;
}
.list .song {
  cursor: pointer;
  padding: 10px 25px;
  position: relative;
  border-radius: 5px;
  color: var(--font-color) !important;
}
.list .song .download {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  color: var(--font-color) !important;
  padding: 3px 10px;
  background-color: rgba(128, 128, 128, 0.3);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
}
.list .song:hover {
  color: var(--el-color-primary);
  padding-left: 30px;
  background-color: rgba(48, 48, 48, 0.1);
}
.list .song:hover .download {
  visibility: visible;
  opacity: 1;
}
.intro {
  padding: 20px 50px;
  box-sizing: border-box;
  text-align: left;
  display: block;
}
.intro a {
  text-decoration: none;
  color: #409eff;
}
.intro h3 {
  text-align: center;
}
.intro hr {
  margin: 10px 0;
  background: var(--border-color);
  border: 0;
  height: 1px;
}
.intro p {
  margin-bottom: 20px;
}
.intro img {
  max-width: 200px;
  width: 100%;
  margin-bottom: 10px;
}
.intro table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.intro table thead tr {
  font-weight: bold;
  background-color: var(--background-color);
}
.intro table tbody tr:hover {
  background-color: var(--background-color);
}
.intro table td {
  border: 1px solid var(--border-color);
  padding: 5px;
  text-align: center;
}
.intro .imgs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.intro .imgs > div {
  width: 50%;
  min-width: 200px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.intro .imgs > div p {
  width: 100%;
  height: 60px;
}
.intro .imgs > div img {
  max-width: 200px;
}
.intro .center {
  text-align: center;
}
@media screen and (max-width: 670px) {
  .intro {
    padding: 20px 20px;
  }
}
.copyright {
  height: 50px;
  padding-bottom: 30px;
}
.copyright a {
  color: #999999;
  text-decoration: none;
}
.copyright a:hover {
  color: #409eff;
}
.comment input,
.comment textarea {
  border: none;
  user-select: none;
  outline: none;
  background-color: transparent;
  background: var(--background-color);
  padding: 10px 20px;
  border-radius: 10px;
  width: 100%;
  box-sizing: border-box;
}
.comment textarea {
  height: 100px;
}
.comment .inputs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 30px;
}
.comment .inputs .inputBox {
  position: relative;
  width: 100%;
  padding-right: 20px;
  box-sizing: border-box;
}
.comment .inputs .inputBox span {
  position: absolute;
  left: 0;
  top: -25px;
  opacity: 0.7;
}
.comment .inputs .inputBox span b {
  margin-left: 3px;
  color: red;
}
.comment .inputs .inputBox:last-of-type {
  padding-right: 0;
}
.comment .commentBtn {
  padding: 3px 10px;
  background-color: rgba(128, 128, 128, 0.3);
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
}
.comment .commentList {
  font-size: 0.9rem;
  margin-top: 20px;
}
.comment .commentList > div {
  position: relative;
}
.comment .commentList > div::after {
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translate(-50%);
  width: 100%;
  background-color: var(--border-color);
}
.comment .commentList .father,
.comment .commentList .children > div {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  padding: 10px 0;
  margin-bottom: 10px;
}
.comment .commentList .headImg {
  border-radius: 50%;
  height: 50px;
  margin-right: 10px;
  min-width: 50px;
  width: 50px;
}
.comment .commentList .content .head span {
  color: #b5b5b5;
  margin-left: 8px;
}
.comment .commentList .content .head span:first-of-type {
  color: var(--font-color);
  margin-left: 0;
}
.comment .commentList .content .at {
  color: #008ac5;
}
.comment .commentList .content .context {
  margin: 3px 0 5px;
  white-space: pre-wrap;
}
.comment .commentList .content .context audio {
  margin-top: 8px;
}
.comment .commentList .reply {
  color: #afafaf;
  cursor: pointer;
}
.comment .commentList .reply:hover {
  color: #4e4e4e;
}
.comment .commentList .children {
  padding-left: 15px;
}
.comment .pageBtn {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.comment .commentImgs {
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0;
}
.comment .commentImgs > div {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-right: 10px;
}
.comment .commentImgs span {
  cursor: pointer;
  color: red;
  transform: scale(0.85);
}
.comment .commentImgs img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  justify-content: start;
  cursor: zoom-in;
  margin-bottom: 0;
}
.comment #commentImgBtn {
  position: fixed;
  left: -100%;
  top: -100%;
  opacity: 0;
}
.comment .imgBtn {
  margin-right: 10px;
}
@media screen and (max-width: 540px) {
  .comment .el-pagination {
    transform: scale(0.8);
  }
}
@media screen and (max-width: 350px) {
  .comment .el-pagination {
    transform: scale(0.7);
  }
}
.tools {
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 999;
}
.tools > div {
  background-color: var(--sss-box-back-ground);
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.3s;
}
.tools > div:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.tools > div .dot {
  background-color: red;
  border-radius: 50%;
  position: absolute;
  right: -10px;
  top: -10px;
  color: white;
  font-size: 0.8rem;
  width: 30px;
  line-height: 30px;
  text-align: center;
  transform: scale(0.7);
}
.tools > div img {
  width: 50%;
  filter: var(--filter-invert);
}
.tools > div .donate-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: bold;
  font-family: "Microsoft YaHei", sans-serif;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
  transition: all 0.3s ease;
}
.tools > div:hover .donate-icon {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.6);
}
@media screen and (max-width: 670px) {
  .song .download {
    opacity: 1 !important;
    visibility: visible !important;
  }
}
.voiceBox {
  width: 230px;
  height: 30px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  cursor: pointer;
  margin-top: 5px;
  background: var(--sss-box-back-ground);
  line-height: 30px;
  padding-left: 10px;
  box-sizing: border-box;
  color: var(--font-color);
}
.login-tip {
  text-align: center;
  padding: 30px 0;
}
.login-tip p {
  margin-bottom: 15px;
  color: #999;
}
.locked-content {
  color: #999;
  font-style: italic;
}
.user-info-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--background-color);
  padding: 12px 20px;
  border-radius: 10px;
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
}
.user-info-box span {
  font-size: 14px;
  color: var(--font-color);
}
.user-info-box b {
  color: #409eff;
  font-weight: 500;
  cursor: pointer;
}
.user-info-box b:hover {
  text-decoration: underline;
}
.voice-preview {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 15px 0;
  padding: 15px;
  background: linear-gradient(135deg, var(--background-color) 0%, var(--sss-box-back-ground) 100%);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.voice-preview .voice-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.voice-preview .voice-info .voice-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #409eff 0%, #67c23a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
}
.voice-preview .voice-info .voice-details .voice-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--font-color);
  margin-bottom: 4px;
}
.voice-preview .voice-info .voice-details .voice-time {
  font-size: 12px;
  color: #999;
}
.voice-preview .custom-audio-player {
  flex: 1;
  min-width: 0;
}
.voice-preview .custom-audio-player .audio-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--background-color);
  border-radius: 25px;
  border: 1px solid var(--border-color);
}
.voice-preview .custom-audio-player .audio-controls .audio-play-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #409eff 0%, #66b1ff 100%);
  color: white;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.voice-preview .custom-audio-player .audio-controls .audio-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(64, 158, 255, 0.4);
}
.voice-preview .custom-audio-player .audio-controls .audio-play-btn:active {
  transform: scale(0.95);
}
.voice-preview .custom-audio-player .audio-controls .audio-progress {
  flex: 1;
  height: 6px;
  background: var(--border-color);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.voice-preview .custom-audio-player .audio-controls .audio-progress .audio-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #409eff 0%, #67c23a 100%);
  border-radius: 3px;
  transition: width 0.1s linear;
}
.voice-preview .custom-audio-player .audio-controls .audio-progress:hover .audio-progress-bar {
  background: linear-gradient(90deg, #66b1ff 0%, #85ce61 100%);
}
.voice-preview .custom-audio-player .audio-controls .audio-time {
  font-size: 12px;
  color: #999;
  white-space: nowrap;
  min-width: 80px;
  text-align: right;
}
.voice-preview .el-button {
  flex-shrink: 0;
}
.image-preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 15px 0;
  padding: 15px;
  background: linear-gradient(135deg, var(--background-color) 0%, var(--sss-box-back-ground) 100%);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}
.image-preview-container .image-preview-item {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}
.image-preview-container .image-preview-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.image-preview-container .image-preview-item:hover .image-overlay {
  opacity: 1;
}
.image-preview-container .image-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.image-preview-container .image-preview-item:hover img {
  transform: scale(1.05);
}
.image-preview-container .image-preview-item .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.image-preview-container .image-preview-item .image-overlay .image-index {
  color: white;
  font-size: 14px;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
}
.image-preview-container .image-preview-item .image-overlay .delete-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 0, 0, 0.8);
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.image-preview-container .image-preview-item .image-overlay .delete-btn:hover {
  background: #ff0000;
  transform: scale(1.1);
}
.donate-disabled {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-size: 16px;
}
.donate-content .donate-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.donate-content .donate-amounts .el-button {
  min-width: 70px;
  flex: 1;
}
.donate-content .donate-custom-amount {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.donate-content .donate-custom-amount span {
  color: #606266;
  font-size: 14px;
}
.donate-content .donate-type {
  margin-bottom: 15px;
}
.donate-content .donate-type span {
  color: #606266;
  font-size: 14px;
  margin-right: 10px;
}
.donate-content .donate-message,
.donate-content .donate-nickname {
  margin-bottom: 15px;
}
.donate-content .donate-message span,
.donate-content .donate-nickname span {
  display: block;
  color: #606266;
  font-size: 14px;
  margin-bottom: 8px;
}
.donate-content .donate-tip {
  margin-top: 5px;
  padding: 10px 12px;
  background: linear-gradient(135deg, #fff8e1, #fff3e0);
  border-radius: 8px;
  font-size: 13px;
  color: #e65100;
  line-height: 1.6;
  text-align: center;
}
.pay-qrcode {
  text-align: center;
  padding: 20px;
}
.pay-qrcode .qrcode-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.pay-qrcode .qrcode-container .qrcode-img {
  width: 250px;
  height: 250px;
  object-fit: contain;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px;
}
.pay-qrcode .qrcode-container .pay-amount {
  font-size: 20px;
  font-weight: bold;
  color: #409eff;
}
.pay-qrcode .qrcode-container .pay-tip {
  color: #999;
  font-size: 14px;
}
.pay-qrcode .loading-qrcode {
  padding: 40px;
}
.pay-qrcode .loading-qrcode p {
  margin-top: 15px;
  color: #999;
}
.donate-list-container {
  max-height: 500px;
  overflow-y: auto;
}
.donate-list-container .donate-list .donate-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-bottom: 1px solid #eee;
  transition: all 0.3s;
}
.donate-list-container .donate-list .donate-item:hover {
  background: #f5f7fa;
}
.donate-list-container .donate-list .donate-item .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
}
.donate-list-container .donate-list .donate-item .donate-info {
  flex: 1;
  min-width: 0;
}
.donate-list-container .donate-list .donate-item .donate-info .donate-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.donate-list-container .donate-list .donate-item .donate-info .donate-header .nickname {
  font-weight: 500;
  color: #303133;
}
.donate-list-container .donate-list .donate-item .donate-info .donate-header .amount {
  color: #f56c6c;
  font-weight: bold;
  font-size: 16px;
}
.donate-list-container .donate-list .donate-item .donate-info .donate-msg {
  color: #606266;
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.5;
}
.donate-list-container .donate-list .donate-item .donate-info .donate-time {
  color: #999;
  font-size: 12px;
}
.donate-list-container .donate-list .empty-tip {
  text-align: center;
  padding: 40px;
  color: #999;
}
:root[theme="dark"] .donate-content .donate-custom-amount span,
:root[theme="dark"] .donate-content .donate-type span,
:root[theme="dark"] .donate-content .donate-message span,
:root[theme="dark"] .donate-content .donate-nickname span {
  color: #d0d0d0;
}
:root[theme="dark"] .donate-list .donate-item .donate-info .donate-header .donate-nickname {
  color: #e0e0e0;
}
:root[theme="dark"] .donate-list .donate-item .donate-info .donate-header .donate-amount {
  color: #409eff;
}
:root[theme="dark"] .donate-list .donate-item .donate-info .donate-msg {
  color: #c0c0c0;
}
:root[theme="dark"] .donate-list .donate-item .donate-info .donate-time {
  color: #888;
}
:root[theme="dark"] .el-dialog {
  background-color: #484848 !important;
  border: 1px solid var(--border-color);
}
:root[theme="dark"] .el-dialog .el-dialog__header {
  border-bottom: 1px solid var(--border-color);
}
:root[theme="dark"] .el-dialog .el-dialog__header .el-dialog__title {
  color: #e0e0e0;
}
:root[theme="dark"] .el-dialog .el-dialog__header .el-dialog__headerbtn .el-icon {
  color: #e0e0e0;
}
:root[theme="dark"] .el-dialog .el-dialog__body {
  color: #d0d0d0;
}
:root[theme="dark"] .el-dialog .el-dialog__footer {
  border-top: 1px solid var(--border-color);
}
:root[theme="dark"] .el-form-item__label {
  color: #d0d0d0 !important;
}
:root[theme="dark"] .el-input__inner,
:root[theme="dark"] .el-textarea__inner {
  background-color: #5a5a5a !important;
  border-color: #666 !important;
  color: #e0e0e0 !important;
}
:root[theme="dark"] .el-input__inner:focus,
:root[theme="dark"] .el-textarea__inner:focus {
  border-color: #409eff !important;
}
:root[theme="dark"] .el-input__inner::placeholder,
:root[theme="dark"] .el-textarea__inner::placeholder {
  color: #888;
}
:root[theme="dark"] .el-input__wrapper {
  background-color: #5a5a5a !important;
  box-shadow: 0 0 0 1px #666 inset !important;
}
:root[theme="dark"] .el-input__wrapper .el-input__inner {
  color: #e0e0e0 !important;
}
:root[theme="dark"] .el-textarea__inner {
  background-color: #5a5a5a !important;
  border-color: #666 !important;
  color: #e0e0e0 !important;
}
:root[theme="dark"] .el-button--default {
  background-color: #5a5a5a !important;
  border-color: #666 !important;
  color: #e0e0e0 !important;
}
:root[theme="dark"] .el-button--default:hover,
:root[theme="dark"] .el-button--default:focus {
  background-color: #6a6a6a !important;
  border-color: #888 !important;
  color: #fff !important;
}
:root[theme="dark"] .el-tabs__item {
  color: #aaa !important;
}
:root[theme="dark"] .el-tabs__item.is-active {
  color: #409eff !important;
}
:root[theme="dark"] .el-tabs__item:hover {
  color: #e0e0e0 !important;
}
:root[theme="dark"] .el-tabs__active-bar {
  background-color: #409eff !important;
}
:root[theme="dark"] .el-tabs__nav-wrap::after {
  background-color: var(--border-color) !important;
}
:root[theme="dark"] .el-radio__label,
:root[theme="dark"] .el-checkbox__label {
  color: #d0d0d0 !important;
}
:root[theme="dark"] .el-radio__inner,
:root[theme="dark"] .el-checkbox__inner {
  background-color: #5a5a5a !important;
  border-color: #666 !important;
}
:root[theme="dark"] .el-radio__input.is-checked .el-radio__inner,
:root[theme="dark"] .el-checkbox__input.is-checked .el-checkbox__inner {
  background-color: #409eff !important;
  border-color: #409eff !important;
}
:root[theme="dark"] .el-input-number .el-input-number__decrease,
:root[theme="dark"] .el-input-number .el-input-number__increase {
  background-color: #5a5a5a !important;
  border-color: #666 !important;
  color: #e0e0e0 !important;
}
:root[theme="dark"] .el-input-number .el-input-number__decrease:hover,
:root[theme="dark"] .el-input-number .el-input-number__increase:hover {
  color: #fff !important;
}
:root[theme="dark"] .el-input-number .el-input__wrapper {
  background-color: #5a5a5a !important;
}
:root[theme="dark"] .el-divider {
  background-color: var(--border-color) !important;
}
:root[theme="dark"] .el-input__count .el-input__count-inner,
:root[theme="dark"] .el-textarea__count .el-input__count-inner {
  background: transparent !important;
  color: #888 !important;
  font-size: 12px;
  padding: 0;
}
.wechat-group-btn .wechat-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #07c160 0%, #1aad19 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  font-family: "Microsoft YaHei", sans-serif;
  box-shadow: 0 2px 8px rgba(7, 193, 96, 0.4);
  transition: all 0.3s ease;
}
.wechat-group-btn:hover .wechat-icon {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 4px 12px rgba(7, 193, 96, 0.6);
}
.theme-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.theme-btn:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.theme-btn .theme-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(0);
  transition: filter 0.3s ease;
}
:root[theme="dark"] .theme-btn {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.1);
}
:root[theme="dark"] .theme-btn:hover {
  background: rgba(0, 0, 0, 0.5);
}
:root[theme="dark"] .theme-btn .theme-icon {
  filter: brightness(0) invert(1);
}
.wechat-group-loading,
.wechat-group-disabled,
.wechat-group-need-login {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-size: 16px;
}
.wechat-group-loading p,
.wechat-group-disabled p,
.wechat-group-need-login p {
  margin-bottom: 15px;
}
.wechat-group-condition {
  padding: 20px;
}
.wechat-group-condition .condition-title {
  font-size: 16px;
  font-weight: 500;
  color: #303133;
  margin-bottom: 20px;
  text-align: center;
}
.wechat-group-condition .condition-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 12px 15px;
  background: #f5f7fa;
  border-radius: 8px;
  margin-bottom: 10px;
}
.wechat-group-condition .condition-item .condition-label {
  color: #606266;
  font-size: 14px;
}
.wechat-group-condition .condition-item .condition-value {
  color: #f56c6c;
  font-weight: bold;
  font-size: 16px;
  margin: 0 5px;
}
.wechat-group-condition .condition-item .condition-progress {
  color: #e6a23c;
  font-size: 12px;
}
.wechat-group-condition .condition-item .condition-progress.is-success {
  color: #67c23a;
}
.wechat-group-qrcode {
  text-align: center;
  padding: 10px;
}
.wechat-group-qrcode .qrcode-desc {
  color: #606266;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.6;
}
.wechat-group-qrcode .qrcode-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: #f5f7fa;
  border-radius: 8px;
  margin-bottom: 15px;
}
.wechat-group-qrcode .qrcode-container .qrcode-img {
  max-width: 100%;
  max-height: 300px;
  border-radius: 4px;
}
.wechat-group-qrcode .qrcode-tip {
  color: #909399;
  font-size: 12px;
}
:root[theme="dark"] .wechat-group-condition .condition-title {
  color: #e0e0e0;
}
:root[theme="dark"] .wechat-group-condition .condition-item {
  background: #3a3a3a;
}
:root[theme="dark"] .wechat-group-condition .condition-item .condition-label {
  color: #d0d0d0;
}
:root[theme="dark"] .wechat-group-qrcode .qrcode-desc {
  color: #d0d0d0;
}
:root[theme="dark"] .wechat-group-qrcode .qrcode-container {
  background: #3a3a3a;
}
:root[theme="dark"] .wechat-group-qrcode .qrcode-tip {
  color: #888;
}
