* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Microsoft Yahei", Arial, sans-serif;
    background-color: #fff;
    color: #333;
    font-size: 14px;
}
.searchbox {
    width: 95%;
    margin: 10px auto;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 5px 10px;
}
.searchbox > div {
    flex: 1;
}
.searchbox input[name="q"] {
    width: 100%;
    border: none;
    background: transparent;
    padding: 8px 5px;
    font-size: 14px;
    outline: none;
}
.search_go {
    width: 35px;
    height: 35px;
    border: none;
    background: #f2f2f2;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-grid {
    width: 95%;
    margin: 15px auto;
}
.nav-grid .grid-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}
.nav-grid .grid-item {
    width: 23%;
    text-align: center;
}
.nav-grid .grid-item a {
    display: block;
    text-decoration: none;
    color: #666;
}
.nav-grid .icon-box {
    width: 48px;
    height: 48px;
    margin: 0 auto 5px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-grid .icon-box img {
    width: 53px;
    height: 53px;
}
.nav-grid .item-text {
    font-size: 11px;
    line-height: 1.2;
}
.list-title {
    width: 95%;
    margin: 15px auto 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgb(162, 175, 185);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.list-title h3 {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin: 0;
}
.list-title .more {
    color: #999;
    font-size: 13px;
    text-decoration: none;
}
.content-list {
    width: 95%;
    margin: 0 auto 20px;
}
.content-list .item {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.5;
}
.content-list .item:last-child {
    border-bottom: none;
}
.content-list .desc {
    font-size: 12px;
    color: #999;
    margin-top: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cl0 {
    clear: both;
}