/* 全局样式 */
a {
  color: inherit; /* 继承父元素的颜色 */
  text-decoration: none; /* 去除下划线 */
  background-color: transparent; /* 去除背景色 */
  border: none; /* 去除边框 */
  padding: 0; /* 去除内边距 */
  margin: 0; /* 去除外边距 */
  font: inherit; /* 继承父元素的字体样式 */
  line-height: inherit; /* 继承父元素的行高 */
}

a:hover, a:active, a:visited {
  color: inherit; /* 继承父元素的颜色 */
  text-decoration: none; /* 去除下划线 */
}
/* 底部固定导航 */
.navbar-spacer{
    height: 60px;
}
.nav-bottom-style{
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  width: 100%;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}
.nav-bottom-style li{
  text-align: center;
  width: 120%;
  margin-top: 7px;
  font-size: 10px;
}
.nav-bottom-style li i{
  font-size: 17px;
}
.navbar-bottom .nav > li > a .icon {
  color: #7b7a7a; /* 浅色 */
}

/* 首页头部样式 */
.index-header{
  background: linear-gradient(to bottom, #79fa9b, #ffffff);
  height: 250px;
  width: 100%;
}
.header-common{
  background-color: #fff;
  height: 55px;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header-top{
  padding:10px 10px 5px 10px;
}

.header-top-left{
  display: flex;
  flex-direction: row;
}

.header-top-text{
  font-size: 17px;
  font-weight: bold;
  margin-top: 6px;
}

.header-top-bell{
  font-size: 18px;
  font-weight: 800;
}
.header-top-right{
    position: relative;
}
.header-top-right .label-badge {
    position: absolute; /* 绝对定位 */
    top: -4px; /* 向上移动 */
    left: 18px; /* 向右移动 */
    font-size:9px;
}
.header-top-right{
  margin-top: 8px;
  margin-left: -4px;
}

.header-logo{
  margin-right: 3px;
}
.header-top-middle{
  margin-top: 2px;
}
.header-search{
  background-color: #D4F5DD;
  border: #f2f2f2;
}
.index-banner{
  margin-top: 40px;
  padding:0 12px 10px 12px;
}
.index-banner-img{
  width: 100%;
  height: 120px !important;
  border-radius: 10px;
}


/* 自定义分类导航栏样式 */
.category-navbar {
    white-space: nowrap; /* 防止换行 */
    overflow-x: auto; /* 启用水平滚动 */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
/* 隐藏 WebKit 浏览器的滚动条 */
.category-navbar::-webkit-scrollbar {
    display: none;
}
.category-navbar .nav > li {
    display: inline-block;
}
.category-navbar .nav > li > a {
    padding: 10px 15px;
    color: #555;
    font-size: 14px;
}
.category-navbar .nav > li > a:hover {
    background-color: transparent;
    color: #000000;
    font-weight: bold;
}
.category-navbar-margin{
  margin-bottom: 5px;
}


/* 更多分类 */
.type-panel{
  width: 95%;
  margin-left: 10px;
}

.type-panel-body span.label{
  display: inline-block; /* 确保标签是块级显示 */
  margin-top: 5px; /* 上间距 */
  margin-bottom: 5px; /* 下间距 */
}




/* 资源列表样式 */
.content{
  margin-top: -10px;
}
.content-common{
  margin-top: 10px;
}
.card-list{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.card-list .card{
  width: 48%;
  margin-left: 1%;
}
.card-list .media-wrapper{
  height:206px;
  position: relative;
  display: inline-block;
}

.card-img-label{
  position:absolute;
  top:2%;
  left:2%;
}
.card-list .card-img{
  width:110%;
  height:110%;
  object-fit:cover;
}
.card-list .card-heading{
    display: -webkit-box; /* 必须结合 -webkit-line-clamp 使用 */
    -webkit-box-orient: vertical; /* 设置盒子的排列方式为垂直 */
    -webkit-line-clamp: 2; /* 限制显示的行数为两行 */
    overflow: hidden; /* 隐藏溢出内容 */
    text-overflow: ellipsis; /* 超出部分显示省略号 */
    margin: 0;
    padding-top: 2px;
    padding-right: 4px;
    padding-left: 6px;
    padding-bottom: 0px;
    white-space: normal; /* 允许文本正常换行 */
    line-height: 1.5em; /* 设置行高 */
    min-height: 4em; /* 设置最小高度，使其至少有两行文本的高度 */
}
.card-icon-text{
  font-size: 12px;
  color:#333333;
}
.card-info{
  display: flex;
  width: 100%;
  justify-content:space-between;
}
.card-info span:nth-child(2) {
  flex: 1;
  margin-top: 0px;
  margin-left: 6px;
}
.media-wrapper:hover img{
  transform: scale(1.1);
  transition: all 0.4s ease-in-out;
}
.card-icon-text {
  margin-right: 4px;
}
.card-img-file{
  width: 20px;
}
.card-hr{
  margin-bottom: 10px;
  margin-top: 10px;
}
.card-img-avatar{
  width: 20px;
  height: 20px;
}
.card-list .card{
  background-color: #fff;
}

/* 登录页面 */
.login-title{
  padding:30px 50px 10px 50px;
}
.login-title-h1{
  font-size: 27px;
  font-weight: 400;
}
.login-title-h2{
  font-size: 14px;
  color: #000000;
}
.login-qq-btn{
  margin-top: 20px;
  width: 250px;
  height: 40px;
  border-radius: 20px;
}
.login-wx-btn{
  width: 250px;
  height: 40px;
  border-radius: 20px;
}
.login-icon-qq{
   margin-right: 15px;
}
.login-icon-wx{
   margin-right: 15px;
}
.login-return-index{
   margin-top: 20px;
   font-weight: 400;
}

/* 选择分类页面 */
.category-title{
  font-size: 17px;
  font-weight: bold;
  color:#000000c8;
  margin-top: 50px;
}
.category-button{
  margin: 80px 10px 0px 20px;
}
.category-button span.label{
  font-size: 12px;
  padding:12px;
  display: inline-block; /* 确保标签是块级显示 */
  margin-top: 5px; /* 上间距 */
  margin-bottom: 5px; /* 下间距 */
  border-color: #a8a8a8;
  color:#1a1a1a;
}

/* 消息通知页面 */
.notications-h1{
  font-size: 21px;
  color:#e6e6e6;
}
.notications-item{
  display: flex;
  align-items: center;
  padding:15px 10px 10px 15px;
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 18px;
}

.notications-item-img{
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}
.notications-item-left{
  margin-right: 10px;
  width: 51px;
  height: 45px;
}
.notications-item-right{
  width: 100%;
}
.notications-item-right-top-name{
  font-size: 14px;
  font-weight: 600;
}
.notications-item-right-top-time{
  font-size: 12px;
  margin-right:27px;
}
.notications-item-right-top{
  display: flex;
  justify-content: space-between;
}
.notications-item-right-bottom{
  font-size:12px;
  margin-top:3px
}
.notications-panel{
  width: 95%;
  margin: 0 auto;
  border-bottom: 1px solid #ffffff;
  border-radius: 15px;
  background: linear-gradient(to right, #000000, #38c0c3);
}

/* 用户个人中心页面 */
.user-info-avatar{
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.user-info{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 30px;
}
.user-info-name-text{
  font-size: 28px;
  font-weight: bold;;
}
.user-info-name-appendtime{
  font-size: 16px;
  color: #999
}
.user-menu{
  font-size: 18px;
  font-weight: bold;
  padding:15px 20px 20px 20px;
}
.user-menu li{
  margin-bottom: 20px;
}
.user-menu-icon{
  font-size: 18px;
  margin-right: 30px;
}
.user-menu-icon-right{
  float: right;
  font-size: 17px;
  margin-top: 3px;
}

.user-data{
display: flex;
flex-direction: row;
justify-content: space-between;
margin:0 20px 0 20px;
flex-wrap:wrap;
}

.user-data-item{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 20.33%;

}

.user-data-title{
font-size:15px;
color:#f3f3f3

}

.user-data-text{
font-size: 23px;
font-weight: 600;
color:aliceblue
}
.user-panel{
width: 95%;
margin: 0 auto;
border-bottom: 1px solid #eee;
border-radius: 15px;
background: linear-gradient(to right, #6a5fe4, #49b0b2);
}

/* 编辑个人资料页面 */
.profile-avatar{
  width: 100px;
  height: 100px;
}
.profile-panel{
  width: 92%;
  margin: 0 auto;
  margin-top: 20px;
  border-radius: 15px;
}
.profile-page{
  background: linear-gradient(to bottom, #79fa9b, #ffffff);
  margin-top: -20px;
  height: 100vh;
  margin-bottom: 20px;
}
.profile-header{
  padding-top: 30px;
  padding-bottom: 10px;
}
.profile-header-title{
  font-size: 21px;
  color: #333;
  margin-bottom: 25px;
}

/* 订单列表页面 */
.order-title{
  font-size:20px;
  margin-bottom: 30px;
}
.order-panel{
  width: 95%;
  margin:0 auto;
  border-radius: 15px;
  margin-top: 10px;
}

.order-item-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.order-item-header-trade{
  font-size: 15px;
  font-weight: 400;
}
.order-item-header-status{
  font-size: 15px;
  margin-top: 5px;
}
.order-item-body{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: -10px;
}
.order-item-body-img{
  width: 85px;
  height: 100px;
  border-radius: 5px;
}
.order-page{
  height: 100vh;
  margin-bottom: 80px;
}

.order-item-header-time{
  font-size: 13px;
  color: #999;
}
.order-header-hr{
  margin-top: -2px;
}
.order-item-body-info{
  font-size: 15px;
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  height: 90px;
  align-items:space-around;
  justify-content:space-around;
}
.order-item-body-info-title{
  font-weight: bold;
}
.order-item-footer{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;      
}
.order-footer-hr{
  margin-bottom:9px;
}
.order-item-footer span.label{
  margin-right: 5px;
}

/* 空白信息页面 */
.empty-page{
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 150px;
}
.empty-page img{
  width: 120px;
  height: 100px;
}
.empty-page p{
  margin-top: 20px;
  font-size: 16px;
  color: #666;
}

/* 订单详情页面 */
.order-detail-panel{
  width: 97%;
  margin:10px auto;
  border-radius: 10px;
}
.order-detail-item{
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;;
}
.order-detail-h1{
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.order-detail-header-img{
  width: 30px;
  height:30px;
}
.order-detail-header{
  font-size: 13px;
  font-weight: bold;;
}
.order-detail-good{
  display: flex;
  flex-direction: row;
}
.order-detail-content-img img{
  width: 80px;
  height: 90px;
}
.order-detail-good-hr{
  margin-top: 10px;
}
.order-detail-content-info{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 10px;
  height: 80px;
}
.order-detail-title{
  padding-top: 20px;
  font-size: 18px;
  padding-bottom: 20px;;
}
.order-detail-btn{
  margin-top: 150px;
}



/* 订单联系商家页面 */
.contact-content{
  display:flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}
.contact-title{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.contact-wechat{
  width: 180px;
  height: 180px;
  margin-bottom: 20px;
}

.content-text1{
  font-size:14px;
  margin-bottom: 40px;
}
.content-text2{
  font-size:18px;
  margin-bottom: 20px;
}
.content-text3{
  font-size:18px;
  margin-bottom: 150px;
}

/* 订单投诉页面 */
.complaint-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 30px;
}
.complaint-alert{
  margin: 0 15px 0px 15px;
}

/* 用户收藏列表 */
.collect-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.collect-time{
  margin-top: -12px;
}

/* 用户关注页面 */
.star-item{
  display: flex;
  flex-direction: row;
  margin: 10px 10px 10px 15px;
}
.star-avatar{
  width:50px;
  height: 50px;;
}
.star-info{
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}
.star-info-name{
  font-size: 15px;
  font-weight: 600;
  margin-top: 3px;
}
.star-info-desc{
  font-size: 12px;
  color: #999;
  margin-top: -6px;
}
.star-btn{
  margin-left: auto;
  margin-right: 10px;
  margin-top: 5px;
}
.star-btn button{
  width: 70px;
  height: 30px;
  font-size: 12px;
  padding: 0px;
  border-radius: 5px;
}

/* 作者主页 */
.author-home-page-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 0 10px;
}
.author-home-page-header-title{
  font-size: 18px;
  font-weight: bold;
}
.author-home-page-header i{
  font-size: 20px
}
.author-home-page-content{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  justify-content: space-between;
}
.author-home-page-content-avatar{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 10px;
}
.author-home-page-content-avatar img{
  width: 100%;
  height: 100%;
}
.author-home-page-content-name{
  font-size: 18px;
  font-weight: bold;
  margin: 10px 10px;
  
}
.author-home-page-content-left{
  display: flex;
  flex-direction: row;
}
.author-home-info-count{
  display: flex;
  flex-direction: row;
  margin-top: 5%;
  justify-content:space-around;
}
.author-home-info-count-item{
  display: flex;
  flex-direction: column;
}
.author-home-info-count-title{
  font-size: 16px;
  text-align: center;

}
.author-home-info-count-text{
  font-size: 24px;
  margin-bottom: 3%;
  text-align: center;
}
.author-home-nav{
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 5%;
  margin-bottom: 5%;
}
.paper-detail-body {
    padding: 15px;
    word-wrap: break-word;
    word-break: break-all;
    max-width: 100%;
    overflow-x: hidden;
}

/* 资源详情样式 */
.paper-detail-body img {
    display: block; /* 确保图片块级排列 */
    margin-top: 20px; /* 上间距 */
    margin-bottom: 20px; /* 下间距 */
    max-width: 100%; /* 确保图片不超出容器宽度 */
    height: auto; /* 保持图片比例 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 添加阴影 */
    transition: box-shadow 0.3s ease; /* 增加过渡效果 */
}
.paper-detail-body table {
    max-width: 100%;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.paper-detail-body pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-x: auto;
}

.paper-detail-body img:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); /* 鼠标悬停时阴影增强 */
}
.detail-page {
    padding: 0 13px 20px 13px;
}
.detail-title{
    font-size:20px;
    font-weight: bold;
}
.detail-author-avatar{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
}
.detail-author{
    display:flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px
}
.detail-author-name{
    font-size:15px;
    font-weight: bold;
    margin-top: 7px;  
}
.detail-author-home{
   font-size:14px;
}
.detail-empty-comment{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.detail-space-div{
    margin-top:80px;
}
.detail-pay-items{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin:30px 20px 30px 20px;
}
.detail-pay-items-img{
    width: 60px;
    height: 60px;
}
.detail-pay-items-btn{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.detail-pay-items-btn p{
    font-size: 15px;
    margin-top:12px;
}
.vertical-divider {
    width: 1px; /* 竖线的宽度 */
    height: 80px; /* 竖线的高度 */
    background-color: #ddd; /* 竖线的颜色 */
    margin: 0 10px; /* 竖线的左右外边距 */
}
.paper-title-text-span{
  padding-right: 10px;
}
.paper-title-text{
 color:rgb(128, 128, 128);
 margin-bottom: 20px;
}
.paper-detail-body img{
    width: 100%;
    
}
.paper-detail-body p{
    word-wrap: break-word;
}
.paper-detail-body-bottom{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 180px;
}
.paper-detail-body-bottom p:nth-child(1){
    font-size: 16px;
    font-weight: bold;
}
.paper-detail-body-bottom p:nth-child(4){
    font-size: 14px;
    margin-top: 10px;
}
.detail-bottom-style{
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    width: 100%;
}
.detail-bottom-style li{
    text-align: center;
    width: 120%;
    margin-top: 7px;
    font-size: 12px;
    color: #b3b3b3;
}
.detail-bottom-icon{
    font-size: 30px;
    color:#353535;
}
.detail-bottom-btn{
    margin-right: 13px;
}
.detail-bottom-download-icon{
    font-size: 20px;
    color:#fff;
}

/*列表的空图标和分页*/
 .product-list-empty{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.product-list-empty img{
    width: 100px;
    height:70px;
    margin-top:45px;
}
.product-list-empty p{
    margin-top:30px;
}
.pagination-center{
    display: flex;
    justify-content: center;
    margin: 0 30px 0px 30px;
}

.author-home-page{
    margin-bottom: 40px;
}

/* 个人中心我的评论列表样式*/
.comment-item{
    display: flex;
    align-items: center;
    padding:8px 10px 10px 12px;
}
.comment-avatar{
    width:63px;
    height:63px;
}
.comment-paper{
    width: 60px;
    height: 80px;
    border-radius: 8px;
}
.comment-content{
    flex:1;
    padding-left:10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 3px;
}
.comment-name{
    font-size:15px;
    font-weight: bold;
    margin-bottom: 1px;
}
.comment-text{
    font-size:14px;
}
.comment-text-time{
    font-size:13px;
    margin-left: 10px;
}

/*------------- 手机端底部导航栏样式 开始 -------------*/
/* 为底部留出空间 */
.qz-mobile-navbar-spacer {
    height: 60px;
}

/* 底部导航容器 */
.qz-mobile-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -1px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 6px 0;
    border-top: 1px solid rgba(230, 230, 230, 0.7);
}

/* 导航项容器 */
.qz-mobile-navbar-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 单个导航项 */
.qz-mobile-navbar-item {
    flex: 1;
    text-align: center;
    transition: all 0.25s ease;
    position: relative;
}

/* 导航链接 */
.qz-mobile-navbar-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px 0;
    color: #9aa0a8;
    text-decoration: none;
    transition: all 0.25s ease;
}

.qz-mobile-navbar-link:hover, 
.qz-mobile-navbar-link:active {
    color: #4299e1; /* 蓝色替换原来的绿色 */
    text-decoration: none;
}

/* 活跃状态 */
.qz-mobile-navbar-link.active {
    color: #4299e1; /* 蓝色替换原来的绿色 */
}

/* 导航图标 */
.qz-mobile-navbar-icon {
    font-size: 26px; /* 增大图标尺寸 */
    margin-bottom: 1px;
    position: relative;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 图标上的徽章 */
.qz-mobile-navbar-badge {
    position: absolute;
    top: -5px;
    right: -9px;
    background-color: #f56565;
    color: white;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    line-height: 1;
    padding: 0 5px;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* 导航标签文字 */
.qz-mobile-navbar-label {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0;
}

/* 活跃项特效 */
.qz-mobile-navbar-item.active .qz-mobile-navbar-icon {
    transform: translateY(-2px);
}

/* 活跃标记 - 使用底部指示线代替圆点 */
.qz-mobile-navbar-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    border-radius: 4px;
    background-color: #4299e1; /* 蓝色替换原来的绿色 */
    transition: all 0.2s ease;
}

/* 点击涟漪效果 */
.qz-mobile-navbar-link:active .qz-mobile-navbar-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    margin-top: -18px;
    margin-left: -18px;
    background-color: rgba(66, 153, 225, 0.12); /* 蓝色替换原来的绿色，半透明 */
    border-radius: 50%;
    animation: qz-mobile-click-ripple 0.6s ease-out;
}

@keyframes qz-mobile-click-ripple {
    from {
        opacity: 1;
        transform: scale(0);
    }
    to {
        opacity: 0;
        transform: scale(2.5);
    }
}
/*------------- 手机端底部导航栏样式 结束 -------------*/

/*------------- 手机端订单投诉样式 开始 -------------*/
/* 投诉页面警告提示 */
.complaint-alert {
    margin: 10px;
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
    line-height: 1.5;
}

/* 图片上传区域容器 */
.qz-mobile-complaint-upload {
    margin: 12px 0 20px;
}

/* 图片上传网格布局 */
.qz-mobile-complaint-upload-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* 单个上传框 */
.qz-mobile-complaint-upload-item {
    width: 90px;
    height: 90px;
    position: relative;
    border-radius: 8px;
    border: 1px dashed #d1d5db;
    overflow: hidden;
}

/* 隐藏文件输入框 */
.qz-mobile-complaint-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

/* 上传按钮样式 */
.qz-mobile-complaint-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9fafb;
    color: #9ca3af;
    z-index: 1;
}

.qz-mobile-complaint-label i {
    font-size: 24px;
}

/* 图片预览区域 */
.qz-mobile-complaint-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
}

/* 删除按钮 */
.qz-mobile-complaint-remove {
    position: absolute;
    top: 0;
    right: 0;
    width: 22px;
    height: 22px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 0 0 0 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    padding: 0;
}

/* 帮助文本 */
.qz-mobile-complaint-help {
    font-size: 12px;
    color: #6b7280;
    margin-top: 8px;
    margin-bottom: 0;
}

/* 提交按钮 */
.qz-mobile-complaint-submit {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 8px;
    margin-top: 10px;
}

/* 加载动画 */
.qz-mobile-complaint-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: mobileSpinner 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes mobileSpinner {
    to {transform: rotate(360deg);}
}
/*------------- 手机端订单投诉样式 结束 -------------*/

/*------------- 手机端投诉详情页样式 开始 -------------*/
/* 投诉图片网格布局 */
.qz-mobile-complaint-images {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

/* 单个图片容器 */
.qz-mobile-complaint-image-item {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 1px solid #edf2f7;
}

/* 图片样式 */
.qz-mobile-complaint-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* 图片查看模态窗 */
.qz-mobile-complaint-image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* 查看大图的图片 */
.qz-mobile-complaint-image-modal-content {
    max-width: 95%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* 关闭按钮 */
.qz-mobile-complaint-image-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #f1f1f1;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

/* 禁止滚动 */
.qz-mobile-complaint-modal-open {
    overflow: hidden;
}
/*------------- 手机端投诉详情页样式 结束 -------------*/

/*------------- 手机端个人资料页样式 开始 -------------*/
.qz-mob-profile-container {
    background: linear-gradient(to bottom, #f8f9fa, #ebf4fd);
    min-height: calc(100vh - 60px);
    padding-bottom: 20px;
    position: relative;
}

/* 添加点缀背景元素 */
.qz-mob-profile-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.1), rgba(66, 153, 225, 0));
    z-index: 0;
}

/* 确保所有内容显示在背景上方 */
.qz-mob-profile-header,
.qz-mob-profile-avatar-section,
.qz-mob-profile-form-container {
    position: relative;
    z-index: 1;
}

/* 头部样式 */
.qz-mob-profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: relative;
}

.qz-mob-profile-back {
    font-size: 22px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.03);
}

.qz-mob-profile-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

/* 头像区域样式 */
.qz-mob-profile-avatar-section {
    position: relative;
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* 添加装饰背景 */
.qz-mob-profile-avatar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.15), rgba(49, 130, 206, 0.05));
    z-index: -1;
}

/* 添加点缀元素 */
.qz-mob-profile-avatar-section::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(66, 153, 225, 0.2) 0%, rgba(66, 153, 225, 0) 70%);
    z-index: -1;
}

