.search {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 15px 0;
    margin-bottom: 15px;
}

.search_input {
    height: 40px;
    line-height: 40px;
    padding: 0 5px;
    border: 2px solid #1e90ff;
    border-right: 0;
    border-radius: 5px 0 0 5px;
    flex: 1;
}

.search-btn {
    width: 40px;
    height: 40px;
    background: #1e90ff;
    border-radius: 0 5px 5px 0;
    color: #fff;
    border: 0;
    cursor: pointer;
}

.wens .record-item {
    gap: 10px;
    margin: 0;
    flex-wrap: wrap;
    justify-content: normal;
}

.record-item a {
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.record-item a:hover {
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.wens .record-item a {
    width: calc(50% - 5px);
    border: 1px solid #ddd;
    border-radius: 4px;
}

.wens .record-item a img {
    width: 100%;
    height: auto;
    display: block;
}

.member-tab-row {
    gap: 5px;
    margin: 0;
    flex-wrap: wrap;
    justify-content: normal;
}

.member-tab-grid {
    flex: unset;
    width: calc(50% - 5px);
}

.member-tab-grids {
    flex: unset;
    width: calc(100% - 1px);
    padding: 10px 25px;
    cursor: pointer;
    font-size: 16px;
    background-color: #f5f5f5;
    color: #333;
    border-radius: 4px;
    transition: all 0.3s;
}

.imginfo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(255 255 255);
    color: #000;
    padding: 2px 6px;
}

.imginfo p {
    display: flex;
    gap: 10px;
}

.preview-areas {
    flex: 1;
    margin: 20px;
}

.preview-aread {
    flex: 1;
    background-color: #f9f9f9;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: auto;
    gap: 30px;
}

.lbimg {
    height: auto;
    width: 100%;
}

.catmod {
    display: flex;
    gap: 30px;
}

.catmod h3 {
    display: flex;
    gap: 5px;
    align-items: center;
}

.catbm {
    flex: 1;
}

.catbm ul {
    display: flex;
    flex-wrap: wrap;
}

.catbm ul li {
    padding: 0 15px;
}

.special ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.special ul li {
    max-width: calc(20% - 15px);
}

.special ul li img {
    width: 100%;
}

.sucaiku ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.sucaiku ul li {
    max-width: calc(20% - 15px);
    width: calc(20% - 15px);
    height: 0;
    padding-bottom: calc(20% - 15px);
    position: relative;
    overflow: hidden;
}

.sucaiku ul li a {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, #e0e0e0 25%, transparent 25%), 
                      linear-gradient(-45deg, #e0e0e0 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #e0e0e0 75%), 
                      linear-gradient(-45deg, transparent 75%, #e0e0e0 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
}

.sucaiku ul li img {
    width: 100%;
}

.sucaibar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .special {
        display: none;
    }

    .tab-content.active {
        display: flex;
        gap: 5px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-content a {
        width: calc(50% - 5px);
    }

    .home-image {
        margin-bottom: 0;
    }

    .sucaiku ul li {
        max-width: calc(50% - 15px);
        width: calc(50% - 15px);
        height: 0;
        padding-bottom: calc(50% - 15px);
        position: relative;
        overflow: hidden;
    }

    .sucaiku ul {
        justify-content: center;
    }
}

/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    h1 {
        font-size: 2rem;
    }
}

/* 主区域布局 */
.main-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .main-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 区域样式 */
.section {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.section-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

/* 图标网格布局 */
.icon-grid {
    display: grid;
    gap: 1rem;
}

@media (max-width: 639px) {
    .icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 图标项样式 */
.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0; /* 灰色背景 */
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.icon-item:hover {
    background-color: #e0e0e0; /* 悬停时略深的灰色 */
}

.icon-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.icon-item span {
    font-size: 0.875rem;
    text-align: center;
}

.main-section {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
}

.icon-to-ico::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/ico-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-to-pdf::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/pdf-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-to-png::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/png-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-to-jpg::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/jpg-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-to-gif::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/gif-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-to-bmp::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/bmp-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-to-chicun::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/chicun-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-to-caijian::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/caijian-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-to-xuanzhuan::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/xuanzhuan-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-ai-koutu::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/koutu-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-ai-hua::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/hua-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-ai-shuiyin::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/shuiyin-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-ai-logo::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/logo-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-ai-bian::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/bian-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-ai-xiangao::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/xiangao-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-ai-manhua::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/manhua-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-ai-photo::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/photo-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-ai-shitu::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/shitu-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-ai-bian::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/bian-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-ai-photo::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/photo-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-art-donghua::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/donghua-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-art-yuansu::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/yuansu-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-art-yishuzi::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/yishuzi-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-art-tubiao::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/tubiao-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-art-shuiguo::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/shuiguo-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-art-donghua::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/donghua-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-art-bizhi::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/bizhi-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-art-sjbizhi::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/sjbizhi-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-art-beijing::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/beijing-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

.icon-art-xiangao::before {
    content: ""; /* 必须保留空内容，伪元素才能显示 */
    display: inline-block; /* 让伪元素可设置宽高 */
    width: 32px;
    height: 32px;
    background-image: url("/static/img/xiangao-x.png"); /* 图片路径 */
    background-size: contain; /* 保持图片比例，完整显示 */
    background-repeat: no-repeat; /* 防止图片重复 */
    background-position: center; /* 图片居中显示 */
    vertical-align: middle;
}

