.main {
    width: 100%;
    margin-top: 20px;
}

.main-container {
    width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.aside-container {
    display: flex;
    justify-content: space-between;
    min-height: 600px;
}

.aside-context {
    width: 24%;
}

.aside-list {
    width: 75%;
}

.aside-box {
    width: 80%;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
    overflow: hidden;
    color: #303133;
}


.aside-item:hover, .aside-item:active{
    background-color: #eeeeee;
}

.aside-box .active{
    background-color: lightblue;
}


.crumbs-nav {
    width: 95%;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    background-color: #eee;
    padding-left: 30px;
}


.crumbs-nav a:hover {
    color: lightblue;
}


.aside-item {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-indent: 30px;
    color: #63065f;
}


.aside-item-dq {
    background-color: #1e88e5;
    font-size: 20px;
    height: 61px;
    line-height: 61px;
    color: #fff;
    text-indent: 30px;
}

.list-context {
    margin-top: 20px;
}


.list-item {
    display: block;
    width: 96%;
}

.list-item-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    line-height: 50px;
    margin-left: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.list-icon {
    width: 10px;
}
.list-title {
    width: 75%;
    font-size: 16px;
}
.list-date  {
    text-align: right;
    width: 20%;
}


.main .search {
    width: 100%;
    position: relative;
    display: flex;
    border: 1px solid #eee;
    border-radius: 10px;
}

.main .searchTerm {
    width: 100%;
    border: none;
    border-right: none;
    padding: 0 15px;
    border-radius: 5px 0 0 5px;
    outline: none;
    color: #eee;
    background: transparent;
}

.main .searchTerm:focus {
    color: #eee;
}

.main .searchButton {
    width: 40px;
    height: 36px;
    border: none;
    background: transparent;
    text-align: center;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 20px;
}

/*调整大小查看搜索栏的变化*/
.main .wrap {
    width: 80%;
}


.main .searchTerm::placeholder {
    color: #eee;
}

.main .search-container {
    width: 350px;
}
