
*{
    margin:0;
    padding:0;
}

html{
    height: 100%;
}

body{
    min-height: 100%;
    position: relative;
    padding-bottom: 60px;
}

/* 图标大小 */
i {
    margin-right: 3px;
}

/* 任务数字背景的badge的颜色设置 */
span.badge {
    color: darkorange;
    font-weight: bolder;
    background-color: #333;

}

/* 导航栏的active字体 */
.navbar li a.active {
    color: darkorange;
    font-weight: bolder;
}


/* 路径导航 */
.my_navilist {
    margin-left: 17px;
    font-size: 13px;
}

/* 顶部导航的绝对定位 */
div.body-content {
    padding-top: 60px ;
}

.mynavbar{
    /*background-color:rgba(16, 16, 16,0.80);*/
    background-color: rgba(103,194,58,0.80);
}

.mynavbar a{
    color: whitesmoke;
}

.mynavbar a:hover{
    color: darkorange;
}


a span.nickname {
    margin-left: 0px;
    color: white;
}


.base-content{
    /*padding-bottom: 50px;*/
}


 /* table里面的is_active的显示*/
table .non_active {
    color: gray;
}


.myfooter{
    margin-top: -60px;
    height: 60px;
    background-color: #eee;
    text-align: center;
    line-height: 60px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.myfooter-links li{
    color: grey;
    list-style: none;
}

.newmodal{
    display: none;
}

.add-record{
    margin-bottom: 5px;
}

/* ***********弹窗图片的样式 *************/
/* 弹窗背景 */
.newmodal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.6); /* Black w/ opacity */
}

/* 图片 */
.newmodal-content {
    position: relative;
    margin: auto;
    display: block;
    width: 100%;
    max-width: 900px;
}


/* 添加动画 */
.newmodal-content, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

/* 这些是什么意思，后面再慢慢搞懂，先用起来再说 */
@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}


/* 关闭按钮 */
.img-close {
    position: fixed;
    z-index: 999; /* Sit on top */
    top: 75px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    opacity: 2.2;
}

.img-close:hover, .img-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
/*  end of  ***********弹窗图片的样式 *************/