@charset "UTF-8";
.booshelf-head[data-v-6c3f0b7a] {
  padding: 20px;
  height: 152px;
  width: 100%;
  background-image: url(../../static/img/rankbg.818f939f.png);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.booshelf-head .header[data-v-6c3f0b7a] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.booshelf-head .header h1[data-v-6c3f0b7a] {
  font-size: 32px;
  color: #fff;
  font-weight: bold;
  margin: 0;
}
.booshelf-head .header .tabs[data-v-6c3f0b7a] {
  width: 200px;
}
.booshelf-head .header .tabs span[data-v-6c3f0b7a] {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
}
.booshelf-head .header .tabs .common[data-v-6c3f0b7a] {
  cursor: pointer;
}
.booshelf-head .header .tabs .primary[data-v-6c3f0b7a] {
  cursor: pointer;
  color: #ffa500;
  font-size: 18px;
}
.bookshelf-container[data-v-6c3f0b7a] {
  width: 90%;
  max-width: 1440px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 20px;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}
.action-bar[data-v-6c3f0b7a] {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
}
.manage-btn[data-v-6c3f0b7a] {
  margin-bottom: 20px;
}
.book-list[data-v-6c3f0b7a] {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  /* 或 calc(20% - 20px) */
  gap: 25px;
}
.book-card[data-v-6c3f0b7a] {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.book-card[data-v-6c3f0b7a]:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.book-cover[data-v-6c3f0b7a] {
  position: relative;
  padding-top: 10px;
  min-height: 200px;
  text-align: center;
}
.book-cover img[data-v-6c3f0b7a] {
  width: 180px;
  height: 220px;
}
.book-cover .book-status[data-v-6c3f0b7a] {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  color: white;
}
.book-cover .book-status.completed[data-v-6c3f0b7a] {
  background-color: #1d9c40;
}
.book-cover .book-status.serial[data-v-6c3f0b7a] {
  background-color: #f39c12;
}
.book-cover .selection[data-v-6c3f0b7a] {
  position: absolute;
  top: 10px;
  left: 10px;
}
.book-cover .selection[data-v-6c3f0b7a]  .el-checkbox .el-checkbox__input .el-checkbox__inner {
  width: 18px;
  height: 18px;
}
.book-cover .selection[data-v-6c3f0b7a]  .el-checkbox .el-checkbox__input .el-checkbox__inner::after {
  height: 10px;
  left: 6px;
  top: 2px;
  width: 4px;
}
.book-info[data-v-6c3f0b7a] {
  padding: 15px;
}
.book-info .book-title[data-v-6c3f0b7a] {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.book-info .book-meta[data-v-6c3f0b7a] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}
.book-info .chapter[data-v-6c3f0b7a], .book-info .last-read[data-v-6c3f0b7a] {
  font-size: 13px;
  color: #888;
  margin: 5px 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.book-info .last-read[data-v-6c3f0b7a] {
  font-size: 12px;
}
.book-info .actions[data-v-6c3f0b7a] {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.book-info .actions .el-button[data-v-6c3f0b7a] {
  padding: 8px 12px;
}
@media (max-width: 768px) {
.header[data-v-6c3f0b7a] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.header .tabs[data-v-6c3f0b7a] {
    margin-top: 15px;
}
.book-list[data-v-6c3f0b7a] {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
}
.book-cover[data-v-6c3f0b7a] {
    height: 160px;
}
}
.no-login-container[data-v-6c3f0b7a] {
  min-height: calc(100vh);
  background: linear-gradient(135deg, #fef9f0 0%, #fff 50%, #fef5e8 100%);
  position: relative;
  overflow: hidden;
}
.no-login-wrapper[data-v-6c3f0b7a] {
  position: relative;
  min-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px 20px;
}
.decoration-left[data-v-6c3f0b7a],
.decoration-right[data-v-6c3f0b7a] {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  pointer-events: none;
}
.decoration-left[data-v-6c3f0b7a] {
  left: 0;
}
.decoration-right[data-v-6c3f0b7a] {
  right: 0;
}
.floating-book[data-v-6c3f0b7a] {
  position: absolute;
  opacity: 0.6;
  -webkit-animation: float-data-v-6c3f0b7a 6s ease-in-out infinite;
          animation: float-data-v-6c3f0b7a 6s ease-in-out infinite;
}
.floating-book.book-1[data-v-6c3f0b7a] {
  top: 15%;
  left: 10%;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.floating-book.book-2[data-v-6c3f0b7a] {
  bottom: 20%;
  left: 5%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.floating-book.book-3[data-v-6c3f0b7a] {
  top: 25%;
  right: 12%;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.floating-circle[data-v-6c3f0b7a] {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.1) 0%, rgba(255, 165, 0, 0) 70%);
  -webkit-animation: pulse-data-v-6c3f0b7a 4s ease-in-out infinite;
          animation: pulse-data-v-6c3f0b7a 4s ease-in-out infinite;
}
.floating-circle.circle-1[data-v-6c3f0b7a] {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -100px;
}
.floating-circle.circle-2[data-v-6c3f0b7a] {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.floating-star[data-v-6c3f0b7a] {
  position: absolute;
  font-size: 24px;
  -webkit-animation: twinkle-data-v-6c3f0b7a 3s ease-in-out infinite;
          animation: twinkle-data-v-6c3f0b7a 3s ease-in-out infinite;
}
.floating-star.star-1[data-v-6c3f0b7a] {
  top: 20%;
  right: 20%;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.floating-star.star-2[data-v-6c3f0b7a] {
  bottom: 30%;
  right: 8%;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.floating-star.star-3[data-v-6c3f0b7a] {
  top: 40%;
  left: 15%;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.no-login-card[data-v-6c3f0b7a] {
  position: relative;
  z-index: 2;
  max-width: 560px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 32px;
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.no-login-card[data-v-6c3f0b7a]:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 35px 60px -15px rgba(255, 165, 0, 0.2);
          box-shadow: 0 35px 60px -15px rgba(255, 165, 0, 0.2);
}
.card-inner[data-v-6c3f0b7a] {
  position: relative;
  padding: 48px 40px;
  overflow: hidden;
}
.decor-line[data-v-6c3f0b7a] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#ffa500), color-stop(#ff8c00), to(#ffa500));
  background: linear-gradient(90deg, #ffa500, #ff8c00, #ffa500);
}
.main-illustration[data-v-6c3f0b7a] {
  position: relative;
  height: 140px;
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.illustration-bg[data-v-6c3f0b7a] {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.1) 0%, rgba(255, 165, 0, 0) 70%);
  border-radius: 50%;
  -webkit-animation: pulse-data-v-6c3f0b7a 3s ease-in-out infinite;
          animation: pulse-data-v-6c3f0b7a 3s ease-in-out infinite;
}
.book-stack[data-v-6c3f0b7a] {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.book-spine[data-v-6c3f0b7a] {
  width: 35px;
  background: linear-gradient(135deg, #ffa500, #ff8c00);
  border-radius: 4px 4px 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.book-spine.book-spine-1[data-v-6c3f0b7a] {
  height: 70px;
  -webkit-animation: sway-data-v-6c3f0b7a 3s ease-in-out infinite;
          animation: sway-data-v-6c3f0b7a 3s ease-in-out infinite;
}
.book-spine.book-spine-2[data-v-6c3f0b7a] {
  height: 85px;
  -webkit-animation: sway-data-v-6c3f0b7a 3s ease-in-out infinite 0.3s;
          animation: sway-data-v-6c3f0b7a 3s ease-in-out infinite 0.3s;
}
.book-spine.book-spine-3[data-v-6c3f0b7a] {
  height: 60px;
  -webkit-animation: sway-data-v-6c3f0b7a 3s ease-in-out infinite 0.6s;
          animation: sway-data-v-6c3f0b7a 3s ease-in-out infinite 0.6s;
}
.book-spine.book-spine-4[data-v-6c3f0b7a] {
  height: 75px;
  -webkit-animation: sway-data-v-6c3f0b7a 3s ease-in-out infinite 0.9s;
          animation: sway-data-v-6c3f0b7a 3s ease-in-out infinite 0.9s;
}
.reading-icon[data-v-6c3f0b7a] {
  position: absolute;
  font-size: 48px;
  -webkit-animation: bounce-data-v-6c3f0b7a 2s ease-in-out infinite;
          animation: bounce-data-v-6c3f0b7a 2s ease-in-out infinite;
}
.floating-text[data-v-6c3f0b7a] {
  position: absolute;
  font-size: 14px;
  font-weight: 500;
  color: #ffa500;
  background: rgba(255, 165, 0, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.floating-text.floating-text[data-v-6c3f0b7a] {
  top: 20px;
  right: 30px;
  -webkit-animation: floatText-data-v-6c3f0b7a 4s ease-in-out infinite;
          animation: floatText-data-v-6c3f0b7a 4s ease-in-out infinite;
}
.floating-text.text-2[data-v-6c3f0b7a] {
  bottom: 20px;
  left: 30px;
  -webkit-animation: floatText-data-v-6c3f0b7a 4s ease-in-out infinite 1s;
          animation: floatText-data-v-6c3f0b7a 4s ease-in-out infinite 1s;
}
.content-area[data-v-6c3f0b7a] {
  text-align: center;
}
.welcome-title[data-v-6c3f0b7a] {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px 0;
  background: linear-gradient(135deg, #333 0%, #ffa500 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title-decoration[data-v-6c3f0b7a] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.title-decoration span[data-v-6c3f0b7a] {
  width: 8px;
  height: 8px;
  background: #ffa500;
  border-radius: 50%;
  -webkit-animation: bounce-data-v-6c3f0b7a 1.4s ease-in-out infinite;
          animation: bounce-data-v-6c3f0b7a 1.4s ease-in-out infinite;
}
.title-decoration span[data-v-6c3f0b7a]:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.title-decoration span[data-v-6c3f0b7a]:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.main-desc[data-v-6c3f0b7a] {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin-bottom: 12px;
}
.sub-desc[data-v-6c3f0b7a] {
  font-size: 14px;
  color: #999;
  line-height: 1.6;
  margin-bottom: 28px;
}
.feature-list[data-v-6c3f0b7a] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  margin-bottom: 36px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 165, 0, 0.2);
  border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}
.feature-item[data-v-6c3f0b7a] {
  text-align: center;
}
.feature-item .feature-icon[data-v-6c3f0b7a] {
  font-size: 28px;
  margin-bottom: 8px;
}
.feature-item .feature-text[data-v-6c3f0b7a] {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}
.button-area[data-v-6c3f0b7a] {
  margin-top: 8px;
}
.login-btn-primary[data-v-6c3f0b7a] {
  width: 100%;
  height: 52px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 52px;
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  border: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.login-btn-primary .btn-arrow[data-v-6c3f0b7a] {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.login-btn-primary[data-v-6c3f0b7a]:hover, .login-btn-primary[data-v-6c3f0b7a]:focus {
  background: linear-gradient(135deg, #ff8c00 0%, #ff6a00 100%);
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 0 10px 25px -5px rgba(255, 165, 0, 0.4);
          box-shadow: 0 10px 25px -5px rgba(255, 165, 0, 0.4);
}
.login-btn-primary:hover .btn-arrow[data-v-6c3f0b7a], .login-btn-primary:focus .btn-arrow[data-v-6c3f0b7a] {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.register-area[data-v-6c3f0b7a] {
  margin-top: 20px;
  font-size: 14px;
}
.register-area .register-text[data-v-6c3f0b7a] {
  color: #999;
}
.register-area .register-link[data-v-6c3f0b7a] {
  color: #ffa500;
  cursor: pointer;
  font-weight: 600;
  margin-left: 8px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.register-area .register-link[data-v-6c3f0b7a]:hover {
  color: #ff8c00;
  text-decoration: underline;
}
@-webkit-keyframes float-data-v-6c3f0b7a {
0%, 100% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
}
50% {
    -webkit-transform: translateY(-15px) rotate(5deg);
            transform: translateY(-15px) rotate(5deg);
}
}
@keyframes float-data-v-6c3f0b7a {
0%, 100% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
}
50% {
    -webkit-transform: translateY(-15px) rotate(5deg);
            transform: translateY(-15px) rotate(5deg);
}
}
@-webkit-keyframes pulse-data-v-6c3f0b7a {
0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.5;
}
50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0.8;
}
}
@keyframes pulse-data-v-6c3f0b7a {
0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.5;
}
50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0.8;
}
}
@-webkit-keyframes twinkle-data-v-6c3f0b7a {
0%, 100% {
    opacity: 0.3;
    -webkit-transform: scale(1);
            transform: scale(1);
}
50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
}
}
@keyframes twinkle-data-v-6c3f0b7a {
0%, 100% {
    opacity: 0.3;
    -webkit-transform: scale(1);
            transform: scale(1);
}
50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
}
}
@-webkit-keyframes sway-data-v-6c3f0b7a {
0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
50% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
}
}
@keyframes sway-data-v-6c3f0b7a {
0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
50% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
}
}
@-webkit-keyframes bounce-data-v-6c3f0b7a {
0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
}
50% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
}
}
@keyframes bounce-data-v-6c3f0b7a {
0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
}
50% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
}
}
@-webkit-keyframes floatText-data-v-6c3f0b7a {
0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
}
50% {
    -webkit-transform: translate(5px, -5px);
            transform: translate(5px, -5px);
}
}
@keyframes floatText-data-v-6c3f0b7a {
0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
}
50% {
    -webkit-transform: translate(5px, -5px);
            transform: translate(5px, -5px);
}
}
@media (max-width: 768px) {
.no-login-wrapper[data-v-6c3f0b7a] {
    padding: 40px 16px;
}
.card-inner[data-v-6c3f0b7a] {
    padding: 32px 24px;
}
.welcome-title[data-v-6c3f0b7a] {
    font-size: 26px;
}
.main-desc[data-v-6c3f0b7a] {
    font-size: 18px;
}
.feature-list[data-v-6c3f0b7a] {
    gap: 20px;
}
.decoration-left[data-v-6c3f0b7a],
.decoration-right[data-v-6c3f0b7a] {
    display: none;
}
.main-illustration[data-v-6c3f0b7a] {
    height: 100px;
    margin-bottom: 24px;
}
.book-spine[data-v-6c3f0b7a] {
    width: 25px;
}
.reading-icon[data-v-6c3f0b7a] {
    font-size: 36px;
}
}
