@charset "utf-8";
/*微软雅黑*/
.clearfix {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
/*清除浮动*/
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: keep-all;
}
/*样式控制字符长度，需指定宽度*/
* {
  word-wrap: break-word;
}
::-webkit-scrollbar {
  /*滚动条整体部分*/
  width: 12px;
}
::-webkit-scrollbar-thumb {
  /*滚动条里面的小方块，能向上向下移动（或往左往右移动，取决于是垂直滚动条还是水平滚动条）*/
  background-color: #aaa;
}
::-webkit-scrollbar-track {
  /*滚动条的轨道（里面装有Thumb）*/
  background-color: #ccc;
}
::-webkit-scrollbar:horizontal {
  /*滚动条整体部分*/
  height: 12px;
}
::-webkit-scrollbar-thumb:horizontal {
  /*滚动条里面的小方块，能向上向下移动（或往左往右移动，取决于是垂直滚动条还是水平滚动条）*/
  background-color: #aaa;
}
::-webkit-scrollbar-track:horizontal {
  /*滚动条的轨道（里面装有Thumb）*/
  background-color: #ccc;
}
html,body {
  height: 100%;
}
body,div,ol,ul,li,p,input,textarea,form,h1,h2,h3,h4,h5,h6,dl,dt,dd,img,select,table,tr,td,fieldset,legend,table,tr,td,th {
  margin: 0;
  padding: 0;
}
body {
  background-color: #f1f1f1;
  /*background-color: #eee;*/
  color: #333;
  font-size: 12px;
  font-family: \5FAE\8F6F\96C5\9ED1,Microsoft YaHei;
  width: 100%;
}
ul,li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #333333;
  outline: none;
}
img {
  border: none;
}
[onclick] {
  cursor: pointer;
}
input[type='text'],input[type='password'],input[type='submit'],input[type='button'],input[type='reset'] {
  -webkit-appearance: none;
  font-family: \5FAE\8F6F\96C5\9ED1,Microsoft YaHei;
}
input[readonly="readonly"] {
  background-color: #f5f5f5;
}

input:focus {
  outline: none;
}

/*去掉webkit内核浏览器表单记住密码后的黄色*/
input:-webkit-autofill {
  background-color: #fff;
  background-image: none;
  color: #333;
}
input:-webkit-autofill {
   -webkit-box-shadow: 0 0 0 1000px white inset !important;
}
input:-webkit-autofill {
  -webkit-text-fill-color: #333 !important;
  transition: background-color 5000s ease- in -out 0s;
}

/*下拉框转化统一先隐藏原生*/
/*select {
  display: none;
}*/

/* 鼠标手指 */
.finger{
  cursor: pointer;
}




/*日期选择器的选择年份select不能隐藏*/
.ui-datepicker-year {
  display: inline-block !important;
}


/* 禁止双击选中文字 */
.no-copy{
  -moz-user-select: none; /* 火狐 */
  -webkit-user-select: none; /* webkit浏览器 */
  -ms-user-select: none; /* IE10 */
  -khtml-user-select: none; /* 早期浏览器 */
  user-select: none;
}
/* 文字间距 */
.spacing{
    letter-spacing: 2px;
}

/* 分页样式 */
.catepage{
  float: left;
  overflow: auto;
  line-height: 32px;
  text-align: center;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 12px;
}
.catepage a{
  border:#ccc 1px solid;
  padding:6px 12px;
  border-radius: 2px;
  margin-right: 4px;
}
.catepage a:hover{
  color:#FFFFFF;
  background: #4285f4;
  border:#4285f4 1px solid;
}
.catepage .now_page{
  background: #0066CC;
  color:#FFFFFF;
  border:#0066CC 1px solid;
}

