123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- /* nova-werun/pages/my/my-profile/index.wxss */
- .popup {
- height: 70vh;
- overflow-y: auto;
- }
- .popup .topTitle {
- position: fixed;
- left: 0rpx;
- z-index: 9;
- }
- .popup .topBox {
- border-radius: 40rpx 40rpx 0 0;
- background: white;
- width: 100vw;
- padding: 20rpx;
- border-bottom: 1rpx solid #cecece;
- text-align: center;
- font-weight: bold;
- }
- .popup .registerStartDate {
- padding: 20rpx;
- display: flex;
- align-items: center;
- }
- .popup .registerStartDate .title {
- width: 220rpx;
- font-size: 28rpx;
- }
- .popup .registerStartDate .title text {
- color: red;
- }
- .popup .registerStartDate .date {
- font-size: 28rpx;
- font-weight: bold;
- }
- .popup .registerStartTime {
- padding: 20rpx;
- }
- .popup .registerStartTime .title {
- width: 220rpx;
- font-size: 28rpx;
- }
- .popup .registerStartTime .title text {
- color: red;
- }
- .popup .registerStartTime .box {
- display: flex;
- margin: 20rpx;
- align-items: center;
- justify-content: space-between;
- padding: 20rpx;
- box-shadow: 1rpx 1rpx 10rpx #cccccc;
- border-radius: 20rpx;
- }
- .popup .registerStartTime .box .time .from {
- margin: 10rpx 0;
- font-size: 35rpx;
- font-weight: bold;
- }
- .popup .registerStartTime .box .time .from van-icon {
- font-size: 35rpx;
- }
- .popup .registerStartTime .box .time .to {
- font-size: 28rpx;
- }
- .popup .registerStartTime .box .time .to van-icon {
- font-size: 35rpx;
- }
- .popup .registerStartTime .box .btn {
- font-size: 30rpx;
- background: #4F9AF7;
- padding: 10rpx 20rpx;
- border-radius: 100rpx;
- color: white;
- }
- .popup .btn_btm {
- width: 100vw;
- background: white;
- position: fixed;
- bottom: 0rpx;
- z-index: 9;
- }
- .popup .btn_btm button {
- color: white;
- font-size: 30rpx;
- }
- .popup .revise {
- float: right;
- background: #4F9AF7;
- margin: 20rpx;
- }
- .submitbox {
- width: 100%;
- height: 80rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: 40rpx;
- }
- .submitbox .submit {
- width: 200rpx;
- height: 80rpx;
- font-size: 30rpx;
- color: white;
- background-color: #4F9AF7;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 40rpx;
- }
- .company {
- margin: 20rpx;
- }
- .company .name {
- font-size: 26rpx;
- margin: 20rpx 40rpx;
- padding: 20rpx;
- border-bottom: 1rpx solid #f3f3f3;
- }
|