123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- @import url('./common.css');
- main {
- width: 100%;
- margin-top: 0.88rem;
- background-color: #F7F7F7;
- }
- main .goods_info {
- padding: 0.24rem 0.32rem 0.6rem;
- }
- main .goods_info .single {
- width: 3.3rem;
- height: auto;
- margin-right: 0.24rem;
- background-color: #fff;
- padding-bottom: 0.32rem;
- margin-bottom: 0.22rem;
- }
- main .goods_info .single:nth-child(2n) {
- margin-right: 0;
- }
- main .single img {
- width: 3.3rem;
- height: 3.3rem;
- }
- main .single .title {
- font-size: 0.28rem;
- color: #333;
- margin: 0.16rem 0 0.22rem;
- height: 0.68rem;
- line-height: 0.34rem;
- text-align: left;
- padding: 0 0.16rem;
- }
- main .single .price {
- font-size: 0.22rem;
- color: #E73E2D;
- font-weight: 700;
- padding: 0 0.16rem;
- text-align: center;
- }
- main .single .price span {
- font-size: 0.32rem;
- }
- main .single .price .unit {
- font-size: 0.22rem;
- }
- main .single .price .dot {
- font-size: 0.24rem;
- }
- main .single .buy {
- text-align: center;
- margin-top: 0.24rem;
- }
- main .single .buy button {
- width: 1.76rem;
- height: 0.56rem;
- line-height: 0.56rem;
- text-align: center;
- margin: 0 auto;
- background-color: #fff;
- border: 1px solid #909297;
- cursor: pointer;
- }
- .model {
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.5);
- position: fixed;
- top: 0;
- left: 0;
- z-index: 1000;
- display: none;
- }
- .model .lead {
- width: 3.92rem;
- height: auto;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- .model .lead img {
- width: 3.92rem;
- height: 3.92rem;
- }
- .model .lead .close {
- width: 0.48rem;
- height: 0.48rem;
- position: absolute;
- bottom: -0.72rem;
- left: 50%;
- transform: translateX(-50%);
- cursor: pointer;
- }
|