﻿html, body {
    background: white;
}

.header {
    box-shadow: 0 0 10px 0 #ccc;
}
.main {
    width: 1200px;
    border: none;
    background: none;
    margin: 30px auto 40px;
}
.mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    opacity: 0.5;
    z-index: 9999;
}

.login-container {
    position: absolute;
    z-index: 10000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

    .login-container .login-layer {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

        .login-container .login-layer .login-form {
            background: white;
            width: 500px;
            display: flex;
            flex-direction: column;
            position: relative;
        }

            .login-container .login-layer .login-form .login-header {
                text-align: center;
                padding: 30px 0;
                border-bottom: 1px solid #ccc;
            }

                .login-container .login-layer .login-form .login-header img {
                    height: 40px;
                }

            .login-container .login-layer .login-form .login-input-area {
                padding-top: 50px;
                min-height: 150px;
                display: flex;
                flex-direction: column;
                align-items: center;
                margin: 0 50px;
            }

            .login-container .login-layer .login-form .login-tips {
                padding: 0 50px 20px;
                color: #666;
                line-height: 30px;
            }

            .login-container .login-layer .login-form .login-input-area .login-form-input {
                border: 1px solid #ccc;
                height: 40px;
                line-height: 40px;
                width: 100%;
                display: flex;
            }

                .login-container .login-layer .login-form .login-input-area .login-form-input span {
                    padding: 0 10px;
                }

                .login-container .login-layer .login-form .login-input-area .login-form-input input {
                    width: 250px;
                    height: 100%;
                    border: none;
                    line-height: 40px;
                    margin-left: 10px;
                    font-size: 16px;
                    flex: 1;
                }

            .login-container .login-layer .login-form .login-input-area .login-form-buttons {
                width: 100%;
                text-align: center;
                margin: 20px 0;
                border: 1px #185bb8 solid;
            }

                .login-container .login-layer .login-form .login-input-area .login-form-buttons button {
                    width: 100%;
                    height: 40px;
                    background: #185bb8;
                    color: white;
                    font-size: 16px;
                    border: none;
                }

.report-tabs {
    display: flex;
    flex-wrap: wrap;
}

    .report-tabs .report-tab-item {
        flex: 0 0 20%;
    }

        .report-tabs .report-tab-item .item {
            height: 40px;
            line-height: 40px;
            background: #ccc;
            color: #4a4a4a;
            font-size: 16px;
            text-align: center;
            margin: 5px 2px;
            cursor:pointer;
        }

        .report-tabs .report-tab-item.on .item {
            background: #185bb8;
            color: white;
        }

.report-search {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin: 20px 0;
    height: 40px;
    font-size: 16px;
}

    .report-search .report-search-keyword {
        height: 100%;
    }

    .report-search .report-input {
        height: 100%;
        line-height: 40px;
        border: 1px solid #ccc;
        width: 480px;
        text-indent:1em;
    }

    .report-search .search-btn {
        height: 40px;
        background: #185bb8;
        color: white;
        border: none;
        width: 150px;
        border: 1px solid #185bb8;
    }

    .report-search select {
        height: 40px;
        border: 1px solid #ccc;
        width: 250px;
        text-indent:1em;
    }

.report-list .report-head, .report-list .report-item {
    display: flex;
    justify-content: space-between;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size:14px;
}

.report-head {
    background-color: #94c2f7;
    font-weight: bold;
}
.report-item{
    border-bottom:1px solid #ddd;
    cursor:pointer;
}
    .report-item:hover {
        border-bottom-color: #94c2f7;
    }
    .report-head .date, .report-item .date {
        width: 150px;
    }

    .report-head .title, .report-item .title {
        flex: 1;
        text-align:left;
    }

    .report-head .category, .report-item .category {
        width: 180px;
    }
.close.icon {
  color: #000;
  position: absolute;
  margin-top: 0;
  margin-left: 0;
  width: 21px;
  height: 21px;
top:5px;right:5px;
cursor:pointer;
}

.close.icon:before {
  content: '';
  position: absolute;
  top: 10px;
  width: 21px;
  height: 1px;
  background-color: currentColor;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.close.icon:after {
  content: '';
  position: absolute;
  top: 10px;
  width: 21px;
  height: 1px;
  background-color: currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}


    @media screen and (max-width:768px){
        body{
            min-width:100%;
        }
        .header {
            padding: 11px 8px 11px 10px;
        }
        .main{
            width:100%;
        }
        .report-tabs .report-tab-item{
            flex: 0 0 50%
        }
        .report-search{
            flex-direction:column-reverse;
            height:auto;
            margin:2px;
        }
        .report-search select{
            width:100%;
        }
            .report-search .report-search-keyword {
                height: 100%;
                display: flex;
                justify-content: left;
                padding-top:10px;
            }
            .report-search .report-input{
                flex:1;
                height:40px;                
            }
            .report-search .search-btn{
                width:100px;
            }
          .report-list  .report-item{
                min-height:40px;
                height:auto;
                line-height:normal;
                align-items:center;
            }
        .report-head .date, .report-item .date {
            width: 100px;
        }
        .report-item .title{
            line-height:normal;
        }
        .report-head .category, .report-item .category {
            width: 100px;
        }
        .login-container .login-layer .login-form{
            width:auto;
        }
            .login-container .login-layer .login-form .login-input-area .login-form-input input{
                margin-left:0;
                font-size:14px;
            }
    }