123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- Page {
- width: 100%;
- height: 100%;
- box-sizing: border-box;
- display: flex;
- flex-flow: column nowrap;
- justify-content: flex-start;
- align-items: center;
- background-color: #F7F7F7;
- }
- /* 头图的样式 */
- .top_img {
- width: 338px;
- margin-top: 14px;
- }
- /* banner的样式 */
- .banner_list {
- width: 338px;
- height: 74px;
- background: #FFFFFF;
- border-radius: 5px;
- margin-top: 15px;
- justify-content: space-around !important;
- }
- .banner_item {
- width: 50px;
- text-align: center;
- justify-content: space-between!important;
- align-items: center!important;
- }
- .b_i_img {
- width: 38px;
- height: 38px;
- margin-top: 6px;
- }
- .b_i_text {
- width: 48px;
- height: 12px;
- line-height: 12px;
- font-size: 12px;
- font-weight: 500;
- color: #303030;
- margin-bottom: 10px;
- }
- /* 券包的样式 */
- .coupon_list {
- /* min-height: 360px; */
- background: #FFFFFF;
- border-radius: 5px;
- margin-top: 13px;
- box-sizing: border-box;
- padding: 20px 17px;
- margin-bottom: 60px;
- }
- .c_l_top{
- width: 100%;
- height: 18px;
- justify-content: space-between!important;
- }
- .c_l_top_l{
- width: 60px;
- line-height: 18px;
- font-size: 14px;
- font-weight: 700;
- color: #010101;
- text-align: left;
- }
- .c_l_top_r{
- width: 25px;
- line-height: 18px;
- font-size: 11px;
- font-weight: 400;
- color: #A0A0A0;
- text-align: right;
- }
- .coupon_item{
- height: 91px;
- margin-top: 18px;
- }
- .coupon_item_img{
- width: 112px;
- height: 91px;
- border-radius: 5px;
- }
- .coupon_item_right{
- width: 174px;
- height: 91px;
- margin-left: 17px;
- box-sizing: border-box;
- padding-top: 5px;
- justify-content: space-between!important;
- }
- .coupon_name{
- font-size: 14px;
- font-weight: 700;
- color: #010101;
- line-height:15px ;
- }
- .coupon_num{
- height: 11px;
- font-size: 11px;
- font-weight: 500;
- color: #A0A0A0;
- margin-top: 6px;
- }
- .coupon_i_r_bottom{
- justify-content: space-between!important;
- }
- .coupon_price{
- font-size: 11px;
- font-weight: 500;
- color: #B01717;
- }
- .coupon_buy{
- width: 80px;
- height: 29px;
- line-height: 29px;
- background: #B01717;
- border-radius: 14px;
- color: #ffffff;
- text-align: center;
- font-size: 15px;
- }
|