123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- page{
- height: 100%;
- }
-
- .app-container{
- height: 100vh;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- background: white;
- }
- .scan-header{
- position: fixed;
- /* #ifndef APP-PLUS */
- top: 45px;
- /* #endif */
- /* #ifdef APP-PLUS */
- top: 80px;
- /* #endif */
-
- width: 100%;
- background-color: white;
- z-index: 999;
- }
- .cprk-content{
- /* height: calc(100vh - 100rpx) */
- }
-
- .fixed-column {
- position: sticky;
- top: 0;
- /* 其他样式属性 */
- }
-
- /*列表标签、input、下拉样式调整*/
- ::v-deep .uni-forms-item__label{
- justify-content: flex-end !important;
- font-size: 16px !important;
- min-width:84px;
- }
- ::v-deep .uni-forms-item__content{
- background-color: white;
- }
- ::v-deep .uni-easyinput__content-textarea,.uni-easyinput__content-input,.uni-easyinput{
- font-size: 16px !important;
- }
- ::v-deep .uni-select{
- background-color: white;
- font-size: 16px !important;
- }
-
- .form-container{
- padding: 0px 15px 5px 15px;
- }
- .scroll-Y {
- /* height: 100%; */
- /* #ifndef APP-PLUS */
- margin-top: 44px;
- height: calc(100vh - 135px);
- /* #endif */
- /* #ifdef APP-PLUS */
- margin-top: 54px;
- height: calc(100vh - 175px);
- /* #endif */
-
- }
-
- ::v-deep .uni-forms-item{
- margin-bottom: 5px !important;
- }
-
- .box-text{
- font-size: 16px;
- /* color: royalblue; */
- }
-
- ::v-deep .is-disabled {
- color: black !important;
- }
-
- .uni-input-border {
- padding: 0 10px;
- height: 35px;
- width: 100%;
- font-size: 14px;
- /* color: #666; */
- color: #0055ff;
- border: 1px #e5e5e5 solid;
- border-radius: 5px;
- box-sizing: border-box;
- }
- .icon {
- position: absolute;
- top: 10px;
- right: 10px;
- width: 20px;
- height: 20px;
- cursor: pointer;
- }
- .bottom-toolbar{
- background-color: #fcfcfc;
- height: 50px;
- width: 100%;
- position: fixed;
- bottom: 0;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 10px 20px 10px 20px;
- z-index: 999;
- }
-
- /* 底部操作菜单 */
- .page-bottom{
- position:fixed;
- left: 30upx;
- right: 30upx;
- bottom:30upx;
- z-index: 95;
- display: flex;
- /* justify-content: center; */
- justify-content: space-between;
- padding: 10px 20px 10px 20px;
- align-items: center;
- /* width: 95%; */
- height: 100upx;
- background: rgba(255,255,255,.9);
- box-shadow: 0 0 20upx 0 rgba(0,0,0,.5);
- border-radius: 16upx;
-
- .p-b-btn{
- display:flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- /* color: $font-color-base; */
- width: 96upx;
- height: 80upx;
- font-size: 16px;
- }
- }
-
- ::v-deep .zb-table{
- font-size: 16px !important;
- }
|