
section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-box {
    position: relative;
    width: 96rem;
    padding: 3.5rem 3rem;
    background: url("https://res.qianlu.cc/sjzs/html/img/plugin-shop-bg.png?v=20240529") no-repeat center center;
    background-size: 100%;
}
.search-input {
    width: 100%;
    position: relative;
    margin-top: 3.8rem;
}
.search-box .clear-icon {
    top: 50%;
    transform: translateY(-50%);
    right: 1rem;
    position: absolute;
    cursor: pointer;
    z-index: 1;
}
.search-box img {
    position: absolute;
    top: 2rem;
    right: 6rem;
}
.search-box h1 {
    font-weight: bold;
    font-size: 3rem;
    color: #212224;
}
.search-box p {
    margin-top: 1.5rem;
    font-weight: 400;
    font-size: 2rem;
    color: #212224;
}
.search-box input {
    box-sizing: border-box;
    width: 100%;
    height: 4rem;
    border-radius: .4rem;
    border: none;
    outline: none;

    padding-left: 3.9rem;
    font-weight: 400;
    font-size: 1.6rem;
    color: #999999;
    background: #FFFFFF url("https://res.qianlu.cc/sjzs/html/svg/search-ic.svg?v=20240529") no-repeat 1rem;
    transition: all .2s linear;
}
.search-box input[type=text]:focus{
    outline: .1rem solid #0881FF;
}
.app-box {
    display: flex;
    width: 96rem;
    box-sizing: border-box;
}
.app-left {
    overflow: hidden;
    box-sizing: border-box;
    height: 120rem;
    position: relative;
    padding-top: 1.5rem;
    border-right: .1rem solid rgba(0,0,0,0.05);
    padding-right: 5rem;
}
.app-left p {
    font-weight: 400;
    font-size: 1.5rem;
}
.app-list {
    scrollbar-width: none;
    overflow: auto;
    height: calc(100% - 4rem);
    margin-top: 0.6rem;
}
.app-list::-webkit-scrollbar {
    width: 0;
}
.app-item {
    cursor: pointer;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    color: #585858;
    transition: all 0.2s linear;
}
.app-item:hover {
    color: #0881FF;
}
.app-item img{
    width: 5rem;
    border-radius: 1rem;
    overflow: hidden;
    object-fit: cover;
    background: #FFFFFF;
}
.app-item img:first-child {
    position: relative;
    z-index: 2;
}
.item-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 1.8rem;
    width: 53rem;
    padding: 2.4rem 0 2.1rem 0;
    border-bottom: .1rem solid rgba(0,0,0,0.05);
}
.app-right {
   padding: 3.5rem 0 0 4.1rem;
    margin-right: 12rem;
}
.item-name {
    font-weight: 400;
    font-size: 1.6rem;
}
.item-desc {
    margin-top: 0.8rem;
    font-weight: 400;
    font-size: 1.2rem;
    color: #858585;
    min-height: 1.2rem;
    width: 40rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.fast-key-list {
    font-weight: 400;
    font-size: 1.2rem;
    color: #858585;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 40rem;
}
.fast-key {
    margin-top: 0.8rem;
    margin-right: 0.4rem;
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    background: #F1F5FF;
    border-radius: 3rem;
}
.item-btn {
    font-size: 1.3rem;
    flex-shrink: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: .6rem 2.2rem;
    color: #FFFFFF;
    background: #0881FF;
    border-radius: 2.2rem;
    cursor: pointer;
    transition: all .2s linear;
}
.item-btn:hover {
    background: #79bbff;
}
.empty-result {
    width: 60rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}
.right-box h2 {
    font-weight: 400;
    font-size: 2.6rem;
    color: #212224;
}

.list-item {
    padding: 0 1rem;
    height: 5rem;
    position: relative;
    cursor: pointer;
    margin-top: 1.35rem;
    display: flex;
    align-items: center;
    color: #4D4D4D;
    transition: all .2s linear;
    border-radius: 0.6rem;
    user-select: none;
}
.list-item:hover {
    color: #0881FF;
}
.list-item img {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: .4rem;
    margin-right: 1.6rem;
    overflow: hidden;
    object-fit: cover;
}
.list-item p {
    font-weight: 400;
    font-size: 1.5rem;
    flex-shrink: 0;

}


footer {
    width: 100%;
    padding-top: 4.8rem;
    background: #212224;
}