/* @general 通用样式
---------------------------------------------------------------------- */
a, article, aside, blockquote, body, button, dd, dl, dt, dialog, em, fieldset, form, figure, footer, header, h1, h2, h3, h4, h5, h6, hr, input, li, nav, ol, p, pre, textarea, td, th, ul, select, strong{
    color: #333;
    font: normal 14px "proxima-nova",​ Helvetica, Arial, Verdana, "微软雅黑", "宋体", sans-serif;
    margin: 0px;
    padding: 0px;
}

article, aside, dialog, figure, footer, legend, header, nav, section, main{
    display: block;
}

a{
    color: #455e80;
    cursor: pointer;
    text-decoration: none;
}

a:hover{
    color: #5c7ba6;
    text-decoration: none;
}

img{
    border: 0px none;
}

table{
    border-collapse: collapse;
    border-spacing: 0px;
}

th, td{
    vertical-align: top;
    font-weight: normal;
    text-align: left;
}

ul, ol{
    list-style: none;
}

ul li{
    list-style: none;
}

/* @group 辅助样式
---------------------------------------------------------------------- */
.clear{
    clear: both !important;
}

.clear-fix:after{
    clear: both !important;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

.no-border{
    border: 0px none !important;
}

.no-border-top{
    border-top: 0px none !important;
}

.no-border-left{
    border-left: 0px none !important;
}

.no-border-bottom{
    border-bottom: 0px none !important;
}

.no-border-right{
    border-right: 0px none !important;
}

.no-padding{
    padding: 0px !important;
}

.no-padding-top{
    padding-top: 0px !important;
}

.no-padding-left{
    padding-left: 0px !important;
}

.no-padding-bottom{
    padding-bottom: 0px !important;
}

.no-padding-right{
    padding-right: 0px !important;
}

.no-margin{
    margin: 0px !important;
}

.no-margin-top{
    margin-top: 0px !important;
}

.no-margin-left{
    margin-left: 0px !important;
}

.no-margin-bottom{
    margin-bottom: 0px !important;
}

.no-margin-right{
    margin-right: 0px !important;
}

.line-ellipsis{
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}

/* @group 常用组件
---------------------------------------------------------------------- */
.button{
    background-color:#448bfd;
    border: 0px none;
    color: white;
    cursor: pointer;
    height: 30px;
    line-height: 30px;
    outline: 0px none;
    padding: 0px 10px 0px 10px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    display: inline-block;
    min-width:70px;
}

.button::-moz-focus-inner{
    border: 0px none;
}

.button:hover{
    color: white;
    background-color: #5a9efe;
}

.button:active{
    background-color: #5a9efe;
}

.button[disabled]{
    background-color: #5a9efe;
}

.text-view{
    line-height: 24px;
    padding: 5px 0px;
}

.mutil-text-view{
    line-height: 24px;
    max-height: 200px;
    width: 800px;
    padding: 5px 0px;
    word-break: break-all;
    overflow-y: auto;
}

.mutil-text-view p{
    line-height: 24px;
    margin-bottom: 5px;
}

.mutil-text-view .video-container{
    width: 400px;
    height: 225px;
}

.mutil-text-view p img{
    max-width: 400px;
}

.text-box{
    border: 1px solid #e3dfde;
    display: inline;
    height: 24px;
    line-height: 24px;
    padding: 4px 5px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 320px;
}

.calendar-box{
    border: 1px solid #e3dfde;
    cursor: pointer;
    display: inline;
    height: 24px;
    line-height: 24px;
    background: right center no-repeat url(../images/calendar.png);
    padding: 3px 20px 3px 5px;
    width: 305px;
}

.select-box{
    border: 1px solid #e3dfde;
    display: inline;
    height: 34px;
    line-height: 24px;
    padding: 0px 0px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 332px;
}

.mutil-text-box{
    border: 1px solid #e3dfde;
    display: inline;
    height: 100px;
    line-height: 24px;
    padding: 3px 5px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 462px;
}

.text-box:focus, .mutil-text-box:focus, .select-box:focus, .calendar-box:focus{
    border-color: #66afe9;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
    outline: 0 none;
}

.text-box[disabled], .mutil-text-box[disabled], .select-box[disabled], .calendar-box[disabled]{
    background-color: #fff;
    border: solid 1px #efecec;
    color: #cccccc;
}

.tree-select-box{
    position: relative;
}

.tree-select-box .text-box{
    background-image: url(../images/dropdownselect.png);
    background-repeat: no-repeat;
    background-position: right center;
    width: 312px;
    padding-right: 13px;
    cursor: pointer;
}

.tree-select-box .tree-menu{
    position: absolute;
    border: solid 1px #ccc;
    border-top: 0px none;
    width: 330px;
    display: none;
    background-color: white;
    z-index: 1;
}

.tree-select-box .tree-menu .tree{
    overflow: auto;
    max-height: 160px;
}

.tree-select-box .tree-menu .button-container{
    border-top: solid 1px #ccc;
    text-align: right;
    padding: 3px 3px;
}

.tree-select-box .tree-menu .button-container .button{
    height: 26px;
    line-height: 26px;
    min-width: 30px;
    margin-left: 3px;
    background-color: #eee;
    color: #585858;
}

.tree-select-box .tree-menu .button-container .button:hover{
    color: #455e80;
}

.img-control{
    overflow: hidden;
    border: solid 1px #e3dfde;
}

.img-control .fix-parent-wrapper{
    width: 100%;
    height: 100%;
}

.img-control .fix-parent-wrapper img{
    width: 100%;
    height: 100%;
}

.tab-control{
}

.tab-control li{
    background-color: #eee;
    float: left;
    height: 32px;
    line-height: 32px;
    margin: 0px 5px 5px 0px;
    min-width: 40px;
    padding: 0px 10px;
    cursor: pointer;
}

.tab-control li.active{
    background-color: #627aba;
    color: white;
}

.tab-control-container{
    clear: both;
    display: none;
}

.grid-control th{
    background-color: white !important;
    border: solid 1px #e3dfde !important;
    padding: 4px 6px !important;
    line-height: 30px !important;
    font-weight: bold;
    text-align: left !important;
}

.grid-control td{
    border: solid 1px #e3dfde !important;
    padding: 4px 6px !important;
    line-height: 32px !important;
}

.single-upload-error{
    padding: 0px 10px;
}

.single-upload-error p{
    background: url("../images/error-tip.png") no-repeat left 5px;
    padding-left: 20px;
}

.single-upload-error .upload-error-button{
    display: block;
    height: 23px;
    background-color: #d90000;
    color: white;
    width:40px;
    text-align: center;
    cursor: pointer;
    margin: 4px auto;
}

.user-photo-control .single-upload-error{
    margin-top: 50px;
}

.user-photo-control .progress{
    margin: 55px 5px 0px 5px;
}

.origin-product-pic-control .single-upload-error{
    margin-top: 50px;
}

.origin-product-pic-control .progress{
    margin: 55px 5px 0px 5px;
}

.horizontal-check-group{
    width: 600px;
}

.horizontal-check-group label{
    float: left;
    height: 34px;
    line-height: 34px;
    margin-right: 10px;
}

.horizontal-check-group label input{
    border: solid 1px #e3dfde;
    margin-right: 2px;
    position: relative;
    top: 2px;
}

.horizontal-check-group label[disabled]{
    color: #aaa;
}

.vertical-check-group label{
    display: block;
    height: 32px;
    line-height: 32px;
}

.vertical-check-group label input{
    border: solid 1px #e3dfde;
    margin-right: 2px;
    position: relative;
    top: 2px;
}

.vertical-check-group label[disabled]{
    color: #aaa;
}


.horizontal-radio-group label{
    float: left;
    float: left;
    height: 32px;
    line-height: 32px;
    margin-right: 10px;
}

.horizontal-radio-group label input{
    border: solid 1px #e3dfde;
    margin-right: 2px;
    position: relative;
    top: 2px;
}

.fixed-width-button{
    background-color:#d42c1f;
    border: 0px none;
    color: white;
    cursor: pointer;
    height: 32px;
    line-height: 32px;
    outline: 0px none;
    padding: 0px 10px 0px 10px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    display: inline-block;
    min-width: 120px;
}

.fixed-width-button:hover{
    color: white;
    background-color: #e93d30;
}

.fixed-width-button:active{
    background-color: #f43e30;
}

.control-error{
    border: solid 1px #f15149 !important;
}

.control-error:focus{
    border-color: #f15149  !important;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(241, 81, 73, 0.6)  !important;
    outline: 0 none;
}

.control-error-tip{
    background: left center no-repeat url(../images/error-tip.png);
    line-height: 20px;
    padding: 5px 0px 5px 15px;
    color: #ff1f14;
}

.progress .progress-bar{
    border: solid 1px #e3dfde;
    height: 26px;
}

.progress .progress-bar .current{
    background-color: #f26642;
    height: 26px;
    width: 0px;
}

.progress .progress-tip{
    line-height: 28px;
    text-align: center;
}

.progress .progress-tip span{
    color: #f26642;
}

.upload-file-control .progress{
    float: left;
}

.upload-file-control .progress .progress-bar{
    width: 330px;
    float: left;
}

.upload-file-control .progress .progress-tip{
    float:left;
    margin-left: 10px;
}

.upload-file-control .pic{
    max-width:330px;
    border: solid 1px #e3dfde;
}

.upload-file-control .upload-error{
    height: 30px;
}

.upload-file-control .upload-error p{
    float: left;
    line-height: 30px;
    background: url("../images/error-tip.png") no-repeat left center;
    padding-left: 20px;
}

.upload-file-control .upload-error .upload-error-button{
    float: left;
    margin-left: 10px;
    height: 23px;
    background-color: #d90000;
    color: white;
    padding: 0px 5px;
    margin-top: 4px;
    cursor: pointer;
}

.control-buttons{
    padding: 5px 0px 0px 0px;
}

.control-buttons button{
    background-color: #eee;
    border: 0px none;
    color: #585858;
    cursor: pointer;
    display: inline-block;
    height: 28px;
    line-height: 28px;
    padding: 0px 8px;
    outline: 0px none;
    color: #444;
}

.control-buttons button:hover{
    color: #5c7ba6;
}

.control-buttons button:active{
    background-color: #fff;
}

.control-buttons button[disabled]{
    background-color: #eee;
    color: #aaa;
}

.control-buttons button[disabled]:hover{
    background-color: #eee;
    color: #aaa;
}

.grid{
    width: 100%;
}

.grid tr{
    cursor: default;
}

.grid tbody tr:hover{
    background-color: #f8faf9;
}

.grid th{
    line-height: 24px;
    padding: 8px 5px;
    font-weight: bold;
    border: solid 1px #ddd;
    background-color: #e0edff;
    color: #305fab;
}

.grid th[disabled]{
    color: #aaa;
}

.grid td{
    line-height: 24px;
    overflow: hidden;
    padding: 8px 5px;
    border: solid 1px #ececec;
}

.grid td ul.row-opt-list li{
    float: left;
    margin-right: 5px;
    line-height: 24px;
    height: 24px;
}

.grid td ul.row-opt-list li:last-child{
    margin-right: 0px;
}

.grid td ul.row-opt-list li .disabled-opt{
    color: #bfcee2;
}

.grid td .user-photo{
    height: 28px;
    width: 28px;
    border-radius: 50%;
    float: left;
}

.grid td .user-account{
    float: left;
    line-height: 28px;
    margin-left: 6px;
}

.grid td .info-sort-name{
    width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.grid .row-menu{
    position: absolute;
}

.grid .row-menu .menu-dropdown{
    line-height: 22px;
    color: #455e80;
    cursor: pointer;
}

.grid .row-menu .menu-dropdown-hover{
    background-color: #f5f5f5;
}

.grid .row-menu .menu-dropdown span{
    background-image: url(../images/dropdown.normal.png);
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 10px;
}

.grid .row-menu[disabled] .menu-dropdown span{
    color: #aaa;
    background-image: url(../images/dropdown.disabled.png);
}

.grid .row-menu .menu-opt{
    border: solid 1px #e3dfde;
    width: 130px;
    position: absolute;
    right: 0px;
    top: 24px;
    display: none;
    z-index: 200;
}

.grid .row-menu .menu-opt li{
    border-bottom: solid 1px #e3dfde;
    background-color: white;
    background-color: #fefefe;
}

.grid .row-menu .menu-opt li:last-child{
    border-bottom: 0px;
}

.grid .row-menu .menu-opt li a{
    display: block;
    height: 22px;
    line-height: 22px;
    padding: 6px 8px;
    color: #444;
}

.grid .row-menu .menu-opt li a:hover{
    color: #455e80;
}

.grid .row-menu .menu-opt li a[disabled="disabled"]{
    color: #aaa;
    cursor: default;
}

.container-tabs{
    height: 32px;
    margin-bottom: 6px;
    border-right: solid 1px #eee;
    float: left;
}

.container-tabs li{
    float: left;
    padding: 0px 20px;
    line-height:30px;
    height: 30px;
    border: solid 1px #eee;
    border-right: 0px none;
    background: white;
    color: #20a062;
    cursor: pointer;
}

.container-tabs li.active{
    color: white;
    background: #20a062;
}

.list-empty-tip{
    text-align: center;
    line-height: 400px;
    color: #aaa;
}

.list-empty-tip span{
    background: url(../images/listempty.png) no-repeat top center;
    padding-top:42px;
}

.pager{
    clear:both;
    width:100%;
    text-align:center;
    overflow:hidden;
    position: relative;
    height: 28px;
    line-height: 28px;
    padding-top: 5px;
}

.pager span.tip{
    margin: 0 5px;
    line-height: 28px;
}

.pager ul{
    display:inline;
}

.pager ul li{
    display:inline;
    border: solid 1px #eee;
    margin: 0 2px;
    padding: 4px 4px;
    text-align:center;
    cursor:pointer;
    background-color: white;
}

.pager ul li:hover{
    color: #fe343a;
    border: solid 1px #fe343a;
    text-decoration:none;
}

.pager ul li.active{
    color: #fe343a;
    cursor: default;
    font-weight: bold;
}

.pager ul li.active:hover{
    color: #fe343a;
    border: solid 1px #eee;
}

.pager ul li.pager-button{
    color:white;
    background-color: #fe343a;
    border: solid 1px #fe343a;
    padding: 5px 5px;
    position: relative;
}

.pager ul li.pager-button:hover{
    background-color: #f94450;
    text-decoration: none;
}

.pager .tip strong{
    font-weight: normal;
    color: #f26642;
}

#mainMask{
    position: absolute;
    z-index: 300;
    width: 100%;
    position: 0px 0px;
    background-color: rgba(128, 128, 128, 0.3);
    top: 0px;
    left: 0px;
    display: none;
}

#mainAjaxTip{
    border: solid 2px #aeaeae;
    box-shadow: 0 0 8px rgba(81, 81, 81, 0.6);
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: #fff4ff;
    z-index: 400;
    line-height: 22px;
    padding: 8px 20px;
    text-align: center;
    display: none;
    border-radius: 4px;
    min-width: 160px;
}

