123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- .text-center {
- text-align: center;
- }
-
- .font-13 {
- font-size: 13px;
- }
-
- .font-12 {
- font-size: 12px;
- }
-
- .font-11 {
- font-size: 11px;
- }
-
- .text-grey1 {
- color: #888;
- }
-
- .text-grey2 {
- color: #aaa;
- }
-
- .text-justify {
- text-align: justify;
- }
-
- .list-cell-arrow::before {
- content: ' ';
- height: 10px;
- width: 10px;
- border-width: 2px 2px 0 0;
- border-color: #c0c0c0;
- border-style: solid;
- -webkit-transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
- transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
- position: absolute;
- top: 50%;
- margin-top: -6px;
- right: 30rpx;
- }
-
- .list-cell {
- position: relative;
- width: 100%;
- box-sizing: border-box;
- background-color: #fff;
- color: #333;
- padding: 26rpx 30rpx;
- }
-
- .list-cell:first-child {
- border-radius: 8rpx 8rpx 0 0;
- }
-
- .list-cell:last-child {
- border-radius: 0 0 8rpx 8rpx;
- }
-
- .list-cell::after {
- content: '';
- position: absolute;
- border-bottom: 1px solid #eaeef1;
- -webkit-transform: scaleY(0.5) translateZ(0);
- transform: scaleY(0.5) translateZ(0);
- transform-origin: 0 100%;
- bottom: 0;
- right: 0;
- left: 0;
- pointer-events: none;
- }
-
-
- .menu-list {
- margin: 15px 15px;
-
- .menu-item-box {
- width: 100%;
- display: flex;
- align-items: center;
-
- .menu-icon {
- color: #007AFF;
- font-size: 16px;
- margin-right: 5px;
- }
-
- .text-right {
- margin-left: auto;
- margin-right: 34rpx;
- color: #999;
- }
- }
- }
-
-
-
- // 提交按钮
- .submit-btn {
- border-radius: 8px;
- background-color: #007AFF;
- font-size: 16px;
- }
-
- // 保存按钮
- .save-btn {
- border-radius: 8px;
- background-color: #f9ae3d;
- color: #fff;
- font-size: 16px;
- }
-
-
-
- .form-container {
- padding: 20px;
- background-color: #f8f8f8;
- }
-
- .form-title {
- margin-bottom: 15px;
- text-align: center;
-
- .title-text {
- font-size: 20px;
- font-weight: bold;
- color: #333;
- }
-
- .title-line {
- width: 50px;
- height: 2px;
- background-color: #007AFF;
- margin: 8px auto;
- }
- }
-
-
- .custom-form {
- background-color: #fff;
- padding: 15px;
- border-radius: 12px;
- box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
- }
-
-
- .form-item {
- margin-bottom: 20px;
-
- ::v-deep .uni-forms-item__label {
- font-weight: 500;
- color: #666;
- padding-bottom: 8px;
- }
- }
-
- @font-face {
- font-family: 'auditor'; // 根据自己用的去重命名字体名
- src: url('~@/static/font/auditor.ttf');
- }
-
- .auditor {
- font-family: 'auditor';
- font-size: 20px;
- }
-
- ::v-deep .uni-input-input:disabled {
- -webkit-text-fill-color: #333333;
- }
-
- ::v-deep .uni-textarea-textarea:disabled {
- -webkit-text-fill-color: #333333;
- }
-
- ::v-deep .uni-data-checklist .checklist-group .checklist-box.is--default.is-checked.is-disable .radio__inner {
- opacity: 1 !important;
- }
-
- ::v-deep .uni-data-checklist .checklist-group .checklist-box.is--default.is-checked.is-disable .checklist-text {
- opacity: 1 !important;
- }
|