/* 增强头像效果 */
.qz-mob-profile-avatar-wrapper {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(255, 255, 255, 0.8);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.qz-mob-profile-avatar-wrapper:active {
    transform: scale(0.97);
}

.qz-mob-profile-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.qz-mob-profile-avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.5);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.qz-mob-profile-avatar-overlay i {
    font-size: 24px;
    margin-bottom: 5px;
}

.qz-mob-profile-avatar-overlay span {
    font-size: 12px;
}

.qz-mob-profile-avatar-wrapper:hover .qz-mob-profile-avatar-overlay {
    opacity: 1;
}

.qz-mob-profile-avatar-input {
    display: none;
}

.qz-mob-profile-name {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #333;
}

.qz-mob-profile-badge {
    padding: 3px 10px;
    background-color: #4299e1;
    color: white;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* 表单区域添加微妙模糊效果 */
.qz-mob-profile-form-container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 20px 15px;
    margin: 0 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* 表单背景装饰 */
.qz-mob-profile-form-container::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(66, 153, 225, 0.08) 0%, rgba(66, 153, 225, 0) 70%);
    z-index: -1;
}

/* 表单字段样式 */
.qz-mob-profile-field {
    margin-bottom: 20px;
}

.qz-mob-profile-label {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.qz-mob-profile-label i {
    margin-right: 8px;
    font-size: 16px;
    color: #4299e1;
}

.qz-mob-profile-input,
.qz-mob-profile-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    font-size: 15px;
}

