/* 基础重置和全局样式 */
body {
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #333;
  background-color: #f5f7fa;
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* 导航路径样式 */
.nav {
  padding: 15px 0;
  font-size: 14px;
  color: #999;
}

.nav a {
  color: #666;
  text-decoration: none;
}

.nav a:hover {
  color: #1890ff;
}

.nav span {
  margin: 0 5px;
}

.nav .on {
  color: #1890ff;
}

/* 筛选条件区域 */
.condition {
  background: #fff;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.c_group {
  display: flex;
  margin-bottom: 10px;
}

.c_group:last-child {
  margin-bottom: 0;
}

.c_group_title {
  width: 80px;
  font-size: 14px;
  color: #666;
  line-height: 32px;
}

.c_group_items {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}

.span_item {
  display: inline-block;
  padding: 5px 15px;
  margin-right: 10px;
  margin-bottom: 5px;
  font-size: 14px;
  color: #666;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.span_item:hover {
  background: #f0f7ff;
  color: #1890ff;
}

.span_item.on {
  
}

/* 会员列表样式 */
.member_list {
  background: #fff;
  border-radius: 4px;
  padding: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.member_list .items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.member_list .item {
  width: 25%;
  padding: 10px;
  box-sizing: border-box;
}

.member_list .itembox {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.member_list .itembox:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member_list .avatar {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background: #f5f7fa;
}

.member_list .avatar img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.member_list .avatar:hover img {
  transform: scale(1.05);
}

.member_list .auth-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.member_list .auth-badge .icon {
  color: #1890ff;
  font-size: 12px;
}

.member_list .maininfo {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.member_list .name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.member_list .name a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member_list .name a:hover {
  color: #1890ff;
}

.member_list .sex-male {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #1890ff;
  border-radius: 50%;
  margin-left: 5px;
  position: relative;
}

.member_list .sex-male::after {
  content: "♂";
  color: white;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.member_list .sex-female {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #ff4d9a;
  border-radius: 50%;
  margin-left: 5px;
  position: relative;
}

.member_list .sex-female::after {
  content: "♀";
  color: white;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.member_list .dec {
  margin-bottom: 10px;
  font-size: 13px;
  color: #666;
  flex: 1;
}

.member_list .dec_item {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 5px;
}

.member_list .stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 12px;
}

.member_list .stat-item {
  color: #666;
  text-align: center;
  flex: 1;
}

.member_list .location {
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
}

.member_list .location .icon {
  margin-right: 3px;
  font-size: 14px;
}

/* 分页样式 */
.page {
  padding: 20px 0;
  text-align: center;
}

.page ul {
  display: inline-block;
  padding-left: 0;
  margin: 0;
}

.page li {
  display: inline;
  margin: 0 5px;
}

.page li a, .page li span {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #666;
}

.page li a:hover {
  background: #f5f5f5;
}

.page li.active span {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}

/* 无结果样式 */
.noresult {
  padding: 50px 0;
  text-align: center;
}

.noresult img {
  width: 120px;
  opacity: 0.6;
  margin-bottom: 15px;
}

.noresult p {
  color: #999;
  font-size: 16px;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .member_list .item {
    width: 33.333%;
  }
}

@media (max-width: 768px) {
  .member_list .item {
    width: 50%;
  }
  
  .c_group {
    flex-direction: column;
  }
  
  .c_group_title {
    width: 100%;
    margin-bottom: 5px;
  }
}

@media (max-width: 576px) {
  .member_list .item {
    width: 100%;
  }
}




/* 基础样式重置 */
body {
  font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  background-color: #f8f9fa;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* 导航路径样式 */
.nav {
  padding: 20px 0;
  font-size: 14px;
  color: #999;
  display: flex;
  align-items: center;
}

.nav a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.nav a:hover {
  color: #4361ee;
}

.nav span {
  margin: 0 8px;
  color: #ccc;
}

.nav .on {
  color: #4361ee;
  font-weight: 500;
}

/* 用户详情主容器 */
.member_show {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  margin-bottom: 30px;
}

/* 顶部用户信息区域 */
.top_page {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

/* 头像样式 */
.avatar_wrap {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  background: #f1f3f5;
  transition: transform 0.3s;
}

.avatar_wrap:hover {
  transform: scale(1.05);
}

.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 实名认证徽章 */
.auth-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 28px;
  height: 28px;
  background: #4361ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 2px solid white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.auth-badge .icon {
  font-size: 14px;
}

/* 用户昵称 */
.name {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #212529;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 性别标识 */
.sex-male {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: #4361ee;
  border-radius: 50%;
  margin-left: 8px;
  position: relative;
}

.sex-male::after {
  content: "♂";
  color: white;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sex-female {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: #f72585;
  border-radius: 50%;
  margin-left: 8px;
  position: relative;
}

.sex-female::after {
  content: "♀";
  color: white;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 用户类型标签 */
.types {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 10px;
}

.type {
  background: rgba(67, 97, 238, 0.1);
  color: #4361ee;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
}

.type .icon {
  margin-right: 5px;
  font-size: 14px;
}

/* 统计数据 */
.stats {
  display: flex;
  justify-content: center;
  margin: 25px 0;
  gap: 30px;
}

.stat-item {
  text-align: center;
  cursor: default;
  transition: transform 0.3s;
}

.stat-item:hover {
  transform: translateY(-3px);
}

.num {
  font-size: 24px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 5px;
}

.label {
  font-size: 13px;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 操作按钮 */
.actions {
  margin-top: 20px;
}

.btn.follow {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: #4361ee;
  color: white;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(67, 97, 238, 0.3);
}

.btn.follow:hover {
  background: #3a56d4;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(67, 97, 238, 0.4);
}

.btn.follow .iconfont {
  margin-right: 8px;
  font-size: 16px;
}

.btn.follow .on {
  color: #ffd700;
}

/* 内容区块 */
.pagebox {
  padding: 30px;
  border-bottom: 1px solid #f1f3f5;
}

.pagebox:last-child {
  border-bottom: none;
}

.stitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #212529;
  position: relative;
  padding-left: 15px;
}

.stitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  height: 18px;
  width: 4px;
  background: #4361ee;
  border-radius: 2px;
}

/* 个人介绍 */
.bd {
  font-size: 15px;
  line-height: 1.8;
  color: #495057;
}

.bd p {
  margin-bottom: 15px;
}

/* 文章列表 */
.post_list .items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.post_list .item {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s;
  border: 1px solid #f1f3f5;
}

.post_list .item:hover {
  border-color: #dee2e6;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.post_list .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.post_list .title {
  font-size: 16px;
  font-weight: 500;
  color: #212529;
}

.post_list .title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.post_list .title a:hover {
  color: #4361ee;
}

.post_list .time {
  font-size: 13px;
  color: #adb5bd;
}

/* 无内容提示 */
.no-content {
  text-align: center;
  padding: 40px 0;
  color: #adb5bd;
  font-size: 15px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .top_page {
    padding: 30px 15px;
  }
  
  .name {
    font-size: 24px;
  }
  
  .stats {
    gap: 20px;
  }
  
  .num {
    font-size: 20px;
  }
  
  .pagebox {
    padding: 20px 15px;
  }
}

@media (max-width: 576px) {
  .avatar_wrap {
    width: 100px;
    height: 100px;
  }
  
  .name {
    font-size: 22px;
  }
  
  .stats {
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .stat-item {
    width: calc(50% - 15px);
  }
  
  .btn.follow {
    padding: 8px 20px;
    font-size: 14px;
  }
}


