123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- /* pages/tabber/news/index.wxss */
- page {
- width: 750rpx;
- height: 100vh;
- background: #F6F6F6;
- }
- .van-tab--active {
- font-weight: bold !important;
- }
- .itemBoxs {
- width: 702rpx;
- background: #FFFFFF;
- border-radius: 12rpx;
- margin: 24rpx auto;
- }
- .itemBoxs .titBoxs {
- padding: 25rpx 0;
- }
- .itemBoxs .titBoxs .le {
- width: 112rpx;
- height: 40rpx;
- background: #31333B;
- border-radius: 0px 20rpx 20rpx 0px;
- text-align: center;
- line-height: 40rpx;
- font-size: 20rpx;
- color: #FFFFFF;
- }
- .itemBoxs .titBoxs .lr {
- font-size: 26rpx;
- margin-right: 25rpx;
- }
- .orange {
- color: #FF663D;
- }
- .gray {
- color: #666666;
- }
- .skyBlue {
- color: #4699FF;
- }
- .itemBoxs .contioner {
- padding: 24rpx;
- }
- .itemBoxs .messageBoxs .tips {
- font-size: 28rpx;
- font-weight: 500;
- color: #191C27;
- }
- .itemBoxs .messageBoxs .time {
- font-size: 24rpx;
- color: #999999;
- }
- .itemBoxs .centerBoxs {
- white-space: nowrap;
- margin: 30rpx 0;
- }
- .itemBoxs .centerBoxs scroll-view {
- width: 75%;
- }
- .itemBoxs .centerBoxs .clothes {
- width: 120rpx;
- height: 120rpx;
- }
- .itemBoxs .centerBoxs .name {
- font-size: 28rpx;
- color: #191C27;
- margin-left: 25rpx;
- }
- .itemBoxs .centerBoxs .lr {
- text-align: right;
- line-height: 60rpx;
- height: 120rpx;
- }
- .itemBoxs .centerBoxs .showModel {
- position: relative;
- }
- .itemBoxs .centerBoxs .showModel::before {
- position: absolute;
- left: -30rpx;
- top: 0;
- display: block;
- content: '';
- width: 10rpx;
- height: 100%;
- background: #F6F6F6;
- filter: blur(6rpx);
- /* border: 1px solid red; */
- }
- .itemBoxs .centerBoxs .price {
- font-size: 36rpx;
- font-family: HelveticaNeue-BoldCond, HelveticaNeue;
- font-weight: bold;
- color: #191C27;
- letter-spacing: 1rpx;
- }
- .itemBoxs .centerBoxs .small {
- font-size: 24rpx;
- }
- .itemBoxs .centerBoxs .num {
- font-size: 28rpx;
- color: #999999;
- }
- .itemBoxs .footerBoxs .btn {
- width: 152rpx;
- height: 60rpx;
- border-radius: 30rpx;
- text-align: center;
- line-height: 60rpx;
- font-size: 28rpx;
- margin-left: 25rpx;
- }
- .bg {
- background: linear-gradient(270deg, #467FFF 0%, #4699FF 100%);
- color: #FFFFFF;
- }
- .border {
- color: #191C27;
- border: 1rpx solid #CCCCCC;
- }
- .imgBoxs {
- position: relative;
- margin-right: 25rpx;
- }
- .imgBoxs .nums {
- position: absolute;
- left: 0;
- bottom: 0;
- width: 100%;
- height: 30rpx;
- background: rgba(25, 28, 39, 0.5);
- border-radius: 0px 0px 4rpx 4rpx;
- font-size: 22rpx;
- color: #FFFFFF;
- line-height: 30rpx;
- text-align: center;
- }
- .custom-image .van-empty__image{
- width: 400rpx;
- margin-top: 250rpx;
- }
|