.qz-mob-profile-input:focus,
.qz-mob-profile-textarea:focus {
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
    outline: none;
    background-color: #fff;
}

.qz-mob-profile-textarea {
    resize: none;
    min-height: 100px;
}

/* 提交按钮样式 */
.qz-mob-profile-submit {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: #4299e1;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 2px 5px rgba(66, 153, 225, 0.2);
}

.qz-mob-profile-submit:hover {
    background-color: #3182ce;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(66, 153, 225, 0.25);
}

.qz-mob-profile-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(66, 153, 225, 0.2);
}

/* 头像更新动画 */
@keyframes avatarPulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.qz-mob-profile-avatar-updated {
    animation: avatarPulse 0.6s ease;
}
/*------------- 手机端个人资料页样式 结束 -------------*/

/*------------- 手机端分类页面样式 开始 -------------*/
.qz-mob-category-container {
    padding: 15px 12px 25px;
    background-color: #f8f9fa;
    min-height: calc(100vh - 120px);
}

/* 分类页面头部 */
.qz-mob-category-header {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px 0 15px;
    position: relative;
}

.qz-mob-category-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #4299e1, #63b3ed);
    border-radius: 2px;
}

.qz-mob-category-title {
    font-size: 22px;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 8px;
}

.qz-mob-category-subtitle {
    font-size: 14px;
    color: #718096;
    margin: 0;
    line-height: 1.4;
}

