body{
    background:#f7f7f7;
}
.banner-text {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    text-transform: uppercase;
    transform: translateY(-50%);
}

.banner-text .text1 {
    font-size: 0.48rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    /* width: 10rem; */
    margin: 0 auto;
    line-height: 0.5rem;
}

.banner-text .text2 {
    font-size: 0.16rem;
    color: #fff;
    /* width: 9rem; */
    margin: 0.2rem auto 0;
    text-align: center;
}

.banner-text .text-btn {
    width: 2.15rem;
    height: 0.45rem;
    border-radius: 0.3rem;
    color: #fff;
    text-align: center;
    line-height: 0.45rem;
    margin: 1.6rem auto 0;
    border: 1px solid #fff;
    font-size: 0.14rem;
    opacity: 0;
}
.report-filter {
    display: flex;
    align-items: center;
    height: 0.8rem;
    background: #fff;
    border-radius: 0.4rem;
    justify-content: center;
    font-size: 0.18rem;
    margin-top: 0.6rem;
    padding: 0 0.28rem;
}

.report-filter label {
    height: 0.5rem;
    border: 1px solid #e0e9f8;
    border-radius: 0.25rem;
    padding: 0 0.28rem;
    display: flex;
    align-items: center;
    background: #f9faff;
    flex: none;
    margin-right:0.2rem;
}

.report-filter label span {
    color: #0153b9;
    font-size: 0.16rem;
    margin-right: 0.08rem;
    white-space: nowrap;
}

.report-filter select {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #333;
    font-size: 0.16rem;
    cursor: pointer;
}

.report-filter button {
    height: 0.5rem;
    padding: 0 0.2rem;
    border: none;
    border-radius: 0.25rem;
    background: #0153b9;
    color: #fff;
    font-size: 0.16rem;
    /* font-weight: 600; */
    cursor: pointer;
}
.btnBox {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-left: auto;
}
.reset-link {
    height: 0.5rem;
    padding: 0 0.2rem;
    border-radius: 0.25rem;
    background: #f9faff;
    color: #0153b9;
    font-size: 0.16rem;
    display: inline-flex;
    align-items: center;
    border: 1px solid #e0e9f8;
    
}

.report-list {
    margin-top: 0.3rem;
}

.report-item {
    background: #fff;
    border-radius: 0.06rem;
    margin-bottom: 0.3rem;
    padding: 0.28rem;
    display: grid;
    grid-template-columns: 4.9rem minmax(0, 1fr);
    column-gap: 0.4rem;
    border: 1px solid #edf1f7;
    box-shadow: 0 0.03rem 0.12rem rgba(17, 42, 82, 0.03);
}

.report-cover {
    height: 2rem;
    border-radius: 0.04rem;
    overflow: hidden;
    color: #0153b9;
    background:url('../images/new/reportBg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    
}
.cover-content{
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0.3rem;
    box-sizing: border-box;
}
.cover-year {
    position: relative;
    z-index: 1;
    font-size: 0.46rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0;
    text-shadow: 0 0.02rem 0.04rem rgba(1,83,185,0.16);
}

.cover-title {
    position: relative;
    z-index: 1;
    font-size: 0.26rem;
    line-height: 1.5;
    font-weight: 600;
    margin-top: 0.08rem;
}

.report-content {
    
}

.report-meta {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 0.1rem;
    font-size: 0.16rem;
}

.report-meta span {
    color: #0153b9;
}

.report-meta time {
    margin-left: auto;
    color: #999;
}

.report-content h2 {
    color: #333;
    font-size: 0.24rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.report-summary {
   color: #666;
    font-size: 0.16rem;
    line-height: 1.5;
}

.report-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.1rem;
}

.download-btn {
    min-width: 1.3rem;
    height: 0.38rem;
    line-height: 0.36rem;
    border: 1px solid #0153b9;
    color: #0153b9;
    border-radius: 0.03rem;
    font-size: 0.18rem;
    text-align: center;
    background: #fff;
}

.download-btn:hover {
    background: #0153b9;
    color: #fff;
}

.read-link {
    color: #0153b9;
    font-size: 0.16rem;
    display: inline-flex;
    align-items: center;
    gap: 0.08rem;
}
.read-link .icon{
    width: 0.23rem;
    height: auto;
}

@media (max-width: 700px) {
    .banner-text .text-btn{
        margin-top: 0.5rem;
    }
    .report-page {
        padding: 1.18rem 5vw 0.5rem;
    }

    .report-filter {
        border-radius: 0.14rem;
        flex-direction: column;
        align-items: stretch;
        padding: 0.14rem;
        height: auto;
    }

    .report-filter label {
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 0.2rem;
    }

    .report-filter button,
    .reset-link {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }

    .report-item {
        grid-template-columns: 1fr;
        row-gap: 0.16rem;
        padding: 0.16rem;
    }
    
    .report-cover {
        height: 0;
        width: 100%;
        padding-bottom: 40.81%;
    }
    .report-content h2 {
        width: 100%;
        white-space: wrap;
    }
    .report-content {
        display: block;
    }

    .report-meta {
        height: auto;
        flex-wrap: wrap;
    }

    .report-meta time,
    .read-link {
        margin-left: 0;
    }

    .report-actions {
        justify-content: space-between;
    }
}
