/* 优势认证货代 开始 */
.cert-freight-section {
    width: 100%;
    /*height: 480px;*/
    /*background-color: #f6f7fb;*/
    margin: 1rem 0.45rem 1rem;
    /*padding: 30px 0;*/
}

.cert-freight-title {
    font-size: 22px;
    color: #1A3A6C;
    text-decoration: none;
    /*display: block;*/
    /*text-align: center;*/
    display: flex;
    padding-left: 20%;
    margin-bottom: 30px;
    font-weight: 600;
}

.cert-freight-container {
    /*width: 1160px;*/
    width: 100%;
    min-height: 365px;
    margin: 0 auto;
    display: flex;
    /*justify-content: space-between;*/
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 28px;
}

.cert-freight-card {
    width: 268px;
    min-height: 365px;
    border-radius: 20px;
    background-color: white;
    padding: 0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cert-freight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.cert-freight-card-img {
    width: 268px;
    height: 155px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.cert-freight-card-content {
    padding: 10px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cert-freight-card-title {
    font-size: 15px;
    color: #1F2329;
    margin-bottom: 5px;
    font-weight: 600;
    word-break: break-word;
}

.cert-freight-card-desc-container {
    flex-grow: 1;
    /*overflow: hidden;*/
}
.cert-freight-card-desc {
    font-size: 14px;
    color: #999999;
    margin-bottom: 8px;
    /* 移除display: flex */
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    padding-left: 13px; /* 为伪元素留出空间 */
    position: relative; /* 用于伪元素定位 */
}

.cert-freight-card-desc::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #999999;
    border-radius: 50%;
    margin-right: 8px;
    position: absolute; /* 绝对定位 */
    left: 0; /* 左对齐 */
    top: 8px; /* 垂直居中调整 */
}

.cert-freight-card-btn-container {
    display: flex;
    justify-content: center;
    margin-top: auto;
    /*padding-top: 15px;*/
}

.cert-freight-card-btn {
    height: 42px;
    border-radius: 5px;
    background-color: #FF6B35;
    color: #FFFFFF;
    font-size: 14px;
    border: none;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cert-freight-card-btn:hover {
    background-color: #e05a2b;
    color: #FFFFFF;
}

.cert-freight-card-btn img {
    width: 14px;
    height: 14px;
    margin-right: 8px;
}
/* 优势认证货代 结束 */