/* 分类网格布局 */
.qz-mob-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 5px 0;
}

/* 分类卡片 */
.qz-mob-category-item {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.qz-mob-category-item:active {
    transform: scale(0.97);
}

.qz-mob-category-card {
    background-color: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.qz-mob-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #4299e1, #63b3ed);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.qz-mob-category-item:hover .qz-mob-category-card::before {
    opacity: 1;
}

.qz-mob-category-icon {
    font-size: 32px;
    color: #4299e1;
    margin-bottom: 12px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qz-mob-category-name {
    font-size: 15px;
    font-weight: 500;
    color: #2d3748;
    text-align: center;
    margin-bottom: 6px;
}

.qz-mob-category-arrow {
    font-size: 16px;
    color: #a0aec0;
    margin-top: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.qz-mob-category-item:hover .qz-mob-category-arrow {
    color: #4299e1;
    opacity: 1;
    transform: translateX(2px);
}

/* 响应式布局 */
@media (min-width: 375px) {
    .qz-mob-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .qz-mob-category-card {
        padding: 18px;
    }
}

@media (min-width: 768px) {
    .qz-mob-category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* 适配小屏幕 */
@media (max-width: 320px) {
    .qz-mob-category-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .qz-mob-category-card {
        padding: 12px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .qz-mob-category-icon {
        margin-bottom: 0;
        margin-right: 10px;
        font-size: 24px;
        height: auto;
    }
    
    .qz-mob-category-name {
        margin-bottom: 0;
        flex: 1;
        text-align: left;
    }
}
/*------------- 手机端分类页面样式 结束 -------------*/

/*------------- 手机端搜索弹窗样式 开始 -------------*/
.qz-mob-search-modal {
    padding: 10px 5px 20px;
}

.qz-mob-search-form {
    display: flex;
    flex-direction: column;
}

/* 搜索输入框容器 */
.qz-mob-search-input-wrapper {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    background-color: #f1f5f9;
    border-radius: 12px;
    padding: 0 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.qz-mob-search-input-wrapper:focus-within {
    background-color: #fff;
    border-color: #4299e1;
    box-shadow: 0 1px 4px rgba(66, 153, 225, 0.15);
}

/* 搜索图标 */
.qz-mob-search-icon {
    color: #718096;
    font-size: 18px;
    margin-right: 10px;
}

/* 搜索输入框 */
.qz-mob-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 0;
    font-size: 16px;
    color: #2d3748;
    width: 100%;
    outline: none;
}

.qz-mob-search-input::placeholder {
    color: #a0aec0;
    font-size: 15px;
}

/* 清除按钮 */
.qz-mob-search-clear-btn {
    border: none;
    background: transparent;
    color: #a0aec0;
    padding: 5px;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.qz-mob-search-clear-btn:hover {
    opacity: 1;
}

/* 热门搜索区域 */
.qz-mob-search-popular {
    margin-bottom: 25px;
}

.qz-mob-search-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 10px;
    padding-left: 5px;
}

/* 热门标签 */
.qz-mob-search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 5px;
}

.qz-mob-search-tag {
    padding: 8px 12px;
    background-color: rgba(66, 153, 225, 0.08);
    color: #3182ce;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(66, 153, 225, 0.1);
}

.qz-mob-search-tag:hover, 
.qz-mob-search-tag:active {
    background-color: rgba(66, 153, 225, 0.15);
    transform: translateY(-1px);
}

/* 搜索按钮 */
.qz-mob-search-submit {
    background: linear-gradient(to right, #4299e1, #63b3ed);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(66, 153, 225, 0.2);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qz-mob-search-submit i {
    margin-right: 6px;
}

.qz-mob-search-submit:hover {
    box-shadow: 0 6px 14px rgba(66, 153, 225, 0.25);
    transform: translateY(-1px);
}

.qz-mob-search-submit:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(66, 153, 225, 0.2);
}

/* 适配模态框样式 */
.modal .qz-mob-search-modal {
    padding-top: 5px;
}

/* 针对小屏幕手机的优化 */
@media (max-width: 320px) {
    .qz-mob-search-tags {
        gap: 6px;
    }
    
    .qz-mob-search-tag {
        padding: 6px 10px;
        font-size: 12px;
    }
}
/*------------- 手机端搜索弹窗样式 结束 -------------*/

.login-agreement {
    font-size: 12px;
    color: #8a94a6;
    margin-top: 15px;
    padding: 0 20px;
    line-height: 1.5;
}

.login-agreement a {
    color: #4299e1;
    text-decoration: none;
}

.login-agreement a:hover {
    text-decoration: underline;
}

/*------------- 手机端文章页面样式 开始 -------------*/
.qz-mob-paper-container {
    position: relative;
    background-color: #f8fafc;
    min-height: calc(100vh - 60px);
}

/* 文章头部样式 */
.qz-mob-paper-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.qz-mob-paper-back {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.03);
}

.qz-mob-paper-title {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    text-align: center;
    color: #2d3748;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;
}

.qz-mob-paper-dropdown-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: all 0.2s ease;
}

.qz-mob-paper-dropdown-toggle:active {
    background-color: rgba(0, 0, 0, 0.08);
}

/* 下拉菜单样式 */
.qz-mob-paper-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    width: 80%;
    max-width: 300px;
    background-color: #ffffff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 90;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.qz-mob-paper-dropdown.open {
    opacity: 1;
    transform: translateY(0);
}

.qz-mob-paper-dropdown-header {
    padding: 15px;
    font-size: 15px;
    font-weight: 600;
    color: #4a5568;
    background-color: #f7fafc;
    border-bottom: 1px solid #edf2f7;
}

.qz-mob-paper-dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 60vh;
    overflow-y: auto;
}

