| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- @import './tools';
- @import './ui';
- /* 字体文件 */
- @font-face {
- font-family: OPPOSANS;
- src: url('~@/common/scss/font/OPPOSANS-M-subfont.ttf');
- }
- .font-OPPOSANS {
- font-family: OPPOSANS;
- }
- page {
- -webkit-overflow-scrolling: touch; // 解决ios滑动不流畅
- height: 100%;
- width: 100%;
- // font-family: OPPOSANS;
- word-break: break-all; //英文文本不换行
- white-space: normal;
- background-color: $bg-page;
- color: $dark-3;
- }
- ::-webkit-scrollbar {
- width: 0;
- height: 0;
- color: transparent;
- display: none;
- }
- .tips_wrap{
- width: 610rpx;
- min-height: 450rpx;
- padding: 60rpx 40rpx 30rpx;
- background: #FFFFFF;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .tips_cont{
- .label{
- font-weight: bold;
- font-size: 32rpx;
- color: #222222;
- line-height: 44rpx;
- text-align: center;
- }
- .cont{
- font-weight: 400;
- font-size: 28rpx;
- color: #666666;
- line-height: 40rpx;
- padding: 60rpx 0;
- text-align: center;
- }
- }
- .group_btn{
- display: flex;
- align-items: center;
- .item_btn{
- flex: 1;
- height: 104rpx;
- line-height: 104rpx;
- border-radius: 40rpx;
- text-align: center;
- font-weight: bold;
- font-size: 32rpx;
- color: #FFFFFF;
- margin-left: 18rpx;
- }
- .item_btn:first-child{
- margin-left: 0;
- }
- .cancel_btn{
- background: #CCCCCC;
- }
- .confirm_btn{
- background: #222222;
- }
- .logout-btn{
- background: #FF4E4E;
- }
- }
- }
|