/* 重大建设项目清单
2022-8-12
tfxu */
.title-img {
    display: block;
    width: 100%;
}

.main {
    padding: 20px 30px 30px;
    background: #fff;
    box-shadow: 0px 1px 12px #F4EAE9;
    border-radius: 6px;
}

.main-hd {
    line-height: 30px;
    font-size: 20px;
    font-weight: 550;
    color: #333;
    padding-left: 31px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E1D0CB;
    background: url('/Template/zdxm/images/icon_list.png') 0 4px no-repeat;
}

.project-list {
    margin-top: 3px;
}

.project-item {
    float: left;
    width: 50%;
    border-bottom: 1px dashed #EFE7E8;
}

.project-item-link {
    position: relative;
    display: block;
    height: 54px;
    line-height: 54px;
    font-size: 16px;
    color: #333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.project-item-link:before {
    position: absolute;
    content: '';
    width: 4px;
    height: 4px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #333;
}

.project-item:nth-child(2n+1) .project-item-link {
    padding: 0 60px 0 15px;
}

.project-item:nth-child(2n) .project-item-link {
    padding: 0 0 0 33px;
}

.project-item:nth-child(2n) .project-item-link:before {
    left: 18px;
}

.project-item-link:hover {
    color: #E1313F;
}

.project-item-link:hover::before {
    background: #E1313F;
}

@media (max-width:767px) {
    .project-item {
        width: 100%;
    }

    .project-item .project-item-link {
        padding: 0 0 0 15px !important;
    }

    .project-item:nth-child(2n) .project-item-link:before {
        left: 0;
    }
}