*{
    font-family: "苹方";
}
body{
    background-color: rgb(237,237,237);
}
.home{
    max-width: 800px;
    min-height:300px;
    display: block;
    margin:15px auto;
}
.kui{
    padding: 10px 25px;
    border-radius:15px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #3e4449;
    background-color: #FFFFFFFF;
}
a {
    text-decoration: none; /* 去除默认的下划线 */
    outline: none;	/* 去除旧版浏览器的点击后的外虚线框 */
    color: #20a53a;	/* 去除默认的颜色和点击后变化的颜色 */
}
.title{
    font-size: 20px;
    margin-top: 10px;
    font-weight: 500;
    color: #6c757d;
}
.app{
    display: inline-block;
    width: 25%;
    margin-bottom: 10px;
}
.app-title{
    text-align: center;
    margin: 8px auto;
    color: black;
    font-size: 14px;
    font-weight: 500;
}
.app-img{
    width: 80%;
    max-width: 100px;
    border: 1px solid #FFFFFFFF;
    border-radius: 10px;
    clear: both;
    display: block;
    margin: auto;
}
.m-img{
    width: 95%;
    max-width: 330px;
    max-height: 330px
}
.button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;

    /* 添加圆角样式 */
    border-radius: 8px; /* 可以根据需求调整圆角大小 */
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.content-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 12px;
}

.app-lists {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    /* margin: 0 -12px; */
}

.app-item {

    height: 104px;
    display: flex;
    padding: 16px;
    border-radius: 12px;
    background: var(--Color-Container-couiColorCard, #FFF);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.30);
    box-sizing: border-box;
    /* margin: 0 12px 24px; */
    justify-content: space-between;
    align-items: center;
}

li {
    list-style: none;
}

.app-item .pic {
    width: 60px;
    height: 60px;
    border: 1px solid #E4E3E3;
    border-radius: 14px;
    overflow: hidden;
}

.app-item .app-name-desc {
    width: 182px;
    text-align: left;
}

.app-item .app-desc {
    font-size: 14px;
    color: rgba(255, 0, 0);
    font-weight: bold;
}

.app-item img {
    width: 100%;
    height: 100%;
}

a img,
img,
iframe {
    border: none;
}

.app-item .app-button {
    width: 66px;
    height: 28px;
    font-size: 14px;
    line-height: 28px;
    color:  white;
    font-weight: bold;
    border-radius: 32px;
    background: #4CAF50;
    border: none;
    outline: 0;
    text-align: center;
    overflow: hidden;
    font-weight: 500;
    cursor: pointer;
}

.title {
    text-align: center;
    color: red;
}


a:link {
    text-decoration: none;
}

.app-item .app-name .tip-icon {
    padding: 0px 2px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.15);
    font-size: 9px;
    color: #FFF;
    text-align: center;
    margin-left: 4px;
    margin-bottom: 4px;

}

.app-name {
    font-size: 20px;
    font-weight: bold;
}