/*加载中弹层样式*/
.loading{
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
}
.loading div.box{
  position: fixed;
  top: 38%;
  right: 50%;
  z-index: 10;
  padding: 5px;
  border-radius: 5px;
  /*background-color: rgba(255, 255, 255, 0.8);*/
}
.loading div.box div.loader {
  border: 2px solid #3d7ab9;
  border-radius: 50%; 
  border-top: 2px solid #ccc;
  width: 22px; 
  height: 22px; 
  animation: spin 1s linear infinite;
  float: left;
}
.loading .font{
  font-size: 14px;
  margin-left: 12px;
  color:#666;
  float: left;
  line-height: 26px;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*所有 z-index 控制在100以内*/
.logo {
  width: 96px;
  height: 96px;
  display: block;
  background: url("../images/logo.png") no-repeat center center;
}
.logo:hover{
  opacity: 0.9;
  transform: translateY(-1px);
}
.menu-wrap {
  width: 96px;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #3d7ab9;
  z-index: 999;
}
.menu-wrap .menu {
  display: block;
}
.menu-wrap .menu ul {
  padding: 0 !important;
  /*因为与编辑器ul li 样式有冲突*/
}
.menu-wrap .menu ul li {
  position: relative;
}
.menu-wrap .menu ul li.current {
  background: url("../images/menu/arrow_left_1.png") no-repeat right center #366da5;
}
.menu-wrap .menu ul li.current.hide {
  background: transparent;
}
.menu-wrap .menu ul li:hover {
  background: url("../images/menu/arrow_left_2.png") no-repeat right center #4282c3 !important;
}
.menu-wrap .menu ul li:hover .submenu {
  opacity: 1;
  visibility: visible;
}

.menu-wrap .menu ul li .submenu {
  display: flex;
  position: absolute;
  top:-20px;
  left: 96px;
  /*width: 280px;*/
  background-color: #fff;
  box-shadow: 3px 0 8px rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  border-top: 2px #4c8dd1 solid;
}
.menu-wrap .menu ul li .submenu:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}


.menu-wrap .menu ul li .submenu .column {
  float: left;
  width: 130px;
  border-left: 1px solid #e5e5e5;
  box-sizing: border-box;
  min-height:90px;
}
.menu-wrap .menu ul li .submenu .column strong {
  font-size: 14px;
  padding: 0 0 10px 20px;
  display: block;
}
.menu-wrap .menu ul li .submenu .column a {
  padding: 0 20px;
  font-size: 14px;
  line-height: 36px;
  display: block;
  cursor: pointer;
}
.menu-wrap .menu ul li .submenu .column a:hover {
  background-color: #ebeced;
  color:#333;
}



.menu-wrap .menu ul li a.tm {
  display: block;
  text-align: center;
  font-family: "微软雅黑";
  font-size: 14px;
  color: #FFF;
  padding-top: 42px;
  padding-bottom: 10px;
}
.menu-wrap .menu ul li a.tm.site {
  background: url("../images/menu/site.png") no-repeat center 15px;
}
.menu-wrap .menu ul li a.tm.storehouse {
  background: url("../images/menu/store.png") no-repeat center 10px;
}
.menu-wrap .menu ul li a.tm.pos {
  background: url("../images/menu/pos.png") no-repeat center 15px;
}
.menu-wrap .menu ul li a.tm.cashier {
  background: url("../images/menu/cashier.png") no-repeat center 15px;
}
.menu-wrap .menu ul li a.tm.contract {
  background: url("../images/menu/contract.png") no-repeat center 10px;
}
.menu-wrap .menu ul li a.tm.finance {
  background: url("../images/menu/finance.png") no-repeat center 10px;
}
.menu-wrap .menu ul li a.tm.information {
  background: url("../images/menu/work.png") no-repeat center 10px;
}
.menu-wrap .menu ul li a.tm.analysis {
  background: url("../images/menu/chart.png") no-repeat center 10px;
}
.menu-wrap .menu ul li a.tm.setup {
  background: url("../images/menu/setup.png") no-repeat center 10px;
}
.menu-wrap .menu ul li a.tm.stock {
  background: url("../images/menu/store.png") no-repeat center 10px;
}
.menu-wrap .menu ul li a.tm.purchase {
  background: url("../images/menu/purchase.png") no-repeat center 10px;
}
.menu-wrap .menu ul li a.tm.service {
  background: url("../images/menu/service.png") no-repeat center 10px;
}
.menu-wrap .menu ul li a.tm.store {
  background: url("../images/menu/store.png") no-repeat center 10px;
}
.menu-wrap .menu ul li a.tm.chart {
  background: url("../images/menu/chart.png") no-repeat center 10px;
}
.menu-wrap .menu ul li a.tm.ui {
  background: url("../images/menu/ui.png") no-repeat center 10px;
}



