123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- /* pages/wakeList/wakeList.wxss */
- .wakeList{
- position: relative;
- height: 100%;
- }
- .wakeList .ps{
- height: 36rpx;
- background-color: rgba(216, 216, 216, 0.34);
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .wakeList .ps image{
- height: 36rpx;
- }
- .wakeList .ps text{
- font-size: 24rpx;
- font-weight: 500;
- color: #353535;
- line-height: 34rpx;
- }
- .list {
- overflow: auto;
- }
- .list .page-view{
- height: 140rpx;
- margin: 17rpx 0;
- overflow: hidden;
- display: flex;
- align-items: center;
- position: relative;
- }
- .list .page-view view image{
- height: 118rpx;
- width: 118rpx;
- border-radius: 18rpx;
- border: 4rpx solid #353535;
- margin-left: 34rpx;
- margin-right: 30rpx;
- }
- .list .page-view .textInfo .name{
- display: block;
- font-size: 30rpx;
- font-weight: 500;
- color: #353535;
- line-height: 38rpx;
- }
- .list .page-view .textInfo .audioInfo{
- display:-webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp:2;
- overflow:hidden;
- max-width: 60vw;
- font-size: 24rpx;
- color: #6547A3;
- line-height: 38rpx;
- }
- .list .page-view image.action{
- height: 28rpx;
- position: absolute;
- right: 34rpx;
- top: 57rpx;
- }
- .wakeDetail{
- width: 100vw;
- height: 100vh;
- position: fixed;
- top: 0;
- left: 0;
- background-color: rgba(0, 0, 0, 0.6);
- }
- .wakeDetail .wakeDetail-view{
- position: absolute;
- bottom: 0;
- width: 100vw;
- background: #FFFFFF;
- border-radius: 18rpx 18rpx 0px 0px;
- padding: 20rpx 0 60rpx;
- }
- .wakeDetail .wakeDetail-view>text{
- display: block;
- width: 100vw;
- padding-left: 28rpx;
- line-height: 82rpx;
- font-size: 30rpx;
- color: #353535;
- font-weight: bold;
- border-bottom: 1rpx solid rgba(224, 224, 224, 1);
- }
- .wakeDetail .wakeDetail-view .wakeListInfo{
- max-height: 442rpx;
- overflow: auto;
- padding: 0 28rpx;
- }
- .wakeListInfo .li{
- padding: 20rpx 0;
- overflow: hidden;
- position: relative;
- }
- .wakeListInfo .li text:nth-child(1){
- font-size: 24rpx;
- font-weight: 600;
- color: #999999;
- line-height: 48rpx;
- margin-right: 20rpx;
- }
- .wakeListInfo .li text:nth-child(2){
- font-size: 30rpx;
- font-weight: bold;
- color: #353535;
- line-height: 42rpx;
- word-break:break-all;
- }
- .wakeListInfo .li.action text:nth-child(1) {
- color: #353535;
- }
- .wakeListInfo .li.action text:nth-child(2) {
- color: rgba(101, 71, 163, 1);
- }
- .wakeListInfo .li image{
- height: 28rpx;
- position: absolute;
- top: 28rpx;
- right: 0;
- }
- .foot{
- width: 100vw;
- display: flex;
- justify-content: center;
- padding-top: 28rpx;
- }
- .foot text{
- display: flex;
- width: 240rpx;
- height: 80rpx;
- align-items: center;
- justify-content: center;
- border-radius: 40rpx;
- margin: 0 30rpx;
- font-size: 30rpx;
- }
- .foot text:nth-child(1){
- background-color: rgba(232, 232, 232, 1);
- color: #999;
- }
- .foot text:nth-child(2){
- background-color: rgba(101, 71, 163, 1);
- color: #fff;
- }
|