.report_wrap {
    max-width: 1300px;
    width: 90%;
    margin: 110px auto 0;
    display: flex;
    gap: 4%;
}

.report_wrap .info_block {
    width: 360px;
}

.report_wrap .info_block .block_content {
    width: 100%;
    position: sticky;
    top: 130px;
    left: 0;
}

.report_wrap .info_block .img_wrap {
    width: 100%;
    padding: 40px 20px;
    border-radius: 15px;
    background: #ffffff;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.32) 0%,
        rgba(138, 163, 212, 0.32) 100%
    );
}

.report_wrap .info_block .img_wrap h2 {
    font-size: 18px;
    line-height: 1;
    color: #007260;
    padding-bottom: 10px;
    max-width: 260px;
    width: 100%;
    margin: 0 auto;
    border-bottom: solid 1.5px #007260;
}

.report_wrap .info_block .img_wrap img {
    max-width: 260px;
    width: 100%;
    display: block;
    margin: 20px auto 0;
}

.report_wrap .info_block .dl_btn {
    max-width: 350px;
    width: 100%;
    height: 80px;
    margin-top: 30px;
    border-radius: 40px;
    padding-left: 60px;
    position: relative;
    background-color: white;
    border: solid 1.5px #007260;
    box-shadow: 5px 5px 5px rgba(138, 163, 212, 0.6);
    transition: all 0.3s;
    display: flex;
    align-items: center;
}
.report_wrap .info_block .dl_btn:hover {
    box-shadow: none;
}

.report_wrap .info_block .dl_btn p {
    font-size: 22px;
    color: #007260;
    line-height: 1;
}

.report_wrap .info_block .dl_btn img {
    width: 60px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    transition: all 0.3s;
}

.report_wrap .info_block .dl_btn:hover img {
    right: 5px;
}

.report_wrap .detail_block {
    width: calc(96% - 360px);
    padding: 95px 40px 100px;
    background-color: white;
    border-radius: 20px;
}

.report_wrap .detail_block .block_head {
    max-width: 670px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 45px;
    position: relative;
}

.report_wrap .detail_block .block_head::before {
    content: "";
    width: 100%;
    height: 2px;
    /* background-color: #d9d9d9; */
    background-color: #007260;
    position: absolute;
    top: 100%;
    left: 0;
}
.report_wrap .detail_block .block_head::after {
    content: "";
    width: 190px;
    height: 2px;
    background-color: #007260;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
}

.report_wrap .detail_block .block_head h2 {
    font-size: 35px;
    line-height: 1;
}

.report_wrap .detail_block .detail_item {
    max-width: 670px;
    width: 100%;
    margin: 50px auto 0;
}

.report_wrap .detail_block .detail_item + .detail_item {
    margin-top: 70px;
}

.report_wrap .detail_block .detail_item h3 {
    font-size: 25px;
    line-height: 30px;
    color: #007260;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.report_wrap .detail_block .detail_item h3::before {
    content: "";
    width: 18px;
    min-width: 18px;
    height: 18px;
    border-radius: 3px;
    background-color: #007260;
    margin-top: 6px;
}

.report_wrap .detail_block .detail_item .item_text {
    font-size: 16px;
    line-height: 35px;
    margin-top: 15px;
}

.report_wrap .detail_block .detail_item .web_btn {
    width: 275px;
    height: 60px;
    border-radius: 30px;
    margin: 25px 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #009f86;
    background: linear-gradient(
        90deg,
        rgba(0, 159, 134, 1) 0%,
        rgba(0, 114, 96, 1) 50%,
        rgba(0, 159, 134, 1) 100%
    );
    background-position: left center;
    background-size: 200%;
    transition: all 0.3s;
}

.report_wrap .detail_block .detail_item .web_btn:hover {
    background-position: right center;
}

.report_wrap .detail_block .detail_item .web_btn p {
    font-size: 18px;
    line-height: 1;
    color: white;
}

.report_wrap .detail_block .detail_item .web_btn img {
    position: absolute;
    width: 7.6px;
    top: 0;
    bottom: 0;
    right: 22px;
    margin: auto;
    transition: all 0.3s;
}
.report_wrap .detail_block .detail_item .web_btn:hover img {
    right: 10px;
}

.back_btn {
    max-width: 350px;
    width: 100%;
    height: 80px;
    margin: 105px auto 0;
    border-radius: 40px;
    padding-left: 105px;
    position: relative;
    background-color: white;
    border: solid 1.5px #007260;
    box-shadow: 5px 5px 5px rgba(138, 163, 212, 0.6);
    transition: all 0.3s;
    display: flex;
    align-items: center;
}
.back_btn:hover {
    box-shadow: none;
}

.back_btn p {
    font-size: 22px;
    color: #007260;
    line-height: 1;
}

.back_btn img {
    width: 60px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    transition: all 0.3s;
}

.back_btn:hover img {
    right: 5px;
}

@media screen and (max-width: 1300px) {
    .report_wrap {
        flex-wrap: wrap;
        gap: 50px;
        max-width: 900px;
        justify-content: center;
    }

    .report_wrap .detail_block {
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .report_wrap {
        margin-top: 50px;
    }

    .report_wrap .info_block .dl_btn,
    .back_btn {
        max-width: 320px;
        height: 55px;
        border-radius: 27.5px;
        padding-left: 0;
        justify-content: center;
    }

    .report_wrap .info_block .dl_btn,
    .back_btn {
        margin: 30px auto 0;
    }

    .back_btn {
        margin-top: 75px;
    }

    .report_wrap .info_block .dl_btn p,
    .back_btn p {
        font-size: 16px;
    }

    .report_wrap .info_block .dl_btn img,
    .back_btn img {
        width: 42px;
        right: 12px;
    }

    .report_wrap .detail_block {
        padding: 60px 25px;
    }

    .report_wrap .detail_block .block_head {
        padding-bottom: 30px;
    }

    .report_wrap .detail_block .block_head::after {
        width: 150px;
    }

    .report_wrap .detail_block .block_head h2 {
        font-size: 28px;
    }

    .report_wrap .detail_block .detail_item {
        margin-top: 35px;
    }

    .report_wrap .detail_block .detail_item + .detail_item {
        margin-top: 55px;
    }

    .report_wrap .detail_block .detail_item h3 {
        font-size: 20px;
        line-height: 25px;
    }

    .report_wrap .detail_block .detail_item h3::before {
        width: 16px;
        height: 16px;
        min-width: 16px;
        margin-top: 4.5px;
    }

    .report_wrap .detail_block .detail_item .item_text {
        line-height: 25px;
    }

    .report_wrap .detail_block .detail_item .web_btn {
        width: 200px;
        height: 45px;
        border-radius: 22.5px;
        margin: 25px 0 0 auto;
    }

    .report_wrap .detail_block .detail_item .web_btn p {
        font-size: 16px;
    }

    .report_wrap .detail_block .detail_item .web_btn img {
        width: 7px;
    }
}
