123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- /**app.wxss**/
- @import "utils/iconfont.wxss";
- view {
- box-sizing: border-box;
- transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
- }
- page {font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica,
- Segoe UI, Arial, Roboto, 'PingFang SC', 'miui', 'Hiragino Sans GB', 'Microsoft Yahei',
- sans-serif;
- }
- .centerdispley {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .itemdisplay {
- display: flex;
- align-items: center;
- }
- .display-between {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .flex {
- display: flex;
- align-items: center;
- }
- .al-e {
- align-items: flex-end;
- }
- .al-s {
- align-items: flex-start;
- }
- .ju-c {
- justify-content: center;
- }
- .ju-a {
- justify-content: space-around;
- }
- .ju-b {
- justify-content: space-between;
- }
- .ju-e {
- justify-content: flex-end;
- }
- .m-top-10 {
- margin-top: 10rpx;
- }
- .m-top-15 {
- margin-top: 15rpx;
- }
- .m-top-20 {
- margin-top: 20rpx;
- }
- .m-top-25 {
- margin-top: 25rpx;
- }
- .m-top-30 {
- margin-top: 30rpx;
- }
- .m-top-40 {
- margin-top: 40rpx;
- }
- .m-top-50 {
- margin-top: 50rpx;
- }
- .m-left-10 {
- margin-left: 10rpx;
- }
- .m-left-15 {
- margin-left: 15rpx;
- }
- .m-left-25 {
- margin-left: 25rpx;
- }
- .m-bottom-15 {
- margin-bottom: 15rpx;
- }
- .m-bottom-20 {
- margin-bottom: 20rpx;
- }
- .m-bottom-25 {
- margin-bottom: 25rpx;
- }
- .m-bottom-30 {
- margin-bottom: 30rpx;
- }
- .m-bottom-50 {
- margin-bottom: 50rpx;
- }
- .m-right-10 {
- margin-right: 10rpx;
- }
- .m-right-15 {
- margin-right: 15rpx;
- }
- .m-right-25 {
- margin-right: 25rpx;
- }
- .m-right-20 {
- margin-right: 20rpx;
- }
- .m-right-30 {
- margin-right: 30rpx;
- }
- .img-bgs {
- left: 0;
- top: 0;
- position: absolute;
- z-index: -1;
- width: 100%;
- height: 100%;
- }
- .b-bottom {
- border-bottom: 1rpx solid #EDEDED;
- transform: border scaleY(0.5);
- }
- .t-text-ellipsis2 {
- text-overflow: -o-ellipsis-lastline;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- /*隐藏滚动条*/
- ::-webkit-scrollbar {
- width: 0;
- height: 0;
- color: transparent;
- }
- .btn-sky {
- background: linear-gradient(270deg, #467FFF 0%, #4699FF 100%);
- text-align: center;
- color: #FFFFFF;
- }
- .btn-border {
- text-align: center;
- color: #191C27;
- border: 1rpx solid #CCCCCC;
- }
|