/* 瀑布流布局样式 - 未来科技风格 */
.ShowWaterFall {
  clear: both;
  margin-top: 30px;
  width:100%;

}

.ShowWaterFall .ListLi {
  width: 100%;
  float: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.ShowWaterFall .ListLi:hover {
  transform: translateY(-10px) rotateY(5deg) translateZ(15px);
}

.ShowWaterFall .ListLi .side {
  width: 100%;
  margin: 0 auto 20px auto;
  padding: 20px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 
              0 0 0 1px rgba(255, 255, 255, 0.8),
              inset 0 0 20px rgba(0, 200, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.ShowWaterFall .ListLi .side::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), transparent);
  animation: scanLine 4s linear infinite;
  z-index: 2;
}

.ShowWaterFall .ListLi .side:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 
              0 0 0 1px rgba(255, 255, 255, 0.9),
              inset 0 0 30px rgba(0, 200, 255, 0.15);
}

.ShowWaterFall .ListLi .side h3 {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 15px;
  font-weight: 700;
}

.ShowWaterFall .ListLi .side h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(0, 162, 255, 0.2);
}

.ShowWaterFall .ListLi .side h3 a:hover {
  color: var(--secondary-color);
  text-shadow: 0 0 8px rgba(126, 66, 255, 0.3);
}

.ShowWaterFall .ListLi .side div.img {
  width: 100%;
  text-align: center;
  overflow: hidden;
  padding-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  transform: perspective(600px) rotateY(-5deg);
}

.ShowWaterFall .ListLi .side div.img:hover {
  transform: perspective(600px) rotateY(0deg) scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), var(--neon-shadow);
}

.ShowWaterFall .ListLi .side p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 15px 0;
  font-size: 0.95rem;
}

.ShowWaterFall .ListLi .side dl dt {
  height: auto;
  line-height: 1.5;
  text-align: left;
  color: var(--text-secondary);
  margin-bottom: 10px;
  font-weight: 600;
}

.ShowWaterFall .ListLi .side dl dd {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(248, 248, 248, 0.7);
  padding: 15px;
  height: auto;
  overflow: visible;
  line-height: 1.6;
  color: var(--text-secondary);
  border-radius: 0 0 12px 12px;
  display: flex;
  align-items: center;
}