#mainAjaxTip span{
    background-image: url(../images/ajaxtip.gif);
    background-repeat: no-repeat;
    background-position: left center;
    color: #1AB083;
    padding: 5px 0px 5px 22px;
}

#dialog{
    border: solid 2px #aeaeae;
    box-shadow: 0 0 8px rgba(81, 81, 81, 0.6);
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: #fff;
    z-index: 400;
    border-radius: 2px;
    display: none;
}

#dialog .dialog-header{
    height: 40px;
    line-height: 40px;
    background-color: #3e84f4;
    padding: 0px 8px;
    cursor: default;
}

#dialog .dialog-header .title{
    color: white;
    float: left;
    line-height: 40px;
}

#dialog .dialog-header a.close{
    float: right;
    line-height: 40px;
    color: white;
}

#dialog .dialog-body{
    margin: 8px;
    line-height: 22px;
    overflow: auto;
    min-width: 280px;
    max-height: 400px;
}

#dialog .dialog-button-group{
    position: relative;
    height: 28px;
    text-align: center;
    margin-bottom: 35px;
}

#dialog .button{
    margin: 0px 5px;
    min-width: 50px;
}

#dialog .ajax-mask{
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 300;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: none;
}

#dialog .dialog-ajax{
    color: #ee303c;
    background-image: url(../images/ajax.gif);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 20px;
    float: right;
    margin-right: 10px;
    position: absolute;
    z-index: 401;
    bottom: 8px;
    right: 8px;
    display: none;
}

