﻿
.center td, .center th {
    text-align: center;
}

.ui-tabs .ui-tabs-panel {
    display: block;
    border-width: 0;
    padding: 5px 0;
    background: none;
}

#tabs {
    background-color: #FFF;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 22px;
    height: auto;
    margin: 0 auto;
}

    #tabs a:link {
        color: #4D79BB;
        text-decoration: none;
    }

    #tabs a:hover {
        text-decoration: underline;
    }

    #tabs a:visited {
        text-decoration: none;
        color: #4D79BB;
    }

    #tabs ul {
        background: #ECECEC;
    }

    #tabs a {
        font-weight: bolder;
    }

.errormsg {
    padding: 30px 0;
    color: Red;
    font-size: large;
    text-align: center;
}

.ui-autocomplete {
    max-height: 300px;
    overflow: hidden;
    /*
    overflow-y: auto;
    overflow-x: hidden;
    */
}

#ui-id-1 li {
    line-height: 30px;
    height: 30px;
}

    #ui-id-1 li:hover, #ui-id-1 li:hover div {
        border: none;
        background: #ddd
    }

.ui-widget input {
    padding: 3px 6px;
    /*height:30px;*/
    width: 160px;
    margin-left: 10px;
    border: 1px solid #ccc;
}

.form-line label, .form-line select, .form-line .ui-widget {
    float: left
}

.form-line select {
    margin-left: 2px
}

.detail_wrap, .create_wrap {
    background: #f5f5f5;
    padding: 0px 20px 20px 30px;
    height: 100%;
}

.content-wrapper {
    padding: 0 0px;
}

.wrapbox h2 {
    margin-top: 0;
    /*margin-bottom: 28px;*/
    color: #2774c3;
    font-size: 20px;
    border-left: 2px solid #2774c3;
    padding-left: 20px;
    transform: translateX(-30px);
}

.clearfloat {
    zoom: 1;
}

    .clearfloat:after {
        content: "";
        display: block;
        clear: both;
        height: 0;
    }

.boxcontent {
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px 30px;
    margin-bottom: 20px;
}

.boxlist {
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px 30px;
}

.listitem table tbody .operbtn {
    padding: 3px 10px;
    background: #3670ad;
    color: #fff;
    margin-right: 4px;
    cursor: pointer;
    border-radius: 4px;
}

.listheader ul {
    border-bottom: 1px solid #ddd;
    padding: 0;
}

    .listheader ul li {
        float: left;
        color: #657289;
        height: 40px;
        line-height: 40px;
        padding: 0 10px;
        list-style: none;
        transform: translateY(1px);
        z-index: 2;
        cursor: pointer;
        text-align: center
    }

        .listheader ul li.active {
            color: #2d74bd;
            border-bottom: 2px solid #2d74bd;
            font-weight: bold;
        }

.infosave {
    margin-right: 30px;
    float: right;
}

    .infosave i {
        margin-right: 6px;
    }

.listitem button i {
    margin-right: 4px;
}

/*checkbox*/

@-moz-keyframes dothabottomcheck {
    0% {
        height: 0;
    }

    100% {
        height: 5px;
    }
}

@-webkit-keyframes dothabottomcheck {
    0% {
        height: 0;
    }

    100% {
        height: 5px;
    }
}

@keyframes dothabottomcheck {
    0% {
        height: 0;
    }

    100% {
        height: 5px;
    }
}

@keyframes dothatopcheck {
    0% {
        height: 0;
    }

    50% {
        height: 0;
    }

    100% {
        height: 12px;
    }
}

@-webkit-keyframes dothatopcheck {
    0% {
        height: 0;
    }

    50% {
        height: 0;
    }

    100% {
        height: 12px;
    }
}

@-moz-keyframes dothatopcheck {
    0% {
        height: 0;
    }

    50% {
        height: 0;
    }

    100% {
        height: 12px;
    }
}

.checkboxInput {
    display: none;
}

.check-box {
    height: 16px;
    width: 16px;
    background-color: transparent;
    border: 2px solid #a6b0c5;
    border-radius: 5px;
    position: relative;
    display: inline-block;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: border-color ease 0.2s;
    -o-transition: border-color ease 0.2s;
    -webkit-transition: border-color ease 0.2s;
    transition: border-color ease 0.2s;
    cursor: pointer;
}

    .check-box::before, .check-box::after {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        position: absolute;
        height: 0;
        width: 2px;
        background-color: #4566bd;
        display: inline-block;
        -moz-transform-origin: left top;
        -ms-transform-origin: left top;
        -o-transform-origin: left top;
        -webkit-transform-origin: left top;
        transform-origin: left top;
        border-radius: 5px;
        content: ' ';
        -webkit-transition: opacity ease .5;
        -moz-transition: opacity ease .5;
        transition: opacity ease .5;
    }

    .check-box::before {
        top: 10px;
        left: 5px;
        -moz-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

    .check-box::after {
        top: 5px;
        left: 1px;
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    input[type=checkbox]:checked + .check-box,
    .check-box.checked {
        border-color: #8ca8d4;
    }

        input[type=checkbox]:checked + .check-box::after,
        .check-box.checked::after {
            height: 8px;
            -moz-animation: dothabottomcheck 0.2s ease 0s forwards;
            -o-animation: dothabottomcheck 0.2s ease 0s forwards;
            -webkit-animation: dothabottomcheck 0.2s ease 0s forwards;
            animation: dothabottomcheck 0.2s ease 0s forwards;
        }

        input[type=checkbox]:checked + .check-box::before,
        .check-box.checked::before {
            height: 8px;
            -moz-animation: dothatopcheck 0.4s ease 0s forwards;
            -o-animation: dothatopcheck 0.4s ease 0s forwards;
            -webkit-animation: dothatopcheck 0.4s ease 0s forwards;
            animation: dothatopcheck 0.4s ease 0s forwards;
        }

