| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638 |
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- @property --l-loading-start {
- syntax: "<length-percentage>";
- initial-value: 1%;
- inherits: false;
- }
- @property --l-loading-end {
- syntax: "<length-percentage>";
- initial-value: 1%;
- inherits: false;
- }
- @property --l-left {
- syntax: "<length-percentage>";
- initial-value: 1%;
- inherits: false;
- }
- @property --l-loadding-ball-size {
- syntax: "<length> | <length-percentage>";
- inherits: false;
- }
- [data-v-e1d73892]:host {
- display: inline-flex;
- }
- .l-loading[data-v-e1d73892] {
- position: relative;
- color: var(--l-loading-color, #3283ff);
- font-size: 0;
- vertical-align: middle;
- }
- .l-loading--ball[data-v-e1d73892] {
- display: inline-flex;
- align-items: center;
- }
- .l-loading--ball .l-loading__ball[data-v-e1d73892] {
- position: relative;
- perspective: calc(var(--l-loadding-ball-size) * 4);
- transform-style: preserve-3d;
- }
- .l-loading--ball .l-loading__ball[data-v-e1d73892]:before {
- background-color: #3283ff;
- left: 0%;
- animation-name: l-ball-before-e1d73892;
- }
- .l-loading--ball .l-loading__ball[data-v-e1d73892]:after {
- right: 0;
- background-color: red;
- animation-name: l-ball-after-e1d73892;
- }
- .l-loading--ball .l-loading__ball[data-v-e1d73892]:before, .l-loading--ball .l-loading__ball[data-v-e1d73892]:after {
- top: 0;
- content: "";
- position: absolute;
- height: 100%;
- aspect-ratio: 1/1;
- border-radius: 50%;
- animation-iteration-count: infinite;
- animation-delay: -100ms;
- animation-duration: 900ms;
- mix-blend-mode: darken;
- }
- .l-loading--circular .l-loading__circular[data-v-e1d73892] {
- display: inline-block;
- position: relative;
-
- animation: l-rotate-e1d73892 var(--l-loading-duration, 1s) linear infinite;
- vertical-align: middle;
- }
- .l-loading--circular .l-loading__circular[data-v-e1d73892]:before {
- content: "";
- display: block;
- width: 100%;
- height: 100%;
- border-radius: 50%;
-
-
-
-
- background-image: conic-gradient(var(--l-loading-color-1, transparent) 0%, var(--l-loading-color-2, currentColor) 100%);
-
- mask: radial-gradient(closest-side, transparent calc(80% - 1px), #fff 80%);
- -webkit-mask: radial-gradient(closest-side, transparent calc(80% - 1px), #fff 80%);
- animation: l-circular-e1d73892 2.5s ease-in-out infinite;
- transform: rotate(90deg);
- }
- .l-loading--spinner .l-loading__spinner[data-v-e1d73892] {
- position: relative;
- box-sizing: border-box;
- width: 100%;
- height: 100%;
- max-width: 100%;
- max-height: 100%;
- animation-timing-function: steps(12);
- animation: l-rotate-e1d73892 0.8s linear infinite;
- }
- .l-loading--spinner .l-loading__dot[data-v-e1d73892] {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- transform: rotate(calc(var(--l-loading-dot, 1) * 30deg));
- opacity: calc(var(--l-loading-dot, 1) / 12);
- }
- .l-loading--spinner .l-loading__dot[data-v-e1d73892]::before {
- display: block;
- width: 0.15625rem;
- height: 25%;
- margin: 0 auto;
- background-color: currentColor;
- border-radius: 40%;
- content: " ";
- }
- .l-loading__text[data-v-e1d73892] {
- display: inline-block;
- margin-left: var(--l-spacer-xs, 8px);
- color: var(--l-loading-text-color, var(--l-text-color-3, rgba(0, 0, 0, 0.45)));
- font-size: var(--l-loading-font-size, var(--l-font-size, 14px));
- vertical-align: middle;
- }
- .l-loading.is-vertical[data-v-e1d73892] {
- display: inline-flex;
- flex-direction: column;
- align-items: center;
- }
- .l-loading.is-vertical .l-loading__text[data-v-e1d73892] {
- margin: var(--l-spacer-tn, 4px) 0 0;
- }
- .l-loading__ball[data-v-e1d73892], .l-loading__circular[data-v-e1d73892], .l-loading__spinner[data-v-e1d73892] {
- width: var(--l-loading-size, 20px);
- height: var(--l-loading-size, 20px);
- }
- @keyframes l-circular-e1d73892 {
- 0% {
- --l-loading-start: 0%;
- --l-loading-end: 0%;
- }
- 50% {
- --l-loading-start: 0%;
- --l-loading-end: 100%;
- }
- 100% {
- --l-loading-start: 100%;
- --l-loading-end: 100%;
- }
- }
- @keyframes l-rotate-e1d73892 {
- to {
- transform: rotate(1turn);
- }
- }
- @keyframes l-ball-before-e1d73892 {
- 0% {
- animation-timing-function: ease-in;
- }
- 25% {
- animation-timing-function: ease-out;
- --l-left: calc((var(--l-loadding-ball-size,100%) * 2.1 - var(--l-loadding-ball-size,100%)) / 2);
- transform: translate3d(var(--l-left), 0, var(--l-loadding-ball-size));
- }
- 50% {
- --l-left: calc((var(--l-loadding-ball-size,100%) * 2.1 - var(--l-loadding-ball-size,100%)));
- animation-timing-function: ease-in;
- transform: translate3d(var(--l-left), 0, 0);
- }
- 75% {
- animation-timing-function: ease-out;
- --l-left: calc((var(--l-loadding-ball-size,100%) * 2.1 - var(--l-loadding-ball-size,100%)) / 2);
- transform: translate3d(var(--l-left), 0, calc(var(--l-loadding-ball-size) * -1));
- }
- }
- @keyframes l-ball-after-e1d73892 {
- 0% {
- animation-timing-function: ease-in;
- }
- 25% {
- animation-timing-function: ease-out;
- --l-left: calc((var(--l-loadding-ball-size,100%) * 2.1 - var(--l-loadding-ball-size,100%)) / 2 * -1);
- transform: translate3d(var(--l-left), 0, calc(var(--l-loadding-ball-size) * -1));
- }
- 50% {
- animation-timing-function: ease-in;
- --l-left: calc((var(--l-loadding-ball-size,100%) * 2.1 - var(--l-loadding-ball-size,100%)) * -1);
- transform: translate3d(var(--l-left), 0, 0);
- }
- 75% {
- animation-timing-function: ease-out;
- --l-left: calc((var(--l-loadding-ball-size,100%) * 2.1 - var(--l-loadding-ball-size,100%)) / 2 * -1);
- transform: translate3d(var(--l-left), 0, var(--l-loadding-ball-size));
- }
- }
-
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .l-switch[data-v-43179dfc] {
- display: inline-flex;
- flex-direction: row;
- align-items: center;
- }
- .l-switch__rail[data-v-43179dfc] {
- position: relative;
- height: var(--l-switch-height, 28px);
- min-width: var(--l-switch-width, 45px);
- transition-duration: 300ms;
- transition-property: background-color;
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
- }
- .l-switch--hover .l-switch__dot[data-v-43179dfc] {
- max-width: var(--l-switch-dot-size-pressed, calc(var(--l-switch-dot-size, 22px) * 1.25));
- }
- .l-switch--hover.l-switch--checked .l-switch__dot[data-v-43179dfc] {
- left: calc(100% - var(--l-switch-dot-size-pressed, calc(var(--l-switch-dot-size, 22px) * 1.25)) - var(--l-switch-dot-offset, calc((var(--l-switch-height, 28px) - var(--l-switch-dot-size, 22px)) / 2)));
- }
- .l-switch--hover.l-switch--checked .l-switch__placeholder--unchecked[data-v-43179dfc] {
- padding-left: calc(1.25 * var(--l-switch-dot-size-pressed, calc(var(--l-switch-dot-size, 22px) * 1.25)));
- }
- .l-switch--hover.l-switch--unchecked .l-switch__placeholder--checked[data-v-43179dfc] {
- padding-right: calc(1.25 * var(--l-switch-dot-size-pressed, calc(var(--l-switch-dot-size, 22px) * 1.25)));
- }
- .l-switch--checked[data-v-43179dfc] {
- background-color: var(--l-switch-checked-color, #3283ff);
- }
- .l-switch--checked .l-switch__dot[data-v-43179dfc] {
- left: calc(100% - var(--l-switch-dot-size, 22px) - var(--l-switch-dot-offset, calc((var(--l-switch-height, 28px) - var(--l-switch-dot-size, 22px)) / 2)));
- }
- .l-switch--checked.l-switch--disabled[data-v-43179dfc] {
- background-color: var(--l-switch-checked-disabled-color, var(--l-primary-color-3, #add6ff));
- }
- .l-switch--unchecked[data-v-43179dfc] {
- background-color: var(--l-switch-unchecked-color, var(--l-gray-4, #dcdcdc));
- }
- .l-switch--unchecked.l-switch--disabled[data-v-43179dfc] {
- background-color: var(--l-switch-unchecked-disabled-color, var(--l-gray-2, #eeeeee));
- }
- .l-switch--round[data-v-43179dfc] {
- border-radius: var(--l-switch-radius, 99px);
- }
- .l-switch--square[data-v-43179dfc] {
- border-radius: var(--l-switch-radius, 4px);
- }
- .l-switch__dot[data-v-43179dfc] {
- position: absolute;
- background-color: var(--l-switch-dot-bg-color, white);
- height: var(--l-switch-dot-size, 22px);
- pointer-events: none;
- justify-content: center;
- align-items: center;
- overflow: visible;
- transition-duration: 300ms;
- transition-property: background-color, opacity, left, max-width, width, box-shadow, transform;
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
- display: flex;
- width: var(--l-switch-dot-size-pressed, calc(var(--l-switch-dot-size, 22px) * 1.25));
- max-width: var(--l-switch-dot-size, 22px);
- left: var(--l-switch-dot-offset, calc((var(--l-switch-height, 28px) - var(--l-switch-dot-size, 22px)) / 2));
- top: var(--l-switch-dot-offset, calc((var(--l-switch-height, 28px) - var(--l-switch-dot-size, 22px)) / 2));
- --l-loading-size: calc(var(--l-switch-dot-size, 22px) * 0.7);
- --l-loading-color: var(--l-switch-checked-color, #3283ff);
- }
- .l-switch__dot--round[data-v-43179dfc] {
- border-radius: var(--l-switch-dot-radius, 99px);
- }
- .l-switch__dot--square[data-v-43179dfc] {
- border-radius: var(--l-switch-dot-radius, 2.5px);
- }
- .l-switch__placeholder[data-v-43179dfc] {
- overflow: visible;
- position: absolute;
- white-space: nowrap;
- pointer-events: none;
- top: 50%;
- transform: translateY(-53%);
- line-height: 1;
- font-size: var(--l-swtich-font-size, 14px);
- color: var(--l-swtich-text-color, white);
- box-sizing: content-box;
- }
- .l-switch__placeholder--checked[data-v-43179dfc] {
- right: 0;
- text-align: right;
- padding-right: calc(1.20 * var(--l-switch-height, 28px) - var(--l-switch-dot-offset, calc((var(--l-switch-height, 28px) - var(--l-switch-dot-size, 22px)) / 2)));
- }
- .l-switch__placeholder--unchecked[data-v-43179dfc] {
- left: 0;
- padding-left: calc(1.20 * var(--l-switch-height, 28px) - var(--l-switch-dot-offset, calc((var(--l-switch-height, 28px) - var(--l-switch-dot-size, 22px)) / 2)));
- }
- .l-switch__children-placeholder[data-v-43179dfc] {
- height: var(--l-switch-height, 28px);
- }
- .l-switch__rail-placeholder[data-v-43179dfc] {
- opacity: 0;
- padding-left: calc(1.75 * var(--l-switch-height, 28px));
- font-size: var(--l-swtich-font-size, 14px);
- }
-
- .uni-page[data-v-79e6a490]{
- width: 100%;
- height: 100%;
- }
- .container[data-v-79e6a490] {
- height: 92vh;
- background: linear-gradient(to bottom, #007545 -40%, #f0f5f5 40%, #f0f5f5 100%);
- box-sizing: border-box;
- }
- .account_number[data-v-79e6a490]{
- width: 100%;
- padding: 0.625rem;
- display: flex;
- justify-content: center;
- box-sizing: border-box;
- }
- .toptabbar[data-v-79e6a490] {
- width: 100%;
- padding: 0.3125rem 0.625rem;
- box-sizing: border-box;
- }
- .setup[data-v-79e6a490]{
- width: 100%;
- height: 100vh;
- background: linear-gradient(to bottom, #007544 -40%, #F0F5F5 40%,#F0F5F5 100%);
- padding: 0 0.9375rem;
- box-sizing: border-box;
- }
- .title[data-v-79e6a490]{
- font-weight: 500;
- font-size: 1.125rem;
- display: flex;
- align-items: center;
- margin-top: 0.625rem;
- justify-content: center;
- }
- .user[data-v-79e6a490]{
- display: flex;
- margin-top: 1.875rem;
- }
- .user_to[data-v-79e6a490]{
- width: 3.125rem;
- height: 3.125rem;
- border-radius: 100%;
- margin-right: 1.25rem;
- }
- .user_name[data-v-79e6a490]{
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- }
- .user_name1[data-v-79e6a490]{
- font-size: 0.875rem;
- color: #ffffff;
- }
- .user_name2[data-v-79e6a490]{
- font-size: 0.75rem;
- color: #ffffff;
- }
- .equipment[data-v-79e6a490]{
- width: 100%;
- display: flex;
- justify-content: space-between;
- box-sizing: border-box;
- margin-top: 1.25rem;
- margin-bottom: 1.25rem;
- }
- .equipment_1[data-v-79e6a490]{
- width: 48%;
- background-color: #ffffff;
- border-radius: 0.5rem;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 0.625rem;
- box-sizing: border-box;
- }
- .user_left[data-v-79e6a490]{
- display: flex;
- flex-direction: column;
- justify-content:space-around;
- padding: 0.625rem 0;
- box-sizing: border-box;
- }
- .equipment_2[data-v-79e6a490]{
- width: 48%;
- background-color: #ffffff;
- border-radius: 0.3125rem;
- box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
- }
- .equipment_rightdiv[data-v-79e6a490]{
- width: 2.4375rem;
- height:2.4375rem;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #E3F6F8;
- border-radius: 100%;
- overflow: hidden;
- }
- .equipment_rightdiv1[data-v-79e6a490]{
- width: 2.4375rem;
- height:2.4375rem;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #E2ECFF;
- border-radius: 100%;
- overflow: hidden;
- }
- .equipment_right1[data-v-79e6a490]{
- width: 1.5625rem;
- height: 1.5625rem;
- }
- .equipment_right[data-v-79e6a490]{
- width: 1.5625rem;
- height: 1.29094rem;
- }
- .user_leftname[data-v-79e6a490]{
- font-size: 0.875rem;
- }
- .user_lefteq[data-v-79e6a490]{
- width: 6.25rem;
- font-size: 0.8125rem;
- margin-top: 0.375rem;
- color: #999999;
- white-space: nowrap; /* 不换行 */
- overflow: hidden; /* 超出部分隐藏 */
- text-overflow: ellipsis; /* 显示省略号 */
- }
- .equipment_2[data-v-79e6a490]{
- width: 48%;
- background-color: #ffffff;
- border-radius: 0.5rem;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 0.625rem;
- box-sizing: border-box;
- }
- .allocation[data-v-79e6a490]{
- width: 100%;
- height: 2.5rem;
- display: flex;
- align-items: center;
- justify-content:space-between;
- padding: 0 0.625rem;
- overflow: hidden;
- box-sizing: border-box;
- }
- .allocation_1[data-v-79e6a490]{
- display: flex;
- font-size:13px;
- align-items: center;
- }
- .allocation_box[data-v-79e6a490]{
- border-radius: 0.5rem;
- background-color: #ffffff;
- padding: 0.3125rem 0;
- box-sizing: border-box;
- margin-top: 3.75rem;
- box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
- }
- .allocation_2[data-v-79e6a490]{
- color: #999999;
- }
- .allocation_3[data-v-79e6a490]{
- font-size: 14px;
- }
- .content-container[data-v-79e6a490]{
- margin-top: 1.25rem;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .ticon[data-v-79e6a490]{
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .ticonright[data-v-79e6a490]{
- margin-right: 0.3125rem;
- font-size: 0.875rem;
- font-weight: 500;
- }
- .contentadd[data-v-79e6a490]{
- width: 100%;
- height: 100%;
- margin-top: 1.25rem;
- padding: 0 0.03125rem;
- box-sizing: border-box;
- }
- .weui-input[data-v-79e6a490]{
- width: 99%;
- height: 2.5rem;
- border: 0.03125rem solid #cccccc;
- padding: 0 0.3125rem;
- border-radius: 0.3125rem;
- box-sizing: border-box;
- }
- .input-example[data-v-79e6a490] {
- width: 99%;
- --td-input-vertical-padding: 0.5rem;
- background-color: var(--bg-color-demo);
- border: 0.03125rem solid #cccccc;
- border-radius: 0.375rem;
- padding: 0.03125rem;
- margin-top: 1.25rem;
- box-sizing: border-box;
- }
- .inputbox[data-v-79e6a490]{
- width: 100%;
- margin-top: 0.625rem;
- font-size: 0.8125rem;
- color: #cccccc;
- }
- .t-dialog__footer--full[data-v-79e6a490]{
- padding: 1.375rem 0 0;
- }
- uni-button[data-v-79e6a490]{
- padding: 0;
- margin: 0;
- font-size: 0.875rem;
- background-color: #ffffff;
- border:0 solid #ffffff !important;
- border: none !important;
- }
- .allocation_31[data-v-79e6a490]{
- width: 100%;
- font-size: 14px;
- }
- .contact-button[data-v-79e6a490] {
- width: 100%;
- border: none !important;
- display: flex;
- }
- .avatar-edit-container[data-v-79e6a490] {
- display: inline-block;
- position: relative;
- }
- .avatar-wrapper[data-v-79e6a490] {
- position: relative;
- border-radius: 50%;
- overflow: hidden;
- cursor: pointer;
- transition: all 0.3s ease;
- box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
- }
- .avatar-img[data-v-79e6a490] {
- width: 100%;
- height: 100%;
- object-fit: cover;
- display: block;
- transition: transform 0.3s ease;
- }
- .avatar-wrapper:hover .avatar-img[data-v-79e6a490] {
- transform: scale(1.05);
- }
- .edit-overlay[data-v-79e6a490] {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.6);
- display: flex;
- align-items: center;
- justify-content: center;
- color: white;
- border-radius: 50%;
- }
- .edit-content[data-v-79e6a490] {
- text-align: center;
- }
- .edit-icon[data-v-79e6a490] {
- font-size: 24px;
- margin-bottom: 8px;
- display: block;
- }
- .edit-text[data-v-79e6a490] {
- font-size: 14px;
- display: block;
- font-weight: 500;
- }
- .file-input[data-v-79e6a490] {
- display: none;
- }
-
- /* 过渡动画 */
- .fade-enter-active[data-v-79e6a490], .fade-leave-active[data-v-79e6a490] {
- transition: opacity 0.3s;
- }
- .fade-enter[data-v-79e6a490], .fade-leave-to[data-v-79e6a490] {
- opacity: 0;
- }
|