#dialog .dialog-mutil-text label{
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* @page 页面样式
---------------------------------------------------------------------- */
.main-nav{
    background-color: #3e84f4;
    height: 30px;
    padding: 6px 0px 6px 0px;
    width: 100%;
    position: fixed;
    z-index: 100;
}

.main-nav .title{
    float: left;
    font-weight: bold;
    color: white;
    font-size: 16px;
    height: 100%;
    line-height: 30px;
    padding-left: 6px;
}

.main-nav .error-title{
    font-weight: bold;
    color: white;
    font-size: 16px;
    height: 100%;
    line-height: 30px;
    padding-left: 10px;
}


.main-nav ul.nav{
    float: left;
    height: 100%;
    margin-left: 6px;
}

.main-nav ul.nav li{
    display: block;
    line-height: 100%;
    float: left;
}

.main-nav ul.nav li a{
    color: white;
    display: block;
    height: 24px;
    line-height: 24px;
    padding: 0px 5px;
    margin-top: 3px;
}

.main-nav ul.nav li a:hover{
    color: #e4f098;
}

.main-nav .nav li.active{
    margin: 0px 4px;
}

.main-nav .nav li.active a{
    background-color: white;
    color: #3d669d;
}

.main-nav .nav li.active a:hover{
    color: #1573b9;
}

