body {
    background-color: rgb(235 235 235);
    background: linear-gradient(135deg, #a7cee0 50%, #d0dea7);
    /* background-image: url(../img/bg2.jpg);
    background-size: 100%;
    background-repeat: no-repeat; */
    min-height: 95vh;
}
.l-red{
    background-color: #ffe7e5!important;
}
.l-green{
    background-color: rgb(235 255 237)!important;
}
.l-org{
    background-color: rgb(255 248 228)!important;
}
.search-bar{
    width: 60%;
    height:40px;
    line-height: 40px;
    background-color: #ffffff61;
    border-radius: 9px;
    position: relative;
    left:0;
    margin: 30px auto 10px;
}
.search-bar span{
    position: absolute;
    top:0;
    left:0;
    width:40px;
    height:40px;
    background-image: url('../icon/baidu.webp');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    opacity: 0.7;
}
.search-bar input{
    outline: none;
    border: none;
    background-color: transparent;
    width: 80%;
    height:40px;
    line-height: 40px;
    text-indent: 35px;
}
.container {
    max-width: 1000px;
    margin: auto;
    z-index: 3;
    padding:0 20px;
}

.container .links {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.container .links .link {
    width: 310px;
    background-color: #fff;
    display: -webkit-box;
    display: flex;
    box-shadow: 0 1px 3px 0px rgb(0 0 0 / 8%);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    -webkit-box-align: center;
    align-items: center;
    padding: 15px 10px;
    margin-bottom: 8px;
    border-radius: 5px;
    transition: all 0.3s;
}
.container .links .link:hover {
    background-image: linear-gradient(144deg,#e7c6ff, #FFE0B2,#B2EBF2);
}

.container .links .link img {
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-right: 10px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.container .links .link .info {
    width: 230px;
    line-height: 20px;
}

.container h3 {
    font-size: 14px;
    margin: 0 0 1px 0;
    font-weight: normal;
}

.container .links .link .info p {
    font-size: 12px;
    color: #888ea2;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    margin: 5px 0 0 0;
}

a {
    text-decoration: none;
    -webkit-box-pack: center;
    justify-content: center;
    color: inherit;
    cursor: pointer;
    outline: none;
}

.links .link:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.container h1 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
    color: #303659;
    font-weight: normal;
    margin-top: 40px;
}

.container .description {
    text-align: center;
    margin-bottom: 10px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: -apple-system, Source Sans Pro, BlinkMacSystemFont, PingFang SC, Helvetica, Tahoma, Arial, Hiragino Sans GB, Microsoft YaHei, "\5FAE\8F6F\96C5\9ED1", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #303659;
    -webkit-font-smoothing: antialiased;
}

.link-box {
    display: block;
    line-height: 35px;
    font-size: 16px;
}
@media screen and (min-width: 750px) and (max-width: 1000px) {
    .container .links .link {
        width:32%;
    }
}
@media screen and (min-width: 521px) and (max-width: 750px) {
    .container .links .link {
        width:49%;
    }
}
@media screen and (max-width: 520px) {
    .container .links .link {
        width:100%;
        padding: 8px 10px;
    }
    .search-bar{
        width: 99%;
    }
}