@media screen and (min-width: 999px) {

    /* app搜索 */
    #app_search {
        margin-top: 10px;
        margin-bottom: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #app_search>input {
        width: 50%;
        padding: 10px;
    }


    /* 应用 */
    #applacation {
        width: 100%;
        padding-top: 20px;
        min-height: calc(100vh - 50px);
    }

    #applacation>ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    #applacation>ul>li {
        width: 100%;
        height: 150px;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 6px;
        background-color: #f5f5f5;
    }

    #applacation>ul>li:hover {
        transform: scale(1.02);
        transition: transform 0.3s ease;
        box-shadow: 0px 16px 50px #00ff;
    }

    #applacation>ul>li:hover>a>img {
        padding: 1px;
        border-radius: 50px;
        background-color: #fff;
    }

    /* 左 */
    #applacation>ul>li>img {
        height: 100%;
        border-radius: 6px;
    }

    /* 中 */
    #applacation>ul>li>div {
        width: 76%;
        height: 100%;
        padding-left: 10px;
    }

    #applacation>ul>li>div>h2 {
        width: 100%;
        height: 20%;
        font-size: 18px;

    }

    #applacation>ul>li>div>p {
        width: 100%;
        height: 80%;
        margin-top: 10px;
        font-size: 12px;
        color: #9e9e9e;
    }

    /* 右 */
    #applacation>ul>li>a {
        height: 100%;
        display: flex;
        align-items: center;
    }

    #applacation>ul>li>a>img {
        width: 20px;
        height: 20px;
    }
}