/*#refresh{
	background-color: #000;
}*/


/*模态框宽度重置*/

@media (min-width: 768px) {
    #associationList .modal-dialog {
        width: 70%;
        margin: 30px auto;
    }
}


/* 单元格最小宽度 */

.fixed-col-widths {
    min-width: 40px!important;
}


/* 表格固定宽度 */

.table-fixed {
    table-layout: fixed;
}


/* 重置导入表格插件样式 */

#importExcelForm .file-preview-frame {
    box-shadow: none;
    float: none;
    margin: 8px auto;
    border: none;
}

#importExcelForm .file-preview-frame .file-preview-other {
    border: none;
    border-radius: 0;
}


/* 打印胸卡样式 */

.codeModal canvas {
    margin-left: auto;
    margin-right: auto;
}

.form-horizontal .control-label {
    color: black;
    font-size: 12px;
}

.form-control {
    height: 30px;
}

.form-group {
    margin-bottom: 5px;
}

img {
    max-width: 400px;
}

.content img {
    min-height: 100px;
    min-width: 100px;
    display: block;
    margin: 0 auto;
}


/*#datetime{
	width: 70%;
}*/


/*
表格文本设置为一行
*/

.czjz {
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    /* IE 9 */
    -moz-transform: translate(-50%, -50%);
    /* Firefox */
    -webkit-transform: translate(-50%, -50%);
    /* Safari 和 Chrome */
    -o-transform: translate(-50%, -50%);
    /* Opera */
}

.czjzdiv {
    position: relative;
    height: 100px;
    width: 100px;
    overflow: hidden;
}

table {

    width: 30em;

    table-layout: fixed;
    /* 只有定义了表格的布局算法为fixed，下面td的定义才能起作用。 */
}

td {

    width: 100%;

    word-break: keep-all;
    /* 不换行 */
    white-space: nowrap;
    /* 不换行 */
    overflow: hidden;
    /* 内容超出宽度时隐藏超出部分的内容 */
    text-overflow: ellipsis;
    /* 当对象内文本溢出时显示省略标记(...) ；需与overflow:hidden;一起使用。*/
}

#feedbackTable td {

    width: 100%;

    word-break: normal;
    /* 不换行 */
    white-space: normal;
}

#container {
    color: #838383;
    font-size: 12px;
}

#uploader .queueList {
    margin: 20px;
    border: 3px dashed #e6e6e6;
}

#uploader .queueList.filled {
    padding: 17px;
    margin: 0;
    border: 3px dashed transparent;
}

#uploader .queueList.webuploader-dnd-over {
    border: 3px dashed #999999;
}

#uploader p {
    margin: 0;
}

.element-invisible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
}

#uploader .placeholder {
    min-height: 350px;
    padding-top: 178px;
    text-align: center;
    background: url(http://fex.baidu.com/webuploader/images/image.png) center 93px no-repeat;
    color: #cccccc;
    font-size: 18px;
    position: relative;
}

#uploader .placeholder .webuploader-pick {
    font-size: 18px;
    background: #00b7ee;
    border-radius: 3px;
    line-height: 44px;
    padding: 0 30px;
    *width: 120px;
    color: #fff;
    display: inline-block;
    margin: 0 auto 20px auto;
    cursor: pointer;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

#uploader .placeholder .webuploader-pick-hover {
    background: #00a2d4;
}

#uploader .placeholder .flashTip {
    color: #666666;
    font-size: 12px;
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 20px;
}

#uploader .placeholder .flashTip a {
    color: #0785d1;
    text-decoration: none;
}

#uploader .placeholder .flashTip a:hover {
    text-decoration: underline;
}

#fileList {
    list-style: none;
    margin: 0;
    padding: 0;
}

#filelist:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    clear: both;
}

#fileList li {
    width: 110px;
    height: 110px;
    background: url(http://fex.baidu.com/webuploader/images/bg.png) no-repeat;
    text-align: center;
    margin: 0 8px 20px 0;
    position: relative;
    display: inline;
    float: left;
    overflow: hidden;
    font-size: 12px;
}

#fileList li p.log {
    position: relative;
    top: -45px;
}

#fileList li p.title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    top: 5px;
    text-indent: 5px;
    text-align: left;
}

#fileList li p.progress {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 8px;
    overflow: hidden;
    z-index: 50;
    margin: 0;
    border-radius: 0;
    background: none;
    -webkit-box-shadow: 0 0 0;
}

#fileList li p.progress span {
    display: none;
    overflow: hidden;
    width: 0;
    height: 100%;
    background: #1483d8 url(http://fex.baidu.com/webuploader/images/progress.png) repeat-x;

    -webit-transition: width 200ms linear;
    -moz-transition: width 200ms linear;
    -o-transition: width 200ms linear;
    -ms-transition: width 200ms linear;
    transition: width 200ms linear;

    -webkit-animation: progressmove 2s linear infinite;
    -moz-animation: progressmove 2s linear infinite;
    -o-animation: progressmove 2s linear infinite;
    -ms-animation: progressmove 2s linear infinite;
    animation: progressmove 2s linear infinite;

    -webkit-transform: translateZ(0);
}

@-webkit-keyframes progressmove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 17px 0;
    }
}

@-moz-keyframes progressmove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 17px 0;
    }
}

@keyframes progressmove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 17px 0;
    }
}

