@import "../../less/variables";


.home_wrap{
  padding:32px 0 32px 24px;
  .head_wrap{
    border-bottom:1px solid #eee;
    padding-bottom:24px;
    button{
      margin-right:20px;
    }
  }
  .middle_wrap{
    padding: 32px 24px 32px 0;
    .text_title{
      display:inline-block;
    }
  }
  //.content_wrap{
  //  margin-top:16px
  //}
}
 
.content_wrap{

  margin-top:16px
  

}   



.empty_list{
  font-size:12px;
  color:#81818b;
  text-align:center;
  padding:40px 0;
}
.message_list_head{ 
  background-image: url(img/组1.png);
  background-size: cover;
  -webkit-background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  width:100%;
  min-height:130px;
  border-bottom: 1px solid @border-color;
  text-align:center;
  padding:20px;
  .year_month{
    font-size:12px;
    color:#737c88;
  }
  .day{
    font-size:48px;
    color:#f08e42;
    line-height: 1.3;
    font-weight: 500;
  }
  .week{
    font-size:12px;
    color:#737c88; 
  }
}
.message_detail_wrap{
  background-image: url(img/插画背景.png);
  background-size: cover;
  -webkit-background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 437px;
  .empty_detail{ 
    width:100%;
    height:auto;
    text-align: center;
    font-size: 12px; 
    padding:8px;
    img{
      width:60%;
      margin-top: 120px;
    }
    div{
      margin-top:16px;
      color: #999;
      text-align: center;
    }
  }
  .todo_detail{
    text-align:left;
    .todo_detail_item{
      min-height: 45px;
      font-size: 12px;
      padding: 10px;
      border-bottom: 1px dotted @border-color;
      position: relative;
      .todo_detail_item_title{
        display: inline-block;
        min-width: 65px;
        text-align: left;
      }
    }
  }
}
.message_detail_wrap.message_have_detail{
  background-image:none;
}
.message_detail_bottom_wrap{
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0; 
  text-align:center;
  border-top: 1px solid @border-color;
  .bottom_btn:hover{
    color:#409eff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    border-color: transparent; 
  }
  .bottom_btn{
      transition: all .3s;
  }
}
.calendar_top_toolbar{
  padding:20px;
  overflow: hidden;
}
.card_title_wrap{
  font-size: 14px;
  color: #333;
}
 
.items_warp{
  height  :136px;
  width   :340px;
  display :inline-block;
  margin-right  :30px;
  margin-bottom :30px;
  .items_img,.items_done_img{
     width :23%;
     height:100%;
     float :left;
     border:1px solid #5195f8;
     background :#5195f8;
     line-height:134px;
     text-align :center;
  }
  .items_done_img{
    background :#d2d2d2;
    border     :1px solid #d2d2d2;
  }
  .items_body{
     width   :77%;
     height  :100%;
     float   :left;
     padding :12px;
     position:relative;
     border  :1px solid #eeeeee;
     .items_title,.items_done_title{
        width    :222px;
        font-size:14px;
        color    :#5195f8;
     }
     .items_done_title{
       color    :#888;
     }
     .items_address,.items_done_address{
       color     :#999;
       margin-top:16px;
       overflow  :hidden;
     }
     .items_time,.items_done_time{
       color     :#999;
       margin-top:8px;
     }
     .items_button{
       min-width:40px;
       height   :22px;
       padding  : 0;
       position :absolute;
       left     :12px;
       bottom   :8px;
       color    :#5195f8;
       border-color:#5195f8;
     }
  } 
}
.card_title_wrap:before{
    content: " ";
    width: 4px;
    height: 17px;
    display: inline-block;
    margin-right: 8px;
    vertical-align: sub;
    background-color: #3e7ad9;
    border-radius: 2px;
}
.link_wrap{ 
  width:100%;
  .link_item{
    cursor: pointer;
    transition: all .3s;
    display:inline-block;
    padding: 10px 0px;
    width: 120px;
    border-radius:4px;
    text-align:center;
    color: #1f2d3d;
    font-size: 13px;
    div{
      margin-top:10px;
    }
  }
  .link_item:hover{
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    border-color: transparent;
  }
}
.todo_list{
  max-height: 298px;
  overflow: auto;
  .todo_list_item.selected,.selected.todo_list_item:hover,
  .todo_list_item.selected .line_through{
    background-color: #409eff;
    color: #fff;
  }
  .todo_list_item{
    min-height: 44px;
    padding: 10px;
    border-bottom: 1px dotted @border-color;
    position: relative;
    transition: all .3s;
    width:100%;
    cursor: pointer;
    .icon_right{
      position: absolute;
      right: 5px;
      top: 40%;
    }
    .todo_list_item_title{
      margin-right: 8px;
      display: inline-block;
    }
    .line_through{
      text-decoration: line-through;
      color:#999;
    }
  }
  .todo_list_item:hover{
    background-color:rgba(64, 158, 255, 0.2);
  }
}