/* 通用 医疗特色首页 科室介绍 盛京名医 教学科研首页 研究生教育  */
.ulPartList {
    clear: both;
    overflow: hidden;
    display: grid;
    grid-column-gap: 30px;
    grid-row-gap: 20px;
    margin-top: 30px;
}

.ulPartList li {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.ulPartList li a {
    display: block;
    overflow: hidden;
    height: 55px;
    padding-left: 25px;
    line-height: 55px;
    color: #333;
    font-size: 16px;
    background: #fff;
    border-radius: 5px;
    position: relative;
    border: 1px solid #eee;
}

.ulPartList li .wh_dot:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00479d;
    border-radius: 120px;
    left: 10px;
    top: 25px;
}

.ulPartList li a:after {
    background: url(../image/home_jt.png) center no-repeat;
    width: 7px;
    height: 12px;
    right: 20px;
    top: 44%;
    margin-top: 0px;
    content: "";
    position: absolute;
}

.ulPartList li a:hover {
    color: #fff;
    background: #00479d;
}

.ulPartList li .wh_dot:hover:after {
    background-image: url(../image/home_jt2.png);
}

.ulPartList li .wh_dot:hover:before {
    -webkit-box-shadow: 0px 0px 24px 0px rgba(2, 2, 2, 0.05);
    box-shadow: 0px 0px 24px 0px rgba(2, 2, 2, 1);
}

.ulPartList li:hover a:after {
    background-image: url(../image/home_jt2.png);
}

.w-more {
    display: block;
    width: 126px;
    margin-top: 20px;
    color: #fff;
    vertical-align: middle;
    cursor: pointer;
    border: none;
    outline: none;
    text-align: center;
    border-radius: 27.5px;
    background-color: #00479d;
    font-size: 1rem;
    color: #fff;
    border: 1px solid #eee;
    text-transform: capitalize;
    padding: 8px 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    /* margin: 15px auto 0; */
    box-sizing: border-box;
}

.w-more:hover {
    color: #fff;
    background-color: #842331;
}


/* 小屏幕（平板，大于等于 420px） */
@media only screen and (max-width: 420px) {
    .ulPartList {
        grid-template-columns: repeat(2, 1fr)
    }

    .ulPartList li a {
        display: block;
        overflow: hidden;
        height: 35px;
        padding-left: 15px;
        line-height: 35px;
        color: #333;
        font-size: 12px;
    }

    .ulPartList li .wh_dot:before {
        width: 4px;
        height: 4px;
        left: 5px;
        top: 15px;
    }
}

/* 小屏幕（平板，大于等于 420px） */

@media only screen and (min-width: 421px) {
    .ulPartList {
        grid-template-columns: repeat(3, 1fr)
    }
}

/* 小屏幕（平板，大于等于 768px） */
@media only screen and (min-width: 768px) {
    .ulPartList {
        grid-template-columns: repeat(3, 1fr)
    }
}

/* 中等屏幕（桌面显示器，大于等于 992px） */
@media only screen and (min-width: 992px) {
    .ulPartList {
        grid-template-columns: repeat(4, 1fr)
    }
}

/* 大屏幕（大桌面显示器，大于等于 1200px） */
@media only screen and (min-width: 1200px) {
    .ulPartList {
        grid-template-columns: repeat(5, 1fr)
    }
}

/* 小屏幕（平板，大于等于 768px） */
@media only screen and (min-width: 1330px) {
    .ulPartList {
        grid-template-columns: repeat(6, 1fr)
    }
}

/* 小屏幕（平板，大于等于 768px） */
@media only screen and (min-width: 1900px) {
    .ulPartList {
        grid-template-columns: repeat(6, 1fr)
    }

    .w-more {
        font-size: 16px;
        width: 164px;
    }
}