/* =========================================================
 * news-card.css
 * 鏂囩尞涓績 / 瀹㈡埛鍙戣〃鏂囩尞鍒楄〃鍗＄墖鏍峰紡
 * 鏉ユ簮锛氳摑婀栬璁＄锛坉:\lanhu_huaban1锛岀敾鏉 1锛
 * 鍛藉悕绌洪棿鍓嶇紑 nc-锛坣ews card / 鏂囩尞鍗＄墖锛夛紝閬垮厤姹℃煋鍏ㄥ眬鏍峰紡
 *
 * 鍗＄墖缁撴瀯涓庤璁＄瀛楁瀵瑰簲鍏崇郴锛
 *   nc-journal    鈫 鏈熷垔          (LinkUrl / Magazine)
 *   nc-if-badge   鈫 褰卞搷鍥犲瓙 IF   (Introduction)
 *   nc-doi        鈫 DOI / 鏂囩珷閾炬帴 (SubTitle)
 *   nc-title      鈫 鏂囩尞鏍囬       (Title)
 *   nc-info(鏈嶅姟) 鈫 浜у搧/鐩稿叧鏈嶅姟   (Title1)
 *   nc-info(棰嗗煙) 鈫 鐮旂┒棰嗗煙       (Title2)
 *   nc-info(鍗曚綅) 鈫 鍗曚綅/鍚堜綔鍗曚綅   (Title3)
 * ========================================================= */

.document .newslist > li {
    padding: 0;
}
/* ---------- 鍗＄墖瀹瑰櫒 ---------- */
.nc-card {
    position: relative;
    display: block;
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 52px 32px;
    margin-bottom: 26px;
    transition: box-shadow 0.2s ease;
}
 

/* ---------- 椤堕儴琛岋細鏈熷垔 + IF + DOI ---------- */
.nc-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

/* 鏈熷垔鍚 */
.nc-journal {
    color: #181818;
    font-size: 24px;
    font-weight: 500;
    margin-right: 22px;
}

/* IF 钃濊壊鑳跺泭 */
.nc-if-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 109px;
    height: 35px;
    padding: 0 18px;
    background: #2e4ec4;
    color: #ffffff;
    font-size: 20px;
    border-radius: 17px;
}

/* 鑻ユ病鏈 IF锛岄殣钘忥紙閬垮厤绌鸿兌鍥婏級 */
.nc-if-badge:empty {
    display: none;
}

/* DOI 鍖 */
.nc-doi {
    display: flex;
    align-items: center;
    margin-left: auto;
}

    .nc-doi::before {
        content: "DOI:";
        color: #181818;
        font-size: 18px;
        margin-right: 14px;
    }

    .nc-doi .nc-doi-link {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        min-width: 270px;
        height: 35px;
        padding: 0 18px;
        color: #2e4ec4;
        font-size: 16px;
        border: 1px solid #2e4ec4;
        border-radius: 17px;
        background: #ffffff;
        text-decoration: none;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nc-doi .nc-doi-icon {
        width: 13px;
        height: 13px;
        background: url(../images/news/link.png) no-repeat center;
        background-size: contain;
        flex-shrink: 0;
        margin-left: 10px;
    }

/* 鑻 DOI 涓虹┖锛岄殣钘忔暣涓 DOI 鍖 */
.nc-doi:empty {
    display: none;
}

/* ---------- 鏍囬 ---------- */
.nc-title {
    display: block;
    color: #181818;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 35px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ---------- 搴曢儴琛岋細淇℃伅鍗 + 鏌ョ湅鏇村 ---------- */
.nc-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

/* 涓変釜淇℃伅鍗★紙鏈嶅姟 / 棰嗗煙 / 鍗曚綅锛夌殑瀹瑰櫒 */
.nc-infos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}

/* 鍗曚釜淇℃伅鍗 */
.nc-info {
    display: flex;
    align-items: center;
    width: 235px;
    height: 90px;
    padding: 0 25px;
    background: #eff1fe;
    border-radius: 20px;
    box-sizing: border-box;
    flex-shrink: 0;
}

    .nc-info + .nc-info {
        margin-left: 32px;
    }

.nc-info-icon {
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-right: 14px;
    flex-shrink: 0;
}

    .nc-info-icon.nc-icon-service {
        background-image: url(../images/news/icon-service.png);
    }

    .nc-info-icon.nc-icon-research {
        background-image: url(../images/news/icon-research.png);
    }

    .nc-info-icon.nc-icon-partner {
        background-image: url(../images/news/icon-partner.png);
    }

.nc-info-text {
    min-width: 0;
    line-height: 1.2;
}

.nc-info-label {
    color: #181818;
    font-size: 16px;
    margin-bottom: 10px;
}

.nc-info-value {
    color: #2e4ec4;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ---------- 鏌ョ湅鏇村 ---------- */
.nc-more {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 122px;
    height: 29px;
    text-decoration: none;
    color: #181818;
    font-size: 20px;
    flex-shrink: 0;
}

.nc-more-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;    
    border-radius: 50%;
    flex-shrink: 0;
}

    .nc-more-icon::after {
        content: "";
        display: block;
        width: 29px;
        height: 29px;
        background: url(../images/news/icon-more.png) no-repeat center;
        background-size: contain;
    }

/* ---------- 瑕嗙洊 document 椤甸潰鍘熸湁 box2 鍖哄煙锛堥伩鍏嶆棫鐨勬煡鐪嬫洿澶氭畫鐣欙級 ---------- */
.document .newslist li .nc-card .box2 {
    display: none;
}

/* ---------- 鍝嶅簲寮忥細灏忓睆閫傞厤 ---------- */
@media (max-width: 1024px) {
    .nc-card {
        padding: 24px 20px 20px;
    }

    .nc-meta {
        margin-bottom: 20px;
    }

    .nc-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .nc-doi {
        margin-left: 0;
        margin-top: 12px;
        width: 100%;
    }

        .nc-doi .nc-doi-link {
            min-width: 0;
            width: 100%;
        }

    .nc-infos {
        flex-direction: column;
        align-items: stretch;
    }

    .nc-info {
        width: 100%;
        height: auto;
        min-height: 70px;
        padding: 14px 16px;
        margin-bottom: 12px;
    }

        .nc-info + .nc-info {
            margin-left: 0;
        }

    .nc-more {
        margin-top: 8px;
    }
}