
.blogs, .blogs_info_page, .all_news_list, .blogs_search {
    width: 100%

}

.blogs_list {
    padding: 15px;
}

.blogs_list i {
    width: 90px;
    height: 68px;
    margin: 0 10px 10px 0
}

.blogs_list h2 {
    font-size: 15px;
    white-space: inherit;
    line-height: inherit;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    margin: 10px 0;
}

/*blogs*/
.blogs {
    width: 90%;
    float: left;
}

.blogs ul {
    margin-top: 20px;
    text-align: center
}

.blogs_list {
    overflow: hidden;
    position: relative;
    transition: all .8s;
    padding: 20px;
    background: rgba(232, 222, 222, 0.83);
    margin-bottom: 20px;
    align-content: center
}

.blogs_list i {
    display: block;
    width: 210px;
    height: 158px;
    background: #ccc;
    overflow: hidden;
    float: left;
    margin-right: 20px;
    border-radius: 3px;
}

.blogs_list i img {
    width: 100%;
    min-height: 100%;
    transition: all .6s;
}

.blogs_list h2 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 10px 0;
    line-height: 28px;
    font-size: 20px;
}

.blogs_list p {
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
}

.blogs_list:hover {
    box-shadow: 0px 12px 8px -12px #c0bebe;
}

.blogs_list h2:hover {
    color: #012684;
}

.blogs_list img:hover {
    transform: scale(1.1);
}

.blogs_base {
    color: #999;
    font-size: 14px;
    margin: 30px 0 0 0;
    line-height: 24px;
}

.blogs_base a {
    color: #999;
}

.blogs_base span {
    margin-right: 20px;
    padding-left: 24px;
    line-height: 24px;
    display: block;
    float: left;
}

span.blogs_time {
    background: url(../images/icon_time.png) no-repeat left center;
    background-size: 20px;
}

span.blogs_onclick {
    background: url(../images/icon_fire.png) no-repeat left center;
    background-size: 20px;
}

a.read_more {
    background: #012684;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 8px 20px;
    border-radius: 4px;
    width: 80px;
    float: right;
}

.icon_more {
    float: right;
    background: url(../images/icon_more.png) no-repeat left center;
    background-size: 20px;
    text-align: center;
    margin-top: 8px;
    font-size: 14px;
    padding-left: 30px;
    font-weight: normal;
}

.icon_more a {
    color: #808595;
}

.icon_more a:hover {
    color: #012684;
}

.rbox {
    float: right;
    width: 28%;
}

ul {

    padding-inline-start: 0px;
}


.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.todo-column {
    background-color: #fff;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
}

.todo-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-top-left-radius: 15px; /* 圆角 */
    border-bottom-right-radius: 15px; /* 圆角 */
    border-top-right-radius: 0; /* 直角 */
    border-bottom-left-radius: 0; /* 直角 */
    position: relative;
    transition: background-color 0.3s; /* 添加颜色过渡效果 */
}

.todo-item:hover {
    transform: scale(0.995);
    box-shadow: none;
    background: rgb(255, 241, 219);
    background: -moz-linear-gradient(left, rgb(255, 231, 194), rgb(255, 244, 228));
    background: -webkit-linear-gradient(left, rgb(255, 231, 194), rgb(255, 244, 228));
    background: -o-linear-gradient(left, rgb(255, 231, 194), rgb(255, 244, 228));
}

.todo-item svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.progress-bar {
    width: 0%;
    height: 100%;
    border-top-right-radius: 15px; /* 圆角 */
    border-bottom-left-radius: 15px; /* 圆角 */
    border-top-left-radius: 0; /* 直角 */
    border-bottom-right-radius: 0; /* 直角 */
    position: absolute;
    top: 0;
    left: 0;
    background-color: #4caf50;
    transition: width 1s ease;
}

.todo-item .buttons {
    display: flex;
    align-items: center;
}

.todo-item button {
    margin-left: 10px;
    position: relative;
    cursor: pointer;
}

.buttons button {
    width: 30px;
    height: 30px;
    margin: 10px 0 0 0;
    float: left;
    background: none;
    position: relative;
    border: 0px;
    outline: none;
    cursor: pointer;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.todo-item .buttons button:hover:before {
    content: attr(data-tooltip);
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 165, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.todo-item .buttons button:hover:before {
    opacity: 1;
}


.buttons button svg {
    width: 22px;
    height: 22px;
}

.buttons button svg .fill {
    transition: all 0.3s ease-out;
}

.buttons button.deleteButton svg .fill {
    fill: #C0CECB;
}

.buttons button.c.buttons button.checkButton svg .noFill {
    fill: none;
}

.buttons button.checkButton svg .noFill {
    fill: none;
}

.buttons button.checkButton:hover svg .noFill, ul.todo#completed li .buttons button.checkButton svg .noFill {
    fill: rgb(84, 201, 113);
}

.buttons button.checkButton:hover svg .fill, ul.todo#completed li .buttons button.checkButton svg .fill {
    fill: #fff;
}

.buttons button.deleteButton:hover svg .fill {
    fill: rgb(201, 41, 41);
}

.buttons button.deleteButton svg .fill {
    fill: #C0CECB;
}

.buttons button.deleteButton:hover svg .fill {
    fill: rgb(201, 41, 41);
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.drop-area {
    list-style: none;
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}

.drop-text {
    font-size: 16px;
    color: #666;
}

.drop-area.dragover {
    background-color: #f0f0f0;
}

/* 样式可以根据你的需求进行自定义 */
.modal-2 {
    display: none; /* 默认隐藏 */
    position: fixed; /* 固定定位 */
    top: 50%; /* 位于屏幕顶部的 50% 处 */
    left: 50%; /* 位于屏幕左侧的 50% 处 */
    transform: translate(-50%, -50%); /* 居中 */
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 90%; /* 设置最大宽度 */
    width: 60%; /* 自适应内容宽度 */
    height: 90%;
    list-style: none;
    z-index: 99;
}

.modal-content {
    width: 100%; /* 保证内容宽度充满 */
}

.modal-overlay-2 {
    display: none; /* 默认隐藏 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明黑色遮罩 */
}