123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- /* components/buyerInformation/index.wxss */
- .icon-close {
- position: absolute;
- z-index: 2;
- top: 28rpx;
- left: 20rpx;
- padding: 20rpx;
- width: 36rpx;
- height: 36rpx;
- }
- .container {
- background: linear-gradient(180deg, #FFDEE7 0%, #FFFFFF 12%, #FFFFFF 100%);
- border-radius: 32rpx 32rpx 0rpx 0rpx;
- height: 68vh;
- }
- .pop-address-title {
- position: relative;
- z-index: 1;
- text-align: center;
- padding-top: 40rpx;
- padding-bottom: 36rpx;
- font-weight: 600;
- font-size: 36rpx;
- color: #131415;
- line-height: 50rpx;
- }
- .section {
- margin: 24rpx 0;
- // background: linear-gradient(180deg, #E3F9FF 0%, #FFFFFF 9%, #FFFFFF 100%);
- border-radius: 18rpx;
- border: 8rpx solid #FFFFFF;
- background-color: #fff;
- .section-content {
- background: linear-gradient(180deg, #E3F9FF 0%, #FFFFFF 9%, #FFFFFF 100%);
- border-radius: 12rpx;
- overflow: hidden;
- }
- .section-title {
- width: 236rpx;
- height: 46rpx;
- margin: 20rpx 0 18rpx 28rpx;
- }
-
- .van-cell {
- padding: 28rpx;
- font-size: 30rpx;
- line-height: 42rpx;
- .van-field__label {
- font-weight: 600;
- color: #666666;
- }
- .van-icon-arrow {
- color: #CCCCCC;
- font-weight: 600;
- }
- }
-
- .gender-section {
- display: flex;
- .gender-item {
- margin-left: 24rpx;
- background: rgba(28, 172, 241, 0.11);
- border-radius: 12rpx;
- font-weight: 500;
- font-size: 28rpx;
- color: #1CACF1;
- width: 104rpx;
- line-height: 48rpx;
- text-align: center;
- &.active {
- background: #1CACF1;
- color: #FFFFFF;
- }
- }
- }
- }
- .van-picker-column__item--selected {
- font-weight: 600;
- font-size: 32rpx;
- color: #6D4718 !important;
- }
- .pop-btn-group {
- padding: 100rpx 32rpx 58rpx;
- }
- .submit-btn {
- width: 100% !important;
- margin: 0 !important;
- padding: 0 !important;
- line-height: 88rpx;
- background: linear-gradient(90deg, #544F4A 0%, #302F2B 100%);
- border-radius: 88rpx;
- font-weight: 500;
- font-size: 32rpx;
- color: #FBEAC9;
- }
|