.qz-mob-paper-dropdown-item {
    border-bottom: 1px solid #edf2f7;
}

.qz-mob-paper-dropdown-item a {
    display: block;
    padding: 12px 15px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.qz-mob-paper-dropdown-item.active a {
    color: #4299e1;
    background-color: rgba(66, 153, 225, 0.05);
    font-weight: 500;
}

.qz-mob-paper-dropdown-item a:hover,
.qz-mob-paper-dropdown-item a:active {
    background-color: #f7fafc;
}

/* 内容区域样式 */
.qz-mob-paper-content {
    padding: 15px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin: 12px;
}

.qz-mob-paper-body {
    line-height: 1.6;
    color: #4a5568;
}

/* 覆盖文章内容默认样式，确保在移动设备上正常显示 */
.qz-mob-paper-body h1,
.qz-mob-paper-body h2,
.qz-mob-paper-body h3,
.qz-mob-paper-body h4,
.qz-mob-paper-body h5,
.qz-mob-paper-body h6 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #2d3748;
    line-height: 1.3;
}

.qz-mob-paper-body h1 {
    font-size: 1.6em;
}

.qz-mob-paper-body h2 {
    font-size: 1.4em;
}

.qz-mob-paper-body h3 {
    font-size: 1.25em;
}

.qz-mob-paper-body p {
    margin-top: 0;
    margin-bottom: 1em;
}