.main-nav .welcome{
    float: right;
    color: white;
    height: 100%;
    padding-right: 6px;
}

.main-nav .welcome .current-user{
    float: left;
}

.main-nav .welcome .current-user .photo{
    float: right;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}

.main-nav .welcome .current-user .photo img{
    width: 100%;
    height: 100%;
    border: 0px none;
}

.main-nav .welcome .current-user .user-info{
    float: left;
    line-height: 30px;
    margin-right: 5px;
    color: white;
}

.main-body{
    min-width: 1330px;
    max-width: 1920px;
    padding: 48px 0px 0px 0px;
    margin: 0px auto;
}

.main-footer{
    color: #999999;
    font-size: 12px;
    border-top: solid 1px #ececec;
    padding: 10px 0px;
    text-align: center;
}

.fluid-layout{
    width: 100%;
}

.fluid-layout .side-container{
    width: 170px;
    padding: 0px 5px 0px 0px;
}

.fluid-layout .module-opt{
    padding: 0px;
}

.fix-layout{
    width: 1300px;
    margin: 0px auto;
}

.split-layout{
    width: 100%;
}

.split-layout .left-container{
    width: 210px;
    padding-right: 5px;
}

.split-layout .right-container{
    padding: 0px;
}

.side-bar{
    border: solid 1px #acd0ff;
    border-bottom: 0px none;
}

.side-bar .group .header{
    background-color: #d9e9ff;
    height: 38px;
    padding-left: 5px;
    border-bottom: solid 1px #acd0ff;
}

.side-bar .group .header .title{
    float: left;
    line-height: 38px;
    color: #1573b9;
}

.side-bar .group ul{
    display: block;
}

.side-bar .group ul li{
    height: 38px;
    border-bottom: solid 1px #acd0ff;
}

.side-bar .group ul li a{
    display: block;
    padding: 0px 6px;
    line-height: 38px;
    color: #585858;
}

.side-bar .group ul li.active a{
    color: #f04e37;
    font-weight: bold;
}

.side-bar .group ul li a:hover{
    color: inherit;
    color: #1a6447;
}

.side-bar .group ul li.active a:hover{
    color: #ff604a;
}

.bread-section{
    border: solid 1px #acd0ff;
    height: 30px;
    line-height: 30px;
    padding: 4px 5px;
    margin-bottom: 5px;
}

.bread-section .bread{
    float: left;
}

.bread-section .bread .title{
    float: left;
    height: 30px;
    line-height: 30px;
    background: url("../images/breadcrumb.png") no-repeat left center;
    padding-left: 22px;
}

.bread-section .bread .crumb{
    list-style: outside none none;
    float: left;
    height: 30px;
}

.bread-section .bread .crumb>li{
    display: inline-block;
    line-height: 30px;
}

.bread-section .bread .crumb>li+li::before{
    content: ">";
    margin-right: 5px;
}

.bread-section .bread .crumb>li a{
    color: #444;
}

.bread-section .bread .crumb>li a:hover{
    color: #5c7ba6;
}

