/*SCI论文界面*/
.SCI-content {
    width: 100%;
    padding: 30px calc(50% - 740px);
    box-sizing: border-box;
}

.SCI-content .title-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px calc((100% - 1400px)/2);
    box-sizing: border-box;
}

.SCI-content .title-box .title-text {
    color: #055f87;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
}

.SCI-content .title-box .title-text::after {
    display: inline-block;
    content: '';
    width: 80px;
    height: 4px;
    background: #3E4756;
    position: absolute;
    bottom: 0;
    left: calc((100% - 80px) / 2);
}

.SCI-content .SCI-box {
    width: 100%;
    margin-top: 30px;
}

.SCI-box .SCI-list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}

.SCI-list .SCI-item {
    width: calc(50% - 15px);
    margin-bottom: 15px;
    height: auto;
    background: #fff;
    box-shadow: 0 0 10px#e5e5e5;
    border-radius: 8px;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.SCI-item .SCI-title {
    width: 100%;
    box-sizing: border-box;
    font-size: 25px;
    font-weight: bold;
}

.SCI-item .SCI-info {
    width: 100%;
    margin: 15px 0;
}

.SCI-item .SCI-info span {
    color: #055f87;
    font-size: 18px;
}

.SCI-item .view-SCI {
    width: 100%;
    text-align: right;
}

.SCI-item .view-SCI a {
    font-size: 18px;
    font-weight: bold;
    background: #055f87;
    color: #fff;
    border-radius: 999px;
    padding: 5px 15px;
    box-sizing: border-box;
}



/* 取消移动端的hover效果 只有pc端的生效 */
@media (any-hover: hover) {}

/*移动端样式*/
@media screen and (max-width:768px) {
    .SCI-content {
        width: 100%;
        padding: 15px 0;
        box-sizing: border-box;
    }

    .SCI-content .title-box .title-text {
        font-size: 25px;
    }

    .SCI-content .SCI-box {
        width: 100%;
        margin-top: 15px;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .SCI-list .SCI-item {
        width: 100%;
        padding: 15px;
        margin-bottom: 15px;
    }

    .SCI-list .SCI-item:last-child {
        margin-bottom: 0;
    }

    .SCI-item .SCI-title {
        font-size: 20px;
    }

    .SCI-item .SCI-info span {
        font-size: 16px;
    }

    .SCI-item .view-SCI a {
        font-size: 16px;
    }

}