| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- /* banner */
- .supplyAndDemandBanner {
- width: 100vw;
- height: 306rpx;
- background-color: #FFFFFF;
- }
- .swiperBanner {
- width: 702rpx;
- height: 286rpx;
- padding-top: 20rpx;
- margin: 0 auto;
- }
- .swiperBanner swiper-item,
- .swiperBanner image {
- width: 100%;
- height: 100%;
- border-radius: 15rpx;
- }
- /* 我的需求搜索框 */
- .my-need-search {
- display: flex;
- width: 702rpx;
- height: 60rpx;
- border-radius: 6rpx;
- margin: 10rpx auto 20rpx;
- }
- .my-need-search-input {
- flex: 1;
- height: 100%;
- line-height: 100%;
- font-size: 26rpx;
- text-align: center;
- background-color: #FFFFFF;
- color: rgba(0, 0, 0, 0.4);
- border: 2px solid rgba(0, 0, 0, 0.1);
- border-right: 0;
- border-radius: 6rpx 0px 0px 6rpx;
- padding-left: 20rpx;
- margin-left: 10rpx;
- box-sizing: border-box;
- }
- .my-need-search-inputfocus {
- border: 2px solid #4DC2D4;
- color: rgba(0, 0, 0, 0.7);
- }
- .my-need-search-but {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 128rpx;
- height: 100%;
- font-size: 34rpx;
- color: #FFFFFF;
- background: #4DC2D4;
- border-radius: 0px 6rpx 6rpx 0px;
- }
- /* 宫格区域盒子 */
- .grid_box {
- width: 704rpx;
- height: 330rpx;
- background: #FFFFFF;
- border-radius: 20px;
- overflow: hidden;
- margin: 10rpx auto 20rpx;
- }
- .tabs_box {
- width: 100vw;
- }
- /* tabs选中项样式 */
- .tabs-active-class {
- font-size: 32rpx !important;
- font-weight: 600 !important;
- }
- /* 下架按钮插槽样式 */
- .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;
- }
- /* 数据,按钮 插槽样式 */
- .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;
- }
- .dataAndBut_but {
- display: flex;
- align-items: center;
- margin-right: 6rpx;
- }
- .custom-slotBut {
- height: 44rpx !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;
- color: 20rpx !important;
- padding: 0 14rpx !important;
- border: 0 !important;
- }
- /* 正在对接按钮 */
- .butt-joint {
- background: linear-gradient(180deg, #D3D3D3 0%, #A7A8A8 100%) !important;
- }
|