/* ==========================================================================
   NAVIGATION MODULE
   ========================================================================== */

/* ==========================================================================
   PC Navigation
   ========================================================================== */

/* PC Nav Container */
.isPc .navBox {
  height: 90px;
}

.isPc .nav {
  line-height: 90px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 999999;
  top: 0;
  left: 0;
}

.isPc .menuLink {
  display: none;
}

.isPc #mainNav {
  width: 100%;
  height: 90px;
}

.isPc #mainNav ul {
  margin: 0 auto;
  line-height: 90px;
  width: 1200px;
  list-style: none;
}

.isPc #mainNav ul li {
  float: left;
  margin-left: 40px;
  position: relative;
  transition: all 0.3s ease;
}

.isPc #mainNav ul li.mr0 {
  background: none;
}

.isPc #mainNav ul li.wap_box {
  display: none;
}

.isPc #mainNav ul li a {
  line-height: 90px;
  color: #000;
  font-size: 16px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

/* PC Nav Menu Item Underline Effect */
.isPc #mainNav ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: #ff7418;
  transition: width 0.3s ease;
}

.isPc #mainNav ul li:hover::after {
  width: 100%;
}

/* PC Nav Link Hover Effect */
.isPc #mainNav ul li:hover a {
  color: #ff7418;
  text-decoration: none;
}

/* PC Nav Link Active/Click Effect */
.isPc #mainNav ul li:active a {
  color: #e66614;
}

.isPc #mainNav ul li.active {
  color: #ff7418;
}

.isPc #mainNav ul li.active::after {
  width: 100%;
}

.isPc #mainNav ul li.active a {
  color: #ff7418;
}

.isPc .minNav ul:after {
  content: "";
  clear: both;
  display: block;
}

/* ==========================================================================
   Mobile Navigation
   ========================================================================== */

/* Mobile Navigation Container */
.isWap .navBox {
  display: flex;
  width: auto;
  z-index: 9999;
}

/* Mobile Menu Button (Hamburger) */
.isWap .menuLink {
  display: block;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: url(../i/wap/nav_wap.png) no-repeat center;
  background-size: 24px 21px;
  left: 3vw;
  top: 3vw;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Mobile Navigation Menu Panel */
.isWap .nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 9998;
  display: none;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* Navigation Menu Open State */
.isWap .nav.is-open {
  display: block;
  animation: slideInLeft 0.3s ease forwards;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Mobile Navigation Backdrop Overlay */
.isWap .headBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.1rem 3% 0.1rem;
  box-sizing: border-box;
  background: #fff;
  z-index: 9999;
  border-bottom: 1px solid #eee;
}

.isWap .headBox .logo {
  width: 24%;
  margin-left: 2%;
}

.isWap .nav::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.05);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.isWap .nav.is-open::before {
  opacity: 1;
}

/* Close Button Area */
.isWap .close2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
  width: 100%;
  padding: 3vw;
  height: 1.5rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid #e9ecef;
  float: none;
}

.isWap .close2 a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 44px;
  height: 44px;
  min-height: 44px;
  background: url(../i/wap/close2.png) no-repeat center;
  background-size: 20px 20px;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}

.isWap .close2 a:hover {
  background-position: left center;
  color: #ff7418;
}

.isWap .close2 a:active {
  opacity: 0.7;
}

/* Mobile Navigation Menu List */
.isWap .mainNav {
  width: 100%;
  margin: 0;
  padding: 2vw 0;
  background: #ffffff;
}

.isWap #mainNav li .submenu li a {
  color: #000;
  font-size: 3.8vw;
}

.isWap #mainNav ul {
  list-style: none;
  position: relative;
  padding: 0;
  margin: 0;
}

.isWap #mainNav ul li {
  display: block;
  float: none;
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
}

.isWap #mainNav ul li:last-child {
  border-bottom: none;
}

.isWap #mainNav ul li a {
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  text-transform: none;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  font-weight: 400;
  min-height: 52px;
}

/* Mobile Nav Link Hover Effect */
.isWap #mainNav ul li a:hover {
  color: #ff7418;
  background-color: #fff5eb;
  border-left-color: #ff7418;
  text-decoration: none;
  padding-left: 6vw;
}

.isWap #mainNav ul li a:active {
  color: #e66614;
  background-color: #ffe8d6;
}

/* Mobile Nav Active State */
.isWap #mainNav ul li.active a {
  color: #ff7418;
  border-left-color: #ff7418;
  background-color: #fff5eb;
  font-weight: 500;
}

/* Mobile Submenu Arrow Indicator */
.isWap #mainNav ul li.has-submenu > a {
  padding-right: 8vw;
}

