1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- .container {
- position: relative;
- width: 453px;
- height: 80vh;
- max-height: 302px;
- // background: url('../../image/tips-bg.png') top center no-repeat #fff;
- // background-size: contain;
- border-radius: 20px;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- background-color: #fff;
- &::before {
- content: '';
- width: 100%;
- height: 46px;
- display: block;
- position: absolute;
- top: 0;
- left: 0;
- border-top-left-radius: 20px;
- border-top-right-radius: 20px;
- background: linear-gradient(to bottom, #DEFAFF, #ffffff);
- }
- .iconClose {
- position: relative;
- z-index: 1;
- width: 18px;
- height: 19px;
- position: absolute;
- top: 14px;
- right: 20px;
- z-index: 9;
- background: url('../tips/icon-close.png') no-repeat center;
- background-size: contain;
- }
- .title {
- position: relative;
- z-index: 1;
- font-weight: 600;
- font-size: 16px;
- color: #131415;
- line-height: 22px;
- text-align: center;
- padding: 12px 0;
- flex-shrink: 0;
- }
- .content {
- flex: 1;
- overflow-x: hidden;
- overflow-y: auto;
- padding: 0 20px;
- margin-bottom: 16px;
- font-size: 14px;
- line-height: 1.6;
- &::-webkit-scrollbar {
- display: none;
- }
- }
- }
|