/* 瀑布流布局 - 现代科技风格 */
.ShowWaterFall {
    clear: both;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
}

@media screen and (min-width: 768px) {
    .ShowWaterFall {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 992px) {
    .ShowWaterFall {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ShowWaterFall .ListLi {
    width: 100%;
    float: none;
    perspective: 1000px;
}

.ShowWaterFall .ListLi .side {
    width: 100%;
    margin: 0 auto 20px auto;
    padding: 20px;
    border: 1px solid rgba(58, 125, 224, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.ShowWaterFall .ListLi .side:hover {
    transform: translateY(-10px) rotateX(5deg) translateZ(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 
                0 0 30px rgba(70, 130, 255, 0.3);
    border-color: rgba(58, 125, 224, 0.5);
}

.ShowWaterFall .ListLi .side h3 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2c5cc0;
}

.ShowWaterFall .ListLi .side h3 a {
    color: #ff7300;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #ff7300, #ff5500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ShowWaterFall .ListLi .side h3 a:hover {
    text-shadow: 0 0 10px rgba(255, 115, 0, 0.4);
}

.ShowWaterFall .ListLi .side div.img {
    width: 100%;
    text-align: center;
    overflow: hidden;
    padding-bottom: 15px;
    border-radius: 8px;
}

.ShowWaterFall .ListLi .side div.img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.ShowWaterFall .ListLi .side div.img img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.ShowWaterFall .ListLi .side p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.ShowWaterFall .ListLi .side dl dt {
    height: auto;
    line-height: 1.5;
    text-align: right;
    color: #777;
    font-size: 14px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(58, 125, 224, 0.2);
}

.ShowWaterFall .ListLi .side dl dd {
    border-top: 1px solid rgba(58, 125, 224, 0.2);
    background: rgba(240, 245, 255, 0.5);
    padding: 15px;
    height: auto;
    min-height: 60px;
    overflow: visible;
    line-height: 1.5;
    color: #666;
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
}

.ShowWaterFall .ListLi .side dl dd a {
    font-weight: 700;
    color: #ff7300;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ShowWaterFall .ListLi .side dl dd a:hover {
    color: #ff5500;
    text-shadow: 0 0 5px rgba(255, 115, 0, 0.3);
}

.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, #3a7de0 0%, #2c5cc0 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(70, 130, 255, 0.3);
}

.ShowWaterFall .ListLi .side dl dd em {
    font-style: normal;
    color: #3a7de0;
    padding: 0 5px;
    font-weight: 600;
}

/* 会员容器 */
.MemberCont {
    width: 100%;
    margin: 0 auto 25px auto;
    border: 1px solid rgba(58, 125, 224, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.MemberCont .head {
    height: auto;
    min-height: 50px;
    background: linear-gradient(90deg, rgba(58, 125, 224, 0.1) 0%, rgba(58, 125, 224, 0.05) 100%);
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.MemberCont .head .tag {
    float: none;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 700;
    color: #2c5cc0;
}

.MemberCont .cont {
    height: auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.MemberCont .cont a {
    display: block;
    width: 100%;
    height: auto;
    min-height: 50px;
    text-align: center;
    line-height: 50px;
    float: none;
    background: linear-gradient(135deg, #3a7de0 0%, #2c5cc0 100%);
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(70, 130, 255, 0.3);
}

.MemberCont .cont a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(70, 130, 255, 0.4);
}

.MemberCont .cont a.ck {
    background: linear-gradient(135deg, #ff7300 0%, #e56700 100%);
}

/* 发布微内容 */
.PostWei {
    width: 100%;
    margin: 25px auto;
    border: 1px solid rgba(58, 125, 224, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.PostWei .head {
    height: auto;
    min-height: 50px;
    background: linear-gradient(90deg, rgba(58, 125, 224, 0.1) 0%, rgba(58, 125, 224, 0.05) 100%);
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.PostWei .head:before {
    font-size: 24px;
    margin-right: 10px;
}

.PostWei .head .tag {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #2c5cc0;
}

.PostWei .cont {
    padding: 20px;
}

.PostWei .cont dl {
    clear: both;
    margin-bottom: 15px;
}

.PostWei .cont dl dt {
    width: 100%;
    line-height: 1.5;
    text-align: left;
    float: none;
    margin-bottom: 8px;
    color: #2c5cc0;
    font-weight: 600;
}

.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(58, 125, 224, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    resize: vertical;
    transition: all 0.3s ease;
    font-family: inherit;
}

.PostWei .cont dl dd textarea:focus {
    outline: none;
    border-color: #3a7de0;
    box-shadow: 0 0 15px rgba(70, 130, 255, 0.3);
}

.PostWei .cont dl dd input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(58, 125, 224, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.PostWei .cont dl dd input:focus {
    outline: none;
    border-color: #3a7de0;
    box-shadow: 0 0 15px rgba(70, 130, 255, 0.3);
}

.PostWei .cont .but {
    clear: both;
    padding: 10px 0 0 0;
    text-align: center;
}

.PostWei .cont .but input {
    border: 0;
    background: linear-gradient(135deg, #3a7de0 0%, #2c5cc0 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(70, 130, 255, 0.3);
}

.PostWei .cont .but input:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(70, 130, 255, 0.4);
}

/* 侧边内容 */
.SideConts {
    width: 100%;
    margin: 0 auto 25px auto;
    border: 1px solid rgba(58, 125, 224, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.SideConts .head {
    height: auto;
    min-height: 50px;
    background: linear-gradient(90deg, rgba(58, 125, 224, 0.1) 0%, rgba(58, 125, 224, 0.05) 100%);
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(58, 125, 224, 0.2);
}

.SideConts .head .tag {
    float: none;
    padding: 15px 0;
    font-weight: 700;
    font-size: 18px;
    color: #2c5cc0;
    display: flex;
    align-items: center;
}

.SideConts .head .tag:before {
    margin-right: 10px;
    font-size: 20px;
}

.SideConts .head .more {
    float: none;
    padding: 0;
}

.SideConts .head .more a {
    color: #3a7de0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.SideConts .head .more a:hover {
    color: #2c5cc0;
    text-shadow: 0 0 5px rgba(70, 130, 255, 0.3);
}

.SideConts td.cont {
    padding: 20px;
}

.SideConts td.cont div {
    height: auto;
    padding: 10px 15px;
    float: none;
    margin: 0 10px 10px 0;
    background: rgba(240, 245, 255, 0.5);
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.SideConts td.cont div:hover {
    background: rgba(240, 245, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.SideConts td.cont div a {
    display: inline;
    float: none;
    padding: 0;
    background: none;
    line-height: 1.5;
    white-space: nowrap;
    color: #3a7de0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.SideConts td.cont div a:hover {
    color: #2c5cc0;
    text-shadow: 0 0 5px rgba(70, 130, 255, 0.3);
}

.SideConts td.cont div.b {
    clear: none;
    background: rgba(58, 125, 224, 0.1);
}

.SideConts td.cont div.b a {
    font-weight: 700;
    color: #2c5cc0;
}

.SideConts div.cont {
    padding: 20px;
}

.SideConts div.cont .list {
    height: auto;
    min-height: 40px;
    overflow: visible;
    line-height: 1.5;
    padding: 10px 0 10px 30px;
    background: none;
    position: relative;
    border-bottom: 1px solid rgba(58, 125, 224, 0.1);
}

.SideConts div.cont .list:before {
    position: absolute;
    left: 0;
    top: 10px;
    color: #3a7de0;
}

.SideConts div.cont .list:last-child {
    border-bottom: none;
}

.SideConts div.cont .list a {
    color: #444;
    text-decoration: none;
    transition: all 0.2s ease;
}

.SideConts div.cont .list a:hover {
    color: #3a7de0;
    text-shadow: 0 0 5px rgba(70, 130, 255, 0.3);
}

/* 动作容器 */
.ActionCont {
    width: 60px;
    position: fixed;
    background: rgba(255, 255, 255, 0.9);
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(58, 125, 224, 0.2);
    transition: all 0.3s ease;
}

.ActionCont:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 
                0 0 20px rgba(70, 130, 255, 0.3);
}

.ActionCont a {
    display: block;
    padding: 70px 0 15px 0;
    text-align: center;
    line-height: 1.5;
    font-size: 14px;
    color: #3a7de0;
    text-decoration: none;
    outline: none;
    position: relative;
    font-weight: 600;
}

.ActionCont a:before {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3a7de0 0%, #2c5cc0 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(70, 130, 255, 0.3);
}

.ActionCont a:hover {
    background: transparent;
    color: #2c5cc0;
    text-decoration: none;
}

.ActionCont a:hover:before {
    background: linear-gradient(135deg, #2c5cc0 0%, #1e3c8c 100%);
    transform: translateX(-50%) translateY(-5px);
}

/* 分页样式 */
.ShowPage {
    padding: 30px 0;
    clear: both;
    text-align: center;
}

.ShowPage a {
    border: 1px solid rgba(58, 125, 224, 0.3);
    padding: 10px 15px;
    color: #3a7de0;
    text-decoration: none;
    margin: 0 5px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.ShowPage a:hover {
    background: linear-gradient(135deg, #3a7de0 0%, #2c5cc0 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(70, 130, 255, 0.3);
}

/* 加载中样式 */
.ShowLoading {
    clear: both;
    text-align: center;
    padding: 60px 0;
    color: #3a7de0;
    font-size: 20px;
    position: relative;
}

.ShowLoading:before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(58, 125, 224, 0.3);
    border-top: 3px solid #3a7de0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 主包装 */
.Mwarp {
    padding-top: 20px;
    background: linear-gradient(180deg, rgba(240, 245, 255, 0.5) 0%, transparent 100%);
}

/* 响应式设计 */
@media screen and (max-width: 767px) {
    .ShowWaterFall {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .MemberCont .cont {
        flex-direction: column;
    }
    
    .PostWei .cont dl dt {
        width: 100%;
    }
    
    .PostWei .cont dl dd {
        width: 100%;
    }
    
    .ActionCont {
        width: 50px;
        right: 10px;
        bottom: 10px;
    }
    
    .ActionCont a {
        padding: 60px 0 10px 0;
        font-size: 12px;
    }
    
    .ActionCont a:before {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}

/* 3D效果和动画 */
.ShowWaterFall .ListLi .side,
.MemberCont,
.PostWei,
.SideConts {
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ShowWaterFall .ListLi .side:hover,
.MemberCont:hover,
.PostWei:hover,
.SideConts:hover {
    transform: translateY(-5px) translateZ(10px);
}

/* 科技感渐变边框 */
.ShowWaterFall .ListLi .side:before,
.MemberCont:before,
.PostWei:before,
.SideConts:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(45deg, #ff073a, #7d0ab9, #3a86ff);
    border-radius: 14px;
    opacity: 0.3;
}

/* 霓虹光效 */
@keyframes neonGlow {
    0% { box-shadow: 0 0 5px rgba(70, 130, 255, 0.5); }
    50% { box-shadow: 0 0 20px rgba(70, 130, 255, 0.8), 0 0 30px rgba(70, 130, 255, 0.6); }
    100% { box-shadow: 0 0 5px rgba(70, 130, 255, 0.5); }
}

.ShowWaterFall .ListLi .side:hover,
.MemberCont:hover,
.PostWei:hover,
.SideConts:hover {
    animation: neonGlow 2s infinite;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(240, 245, 255, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3a7de0 0%, #2c5cc0 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2c5cc0 0%, #1e3c8c 100%);
}