#main {
    width: 100%;
}

.main {
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    margin-bottom: -35px;
}

    .main:after, .mainbox:after {
        display: block;
        clear: both;
        height: 10px;
        content: "";
        visibility: hidden;
        overflow: hidden;
    }

.mainbox {
    width: 100%;
    background: #fff;
}

    .mainbox .head {
        border-bottom: #f0f0f0 2px solid;
        /*height: 20px;*/
        padding: 15px
    }

        .mainbox .head h2 {
            display: block;
            font-weight: bold;
            font-size: 14px;
        }

    .mainbox .content {
        margin: 0;
        padding: 20px 15px;
    }

        .mainbox .content ul.apps {
            margin: 0px;
            padding: 0px;
            list-style: none;
        }

            .mainbox .content ul.apps li {
                display: block;
                float: left;
                height: 100px;
                overflow: hidden;
                text-align: center;
                width: 100px;
            }

                .mainbox .content ul.apps li a {
                    text-decoration: none;
                    color: #333333;
                }

                .mainbox .content ul.apps li div {
                    font-size: 14px;
                    padding: 3px 0 3px 0;
                }

#right .mainbox {
}


.main .box .sub-category > div {
  padding: 12px 0 0 2.1%;
  font-size: 18px;
}
.main .box .item {
    width: 20%;
    border: 1px solid #f0f0f1;
    box-shadow: 1px 2px 3px #f2f6f8;
    border-radius: 6px;
    background: #fff;
    padding: 10px; 
    min-width: 120px;
    margin: 22px 0 0 2.1%;
    float: left;
    overflow: hidden;
    transition: all .3s;
}
.main .box .item:hover {
  transform: translateY(-5px);
}
.main .box .item .no-logo {
  color: #3273dc;
  font-weight: bold;
  font-size: 14px;
}
.main .box .item .logo {
  height: 40px;
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 .1rem;
}
.main .box .item .logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  vertical-align: middle;
}
.main .box .item .desc {
  color: gray;
  font-size: 12px;
  padding-top: 10px;
  height: 35px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}