       .codecontainer {
            display: flex;
            flex-wrap: wrap;
            justify-content: left;
            padding: 10px;
            list-style-type: none; /* 移除默认列表样式 */
            margin: 0; /* 移除默认外边距 */
        }

        .code-card {
            background-color: white;
            border: 1px solid #d1cdcd61;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            margin: 10px;
            padding: 0;
            width: calc(25% - 20px);
            box-sizing: border-box;
            transition: transform 0.3s;
            text-align: left;
            overflow: hidden; /* 确保子元素不溢出 */
        }

        .code-card:hover {
            transform: translateY(-5px);
        }

        .code-images {
            height: 220px; /* 固定高度 */
            overflow: hidden; /* 隐藏超出部分 */
            position: relative; /* 为了使 img 绝对定位 */
        }

        .code-images img {
            width: 100%;
            object-fit: cover; /* 保持比例并裁剪 */
        }

        .code-titles {
            width: 90%;
            font-size: 1.6rem;
            margin: 10px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

.code-images span {
    display: block;
    background: #333;
    opacity: .8;
    font-size: 12px;
    text-align: center;
    width: 86px;
    height: 26px;
    line-height: 26px;
    color: #fff;
    border-radius: 12px;
    position: absolute;
    top: 10px;
    left: 8px;
    z-index: 8;
}
        .code-meta {
		    width: 98%;
		    white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: 0.9em;
            color: #777;
            margin: 10px;
        }

        @media (max-width: 1200px) {
            .code-card {
                width: calc(25% - 20px);
            }
        }

        @media (max-width: 800px) {
            .code-card {
                width: calc(33.33% - 20px);
            }
        }

        @media (max-width: 600px) {
            .code-card {
                width: calc(100% - 20px);
            }
        }

        @media (max-width: 400px) {
            .code-card {
                width: calc(100% - 10px);
            }
        }
.code-left-column {
    padding-top: 10px;
}
.code-image {
    width: 100%;
	height:210px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.code-right-column {
    flex: 1;
}
.code-title {
    text-align: left;
    font-size: 1.8rem;
    margin: 10px 0;
	line-height:2.2rem;
}
.code-title h1{display: contents;}
.code-title span{
font-size:14px;
margin-left:8px;
color: #6e6e6e;
}
        .code-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
		    background:url(../images/pricebg.png) 0 0 no-repeat;
            background-color: #e9e9e9;
            padding: 10px;border-radius: 4px;
            margin-bottom: 15px;
            flex-wrap: nowrap; 
        }
        .code-price-tag, .code-price-faq, .code-price-bt {
            flex-shrink: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: break-spaces;
        }
     .code-price-tag {
            font-size: 20px;
            font-weight: 700;
            color: #d6293e;
        }

        .code-price-faq {
            flex: 1;
            text-align: left;
            color: #6c6c6c;
            font-size: 12px;
            margin: 0 10px;
        }

        .code-price-bt {
            font-size: 12px;
            color: #ffffff;
            background-color: #d6293e;
            padding: 3px 10px;
            border-radius: 50px;
            margin-left: 10px;
        }
.code-info-list {
    overflow: hidden;
    padding: 15px;
    padding-bottom: 0;
    background: #F7F8FC;
    list-style: none;
    border-radius: 10px;
    box-shadow: 0 5px 10px #00000005;
}
.code-info-list li {
    float: left;
    margin-bottom: 10px;
    width: 50%;
    font-size: 13px;
    color: #6e6e6e;
}
@media (max-width: 600px) {
    .code-left-column {
        padding-right: 0;
    }
.code-image {
    width: 100%;
	height:auto;
}
.code-info-list li {
    width: 30%;
}
}