.qz-mob-paper-body img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.qz-mob-paper-body ul,
.qz-mob-paper-body ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
}

.qz-mob-paper-body li {
    margin-bottom: 0.5em;
}

.qz-mob-paper-body a {
    color: #4299e1;
    text-decoration: none;
}

.qz-mob-paper-body a:hover {
    text-decoration: underline;
}

.qz-mob-paper-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1em;
    font-size: 0.9em;
}

.qz-mob-paper-body th,
.qz-mob-paper-body td {
    padding: 8px;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.qz-mob-paper-body th {
    background-color: #f7fafc;
    font-weight: 600;
}

/* 适配小屏幕 */
@media (max-width: 320px) {
    .qz-mob-paper-content {
        margin: 8px;
        padding: 12px;
    }
    
    .qz-mob-paper-title {
        font-size: 15px;
    }
    
    .qz-mob-paper-body {
        font-size: 14px;
    }
}
/*------------- 手机端文章页面样式 结束 -------------*/

/* 上传赚钱页面样式 - 使用earn-前缀确保样式唯一性 */
.earn-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.earn-highlight {
  color: #3280FC;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.earn-highlight::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  height: 8px;
  width: 100%;
  background-color: rgba(50, 128, 252, 0.2);
  z-index: -1;
}

/* 英雄区域 */
.earn-hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4edf9 100%);
  padding: 100px 0 80px;
  margin-bottom: 80px;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.earn-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(50, 128, 252, 0.05);
}

