123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /* components/My_fixedButton/index.wxss */
- /* 右侧吸附按钮 */
- .fixedButton {
- position: fixed;
- width: 132rpx;
- height: 68rpx;
- font-size: 32rpx;
- color: #FFFFFF;
- box-shadow: 0px 6rpx 6rpx 0px rgba(0, 0, 0, 0.1);
- border-radius: 34rpx 0 0 34rpx;
- top: 65%;
- right: 0;
- z-index: 999;
- overflow: hidden;
- }
- .custom-fixedButton {
- position: absolute !important;
- width: 100% !important;
- height: 100% !important;
- top: 0;
- }
- .fixedButtonText {
- position: absolute;
- display: flex;
- align-items: center;
- width: 100%;
- height: 100%;
- z-index: 9;
- pointer-events: none;
- }
- .fixedButtonText image {
- width: 26rpx;
- height: 26rpx;
- margin-left: 18rpx;
- }
- .fixedButtonText view {
- margin: -3.5rpx 10rpx 0;
- }
|