12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /* pages/regular_msg/regular_msg.wxss */
- .card-padding {
- padding: 10rpx;
- }
- .card-cont {
- position: relative;
- border: 1rpx solid #e4efff;
- border-radius: 8rpx;
- }
- /* 三角形icon */
- .triangle {
- position: absolute;
- top: 0;
- left: 50%;
- transform: translateX(-50%);
- width: 36rpx;
- height: 22rpx;
- }
- /* 标题 */
- .title {
- margin-top: 50rpx;
- text-align: center;
- }
- .title > text {
- background: linear-gradient(180deg, #90bbec 0%, #2074d6 100%);
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
- font-weight: 700;
- font-size: 40rpx;
- }
- /* 内容 */
- .cont {
- margin-top: 64rpx;
- }
- /* 二维码 */
- .qrcode-area {
- width: 100%;
- margin-top: 136rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- }
- .qrcode-area > image {
- width: 320rpx;
- height: 320rpx;
- }
- .qrcode-area > text {
- color: #90bbec;
- font-size: 26rpx;
- margin-top: 12rpx;
- }
- /* 提示信息 */
- .tip {
- margin-top: 24rpx;
- font-size: 26rpx;
- color: #b7c7de;
- text-align: center;
- margin-bottom: 8rpx;
- }
|