a {
    text-decoration: none;
    color: inherit;
    
    background-color: transparent;
}

/*复制的liebiao3*/
.neirong {
    width: 1400px;
    min-height: 500px;
    background-color: #f8f8f8;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    gap: 20px;
}

.left-sidebar {
    width: 300px;
    background-color: white;
}

.tree-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 300px;
}

.tree-item {
    position: relative;
}

.tree-link {
    display: block;
    width: 245px;
    height: 40px;
    line-height: 40px;
    padding-left: 20px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    margin: 0 auto;
    transition: background-color 0.5s, color 0.1s;
    cursor: pointer;
    position: relative;
}

.tree-link::after {
    content: none;
}

.tree-item:has(.tree-child)>.tree-link::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #999;
    transition: transform 0.3s ease;
}

.tree-item.active:has(.tree-child)>.tree-link::after {
    transform: translateY(-50%) rotate(180deg);
}

.tree-link:hover {
    background-color: #E6F7FF;
    color: #1a73e8;
}

.tree-item.active>.tree-link {
    color: #1a73e8;
    font-weight: bold;
    background-color: #E6F7FF;
}

.tree-item.active>.tree-link:hover {
    background-color: #E6F7FF;
    color: #1a73e8;
}

.tree-child {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.tree-item:not(.active)>.tree-child {
    max-height: 0;
}

.tree-child li {
    position: relative;
}

.tree-child-link {
    display: block;
    width: 245px;
    height: 40px;
    line-height: 40px;
    padding-left: 45px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    margin: 0 auto;
    transition: background-color 0.5s, color 0.1s;
    cursor: pointer;
}

.tree-child-link:hover {
    background-color: #E6F7FF;
    color: #1a73e8;
}

.right-content {
    width: 1080px;
    background-color: white;
    display: flex;
    flex-direction: column;
}

.content-header {
    height: 50px;
    width: 1080px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    border-bottom: 1px solid #eee;
}

.breadcrumbs {
    font-size: 14px;
    color: #666;
}

.content-body {
    width: 1080px;
    min-height: 600px;
    line-height:2;
}
/*复制liebiao3结束*/


.content-body {
    padding: 20px;
}

.pdf-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 16px;
    position: relative;
}

.pdf-item:hover {
    background-color: #e9ecef;
}

.pdf-link {
    display: flex;
    align-items: center;
    flex: 1;
    text-decoration: none;
    color: inherit;
}

.pdf-icon {
    width: 56px;
    height: 56px;
    background-color: #ff6b35;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.pdf-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.pdf-info {
    display: flex;
    flex-direction: column;
}

.pdf-name {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    margin-bottom: 4px;
}

.pdf-size {
    font-size: 14px;
    color: #999;
}

.pdf-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pdf-item:hover .pdf-actions {
    opacity: 1;
}

.action-btn {
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

.action-btn:hover {
    color: #1a73e8;
}