12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- .page {
- /* width: 100vw;
- height: 100vh; */
- background: linear-gradient(180deg, #DFEDFF 1%, #F3F8FF 39%, #FFFFFF 73.5%);
- }
- .tips-content {
- width: 95%;
- height: 95%;
- background-color: #fff;
- border-radius: 10rpx;
- }
- .content-box {
- height: 75%;
- padding: 6rpx 15rpx 0;
- overflow: hidden;
- }
- .content-box .content {
- width: 99%;
- height: 300rpx;
- box-sizing: border-box;
- margin-top: 10rpx;
- }
- .icon-box {
- margin-left: 50rpx;
- font-size: 9rpx;
- margin-top: 10rpx;
- display: flex;
- align-items: center;
- }
- .icon {
- width: 10rpx;
- height: 10rpx;
- margin-right: 5rpx;
- }
- .tips-btn {
- width: 100%;
- /* height: 25rpx; */
- margin-top: 20rpx;
- }
- .tips-btn .logOut,
- .tips-btn .sure,
- .tips-btn .sure-gray {
- width: 160rpx;
- height: 26rpx;
- line-height: 26rpx;
- border-radius: 5rpx;
- font-size: 12rpx;
- text-align: center;
- }
- .tips-btn .logOut {
- border: 1px solid rgba(32, 89, 190, 80);
- color: rgba(105, 126, 163, 1);
- margin-right: 35rpx;
- }
- .tips-btn .sure-gray {
- background-color: rgba(185, 194, 216, 1);
- color: #fff;
- }
- .tips-btn .sure {
- background-color: #1677ff;
- color: #fff;
- }
- .time {
- position: absolute;
- color: #00437C;
- font-size: 11rpx;
- top: 16rpx;
- right: 35rpx;
- }
|