123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- /* 沟通列表 */
- .CommunicationOfNumber {
- padding-bottom: 30rpx;
- max-height: 50vh;
- }
- .CommunicationOfNumber-title {
- font-size: 32rpx;
- font-weight: 500;
- color: #000000;
- margin: 40rpx 0 30rpx 54rpx;
- }
- .CommunicationOfNumber-list>view {
- width: 100%;
- padding: 0 20rpx;
- font-size: 24rpx;
- color: #000000;
- margin-bottom: 20rpx;
- box-sizing: border-box;
- }
- .CommunicationOfNumber-list .text {
- color: #4DC2D4;
- padding: 0 8rpx;
- }
- /* 我的供需 状态 */
- .myState {
- height: 40rpx;
- }
- .myShowState {
- display: flex;
- align-items: center;
- justify-content: center;
- position: absolute;
- width: 108rpx;
- height: 44rpx;
- background-color: #A7A8A8;
- border-radius: 20rpx 0px 20rpx 0px;
- top: 0;
- left: 0;
- font-size: 20rpx;
- color: #FFFFFF;
- }
- .myNoSoldOut {
- background: #4DC2D4;
- }
- /* 按钮 */
- .dataAndBut_but {
- display: flex;
- align-items: center;
- margin-right: 6rpx;
- }
- .custom-slotBut {
- height: 44rpx !important;
- font-size: 20rpx !important;
- background: linear-gradient(180deg, #84E3EC 0%, #4DC2D4 100%) !important;
- box-shadow: 0px 0px 12rpx 0px rgba(0, 0, 0, 0.1) !important;
- border-radius: 10rpx !important;
- padding: 0 !important;
- border: 0 !important;
- width: 108rpx;
- }
- /* 数据,按钮 插槽样式 */
- .dataAndBut {
- display: flex;
- justify-content: space-between !important;
- align-items: center;
- flex-wrap: nowrap;
- margin-top: 14rpx;
- }
- .dataAndBut_data {
- flex: 1;
- display: flex;
- font-size: 24rpx;
- color: #000000;
- margin-left: 16rpx;
- }
- .dataAndBut_data>text {
- color: #4DC2D4;
- text-decoration: underline;
- margin-left: 8rpx;
- }
- /* 下架按钮插槽样式 */
- .soldOutBut {
- width: 76rpx !important;
- height: 45rpx !important;
- background: rgba(77, 194, 212, 0.1) !important;
- box-shadow: 0px 0px 12rpx 0px rgba(0, 0, 0, 0.1) !important;
- border-radius: 10rpx !important;
- border: 2rpx solid #4DC2D4 !important;
- padding: 0 !important;
- }
- /* 搜索框 */
- .van-search__content {
- background-color: #FFFFFF !important;
- }
|