| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- // pages/snapshot/common-style.scss
- .mainBox {
- background-color: #f3f8fb;
- min-height: 100vh;
- }
- .top-wrapper {
- background-color: #fff;
- display: flex;
- width: 750rpx;
- padding: 16rpx 32rpx;
- align-items: center;
- position: sticky;
- top: 0;
- z-index: 999;
- .search-form {
- flex: 1;
- /deep/ .uni-forms-item {
- margin-bottom: 0;
- }
- }
- .search_btn {
- width: 120rpx;
- height: 70rpx;
- line-height: 70rpx;
- padding: 0 24rpx;
- background: $theme-color; // 全局主题色变量
- font-size: 32rpx;
- color: #fff;
- margin: 0;
- margin-left: 26rpx;
- border-radius: 12rpx;
- }
- }
- .wrapper {
- padding-top: 20rpx;
- }
- .add {
- width: 96rpx;
- height: 96rpx;
- border-radius: 48rpx;
- background: #3c9cff;
- position: fixed;
- bottom: 100rpx;
- right: 24rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- box-shadow: 0 4rpx 12rpx rgba(0,0,0,0.2);
- }
|