123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /* pages/customermanage/addcustomer.wxss */
- .customer-add {
- border-top: 1rpx solid #eee;
- }
- .customer-add .h1 {
- font-size: 48rpx;
- color: rgba(0, 145, 255, 1);
- margin: 100rpx 0;
- }
- .customer-add .cell {
- height: 100rpx;
- line-height: 100rpx;
- border-bottom: 2rpx solid rgba(224, 225, 227, 0.3);
- padding: 0;
- display: flex;
- align-items: center;
- font-size: 24rpx;
- font-weight: 400;
- color: rgba(66, 70, 86, 1);
- position: relative;
- }
- .customer-add input {
- height: 80rpx;
- width: calc(100% - 140rpx);
- padding: 0;
- font-size: 28rpx;
- }
- .customer-add .cell .code {
- border-left: none;
- position: absolute;
- right: 0;
- font-size: 24rpx;
- font-weight: 400;
- color: rgba(117, 217, 255, 1);
- }
- .customer-add .tips {
- height: 148rpx;
- background: rgba(249, 250, 252, 1);
- border-radius: 16rpx;
- border: 2rpx solid rgba(241, 241, 241, 1);
- padding: 40rpx;
- margin-top: 60rpx;
- }
- .customer-add .tips text {
- display: block;
- font-size: 28rpx;
- color: rgba(104, 107, 120, 1);
- line-height: 40rpx;
- margin-bottom: 10rpx;
- }
- .customer-add .tips .q {
- color: rgba(0, 145, 255, 1);
- }
- .customer-add button {
- margin-top: 140rpx;
- }
- /* 定制弹窗样式 */
- .customer-popup .scc-popup-box view {
- display: flex;
- justify-content: flex-start;
- padding: 0 30px;
- text-align: left;
- }
|