.home-head {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.home-head-title {
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    color: #166CC1;
    padding: 10px 0;
}
.home-head-title p {
    color: #166CC1;
}
.search-form {
    display: block;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 10px;
}
.search-input {
    height: 60px;
    line-height: 60px;
    font-size: 18px;
    display: block;
    font-family: "Microsoft YaHei";
    text-indent: 25px;
    border: none;
    width: 100%;
    border-radius: 10px;
    color: #333;
}
.search-btn {
    position: absolute;
    right: 25px;
    top: 16px;
    font-size: 16px;
    border: none;
    display: inline-block;
    cursor: pointer;
    background: transparent;
}
.search-btn .layui-icon-search {
    position: relative;
    top: 1px;
    color: #333;
    font-size: 26px;
}
.article-item {
    display: flex;
    justify-content: space-between;
    height: 170px;
    margin-bottom: 20px;
    background-image: none !important;
    border-radius: var(--theme-radius);
    transition: all .3s ease 0s;
}
.article-item .img img {
    width: 265px;
    height: 170px;
    transition: all .3s ease-out 0s;
    border-radius:var(--theme-radius);
    object-fit: cover;
    background: #fff;
    display: block;
}
.article-itme,.content {
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.article-itme,.content>h3 {
    font-weight: 600;
    font-size: 18px;
    padding-left: 5px;
}
.article-item .content .desc {
    font-size: 16px;
    color: #8d939c;
    overflow: hidden;
    text-overflow: ellipsis;
}
.article-item .content .desc a {
    text-decoration: none;
    color: inherit;
    display: -webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:4;
    overflow:hidden;
}
.article-item .content .list-meta {
    display: flex;
    justify-content: space-between;
    color: #8d939c;
}
.article-item .content .list-meta>li {
    margin: 0 10px;
    padding: 0 10px;
}
@media (max-width: 480px){
    .search-input {
        height: 45px;
        line-height: 45px;
        font-size: 16px;
    }
    .search-btn .layui-icon-search {
        font-size: 16px;
    }
	.article-item {
	    height: 80px;
	    margin-bottom: 10px;
	}
	.article-item .img img {
	    width: 130px;
	    height: 80px;
	}
	.article-itme,.content {
	    margin-left: 5px;
	}
	.article-itme,.content>h3 {
	    font-weight: 600;
	    font-size: 14px;
	    padding-left: 2.5px;
	}
	.article-item .content .desc {
	    font-size: 14px;
	    height: 80px;
	}
	.author {
		display: none;
	}
	.time {
		display: none;
	}
	.scan {
		display: none;
	}
	.share {
		display: none;
	}
}
@media (max-width: 768px){
	.article-item {
	    height: 120px;
	    margin-bottom: 15px;
	}
	.article-item .img img {
	    width: 150px;
	    height: 120px;
	}
	.article-itme,.content {
	    margin-left: 8px;
	}
	.article-itme,.content>h3 {
	    font-weight: 600;
	    font-size: 16px;
	    padding-left: 3px;
	}
	.article-item .content .desc {
	    font-size: 14px;
	    height: 120px;
	}
	.scan {
		display: none;
	}
	.share {
		display: none;
	}
}
.footer p {
   text-align: center;
   font-size: 14px;
   padding: 10px 0;
}
.footer p a {
	color: #fff;
}