.module-opt{
    float: left;
    margin-bottom: 5px;
}

.module-opt li{
    float: left;
    height: 32px;
    margin-right: 8px;
}

.module-opt li a{
    display: block;
    line-height: 32px;
    background-color: #efefef;
    color: #666;
    padding: 0px 10px;
}

.module-opt li a:hover{
    color: #455e80;
}

.module-opt li.active a{
    background-color: #627aba;
    color: white;
}

.form-section{
    border: solid 1px #acd0ff;
    padding: 6px 6px;
    margin-bottom: 8px;
}

.form-section .form-header{
    height: 28px;
    padding-bottom: 6px;
    border-bottom: solid 1px #acd0ff;
    margin-bottom: 5px;
}

.form-section .form-header .title{
    line-height: 30px;
    float: left;
    color: #455e80;
    background: url("../images/fieldtitle.png") no-repeat left center;
    padding-left: 14px;
    font-weight: bold;
}

.form-section .form-header a.more{
    float: right;
    line-height: 18px;
    font-size: 10px;
    color: #999;
    background-color: #f5f5f5;
    border: solid 1px #f5f5f5;
    margin-top: 6px;
    height: 16px;
    padding: 0px 6px;
}

.form-section .form-header a.more:hover{
    color: #455e80;
    background-color: #ffffff;
    border: solid 1px #a0aec0;
}

.field-group{
    width: 100%;
    margin-bottom: 8px;
}

.field-group th{
    padding: 6px 5px 6px 5px;
    vertical-align:top;
    text-align:left;
    border-bottom: solid 1px #ececec;
    text-align: right;
    background-color: #f8fffc;
}

.field-group th label{
    line-height: 24px;
    padding: 5px 0px;
    display: block;
    font-weight: bold;
}

.field-group td{
    padding: 6px 5px 6px 5px;
    vertical-align:top;
    border-bottom: solid 1px #eee;
}

.form-button-group{
    padding-left: 195px;
}

.form-center-button-group{
    text-align: center;
    padding-bottom: 10px;
}

.query-form .text-box{
    width: 226px;
}

.query-form .select-box{
    width: 240px;
}

.query-form .calendar-box{
    width: 210px;
}

.query-form .query-button-group{
    padding-left: 10px;
}

.query-form  .tree-select-box .text-box{
    width: 213px;
}

.query-form  .tree-select-box .tree-menu{
    width: 231px;
}

.list-header-opt{
    height: 32px;
    margin-bottom: 5px;
}

.list-header-opt ul li{
    line-height: 30px;
    float: left;
    border: solid 1px #ececec;
    padding: 0px 8px;
    cursor: pointer;
}

.list-header-opt .list-opt{
    float: left;
    height: 30px;
    border-left: solid 1px #ececec;
}

.list-header-opt .list-opt li{
    background-color: #f5f5f5;
    border-left: 0px none;
    color: #585858;
    cursor: pointer;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0px 8px;
    outline: 0px none;
}

.list-header-opt .list-opt li span{
    background: left center no-repeat;
    color: #444;
    padding-left: 14px;
}

.list-header-opt .list-opt li:active{
    background-color: #fff;
}

.list-header-opt .list-opt li:hover span{
    color: #5c7ba6;
}

.list-header-opt .list-opt li.disabled{
    background-color: #eee;
    color: #aaa;
}

.list-header-opt .list-opt li.disabled:hover{
    background-color: #eee;
    color: #aaa;
}

.list-header-opt .list-opt li .refresh{
    background-image: url(../images/refresh.normal.png);
}

.list-header-opt .list-opt li:hover .refresh{
    background-image: url(../images/refresh.hover.png);
}

.list-header-opt .list-opt li.disabled:hover .refresh{
    background-image: url(../images/refresh.disabled.png);
}

.list-header-opt .list-opt li .export{
    background-image: url(../images/export.normal.png);
}

.list-header-opt .list-opt li:hover .export{
    background-image: url(../images/export.hover.png);
}

.list-header-opt .list-opt li.disabled:hover .export{
    background-image: url(../images/export.disabled.png);
}

.list-header-opt .list-sort{
    float: right;
    border-right: solid 1px #e3dfde;
    height: 30px;
}

.list-header-opt .list-sort li{
    border-right: 0px;
    background-color: #f5f5f5;
    color: #585858;
    cursor: pointer;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0px 8px;
    outline: 0px none;
}

.list-header-opt .list-sort li:hover span{
    color: #5c7ba6;
}

.list-header-opt .list-sort li:active{
    background-color: #fff;
}

.list-header-opt .list-sort li.disabled{
    background-color: #eee;
    color: #aaa;
}

.list-header-opt .list-sort li.disabled:hover{
    background-color: #eee;
    color: #aaa;
}

.list-header-opt .list-sort .current-sort{
    background-color: #fff;
}

.list-header-opt .list-sort li .asc{
    background: url(../images/asc.normal.png) no-repeat right center;
    padding-right: 12px;
}

.list-header-opt .list-sort li:hover .asc{
    background: url(../images/asc.hover.png) no-repeat right center;
    padding-right: 12px;
}

.list-header-opt .list-sort li .desc{
    background: url(../images/desc.normal.png) no-repeat right center;
    padding-right: 12px;
}

