|
|
@@ -0,0 +1,112 @@
|
|
|
+.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;
|
|
|
+}
|
|
|
+
|
|
|
+.company-data-image {
|
|
|
+ width: 114rpx;
|
|
|
+ height: 114rpx;
|
|
|
+ border-radius: 10rpx;
|
|
|
+ margin-right: 20rpx;
|
|
|
+ background-color: royalblue;
|
|
|
+}
|
|
|
+
|
|
|
+.company-data-brandName {
|
|
|
+ flex: 1;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #000000;
|
|
|
+}
|
|
|
+
|
|
|
+.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;
|
|
|
+}
|
|
|
+.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%;
|
|
|
+}
|