12345678910111213141516171819202122232425262728293031323334353637 |
- .adsorb-right {
- position: fixed;
- display: flex;
- right: 0;
- top: 70%;
- box-shadow: 4rpx 8rpx 12rpx 0px rgba(0, 0, 0, 0.28);
- border-radius: 38rpx 0 0 38rpx;
- overflow: hidden;
- background: linear-gradient(180deg, #84E3EC 0%, #4DC2D4 100%);
- }
- /* 按钮左侧 */
- .but-left {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 54rpx;
- height: 62rpx;
- }
- .but-left>image{
- width: 26rpx;
- height: 26rpx;
- margin-left: 10rpx;
- }
- /* 按钮右侧 */
- .but-right {
- display: flex;
- align-items: center;
- width: 82rpx;
- height: 62rpx;
- font-size: 32rpx;
- font-weight: 500;
- color: #FFFFFF;
- margin-left: 8rpx;
- }
|