.list-header-opt .list-sort li .desc{
    background: url(../images/desc.hover.png) no-repeat right center;
    padding-right: 12px;
}

.chart-container-title{
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    font-weight: bold;
    padding: 8px 0px;
    position: relative;
}

.chart-container-title .button-container{
    position: absolute;
    right: 0px;
    top: 4px;
}

/** login页面 **/
.login-wrapper{
    width: 1230px;
    height: 700px;
    margin: 80px auto 20px auto;
    background: #fff url(../images/login/loginbg.png) no-repeat left top;
    background-size: contain;
}

.login-wrapper .login-form{
    padding-top: 160px;
    width: 410px;
    float: right;
    position: relative;
}

.login-wrapper .login-form .login-welcome{
    font-size: 44px;
    color: #6c6c6c;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.login-wrapper .login-form .login-title{
    font-size: 18px;
    color: #969696;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.login-wrapper .login-form .login-title span{
    color: #1669ff;
}

.login-field-group th{
    line-height: 34px;
    padding: 10px 5px 10px 0px;
}

.login-field-group td{
    padding: 10px 0px 10px 5px;
}

.login-field-group .check-code .text-box{
    width: 100px;
    float: left;
}

.login-field-group .check-code img{
    float: left;
    margin: 0px 10px;
}

.login-field-group .check-code a{
    float: left;
    line-height: 34px;
}

.login-button-group{
    margin-left: 66px;
    padding-top: 10px;
    width: 330px;
}

.login-button-group .button{
    width: 100%;
    height: 34px;
}

.login-footer{
    text-align: center;
    color: #b2b2b2;
    font-size: 12px;
}

.login-error-tip{
    background-color: #ffe5e5;
    padding: 10px 10px;
    width: 315px;
    position: relative;
    margin-left: 50px;
    margin-bottom: 10px;
    display: none;
}

.login-error-tip .tip{
    color: #b10303;
    background: url(../images/login/errortip.png) no-repeat left center;
    padding-left: 20px;
}

.login-error-tip .close{
    background: url(../images/login/errorclose.png) no-repeat center;
    background-size: 10px 10px;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 6px;
    top: 6px;
    cursor: pointer;
}

.login-error-tip .close:hover{
    background: url(../images/login/errorclosehover.png) no-repeat center;
    background-size: 10px 10px;
}

.login-form .ajax-loading{
    float: right;
    background: url(../images/login/ajax-loader.gif) no-repeat left center;
    padding-left: 20px;
    height: 30px;
    line-height: 30px;
    margin-top: 5px;
    color: #5A9EFE;
    margin-right: 30px;
    display: none;
}

.login-form .login-mask{
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    display: none;
}

/* @personal 个人中心
---------------------------------------------------------------------- */
.personal-home-personal-info {
    width: 100%;
}

.personal-home-personal-info .photo-wrapper{
    width: 150px;
    padding: 23px 28px 0px 20px;
}

.personal-home-personal-info .photo-wrapper img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.personal-chart-wrapper{
    padding: 0px 30px 0px 20px;
}

.personal-chart-wrapper>div{
    height: 205px;
}

.personal-login-detail{
    width: 100%;
}

.personal-login-detail th{
    width: 110px;
    text-align: right;
    border: solid 1px #eee;
    padding: 7px 5px;
}

.personal-login-detail td{
    width: 100px;
    border: solid 1px #eee;
    padding: 7px 5px;
}

/* @错误页面
---------------------------------------------------------------------- */
.page-error-container{
    width: 600px;
    background: url(../images/errortip.png) no-repeat top center;
    margin: 120px auto 200px auto;
    padding-top: 200px;
}

.page-error-container .error-message{
    text-align: center;
    font-size: 18px;
    padding: 10px 20px 20px 20px;
}

.page-error-container .error-buttons{
    text-align: center;
}

.page-error-container .error-buttons .button{
    width: 160px;
}

.page-error-relogin-container{
    width: 373px;
    margin: 80px auto 200px auto;
    border: solid 1px #eee;
    padding: 0px 0px 20px 0px;
}

.page-error-relogin-container .error-tip{
    padding: 5px 5px;
    line-height: 30px;
    background-color: #eee;
    margin-bottom: 10px;
    text-align: center;
    color: #ca415c;
}

.page-error-relogin-container .login-form{
    margin: 0px 20px;
}

.page-error-relogin-container .login-form .login-field-group td{
    padding: 5px 0px;
}

.page-error-relogin-container .login-form .login-field-group td label{
    display: block;
    padding-bottom: 10px;
}

.page-error-relogin-container .login-form .login-button-group{
    padding-top: 10px;
}

/* @origin-product 溯源产品
---------------------------------------------------------------------- */
.origin-product-list{
    border-top: solid 1px #eee;
    padding-top: 10px;
}

.origin-product-list .product-item{
    border-bottom: dotted 1px #ccc;
    padding: 0px 0px 10px 0px;
    margin-bottom: 10px;
}

.origin-product-list .product-item .product-operation-list{
   height: 40px;
}

.origin-product-list .product-item .product-operation-list li{
    float: left;
    line-height: 40px;
    margin-right: 10px;
}

.origin-product-list .product-item .origin-product{
    position: relative;
    padding-left: 150px;
    height: 105px;
}