#uploader .filelist li p.imgWrap {
    position: relative;
    z-index: 2;
    line-height: 110px;
    vertical-align: middle;
    overflow: hidden;
    width: 110px;
    height: 110px;

    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;

    -webit-transition: 200ms ease-out;
    -moz-transition: 200ms ease-out;
    -o-transition: 200ms ease-out;
    -ms-transition: 200ms ease-out;
    transition: 200ms ease-out;
}

#fileList li img {
    width: 100%;
}

#fileList li p.error {
    background: #f43838;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 28px;
    line-height: 28px;
    width: 100%;
    z-index: 100;
}

#fileList li .success {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 40px;
    width: 100%;
    z-index: 200;
    background: url(../images/success.png) no-repeat right bottom;
}

#fileList div.file-panel {
    position: absolute;
    height: 0;
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#80000000', endColorstr='#80000000')\0;
    background: rgba( 0, 0, 0, 0.5);
    width: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 300;
}

#fileList div.file-panel span {
    width: 24px;
    height: 24px;
    display: inline;
    float: right;
    text-indent: -9999px;
    overflow: hidden;
    background: url(http://fex.baidu.com/webuploader/images/icons.png) no-repeat;
    margin: 5px 1px 1px;
    cursor: pointer;
}

#fileList div.file-panel span.rotateLeft {
    background-position: 0 -24px;
}

#fileList div.file-panel span.rotateLeft:hover {
    background-position: 0 0;
}

#fileList div.file-panel span.rotateRight {
    background-position: -24px -24px;
}

#fileList div.file-panel span.rotateRight:hover {
    background-position: -24px 0;
}

#fileList div.file-panel span.cancel {
    background-position: -48px -24px;
}

#fileList div.file-panel span.cancel:hover {
    background-position: -48px 0;
}


/*
*
*样式重置
*
*/


/*头部导航*/

.skin-red .main-header li.user-header,
.skin-red .main-header .navbar,
.skin-red .main-header .logo:hover {
    background-color: #3EB3FF;
}

.skin-red .main-header .navbar .sidebar-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
}

.skin-red .main-header .logo {
    background-color: #3EB3FF;
}


/*左侧导航栏*/

.user-panel>.image>img {

    width: 40px;
    height: 40px;
}

.skin-red .sidebar-menu>li:hover>a,
.skin-red .sidebar-menu>li.active>a {
    border-left-color: #3EB3FF;
}


/*赞助管理*/

.modal-body-k {
    margin-top: 10px;
    border-bottom: 1px solid #DDD;
}

.modal-body-k p {
    display: inline-block;
    margin-bottom: 5px;
    vertical-align: middle;
}

.p-title {
    width: 100px;
    color: #8E8A8A;
}

.p-content {
    width: 80%;
}

.list-group .list-group-item label {
    width: 25%;
    display: inline-block;
    vertical-align: middle;
}

.list-group .list-group-item div {
    width: 70%;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
}

.sidebar-menu {
    margin-bottom: 50px;
}

.flicker {
    -webkit-animation: flicker 2s linear infinite;
    -moz-animation: flicker 2s linear infinite;
    -o-animation: flicker 2s linear infinite;
    -ms-animation: flicker 2s linear infinite;
    animation: flicker 2s linear infinite;
}

@-webkit-keyframes flicker {
    0% {
        opacity:0.3;
    }
    50% {
        opacity:1;
    }
    100% {
        opacity:0.3;
    }
}

@-moz-keyframes progressmove {
    0% {
        opacity:0.3;
    }
    50% {
        opacity:1;
    }
    100% {
        opacity:0.3;
    }
}

@keyframes progressmove {
    0% {
        opacity:0.3;
    }
    50% {
        opacity:1;
    }
    100% {
        opacity:0.3;
    }
}


/* 加载loading*/

.spinner {
    width: 23px;
    height: 23px;
    position: absolute;
    top: 5px;
    left: 150px;
    margin-left: -11px;
    display:none;
}

.container1>div,
.container2>div,
.container3>div {
    width: 7px;
    height: 7px;
    background-color: #fff;

    border-radius: 100%;
    position: absolute;
    -webkit-animation: bouncedelay 1.2s infinite ease-in-out;
    animation: bouncedelay 1.2s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.spinner .spinner-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.container2 {
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.container3 {
    -webkit-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
}

.circle1 {
    top: 0;
    left: 0;
}

.circle2 {
    top: 0;
    right: 0;
}

.circle3 {
    right: 0;
    bottom: 0;
}

.circle4 {
    left: 0;
    bottom: 0;
}

.container2 .circle1 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.container3 .circle1 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.container1 .circle2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.container2 .circle2 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.container3 .circle2 {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.container1 .circle3 {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.container2 .circle3 {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.container3 .circle3 {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.container1 .circle4 {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.container2 .circle4 {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.container3 .circle4 {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0.0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bouncedelay {
    0%,
    80%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    40% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.tooltip-inner{
    max-width: 250px;
    padding: 4px 10px;
    color: #040404;
    background-color: #fff;
    box-shadow: 1px 3px 10px 1px #d6d6d6;
}
.tooltip.top .tooltip-arrow {
    border-top-color: #eee;
}

.children-head-tail{
    display: flex;
    justify-content: space-around;
}
.children-head-tail div:first-child{
    flex-grow: 1;
    display: flex;
}
.fixed-table-container tbody td .th-inner, .fixed-table-container thead th .th-inner{
    padding: 8px 0;
}