.isWap #mainNav ul li.has-submenu > a::after {
  content: "";
  position: absolute;
  right: 4vw;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-right: 2px solid #ff7418;
  border-bottom: 2px solid #ff7418;
  transition: transform 0.3s ease;
}

.isWap #mainNav ul li.has-submenu > a:hover::after {
  transform: translateY(-50%) rotate(-45deg);
}

.isWap #mainNav ul li.has-submenu.active > a::after {
  transform: translateY(-50%) rotate(-45deg);
}

.isWap .closeNav {
  float: right;
  width: 10vw;
  height: 10vw;
  position: absolute;
  z-index: 9999999;
  right: 0;
}

.isWap .closeNav a {
  display: block;
  width: 100%;
  height: 1.58rem;
  background: url(../i/wap/close.png) no-repeat center;
  background-size: 0.6rem 0.6rem;
}

.isWap .mainNav .li2 {
  background: #008fbf;
  margin-top: 0.2rem;
  padding-top: 0.2rem;
  color: #fff;
  padding-bottom: 0.5rem;
}

.isWap #mainNav ul li.li2 a {
  color: #fff;
}

.isWap .main {
  padding-top: 1.5rem;
}

/* ==========================================================================
   BANNER & SLIDER MODULE
   ========================================================================== */

/* ==========================================================================
   PC Banner
   ========================================================================== */

.isPc .banner .sliderInner li > a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.isPc .banner .sliderInner li > a img {
  width: auto;
  height: 100%;
}

.isPc .banner .sliderCur a {
  margin-right: 0;
}

.isPc .banner .sliderCur a.swiper-slide-thumb-active {
  border-bottom: 3px solid #ff7418;
}

.isPc .banner .sliderCur a img {
  box-sizing: border-box;
  width: 100%;
  height: auto;
}

/* ==========================================================================
   Mobile Banner
   ========================================================================== */

.isWap .banner .sliderCur {
  display: flex;
  justify-content: space-between;
  margin: 1%;
  position: relative;
  top: 0;
  width: auto;
}

.isWap .banner .sliderCur a {
  width: 24%;
  margin-left: 0;
}

.isWap .banner .sliderCur a img,
.isWap .banner .sliderCur a.cur img {
  width: 100%;
  height: auto;
}

.isWap .banner .sliderCur a.swiper-slide-thumb-active img {
  border-bottom: 0.05rem solid #ff7418;
  padding-bottom: 0.15rem;
}

.isWap .banner .sliderInner li img.pc_box {
  display: none;
}

.isWap .banner2 .sliderInner li {
  box-sizing: border-box;
}

.isWap .i_slider2 .swiper-pagination-bullet-active {
  background-color: #4929e1;
}

.isWap .i_slider2 li p {
  width: 94%;
}

/* ==========================================================================
   PAGINATION MODULE
   ========================================================================== */

.isPc .page,
.isWap .page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
}

.page span a {
  transition: all 0.15s ease;
}

.page span.s3 a {
  background: url(../i/arrow-left.png) #e8e8e8 no-repeat center;
  background-size: 60%;
}

.page span.s4 a {
  background: url(../i/arrow-right.png) #e8e8e8 no-repeat center;
  background-size: 60%;
}

.isPc .page span.s3 a:hover,
.isWap .page span.s3 a:hover {
  background: url(../i/arrow-left-active.png) #fa6e00 no-repeat center;
  background-size: 60%;
}

.isPc .page span.s4 a:hover,
.isWap .page span.s4 a:hover {
  background: url(../i/arrow-right-active.png) #fa6e00 no-repeat center;
  background-size: 60%;
}

.isWap .page span.s3 a,
.isWap .page span.s4 a {
  width: 0.5rem;
  height: 0.5rem;
}

.page span.ellipsis {
  background: url(../i/ellipsis.png) no-repeat center;
  background-size: 75%;
}

/* ==========================================================================
   IMAGES & FIGURES MODULE
   ========================================================================== */