.origin-product-list .product-item .origin-product .image-wrapper{
    width: 140px;
    height: 105px;
    border: solid 1px #eee;
    position: absolute;
    left: 0px;
    top: 0px;
    overflow: hidden;
}

.origin-product-list .product-item .origin-product .image-wrapper img{
    width: 100%;
    min-height: 100%;
}

.origin-product-list .product-item .origin-product .origin-product-attr table th{
    height: 30px;
    line-height: 30px;
    padding-right: 5px;
}

.origin-product-list .product-item .origin-product .origin-product-attr table td{
    height: 30px;
    line-height: 30px;
    padding-right: 5px;
}

.origin-product-list .product-item .origin-detail{
    clear: both;
    padding: 0px 0px 6px 2px;
    margin-top: 10px;
    border: solid 1px #eee;
}

.origin-product-list .product-item .origin-detail .detail-title{
    text-align: left;
    padding: 5px 15px 0px 15px;
    font-weight: bold;
}

.origin-product-list .product-item .origin-detail table{
    width: 100%;
}

.origin-product-list .product-item .origin-detail table th{
    height: 30px;
    line-height: 30px;
    text-align: right;
    padding: 0px 5px;
}

.origin-product-list .product-item .origin-detail table td{
    height: 30px;
    line-height: 30px;
    padding: 0px 5px;
}

.origin-product-list .product-item .origin-detail-buttons{
    padding: 10px 0px 10px 0px;
}

.origin-product-list .product-item .origin-detail-buttons .button{
    display: inline-block;
    margin-right: 10px;
}

.origin-product-list .product-item .origin-detail-empty{
    background-color: #f5f5f5;
    height: 26px;
    line-height: 26px;
    margin: 10px 0px;
    padding: 5px 10px;
}

.origin-detail-buttons{
    padding: 5px 0px;
}

.origin-detail-list li.origin-detail-item{
    border: solid 1px #eee;
    padding: 10px;
    margin-bottom: 10px;
}

.origin-detail-list li.origin-detail-item table{
    width: 100%;
    border-bottom: dotted 1px #999;
}

.origin-detail-list li.origin-detail-item table th{
    line-height: 24px;
    padding: 5px 5px 5px 0px;
}

.origin-detail-list li.origin-detail-item table td{
    line-height: 24px;
    padding: 5px 5px;
}

.origin-detail-list li.origin-detail-item ul.operation-list{
    height: 24px;
    padding-top: 5px;
}

.origin-detail-list li.origin-detail-item ul.operation-list li{
    float: left;
    height: 24px;
    line-height: 24px;
    margin: 0px 5px;
}

.mobile-preview-container{
    width: 333px;
    height: 670px;
    background: url(../images/previewmobile.png) no-repeat center;
    margin: 20px auto;
}

.mobile-preview-container .mobile-content{
    width: 283px;
    height: 570px;
    padding: 50px 25px 50px 25px;
}

.origin-detail-preview-head{
    margin-bottom: 10px;
    border-bottom: solid 1px #eee;
    padding-bottom: 10px;
}

.origin-detail-preview-head img{
    float: left;
    width: 100px;
    max-height: 97px;
    border-radius: 4px;
}

.origin-detail-preview-head .title{
    float: right;
    width: 173px;
}

.origin-detail-preview-head .title .main-title{
    font-weight: bold;
    margin-bottom: 5px;
}

.origin-detail-preview-head .title .sub-title p{
    font-size: 12px;
}

.origin-detail-preview-list{
    height: 450px;
    width: 280px;
    padding-left: 3px;
    overflow: auto;
    padding-top: 20px;
}

.origin-detail-preview-list ul li{
    clear: both;
    border-left: solid 1px #d7d7d7;
}

.origin-detail-preview-list ul li .origin-type{
    background:  url(../images/reddotted.png) no-repeat left center;
    font-weight: bold;
    position: relative;
    left: -3px;
    top: -10px;
    padding-left: 16px;
    font-size:12px;
}

.origin-detail-preview-list ul li .origin-description{
    padding-left: 14px;
    position: relative;
    top: -5px;
    line-height: 24px;
    margin-bottom: 10px;
    color: #777;
    font-size:12px;
}

.origin-detail-preview-list ul li .origin-user{
    position: relative;
    top: -10px;
    padding-left: 14px;
    margin-bottom: 5px;
    color: #000;
    font-size:12px;
}

.origin-detail-preview-list ul li .origin-time{
    position: relative;
    top: -10px;
    padding-left: 14px;
    padding-bottom: 20px;
    color: #000;
    font-size:12px;
}

.info-detail-container{
    padding: 0px 20px;
}

.info-detail-container .info-header{
    border-bottom: solid 1px #e5e5e5;
}

.info-detail-container .info-header .info-title{
    color: #000;
    font-size: 28px;
    text-align: center;
    padding: 10px 0px 20px 0px;
}

.info-detail-container .info-header .info-attr{
    font-size: 14px;
    padding: 0px 0px 10px 0px;
    line-height: 24px;
    text-align: center;
}

.info-detail-container .info-body{
    padding: 20px 0px;
}

.info-detail-container .info-body *{
    font-size: 18px;
}

.info-detail-container .info-body p{
    line-height: 32px;
    margin-bottom: 16px;
}

.info-detail-container .info-body img{
    max-width: 800px;
}

