| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- /* mine/help/help.wxss */
- page {
- padding-bottom: 120rpx;
- }
- .tit {
- padding: 20rpx 30rpx;
- font-size: 24rpx;
- color: #999;
- }
- .list {
- background: #fff;
- padding: 0 30rpx;
- }
- .list .li {
- border-bottom: 2rpx solid #f7f7f7;
- line-height: 98rpx;
- padding-right: .25rpx;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- font-size: 26rpx;
- color: #333;
- position: relative;
- }
- .list .li:last-child {
- border-bottom: none;
- }
- .rico {
- width: 14rpx;
- height: 24rpx;
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- right: 0;
- }
- .zixun-btn{
- position: fixed;
- left: 0;
- bottom: 0;
- right: 0;
- height: 100rpx !important;
- line-height: 100rpx !important;
- }
- .zixun {
- background: var(--mina);
- height: 100rpx !important;
- line-height: 100rpx !important;
- font-size: 36rpx;
- color: #fff;
- text-align: center;
- }
- .gfqw{
- border-right: 2rpx solid #fff;
- height: 100rpx !important;
- line-height: 100rpx !important;
- font-size: 36rpx;
- text-align: center;
- background: var(--mina);
- color: #fff;
- }
- /* 邀请码弹窗 */
- .ceng2{position: fixed;top: 0;left: 0;right: 0;bottom: 0;background-color: rgba(0,0,0,.5);z-index: 99;}
- .code-pop{
- position: fixed;
- top:50%;
- left:50%;
- transform: translate(-50%,-50%);
- width: 574rpx;
- background: #FFFFFF;
- border-radius: 20rpx 20rpx 20rpx 20rpx;
- z-index: 100;
- }
- .code-text{
- line-height: 41rpx;
- color: #151515;
- font-size: 28rpx;
- margin: 51rpx 47rpx 50rpx;
- text-align: center;
- }
- .code-content image{
- width: 365rpx;
- height: 365rpx;
- margin: 50rpx auto 30rpx;
- }
- .code-btn{
- padding: 25rpx;
- text-align: center;
- font-size: 28rpx;
- color: #2A82FD;
- border-top: 1px solid #E9E9E9;
- }
- .pop-scroll{
- max-height: 750rpx;
- overflow: scroll;
- padding: 30rpx;
- }
- .pop-scroll::-webkit-scrollbar {
- display: none;
- }
|