123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- @import "../../../common/common.scss";
- .usr-regist-info-container {
- .apply-item {
- background-color: #fefefe;
- border-radius: 10rpx;
- width: 100%;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- margin-bottom: 20rpx;
- box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2), -5px -5px 10px rgba(0, 0, 0, 0.1);
- box-sizing: border-box;
- padding: 20rpx;
- position: relative;
- > view {
- width: 100%;
- &:not(:last-child){
- margin-bottom: 20rpx;
- }
- }
- .apply-item-header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- color: #212121;
- font-weight: bolder;
- }
- .apply-item-footer {
- display: flex;
- align-items: center;
- justify-content: space-between;
- color: #636363;
- font-size: 12px;
- }
- }
- }
- page{
- background-color: #767a8212;
- }
|