| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- /**app.wxss**/
- page {
- color: #333;
- min-height: 100%;
- background: #F5F6F8;
- }
- view,text,div {
- // color: #333;
- word-break: break-all;
- font-family: "SourceHanSansSC-Regular";
- box-sizing: border-box;
- }
- .container {
- font-family: "SourceHanSansSC-Regular", "Microsoft YaHei", "Hiragino Sans GB", tahoma, Arial;
- box-sizing: border-box;
- width: 100%;
- overflow: hidden;
- }
- // 文本溢出
- .ellipsis {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .ellipsis2 {
- display: -webkit-box;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .ellipsis3 {
- display: -webkit-box;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-line-clamp: 3;
- -webkit-box-orient: vertical;
- }
- // 文本溢出-end
- /* 在线链接服务仅供平台体验和调试使用,平台不承诺服务的稳定性,企业客户需下载字体包自行发布使用并做好备份。 */
- @font-face {
- font-family: 'iconfont'; /* Project id 3748689 */
- src: url('//at.alicdn.com/t/c/font_3748689_9skur541wqr.woff2?t=1701678660669') format('woff2'),
- url('//at.alicdn.com/t/c/font_3748689_9skur541wqr.woff?t=1701678660669') format('woff'),
- url('//at.alicdn.com/t/c/font_3748689_9skur541wqr.ttf?t=1701678660669') format('truetype');
- }
- .iconfont {
- font-family: "iconfont" !important;
- font-style: normal;
- color: #333;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- .clearfix:before,
- .clearfix:after {
- content: "";
- height: 0;
- clear: both;
- display: block;
- visibility: hidden;
- }
- // flex布局
- .flex_grow {flex: 1;}
- .flex_wrap {flex-wrap: wrap;}
- .flex_ac {align-items: center;}
- .flex_ae {align-items: flex-end;}
- .flex_as {align-items: flex-start;}
- .flex_jc {justify-content: center;}
- .flex_je {justify-content: flex-end;}
- .flex_js {justify-content: flex-start;}
- .flex_jb {justify-content: space-between;}
- .flex_jse {justify-content: space-evenly;}
- .flex_r {display: flex;flex-direction: row;}
- .flex_c {display: flex;flex-direction: column;}
- // flex布局-end
- // 边距
- .padd20 {padding: 20rpx 0;}
- .mar_t10 {margin-top: 10rpx;}
- .mar_t20 {margin-top: 20rpx;}
- .mar_t30 {margin-top: 30rpx;}
- .mar_t36 {margin-top: 36rpx;}
- .mar_t50 {margin-top: 50rpx;}
- .mar_t16 {margin-top: 16rpx;}
- .mar_t-10 {margin-top: -10rpx;}
- .padd_t30 {padding-top: 30rpx;}
- .mar_b10 {margin-bottom: 10rpx;}
- .mar_b20 {margin-bottom: 20rpx;}
- .mar_b30 {margin-bottom: 30rpx;}
- .padd_b0 {padding-bottom: 0 !important;}
- // 边距-end
- // 底部提示
- .fz_w_text {
- width: 100%;
- color: #bcbcbc;
- font-size: 24rpx;
- text-align: center;
- padding: 30rpx 0 40rpx;
- }
- .no_data {
- text-align: center;
- padding: 80rpx 30px;
- line-height: 1.5;
- font-size: 28rpx;
- color: #999;
- }
- .no_data .image {
- width: 240rpx;
- height: 240rpx;
- margin-bottom: 20rpx;
- }
- .imgs_bar {
- width: 100%;
- overflow: hidden;
- display: flex;
- display: -webkit-flex;
- align-items: center;
- justify-content: center;
- }
- uni-input {
- box-sizing: content-box;
- }
- .noticeBar .uni-noticebar {
- margin: 0 !important;
- padding: 0 !important;
- }
- .corFE2C15 {
- color: #FE2C15 !important;
- }
- // 暂无信息/数据/列表
- .zanwu {
- text-align: center;
- min-height: 100vh;
- background: #fff;
- }
- .zanwutxt {
- margin-top: 16rpx;
- font-size: 28rpx;
- color: #888;
- }
- .hover_a{
- color: #17bb87;
- }
- .inp_pl{
- font-size: 28rpx;
- color: #bbb;
- }
|