.earn-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(50, 128, 252, 0.03);
}

.earn-hero .earn-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.earn-hero-content {
  flex: 1;
  padding-right: 60px;
}

.earn-hero-image {
  flex: 1;
  text-align: center;
  position: relative;
}

.earn-hero-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(50, 128, 252, 0.1);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.earn-hero-image img {
  max-width: 90%;
  height: auto;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

.earn-hero h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.2;
}

.earn-hero p {
  font-size: 22px;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.5;
}

.earn-stats {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 40px;
  gap: 40px;
}

.earn-stat-item {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 15px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  min-width: 130px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.earn-stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.earn-stat-number {
  font-size: 28px;
  font-weight: bold;
  color: #3280FC;
  margin-bottom: 5px;
}

.earn-stat-text {
  font-size: 15px;
  color: #666;
}

.earn-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #3280FC 0%, #2c72e4 100%) !important; /* 恢复渐变背景并强制应用 */
  color: white !important;
  font-size: 18px;
  font-weight: bold;
  padding: 18px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(50, 128, 252, 0.4);
  border: none !important; /* 防止边框覆盖样式 */
}

.earn-cta-button:hover {
  background: linear-gradient(135deg, #2c72e4 0%, #1a64d6 100%) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(50, 128, 252, 0.6);
  color: white !important;
  text-decoration: none;
}

/* 确保按钮不受其他样式影响 */
.earn-cta-button:focus,
.earn-cta-button:active {
  color: white !important;
  outline: none !important; 
  text-decoration: none !important;
  background: linear-gradient(135deg, #2c72e4 0%, #1a64d6 100%) !important;
}

/* 图片样式 */
.earn-hero-image img {
  max-width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

/* 如何运作 */
.earn-how-it-works {
  padding: 80px 0;
  text-align: center;
  margin-bottom: 80px;
}

.earn-how-it-works h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #333;
}

.earn-steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
}

.earn-step {
  flex: 1;
  background: white;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.earn-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(50, 128, 252, 0.1);
}

.earn-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #3280FC, #2c72e4);
  border-radius: 0 0 24px 24px;
}

.earn-step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0f7ff 0%, #e4edf9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.earn-step-icon i {
  font-size: 36px;
  color: #3280FC;
}

.earn-step h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.earn-step p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* 收益展示 */
.earn-income-showcase {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9fafc 0%, #f0f7ff 100%);
  border-radius: 50px;
  margin-bottom: 80px;
}

.earn-income-showcase h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  color: #333;
}

.earn-showcases {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.earn-showcase-item {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.earn-showcase-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(50, 128, 252, 0.1);
}

.earn-showcase-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.earn-showcase-profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f0f7ff;
}

.earn-showcase-profile h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
  color: #333;
}

.earn-showcase-profile p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.earn-earnings {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin: 20px 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #e4edf9 100%);
  border-radius: 16px;
}

.earn-amount {
  font-size: 32px;
  font-weight: 700;
  color: #3280FC;
  margin-bottom: 5px;
}

.earn-period {
  font-size: 14px;
  color: #666;
}

.earn-quote {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  font-style: italic;
  position: relative;
  padding: 0 10px;
}

.earn-quote::before {
  content: '"';
  position: absolute;
  top: -15px;
  left: -5px;
  font-size: 40px;
  color: rgba(50, 128, 252, 0.2);
  font-family: Georgia, serif;
}

.earn-quote::after {
  content: '"';
  position: absolute;
  bottom: -35px;
  right: -5px;
  font-size: 40px;
  color: rgba(50, 128, 252, 0.2);
  font-family: Georgia, serif;
}

/* 实时收益滚动 */
.earn-live-earnings {
  padding: 60px 0;
  margin-bottom: 80px;
  text-align: center;
}

.earn-live-earnings h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

.earn-earnings-ticker {
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  overflow: hidden;
  position: relative;
}

.earn-earnings-ticker::before,
.earn-earnings-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.earn-earnings-ticker::before {
  left: 0;
  background: linear-gradient(90deg, white, transparent);
}

.earn-earnings-ticker::after {
  right: 0;
  background: linear-gradient(270deg, white, transparent);
}

.earn-ticker-wrapper {
  display: flex;
  animation: ticker-slide 30s linear infinite;
  padding: 10px 0;
}

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

.earn-ticker-item {
  display: flex;
  align-items: center;
  margin-right: 50px;
  background: linear-gradient(135deg, #f0f7ff 0%, #e4edf9 100%);
  padding: 15px 25px;
  border-radius: 100px;
  white-space: nowrap;
  min-width: 300px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.earn-ticker-item:last-child {
  margin-right: 50px; /* Ensure there's space after the last item */
}

.earn-user {
  font-weight: 600;
  color: #333;
  margin-right: 10px;
}

.earn-time {
  color: #888;
  font-size: 14px;
  margin-right: 10px;
}

.earn-action {
  color: #666;
  margin-right: 10px;
}

.earn-ticker-amount {
  font-weight: 700;
  color: #3280FC;
}

/* 用户评价 */
.earn-testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9fafc 0%, #f0f7ff 100%);
  border-radius: 50px;
  margin-bottom: 80px;
}

.earn-testimonials h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  color: #333;
}

