123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- // css初始化
- html,
- body {
- margin: 0;
- padding: 0;
- font-size: 14px;
- width: 100vw;
- // min-height: 100vh;
- background-color: #f2f2f2;
- max-width:500px;
- margin: 0 auto;
- }
- ul,
- li {
- list-style: none;
- padding: 0;
- margin: 0;
- }
- .cl-blue {
- color: #0084ff;
- }
- .cl-green {
- color: #34C724;
- }
- .cl-red {
- color: #FF655B;
- }
- .cl-yl{
- color: #FFB800;
- }
- #app {}
- .commons-title {
- height: 52px;
- line-height: 52px;
- color: #333;
- font-size: 16px;
- font-weight: bold;
- position: relative;
- padding: 0 16px;
- }
- .commons-title::before {
- content: '';
- display: inline-block;
- width: 4px;
- height: 12px;
- background: #409eff;
- position: absolute;
- left: 0;
- top: 20px;
- background: #0084ff;
- border-radius: 2px 2px 2px 2px;
- }
- .van-toast {
- background-color: rgba(0, 0, 0, .7) !important;
- width: 120px !important;
- height: 120px !important;
- box-sizing: border-box !important;
- }
- .common-title {
- height: 52px;
- line-height: 52px;
- color: #333;
- font-size: 16px;
- font-weight: bold;
- position: relative;
- padding: 0 16px;
- }
- .common-title::before {
- content: "";
- display: inline-block;
- width: 4px;
- height: 12px;
- background: #409eff;
- position: absolute;
- left: 0;
- top: 20px;
- background: #0084ff;
- border-radius: 2px 2px 2px 2px;
- }
- .common-form-text {
- line-height: 28px;
- color: #999;
- font-size: 14px;
- border-bottom: 1px solid #e5e5e5;
- padding: 10px 0;
- margin-bottom: 6px;
- .common-form-text-item {}
- .common-form-text-item-value {
- color: #333333;
- font-size: 16px;
- font-weight: 500;
- }
- }
- .border-btm {
- border-bottom: 1px solid #ddd;
- }
- .common-mobile-table {
- width: 100%;
- border-collapse: collapse;
- border-spacing: 0;
- overflow-x: auto;
- padding: 0 12px;
- box-sizing: border-box;
- table {
- width: 100%;
- border-collapse: collapse;
- border-spacing: 0;
- text-align: center;
- th {
- background-color: #F1F1F1;
- color: #666666;
- padding: 15px 0;
- min-width: 100px;
- }
- td {
- border-bottom: 1px solid #ddd;
- padding: 15px 0;
- color: #333333;
- }
- }
- }
- .common-steps {
- .label {
- height: 28px;
- line-height: 28px;
- font-size: 14px;
- .name {
- color: #333333;
- font-weight: bold;
- }
- .tip {
- color: #999999;
- font-size: 12px;
- margin-left: 8px;
- }
- .state {
- float: right;
- font-weight: 500;
- }
- }
- .content {
- padding: 14px 12px;
- background: #F1F1F1;
- color: #666;
- border-radius: 4px;
- }
- p {
- font-size: 12px;
- color: #999;
- }
- }
- .van-field--label-top .van-icon-arrow {
- position: absolute;
- right: 10px;
- top: 0;
- height: 70px;
- line-height: 70px;
- }
- .commons-item-title-delete {
- background-color: #f2f2f2;
- height: 30px;
- line-height: 30px;
- padding: 0 10px !important;
- margin: 0 10px;
- .delete {
- width: 30px !important;
- font-size: 12px;
- }
- }
- .van-cell-group--inset {
- margin: 0 !important;
- border-radius: 0 !important;
- }
- .van-form {
- margin-top: 6px !important;
- border: 0 !important;
- }
- .commons-delete {
- display: flex!important;
- padding: 5px 15px!important;
- justify-content: space-between!important;
- align-items: center!important;
- color: #999999!important;
- background-color: #f2f2f2;
- .title {
- flex: 1!important;
- }
- .delete {
- width: 20px!important;
- cursor: pointer!important;
- text-align: center!important;
- }
- }
- .commons-add-btn{
- button{
- border:none!important;
- }
- }
- :root{
- --van-field-label-width:10.2em!important;
- }
- .has-bottombar:after {
- content: '';
- z-index: 9998;
- position: fixed;
- left: 0;
- bottom: -50px;
- width: 100%;
- height: 50px;
- background: #fff;
- border-radius: 8px;
- }
- .common-process-card{
- margin: 16px 12px;
- background: #fff;
- }
|