|
@@ -81,33 +81,91 @@ view.footer-fixed-bottom button[type='default'] {
|
|
|
justify-content: center;
|
|
|
}
|
|
|
|
|
|
-.page-header-search-warp {
|
|
|
+.app_page-header-search-warp {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
width: 640rpx;
|
|
|
height: 68rpx;
|
|
|
border-radius: 40rpx;
|
|
|
background: #F6F7FA;
|
|
|
-
|
|
|
}
|
|
|
|
|
|
-.page-header-search-warp label {
|
|
|
+.app_page-header-search-warp label {
|
|
|
width: 66rpx;
|
|
|
}
|
|
|
|
|
|
-.page-header-search-warp image {
|
|
|
+.app_page-header-search-warp image {
|
|
|
display: block;
|
|
|
width: 29rpx;
|
|
|
height: 29rpx;
|
|
|
background: pink;
|
|
|
}
|
|
|
|
|
|
-.page-header-search-warp input {
|
|
|
+.app_page-header-search-warp input {
|
|
|
width: calc(100% - 66rpx);
|
|
|
font-size: 28rpx;
|
|
|
color: #1F1F39;
|
|
|
}
|
|
|
|
|
|
-.header-search-placeholder {
|
|
|
+.app_header-search-placeholder {
|
|
|
color: rgba(190, 192, 202, 1);
|
|
|
}
|
|
|
+
|
|
|
+.app_nav-wrap {
|
|
|
+ width: 100%;
|
|
|
+ padding-left: 22rpx;
|
|
|
+ border-bottom: 1rpx solid rgba(189, 189, 189, 1);
|
|
|
+ white-space: nowrap;
|
|
|
+}
|
|
|
+
|
|
|
+.app_nav-wrap .nav {
|
|
|
+ position: relative;
|
|
|
+ left: 0;
|
|
|
+ bottom: 0;
|
|
|
+ display: inline-block;
|
|
|
+ padding: 0 22rpx 24rpx;
|
|
|
+ font-size: 0;
|
|
|
+ color: rgba(145, 179, 121, 1);
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+
|
|
|
+.app_nav-wrap .nav.active {
|
|
|
+ color: rgba(51, 51, 51, 1);
|
|
|
+}
|
|
|
+
|
|
|
+.app_nav-wrap .nav.active .photo {
|
|
|
+ border: 4rpx solid rgba(145, 179, 121, 1);
|
|
|
+}
|
|
|
+
|
|
|
+.app_nav-wrap .nav.active:after {
|
|
|
+ position: absolute;
|
|
|
+ left: 50%;
|
|
|
+ bottom: 0;
|
|
|
+ content: '';
|
|
|
+ width: 100%;
|
|
|
+ height: 12rpx;
|
|
|
+ border-radius: 10rpx 10rpx 0 0;
|
|
|
+ background: rgba(145, 179, 121, 1);
|
|
|
+ transform: translateX(-50%);
|
|
|
+}
|
|
|
+
|
|
|
+.app_nav-wrap .photo {
|
|
|
+ width: 106rpx;
|
|
|
+ height: 106rpx;
|
|
|
+ border-radius: 30rpx;
|
|
|
+ margin: 0 auto;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+.app_nav-wrap .photo image {
|
|
|
+ display: block;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ background-color: pink;
|
|
|
+}
|
|
|
+
|
|
|
+.app_nav-wrap .name {
|
|
|
+ margin-top: 16rpx;
|
|
|
+ font-size: 24rpx;
|
|
|
+ line-height: 36rpx;
|
|
|
+}
|