| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- page view {
- box-sizing: border-box;
- flex-shrink: 0;
- }
- page {
- font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma,
- Arial, PingFang SC-Light, Microsoft YaHei;
- margin: 0;
- }
- button {
- margin: 0;
- padding: 0;
- border: 1px solid transparent;
- outline: none;
- background-color: transparent;
- }
- button:active {
- opacity: 0.6;
- }
- .flex-col {
- display: flex;
- flex-direction: column;
- }
- .flex-row {
- display: flex;
- flex-direction: row;
- }
- .flex-row-reverse {
- display: flex;
- flex-direction: row-reverse;
- }
- .bord{
- border: 1px solid red;
- }
- .justify-start {
- display: flex;
- justify-content: flex-start;
- }
- .justify-center {
- display: flex;
- justify-content: center;
- }
- .justify-end {
- display: flex;
- justify-content: flex-end;
- }
- .justify-evenly {
- display: flex;
- justify-content: space-evenly;
- }
- .justify-around {
- display: flex;
- justify-content: space-around;
- }
- .justify-between {
- display: flex;
- justify-content: space-between;
- }
- .align-start {
- display: flex;
- align-items: flex-start;
- }
- .align-center {
- display: flex;
- align-items: center;
- }
- .align-end {
- display: flex;
- align-items: flex-end;
- }
- .sticky {
- display: flex;
- position: -webkit-sticky;
- position: sticky;
- top: 0rpx;
- z-index: 99;
- }
- .bord{
- border: 1px solid red;
- }
- .swiper{
- height: 390rpx;
- }
- .swiperImgView{
- width: 750rpx;
- height: 390rpx;
- }
- .swiperImg{
- width: 750rpx;
- height: 390rpx;
- }
- .banner{
- margin-top: 10rpx;
- }
- .goods{
- padding: 10rpx 20rpx;
- }
- .goodsName{
- width: 710rpx;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- margin-top: 10rpx;
- font-size: 30rpx;
- }
- .goodsImgTitle{
- width: 710rpx;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- margin-top: 10rpx;
- font-size: 26rpx;
- color: #999999;
- }
- .goodsPrice{
- margin-top: 10rpx;
- font-size: 40rpx;
- color: red;
- }
- .aixinView{
- width: 40rpx;
- height: 40rpx;
- }
- .aixinImg{
- width: 40rpx;
- height: 40rpx;
- }
- .goodsDetail{
- height: 70rpx;
- line-height: 70rpx;
- font-size: 35rpx;
- }
- .goodsDetailImgView{
- }
- .goodsDetailImg{
- width: 750rpx;
- }
- .goods-carts {
- flex-direction: column;
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- }
|