hupeng
4 years ago
3 changed files with 537 additions and 890 deletions
@ -1,407 +1,268 @@ |
|||||||
@charset "UTF-8"; |
@charset "UTF-8"; |
||||||
.acea-row { |
.acea-row { |
||||||
display: -webkit-box; |
display: -webkit-box; |
||||||
display: -moz-box; |
display: -moz-box; |
||||||
display: -webkit-flex; |
display: -webkit-flex; |
||||||
display: -ms-flexbox; |
display: -ms-flexbox; |
||||||
display: flex; |
display: flex; |
||||||
-webkit-box-lines: multiple; |
-webkit-box-lines: multiple; |
||||||
-moz-box-lines: multiple; |
-moz-box-lines: multiple; |
||||||
-o-box-lines: multiple; |
-o-box-lines: multiple; |
||||||
-webkit-flex-wrap: wrap; |
-webkit-flex-wrap: wrap; |
||||||
-ms-flex-wrap: wrap; |
-ms-flex-wrap: wrap; |
||||||
flex-wrap: wrap; |
flex-wrap: wrap; |
||||||
/* 辅助类 */ |
/* 辅助类 */ |
||||||
} |
} |
||||||
|
|
||||||
.acea-row.row-middle { |
.acea-row.row-middle { |
||||||
-webkit-box-align: center; |
-webkit-box-align: center; |
||||||
-moz-box-align: center; |
-moz-box-align: center; |
||||||
-o-box-align: center; |
-o-box-align: center; |
||||||
-ms-flex-align: center; |
-ms-flex-align: center; |
||||||
-webkit-align-items: center; |
-webkit-align-items: center; |
||||||
align-items: center; |
align-items: center; |
||||||
} |
} |
||||||
|
|
||||||
.acea-row.row-top { |
.acea-row.row-top { |
||||||
-webkit-box-align: start; |
-webkit-box-align: start; |
||||||
-moz-box-align: start; |
-moz-box-align: start; |
||||||
-o-box-align: start; |
-o-box-align: start; |
||||||
-ms-flex-align: start; |
-ms-flex-align: start; |
||||||
-webkit-align-items: flex-start; |
-webkit-align-items: flex-start; |
||||||
align-items: flex-start; |
align-items: flex-start; |
||||||
} |
} |
||||||
|
|
||||||
.acea-row.row-bottom { |
.acea-row.row-bottom { |
||||||
-webkit-box-align: end; |
-webkit-box-align: end; |
||||||
-moz-box-align: end; |
-moz-box-align: end; |
||||||
-o-box-align: end; |
-o-box-align: end; |
||||||
-ms-flex-align: end; |
-ms-flex-align: end; |
||||||
-webkit-align-items: flex-end; |
-webkit-align-items: flex-end; |
||||||
align-items: flex-end; |
align-items: flex-end; |
||||||
} |
} |
||||||
|
|
||||||
.acea-row.row-center { |
.acea-row.row-center { |
||||||
-webkit-box-pack: center; |
-webkit-box-pack: center; |
||||||
-moz-box-pack: center; |
-moz-box-pack: center; |
||||||
-o-box-pack: center; |
-o-box-pack: center; |
||||||
-ms-flex-pack: center; |
-ms-flex-pack: center; |
||||||
-webkit-justify-content: center; |
-webkit-justify-content: center; |
||||||
justify-content: center; |
justify-content: center; |
||||||
} |
} |
||||||
|
|
||||||
.acea-row.row-right { |
.acea-row.row-right { |
||||||
-webkit-box-pack: end; |
-webkit-box-pack: end; |
||||||
-moz-box-pack: end; |
-moz-box-pack: end; |
||||||
-o-box-pack: end; |
-o-box-pack: end; |
||||||
-ms-flex-pack: end; |
-ms-flex-pack: end; |
||||||
-webkit-justify-content: flex-end; |
-webkit-justify-content: flex-end; |
||||||
justify-content: flex-end; |
justify-content: flex-end; |
||||||
} |
} |
||||||
|
|
||||||
.acea-row.row-left { |
.acea-row.row-left { |
||||||
-webkit-box-pack: start; |
-webkit-box-pack: start; |
||||||
-moz-box-pack: start; |
-moz-box-pack: start; |
||||||
-o-box-pack: start; |
-o-box-pack: start; |
||||||
-ms-flex-pack: start; |
-ms-flex-pack: start; |
||||||
-webkit-justify-content: flex-start; |
-webkit-justify-content: flex-start; |
||||||
justify-content: flex-start; |
justify-content: flex-start; |
||||||
} |
} |
||||||
|
|
||||||
.acea-row.row-between { |
.acea-row.row-between { |
||||||
-webkit-box-pack: justify; |
-webkit-box-pack: justify; |
||||||
-moz-box-pack: justify; |
-moz-box-pack: justify; |
||||||
-o-box-pack: justify; |
-o-box-pack: justify; |
||||||
-ms-flex-pack: justify; |
-ms-flex-pack: justify; |
||||||
-webkit-justify-content: space-between; |
-webkit-justify-content: space-between; |
||||||
justify-content: space-between; |
justify-content: space-between; |
||||||
} |
} |
||||||
|
|
||||||
.acea-row.row-around { |
.acea-row.row-around { |
||||||
justify-content: space-around; |
justify-content: space-around; |
||||||
-webkit-justify-content: space-around; |
-webkit-justify-content: space-around; |
||||||
} |
} |
||||||
|
|
||||||
.acea-row.row-column-around { |
.acea-row.row-column-around { |
||||||
-webkit-flex-direction: column; |
-webkit-flex-direction: column; |
||||||
-ms-flex-direction: column; |
-ms-flex-direction: column; |
||||||
flex-direction: column; |
flex-direction: column; |
||||||
justify-content: space-around; |
justify-content: space-around; |
||||||
-webkit-justify-content: space-around; |
-webkit-justify-content: space-around; |
||||||
} |
} |
||||||
|
|
||||||
.acea-row.row-column { |
.acea-row.row-column { |
||||||
-webkit-box-orient: vertical; |
-webkit-box-orient: vertical; |
||||||
-moz-box-orient: vertical; |
-moz-box-orient: vertical; |
||||||
-o-box-orient: vertical; |
-o-box-orient: vertical; |
||||||
-webkit-flex-direction: column; |
-webkit-flex-direction: column; |
||||||
-ms-flex-direction: column; |
-ms-flex-direction: column; |
||||||
flex-direction: column; |
flex-direction: column; |
||||||
} |
} |
||||||
|
|
||||||
.acea-row.row-column-between { |
.acea-row.row-column-between { |
||||||
-webkit-box-orient: vertical; |
-webkit-box-orient: vertical; |
||||||
-moz-box-orient: vertical; |
-moz-box-orient: vertical; |
||||||
-o-box-orient: vertical; |
-o-box-orient: vertical; |
||||||
-webkit-flex-direction: column; |
-webkit-flex-direction: column; |
||||||
-ms-flex-direction: column; |
-ms-flex-direction: column; |
||||||
flex-direction: column; |
flex-direction: column; |
||||||
-webkit-box-pack: justify; |
-webkit-box-pack: justify; |
||||||
-moz-box-pack: justify; |
-moz-box-pack: justify; |
||||||
-o-box-pack: justify; |
-o-box-pack: justify; |
||||||
-ms-flex-pack: justify; |
-ms-flex-pack: justify; |
||||||
-webkit-justify-content: space-between; |
-webkit-justify-content: space-between; |
||||||
justify-content: space-between; |
justify-content: space-between; |
||||||
} |
} |
||||||
|
|
||||||
/* 上下左右垂直居中 */ |
/* 上下左右垂直居中 */ |
||||||
.acea-row.row-center-wrapper { |
.acea-row.row-center-wrapper { |
||||||
-webkit-box-align: center; |
-webkit-box-align: center; |
||||||
-moz-box-align: center; |
-moz-box-align: center; |
||||||
-o-box-align: center; |
-o-box-align: center; |
||||||
-ms-flex-align: center; |
-ms-flex-align: center; |
||||||
-webkit-align-items: center; |
-webkit-align-items: center; |
||||||
align-items: center; |
align-items: center; |
||||||
-webkit-box-pack: center; |
-webkit-box-pack: center; |
||||||
-moz-box-pack: center; |
-moz-box-pack: center; |
||||||
-o-box-pack: center; |
-o-box-pack: center; |
||||||
-ms-flex-pack: center; |
-ms-flex-pack: center; |
||||||
-webkit-justify-content: center; |
-webkit-justify-content: center; |
||||||
justify-content: center; |
justify-content: center; |
||||||
} |
} |
||||||
|
|
||||||
/* 上下两边居中对齐 */ |
/* 上下两边居中对齐 */ |
||||||
.acea-row.row-between-wrapper { |
.acea-row.row-between-wrapper { |
||||||
-webkit-box-align: center; |
-webkit-box-align: center; |
||||||
-moz-box-align: center; |
-moz-box-align: center; |
||||||
-o-box-align: center; |
-o-box-align: center; |
||||||
-ms-flex-align: center; |
-ms-flex-align: center; |
||||||
-webkit-align-items: center; |
-webkit-align-items: center; |
||||||
align-items: center; |
align-items: center; |
||||||
-webkit-box-pack: justify; |
-webkit-box-pack: justify; |
||||||
-moz-box-pack: justify; |
-moz-box-pack: justify; |
||||||
-o-box-pack: justify; |
-o-box-pack: justify; |
||||||
-ms-flex-pack: justify; |
-ms-flex-pack: justify; |
||||||
-webkit-justify-content: space-between; |
-webkit-justify-content: space-between; |
||||||
justify-content: space-between; |
justify-content: space-between; |
||||||
} |
} |
||||||
|
|
||||||
/*表单公共样式*/ |
/*表单公共样式*/ |
||||||
html, body { |
html, body { |
||||||
font-size: 12px !important; |
font-size: 12px !important; |
||||||
} |
} |
||||||
|
|
||||||
.ivu-table-wrapper { |
.ivu-table-wrapper { |
||||||
overflow: unset !important; |
overflow: unset !important; |
||||||
} |
} |
||||||
|
|
||||||
.page { |
.page { |
||||||
margin-top: 22px; |
margin-top: 22px; |
||||||
} |
} |
||||||
|
|
||||||
.vxe-table--loading { |
.vxe-table--loading { |
||||||
background-color: rgba(255, 255, 255, 0.9) !important; |
background-color: rgba(255, 255, 255, 0.9) !important; |
||||||
} |
} |
||||||
|
|
||||||
.vxe-table--loading .vxe-table--spinner:after, .vxe-table--loading .vxe-table--spinner:before { |
.vxe-table--loading .vxe-table--spinner:after, .vxe-table--loading .vxe-table--spinner:before { |
||||||
width: 50% !important; |
width: 50% !important; |
||||||
height: 50% !important; |
height: 50% !important; |
||||||
} |
} |
||||||
|
|
||||||
/*表格公共样式*/ |
|
||||||
.ivu-table-header table{ |
/*距离样式*/ |
||||||
border-top: 1px #e8eaec dashed !important; |
.mr { |
||||||
} |
margin-right: 15px; |
||||||
.ivu-form .ivu-form-item-label, .ivu-radio-group-button .ivu-radio-wrapper, .ivu-table { |
} |
||||||
font-size: 12px !important; |
|
||||||
} |
.mr10 { |
||||||
|
margin-right: 10px; |
||||||
.ivu-table-cell{ |
} |
||||||
padding: 6px 18px !important; |
|
||||||
} |
.ml20 { |
||||||
|
margin-left: 20px; |
||||||
.ivu-table th { |
} |
||||||
background: #fff !important; |
|
||||||
} |
.ml10 { |
||||||
|
margin-left: 10px; |
||||||
.ivu-btn { |
} |
||||||
font-size: 12px !important; |
|
||||||
} |
.ml40 { |
||||||
|
margin-left: 40px !important; |
||||||
.ivu-icon-ios-refresh { |
} |
||||||
color: #1890FF !important; |
.ml95 { |
||||||
} |
margin-left: 95px !important; |
||||||
|
} |
||||||
.product_tabs .ivu-tabs-bar { |
|
||||||
margin-bottom: 0 !important |
.pt5 { |
||||||
} |
padding: 5px 0 !important; |
||||||
|
box-sizing: border-box; |
||||||
.product_tabs .ivu-page-header { |
} |
||||||
border-bottom: 0; |
|
||||||
} |
.mr50 { |
||||||
|
margin-right: 50px; |
||||||
.product_tabs .ivu-page-header-content { |
} |
||||||
margin-bottom: 0 !important |
|
||||||
} |
.mr20 { |
||||||
|
margin-right: 20px !important; |
||||||
.ivu-radio-wrapper { |
} |
||||||
font-size: 12px !important; |
|
||||||
} |
.mr15 { |
||||||
|
margin-right: 15px !important; |
||||||
.ivu-input { |
} |
||||||
font-size: 12px !important; |
.mr5 { |
||||||
} |
margin-right: 5px !important; |
||||||
|
} |
||||||
.modalBody .ivu-modal-body { |
|
||||||
padding: 27px !important; |
.mb20 { |
||||||
} |
margin-bottom: 20px !important; |
||||||
|
} |
||||||
.Modals .ivu-mt, .ivu-mt-16 { |
.mb5 { |
||||||
margin-top: 0 !important; |
margin-bottom: 5px !important; |
||||||
} |
} |
||||||
|
.mb15 { |
||||||
/*.Modals .ivu-table-border th, .ivu-table-border td{border-right:0!important;}*/ |
margin-bottom: 15px !important; |
||||||
.Modals .ivu-form-item-content { |
} |
||||||
line-height: unset; |
|
||||||
} |
.mb30 { |
||||||
|
margin-bottom: 30px !important; |
||||||
.Modals .label .ivu-input { |
} |
||||||
border: 1px solid #F5F5F5; |
|
||||||
} |
.mt30 { |
||||||
|
margin-top: 30px; |
||||||
.Modals .ivu-table table { |
} |
||||||
width: 100% !important; |
|
||||||
} |
.mt25 { |
||||||
|
margin-top: 25px; |
||||||
|
} |
||||||
/*距离样式*/ |
|
||||||
.mr { |
.mt20 { |
||||||
margin-right: 15px; |
margin-top: 20px; |
||||||
} |
} |
||||||
|
|
||||||
.mr10 { |
.mt50 { |
||||||
margin-right: 10px; |
margin-top: 50px; |
||||||
} |
} |
||||||
|
|
||||||
.ml20 { |
.mt10{ |
||||||
margin-left: 20px; |
margin-top: 10px; |
||||||
} |
} |
||||||
|
.mb10 { |
||||||
.ml10 { |
margin-bottom: 10px !important; |
||||||
margin-left: 10px; |
} |
||||||
} |
.mb5 { |
||||||
|
margin-bottom: 5px !important; |
||||||
.ml40 { |
} |
||||||
margin-left: 40px !important; |
.index_bg { |
||||||
} |
width: 100%; |
||||||
.ml95 { |
/*height: 100vh;*/ |
||||||
margin-left: 95px !important; |
background: rgba(0, 0, 0, .6) !important; |
||||||
} |
z-index: 0 !important; |
||||||
|
} |
||||||
.pt5 { |
|
||||||
padding: 5px 0 !important; |
|
||||||
box-sizing: border-box; |
/*字体上移变蓝色*/ |
||||||
} |
.font-blue:hover { |
||||||
|
color:#2D8cF0; |
||||||
.mr50 { |
cursor:pointer; |
||||||
margin-right: 50px; |
} |
||||||
} |
|
||||||
|
|
||||||
.mr20 { |
|
||||||
margin-right: 20px !important; |
|
||||||
} |
|
||||||
|
|
||||||
.mr15 { |
|
||||||
margin-right: 15px !important; |
|
||||||
} |
|
||||||
.mr5 { |
|
||||||
margin-right: 5px !important; |
|
||||||
} |
|
||||||
|
|
||||||
.mb20 { |
|
||||||
margin-bottom: 20px !important; |
|
||||||
} |
|
||||||
.mb5 { |
|
||||||
margin-bottom: 5px !important; |
|
||||||
} |
|
||||||
.mb15 { |
|
||||||
margin-bottom: 15px !important; |
|
||||||
} |
|
||||||
|
|
||||||
.mb30 { |
|
||||||
margin-bottom: 30px !important; |
|
||||||
} |
|
||||||
|
|
||||||
.mt30 { |
|
||||||
margin-top: 30px; |
|
||||||
} |
|
||||||
|
|
||||||
.mt25 { |
|
||||||
margin-top: 25px; |
|
||||||
} |
|
||||||
|
|
||||||
.mt20 { |
|
||||||
margin-top: 20px; |
|
||||||
} |
|
||||||
|
|
||||||
.mt50 { |
|
||||||
margin-top: 50px; |
|
||||||
} |
|
||||||
|
|
||||||
.mt10{ |
|
||||||
margin-top: 10px; |
|
||||||
} |
|
||||||
.mb10 { |
|
||||||
margin-bottom: 10px !important; |
|
||||||
} |
|
||||||
.mb5 { |
|
||||||
margin-bottom: 5px !important; |
|
||||||
} |
|
||||||
.index_bg { |
|
||||||
width: 100%; |
|
||||||
/*height: 100vh;*/ |
|
||||||
background: rgba(0, 0, 0, .6) !important; |
|
||||||
z-index: 0 !important; |
|
||||||
} |
|
||||||
|
|
||||||
.ivu-divider-horizontal { |
|
||||||
/*margin-bottom: 0 !important;*/ |
|
||||||
/*margin: 0 !important;*/ |
|
||||||
} |
|
||||||
|
|
||||||
/*设置导航菜单*/ |
|
||||||
.i-layout-menu-side-title-icon-single .ivu-icon { |
|
||||||
font-size: 20px; |
|
||||||
} |
|
||||||
.ivu-layout-content{ |
|
||||||
position: relative; |
|
||||||
} |
|
||||||
.ivu-form-item-content { |
|
||||||
font-size: 12px !important; |
|
||||||
} |
|
||||||
|
|
||||||
/*字体上移变蓝色*/ |
|
||||||
.font-blue:hover { |
|
||||||
color:#2D8cF0; |
|
||||||
cursor:pointer; |
|
||||||
} |
|
||||||
|
|
||||||
/*作用于运费模板组件*/ |
|
||||||
.Modals .ivu-table .ivu-table-header table{ |
|
||||||
border-top: 0 !important; |
|
||||||
} |
|
||||||
|
|
||||||
.ivu-table-cell{ |
|
||||||
padding: 10px 0 !important; |
|
||||||
} |
|
||||||
.ivu-table-cell-with-expand{ |
|
||||||
line-height: 31px !important; |
|
||||||
} |
|
||||||
/*tab标签栏*/ |
|
||||||
.i-layout-tabs-fix{ |
|
||||||
z-index: 5 !important; |
|
||||||
} |
|
||||||
/*全局表格加padding*/ |
|
||||||
.ivu-table th, .ivu-table td{ |
|
||||||
padding: 0 5px; |
|
||||||
} |
|
||||||
/*全局表格设置浮动样式*/ |
|
||||||
.ivu-table-fixed-right th,.ivu-table-fixed-right td{ |
|
||||||
text-align: center !important; |
|
||||||
} |
|
||||||
.ivu-table-fixed-right{ |
|
||||||
box-shadow: -2px 0 6px -2px rgba(0, 0, 0, 0.1) !important; |
|
||||||
top: 1px !important; |
|
||||||
} |
|
||||||
.ivu-table-fixed-right tr:last-child(1) td{ |
|
||||||
border-bottom: 0; |
|
||||||
} |
|
||||||
.ivu-table-fixed::before, .ivu-table-fixed-right::before{ |
|
||||||
background-color: unset !important; |
|
||||||
} |
|
||||||
.ivu-table:before{ |
|
||||||
background-color: unset !important; |
|
||||||
} |
|
||||||
.ivu-table-fixed-body{ |
|
||||||
background-color: #fff; |
|
||||||
overflow: unset !important; |
|
||||||
} |
|
||||||
|
|
||||||
.ivu-table-header thead tr th:nth-of-type(1){ |
|
||||||
padding-left: 16px; |
|
||||||
} |
|
||||||
.ivu-table td:nth-of-type(1){ |
|
||||||
padding-left: 16px; |
|
||||||
} |
|
||||||
.ivu-table-cell-expand{ |
|
||||||
text-align: left; |
|
||||||
} |
|
||||||
.vxe-header--row th:nth-of-type(1){ |
|
||||||
padding-left: 10px !important; |
|
||||||
} |
|
||||||
.vxe-table--body td:nth-of-type(1){ |
|
||||||
padding-left: 10px !important; |
|
||||||
} |
|
||||||
.ivu-modal-header{ |
|
||||||
background: #fafafa; |
|
||||||
} |
|
||||||
|
@ -1,407 +1,268 @@ |
|||||||
@charset "UTF-8"; |
@charset "UTF-8"; |
||||||
.acea-row { |
.acea-row { |
||||||
display: -webkit-box; |
display: -webkit-box; |
||||||
display: -moz-box; |
display: -moz-box; |
||||||
display: -webkit-flex; |
display: -webkit-flex; |
||||||
display: -ms-flexbox; |
display: -ms-flexbox; |
||||||
display: flex; |
display: flex; |
||||||
-webkit-box-lines: multiple; |
-webkit-box-lines: multiple; |
||||||
-moz-box-lines: multiple; |
-moz-box-lines: multiple; |
||||||
-o-box-lines: multiple; |
-o-box-lines: multiple; |
||||||
-webkit-flex-wrap: wrap; |
-webkit-flex-wrap: wrap; |
||||||
-ms-flex-wrap: wrap; |
-ms-flex-wrap: wrap; |
||||||
flex-wrap: wrap; |
flex-wrap: wrap; |
||||||
/* 辅助类 */ |
/* 辅助类 */ |
||||||
} |
} |
||||||
|
|
||||||
.acea-row.row-middle { |
.acea-row.row-middle { |
||||||
-webkit-box-align: center; |
-webkit-box-align: center; |
||||||
-moz-box-align: center; |
-moz-box-align: center; |
||||||
-o-box-align: center; |
-o-box-align: center; |
||||||
-ms-flex-align: center; |
-ms-flex-align: center; |
||||||
-webkit-align-items: center; |
-webkit-align-items: center; |
||||||
align-items: center; |
align-items: center; |
||||||
} |
} |
||||||
|
|
||||||
.acea-row.row-top { |
.acea-row.row-top { |
||||||
-webkit-box-align: start; |
-webkit-box-align: start; |
||||||
-moz-box-align: start; |
-moz-box-align: start; |
||||||
-o-box-align: start; |
-o-box-align: start; |
||||||
-ms-flex-align: start; |
-ms-flex-align: start; |
||||||
-webkit-align-items: flex-start; |
-webkit-align-items: flex-start; |
||||||
align-items: flex-start; |
align-items: flex-start; |
||||||
} |
} |
||||||
|
|
||||||
.acea-row.row-bottom { |
.acea-row.row-bottom { |
||||||
-webkit-box-align: end; |
-webkit-box-align: end; |
||||||
-moz-box-align: end; |
-moz-box-align: end; |
||||||
-o-box-align: end; |
-o-box-align: end; |
||||||
-ms-flex-align: end; |
-ms-flex-align: end; |
||||||
-webkit-align-items: flex-end; |
-webkit-align-items: flex-end; |
||||||
align-items: flex-end; |
align-items: flex-end; |
||||||
} |
} |
||||||
|
|
||||||
.acea-row.row-center { |
.acea-row.row-center { |
||||||
-webkit-box-pack: center; |
-webkit-box-pack: center; |
||||||
-moz-box-pack: center; |
-moz-box-pack: center; |
||||||
-o-box-pack: center; |
-o-box-pack: center; |
||||||
-ms-flex-pack: center; |
-ms-flex-pack: center; |
||||||
-webkit-justify-content: center; |
-webkit-justify-content: center; |
||||||
justify-content: center; |
justify-content: center; |
||||||
} |
} |
||||||
|
|
||||||
.acea-row.row-right { |
.acea-row.row-right { |
||||||
-webkit-box-pack: end; |
-webkit-box-pack: end; |
||||||
-moz-box-pack: end; |
-moz-box-pack: end; |
||||||
-o-box-pack: end; |
-o-box-pack: end; |
||||||
-ms-flex-pack: end; |
-ms-flex-pack: end; |
||||||
-webkit-justify-content: flex-end; |
-webkit-justify-content: flex-end; |
||||||
justify-content: flex-end; |
justify-content: flex-end; |
||||||
} |
} |
||||||
|
|
||||||
.acea-row.row-left { |
.acea-row.row-left { |
||||||
-webkit-box-pack: start; |
-webkit-box-pack: start; |
||||||
-moz-box-pack: start; |
-moz-box-pack: start; |
||||||
-o-box-pack: start; |
-o-box-pack: start; |
||||||
-ms-flex-pack: start; |
-ms-flex-pack: start; |
||||||
-webkit-justify-content: flex-start; |
-webkit-justify-content: flex-start; |
||||||
justify-content: flex-start; |
justify-content: flex-start; |
||||||
} |
} |
||||||
|
|
||||||
.acea-row.row-between { |
.acea-row.row-between { |
||||||
-webkit-box-pack: justify; |
-webkit-box-pack: justify; |
||||||
-moz-box-pack: justify; |
-moz-box-pack: justify; |
||||||
-o-box-pack: justify; |
-o-box-pack: justify; |
||||||
-ms-flex-pack: justify; |
-ms-flex-pack: justify; |
||||||
-webkit-justify-content: space-between; |
-webkit-justify-content: space-between; |
||||||
justify-content: space-between; |
justify-content: space-between; |
||||||
} |
} |
||||||
|
|
||||||
.acea-row.row-around { |
.acea-row.row-around { |
||||||
justify-content: space-around; |
justify-content: space-around; |
||||||
-webkit-justify-content: space-around; |
-webkit-justify-content: space-around; |
||||||
} |
} |
||||||
|
|
||||||
.acea-row.row-column-around { |
.acea-row.row-column-around { |
||||||
-webkit-flex-direction: column; |
-webkit-flex-direction: column; |
||||||
-ms-flex-direction: column; |
-ms-flex-direction: column; |
||||||
flex-direction: column; |
flex-direction: column; |
||||||
justify-content: space-around; |
justify-content: space-around; |
||||||
-webkit-justify-content: space-around; |
-webkit-justify-content: space-around; |
||||||
} |
} |
||||||
|
|
||||||
.acea-row.row-column { |
.acea-row.row-column { |
||||||
-webkit-box-orient: vertical; |
-webkit-box-orient: vertical; |
||||||
-moz-box-orient: vertical; |
-moz-box-orient: vertical; |
||||||
-o-box-orient: vertical; |
-o-box-orient: vertical; |
||||||
-webkit-flex-direction: column; |
-webkit-flex-direction: column; |
||||||
-ms-flex-direction: column; |
-ms-flex-direction: column; |
||||||
flex-direction: column; |
flex-direction: column; |
||||||
} |
} |
||||||
|
|
||||||
.acea-row.row-column-between { |
.acea-row.row-column-between { |
||||||
-webkit-box-orient: vertical; |
-webkit-box-orient: vertical; |
||||||
-moz-box-orient: vertical; |
-moz-box-orient: vertical; |
||||||
-o-box-orient: vertical; |
-o-box-orient: vertical; |
||||||
-webkit-flex-direction: column; |
-webkit-flex-direction: column; |
||||||
-ms-flex-direction: column; |
-ms-flex-direction: column; |
||||||
flex-direction: column; |
flex-direction: column; |
||||||
-webkit-box-pack: justify; |
-webkit-box-pack: justify; |
||||||
-moz-box-pack: justify; |
-moz-box-pack: justify; |
||||||
-o-box-pack: justify; |
-o-box-pack: justify; |
||||||
-ms-flex-pack: justify; |
-ms-flex-pack: justify; |
||||||
-webkit-justify-content: space-between; |
-webkit-justify-content: space-between; |
||||||
justify-content: space-between; |
justify-content: space-between; |
||||||
} |
} |
||||||
|
|
||||||
/* 上下左右垂直居中 */ |
/* 上下左右垂直居中 */ |
||||||
.acea-row.row-center-wrapper { |
.acea-row.row-center-wrapper { |
||||||
-webkit-box-align: center; |
-webkit-box-align: center; |
||||||
-moz-box-align: center; |
-moz-box-align: center; |
||||||
-o-box-align: center; |
-o-box-align: center; |
||||||
-ms-flex-align: center; |
-ms-flex-align: center; |
||||||
-webkit-align-items: center; |
-webkit-align-items: center; |
||||||
align-items: center; |
align-items: center; |
||||||
-webkit-box-pack: center; |
-webkit-box-pack: center; |
||||||
-moz-box-pack: center; |
-moz-box-pack: center; |
||||||
-o-box-pack: center; |
-o-box-pack: center; |
||||||
-ms-flex-pack: center; |
-ms-flex-pack: center; |
||||||
-webkit-justify-content: center; |
-webkit-justify-content: center; |
||||||
justify-content: center; |
justify-content: center; |
||||||
} |
} |
||||||
|
|
||||||
/* 上下两边居中对齐 */ |
/* 上下两边居中对齐 */ |
||||||
.acea-row.row-between-wrapper { |
.acea-row.row-between-wrapper { |
||||||
-webkit-box-align: center; |
-webkit-box-align: center; |
||||||
-moz-box-align: center; |
-moz-box-align: center; |
||||||
-o-box-align: center; |
-o-box-align: center; |
||||||
-ms-flex-align: center; |
-ms-flex-align: center; |
||||||
-webkit-align-items: center; |
-webkit-align-items: center; |
||||||
align-items: center; |
align-items: center; |
||||||
-webkit-box-pack: justify; |
-webkit-box-pack: justify; |
||||||
-moz-box-pack: justify; |
-moz-box-pack: justify; |
||||||
-o-box-pack: justify; |
-o-box-pack: justify; |
||||||
-ms-flex-pack: justify; |
-ms-flex-pack: justify; |
||||||
-webkit-justify-content: space-between; |
-webkit-justify-content: space-between; |
||||||
justify-content: space-between; |
justify-content: space-between; |
||||||
} |
} |
||||||
|
|
||||||
/*表单公共样式*/ |
/*表单公共样式*/ |
||||||
html, body { |
html, body { |
||||||
font-size: 12px !important; |
font-size: 12px !important; |
||||||
} |
} |
||||||
|
|
||||||
.ivu-table-wrapper { |
|
||||||
overflow: unset !important; |
.page { |
||||||
} |
margin-top: 22px; |
||||||
|
} |
||||||
.page { |
|
||||||
margin-top: 22px; |
.vxe-table--loading { |
||||||
} |
background-color: rgba(255, 255, 255, 0.9) !important; |
||||||
|
} |
||||||
.vxe-table--loading { |
|
||||||
background-color: rgba(255, 255, 255, 0.9) !important; |
.vxe-table--loading .vxe-table--spinner:after, .vxe-table--loading .vxe-table--spinner:before { |
||||||
} |
width: 50% !important; |
||||||
|
height: 50% !important; |
||||||
.vxe-table--loading .vxe-table--spinner:after, .vxe-table--loading .vxe-table--spinner:before { |
} |
||||||
width: 50% !important; |
|
||||||
height: 50% !important; |
|
||||||
} |
/*距离样式*/ |
||||||
|
.mr { |
||||||
/*表格公共样式*/ |
margin-right: 15px; |
||||||
.ivu-table-header table{ |
} |
||||||
border-top: 1px #e8eaec dashed !important; |
|
||||||
} |
.mr10 { |
||||||
.ivu-form .ivu-form-item-label, .ivu-radio-group-button .ivu-radio-wrapper, .ivu-table { |
margin-right: 10px; |
||||||
font-size: 12px !important; |
} |
||||||
} |
|
||||||
|
.ml20 { |
||||||
.ivu-table-cell{ |
margin-left: 20px; |
||||||
padding: 6px 18px !important; |
} |
||||||
} |
|
||||||
|
.ml10 { |
||||||
.ivu-table th { |
margin-left: 10px; |
||||||
background: #fff !important; |
} |
||||||
} |
|
||||||
|
.ml40 { |
||||||
.ivu-btn { |
margin-left: 40px !important; |
||||||
font-size: 12px !important; |
} |
||||||
} |
.ml95 { |
||||||
|
margin-left: 95px !important; |
||||||
.ivu-icon-ios-refresh { |
} |
||||||
color: #1890FF !important; |
|
||||||
} |
.pt5 { |
||||||
|
padding: 5px 0 !important; |
||||||
.product_tabs .ivu-tabs-bar { |
box-sizing: border-box; |
||||||
margin-bottom: 0 !important |
} |
||||||
} |
|
||||||
|
.mr50 { |
||||||
.product_tabs .ivu-page-header { |
margin-right: 50px; |
||||||
border-bottom: 0; |
} |
||||||
} |
|
||||||
|
.mr20 { |
||||||
.product_tabs .ivu-page-header-content { |
margin-right: 20px !important; |
||||||
margin-bottom: 0 !important |
} |
||||||
} |
|
||||||
|
.mr15 { |
||||||
.ivu-radio-wrapper { |
margin-right: 15px !important; |
||||||
font-size: 12px !important; |
} |
||||||
} |
.mr5 { |
||||||
|
margin-right: 5px !important; |
||||||
.ivu-input { |
} |
||||||
font-size: 12px !important; |
|
||||||
} |
.mb20 { |
||||||
|
margin-bottom: 20px !important; |
||||||
.modalBody .ivu-modal-body { |
} |
||||||
padding: 27px !important; |
.mb5 { |
||||||
} |
margin-bottom: 5px !important; |
||||||
|
} |
||||||
.Modals .ivu-mt, .ivu-mt-16 { |
.mb15 { |
||||||
margin-top: 0 !important; |
margin-bottom: 15px !important; |
||||||
} |
} |
||||||
|
|
||||||
/*.Modals .ivu-table-border th, .ivu-table-border td{border-right:0!important;}*/ |
.mb30 { |
||||||
.Modals .ivu-form-item-content { |
margin-bottom: 30px !important; |
||||||
line-height: unset; |
} |
||||||
} |
|
||||||
|
.mt30 { |
||||||
.Modals .label .ivu-input { |
margin-top: 30px; |
||||||
border: 1px solid #F5F5F5; |
} |
||||||
} |
|
||||||
|
.mt25 { |
||||||
.Modals .ivu-table table { |
margin-top: 25px; |
||||||
width: 100% !important; |
} |
||||||
} |
|
||||||
|
.mt20 { |
||||||
|
margin-top: 20px; |
||||||
/*距离样式*/ |
} |
||||||
.mr { |
|
||||||
margin-right: 15px; |
.mt50 { |
||||||
} |
margin-top: 50px; |
||||||
|
} |
||||||
.mr10 { |
|
||||||
margin-right: 10px; |
.mt10{ |
||||||
} |
margin-top: 10px; |
||||||
|
} |
||||||
.ml20 { |
.mb10 { |
||||||
margin-left: 20px; |
margin-bottom: 10px !important; |
||||||
} |
} |
||||||
|
.mb5 { |
||||||
.ml10 { |
margin-bottom: 5px !important; |
||||||
margin-left: 10px; |
} |
||||||
} |
.index_bg { |
||||||
|
width: 100%; |
||||||
.ml40 { |
/*height: 100vh;*/ |
||||||
margin-left: 40px !important; |
background: rgba(0, 0, 0, .6) !important; |
||||||
} |
z-index: 0 !important; |
||||||
.ml95 { |
} |
||||||
margin-left: 95px !important; |
|
||||||
} |
|
||||||
|
/*字体上移变蓝色*/ |
||||||
.pt5 { |
.font-blue:hover { |
||||||
padding: 5px 0 !important; |
color:#2D8cF0; |
||||||
box-sizing: border-box; |
cursor:pointer; |
||||||
} |
} |
||||||
|
|
||||||
.mr50 { |
|
||||||
margin-right: 50px; |
|
||||||
} |
|
||||||
|
|
||||||
.mr20 { |
|
||||||
margin-right: 20px !important; |
|
||||||
} |
|
||||||
|
|
||||||
.mr15 { |
|
||||||
margin-right: 15px !important; |
|
||||||
} |
|
||||||
.mr5 { |
|
||||||
margin-right: 5px !important; |
|
||||||
} |
|
||||||
|
|
||||||
.mb20 { |
|
||||||
margin-bottom: 20px !important; |
|
||||||
} |
|
||||||
.mb5 { |
|
||||||
margin-bottom: 5px !important; |
|
||||||
} |
|
||||||
.mb15 { |
|
||||||
margin-bottom: 15px !important; |
|
||||||
} |
|
||||||
|
|
||||||
.mb30 { |
|
||||||
margin-bottom: 30px !important; |
|
||||||
} |
|
||||||
|
|
||||||
.mt30 { |
|
||||||
margin-top: 30px; |
|
||||||
} |
|
||||||
|
|
||||||
.mt25 { |
|
||||||
margin-top: 25px; |
|
||||||
} |
|
||||||
|
|
||||||
.mt20 { |
|
||||||
margin-top: 20px; |
|
||||||
} |
|
||||||
|
|
||||||
.mt50 { |
|
||||||
margin-top: 50px; |
|
||||||
} |
|
||||||
|
|
||||||
.mt10{ |
|
||||||
margin-top: 10px; |
|
||||||
} |
|
||||||
.mb10 { |
|
||||||
margin-bottom: 10px !important; |
|
||||||
} |
|
||||||
.mb5 { |
|
||||||
margin-bottom: 5px !important; |
|
||||||
} |
|
||||||
.index_bg { |
|
||||||
width: 100%; |
|
||||||
/*height: 100vh;*/ |
|
||||||
background: rgba(0, 0, 0, .6) !important; |
|
||||||
z-index: 0 !important; |
|
||||||
} |
|
||||||
|
|
||||||
.ivu-divider-horizontal { |
|
||||||
/*margin-bottom: 0 !important;*/ |
|
||||||
/*margin: 0 !important;*/ |
|
||||||
} |
|
||||||
|
|
||||||
/*设置导航菜单*/ |
|
||||||
.i-layout-menu-side-title-icon-single .ivu-icon { |
|
||||||
font-size: 20px; |
|
||||||
} |
|
||||||
.ivu-layout-content{ |
|
||||||
position: relative; |
|
||||||
} |
|
||||||
.ivu-form-item-content { |
|
||||||
font-size: 12px !important; |
|
||||||
} |
|
||||||
|
|
||||||
/*字体上移变蓝色*/ |
|
||||||
.font-blue:hover { |
|
||||||
color:#2D8cF0; |
|
||||||
cursor:pointer; |
|
||||||
} |
|
||||||
|
|
||||||
/*作用于运费模板组件*/ |
|
||||||
.Modals .ivu-table .ivu-table-header table{ |
|
||||||
border-top: 0 !important; |
|
||||||
} |
|
||||||
|
|
||||||
.ivu-table-cell{ |
|
||||||
padding: 10px 0 !important; |
|
||||||
} |
|
||||||
.ivu-table-cell-with-expand{ |
|
||||||
line-height: 31px !important; |
|
||||||
} |
|
||||||
/*tab标签栏*/ |
|
||||||
.i-layout-tabs-fix{ |
|
||||||
z-index: 5 !important; |
|
||||||
} |
|
||||||
/*全局表格加padding*/ |
|
||||||
.ivu-table th, .ivu-table td{ |
|
||||||
padding: 0 5px; |
|
||||||
} |
|
||||||
/*全局表格设置浮动样式*/ |
|
||||||
.ivu-table-fixed-right th,.ivu-table-fixed-right td{ |
|
||||||
text-align: center !important; |
|
||||||
} |
|
||||||
.ivu-table-fixed-right{ |
|
||||||
box-shadow: -2px 0 6px -2px rgba(0, 0, 0, 0.1) !important; |
|
||||||
top: 1px !important; |
|
||||||
} |
|
||||||
.ivu-table-fixed-right tr:last-child(1) td{ |
|
||||||
border-bottom: 0; |
|
||||||
} |
|
||||||
.ivu-table-fixed::before, .ivu-table-fixed-right::before{ |
|
||||||
background-color: unset !important; |
|
||||||
} |
|
||||||
.ivu-table:before{ |
|
||||||
background-color: unset !important; |
|
||||||
} |
|
||||||
.ivu-table-fixed-body{ |
|
||||||
background-color: #fff; |
|
||||||
overflow: unset !important; |
|
||||||
} |
|
||||||
|
|
||||||
.ivu-table-header thead tr th:nth-of-type(1){ |
|
||||||
padding-left: 16px; |
|
||||||
} |
|
||||||
.ivu-table td:nth-of-type(1){ |
|
||||||
padding-left: 16px; |
|
||||||
} |
|
||||||
.ivu-table-cell-expand{ |
|
||||||
text-align: left; |
|
||||||
} |
|
||||||
.vxe-header--row th:nth-of-type(1){ |
|
||||||
padding-left: 10px !important; |
|
||||||
} |
|
||||||
.vxe-table--body td:nth-of-type(1){ |
|
||||||
padding-left: 10px !important; |
|
||||||
} |
|
||||||
.ivu-modal-header{ |
|
||||||
background: #fafafa; |
|
||||||
} |
|
||||||
|
Loading…
Reference in new issue