123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- /* pages/buyerInformation/index.wxss */
- .container {
- height: 100vh;
- display: flex;
- flex-direction: column;
- background: url('https://oss.dayaedu.com/ktyq/1738907060663.png') top center no-repeat;
- background-color: #D7F2FA;
- background-size: contain;
- }
- .record-list {
- flex: 1;
- padding-bottom: 12rpx;
- overflow-y: scroll;
- box-sizing: border-box;
- }
- .title-img {
- margin-top: -30rpx;
- width: 690rpx;
- margin-left: 30rpx;
- }
- .section {
- margin: 24rpx 22rpx;
- // 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;
- .required {
- font-weight: 600;
- color: #666666;
- text {
- color: #FF5A56;
- }
- }
- .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;
- }
- }
- }
- }
- .btnGroup {
- // box-shadow: inset 0rpx 2rpx 0rpx 0rpx #F0F0F0;
- padding: 22rpx 32rpx 56rpx;
- background-color: #fff;
- button {
- width: 100% !important;
- line-height: 88rpx;
- background: linear-gradient(90deg, #544F4A 0%, #302F2B 100%);
- border-radius: 44rpx;
- padding: 0 !important;
- color: #FBEAC9;
- }
- }
- .van-picker__toolbar,
- .toolbar-top {
- margin: 0 14rpx !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: #1CACF1 !important;
- }
- .toolbar-top {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .searchList {
- .icon-search {
- width: 32rpx;
- height: 32rpx;
- margin: auto 10rpx auto auto;
- }
- .van-search {
- margin: 40rpx 26rpx 26rpx !important;
- padding: 0 !important;
- height: 70rpx !important;
- background: #F6F6F6 !important;
- border-radius: 35rpx !important;
- border: 1rpx solid #FFFFFF !important;
- }
- .van-search__content {
- background: #F6F6F6 !important;
- }
- .van-search__content {
- border-top-left-radius: 35rpx !important;
- border-bottom-left-radius: 35rpx !important;
- }
- .van-cell {
- font-size: 26rpx !important;
- }
- .searchBtn {
- width: 112rpx;
- line-height: 54rpx !important;
- padding: 0 !important;
- text-align: center;
- background-color: #1CACF1;
- font-weight: 500;
- font-size: 28rpx;
- color: #FFFFFF;
- line-height: 40rpx;
- border-radius: 40rpx;
- margin-right: 6rpx;
- }
- }
- .van-picker-column__item--selected {
- font-weight: 600;
- font-size: 32rpx;
- color: #1CACF1 !important;
- }
- .empty-box {
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- padding-bottom: 30rpx;
- box-sizing: border-box;
- height: 220px;
- text-align: center;
- font-size: 32rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #999999;
- position: relative;
- .empty_loading {
- align-items: center;
- background-color: var(--picker-loading-mask-color, hsla(0, 0%, 100%, .9));
- bottom: 0;
- display: flex;
- justify-content: center;
- left: 0;
- position: absolute;
- right: 0;
- top: 0;
- z-index: 4;
- }
- image {
- width: 364rpx;
- height: 190rpx;
- }
- .empty-text {
- font-size: 28rpx;
- color: #AAA;
- line-height: 40rpx;
- text-align: center;
- padding-top: 36rpx;
- }
- }
|