1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /**index.wxss**/
- .flexdstyle{
- position: fixed;
- width: 100%;
- }
- .sg-container {
- background: white;
- }
- .sg-top-box {
- color: white;
- display: flex;
- align-items: center;
- justify-content: space-around;
- padding: 50rpx 15rpx 100rpx 15rpx;
- }
- .sg-top-item {
- display: flex;
- align-items: center;
- flex-direction: column;
- justify-content: center;
- padding: 0 15rpx;
- }
- .sg-top-item .sg-top-name {
- margin-top: 15rpx;
- }
- .sg-right-border {
- border-right: 1px solid white;
- }
- .sg-search-box {
- margin: -50rpx 30rpx 0 30rpx;
- display: flex;
- align-items: center;
- background: white;
- border-radius: 50rpx;
- padding: 15rpx 20rpx;
- }
- .sg-search-icon {
- margin-right: 20rpx;
- }
- .sg-search-box .sg-search-input {
- flex-grow: 1;
- }
- .sg-box .sg-img {
- width: 120rpx;
- }
- .sg-list .sg-item {
- display: flex;
- align-items: center;
- }
- .sg-list .sg-item .sg-right {
- flex-grow: 1;
- margin-left: 30rpx;
- }
- .sg-list .sg-item .sg-bottom,
- .sg-list .sg-item .sg-top {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
|