| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- /* subpages/helpList/helpList.wxss */
- page {
- background: #F8F9FA;
- display: flex;
- flex-direction: column;
- position: relative;
- }
- .help-bg {
- position: absolute;
- z-index: -1;
- width: 100vw;
- display: block;
- }
- .nav-bar {
- background: transparent !important;
- }
- .list {
- margin-top: 100rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 100vw;
- margin-bottom: 24rpx;
- }
- .item-card {
- margin-top: 24rpx;
- display: flex;
- flex-direction: column;
- width: 690rpx;
- background: #FFFFFF;
- border-radius: 24rpx;
- }
- .h-view {
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .menu-icon {
- display: block;
- margin-left: 30rpx;
- width: 64rpx;
- height: 64rpx;
- }
- .menu-title {
- font-size: 28rpx;
- margin-left: 20rpx;
- color: #333333;
- }
- .item {
- width: 630rpx;
- margin-left: 30rpx;
- display: flex;
- height: 96rpx;
- flex-direction: row;
- align-items: center;
- border-bottom: 1rpx solid #E8E8E8;
- }
- .item:active {
- opacity: 0.7;
- }
- .item:last-child {
- border: 0;
- }
- .item-title {
- flex: 1;
- font-size: 26rpx;
- color: #333333;
- }
|