| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- /* pages/common-setting/common-setting.wxss */
- page {
- background: #f0f1f2;
- }
- .logo {
- width: 750rpx;
- height: 368rpx;
- background: #ffffff;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- margin-bottom: 1rpx;
- margin-top: 20rpx;
- }
- .logo-image {
- width: 168rpx;
- height: 168rpx;
- border-radius: 28rpx;
- }
- .version {
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0, 0, 0, 0.65);
- margin-top: 24rpx;
- }
- .cell-group {
- margin-top: 20rpx;
- }
- .cell {
- width: 750rpx;
- height: 112rpx;
- font-size: 34rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0, 0, 0, 0.85);
- padding: 32rpx 40rpx;
- background: #ffffff;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 1rpx;
- }
- .cell .content {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .cell-pic {
- width: 68rpx;
- height: 68rpx;
- margin-right: 30rpx;
- }
- .right {
- width: 14rpx;
- height: 26rpx;
- }
- .cancellation,
- .logout {
- width: 750rpx;
- height: 112rpx;
- line-height: 112rpx;
- background: #ffffff;
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0, 0, 0, 0.45);
- text-align: center;
- margin-top: 20rpx;
- }
- .cover {
- position: fixed;
- left: 0;
- top: 0;
- height: 100%;
- width: 100%;
- background: rgba(0, 0, 0, 0.4);
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .cover-content {
- width: 670rpx;
- height: 384rpx;
- background: #fff;
- border-radius: 10rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .body {
- color: #31364c;
- font-size: 38rpx;
- padding: 0 76rpx;
- box-sizing: border-box;
- margin-top: 62rpx;
- }
- .action {
- height: 110rpx;
- display: flex;
- align-items: center;
- border-top: 1rpx solid #cdcfd3;
- }
- .action view {
- flex: 1;
- line-height: 110rpx;
- text-align: center;
- }
- .cancel {
- color: #888a8e;
- border-right: 1rpx solid #cdcfd3;
- }
- .quit {
- width: 100%;
- position: fixed;
- bottom: 15rpx;
- left: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .quit view {
- width: 710rpx;
- height: 102rpx;
- line-height: 102rpx;
- text-align: center;
- font-size: 38rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #ffffff;
- background: #1890ff;
- border-radius: 18rpx;
- }
|