123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
-
- // segmented
- ::v-deep .segmented-control {
- height: auto ;
- // background: #4cb2b6 !important;
- border-radius: 28rpx !important;
- margin: 0px 0px 10rpx 0px;
- }
- ::v-deep .segmented-control__item--button--first{
- border-top-left-radius: 60upx !important;
- border-bottom-left-radius: 60upx !important;
- }
- ::v-deep .segmented-control__item--button--last{
- border-top-right-radius: 60upx !important;
- border-bottom-right-radius: 60upx !important;
- }
- ::v-deep .segmented-control__item--button{
- border-color: #C3D8F9 !important;
- background-color: #C3D8F9 !important;
- height: 60upx;
- border: 2px solid #4cb2b6 !important;
- }
- ::v-deep .segmented-control__item--button--active{
-
- border-radius: 14px !important;
- background-color: #FFFFFF !important;
- }
- ::v-deep .segmented-control__text{
- color: #1E293B !important;
- }
- // 搜索
- ::v-deep .u-search__content {
- border-radius: 14px !important;;
- background-color: rgb(76, 178, 182) !important;
- }
- // list
- ::v-deep .u-list-item{
- background: #fff !important;
- margin:10upx !important;
- padding:20upx !important;
- border-radius: 24rpx !important;
- box-shadow: 0px 0px 3px 0px rgba(86, 165, 168, 0.63) !important;
- }
- ::v-deep .u-list-item .uni-row {
- padding-bottom: 20upx;
- display: flex;
- align-items: center;
- }
- // card
- ::v-deep .uni-card{
- margin:0upx 0upx 20upx 0upx !important;
- box-shadow: rgba(0, 0, 0, 0) 0px 0px 3px 1px !important;
- }
- ::v-deep .uni-card .uni-card__header,::v-deep .uni-card .uni-card__content{
- padding: 20upx 0upx !important;
- }
- // search
- ::v-deep .u-search__content{
- background-color: rgb(255, 255, 255) !important;
- }
- ::v-deep .u-search__content__input{
- background-color: rgb(255, 255, 255) !important;
- }
- // form/
- ::v-deep .u-form-item{
- font-size: 28rpx !important;
- }
- ::v-deep .u-form-item__body__left__content__label{
- font-size: 28rpx !important;
- font-weight: 500 !important;
- }
- ::v-deep .item__body__right__content__icon{
- padding-right: 20rpx !important;
- }
- .scroll-list {
- @include flex(column);
- &__goods-item {
- margin-right: 20px;
- &__image {
- width: 60px;
- height: 60px;
- border-radius: 4px;
- }
- &__text {
- color: #000000;
- text-align: center;
- font-size: 12px;
- margin-top: 5px;
- }
- }
- &__show-more {
- background-color: #fff0f0;
- border-radius: 3px;
- padding: 3px 6px;
- @include flex(column);
- align-items: center;
- &__text {
- font-size: 12px;
- width: 12px;
- color: #000000;
- line-height: 16px;
- }
- }
- &__line {
- @include flex;
- margin-top: 10px;
- &__item {
- margin-right: 15px;
- &__image {
- width: 61px;
- height: 48px;
- }
- &__text {
- margin-top: 5px;
- color: $u-content-color;
- font-size: 12px;
- text-align: center;
- }
- &--no-margin-right {
- margin-right: 0;
- }
- }
- }
- }
- // ===================================================
- // uni-toast .uni-toast{
- // background: rgb(255, 255, 255);
- // color: #4CB2B6;
- // border: 1px solid #E5E0EB;
- // border-left: 5px solid #4CB2B6;
- // display: flex;
- // width: auto;
- // padding: 5px 10px;
- // align-items: center;
- // }
- // uni-toast .uni-toast__icon{
- // margin: 0 28px 0 0px;
- // }
- // uni-toast .uni-icon_toast{
- // margin: 0 28px 0 0px;
- // }
- // uni-toast .uni-toast__content{
- // margin: 0rpx;
- // }
- // uni-toast .uni-icon_toast.uni-icon-success-no-circle::before {
- // color: #4CB2B6;
- // font-size: 30px;
- // }
|