/* PC Images */
figure {
  max-width: 100%;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

figure.image img {
  margin: 0;
  max-width: 100%;
  width: auto;
}

figure.image figcaption {
  font-size: 16px;
  color: #666666;
  margin-top: 15px;
  text-align: left;
  display: block;
}

figure.image {
  display: table;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border: 0px solid white;
}

figure.image.align-left {
  float: left;
}

figure.image.align-right {
  float: right;
}

figure.image.align-center {
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Images */
.isWap figure {
  margin-bottom: 0.3rem;
}

.isWap figure.image figcaption {
  font-size: 0.24rem;
  line-height: 0.34rem;
}

/* ==========================================================================
   TYPOGRAPHY MODULE
   ========================================================================== */

/* PC Typography */
.isPc .picBox3 h2 {
  font-size: 34px;
  text-align: center;
  margin-bottom: 50px;
}

/* PC Title Hover Effect */
.isPc h2 a,
.isPc h3 a {
  transition: color 0.3s ease;
  text-decoration: none;
}

.isPc h2 a:hover,
.isPc h3 a:hover {
  color: #ff7418;
}

/* Mobile Typography */
.isWap h2 a,
.isWap h3 a {
  transition: color 0.3s ease;
  text-decoration: none;
}

.isWap h2 a:hover,
.isWap h2 a:active,
.isWap h3 a:hover,
.isWap h3 a:active {
  color: #ff7418;
}

/* Author Icon */
i.author {
  margin-left: 12px;
}

/* ==========================================================================
   GRID & LAYOUT MODULE
   ========================================================================== */

/* PC Grid Layout */
.isPc .picBox ul,
.isPc .picBox2 ul {
  margin-bottom: 0;
}

.isPc .picBox ul li,
.isPc .picBox2 ul li {
  margin-bottom: 78px;
}

.isPc .picBox ul li:nth-child(4n),
.isPc .picBox2 ul li:nth-child(4n) {
  margin-right: 0;
}

/* Artists Section */
.isPc .picBox.artists {
  padding-top: 0;
  padding-bottom: 0;
}

.isWap .picBox.artists {
  padding-top: 0;
}

.isWap .picBox li:nth-child(2n + 1),
.isWap .picBox2 li:nth-child(2n + 1) {
  clear: both;
}

.isPc .picBox li img,
.isPc .picBox2 li img,
.isWap .picBox li img,
.isWap .picBox2 li img {
  border-radius: 50%;
}

/* ==========================================================================
  面包屑
   ========================================================================== */

.isPc .breadBox {
  padding-top: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 16px;
  /* line-height: 42px; */
  margin-bottom: 60px;
}

.isWap .breadBox {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #e8e8e8;
  font-size: 0.26rem;
  line-height: 0.4rem;
  margin-bottom: 0.6rem;
}

.breadBox {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}

.breadBox a {
  transition: color 0.3s ease;
  text-decoration: none;
}

.breadBox a:hover {
  color: #ff7418;
}

.breadBox i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../i/sp.png) no-repeat center;
  background-size: 100% 100%;
}

/* 周刊封面 */
.isPc .twBox ul {
  margin-bottom: 0;
}
.isPc .twBox li {
  margin-bottom: 40px;
}
.isPc .twBox li:nth-child(4n) {
  margin-right: 0;
}
.isPc .twBox li:nth-child(4n + 1) {
  clear: both;
}
.isWap .twBox ul {
  display: flex;
  flex-wrap: wrap;
}
.isPc .image-info h3 a {
  color: #fff;
}
.isPc .image-info h3 a:hover {
  color: #ff7418;
}

/* 2026.02.05 */
.isWap .picBox3 dd span:last-child {
  margin-right: 0;
}

/* ==========================================================================
   友情链接 - 悬浮点击效果
   ========================================================================== */

/* 友情链接基础样式 */
.botBox dl dd a img,
.shareBox li img {
  transition: all 0.3s ease;
  display: block;
}

/* PC端友情链接悬浮效果 */
.isPc .botBox dl dd a:hover img,
.isPc .shareBox li img:hover {
  transform: scale(1.1);
  opacity: 0.85;
  filter: brightness(1.1);
}

/* PC端友情链接点击效果 */
.isPc .botBox dl dd a:active img,
.isPc .shareBox li img:active {
  transform: scale(0.98);
  opacity: 0.7;
}

/* 移动端友情链接悬浮效果 */
.isWap .botBox dl dd a:active img,
.isWap .shareBox li img:active {
  transform: scale(0.95);
  opacity: 0.8;
}


/* ==========================================================================
   画家介绍页 - ARTISTS PAGE
   Style: Bento Grid + Soft UI Evolution
   ========================================================================== */

.isPc .w1200.artists {
  padding-bottom: 60px;
}

/* 画家介绍页容器布局 */
.isPc .artist_info,
.isPc .artist_work {
  float: left;
}

/* 左侧画家信息卡片 - Bento风格 */
.isPc .artist_info {
  width: 280px;
  padding: 0;
  box-sizing: border-box;
}

/* 画家信息卡片容器 */
.isPc .artist_info_card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
  transition: all 0.25s ease;
}

.isPc .artist_info_card:hover {
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.isPc .artist_avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  background: #f5f5f5;
  border: 3px solid #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.isPc .artist_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.isPc .artist_name {
  font-weight: 500;
  width: 100%;
  height: 46px;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #fa6e14;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 40px;
}
.isPc .artist_name span {
  margin: 0 auto;
  display: block;
  width: 100px;
  height: 46px;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #fa6e14;
  border-bottom: 2px solid #fa6e14;
}

.isPc .artist_desc {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
  text-align: center;
}

