/* æ¸…æ¥šé»˜è®¤å±žæ€§ */
div {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
    list-style: none;
}
a {
    text-decoration: none;
}
.clearfix::before,
.clearfix::after{
    content: '';
    display: block;
}

.clearfix::after{
    clear: both;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}
/* æ¸…æ¥šé»˜è®¤å±žæ€§ over*/


/* ä½¿ç”¨æ‰‹æœºç«¯ å¸ƒå±€ */
@media screen and (max-width: 1200px) {
    .boayer {
        width: 100%;
    }
}
@media screen and (min-width:1280px) {
    .boayer {
        width: 800px;
    }
}

body {
    max-width: 540px;
    min-width: 320px;
    margin: 0 auto;
    font: normal 14px/1.5 Tahoma, "Lucida Grande", Verdana, "Microsoft YaHei", STXihei, hei;
    color: beige;
    background: #363434;
    /* æ°¸è¿œä¸ä¼šå‡ºçŽ°æ°´å¹³æ»šåŠ¨æ¡ */
    overflow-x: hidden;
    /* é˜²æ­¢ç‚¹å‡»å‡ºçŽ°é«˜äº®æ‰€ä»¥æŠŠèƒŒæ™¯è®¾ç½®ä¸ºé€æ˜Ž */
    -webkit-tap-highlight-color: transparent;

}

/* ä½¿ç”¨æ‰‹æœºç«¯ å¸ƒå±€ over*/

header{
    display: flex;
    position: fixed;
    top: 0;
    left: 50%;
    -webkit-animation: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    height: 50px;
    /* background-color: pink; */
    background-color: rgba(32, 33, 36, 1);

}
header section{
    display: flex;
    width: 100%;
}

header section label{
    display: inline-block;
    height: 44px;
    width: 120px;
    font-size:34px;
    margin-left: 3px;
}
.div_w_content{
    position: relative;
    flex: 1;
    margin: 5px 2%;
}
#title{
    width: 96%;
    height: 34px;
}
#tijiao{
    
    display: inline-block;
    width: 80px;
    font-size:22px;
    

}

/* èº«ä½“ */
.chulifudong{
    /* å¤„ç†æµ®åŠ¨ */
    width: 100%;
    max-width: 540px;
    min-width: 320px;
    height: 50px;
}


.bodyer h2{
    padding: 15px;
    background-color: rgb(38, 39, 43);
}

.zhengzai_h2{
    color: pink;
}

.ok_h2{
    color: green;
}

.bodyer h2 span{
    display: inline-block;
    float: right;
    width: 28px;
    height: 28px;
    background-color: rgb(47, 223, 247);
    border: #9bf2fd 1px solid;
    border-radius: 50%;
    color: blue;
    text-align: center;
    line-height: 28px;
}


/* content */
#todolist, #donelist{
    padding: 18px;
}


#todolist li,#donelist li{
    display: flex;
}

#todolist li input,#donelist li input{
    margin: auto 5px;
    height: 20px;
    width: 20px; 
    
}
#todolist li p,#donelist li p{
    flex: 1;
    margin: auto 8px;
}

#todolist li a,#donelist li a{
    margin: auto 5px;
    font-size: 20px;
    color: red;
    border: 1px solid aqua;
    background-color: rgb(129, 199, 199);
    padding: 3px;
    border-radius: 8px;

}
#todolist li a:hover,#donelist li a:hover{
    color: rgb(238, 182, 27);
    border: 1px solid rgb(0, 199, 199);
    background-color: rgb(96, 146, 146);
}
.partition_content{
    width: 100%;
    height: 2px;
    background: linear-gradient(to bottom right, blue, pink);
    margin: 8px auto;
}
#donelist{
    opacity: 0.5;
}

/* è„š footer */

footer{
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
    text-align: center;
    color: bisque;
    background-color:  rgb(38, 39, 43);
}

