
html {
    font-size: 20px;
    width: 100%;
    height: 100%;
}
body {
    margin: 0;
    width: 100%;
    height: 100%;
}
.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1000;
}
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #e60012;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#app {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #000;
}

.nav_menu {
    width: 1.8rem;
}
.nav_logo {
    width: 8rem;
}
.wrapper {
    z-index: 11;
    background: #000000b3;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;

    display: flex;
    flex-direction: column;
    background-color: #000;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 20px;
    box-sizing: border-box;
}
.wrapper_close {
    width: 1.8rem;
}
.menu {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
.menu_item {
    padding: 10px 20px;
    margin-top: 20px;
    box-sizing: border-box;
    border-bottom: 1px solid #FFF;
    
    text-decoration:none;
    color:inherit;
    cursor:auto;
}
.content {
    display: flex;
    flex-direction: column;
    font-family: "Poppins";
    padding: 16px;
}
.content_item {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid #000;
    text-decoration:none;
    color:inherit;
    cursor:auto;
}
.content_item_img {
    width: 100%;
}
.content_item_info {
    display: flex;
    flex-direction: column;
    padding: 16px;
    box-sizing: border-box;
}
.content_item_info_title {
    font-size: 1rem;
    color: #000;
    margin-top: 12px;
    font-weight: 600;
}
.content_item_info_content {
    margin-top: 12px;
    color: #333;
    font-size: 0.8rem;
}
.content_item_info_author {
    margin-top: 12px;
    display: flex;
    align-items: center;
    color: #000;
    font-size: 0.7rem;
}
.content_item_info_author_img {
    width: 1.2rem;
    margin-right: 10px;
}
.content_item_info_author_name {
    margin-left: 10px;
    font-weight: 600;
}
.content_item_footer {
    background-color: #000;
    padding: 8px;
    color: #fff;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}
.content_item_footer_read {
    padding-left: 8px;
    box-sizing: border-box;
    border-left: 1px solid #fff;
}

.content_item_list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    text-decoration:none;
    color:inherit;
    cursor:auto;
}
.content_item_list_top{
    display: flex;

}
.content_item_list_top_img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}
.content_item_list_top_info {
    width: 100%;
    border-left: 6px solid #e60012;
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    font-weight: 600;
    padding-left: 16px;
    box-sizing: border-box;
}
.content_item_list_top_info_footer {
    font-size: 0.6rem;
    color: #666;
    display: flex;
    font-weight: 500;
    margin-top: 10px;
}
.content_item_list_top_info_footer_read {
    padding-left: 10px;
    border-left: 1px solid #666;
    margin-left: 10px;
}
.content_item_list_author {
    margin-top: 12px;
    display: flex;
    align-items: center;
    color: #000;
    font-size: 0.7rem;
}
.content_item_list_author_img {
    width: 1.2rem;
    margin-right: 10px;
}
.content_item_list_author_name {
    margin-left: 10px;
    font-weight: 600;
}
.content_menu_title {
    font-size: 1.3rem;
    font-weight: 600;
}



.detail {
    display: flex;
    flex-direction: column;
    font-family: "Poppins";
    padding: 16px;
}
.detail_title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
}
.detail_summary {
    font-size: 0.7rem;
    color: #666;
    margin: 20px 0;
}
.detail_author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}
.detail_author_top {
    display: flex;
    align-items: start;
}
.detail_author_avatar {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.detail_author_info{
    display: flex;
    flex-direction: column;
}
.detail_author_info_name {
    font-size: 0.7rem;
    color: #000;
    font-weight: 600;
}
.detail_author_info_editor {
    font-size: 0.6rem;
    color: #666;
}
.detail_author_info_date {
    font-size: 0.6rem;
    color: #666;
    font-weight: 600;
}
.detail_author_read {
    display: flex;
    align-items: center;

}
.detail_author_read_time {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.detail_author_read_info {
    font-size: 0.7rem;
    color: #666;
}
.detail_thumbnail {
    width: 100%;
    margin-bottom: 20px;
}
.detail_content {
    display: flex;
    flex-direction: column;
    color: #333;
    font-size: 0.8rem;
}
.detail_content_item {
    margin-top: 20px;
}

.detail_list_like {
    display: flex;
    flex-direction: column;
    font-family: "Poppins";
    padding: 16px;
}
.detail_list_like_item {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid #000;
    text-decoration:none;
    color:inherit;
    cursor:auto;
}
.detail_list_like_item_img {
    width: 100%;
}
.detail_list_like_item_info {
    display: flex;
    flex-direction: column;
    padding: 8px;
    box-sizing: border-box;
}
.detail_like_title {
    font-weight: 600;
    font-size: 1rem;
    padding-bottom: 18px;
    border-bottom: 2px solid #ccc;
    margin-bottom: 20px;
}
.detail_list_like_item_info_title {
    font-size: 0.9rem;
    color: #000;
}
.detail_list_like_item_info_content {
    margin-top: 12px;
    color: #333;
    font-size: 0.8rem;
}
.detail_list_like_item_info_author {
    margin-top: 12px;
    display: flex;
    align-items: center;
    color: #000;
    font-size: 0.7rem;
}
.detail_list_like_item_info_author_img {
    width: 1.2rem;
    margin-right: 10px;
}
.detail_list_like_item_info_author_name {
    margin-left: 10px;
    font-weight: 600;
}
.detail_list_like_item_footer {
    background-color: #000;
    padding: 8px;
    color: #fff;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}