123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230 |
- .window-box {
- width: 100vw;
- height: 100vh;
- max-width: 100vw;
- max-height: 100vh;
- overflow: hidden;
- }
- .text-underline {
- text-decoration: underline;
- }
- .content-container {
- padding: 0 41rpx;
- }
- .container, input {
- font-family: "Microsoft YaHei",
- sans-serif;
- -webkit-font-smoothing: antialiased;
- }
- .b-f {
- background: #fff;
- }
- .tf-180 {
- -moz-transform: rotate(-180deg);
- -ms-transform: rotate(-180deg);
- -o-transform: rotate(-180deg);
- transform: rotate(-180deg);
- }
- .tf-90 {
- -moz-transform: rotate(90deg);
- -ms-transform: rotate(90deg);
- -o-transform: rotate(90deg);
- transform: rotate(90deg);
- }
- .dis-none {
- display: none !important;
- }
- .dis-block {
- display: block;
- }
- .dis-in-block {
- display: inline-block;
- }
- .dis-flex {
- display: flex !important;
- /* flex-wrap: wrap; */
- }
- .flex-wrap {
- display: flex !important;
- flex-wrap: wrap;
- }
- .flex-nowrap {
- display: flex !important;
- flex-wrap: nowrap;
- }
- .flex-box {
- flex: 1;
- }
- .flex-dir-row {
- flex-direction: row;
- }
- .flex-dir-column {
- flex-direction: column;
- }
- .flex-dir-column-reverse {
- flex-direction: column-reverse;
- }
- .flex-x-center {
- /* display: flex; */
- justify-content: center;
- }
- .flex-x-between {
- justify-content: space-between;
- }
- .flex-x-around {
- justify-content: space-around;
- }
- .flex-x-evenly {
- justify-content: space-evenly;
- }
- .flex-x-end {
- justify-content: flex-end;
- }
- .flex-y-center {
- align-items: center;
- }
- .flex-y-end {
- align-items: flex-end;
- }
- .flex-y-bline {
- align-items: baseline;
- }
- .flex-y-sb {
- justify-content: space-between;
- }
- .flex-y-se {
- justify-content: space-evenly;
- }
- .flex-center-auto {
- display: flex !important;
- justify-content: center;
- }
- .flex-start-center {
- display: flex !important;
- justify-content: flex-start;
- align-items: center;
- }
- .flex-center-center {
- display: flex !important;
- justify-content: center;
- align-items: center;
- }
- .flex-center-end {
- display: flex !important;
- justify-content: center;
- align-items: flex-end;
- }
- .flex-end-center {
- display: flex !important;
- justify-content: flex-end;
- align-items: center;
- }
- .flex-end-end {
- display: flex !important;
- justify-content: flex-end;
- align-items: flex-end;
- }
- .f-e-e {
- display: flex !important;
- justify-content: flex-end;
- align-items: flex-end;
- }
- .flex-between-center {
- display: flex !important;
- justify-content: space-between;
- align-items: center;
- }
- .flex-around-center {
- display: flex !important;
- justify-content: space-around;
- align-items: center;
- }
- .flex-two {
- box-sizing: border-box;
- flex: 0 0 50%;
- }
- .flex-three {
- box-sizing: border-box;
- flex: 0 0 33.333333%;
- }
- .flex-four {
- box-sizing: border-box;
- flex: 0 0 25%;
- }
- .t-a-c {
- text-align: center;
- }
- .t-a-l {
- text-align: left;
- }
- .t-a-r {
- text-align: right;
- }
- .p-a {
- position: absolute;
- }
- .p-r {
- position: relative;
- }
- .p-f {
- position: fixed;
- }
- .fl {
- float: left;
- }
- .fr {
- float: right;
- }
- .clearfix::after {
- clear: both;
- content: " ";
- display: table;
- }
- .oh {
- overflow: hidden;
- }
- .tb-lr-center {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex !important;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- }
- .f-12 {
- font-size: 17rpx;
- }
- .f-16 {
- font-size: 23rpx;
- }
- .f-18 {
- font-size: 25rpx;
- }
- .f-20 {
- font-size: 28rpx;
- }
- .f-22 {
- font-size: 31rpx;
- }
- .f-24 {
- font-size: 34rpx;
- }
- .f-26 {
- font-size: 37rpx;
- }
- .f-28 {
- font-size: 40rpx;
- }
- .f-32 {
- font-size: 45rpx;
- }
- .f-42 {
- font-size: 59rpx;
- }
- .f-60 {
- font-size: 60rpx;
- }
- .f-64 {
- font-size: 89rpx;
- }
- .f-u-17 {
- font-size: 17rpx;
- }
- .f-u-19 {
- font-size: 19rpx;
- }
- .f-u-21 {
- font-size: 21rpx;
- }
- .f-u-23 {
- font-size: 23rpx;
- }
- .f-u-25 {
- font-size: 25rpx;
- }
- .f-u-27 {
- font-size: 27rpx;
- }
- .f-u-29 {
- font-size: 29rpx;
- }
- .f-u-32 {
- font-size: 32rpx;
- }
- .f-u-35 {
- font-size: 35rpx;
- }
- .f-u-39 {
- font-size: 39rpx;
- }
- .f-u-41 {
- font-size: 41rpx;
- }
- .f-u-43 {
- font-size: 43rpx;
- }
- .f-u-51 {
- font-size: 51rpx;
- }
- .f-u-56 {
- font-size: 56rpx;
- }
- .f-w-4 {
- font-weight: 400;
- }
- .f-w-5 {
- font-weight: 500;
- }
- .f-w-6 {
- font-weight: 600;
- }
- .f-w-7 {
- font-weight: 700;
- }
- .f-w-b {
- font-weight: bold;
- }
- .col-f {
- color: #fff;
- }
- .col-a {
- color: #AAAAAA;
- }
- .col-4a {
- color: #4A4A4A;
- }
- .col-0 {
- color: #000000;
- }
- .col-6 {
- color: #666;
- }
- .col-68 {
- color: #686868;
- }
- .col-c {
- color: #cccccc;
- }
- .col-7 {
- color: #777;
- }
- .col-8 {
- color: #888;
- }
- .col-9 {
- color: #999;
- }
- .col-47 {
- color: #474747;
- }
- .col-51 {
- color: #515151;
- }
- .col-red {
- color: red;
- }
- .col-yellow {
- color: yellow;
- }
- .col-orange {
- color: orange;
- }
- .col-grey {
- color: #747474;
- }
- .col-checked {
- color: #1E89FB;
- }
- .col-m {
- color: #fa2209 !important;
- }
- .col-s {
- color: #be0117 !important;
- }
- .col-green {
- color: #0ed339 !important;
- }
- .cont-box {
- padding: 20rpx;
- }
- .cont-bot {
- margin-bottom: 120rpx;
- }
- .padding-box {
- padding: 0 24rpx;
- box-sizing: border-box;
- }
- .p-l-6 {
- padding-left: 6rpx;
- }
- .p-l-12 {
- padding-left: 12rpx;
- }
- .p-r-6 {
- padding-right: 6rpx;
- }
- .p-r-12 {
- padding-right: 12rpx;
- }
- .m-0-auto {
- margin: 0 auto;
- }
- .m-t-4 {
- margin-top: 4rpx;
- }
- .m-t-5 {
- margin-top: 5rpx;
- }
- .m-t-10 {
- margin-top: 10rpx;
- }
- .m-t-20 {
- margin-top: 25rpx;
- }
- .m-t-30 {
- margin-top: 30rpx;
- }
- .m-t-40 {
- margin-top: 40rpx;
- }
- .m-t-50 {
- margin-top: 50rpx;
- }
- .m-t-60 {
- margin-top: 60rpx;
- }
- .m-t-70 {
- margin-top: 70rpx;
- }
- .m-t-80 {
- margin-top: 80rpx;
- }
- .m-t-90 {
- margin-top: 90rpx;
- }
- .m-t-100 {
- margin-top: 100rpx;
- }
- .m-t-150 {
- margin-top: 150rpx;
- }
- .m-t-200 {
- margin-top: 200rpx;
- }
- .m-l-5 {
- margin-left: 5rpx;
- }
- .m-l-10 {
- margin-left: 10rpx;
- }
- .m-l-20 {
- margin-left: 20rpx;
- }
- .m-l-30 {
- margin-left: 30rpx;
- }
- .m-l-50 {
- margin-left: 50rpx;
- }
- .m-l-80 {
- margin-left: 80rpx;
- }
- .m-l-90 {
- margin-left: 90rpx;
- }
- .m-r-5 {
- margin-right: 5rpx;
- }
- .m-r-10 {
- margin-right: 10rpx;
- }
- .m-r-20 {
- margin-right: 20rpx;
- }
- .m-r-30 {
- margin-right: 30rpx;
- }
- .m-r-40 {
- margin-right: 40rpx;
- }
- .m-r-50 {
- margin-right: 50rpx;
- }
- .m-b-10 {
- margin-bottom: 10rpx;
- }
- .m-b-20 {
- margin-bottom: 20rpx;
- }
- .m-b-30 {
- margin-bottom: 30rpx;
- }
- .m-b-40 {
- margin-bottom: 40rpx;
- }
- .m-b-50 {
- margin-bottom: 50rpx;
- }
- .m-b-60 {
- margin-bottom: 60rpx;
- }
- .m-b-70 {
- margin-bottom: 70rpx;
- }
- .m-b-80 {
- margin-bottom: 80rpx;
- }
- .m-b-90 {
- margin-bottom: 90rpx;
- }
- .m-b-100 {
- margin-bottom: 100rpx;
- }
- .p-5 {
- padding: 5rpx;
- }
- .p-10 {
- padding: 10rpx;
- }
- .p-20 {
- padding: 20rpx;
- }
- .p-30 {
- padding: 30rpx;
- }
- .p-40 {
- padding: 40rpx;
- }
- .p-t-5 {
- padding-top: 5rpx;
- }
- .p-t-10 {
- padding-top: 10rpx;
- }
- .p-t-20 {
- padding-top: 20rpx;
- }
- .p-t-30 {
- padding-top: 30rpx;
- }
- .p-t-40 {
- padding-top: 40rpx;
- }
- .p-t-50 {
- padding-top: 50rpx;
- }
- .p-t-60 {
- padding-top: 60rpx;
- }
- .p-t-70 {
- padding-top: 70rpx;
- }
- .p-t-80 {
- padding-top: 80rpx;
- }
- .p-t-90 {
- padding-top: 90rpx;
- }
- .p-t-100 {
- padding-top: 100rpx;
- }
- .p-b-5 {
- padding-bottom: 5rpx;
- }
- .p-b-10 {
- padding-bottom: 10rpx;
- }
- .p-b-20 {
- padding-bottom: 20rpx;
- }
- .p-b-30 {
- padding-bottom: 30rpx;
- }
- .p-b-40 {
- padding-bottom: 40rpx;
- }
- .p-b-50 {
- padding-bottom: 50rpx;
- }
- .p-b-60 {
- padding-bottom: 60rpx;
- }
- .p-b-70 {
- padding-bottom: 70rpx;
- }
- .p-b-80 {
- padding-bottom: 80rpx;
- }
- .p-b-90 {
- padding-bottom: 90rpx;
- }
- .p-b-100 {
- padding-bottom: 100rpx;
- }
- .p-b-120 {
- padding-bottom: 120rpx;
- }
- .p-b-150 {
- padding-bottom: 150rpx;
- }
- .p-l-10 {
- padding-left: 10rpx;
- }
- .p-l-20 {
- padding-left: 20rpx;
- }
- .p-l-30 {
- padding-left: 30rpx;
- }
- .p-l-40 {
- padding-left: 40rpx;
- }
- .p-r-10 {
- padding-right: 10rpx;
- }
- .p-r-20 {
- padding-right: 20rpx;
- }
- .p-r-30 {
- padding-right: 30rpx;
- }
- .p-r-50 {
- padding-right: 50rpx;
- }
- .p-bottom {
- margin-bottom: 112rpx;
- }
- .page-overflow-hidden {
- overflow: hidden;
- height: 100%;
- width: 100%;
- }
- .oneline-hide {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .twoline-hide {
- display: -webkit-box;
- word-break: break-all;
- text-overflow: ellipsis;
- overflow: hidden;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- }
- .b-r {
- border-right: 2rpx solid #eee;
- }
- .b-b {
- border-bottom: 2rpx solid #eee;
- }
- .b-b-dashed {
- border-bottom: 1rpx dashed #eee;
- }
- .b-t {
- border-top: 2rpx solid #eee;
- }
- .b-all {
- border: 2rpx solid #eee;
- }
- .ts-1 {
- -moz-transition: all 0.1s;
- -o-transition: all 0.1s;
- transition: all 0.1s;
- }
- .ts-2 {
- -moz-transition: all 0.2s;
- -o-transition: all 0.2s;
- transition: all 0.2s;
- }
- .ts-3 {
- -moz-transition: all 0.3s;
- -o-transition: all 0.3s;
- transition: all 0.3s;
- }
- .ts-5 {
- -moz-transition: all 0.5s;
- -o-transition: all 0.5s;
- transition: all 0.5s;
- }
- .w10 {
- width: 10%;
- }
- .w20 {
- width: 20%;
- }
- .w30 {
- width: 30%;
- }
- .w40 {
- width: 40%;
- }
- .w45 {
- width: 45%;
- }
- .w48 {
- width: 48%;
- }
- .w50 {
- width: 50%;
- }
- .w60 {
- width: 60%;
- }
- .w70 {
- width: 70%;
- }
- .w80 {
- width: 80%;
- }
- .w90 {
- width: 90%;
- }
- .w95 {
- width: 95%;
- }
- .w100 {
- width: 100%;
- }
- .vw80 {
- width: 80vw;
- }
- .vw90 {
- width: 90vw;
- }
- .vw100 {
- width: 100vw;
- }
- .h50 {
- height: 50vh;
- }
- .h60 {
- height: 60vh;
- }
- .h70 {
- height: 70vh;
- }
- .h80 {
- height: 80vh;
- }
- .h90 {
- height: 90vh;
- }
- .h100 {
- height: 100vh;
- &.h-no-bottom {
- height: calc(100vh - var(--window-bottom));
- }
- }
- .header-custom {
- height: var(--window-status-custom-bar);
- width: 100vw;
- //background-image: linear-gradient(0deg, #77BDF8 0%, #398CFF 99%);
- position: fixed;
- top: 0;
- left: 0;
- background: #398CFF; /* 针对不支持渐变的浏览器 */
- background: -webkit-linear-gradient(#398CFF, #77BDF8);
- /* Safari 5.1 到 6.0 */
- background: -o-linear-gradient(#398CFF, #77BDF8);
- /* Opera 11.6 到 12.0 */
- background: -moz-linear-gradient(#398CFF, #77BDF8);
- /* Fx 3.6 到 15 */
- background: linear-gradient(#398CFF, #77BDF8);
- /* 标准语法(必须是最后一个) */
- }
- .line {
- border-bottom: 1px solid #E9E9E9;
- }
- .position-relative {
- position: relative;
- }
- .position-top {
- position: fixed;
- left: 0;
- right: 0;
- top: 0;
- z-index: 15;
- width: 100vw;
- }
- .position-bottom {
- position: fixed;
- bottom: 0;
- left: 0;
- z-index: 15;
- width: 100vw;
- padding: 20rpx 30rpx 20rpx;
- box-sizing: border-box;
- border-top: 1px solid #eeeeee;
- background: #FFFFFF;
- }
- .bottom-placeholder {
- padding: 100rpx 0 100rpx;
- }
- .overflow-clamp {
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- &.overflow-clamp-3 {
- -webkit-line-clamp: 3;
- }
- }
- .cancel {
- width: 40rpx;
- height: 40rpx;
- line-height: 38rpx;
- border: 2rpx solid #EDF2F5;
- background-color: #EDF2F5;
- border-radius: 50%;
- position: absolute; /* 父组件赋予属性relative生效 */
- }
- .cancel::before,
- .cancel::after {
- content: "";
- position: absolute;
- height: 70%;
- width: 2rpx;
- top: 15%; /* 使X处于圆中心 */
- left: calc(50% - 1rpx); /* 使X处于圆中心 */
- background-color: #353535;
- }
- .cancel::before {
- transform: rotate(45deg);
- }
- .cancel::after {
- transform: rotate(-45deg);
- }
- .l-h-n {
- line-height: normal;
- }
- //新增
- .line-height { //隔行线
- height: 20rpx;
- width: 100%;
- background: #F7F7FD !important;
- }
- .line-height10 { //隔行线
- height: 10rpx;
- width: 100%;
- background: #F7F7FD !important;
- }
- .line-height5 { //隔行线
- height: 5rpx;
- width: 100%;
- background: #F7F7FD !important;
- }
- .color-theme { //主题颜色
- color: #398CFF;
- }
- .title-shuline { //小标题左竖线
- border-left: 6rpx solid #398CFF;
- background: linear-gradient(90deg, #DEECFF 40%, rgba(0, 0, 0, 0) 60%);
- display: inline-block;
- padding-left: 10rpx;
- height: 40rpx;
- line-height: 40rpx;
- }
- .placeholder-color { //默认颜色
- color: #989797;
- }
- .b-r-theme { //主题边框
- border-right: 2rpx solid #398CFF;
- }
- .b-b-theme { //主题边框
- border-bottom: 2rpx solid #398CFF;
- }
- .b-t-theme { //主题边框
- border-top: 2rpx solid #398CFF;
- }
- .b-all-theme { //主题边框
- border: 2rpx solid #398CFF;
- }
- .b-r-10 {
- border-radius: 10rpx;
- }
- .b-r-15 {
- border-radius: 15rpx;
- }
- .b-t-r {
- border-radius: 10rpx 10rpx 0 0;
- }
- .b-b-r {
- border-radius: 0 0 10rpx 10rpx;
- }
- .box-shadow {
- box-shadow: 0px -2px 50px 7px #54617c0f;
- }
- .ly-form {
- &-item {
- display: flex;
- width: 100%;
- border-bottom: 2rpx solid #eee;
- height: 95rpx;
- line-height: 95rpx;
- &:last-child {
- border-bottom: none;
- }
- &-label {
- width: 150rpx;
- font-weight: 400;
- font-size: 28rpx;
- color: #0F0F0F;
- }
- &-content {
- flex: 1;
- font-size: 25rpx;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- .ly-form-item-input {
- > > > .u-input__content__field-wrapper__field {
- line-height: 95rpx;
- }
- }
- }
- }
- }
- > > > uni-modal {
- z-index: 999999;
- }
- .arrow-top {
- transition: -webkit-transform .3s;
- transition: transform .3s;
- transition: transform .3s, -webkit-transform .3s;
- }
- .arrow-down {
- -webkit-transform: rotate(180deg);
- transform: rotate(180deg);
- }
- .reoprt-bg {
- background-color: #63b4ff;
- }
- .gray-bg {
- background-color: #f1eded;
- }
- .w-bg {
- background-color: #FFFFFF;
- }
- .b-box {
- box-sizing: border-box;
- }
- .bluetooth {
- color: #FFFFFF;
- padding: 5px;
- border-radius: 50%;
- width: 60rpx;
- height: 60rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- &-icon {
- background: #BFBFBF;
- width: 95%;
- height: 95%;
- border-radius: 50%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- &.action {
- background: #5C8AFF50;
- .bluetooth-icon {
- background: #5C8AFF;
- }
- }
- &.warning {
- background: transparent;
- .bluetooth-icon {
- background: red;
- }
- }
- }
- .common-title {
- height: 80rpx;
- }
|