123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- /* pages/contest/answer/answer.wxss */
- page {
- background: #fff;
- }
- .bg {
- width: 100%;
- position: absolute;
- z-index: 0;
- background: transparent;
- }
- .top{
- position: relative;
- z-index: 9;
- padding-top: 176rpx;
- width: 100%;
- }
- .top-title {
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- font-weight: 400;
- color: #FFFFFF;
- font-size: 32rpx;
- }
- .top-title .time {
- height: 66rpx;
- background: rgba(60, 70, 209,.5);
- padding: 0 10rpx;
- border-radius: 10rpx;
- margin: 10rpx;
- font-weight: 500;
- color: #FFFFFF;
- font-size: 48rpx;
- }
- .top-nav {
- margin-top: 15rpx;
- display: flex;
- font-weight: 400;
- justify-content: center;
- color: rgba(255, 255, 255,.7);
- align-items: center;
- font-size: 24rpx;
- }
- .top-nav > view {
- margin: 0 10rpx;
- }
- .top-nav .active {
- margin: 0!important;
- font-size: 28rpx;
- font-weight: 500;
- color: #59598D;
- background-repeat:no-repeat;
- background-size:100% 100%;
- -moz-background-size:100% 100%;
- height: 92rpx;
- width: 188rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .content {
- position: relative;
- z-index: 9;
- width: 100%;
- }
- .content-title {
- margin-top: 70rpx;
- width: 100%;
- font-size: 40rpx;
- font-weight: 500;
- color: #59598D;
- text-align: center;
- }
- .problem {
- display: flex;
- align-items: center;
- margin-top: 42rpx;
- }
- .problem-num {
- position: relative;
- width: 40rpx;
- margin: 0 24rpx 0 48rpx;
- }
- .problem-icon {
- width: 40rpx;
- position: absolute;
- z-index: 1;
- }
- .problem-index {
- width: 40rpx;
- font-size: 28rpx;
- font-weight: 600;
- color: #FFFFFF;
- position: relative;
- z-index: 9;
- line-height: 42rpx;
- text-align: center;
- }
- .problem-text {
- font-size: 28rpx;
- font-weight: 500;
- color: #59598D;
- }
- .problem-key-list {
- margin-top: 24rpx;
- }
- .problem-key-list > view{
- width: 516rpx;
- height: 68rpx;
- background: #FFFFFF;
- border-radius: 34rpx;
- border: 2rpx solid #EFEFFF;
- margin: 0 146rpx 20rpx 88rpx;
- font-size: 28rpx;
- font-weight: 400;
- color: #353333;
- line-height: 68rpx;
- padding: 0 38rpx;
- }
- .problem-key-list .active {
- background: #5679F0;
- color: rgb(241, 241, 241);
- }
- .arrow-group {
- display: flex;
- justify-content: center;
- padding-bottom: 34rpx;
- margin-top: 30rpx;
- }
- .arrow-group > image {
- width: 160rpx;
- margin: 0 18rpx;
- }
|