123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- /* pages/contest/contest.wxss */
- page {
- background: #fff;
- }
- .page-title {
- position: relative;
- z-index: 1;
- width: 100%;
- font-size: 32rpx;
- font-weight: 400;
- color: #FFFFFF;
- padding-top: 68rpx;
- text-align: center;
- }
- .bg {
- width: 100%;
- position: absolute;
- z-index: 0;
- }
- .form {
- padding-top: 370rpx;
- }
- .form-item {
- position: relative;
- height: 166rpx;
- }
- .form-item-bg {
- width: 100%;
- position: absolute;
- z-index: 0;
- }
- .content {
- height: 166rpx;
- display: flex;
- align-items: center;
- position: relative;
- z-index: 9;
- }
- .form-item-label {
- padding: 0 40rpx 0 80rpx;
- font-size: 32rpx;
- font-weight: 550;
- color: #161616;
- }
- input, .select {
- padding-left: 24rpx;
- width: 500rpx!important;
- height: 106rpx;
- position: relative;
- display: flex;
- align-items: center;
- }
- .picker {
- width: 500rpx;
- height: 106rpx;
- display: flex;
- align-items: center;
- }
- .arrow {
- width: 24rpx;
- position: absolute;
- right: 40rpx;
- z-index: 0;
- }
- .phcolor {
- font-size: 32rpx;
- line-height: 44rpx;
- font-weight: 400;
- color: rgba(22, 22, 22,.18);
- }
- .button {
- display: flex;
- justify-content: center;
- align-items: center;
- position: relative;
- height: 166rpx;
- }
- .button-bg {
- width: 712rpx;
- position: absolute;
- z-index: 0;
- }
- .button-text {
- position: relative;
- z-index: 9;
- color: #FFFFFF;
- font-size: 48rpx;
- line-height: 58rpx;
- }
- .warning {
- display: flex;
- align-items: center;
- height: 55rpx;
- }
- .warning-icon {
- width: 36rpx;
- margin: 0 24rpx 0 98rpx;
- }
- .warning-text {
- font-size: 28rpx;
- font-weight: 400;
- color: #59598D;
- }
|