.project-wrap {
    margin: 0 auto;
}

.project-box {
    margin-top: 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.project-left {
    position: relative;
}

.project-img {
    width: 8.74rem;
    height: 6.1rem;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-des {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0.6rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 0rem 0rem 0rem 0rem;
    width: 100%;
}

.project-title {
    font-size: 0.28rem;
    font-family: Microsoft YaHei-Bold, Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
}

.project-p {
    font-size: 0.16rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 0.32rem;
    margin-top: 0.3rem;
}

.project-bt {
    width: 1.02rem;
    height: 0.34rem;
    background: #E50014;
    border-radius: 0.32rem 0.32rem 0.32rem 0.32rem;
    margin-top: 0.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-bt img {
    width: 0.18rem;
    height: 0.18rem;
}

.project-bt p {
    font-size: 0.14rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
}

.project-list {
    width: 5.26rem;

}

.project-item {
    padding: 0.2rem 0.16rem;
    display: flex;
    border-bottom: 0.01rem solid rgba(204, 204, 204, 0.6);
}

.project-item img {
    width: 0.29rem;
    height: 0.29rem;
    flex-shrink: 0;
    margin-right: 0.12rem;
}

.project-item p {
    font-size: 0.2rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #666666;
    line-height: 0.3rem;
}

.project-page {
    margin-top: 0.3rem;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 0.9rem;
}

.project-item p:hover {
    color: #E50014;
}


/* 详情 */
.detail-wrap {
    width: 11rem ;
    margin: 1.4rem auto 1rem auto;
}

.detail-title {
    font-size: 0.28rem;
    font-family: Microsoft YaHei-Bold, Microsoft YaHei;
    font-weight: bold;
    color: #333333;
    line-height: 0.38rem;
    padding-bottom: 0.25rem;
    position: relative;
}

.detail-title::after {
    content: '';
    width: 1.6rem;
    height: 0.02rem;
    background: #0DA0D6;
    position: absolute;
    left: 0;
    bottom: 0;
}

.detail-content {
    margin-top: 0.55rem;
    font-size: 0.24rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #333333;
}


@media only screen and (max-width: 1024px) {
    .project-box{
        flex-direction: column;
        padding: 0.8rem 0.25rem;
        margin: 0;
    }
    .project-img{
        width: 100%;
        height: auto;
    }
    .project-des{
        padding: 0.4rem;
    }
    .project-title{
        font-size: 0.3rem;
    }
    .project-p{
        font-size: 0.26rem;
    }
    .project-bt{
        width: 2rem;
        height: 0.45rem;
    }
    .project-bt p{
        font-size: 0.24rem;
    }
    .project-bt img{
        width: 0.26rem;
        height: 0.26rem;
    }
    .project-list{
        width: 100%;
        margin-top: 0.15rem;
    }
    .project-item p{
        font-size: 0.26rem;
        line-height:0.34rem
    }
    .project-page{
        justify-content: center;
    }
    .project-page{
        margin-top: 0;
    }
    
    
    .detail-wrap{
        width: 100%;
        padding: 0 0.3rem;
        margin: 0.8rem 0;
    }
    .detail-title{
        font-size: 0.3rem;
        line-height:0.45rem;
        padding-bottom: 0;
    }
    .detail-title:after{
        display:none;
    }
    .detail-content,
    .detail-content p,
    .detail-content span{
        font-size: 0.26rem;
        line-height: 0.34rem;
    }
}

