/*首页 start*/
body {
    padding: 0 20px 20px 20px;
    background-color: #f8f9fb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.category {
    margin-bottom: 30px;
}

.category-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-title img {
    width: 20px;
    height: 20px;
}

.tool-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tool-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background-color: #fff;
    border-radius: 8px;
    transition: background 0.2s;
    cursor: pointer;
    font-size: 14px;
}

.tool-item:hover {
    background-color: #f0f7ff;
}

.tool-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

/*首页 stop*/



/*详情页start*/
.main-wrapper {
    max-width: 960px;
    margin: 20px auto;
    padding: 20px;
}

.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.card-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.tips {
    background: #f0f7ff;
    border-left: 5px solid #1e9fff;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    border-radius: 6px;
}

.file-list {
    margin-top: 20px;
}

.file-item {
    padding: 10px 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fafafa;
}

.file-name {
    font-weight: 600;
    color: #222;
}

.file-status {
    font-size: 13px;
    color: #888;
}

.card-title img{
    width: 20px;
    margin-bottom: 10px;
}
.state_clz{
    color: orange;
    font-weight: bold;
    display: inline-block;
    margin-left: 8px;
}
.state_ywc{
    color: #16a34a;
    font-weight: bold;
    display: inline-block;
    margin-left: 8px;
}
.state_sb{
    color: orangered;
    font-weight: bold;
    display: inline-block;
    margin-left: 8px;
}
#jindu{
    color: orangered;
    line-height: 30px;
    margin-top: 10px;
    font-weight: bold;
}
/*详情页 stop*/

.header-title{
    text-align: center;
    margin-bottom: 30px;
}
.grid-container a{
    text-decoration: none!important;
    color: #0C0C0C;
}