.ShowWaterFall .ListLi .side dl dd a {
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.ShowWaterFall .ListLi .side dl dd a:hover {
  color: var(--secondary-color);
  text-shadow: 0 0 5px rgba(126, 66, 255, 0.2);
}

.ShowWaterFall .ListLi .side dl dd span {
  display: block;
  float: none;
  width: 40px;
  height: 40px;
  overflow: hidden;
  text-align: center;
  margin-right: 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.ShowWaterFall .ListLi .side dl dd em {
  font-style: normal;
  color: var(--primary-color);
  padding: 0 5px;
  font-weight: 600;
}

/* 会员容器样式 */
.MemberCont {
  width: 100%;
  margin: auto;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 
              0 0 0 1px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.4s ease;
}

.MemberCont:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 
              0 0 0 1px rgba(255, 255, 255, 0.9);
  transform: translateY(-5px);
}

.MemberCont .head {
  height: auto;
  min-height: 50px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  padding: 15px 20px;
  display: flex;
  align-items: center;
}

.MemberCont .head .tag {
  float: none;
  padding: 0;
  font-size: 1.2rem;
  color: white;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.MemberCont .cont {
  height: auto;
  padding: 25px 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.MemberCont .cont a {
  display: flex;
  width: 130px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  float: none;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  font-size: 1.1rem;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.MemberCont .cont a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: all 0.5s ease;
}

.MemberCont .cont a:hover::before {
  left: 100%;
}

.MemberCont .cont a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.MemberCont .cont a.ck {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* 发布微内容样式 */
.PostWei {
  width: 100%;
  margin: 25px auto;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 
              0 0 0 1px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.4s ease;
}

.PostWei:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 
              0 0 0 1px rgba(255, 255, 255, 0.9);
  transform: translateY(-5px);
}

.PostWei .head {
  height: auto;
  min-height: 60px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.PostWei .head::after {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.PostWei .head .tag {
  display: none;
}

.PostWei .cont {
  padding: 25px 20px;
}

.PostWei .cont dl {
  clear: both;
  margin-bottom: 20px;
}

.PostWei .cont dl dt {
  width: 100%;
  line-height: 1.5;
  text-align: left;
  float: none;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-primary);
}

.PostWei .cont dl dd {
  width: 100%;
  float: none;
  overflow: visible;
  padding-top: 0;
}

.PostWei .cont dl dd textarea {
  width: 100%;
  height: 120px;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  resize: vertical;
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 1rem;
}

.PostWei .cont dl dd textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(0, 162, 255, 0.2);
}

.PostWei .cont dl dd input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 1rem;
}

.PostWei .cont dl dd input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(0, 162, 255, 0.2);
}

.PostWei .cont .but {
  clear: both;
  padding: 0;
  text-align: center;
}

.PostWei .cont .but input {
  border: none;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.PostWei .cont .but input:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* 侧边内容容器样式 */
.SideConts {
  width: 100%;
  margin: 0 auto 25px auto;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 
              0 0 0 1px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.4s ease;
}

.SideConts:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 
              0 0 0 1px rgba(255, 255, 255, 0.9);
  transform: translateY(-5px);
}

.SideConts .head {
  height: auto;
  min-height: 60px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.SideConts .head::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.SideConts .head .tag {
  float: none;
  padding: 0;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.SideConts .head .more {
  float: none;
  padding: 0;
}

.SideConts .head .more a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.SideConts .head .more a:hover {
  opacity: 1;
  text-decoration: underline;
}

.SideConts td.cont {
  padding: 25px 20px;
}

.SideConts td.cont div {
  height: auto;
  padding: 0;
  float:left;
  margin-right: 0;
  margin-bottom: 15px;
  background: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.SideConts td.cont div a {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(248, 248, 248, 0.8);
  border-radius: 20px;
  line-height: 1.5;
  white-space: nowrap;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.SideConts td.cont div a:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.SideConts td.cont div.b {
  clear: both;
}

.SideConts td.cont div.b a {
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.SideConts div.cont {
  padding: 25px 20px;
}

.SideConts div.cont .list {
  height: auto;
  overflow: visible;
  line-height: 1.6;
  padding: 12px 0 12px 35px;
  background: none;
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.SideConts div.cont .list:last-child {
  border-bottom: none;
}

.SideConts div.cont .list::before {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 0.8rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.SideConts div.cont .list:hover {
  padding-left: 40px;
  background: rgba(0, 162, 255, 0.05);
  border-radius: 8px;
}

.SideConts div.cont .list:hover::before {
  opacity: 1;
  left: 20px;
  color: var(--secondary-color);
}

/* 动作容器样式 */
.ActionCont {
  width: 70px;
  position: fixed;
  background: none;
  right: 30px;
  bottom: 30px;
  z-index: 1000;
  perspective: 1000px;
}

.ActionCont a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
  line-height: 1.5;
  font-size: 0.9rem;
  color: var(--text-primary);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  width: 70px;
  height: 70px;
}

.ActionCont a::before {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.ActionCont a:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  transform: translateY(-5px) rotate(5deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 15px var(--primary-color);
}

/* 分页样式 */
.ShowPage {
  padding: 30px 0 40px 0;
  clear: both;
  text-align: center;
}

.ShowPage a {
  border: none;
  padding: 10px 18px;
  color: var(--text-primary);
  text-decoration: none;
  margin: 0 5px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.ShowPage a:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 加载样式 */
.ShowLoading {
  clear: both;
  text-align: center;
  padding: 50px 0;
  color: var(--text-secondary);
  font-size: 1.5rem;
  position: relative;
}

.ShowLoading::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 3px solid rgba(0, 162, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s ease-in-out infinite;
  margin-left: 15px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* 主容器包裹样式 */
.Mwarp {
  padding-top: 25px;
  background: linear-gradient(to bottom, rgba(0, 162, 255, 0.05), transparent);
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .ShowWaterFall {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 992px) {
  .ShowWaterFall {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .ShowWaterFall {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    gap: 15px;
  }
  
  .MemberCont .cont {
    flex-direction: column;
    align-items: center;
  }
  
  .MemberCont .cont a {
    width: 100%;
    max-width: 200px;
  }
  
  .ActionCont {
    right: 15px;
    bottom: 15px;
  }
  
  .ActionCont a {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 576px) {
  .ShowPage a {
    padding: 8px 12px;
    margin: 0 2px;
  }
}