		.ks-desc-box {
			padding: .1rem 0;
			display: flex;
			flex-direction: column;
			height: 100%;
		}

		.ks-desc-box .ks-desc-title {
			font-size: .24rem;
			color: #666;
			padding-bottom: 8px;
			border-bottom: 1px solid #e4e4e4;
			position: relative;
		}

		.ks-desc-box .ks-desc-title::after {
			content: '';
			width: 30px;
			height: 4px;
			position: absolute;
			bottom: 0;
			left: 0;
			background: #397CD5;
		}

		.ks-desc-box .ks-desc-title span:first-of-type {
			font-weight: bold;
			color: #333;
		}

		.ks-desc-box .ks-desc-txt {
			font-size: .2rem;
			line-height: 2;
			margin: .2rem 0;
			flex: 1;
			overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 5;
            text-overflow: ellipsis;

		}

		.ks-desc-box a {
			color: #397CD5;
			width: max-content;
			text-decoration: underline;
		}

		.zj-list{
			display: flex;
    		margin-bottom: .35rem;
      		flex-wrap: wrap;
		}
		.zj-list .zj-item{
			width: 1.6rem;
			text-align: center;
			border: 1px solid #f2f2f2;
			transition: all .3s linear;
          	margin-bottom: .25rem;
          	margin-right: .3rem;
		}
		.zj-list .zj-item:nth-child(7n){
      		margin-right:0;
      }
		.zj-list .zj-item:hover{
			border: 1px solid #397CD5;
		}
		.zj-list .zj-item img{
			width: 100%;
			height: 2rem;
			object-fit: cover;
		}
		.zj-list .zj-item .zj-name{
			font-size: .19rem;
			font-weight: bold;
			color: #397CD5;
			padding: .08rem .1rem;
			position: relative;
		}
		.zj-list .zj-item .zj-name::after{
			content: '';
			width: 24px;
			height: 2px;
			background: #00a1f1;
			position: absolute;
			left: 50%;
			bottom: 0;
			transform: translate(-50%, 0);
		}
		.zj-list .zj-item .zj-title{
			font-size: .16rem;
			color: #999;
			padding: .08rem .1rem;
			text-overflow: ellipsis;
			overflow: hidden;
			white-space: nowrap;
		}