/* 栏目左右结构布局 */
.column {
    /* display: flex; */
    /* justify-content: center;
    align-items: center; */
    /* gap: 10px; */
}

.column-left {
    border: 1px #dddddd solid;
    min-height: 420px;
    float: left;
    width: 19%;
    box-sizing: border-box;
    background-color: #fff;
}

.column-left .tree-herder {
    width: 100%;
    background-color: #be2e2e;
    padding: 5px 15px 5px 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.column-left .tree-herder a {
    font-weight: bolder;
    font-size: 15px;
    background: transparent;
    text-decoration: none;
    color: #fff;
}

.column-right {
    border: 1px #dddddd solid;
    padding: 10px 20px;
    float: right;
    width: 80%;
    box-sizing: border-box;
    min-height: 420px;
    background-color: #fff;
}

.column-right ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.column-right .column-right-list li {
    border-bottom: 1px #999999 dashed;
    /*line-height: 38px;*/
    padding:10px 0 ;
    /* padding-left: 20px;
    background: url(../Images/list_a.jpg) no-repeat 5px center; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.column-right ul li p {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    max-width: 93%;
}

.column-right ul li p img {
    padding: 0 10px;
}

.column-right ul li a {
    background: transparent;
    text-decoration: none;
    color: #555555;
    /*width: 95%;*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.column-right ul li a:hover {
    color: #555555;
    text-decoration: underline;
}

.column-right>div {
    text-align: right;
    padding: 10px;
}





/* 栏目列表布局 */

.column-list{
    border: 1px #dddddd solid;
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
    min-height: 420px;
    margin: 10px 0;
    
}
.column-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.column-list .column-list-ul li {
    border-bottom: 1px #999999 dashed;
    /*line-height: 38px;*/
    padding: 10px 0;
    /* padding-left: 20px;
    background: url(../Images/list_a.jpg) no-repeat 5px center; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.column-list ul li p {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    width: 93%;
}

/*.column-list ul li p img {*/
    /*padding: 0 10px;*/
/*}*/

.column-list ul li a {
    background: transparent;
    text-decoration: none;
    color: #555555;
    /*width: 95%;*/
    /*flex: 1;*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.column-list ul li a:hover {
    color: #555555;
    text-decoration: underline;
}

.column-list>div {
    text-align: right;
    padding: 10px;
}
.tree {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.tree li {
    position: relative;
    padding-left: 20px;
    line-height: 20px;
    box-sizing: border-box;
}

.tree a {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    text-decoration: none;
    color: #b20c02;
    background: url(../Images/list_left_1.jpg) no-repeat center bottom;
    background-size: 100%; /* 调整背景图像的大小 */
}

.tree a:hover {
    color: #b20c02;
    font-weight: bolder;
}
.tree a img{
    display: none;
    margin-right: 5px;
}
.tree a:hover img{
    display: block;
}