/* 头部工具条 */
.head {
  min-width: 1200px;
  height: 50px;
  background-color: #FFF;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
  line-height: 50px;
  margin-left: 96px;
  padding: 0 20px;
}
.head:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.head .name {
  float: left;
  font-size: 16px;
  font-family: "微软雅黑";
  color: #555;
}
.head .side {
  float: right;
}
.head .side:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.head .side .item {
  position: relative;
  float: left;
  margin-left: 10px;
}
.head .side .item .notic {
  background: url("../images/head/notic.png") no-repeat left center;
  background-size: auto 16px;
  padding-left: 20px;
}
.head .side .item .notic.new {
  animation: getnew 1s infinite;
}
.head .side .item .website {
  background: url("../images/head/website.png") no-repeat left center;
  background-size: auto 14px;
  padding-left: 18px;
}

.head .side .item .menu {
  background: url("../images/head/website.png") no-repeat left center;
  background-size: auto 14px;
  padding-left: 18px;
}
.head .side .item:hover .setmenu {
  display: block;
}
.head .side .item .setmenu {
  position: absolute;
  left: 70%;
  top: 50px;
  width: 90px;
  background-color: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  padding: 0px 20px 15px 20px;
  margin: 0 0 0 -70px;
  overflow: hidden;
  display: none;
}
.head .side .item .setmenu > * {
  float: left;
  display: block;
}
.head .side .item .setmenu a{
  line-height: 30px;
}
.head .side .item .setmenu a:hover{
  color: #000;
}



.head .side .item .zoom {
  background: url("../images/head/zoom.png") no-repeat left center;
  background-size: auto 14px;
  padding-left: 18px;
}
.head .side .item:hover .setzoom {
  display: block;
}
.head .side .item .setzoom {
  position: absolute;
  left: 50%;
  top: 50px;
  width: 100px;
  background-color: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin: 0 0 0 -70px;
  overflow: hidden;
  display: none;
}
.head .side .item .setzoom > * {
  float: left;
  display: block;
}
.head .side .item .setzoom span {
  font-size: 14px;
  border: 1px solid #e5e5e5;
  background-color: #f5f5f5;
  height: 24px;
  border-radius: 3px;
  line-height: 24px;
  padding: 0 6px;
  margin: 0 10px;
}
.head .side .item .setzoom a {
  width: 14px;
  height: 24px;
  margin: 0;
}
.head .side .item .setzoom a.add {
  background: url("../images/head/zoom-add.png") no-repeat center center;
}
.head .side .item .setzoom a.mius {
  background: url("../images/head/zoom-mius.png") no-repeat center center;
}

@keyframes getnew {
  0% {
    background: url("../images/head/notic.png") no-repeat left center;
    background-size: auto 16px;
  }
  50% {
    background: url("../images/head/notic_red.png") no-repeat left center;
    background-size: auto 16px;
  }
  100% {
    background: url("../images/head/notic.png") no-repeat left center;
    background-size: auto 16px;
  }
}



