a,
ul,
li {
    text-decoration: none !important;
}

body {
    font-family: "Nunito", sans-serif;
    background-color: whitesmoke;
}

body::before {
    content: "";
    height: 56px;
    display: block;
}

/*
box样式
*/
.box {
    margin-top: 10px;
    background-color: white;
    padding: 10px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: box-shadow 0.3s ease;
}

.box-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: #ddd solid 2px;
    position: relative;
}

.box-title h3 {
    transition: color 0.3s ease-out;
}

.box-title hr {
    position: absolute;
    bottom: 0;
    border-radius: 2px;
    height: 4px;
    width: 0;
    opacity: 1;
    color: #ec691f;
    transition: width 0.3s ease;
}

.box:hover .box-title hr {
    width: 100px;
}

.box:hover .box-title h3 {
    color: #fa2850;
}

.box:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/*
box样式 完
*/
.article-info {
    margin: 2px;
    padding: 10px 0 10px 0;
    background-color: #f8f8f8;
    color: #999aa9;
    font-weight: 100;
    font-size: 14px;
}

.blog-content img {
    width: 100%;
    height: auto;
}

/*文章列表*/
.blog-box {
    margin-top: 10px;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: box-shadow 0.3s ease;
    position: relative;
}

.blog-box:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.blog-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 1.75rem;
    padding-bottom: 10px;
}

.blog-summary {
    font-size: 1rem;
    color: #666;
}

.blog-info {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 100;
    color: lightslategray;
}

.blog-title hr {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 2px;
    height: 0;
    width: 5px;
    opacity: 1;
    color: #fa2850;
    transition: all 0.3s ease;
}

.blog-box:hover .blog-title hr {
    height: 75%;
}

.page-box {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

/*热门文章*/
.hot-blog {
    border-bottom: #ddd 0.5px solid;
}

.hot-blog .title {
    font-size: 14px;
    color: #666;
}

.hot-blog span {
    font-size: 14px;
    color: #999aa9;
}

.hot-blog img {
    width: 1rem;
    height: 1rem;
}

.hot-blog:hover .title {
    color: black;
}

.fa-star {
    color: #fa2850;
}