.info-detail-container .info-body p strong{
    font-weight: bold;
}

/*** 首页样式  ***/
.home-personal-info {
    width: 100%;
}

.home-personal-info .photo-wrapper{
    width: 150px;
    padding: 20px 20px 0px 18px
}

.home-personal-info .photo-wrapper img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.map-container{
    background: red;
    height: 100%;
}

.scenic-container{
    height: calc(100% - 42px);
    width: 300px;
    position: absolute;
    top: 42px;
    left: 0px;
    background: rgba(255, 255, 255, 1);
    border-right: solid 1px #eee;
}

.scenic-container .title{
    height: 42px;
    line-height: 42px;
    padding: 0px 10px;
    background-color: #f1f1f1;
    font-weight: bold;
}

.scenic-container .location-select{
    height: 40px;
    padding: 10px 5px 5px 5px;
    border-bottom: solid 1px #eee;
}

.scenic-container .location-select *{
    float: left;
}

.scenic-container .location-select span{
    line-height: 34px;
    margin-right: 5px;
}

.scenic-container .location-select select{
    width: 100px;
    margin-right: 5px;
}

.scenic-container .button{
    height: 34px;
}

.scenic-container .scenic-list{
    padding: 0px 5px;
    overflow: auto;
    height: calc(100% - 80px - 70px)
}

.scenic-container .scenic-list li{
    border-bottom: solid 1px #efefef;
    padding-bottom: 5px;
}

.scenic-container .scenic-list li div{
    line-height: 24px;
}

.scenic-container .scenic-list li div.code{
    font-weight: bold;
}

.scenic-container .scenic-list li div.operation a{
    display: inline-block;
    margin-right: 10px;
}

.scenic-container .pager{
    margin-top: 5px;
}

.map-operation-container{
    height: calc(100% - 42px);
    width: 40px;
    position: absolute;
    top: 42px;
    right: 0px;
    background: rgba(255, 255, 255, 1);
    border-left: solid 1px #eee;
}

.map-operation-container ul li{
    height: 40px;
    border-bottom: solid 1px #eee;
    cursor: pointer;
}

.origin-detail-empty-tip{
    text-align: center;
    line-height: 300px;
    color: #aaa;
    position: relative;
}

.origin-detail-empty-tip span{
    background: url(../images/listempty.png) no-repeat top center;
    padding-top:42px;
}

.origin-detail-empty-tip .button{
    position: absolute;
    top: 180px;
    left: 560px;
    width: 160px;
}


.product-nav-list li{
    border-bottom: solid 1px #eee;
    padding: 10px 10px 8px 10px;
}

.product-nav-list li.active{
    background-color: #f1f1f1;
}

.product-nav-list li a{
    display: block;
}

.product-nav-list li .main-title{
    margin-bottom: 5px;
}

.product-nav-list li img{
    float: left;
    width: 113px;
    height: 85px;
}

.product-nav-list li .sub-title{
    float: right;
    width: 144px;
}

.product-nav-list li p{
    margin-bottom: 5px;
}

.info-detail{
    padding: 20px 20px 60px 20px;
    margin: 0px auto;
}

.info-detail .info-header{
    border-bottom: solid 1px #e5e5e5;
    margin: 0px 0px 10px 0px;
}

.info-detail .info-header .info-title{
    font-size: 32px;
    text-align: center;
    padding: 10px 0px 14px 0px;
    width: 840px;
    margin: 0px auto;
    line-height:50px;
}

.info-detail .info-header .info-attr{
    font-size: 14px;
    padding: 0px 0px 14px 0px;
    text-align: center;
}

.info-detail .info-header .info-attr .left{
    line-height: 24px;
    display: inline;
}

.info-detail .info-header .info-attr .right{
    display: inline;
    line-height: 24px;
    padding-left: 40px;
}

.info-detail .info-header .info-attr .right span{
    cursor: pointer;
}

.info-body{
    padding: 10px 0px 20px 0px;
}

.info-body *{
    font-size: 18px;
    line-height: 36px;
}

.info-body div{
    line-height: 36px;
    margin-bottom: 14px;
}

.info-body p{
    line-height: 36px;
    margin-bottom: 14px;
}

.info-body img{
    max-width: 800px;
    margin-bottom: -20px;
}

.info-body p strong{
    font-weight: bold;
    font-size: 18px;
}


.app-monitor-hour{
    width: 100%;
}

.app-monitor-hour th{
    border: solid 1px #444;
    text-align: center;
    line-height: 24px;
    padding: 6px 5px;
}

.app-monitor-hour td{
    border: solid 1px #444;
    text-align: center;
    line-height: 24px;
    padding: 6px 5px;
}

.app-monitor-hour div.normal{
    background: #13af85;
    height: 18px;
    width: 18px;
    border-radius: 100%;
    margin: 3px auto;
}

.app-monitor-hour div.error{
    background: #f51515;
    height: 18px;
    width: 18px;
    border-radius: 100%;
    margin: 3px auto;
}

.monitor-log-list li{
    border-bottom: dotted 1px #ccc;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.monitor-log-list li div{
    line-height: 24px;
    margin-bottom: 5px;
}

.monitor-log-list li div span.normal{
    background: #13af85;
    display: inline-block;
    margin: 0px 10px 0px 0px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
}
