.bzzwroot .rootleft {
    background: #f6f7f9;
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 100;
    width: 195px;
    border-right: 1px solid #e5e5e5;
}
.bzzwroot .rootleft ul {
    margin-left: 22px;
    list-style: none;
}
.bzzwroot .rootleft ul li {
    line-height: 46px;
    font-size: 17px;
    cursor: pointer;
}
.bzzwroot .rootleft ul li a {
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.bzzwroot .rootleft ul li a span{
    padding-right: 10px;
}
.bzzwroot .rootleft ul li img {
    width: 20px;
    margin-right: 8px;
}
.bzzwroot .rootleft ul li .torylist {
    margin-left: 24px;
   overflow: hidden;
    transition: max-height 0.3s ease;
    height: 550px;

}
/*.bzzwroot .rootleft ul li:hover .torylist {
    max-height: 200px;
}*/
.bzzwroot .rootleft ul li .torylist a {
    display: block;
    color: #6a6a6a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    width: 135px;
}
.bzzwroot .rootleft ul li .torylist a:hover {
    color: #436cd5;
}
.bzzwroot .rootleft ul li .torylist .btn {
    margin-top: 14px;
}
.bzzwroot .rootleft ul li .torylist .btn a {
    display: block;
    width: 80px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    background-color: #dee0df;
    font-size: 14px;
    border-radius: 8px;
    color: #000;
}
.bzzwroot .rootleft ul li .torylist .active {
    color: #436cd5!important;
}
.bzzwroot .rootleft ul li .torylist .btn a:hover {
    background-color: #436cd5;
    color: white;
}

.feedback-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 603px;
    min-height: 486px;
    max-width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);


    /* 弹窗居中的关键CSS */
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-size: 15px;
}
.modal-content h2{
    font-size: 24px;
    color: #436cd5;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
}

.close-modal:hover {
    color: #333;
}

.form-group {
    margin-bottom: 15px;
    margin-top: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #575555;
}

textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    min-height: 300px;
}

input[type="file"] {
    margin-top: 5px;
}

.submit-button {
    background-color: #609cec;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

.submit-button:hover {
    background-color: #3c84e5;
}
/* 适配不同浏览器的文件输入框按钮样式 */
input[type="file"]::-webkit-file-upload-button {
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    margin-right: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="file"]::-webkit-file-upload-button:hover {
    background-color: #3367d6;
}

/* 适配Firefox */
input[type="file"]::file-selector-button {
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    margin-right: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="file"]::file-selector-button:hover {
    background-color: #3367d6;
}