html {
    scroll-padding-top: 70px;
}

.blog-details {
    max-width: 2560px;
    width: 100%;
    margin: 0 auto;
    background-color: #FBFBFB;
    padding-bottom: 80px;


    .blog-nav-logo {
        width: 100%;
        margin: 0 auto;
        background-color: #FFFFFF;

        &>div {
            max-width: 1440px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            align-items: center;
            height: 60px;
        }
    }

    .blog-details-title {
        max-width: 1440px;
        width: 100%;
        margin: 0 auto;
        padding: 19px 0px;
        display: flex;
        align-items: center;

        h1 {
            font-family: PingFang SC, PingFang SC;
            font-weight: 600;
            font-size: 20px;
            color: #333333;
        }
    }

    .blog-details-content {
        display: flex;
        justify-content: center;
        flex-direction: row-reverse;
        max-width: 1140px;
        width: 100%;
        margin: 0 auto;
        row-gap: 20px;
        column-gap: 20px;

        .blog-details-left {
            max-width: 100%;
            width: 800px;

            .head-images {
                width: 100%;
                display: flex;
                row-gap: 16px;
                column-gap: 16px;

                .images-item {
                    width: 50%;
                    height: 235px;
                    box-sizing: border-box;
                    background: #EEEEEE;
                    border-radius: 8px 8px 8px 8px;
                    border: 1px solid #FFFFFF;
                }
            }

            .blog-author {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: center;
                margin-top: 16px;

                .user {
                    display: flex;
                    align-items: center;
                    column-gap: 8px;
                    row-gap: 8px;
                    font-weight: 400;
                    font-size: 14px;
                    color: #666666;

                    .avatar {
                        width: 32px;
                        height: 32px;
                        border-radius: 50%;
                        background: #D9D9D9;
                    }
                }

                .release-time {
                    font-weight: 400;
                    font-size: 14px;
                    color: #666666;
                }
            }

            h2 {
                font-family: Source Han Sans SC, Source Han Sans SC;
                font-weight: 500;
                font-size: 20px;
                color: #333333;
                margin-top: 16px;
            }

            .content-banner {
                width: 100%;
                height: 150px;
                background: #DEDEDE;
                border-radius: 8px;
                margin-top: 16px;
            }

            p {
                font-family: Source Han Sans SC, Source Han Sans SC;
                font-weight: 400;
                font-size: 14px;
                color: #666666;
                margin-top: 16px;
            }
        }

        .blog-details-right {
            max-width: 100%;
            width: 320px;
            display: flex;
            flex-direction: column;
            row-gap: 20px;
            column-gap: 20px;
            position: sticky;
            top: 60px;
            height: 1040px;
            overflow: auto;

            .title-navigation {
                width: 100%;
                box-sizing: border-box;
                padding: 20px;
                display: flex;
                flex-direction: column;
                row-gap: 16px;
                column-gap: 16px;
                border-radius: 4px 4px 4px 4px;
                border: 1px solid #EEEEEE;

                h2 {
                    font-family: PingFang SC, PingFang SC;
                    font-weight: 600;
                    font-size: 20px;
                    color: #333333;
                }

                a {
                    font-family: PingFang SC, PingFang SC;
                    font-weight: 400;
                    font-size: 16px;
                    color: #666666;
                    display: block;

                }

                .ez-toc-link {
                    box-sizing: border-box;
                    width: 100%;
                    padding: 4px 8px;
                    background: #F4F4F4;
                    border-left: 2px solid #D0D0D0;
                    margin-bottom: 4px;
                }

                .active {
                    background: rgba(83, 41, 252, 0.1);
                    border-left: 2px solid #5329FC;
                    margin-bottom: 4px;
                    font-weight: 600;
                    color: #5329FC;
                }

            }

            .package-content {
                width: 100%;
                box-sizing: border-box;
                padding: 20px;
                display: flex;
                flex-direction: column;
                row-gap: 16px;
                column-gap: 16px;
                border-radius: 4px 4px 4px 4px;
                border: 1px solid #EEEEEE;

                a {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    width: 100%;
                    box-sizing: border-box;
                    padding: 10px;
                    border-radius: 8px;

                    h2 {
                        font-weight: 500;
                        font-size: 16px;
                        color: #333333;
                    }

                    p {
                        font-weight: 600;
                        font-size: 14px;
                        color: #FF6404;
                        margin-top: 8px;
                    }
                }

                a:hover{
                    background: #F9F9F9;
                }
            }

        }
    }
}


@media screen and (max-width:1440px) {
    .blog-details {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;

        .blog-details-content {
            flex-wrap: wrap;

            .blog-details-right {
                width: 100%;
                position: relative;
                top: 0px;
                height: auto;
            }

            .blog-details-left {
                width: 100%;


            }
        }
    }
}

@media screen and (max-width:700px) {
    .blog-details {
        .blog-details-content {
            .blog-details-left {
                .head-images {
                    flex-wrap: wrap;

                    .images-item {
                        width: 100%;
                    }
                }
            }
        }
    }

}

body {
    font-family: SourceHanSansCN_Regular, Helvetica, Tahoma, Arial, "Hiragino Sans GB", "Hiragino Sans GB W3", "Microsoft YaHei", STXihei, STHeiti, Heiti, SimSun, sans-serif;
    font-size: 16px;
    color: #030057;
}

* {
    margin: 0;
    padding: 0
}

em,
i {
    font-style: normal
}

div,
span,
p,
img,
i,
ul,
li,
a {
    caret-color: transparent
}

li {
    list-style: none
}

img {
    border: 0;
    vertical-align: middle;
    border: none
}

button {
    cursor: pointer
}

a {
    color: #333;
    text-decoration: none
}

input,
textarea {
    outline: none;
    caret-color: #999
}