123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- /* pages/address/address-detail.wxss */
- .container {
- position: relative;
- height: 100vh;
- display: flex;
- flex-direction: column;
- background: #F4F4F4;
- &::before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- height: 254rpx;
- background: linear-gradient(180deg, #FDEC00 0%, #FAD400 100%);
- }
- }
- .pop-btn-list {
- padding: 12rpx 32rpx 50rpx;
- box-shadow: inset 0rpx 2rpx 0rpx 0rpx #F0F0F0;
- background-color: #fff;
- .submit-btn {
- width: 100% !important;
- margin: 0 !important;
- padding: 0 !important;
- background: linear-gradient(90deg, #544F4A 0%, #302F2B 100%);
- box-shadow: 0rpx 14rpx 14rpx 0rpx rgba(0, 0, 0, 0.18);
- border-radius: 36rpx !important;
- border: 8rpx solid #FFFFFF;
- color: #FEFFCA;
- font-size: 36rpx;
- font-weight: 600;
- line-height: 94rpx;
- }
- }
- .van-picker__toolbar,
- .toolbar-top {
- margin: 0 40rpx !important;
- padding: 0 14rpx !important;
- border-bottom: 2rpx solid #F2F2F2;
- height: auto !important;
- line-height: normal !important;
- }
- .van-picker__cancel,
- .van-picker__confirm,
- .toolbar-cancel,
- toolbar-confirm {
- font-size: 32rpx !important;
- padding: 28rpx 0 !important;
- color: #777777 !important;
- }
- .van-picker__confirm,
- .toolbar-confirm {
- color: #FE4600 !important;
- }
- .toolbar-top {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .addressContainer {
- // background: linear-gradient(180deg, #FFDEE7 0%, #FFFFFF 12%, #FFFFFF 100%);
- // border-radius: 32rpx 32rpx 0rpx 0rpx;
- // height: 928rpx;
- display: flex;
- flex-direction: column;
- // .icon-close {
- // position: absolute;
- // z-index: 2;
- // top: 24rpx;
- // right: 12rpx;
- // padding: 20rpx;
- // width: 30rpx;
- // height: 30rpx;
- // }
- .pop-address-title {
- position: relative;
- z-index: 1;
- text-align: center;
- padding-top: 36rpx;
- padding-bottom: 20rpx;
- font-weight: 600;
- font-size: 36rpx;
- color: #131415;
- line-height: 50rpx;
- }
- .section {
- flex: 1 auto;
- padding: 24rpx 26rpx 0;
- }
- .van-cell-group {
- background: #FFFFFF;
- border-radius: 20rpx;
- overflow: hidden;
- .van-cell {
- padding: 24rpx;
- font-size: 30rpx;
- }
- .required {
- font-weight: 400;
- color: #666666;
- text {
- color: #FF5A56;
- }
- }
- .van-field__label {
- color: #666666;
- }
- .van-icon-arrow {
- color: #BFBFBF;
- }
- .textarea {
- height: 72rpx;
- }
- }
- .van-picker-column__item--selected {
- font-weight: 600;
- font-size: 32rpx;
- color: #FE4600 !important;
- }
- .pop-btn-group {
- padding: 12rpx 32rpx 50rpx 32rpx;
- // box-shadow: inset 0rpx 2rpx 0rpx 0rpx #F0F0F0;
- background-color: #fff;
- button[disabled] {
- color: #FEFFCA !important;
- }
- }
- .submit-btn {
- width: 100% !important;
- margin: 0 !important;
- padding: 0 !important;
- line-height: 94rpx;
- background: linear-gradient(90deg, #544F4A 0%, #302F2B 100%);
- box-shadow: 0rpx 14rpx 14rpx 0rpx rgba(0, 0, 0, 0.18);
- border-radius: 36rpx;
- border: 8rpx solid #FFFFFF;
- font-weight: 600;
- font-size: 36rpx;
- color: #FEFFCA;
- }
- }
|