123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- .index-container {
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- height: 100vh;
- overflow: hidden;
- background-image: url('/static/images/bg.jpg');
- background-position: left top;
- background-repeat: no-repeat;
- background-size: 100% 100%;
- }
- .head-title {
- font-size: 64rpx;
- color: #19244B;
- margin-top: 220rpx;
- font-weight: 700;
- margin-left: 60rpx;
- font-family: 'Source Han Sans CN';
- }
- .head-subtitle {
- line-height: 54rpx;
- font-size: 36rpx;
- color: #6D7395;
- font-weight: 400;
- text-align: left;
- margin: 26rpx 60rpx 0;
- }
- .submit-btn {
- margin: 330rpx 60rpx 0;
- width: calc(100% - 120rpx);
- height: 98rpx;
- border-radius: 16rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- font-weight: 400;
- font-size: 36rpx;
- border: none;
- color: #ffffff;
- background-color: #1D43C7;
- }
- .btn-disabled {
- color: rgba(255, 255, 255, 0.5);
- background-color: #6B84DE;
- }
- .btn-hover {
- opacity: 0.6;
- }
- .watch {
- font-size: 26rpx;
- margin-top: 10px;
- color: #f1f1f1;
- align-self: center;
- margin-top: 20rpx;
- }
- .problem {
- width: 136rpx;
- height: 44rpx;
- margin-bottom: 40rpx;
- align-self: center;
- }
|