.isPc .artist_desc p {
  margin: 0;
}

/* 右侧作品展示区域 */
.isPc .artist_work {
  width: calc(100% - 280px);
  background: transparent;
  padding: 0 0 0 32px;
  box-sizing: border-box;
}

.isPc .section_title {
  font-size: 20px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.isPc .work_gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* 作品卡片 - Soft UI Evolution */
.isPc .work_card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 2px 8px rgba(0, 0, 0, 0.02);
  border: 1px solid #f0f0f0;
  transition: all 0.25s ease;
  cursor: pointer;
}

.isPc .work_card:hover {
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
  border-color: #e8e8e8;
}

.isPc .work_img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f5f5f7;
}

.isPc .work_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.isPc .work_card:hover .work_img img {
  transform: scale(1.06);
}

.isPc .work_info {
  padding: 14px 16px 16px;
}

.isPc .work_date {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.isPc .work_title {
  font-size: 15px;
  color: #1d1d1f;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.isPc .work_title a,
.isPc .work_img a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.isPc .work_title a:hover {
  color: #fa6e14;
}

/* ==========================================================================
   移动端画家介绍页
   ========================================================================== */

.isWap .w1200.artists {
  padding-bottom: 0.6rem;
}

.isWap .artist_info {
  padding: 0.24rem;
}

/* 移动端画家信息卡片 */
.isWap .artist_info_card {
  background: #ffffff;
  border-radius: 0.24rem;
  padding: 0.4rem 0.3rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  margin-bottom: 0.24rem;
}

.isWap .artist_avatar {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 0.24rem;
  background: #f5f5f5;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.isWap .artist_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.isWap .artist_name {
  height: 46px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 20px;
}

.isWap .artist_name span {
  margin: 0 auto;
  display: block;
  width: 100px;
  height: 46px;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #fa6e14;
  border-bottom: 2px solid #fa6e14;
}

.isWap .artist_desc {
  font-size: 0.26rem;
  line-height: 1.6;
  color: #6b7280;
  text-align: center;
}

.isWap .artist_work {
  background: transparent;
  padding: 0 0.24rem;
  margin-top: 0.24rem;
}

.isWap .section_title {
  font-size: 0.32rem;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 0.2rem 0;
  letter-spacing: -0.01em;
}

.isWap .work_gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.16rem;
}

.isWap .work_card {
  background: #ffffff;
  border-radius: 0.2rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  transition: all 0.2s ease;
}

.isWap .work_card:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.isWap .work_img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f5f5f7;
}

.isWap .work_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.isWap .work_info {
  padding: 0.16rem 0.2rem 0.2rem;
}

.isWap .work_date {
  font-size: 0.22rem;
  color: #9ca3af;
  margin-bottom: 0.08rem;
  font-weight: 500;
}

.isWap .work_title {
  font-size: 0.28rem;
  color: #1d1d1f;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}

.isWap .work_title a,
.isWap .work_img a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.isWap .work_title a:active {
  color: #fa6e14;
}

/* 清除浮动 */
.isPc .w1200::after {
  content: "";
  display: table;
  clear: both;
}

/* ==========================================================================
   作品集加载状态样式
   ========================================================================== */

/* PC端加载状态 */
.isPc .work_loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 12px;
  color: #9ca3af;
  font-size: 14px;
}

.isPc .work_loading.hidden {
  display: none;
}

.isPc .loading-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #f3f4f6;
  border-top-color: #fa6e14;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.isPc .work_nodata,
.isPc .work_nomore,
.isPc .work_error {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #9ca3af;
  font-size: 15px;
}

.isPc .work_nodata span,
.isPc .work_nomore span,
.isPc .work_error span {
  padding: 12px 24px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
}

.isPc .work_error span {
  color: #ef4444;
  background: #fef2f2;
  border-color: #fecaca;
}

/* 移动端加载状态 */
.isWap .work_loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.3rem;
  gap: 0.12rem;
  color: #9ca3af;
  font-size: 0.26rem;
}

.isWap .work_loading.hidden {
  display: none;
}

.isWap .loading-spinner {
  width: 0.4rem;
  height: 0.4rem;
  border: 3px solid #f3f4f6;
  border-top-color: #fa6e14;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.isWap .work_nodata,
.isWap .work_nomore,
.isWap .work_error {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 0.3rem;
  color: #9ca3af;
  font-size: 0.28rem;
}

.isWap .work_nodata span,
.isWap .work_nomore span,
.isWap .work_error span {
  padding: 0.2rem 0.4rem;
  background: #f9fafb;
  border-radius: 0.15rem;
  border: 1px solid #f0f0f0;
}

.isWap .work_error span {
  color: #ef4444;
  background: #fef2f2;
  border-color: #fecaca;
}
