123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- .SearchInputBox {
- width: 100%;
- background-color: #ffffff;
- padding: 20rpx 0rpx;
- box-sizing: border-box;
- }
- /* 展示区域title image */
- .display-title_image {
- width: 32rpx;
- height: 32rpx;
- margin: 0 6rpx;
- }
- /* 相关商家信息 */
- .company-data {
- display: flex;
- width: 100%;
- height: 114rpx;
- padding-bottom: 20rpx;
- border-bottom: 2rpx solid rgba(151, 151, 151, .1);
- margin-bottom: 20rpx;
- z-index: 99;
- }
- .company-data-image {
- width: 114rpx;
- height: 114rpx;
- border-radius: 10rpx;
- margin-right: 20rpx;
- z-index: 99;
- }
- .company-data-brandName {
- width: 300rpx;
- display: flex;
- align-items: center;
- font-size: 28rpx;
- color: #000000;
- z-index: 99;
- }
- .company-data-but {
- display: flex;
- align-items: center;
- height: 100%;
- }
- .custom-class-company-data {
- width: 88rpx;
- height: 46rpx !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;
- color: #ffffff !important;
- font-weight: 500;
- font-size: 24rpx;
- text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
- }
- .jujue {
- background: linear-gradient(180deg, #D3D3D3 0%, #A7A8A8 100%) !important;
- }
- /* 选择合作方式 */
- .pattern {
- position: relative;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 24rpx;
- color: #4BBECF;
- width: 198rpx;
- height: 46rpx;
- border-radius: 10rpx;
- border: 2rpx solid #4BBECF;
- z-index: 99;
- }
- .pattern-item-box {
- position: absolute;
- width: 100%;
- top: 65rpx;
- }
- .pattern-item {
- width: 100%;
- background-color: #ffffff;
- border: 2rpx solid #e8e8e8;
- border-radius: 8rpx;
- bottom: -70rpx;
- box-shadow: 0 0 8rpx 0 rgba(0, 0, 0, 0.1);
- }
- .pattern-item>view {
- line-height: 50rpx;
- text-align: center;
- color: rgba(0, 0, 0, 0.5);
- }
- .pattern-item::after {
- position: absolute;
- content: '';
- display: block;
- width: 15rpx;
- height: 15rpx;
- background-color: #fff;
- transform: rotate(45deg);
- border: 2rpx solid #e8e8e8;
- border-bottom: 0;
- border-right: 0;
- top: 0;
- margin-top: -9rpx;
- left: 75%;
- }
|