123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- /* customer/pages/activitydetail/activitydetail.wxss */
- .page {
- width: 100%;
- height: 100vh;
- position: relative;
- overflow: auto;
- background-color: #fff;
- box-sizing: border-box;
- padding-bottom: 98rpx;
- }
- .a-title {
- font-size: 32rpx;
- font-weight: 700;
- color: #384855;
- padding: 20rpx 20rpx 10rpx;
- }
- .a-time {
- font-size: 24rpx;
- padding: 10rpx 20rpx 20rpx;
- display: flex;
- justify-content: space-between;
- }
- .a-turntable {
- width: 100%;
- overflow: hidden;
- position: relative;
- background: #f40039;
- }
- .d-bg-turntable {
- position: absolute;
- width: 100%;
- height: 100%;
- z-index: 0;
- }
- .a-fixed-bottom {
- position: fixed;
- bottom: 0rpx;
- left: 0rpx;
- width: 100%;
- height: 98rpx;
- display: flex;
- z-index: 99999;
- }
- .a-turntable-title {
- position: relative;
- z-index: 1;
- left: 50%;
- transform: translateX(-50%);
- margin-top: 20rpx;
- }
- .a-van-notice-bar {
- position: relative;
- z-index: 1;
- width: 70% !important;
- left: 50%;
- transform: translateX(-50%);
- }
- .a-lucky-wheel {
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-top: 20rpx;
- position: relative;
- }
- .a-lucky-bottom {
- position: absolute;
- z-index: 9;
- bottom: -205rpx;
- width: 550rpx;
- }
- .flex-sub {
- flex: 1;
- }
- button {
- border-radius: 0rpx !important;
- }
- .color384855 {
- color: #384855;
- }
- .color249DFA {
- color: #249DFA;
- }
- .colorfff {
- color: #fff;
- }
- .bg249DFA {
- background-color: #249DFA;
- }
- .flex {
- display: flex;
- }
- .align-center {
- align-items: center;
- }
- .justify-center {
- justify-content: center;
- }
- .justify-start {
- justify-content: flex-start;
- }
- .flex-column {
- display: flex;
- flex-direction: column;
- position: relative;
- z-index: 9;
- margin-top: 280rpx;
- width: 95%;
- left: 50%;
- transform: translateX(-50%);
- box-sizing: border-box;
- padding: 20rpx;
- font-size: 24rpx;
- color: #fff;
- background-color: #DC0025;
- border-radius: 4rpx;
- margin-bottom: 40rpx;
- }
- .mt10 {
- margin-top: 10rpx;
- }
- .absolute-bottom {
- position: absolute;
- bottom: 0px;
- z-index: 1;
- width: 100%;
- height: 600rpx;
- }
- .phone {
- width: 26rpx;
- height: 26rpx;
- margin-right: 20rpx;
- }
- .a-lucky-btn {
- position: absolute;
- width: 250rpx;
- bottom: -240rpx;
- z-index: 9;
- }
- .a-lucky-text {
- position: absolute;
- width: 200rpx;
- bottom: -190rpx;
- z-index: 9;
- text-align: center;
- font-weight: 700;
- color: #A10700;
- }
- .font32 {
- font-size: 32rpx;
- }
|