| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344 |
- /**app.wxss**/
- @import '/static/iconfont/iconfont.wxss';
- .container {
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- padding: 200rpx 0;
- box-sizing: border-box;
- }
- navigator.disabled {
- pointer-events: none;
- }
- navigator.disabled>view {
- color: #b6b6b6 !important;
- }
- page {
- min-height: 100%;
- }
- rich-text .rich-img {
- max-width: 100%;
- max-height: auto;
- }
- .text1 {
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 1;
- -webkit-box-orient: vertical;
- overflow: hidden;
- }
- .text2 {
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- overflow: hidden;
- }
- .text3 {
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 3;
- -webkit-box-orient: vertical;
- overflow: hidden;
- }
- .text4 {
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 4;
- -webkit-box-orient: vertical;
- overflow: hidden;
- }
- .text5 {
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 5;
- -webkit-box-orient: vertical;
- overflow: hidden;
- }
- @keyframes abel-rotate {
- 0% {
- transform: rotate(0);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
- .iconfont.icon-loadding {
- display: inline-block;
- -webkit-animation-name: abel-rotate;
- animation-name: abel-rotate;
- -webkit-animation-duration: 1s;
- animation-duration: 1s;
- -webkit-animation-timing-function: linear;
- animation-timing-function: linear;
- animation-iteration-count: infinite;
- animation-fill-mode: both;
- -webkit-font-smoothing: antialiased;
- }
- .wx-switch-input {
- width: 80rpx !important;
- height: 80rpx !important;
- }
- .wx-switch-input::before {
- width: 80rpx !important;
- height: 80rpx !important;
- }
- .wx-switch-input::after {
- width: 80rpx !important;
- height: 80rpx !important;
- }
- .rmb1 {
- font-size: 20rpx;
- }
- .rmb2 {
- font-size: 24rpx;
- }
- .rmb3 {
- font-size: 28rpx;
- }
- /* 弹窗 背景*/
- .dialogBg {
- position: fixed;
- left: 0;
- top: 0;
- bottom: 0;
- right: 0;
- background: rgba(0, 0, 0, 0.30);
- z-index: 999;
- }
- .drawer_content {
- overflow-y: auto;
- min-height: 200rpx;
- max-height: 80%;
- }
- /* 弹出*/
- .drawer_attr_box {
- width: 100%;
- overflow: hidden;
- position: fixed;
- bottom: 0;
- left: 0;
- z-index: 99999;
- background: #fff;
- border-radius: 8rpx 8rpx 0rpx 0rpx;
- /* transition: all 0.5s linear; */
- }
- .draw_attr_title {
- font-weight: 600;
- font-size: 32rpx;
- color: #000000;
- text-align: center;
- padding: 60rpx 0;
- }
- .keyboard_arrow_right ::after {
- content: "\e615";
- }
- .titleText {
- font-weight: 500;
- font-size: 28rpx;
- color: #000000;
- padding: 20rpx 0;
- }
- .pannel {
- padding: 20rpx 24rpx;
- background: #FFFFFF;
- margin-bottom: 20rpx;
- border-radius: 8rpx;
- }
- .pannel .cell {
- position: relative;
- min-height: 80rpx;
- display: flex;
- /* align-items: center; */
- align-content: flex-start;
- justify-content: space-between;
- }
- .pannel .cellText,
- .pannel .cell .cellText {
- position: relative;
- font-weight: 400;
- font-size: 28rpx;
- color: #202020;
- line-height: 80rpx;
- }
- .pannel .cellText::before,
- .pannel .cell .cellText::before {
- position: absolute;
- left: -15rpx;
- content: ' ';
- color: #FFFFFF;
- }
- .pannel .cellText.required::before,
- .pannel .cell .cellText.required::before {
- content: '*';
- color: #E60000;
- }
- .pannel .cell .cellInput {
- flex: 1;
- text-align: right;
- font-weight: 400;
- font-size: 28rpx;
- color: #202020;
- line-height: 80rpx;
- min-height: 80rpx;
- /* border: none; */
- }
- .pannel .cell .cellInput.disabled {
- color: #b6b6b6;
- }
- .pannel .cell .cellAvatar {
- width: 80rpx;
- height: 80rpx;
- background: #D9D9D9;
- border-radius: 50%;
- }
- .pannel .cell textarea {
- flex: 1;
- height: 120rpx;
- background-color: #F8F8F8;
- font-weight: 400;
- font-size: 28rpx;
- line-height: 1.2;
- padding: 24rpx;
- box-sizing: border-box;
- }
- .pannel .cell picker {
- flex: 1;
- text-align: right;
- padding-left: 20rpx;
- }
- .pannel .cell picker.cellInput.disabled {
- color: #b6b6b6 !important;
- }
- .pannel .cell picker.cellInput.disabled view{
- color: #b6b6b6 !important;
- }
- .pannel .cell .cellArrow {
- flex: 1;
- text-align: right;
- line-height: 80rpx;
- }
- .pannel .cell .cellArrow::after {
- /* position: absolute; */
- /* top: 30rpx; */
- font-weight: normal;
- content: "\e615";
- color: #000000;
- }
- .pannel .cell .keyboard_arrow_right {
- font-weight: 400;
- font-size: 28rpx;
- padding-right: 24rpx;
- color: #000000;
- }
- .pannel .cell .keyboard_arrow_right::after {
- position: absolute;
- top: 0;
- font-weight: normal;
- content: "\e615";
- color: #000000;
- line-height: 80rpx;
- }
- .xy-popup {
- position: fixed;
- width: 100%;
- height: 100%;
- left: 0;
- top: 0;
- z-index: 99;
- overflow: visible;
- background-color: transparent;
- }
- .listEmpty {
- width: 208rpx;
- height: 208rpx;
- }
- .loadMore {
- text-align: center;
- font-size: 18rpx;
- color: #000000;
- line-height: 25rpx;
- /* background: #F8F8F8; */
- }
- .noMore {
- text-align: center;
- font-size: 18rpx;
- color: #A2A2A2;
- line-height: 25rpx;
- }
- .noLogin {
- width: 100%;
- display: flex;
- align-items: center;
- flex-flow: column;
- padding-top: 200rpx;
- }
- .noLogin image {
- height: 120rpx;
- }
- .noLogin view {
- margin-top: 20rpx;
- color: #b6b6b6
- }
- .noLogin .loginText {
- color: #00BC8A;
- margin-left: 20rpx;
- }
|