.mobile {
    display: none;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.container .title {
    width: 100%;
    text-align: center;
    margin-top: 34px;
}

.container .title img {
    width: 438px;
}
.appBox ul {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 23.5%);
    justify-content: space-between;
}
.appBox ul li{
    margin-bottom:40px;
}

.appBox ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.appBox ul li a .left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    flex: 1;
}

.appBox ul li a .left .icon {
    position: static;
}

.appBox ul li a .left .icon img {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    position: static;
}

.appBox ul li a .left .info {
    padding-left: 16px;
}

.appBox ul li a .left .info .name {
    font-size: 16px;
    color: #000;
    line-height: 30px;
}

.appBox ul li a .left .info .desc {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
}

.appBox ul li a .left .info .times {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
}

.appBox ul li a .right {
    width: 64px;
    height: 32px;
    background: linear-gradient(90deg, rgb(255, 43, 125), rgb(255, 103, 162));
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: #fff;
}





@media screen and (max-width: 800px) {
    .pc {
        display: none;
    }

    .mobile {
        display: block;
    }

    .container {
        width: 100%;
        padding:0 15px;
    }

    .container .title {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .container .title img {
        width: 70%;
    }

    .appBox ul {
        margin-top: 20px;
        display: grid;
        grid-template-columns: repeat(1, 100%);
    }



















}