1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- @charset "UTF-8";
- /* 页面左右间距 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /*颜色*/
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 功能栏字体大小 */
- /*功能栏左侧小图标*/
- page {
- background: #F2F2F2;
- height: 100%;
- padding-bottom: 25rpx;
- }
- .container {
- height: 100%;
- }
- .container .top {
- background-color: #FFFFFF;
- height: 88rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- font-size: 36rpx;
- font-weight: 500;
- color: #333333;
- }
- .container .swiper-box {
- height: 100%;
- }
- .container .swiper-box .list-scroll-content {
- height: 100%;
- }
- .scroll-list {
- width: 100%;
- overflow: hidden;
- white-space: nowrap;
- background-color: #ffffff;
- font-size: 32rpx;
- }
- .scroll-list .scoll-box {
- text-align: center;
- display: inline-block;
- margin: 0rpx 38rpx;
- padding: 15rpx 0rpx;
- }
- .scroll-list .scoll-box .scoll-img {
- width: 130rpx;
- height: 85rpx;
- border-radius: 100%;
- }
- .scroll-list .scoll-box .scoll-img image {
- width: 85rpx;
- height: 100%;
- border-radius: 100%;
- }
- .scroll-list .scoll-box .scoll-name {
- padding-top: 15rpx;
- }
- .scroll-list .scoll-box.active {
- color: #ef3d28;
- border-bottom: 6rpx solid #ef3d28;
- }
- .order-item {
- width: 100%;
- padding: 0rpx 25rpx;
- padding-top: 25rpx !important;
- }
- .order-item .list-cell {
- background-color: #ffffff;
- border-radius: 20rpx;
- width: 100%;
- box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06);
- }
- .order-item .list-cell .image {
- width: 100%;
- height: 300rpx;
- border-top-left-radius: 25rpx;
- border-top-right-radius: 25rpx;
- }
- .order-item .list-cell .list-tpl {
- padding: 25rpx 25rpx;
- padding-bottom: 35rpx !important;
- font-size: 34rpx;
- color: #222222;
- font-weight: 500;
- }
|