/*!************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./public/css/style.css ***!
  \************************************************************************/
* {
  margin: 0;
  padding: 0; 
}

#app{
  min-height: 100vh;
  height: auto;
  background: #f3f3f3;
}

#load{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: #fdfcfe;
    /*linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    color: #fff;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 20px;
}
 

h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: -0.5px;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.2s;
}

.loading-card { 
  width: 100%;
  box-sizing: border-box; 
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 50px 40px; 
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.6s;
  position: relative;
  overflow: hidden;
}

.loading-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.loading-percentage {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd166;
  text-shadow: 0 2px 10px rgba(255, 209, 102, 0.3);
}

/* 进度条容器 */
.progress-container {
  height: 18px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin: 40px 0;
  position: relative;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* 进度条 */
.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ffd166, #ff9a5a, #ef476f);
  border-radius: 10px;
  transition: width 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* 进度条发光效果 */
.progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shimmer 2s infinite;
}

/* 进度条条纹动画 */
.progress-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(
    45deg,
    transparent 25%,
    rgba(255, 255, 255, 0.1) 25%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 50%,
    transparent 75%,
    rgba(255, 255, 255, 0.1) 75%,
    rgba(255, 255, 255, 0.1)
  );
  background-size: 20px 20px;
  animation: moveStripes 1s linear infinite;
  border-radius: 10px;
}

/* 动画定义 */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

@keyframes moveStripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 20px 0;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* 响应式设计 */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  .loading-card {
    padding: 40px 25px;
  }

  .loading-percentage {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  .loading-card {
    padding: 30px 20px;
  }

  .loading-info {
    flex-direction: column;
    gap: 10px;
  }

  .progress-container {
    height: 14px;
  }
}

/*!********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/pages/index/css/body.css ***!
  \********************************************************************************/
.app-view{
    box-sizing: border-box;
    padding-bottom: 10px;
}

.app-view,.article-item-list{
    width: 100%;
}

/* 时间 */
.time{
    width: 100%;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #909090;
    font-size: 15px;
}

/* 大列表 */
.article{
    width: calc(100% - 24px);
    max-width: 500px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    background: #FFF;
}
.article .head-view{ 
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.article .head-view .head-img{
    width: 100%;
}
.article .head-view .title{
    position: absolute;
    left: 0;
    bottom: 10px;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #FFF;
    font-weight: 550;
}
.item-list .title{
    white-space: nowrap;
    box-sizing: border-box;
    padding: 0 20px 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
    font-weight: 550;
}
/* 列表 */
.item-list{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 110px;
    box-sizing: border-box;
    padding: 0 15px;
    color:#353535;
}

.item-list .img{
    width: 70px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden; 
    display: flex;
    justify-content: center;
    align-items: center;
}
.item-list .img img{ 
    display: block;
    height: 70px;
}

.article .item-list::after{
    content: '';
    position: absolute;
    left: 15px;
    bottom: 0;
    height:1px;
    width: calc(100% - 112px);
    background: #ddd;
    transform: scaleY(0.5);
}

.article .item-list:last-child::after{
    background:rgba(255,255,255,0);
}


