123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493 |
- .border_radius_12rpx{
- border-radius: 12rpx;
- }
- .inputItemDis{
- white-space: nowrap;
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- .textareaItemDis{
- overflow: hidden;
- flex-wrap: wrap;
- }
- .position_relative {
- position: relative;
- }
- .itemDisabled{
- position: absolute;
- top: 0;
- left: 0;
- height: 100%;
- width: 100%;
- transition: all .3s;
- pointer-events: none;
- opacity: 0;
- }
- .itemDisabled.show{
- pointer-events: auto;
- background-color: rgba(247,247,247,.7);
- opacity: 1;
- }
- .pe_none{
- pointer-events: none;
- }
- .pe_auto{
- pointer-events: auto;
- }
- .padding_20rpx_30rpx {
- padding: 20rpx 30rpx;
- }
- .padding_10rpx_15rpx {
- padding: 10rpx 15rpx;
- }
- .padding_5rpx_7_5rpx {
- padding: 5rpx 7.5rpx;
- }
- .padding_10rpx {
- padding: 10rpx;
- }
- .margin_10rpx {
- margin: 10rpx;
- }
- .marginRight_15rpx {
- margin-right: 15rpx;
- }
- .Flex1{
- flex: 1;
- }
- .Flex1_5{
- flex:1.5;
- }
- .Flex2{
- flex: 2;
- }
- .Flex3{
- flex: 3;
- }
- .Flex4{
- flex: 4;
- }
- .Flex5{
- flex: 5;
- }
- .transition_point6s {
- transition: all .6s;
- }
- .transition_border_point6s {
- transition: border-color .6s;
- }
- view,
- button,
- textarea,
- input,
- picker,
- picker-view,
- picker-view-column,
- uni-icon,
- text,
- label {
- box-sizing: border-box;
- }
- button {
- margin: 0;
- }
- button::after {
- border: none;
- }
- .text_nowrap{
- white-space: nowrap;
- }
- .text_overflow_ellipsis {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .overflow_x_hidden {
- overflow-x: hidden;
- }
- .marginRight5 {
- margin-right: 5%;
- }
- .position_relative {
- position: relative;
- }
- .position_absolute {
- position: absolute;
- }
- .maxWidth40 {
- max-width: 40%;
- }
- .maxWidth30 {
- max-width: 30%;
- }
- .maxWidth20 {
- max-width: 20%;
- }
- .width20 {
- width: 20%;
- }
- .width30 {
- width: 30%;
- ;
- }
- .width40 {
- width: 40%;
- }
- .width45 {
- width: 45%;
- }
- .width55 {
- width: 55%;
- }
- .width60 {
- width: 60%;
- }
- .width65 {
- width: 65%;
- }
- .width75 {
- width: 75%;
- }
- .width70 {
- width: 70%;
- }
- .width50 {
- width: 50%;
- }
- .width25 {
- width: 25%;
- }
- .width15 {
- width: 15%;
- }
- .width85 {
- width: 85%;
- }
- .width100 {
- width: 100%;
- }
- .height100 {
- height: 100%;
- }
- .word_wrap {
- word-wrap: break-word;
- word-break: break-all;
- }
- .wrap {
- flex-wrap: wrap;
- }
- .flex-basis50 {
- flex-basis: 50%;
- }
- .flex-shrink0 {
- flex-shrink: 0;
- }
- .flex-shrink1 {
- flex-shrink: 1;
- }
- .flex_column {
- display: flex;
- flex-direction: column;
- }
- .flex_row_e_none {
- display: flex;
- flex-direction: row;
- justify-content: flex-end;
- }
- .flex_column_c_c {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .flex_row {
- display: flex;
- flex-direction: row;
- }
- .flex_row_none_c {
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .flex_row_e_c {
- display: flex;
- flex-direction: row;
- justify-content: flex-end;
- align-items: center;
- }
- .flex_row_c_c {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- .flex_row_between_c {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- }
- .box-sizing-border-box {
- box-sizing: border-box;
- }
- .fontColorF1505C {
- color: #F1505C;
- }
- .fontColorADADAD {
- color: #ADADAD;
- }
- .fontColor666666 {
- color: #666666;
- }
- .fontColor007AFF {
- color: #007AFF;
- }
- .borderBottom1pxf2f2f2 {
- border-bottom: 1px solid #F2F2F2;
- }
- .border1pxf2f2f2 {
- border: 1px solid #f2f2f2;
- }
- .bacnground_color_f8f8f8 {
- background-color: #f8f8f8;
- }
- .border_radius_4px {
- border-radius: 4px;
- }
- .mask {
- height: 100vh;
- width: 100vw;
- position: fixed;
- top: 0;
- left: 0;
- background-color: rgba(0, 0, 0, .6);
- z-index: 998;
- }
- .picker_view {
- width: 70%;
- position: fixed;
- top: 50%;
- left: 50%;
- z-index: 999;
- transform: translate(-50%, -70%);
- }
- .view_Title_Left {
- font-weight: bold;
- padding: 1.5vh 3vw;
- box-sizing: border-box;
- }
- .padding8px {
- padding: 8px;
- }
- .picsClear {
- position: absolute;
- top: 0;
- right: 0;
- transform: translate(50%, -50%);
- }
- .box_shadow_2px_2px_5px_ADADAD {
- box-shadow: 2px 2px 5px #ADADAD;
- }
- @keyframes fadeIn {
- from {
- opacity: 0;
- transform: scale(.8);
- }
- to {
- opacity: 1;
- transform: scale(1);
- }
- }
- @keyframes refadeIn {
- from {
- transform: scale(1.2);
- opacity: 0;
- }
- to {
- transform: scale(1);
- opacity: 1;
- }
- }
- @keyframes slide-left {
- from {
- transform: translateX(-100%);
- }
- to {
- transform: translateX(0);
- }
- }
- @keyframes slide-fade-left {
- from {
- transform: translateX(-100%);
- opacity: 0;
- }
- to {
- transform: translateX(0);
- opacity: 1;
- }
- }
- @keyframes slide-right {
- from {
- transform: translateX(100%);
- }
- to {
- transform: translateX(0);
- }
- }
- @keyframes slide-fade-right {
- from {
- transform: translateX(100%);
- opacity: 0;
- }
- to {
- transform: translateX(0);
- opacity: 1;
- }
- }
- @keyframes slide-fade-bottom {
- from {
- transform: translateY(100%);
- opacity: 0;
- }
- to {
- transform: translateX(0);
- opacity: 1;
- }
- }
- @keyframes rotate3d-fade {
- from {
- transform: rotate3d(10, 10, 10, 360deg);
- opacity: 0;
- }
- to {
- transform: rotate3d(10, 10, 10, 0deg);
- opacity: 1;
- }
- }
- .fadIn {
- animation: fadeIn;
- }
- .refadIn {
- animation: refadeIn;
- }
- .slide-left {
- animation: slide-left;
- }
- .slide-fade-left {
- animation: slide-fade-left;
- }
- .slide-right {
- animation: slide-right;
- }
- .slide-fade-right {
- animation: slide-fade-right;
- }
- .slide-fade-bottom {
- animation: slide-fade-bottom;
- }
- .rotate3d-fade {
- animation: rotate3d-fade;
- }
|