|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- /* pages/buyTicket/buyTicket.wxss */
- page{
- width: 100%;
- height: 100%;
- overflow: hidden;
- background-color: #f9f6f6;
- /* background-color: red; */
- }
- .ticketImg{
- width: 100%;
- height: 472rpx;
- }
- .imgView{
- width: 100%;
- height: 300rpx;
- overflow: hidden;
- border-radius:0px 0px 30rpx 30rpx;
- position: relative
- }
- .tooth{
- display: block;
- width: 694rpx;
- height: 10rpx;
- position: absolute;
- left: 50%;
- bottom: -4rpx;
- transform: translateX(-50%);
- }
- .buyNum{
- width: 100%;
- height: 190rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-radius:30rpx;
- background-color: #ffffff;
- }
- .line{
- margin-left: 80rpx;
- margin-right: 46rpx;
- width: 1rpx;
- height: 126rpx;
- background-color: rgba(204,204,204,1);
- }
- .chooseNum text{
- font-size: 30rpx;
- font-weight:bold;
- color:rgba(51,51,51,1);
- }
- .inputNum{
- width: 70rpx;
- margin: 0 15rpx;
- text-align: center;
- background-color: #f9f6f6;
- }
- .subtract{
- width: 28rpx;
- height: 4rpx;
- }
- .textAdd{
- width: 28rpx;
- height: 28rpx;
- }
- .subtractView{
- width: 28rpx;
- height: 28rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- background: #ffffff;
- }
- .ticketName{
- font-size:30rpx;
- font-family:SourceHanSansCN;
- font-weight:bold;
- color:rgba(51,51,51,1);
- margin-left:96rpx;
- }
-
- .chooseNum{
- display: flex;
- align-items: center;
- margin-right: 54rpx;
- border: 2rpx solid #f9f6f6;
- padding: 0 20rpx;
- }
- .title{
- display: inline-block;
- width: 100%;
- margin-bottom:7rpx;
- text-align: center;
- font-size:30rpx;
- font-family:SourceHanSansCN;
- font-weight:bold;
- color:rgba(51,51,51,1);
- line-height:30rpx;
- }
- .timeLimit{
- height: 26rpx;
- display: flex;
- align-items: center;
- margin-top: 23rpx;
- margin-bottom: 15rpx;
- }
- .timeLimit image{
- width: 20rpx;
- height: 20rpx;
- margin-left: 32rpx;
- margin-right: 16rpx;
- }
- .timeLimit text{
- font-size:26rpx;
- font-family:SourceHanSansCN;
- font-weight:bold;
- color:rgba(51,51,51,1);
- line-height:30rpx;
- }
- .specify{
- font-size:22rpx;
- font-family:SourceHanSansCN;
- font-weight:400;
- color:rgba(102,102,102,1);
- line-height:30rpx;
- width: 613rpx;
- margin-left: 69rpx;
- }
-
- .buyBtn{
- width: 100%;
- height: 99rpx;
- /* margin-top: 90rpx; */
- position: absolute;
- bottom: 0;
- }
-
- .botAll{
- background-color: #ffffff;
- border-radius:30rpx;
- margin-top: 10rpx;
- padding: 50rpx 0;
- }
- .circleLeft{
- background-color: #f9f6f6;
- border-radius: 50%;
- width: 50rpx;
- height: 50rpx;
- position: absolute;
- left: -25rpx;
- }
- .circleRig{
- background-color: #f9f6f6;
- border-radius: 50%;
- width: 50rpx;
- height: 50rpx;
- position: absolute;
- right: -25rpx;
- }
|