/*面包屑导航*/
.toolBar {
  padding: 15px 20px;
  margin-left: 96px;
  min-width: 1200px;
}
.toolBar .location {
  font-size: 14px;
  color: #999;
  float: left;
}
.toolBar .novice-guidance {
  float: right;
  color: #999;
  cursor: pointer;
}
.toolBar:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}




/*主体内容*/
.main{
  margin-left: 96px;
  padding: 0 20px;
  min-width: 1200px;
}

/* 内容容器 */
.container{
  background-color: #FFF;
  height: 100%;
  overflow: auto;
  min-height: 600px;
  /*height: auto;*/
  padding: 30px 40px 80px 40px;
}

/*导航菜单*/
.target{
  /*禁止双击选中文字*/
  -moz-user-select: none; /* 火狐 */
  -webkit-user-select: none; /* webkit浏览器 */
  -ms-user-select: none; /* IE10 */
  -khtml-user-select: none; /* 早期浏览器 */
  user-select: none;
}
.target:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.target ul li a {
  padding:10px 28px;
  min-width:60px;
  float: left;
  font-size: 14px;
  background-color: #e1e2e3;
  text-align: center;
  margin-right: 8px;
  border-radius: 3px 3px 0 0;
}
.target ul li a:hover {
  background-color: #d7dbde;
  text-decoration: underline;
}
.target ul li a.current {
  background-color: #FFF;
  color: #3d7ab9;
  font-weight: bold;
}


/* 美化单复选框 */
.Radio input[type='radio'],.Checkbox input[type='checkbox'] {
    display: none;
}
.Radio label,.Checkbox label {
    /*padding: 0 16px 0 0;*/
    display: inline-block;
    cursor: pointer;
    position: relative;
}
.Radio label:before,.Checkbox label:before {
    box-sizing: border-box;
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #999;
    margin: 0 8px;
    vertical-align: middle;
    display: inline-block;
    transition: 0.1S;
}
.Radio label:hover:before,.Checkbox label:hover:before {
    border-color: #0e6ccb;
}
.Radio input:disabled + label:before,.Checkbox input:disabled + label:before {
    background-color: #CCC;
    border-color: #999;
    opacity: 0.5;
}
.Radio input:disabled + label,.Checkbox input:disabled + label {
    opacity: 0.5;
}
.Radio input:checked + label:before {
    border: 4px solid #0e6ccb;
}
.Checkbox label:before {
    background: url(../images/icon/check.png) no-repeat center;
    background-size: 0;
    border-radius: 3px;
    transition: 0.2S;
}
.Checkbox input:checked + label:before {
    background-color: #0e6ccb;
    background-size: 12px;
    border-color: #0e6ccb;
}

/* 系统登录页 */
.gradient {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background:#0b539d;

  /*background: -webkit-linear-gradient(left top, #003366, #000000);*/
  /* Safari 5.1 - 6.0 */
  /*background: -o-linear-gradient(bottom right, #003366, #000000);*/
  /* Opera 11.1 - 12.0 */
  /*background: -moz-linear-gradient(bottom right, #003366, #000000);*/
  /* Firefox 3.6 - 15 */
  /*background: linear-gradient(to bottom right, #003366, #000000);*/
  /* 标准的语法（必须放在最后） */

}

.login-wrap {
  position: fixed;
  left: 50%;
  top: 43%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16), 0 3px 8px rgba(0, 0, 0, 0.2);
  /*box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.1);*/
  border-radius: 10px;
  overflow: hidden;
  z-index: 5;
  width:900px;
  background:#FFFFFF;
}
/*.login-wrap:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
*/
.login-wrap .name {
  text-align: left;
  padding: 15px 0 30px 0;
}
.login-wrap .name span {
  display: block;
}
.login-wrap .name span:first-child {
  font-size: 18px;
}
.login-wrap .name span:last-child {
  font-size: 12px;
  color: #999;
  font-family: "arial, helvetica, sans-serif";
}
.login-wrap .error-tips {
  position: absolute;
  left: -1px;
  top: 35px;
  width: 440px;
  height: 45px;
  line-height: 54px;
  background: url("../images/login-error-tip.png") no-repeat center center;
  text-indent: 55px;
  color: #79736a;
  display: none;
  z-index: 10;
}