.earn-testimonial-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.earn-testimonial {
  flex: 1;
  background: white;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.earn-testimonial:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(50, 128, 252, 0.1);
}

.earn-testimonial-content {
  padding: 35px 30px;
  position: relative;
}

.earn-testimonial-content::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  color: rgba(50, 128, 252, 0.1);
  font-family: Georgia, serif;
}

.earn-testimonial-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.earn-testimonial-author {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  background: linear-gradient(135deg, #f0f7ff 0%, #e4edf9 100%);
}

.earn-testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid white;
}

.earn-testimonial-author h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
  color: #333;
}

.earn-testimonial-author p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* 常见问题 */
.earn-faq {
  padding: 80px 0;
  margin-bottom: 80px;
}

.earn-faq h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  color: #333;
}

.earn-faq-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.earn-faq-item {
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.earn-faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(50, 128, 252, 0.1);
}

.earn-faq-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  position: relative;
  padding-left: 30px;
}

.earn-faq-item h3::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  font-weight: 700;
  color: #3280FC;
}

.earn-faq-item p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  position: relative;
  padding-left: 30px;
}

.earn-faq-item p::before {
  content: 'A';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  font-weight: 700;
  color: #61b045;
}

/* 行动号召 */
.earn-cta {
  background: linear-gradient(135deg, #3280FC 0%, #2c72e4 100%);
  padding: 80px 0;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 80px;
  box-shadow: 0 20px 50px rgba(50, 128, 252, 0.3);
  position: relative;
  overflow: hidden;
}

.earn-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.earn-cta::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.earn-cta h2 {
  font-size: 42px;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
}

.earn-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.earn-cta .earn-cta-button {
  background: white;
  color: #3280FC;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.earn-cta .earn-cta-button:hover {
  background: rgba(255,255,255,0.95);
  color: #3280FC;
}

/* 动画效果 */
@keyframes float {
  0% {
      transform: translateY(0px);
  }
  50% {
      transform: translateY(-15px);
  }
  100% {
      transform: translateY(0px);
  }
}

/* 修复滚动效果 */
.earn-ticker-wrapper {
  display: flex;
  animation: ticker-slide 30s linear infinite;
}

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

/* 响应式设计 */
@media (max-width: 992px) {
  .earn-hero {
      padding: 70px 0 60px;
  }

  .earn-hero .earn-container {
      flex-direction: column;
  }
  
  .earn-hero-content {
      padding-right: 0;
      margin-bottom: 50px;
      text-align: center;
  }
  
  .earn-hero h1 {
      font-size: 42px;
  }
  
  .earn-hero p {
      font-size: 18px;
  }
  
  .earn-stats {
      justify-content: center;
  }
  
  .earn-steps,
  .earn-showcases,
  .earn-testimonial-container {
      flex-direction: column;
  }
  
  .earn-step,
  .earn-showcase-item,
  .earn-testimonial {
      margin-bottom: 30px;
  }
  
  .earn-faq-items {
      grid-template-columns: 1fr;
  }
  
  .earn-how-it-works h2,
  .earn-income-showcase h2,
  .earn-live-earnings h2,
  .earn-testimonials h2,
  .earn-faq h2,
  .earn-cta h2 {
      font-size: 36px;
  }
}

@media (max-width: 576px) {
  .earn-hero {
      padding: 50px 0 40px;
      margin-bottom: 60px;
  }
  
  .earn-hero h1 {
      font-size: 32px;
  }
  
  .earn-hero p {
      font-size: 16px;
  }
  
  .earn-stats {
      flex-direction: column;
      align-items: center;
      gap: 20px;
  }
  
  .earn-stat-item {
      width: 100%;
  }
  
  .earn-cta-button {
      padding: 15px 30px;
      font-size: 16px;
  }
  
  .earn-how-it-works h2,
  .earn-income-showcase h2,
  .earn-live-earnings h2,
  .earn-testimonials h2,
  .earn-faq h2,
  .earn-cta h2 {
      font-size: 30px;
  }
  
  .earn-step,
  .earn-showcase-item,
  .earn-testimonial,
  .earn-faq-item {
      padding: 25px 20px;
  }
  
  .earn-step-icon {
      width: 60px;
      height: 60px;
  }
  
  .earn-step-icon i {
      font-size: 28px;
  }
  
  .earn-step h3 {
      font-size: 18px;
  }
  
  .earn-amount {
      font-size: 28px;
  }
  
  .earn-testimonial-content {
      padding: 25px 20px;
  }
  
  .earn-how-it-works,
  .earn-income-showcase,
  .earn-live-earnings,
  .earn-testimonials,
  .earn-faq,
  .earn-cta {
      padding: 60px 0;
      margin-bottom: 60px;
  }
}


/* 在文件的手机端分类页面样式部分添加或更新以下样式 */
.qz-mob-category-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

/* 添加分类图片样式 */
.qz-mob-category-icon .category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* 添加图片悬停效果 */
.qz-mob-category-icon .category-image:hover {
    transform: scale(1.05);
}

/* 更新图标样式以保持一致性 */
.qz-mob-category-icon i {
    font-size: 32px;
    color: #4299e1;
}

/* 确保卡片内容垂直居中 */
.qz-mob-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    height: 100%;
    min-height: 140px;
}

/* 分类图片样式 */
.qz-mob-category-icon .category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}