12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- page {
- background-color: #ffffff;
- }
- .page {
- background-color: #ffffff;
- }
- .topBody {
- width:750rpx;
- }
- .list_info {
- display: flex;
- flex-direction: column;
- width: 750rpx;
- padding: 20rpx 0;
-
- .group-header {
- padding: 20rpx 30rpx;
- font-size: 28rpx;
- color: #999;
- background-color: #f8f8f8;
- }
-
- .item {
- width: 750rpx;
- height: 100rpx;
- padding: 0 30rpx;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- border-bottom: solid 1px #f0f0f0;
-
- .item-left {
- display: flex;
- align-items: center;
-
- .icon {
- width: 40rpx;
- height: 40rpx;
- margin-right: 20rpx;
- }
-
- text {
- font-size: 28rpx;
- color: #333;
- }
- }
-
- .item-right {
- display: flex;
- align-items: center;
-
- .arrow {
- width: 36rpx;
- }
- }
- }
-
- }
- .version-info {
- position: fixed;
- width: 100%;
- text-align: center;
- font-size: 24rpx;
- color: #999;
- position: fixed;
- bottom: 176rpx;
- }
- .btn_submit {
- width: 660rpx;
- height: 96rpx;
- position: fixed;
- bottom: 50rpx;
- left: 45rpx;
- border: 2rpx solid #f0f0f0;
- border-radius: 28rpx;
- font-size: 32rpx;
- color: #FF2A95;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- background-color: #fff;
- }
- .blankHeight {
- height:300rpx;
- }
|