.login-wrap .usbkey-tips {
  /*width: 325px;*/
  padding: 20px 0 0 0;
  text-align: center;
}
.login-wrap .usbkey-tips i {
  vertical-align: middle;
  display: inline-block;
}
.login-wrap .usbkey-tips i.loading {
  width: 14px;
  height: 14px;
  background: url("../images/loading.gif") no-repeat center center;
  background-size: 14px auto;
}
.login-wrap .usbkey-tips i.alert {
  width: 14px;
  height: 14px;
  background: url("../images/login-usbkey-tip.png") no-repeat center center;
  background-size: 14px auto;
}
.login-wrap .usbkey-tips i.success {
  width: 14px;
  height: 14px;
  background: url("../images/login-usbkey-success.png") no-repeat center center;
  background-size: 14px auto;
}
/*.login-wrap .usbkey-tips span {
  font-size: 14px;
  line-height: 14px;
  height: 14px;
  display: inline-block;
}*/
.login-wrap .login {
  position: relative;
  box-sizing: border-box;
  padding: 40px 50px 60px 50px;
  background-color: #fff;
  width:400px;
  border-left:#eee 1px solid;
  float:right;
}
.login-wrap .login .row {
  position: relative;
  border: 1px solid #e5e5e5;
  margin-bottom: 20px;
}
.login-wrap .login .row.ban {
  background-color: #f5f5f5;
}
.login-wrap .login .row.focus {
  border: 1px solid #4285f4;
}
.login-wrap .login .row:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
}
.login-wrap .login .row .icon {
  float: left;
  padding: 6px 14px;
  color: #ccc;
  border-right: 1px solid #e5e5e5;
  margin-top: 9px;
}
.login-wrap .login .row input {
  float: left;
  width: 250px;
  display: block;
  border: none;
  height: 44px;
  line-height: 42px;
  box-sizing: border-box;
  padding: 0 14px;
  color: #333;
  -webkit-appearance: none;
  font-family: \5FAE\8F6F\96C5\9ED1,Microsoft YaHei;
}
.login-wrap .login .row input:focus {
  color: #000;
}
/*.login-wrap .login .row .code {
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: 44px;
  display: block;
}*/
.login-wrap .login .bar {
  overflow: hidden;
  font-size: 12px;
}
.login-wrap .login .bar label span{
  cursor:pointer;
}
.login-wrap .login .bar a {
  float: right;
  text-decoration: underline;
  color: #666;
}
.login-wrap .login .submit {
  width: 100%;
  height: 44px;
  line-height: 44px;
  text-align: center;
  color: #fff;
  background-color: #4285f4;
  cursor: pointer;
  border-radius: 3px;
  font-size: 16px;
  margin-top: 20px;
  transition: all 0.2s linear 0s;
  -webkit-transition: all 0.2s linear 0s;
  -moz-transition: all 0.2s linear 0s;
  -ms-transition: all 0.2s linear 0s;
  /*禁止双击选中文字*/
  -moz-user-select:none; /*火狐*/
  -webkit-user-select:none; /*webkit浏览器*/
  -ms-user-select:none; /*IE10*/
  -khtml-user-select:none; /*早期浏览器*/
  user-select:none;
}
.login-wrap .login .submit.ban {
  color: #eee;
  background-color: #888;
  cursor: not-allowed;
}
.login-wrap .login .submit.ban:hover {
  background-color: #888;
}
.login-wrap .login .submit:hover {
  background-color: #2e74e8;
}
.login-wrap .login .signup{
  margin-top: 10px;
  text-align: center;
}
.login-wrap .login .signup a{
  color: #999;
}
.login-wrap .login .signup a:hover{
  color: #666;
}
/* 禁止input输入样式 */
.login-wrap .login .stop, .login-wrap .login .stop input{ 
  background: #f8f8f8;
  pointer-events: none;
}
.login-wrap .login .row .icon {
  padding:6px 15px;
}

