1234567891011121314151617181920212223242526272829303132 |
- .container {
- width: 453px;
- height: 302px;
- background: url('../../image/tips-bg.png') top center no-repeat #fff;
- background-size: contain;
- border-radius: 20px;
- display: flex;
- flex-direction: column;
- .title {
- 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;
- &::-webkit-scrollbar {
- display: none;
- }
- }
- }
|