123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- page {
- min-height: 100%;
- background-color: #f8f8f8;
- }
- .container {
- min-height: 100%;
- /* align-items: stretch; */
- background: #f8f8f8;
- overflow-x: hidden;
- padding: 30rpx;
- }
- .edit-container {
- background: #fff;
- width: 100%;
- margin-bottom: 30rpx;
- border-radius: 10rpx;
- box-shadow: 2rpx 8rpx 18rpx #f1f1f1;
- }
- .a-item {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- padding-left: 30rpx;
- }
- .a-item .icon {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- margin-right: 20rpx;
- }
- .a-item .icon .img {
- width: 36rpx;
- height: 36rpx;
- }
- .a-item .input-wrap {
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- padding: 30rpx 30rpx 30rpx 0;
- border-bottom: 1rpx solid #f1f1f1;
- }
- .a-item:last-child .input-wrap {
- border-bottom: none;
- }
- .a-item .input-wrap .a-input {
- font-size: 28rpx;
- width: 100%;
- }
- .a-item .input-wrap .arrow {
- width: 10rpx;
- height: 10rpx;
- border-top: 4rpx solid #aaa;
- border-right: 4rpx solid #aaa;
- transform: rotate(45deg);
- }
- .a-input {
- font-size: 28rpx;
- width: 100%;
- }
- .confirm-box {
- width: 100%;
- height: 100rpx;
- position: fixed;
- bottom: 0;
- left: 0;
- /* border-top:1px solid #eee; */
- background: linear-gradient(to right, #ff116a, #fe5b46);
- text-align: center;
- line-height: 100rpx;
- color: #fff;
- font-size: 32rpx;
- }
- .default-input {
- font-size: 28rpx;
- color: #233445;
- line-height: 60rpx;
- margin: 0 auto;
- width: 300rpx;
- }
- .region-select {
- width: 100%;
- height: 600rpx;
- background: #fff;
- position: fixed;
- z-index: 1000;
- left: 0;
- bottom: 0;
- }
- .region-select .hd {
- height: 108rpx;
- width: 100%;
- border-bottom: 1px solid #f4f4f4;
- padding: 46rpx 30rpx 0 30rpx;
- box-sizing: border-box;
- }
- .region-select .region-selected {
- float: left;
- height: 60rpx;
- display: flex;
- }
- .region-select .region-selected .item {
- max-width: 140rpx;
- margin-right: 30rpx;
- text-align: left;
- line-height: 60rpx;
- height: 100%;
- color: #333;
- font-size: 28rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .region-select .region-selected .item.disabled {
- color: #999;
- }
- .region-select .region-selected .item.selected {
- color: #ff3456;
- }
- .region-select .done {
- float: right;
- height: 60rpx;
- width: 60rpx;
- border: none;
- background: #fff;
- line-height: 60rpx;
- text-align: center;
- color: #ff3456;
- font-size: 28rpx;
- }
- .region-select .done.disabled {
- color: #999;
- }
- .region-select .bd {
- height: 492rpx;
- width: 100%;
- padding: 0 30rpx;
- }
- .region-select .region-list {
- height: 492rpx;
- }
- .region-select .region-list .item {
- width: 100%;
- height: 104rpx;
- line-height: 104rpx;
- text-align: left;
- color: #333;
- font-size: 28rpx;
- }
- .region-select .region-list .item.selected {
- color: #ff3456;
- }
- .bg-mask {
- height: 100%;
- width: 100%;
- background: rgba(0, 0, 0, 0.4);
- position: fixed;
- top: 0;
- left: 0;
- z-index: 8;
- }
- .default-wrap{
- background: #fff;
- width: 100%;
- margin-bottom: 30rpx;
- border-radius: 10rpx;
- box-shadow: 2rpx 8rpx 18rpx #f1f1f1;
- padding: 30rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- box-sizing: border-box;
- }
- .default-wrap .text{
- font-size: 28rpx;
- }
- .btn-wrap {
- width: 100%;
- padding: 24rpx 0;
- /* position: fixed;
- bottom: 0;
- left: 0; */
- box-sizing: border-box;
- }
- .btn-wrap .btn {
- font-size: 28rpx;
- height: 100rpx;
- line-height: 100rpx;
- text-align: center;
- border-radius: 10rpx;
- width: 100%;
- color: #fff;
- background: #bbb;
- box-shadow: 0rpx 10rpx 20rpx #ccc;
- }
- .btn-wrap .btn.active {
- background: linear-gradient(to right, #3472ff, #3498ff);
- box-shadow: 0rpx 10rpx 20rpx #f1f1f1;
- color: #fff;
- }
- .delete-wrap {
- width: 100%;
- padding: 24rpx;
- /* position: fixed;
- bottom: 0;
- left: 0; */
- box-sizing: border-box;
- }
- .delete-wrap .btn {
- font-size: 28rpx;
- color: #5d6777;
- text-align: center;
- }
|