.copyright{
  color:#ccc;
  position:fixed;
  bottom:30px;
  font-size:12px;
  display:block;
  width:100%;
  text-align:center;
}
.copyright a{
  color:#ccc;
}

/* 账户注册页 */
.regist {
  width: 100%;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  z-index: 10;
}
.regist form{
  width: 900px;
  background:#fff;
  padding: 40px 0;
  border-radius: 10px;
  margin: auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16), 0 3px 8px rgba(0, 0, 0, 0.2);
}
.regist .sms{
  position: relative;
}
.regist .sms a{
  position: absolute;
  top: 5px;
  right: 72px;
  background:#eee;
  padding: 2px 10px;
  border-radius: 2px;
}
.regist .submit{
  padding-left:45px;
}
.regist .submit input[type="submit"]{
  padding: 8px 50px;
}
.regist .TableEdit{
  margin:auto;
  width: 630px;
}
.regist .TableEdit tbody h3{
  font-size: 20px;
  text-align: center;
  height: 40px;
  padding-right: 50px;
}


/* div下拉框样式 */
.div-select{
    width: 100%;
    min-width: 60px;
    /*max-width: 120px;*/
    padding-left:26px;
    border: 1px solid #ccc;
    border-radius: 2px;
    position: relative;
    box-sizing: border-box;
    background-image: url("../images/icon/below.png");
    background-repeat: no-repeat;
    background-position: center left 6px;
    background-size: 18px auto;
}
.div-select input{
    color: #666;
    display: block;
    width: 100%;
    height: 30px;
    /*line-height: 30px;*/
    border: 0;
    outline: 0;
    background: none;
    cursor: pointer;
}
.div-select ul{
    width: 100%;
    display: none;
    position: absolute;
    left: -1px;
    top: 31px;
    overflow: hidden;
    background-color: #fff;
    max-height: 150px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-top: 0;
    z-index: 10;
}
.div-select ul li{ height: 34px; line-height: 34px; overflow: hidden; padding: 0 8px; cursor: pointer; }
.div-select ul li.on{ background-color: #e0e0e0; }

/*单选按扭*/
label {
  position: relative;
  height: 14px;
  line-height: 14px;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  float: left;
  margin-right: 10px;
}
label i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: 1px solid #cccccc;
  background-color: #fff;
  display: inline-block;
  box-sizing: border-box;
}
label span {
  font-size: 12px;
  color: #666;
  padding: 0 0 0 18px;
  display: inline-block;
}
label input[type="checkbox"] {
  display: none;
}
label input[type="checkbox"]:checked + i {
  background: url("../images/icon/check.png") no-repeat center center;
  background-size: 88% auto;
  background-color: #4285f4;
  border-color: #4285f4;
}
label input[type="checkbox"]:disabled + i {
  border-color: #cccccc;
}
label input[type="checkbox"]:checked:disabled + i {
  background: url("../images/icon/check.png") no-repeat center center;
  background-size: 88% auto;
  background-color: #cccccc;
}
label input[type="radio"] {
  display: none;
}
label input[type="radio"] + i {
  border-radius: 50%;
  overflow: hidden;
}
label input[type="radio"]:checked + i {
  background-color: #f00;
  background: url("../images/icon/check.png") no-repeat center center;
  background-size: 88% auto;
  background-color: #4285f4;
  border-color: #4285f4;
}
label input[type="radio"]:disabled + i {
  border-color: #cccccc;
}
label input[type="radio"]:checked:disabled + i {
  background: url("../images/icon/check.png") no-repeat center center;
  background-size: 88% auto;
  background-color: #cccccc;
}