123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- /* 转盘组件 */
- /* components/raffleWheel/raffleWheel.wxss */
- .canvas-container {
- width: 90%;
- margin: 0 auto;
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .pan-bg {
- width: 95%;
- position: absolute;
- top: -8.2%;
- }
- .img-container {
- margin: 0 auto;
- position: absolute;
- display: flex;
- align-items: center;
- justify-content: center;
- left: 0;
- top: 0;
- z-index: 10;
- }
- .gb-wheel-run {
- box-shadow: 0 0 5rpx 0rpx rgba(0, 0, 0, 0.98);
- width: 700rpx;
- height: 700rpx;
- border-radius: 50%;
- border: 30rpx solid #f1ecec;
- box-sizing: border-box;
- position: absolute;
- left: 27rpx;
- top: -19rpx;
- opacity: 1;
- }
- .gb-wheel-content {
- position: relative;
- margin: 0 auto;
- z-index: 2;
- width: 660rpx;
- height: 660rpx;
- border-radius: 50%;
- opacity: 1;
- overflow: hidden;
- }
- .canvas-list {
- position: absolute;
- left: 0;
- top: 0;
- width: inherit;
- height: inherit;
- z-index: 8;
- }
- .canvas-item2 {
- position: absolute;
- left: 0px;
- top: 0;
- width: 660rpx;
- height: 328rpx;
- color: #e4370e;
- font-weight: bold;
- transform-origin: 330rpx 330rpx;
- overflow: hidden;
- }
- .canvas-item2-after {
- position: absolute;
- top: 0;
- left: 0;
- width: 330rpx;
- height: 330rpx;
- transform-origin: 330rpx 330rpx;
- opacity: 1;
- }
- .item-text {
- color: #ff6642;
- z-index: 100;
- }
- .gb-wheel-list {
- width: 100%;
- height: 100%;
- z-index: 9;
- }
- .gb-wheel-item {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- color: #fff;
- text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
- z-index: 90;
- }
- .gb-wheel-icontent {
- position: relative;
- display: block;
- padding-top: 50rpx;
- margin: 0 auto;
- text-align: center;
- transform-origin: 50% 328rpx;
- }
- .btn-text {
- width: 80rpx;
- color: #ff6640;
- font-size: 32rpx;
- font-weight: bold;
- position: absolute;
- left: 50%;
- top: 40.1%;
- transform: translate(-45%);
- padding: 20rpx;
- }
- .lucky-decorate{
- position: absolute;
- top: 65%;
- width: 100%;
- left: -2.5%;
- z-index: 10;
- }
- .desc{
- font-size: 30rpx;
- font-weight: bold;
- width: 100%;
- position: fixed;
- bottom: 3%;
- text-align: center;
- color: #fff;
- z-index: 99;
- }
- .orange-text{
- color: #FFDD52
- }
|