
@CHARSET "UTF-8";
	/*页面标题*/
		.page_title {
			width: 99%;
			margin: 0 auto;
			height: 30px;
			line-height: 30px;
			text-align: center;
			font-size: 15px;
			color: #666;
			font-weight: 600;
			background-color: #EDF4FF;
			border: 1px solid #95B8E7;
			background: -webkit-linear-gradient(top, #FFFFFF, #EDF4FF);
			background: -moz-linear-gradient(top, #FFFFFF, #EDF4FF);
			background: -o-linear-gradient(top, #FFFFFF, #EDF4FF);
			filter: progid : DXImageTransform . Microsoft .
				gradient(startColorstr = '#FFFFFF', endColorstr = '#EDF4FF');
		}
	
/*table样式   table_title表格标题样式 table1表格表体样式*/	
	 .table1,.table_title{
          border-collapse: collapse;
          border: 1px solid #95B8E7;
          width: 100%;
      }
      .table1 tr,.table_title tr{
          height: 25px;
      }
      .table1 td,.table1 th,.table_title td,.table_title th{
          text-align: center;
          font-size: 12px;
          color: #666;
          border: 1px dashed #cccccc;
      }
      .table1 tr:nth-child(2n+1),.table_title tr:nth-child(2n+1){
          background-color: #F9FBFF;
      }
      .table_title tr:nth-child(1){
          background-color: #EDF4FF;
          border: 1px solid #95B8E7;
          background: -webkit-linear-gradient(top,#FFFFFF,#EDF4FF);
          background: -moz-linear-gradient(top, #FFFFFF, #EDF4FF);
          background: -o-linear-gradient(top, #FFFFFF, #EDF4FF);
          filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#EDF4FF');
      }

      .table_title tr:nth-child(1) td{
         border: none;
      }
	  .table1 input[type="text"],.table_title input[type="text"]{
          border: none ;
          width: 100%;
          height: 100%;
          min-width:20px;
          text-align: center;
          font-size: 12px;
          background-color: transparent;
          outline: none;
          color: #666;
      }	 
	  
      /*button样式*/
      .button {
            display: inline-block;
            zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
            *display: inline;
            vertical-align: baseline;
            margin: 0 2px;
            outline: none;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            font: 12px/100% Arial, Helvetica, sans-serif;
            padding: 3px 10px;
            -webkit-border-radius: .5em;
            -moz-border-radius: .5em;
            border-radius: .5em;
            -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
            -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
            box-shadow: 0 1px 2px rgba(0,0,0,.2);
        }
        .button[disabled='disabled'] {
			color: #999;
			background: -webkit-linear-gradient(top, #ededed, #fff);
			background: -moz-linear-gradient(top, #ededed, #fff);
			background: -o-linear-gradient(top, #ededed, #fff);
			filter: progid : DXImageTransform . Microsoft .
				gradient(startColorstr = '#ededed', endColorstr = '#ffffff');
		}
        
        .button:hover {
            text-decoration: none;
        }
        .button:active{
            position: relative;
            top: 1px;
        }
        .white {
            color: #606060;
            border: solid 1px #b7b7b7;
            background: #fff;
            background: -webkit-linear-gradient(top,#fff,#ededed);
            background: -moz-linear-gradient(top, #fff, #ededed);
            background: -o-linear-gradient(top, #fff, #ededed);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
        }
        .white:not([disabled='disabled']):hover {
            background: #ededed;
            background: -webkit-linear-gradient(top,#fff,#dcdcdc);
            background: -moz-linear-gradient(top, #fff, #dcdcdc);
            background: -o-linear-gradient(top, #fff, #dcdcdc);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
        }
        .white:active {
            color: #999;
            background: -webkit-linear-gradient(top,#ededed, #fff);
            background: -moz-linear-gradient(top, #ededed, #fff);
            background: -o-linear-gradient(top, #ededed,  #fff);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#ffffff');
        }
        /*input样式*/
		.testTxt{
		    -webkit-border-radius: 3px;
		    -moz-border-radius: 3px;
		    border-radius: 3px;
		    border: 1px solid #cccccc;
		    outline: none;
		    color: #808080;
		}
		.blue:focus {
		    transition: border  linear .2s, box-shadow linear .5s;
		    -moz-transition: border linear .2s, -moz-box-shadow  linear .5s;
		    -webkit-transition: border linear .2s, -webkit-box-shadow linear .5s;
		    outline: none;
		    border-color: rgba(19,105,172,.75);
		    box-shadow: 0 0 3px rgba(19,105,192,.5);
		    -moz-box-shadow: 0 0 3px rgba(241,39,232,.5);
		    -webkit-box-shadow: 0 0 3px rgba(19,105,252,3);
		}
		.red:focus {
		    transition: border  linear .2s, box-shadow linear .5s;
		    -moz-transition: border linear .2s, -moz-box-shadow  linear .5s;
		    -webkit-transition: border linear .2s, -webkit-box-shadow linear .5s;
		    outline: none;
		    border-color: rgba(185,18,27,.75);
		    box-shadow: 0 0 3px rgba(213,38,38,.5);
		    -moz-box-shadow: 0 0 3px rgba(185,18,27,.5);
		    -webkit-box-shadow: 0 0 3px rgba(185,18,27,3);
       }
		
       /*点击变色*/
		.One2 td,.One2 input{
          background: #FFEE00 !important;
          color: red !important;
		}
		.One3 td,.One3 input{
          background: #D2FFA6 !important;
          color: #666666 !important;
		}
       /*单 复选框 在12号字体下 垂直居中*/
       .center_box{
          vertical-align:middle; 
          margin-top:-2px; 
          margin-bottom:1px; 
       }
   /*快捷设置*/
    .wh100{
      width: 100%;
      height: 100%;
    }
    .w100{
      width: 100%;
    }
    .h100{
      height: 100%;
    }
    .ma{
      margin: 0 auto;
    }
	.text_default{
	  background: #FFFFFF;
	}
	.text_primary{
	  background: #337AB7;
	}
	.text_success{
	  background: #1AAD19;
	}
	.text_info{
	  background: #5BC0DE;
	}
	.text_warning{
	  background: #EFAD4D;
	}
	.text_danger{
	  background: #D9544F;
	}
	.xlc-color-red{
	  color: red;
	}
	.text-left{
	  text-align: left;
	}
	.text-right{
	  text-align: right;
	}
	.text-center{
	  text-align: center;
	}
	.input-text{
	  border: none;
	  outline: none;
	  background-color: transparent;
	}
	.left{
	  float:left;
	}
	.right{
	  float:right;
	}
	.font-de{
	  font-size:14px;
	}
	.font-sm{
	  font-size:12px;
	}
	.hr{
	  height:1px;
	  background: #eee;
	  margin: 0 auto;
	}
	.qianjinding{
	  height:10px;
	}
	.left_li{
         background: #FFE48D !important;
      }
    .neibiankuang{
      box-sizing: border-box;
	  -webkit-box-sizing: border-box;
	  -moz-box-sizing: border-box;
    }
	/*仿boot button样式*/
	.btn {
	  display: inline-block;
	  padding: 6px 12px;
	  margin-bottom: 0;
	  font-size: 14px;
	  font-weight: normal;
	  line-height: 1.42857143;
	  text-align: center;
	  white-space: nowrap;
	  vertical-align: middle;
	  -ms-touch-action: manipulation;
	      touch-action: manipulation;
	  cursor: pointer;
	  -webkit-user-select: none;
	     -moz-user-select: none;
	      -ms-user-select: none;
	          user-select: none;
	  background-image: none;
	  border: 1px solid transparent;
	  border-radius: 4px;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: .65;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}

.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.btn-xs .badge {
  top: 0;
  padding: 1px 5px;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
/***********btn-primary************/
.btn-primary {
  color: #fff;
  background-color: #428bca;
  border-color: #357ebd;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #3071a9;
  border-color: #285e8e;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #428bca;
  border-color: #357ebd;
}
.btn-primary .badge {
  color: #428bca;
  background-color: #fff;
}


.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

.xlc-con{
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  @media (min-width: 768px) {
  .xlc-con {
    width: 750px;
  }
  }
  @media (min-width: 992px) {
  .xlc-con {
    width: 970px;
  }
  }
  @media (min-width: 1200px) {
  .xlc-con {
    width: 1170px;
  }
  }
}
.xlc-row{
  margin-right: -15px;
  margin-left: -15px;
}
.xlc-col-1,.xlc-col-2,.xlc-col-3,.xlc-col-4,.xlc-col-5,.xlc-col-6,
.xlc-col-7,.xlc-col-8,.xlc-col-9,.xlc-col-10,.xlc-col-11,.xlc-col-12{
  position: relative;
  min-height: 1px;
  /* padding-right: 15px;
  padding-left: 15px; */
  float: left;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

 .xlc-col-12 {
    width: 100%;
  }
  .xlc-col-11 {
    width: 91.66666667%;
  }
  .xlc-col-10 {
    width: 83.33333333%;
  }
  .xlc-col-9 {
    width: 75%;
  }
  .xlc-col-8 {
    width: 66.66666667%;
  }
  .xlc-col-7 {
    width: 58.33333333%;
  }
  .xlc-col-6 {
    width: 50%;
  }
  .xlc-col-5 {
    width: 41.66666667%;
  }
  .xlc-col-4 {
    width: 33.33333333%;
  }
  .xlc-col-3 {
    width: 25%;
  }
  .xlc-col-2 {
    width: 16.66666667%;
  }
  .xlc-col-1 {
    width: 8.33333333%;
  }
  
  .xlc-col-offset-12 {
   margin-left: 100%;
}
  .xlc-col-offset-11 {
    margin-left: 91.66666667%;
  }
  .xlc-col-offset-10 {
    margin-left: 83.33333333%;
  }
  .xlc-col-offset-9 {
    margin-left: 75%;
  }
  .xlc-col-offset-8 {
    margin-left: 66.66666667%;
  }
  .xlc-col-offset-7 {
    margin-left: 58.33333333%;
  }
  .xlc-col-offset-6 {
    margin-left: 50%;
  }
  .xlc-col-offset-5 {
    margin-left: 41.66666667%;
  }
  .xlc-col-offset-4 {
    margin-left: 33.33333333%;
  }
  .xlc-col-offset-3 {
    margin-left: 25%;
  }
  .xlc-col-offset-2 {
    margin-left: 16.66666667%;
  }
  .xlc-col-offset-1 {
    margin-left: 8.33333333%;
  }
  .xlc-col-offset-0 {
    margin-left: 0;
  }
  
  .xlc-col-pull-12 {
    right: 100%;
  }
  .xlc-col-pull-11 {
    right: 91.66666667%;
  }
  .xlc-col-pull-10 {
    right: 83.33333333%;
  }
  .xlc-col-pull-9 {
    right: 75%;
  }
  .xlc-col-pull-8 {
    right: 66.66666667%;
  }
  .xlc-col-pull-7 {
    right: 58.33333333%;
  }
  .xlc-col-pull-6 {
    right: 50%;
  }
  .xlc-col-pull-5 {
    right: 41.66666667%;
  }

  .xlc-col-pull-4 {
    right: 33.33333333%;
  }

  .xlc-col-pull-3 {
    right: 25%;
  }

  .xlc-col-pull-2 {
    right: 16.66666667%;
  }
  .xlc-col-pull-1 {
    right: 8.33333333%;
  }
  .xlc-col-pull-0 {
    right: 0;
  }

  .xlc-col-push-12 {
    left: 100%;
  }
  .xlc-col-push-11 {
    left: 91.66666667%;
  }
  .xlc-col-push-10 {
    left: 83.33333333%;
  }
  .xlc-col-push-9 {
    left: 75%;
  }
  .xlc-col-push-8 {
    left: 66.66666667%;
  }
  .xlc-col-push-7 {
    left: 58.33333333%;
  }
  .xlc-col-push-6 {
    left: 50%;
  }
  .xlc-col-push-5 {
    left: 41.66666667%;
  }
  .xlc-col-push-4 {
    left: 33.33333333%;
  }
  .xlc-col-push-3 {
    left: 25%;
  }
  .xlc-col-push-2 {
    left: 16.66666667%;
  }
  .xlc-col-push-1 {
    left: 8.33333333%;
  }
  .xlc-col-push-0 {
    left: 0;
  }
       