| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- /* subpages/textStep/textStep.wxss */
- page {
- background: linear-gradient(180deg, #D6E8FE 0%, #FFFFFF 100%);
- }
- .nav-bar {
- --nav-bar-icon-color: black !important;
- width: 100vw;
- background-color: transparent !important;
- background: transparent !important;
- position: sticky;
- top: 0;
- left: 0;
- }
- .w-card {
- display: flex;
- flex-direction: column;
- margin-top: 20rpx;
- margin-left: auto;
- margin-right: auto;
- width: 710rpx;
- padding-bottom: 30rpx;
- box-shadow: 0rpx 8rpx 20rpx 0rpx #D3E0F4;
- border-radius: 24rpx;
- background: linear-gradient(90deg, #F8FBFF 4%, #FFFFFF 100%);
- }
- .card-tag {
- width: fit-content;
- padding: 12rpx 26rpx;
- background: linear-gradient(90deg, #1E8BFF 80%, #53A9FF 100%);
- font-weight: 400;
- font-size: 28rpx;
- color: #FFFFFF;
- border-radius: 24rpx 0rpx 24rpx 0rpx;
- }
- .title-view {
- margin: 20rpx auto;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- }
- .title-view image {
- display: block;
- width: 38rpx;
- height: 22rpx;
- }
- .title-view text {
- margin: 0 20rpx;
- font-size: 48rpx;
- color: #1E8BFF;
- font-weight: 600;
- }
- .desc {
- padding: 16rpx 32rpx;
- width: fit-content;
- display: block;
- margin: 0 auto;
- background: #F7F8FD;
- border-radius: 12rpx;
- font-weight: 400;
- font-size: 24rpx;
- color: #5C748D;
- }
- .base-title-view {
- margin-left: auto;
- margin-right: auto;
- margin-top: 30rpx;
- width: calc(100% - 20rpx);
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .base-title-line {
- width: 6rpx;
- margin-right: 16rpx;
- margin-left: 20rpx;
- height: 28rpx;
- background: #1E8BFF;
- border-radius: 4rpx;
- }
- .base-title {
- flex: 1;
- font-weight: 400;
- font-size: 32rpx;
- color: #333333;
- font-weight: 600;
- }
- .resultAnalysis {
- font-size: 28rpx;
- color: #666666;
- margin: 30rpx 30rpx 30rpx;
- }
- .ad-box {
- margin: 20rpx auto;
- width: 710rpx;
- height: 104rpx;
- position: relative;
- }
- .ad-box image {
- display: block;
- width: 710rpx;
- height: 108rpx;
- border-radius: 24rpx 24rpx 24rpx 24rpx;
- box-shadow: 0rpx 8rpx 20rpx 0rpx #E2ECFA;
- }
- .ad-box button {
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- width: 100%;
- height: 100%;
- padding: 0;
- opacity: 0;
- margin: 0;
- }
- .bottom-btn-view {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- width: 100%;
- height: 180rpx;
- background: #FFFFFF;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
- }
- .res-test-btn-view {
- margin-top: 16rpx;
- width: 690rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- }
- .restart-test-btn {
- width: 336rpx;
- height: 84rpx;
- background: linear-gradient(135deg, #53A9FF 0%, #1E8BFF 100%);
- border-radius: 84rpx;
- text-align: center;
- line-height: 84rpx;
- font-size: 32rpx;
- color: #FFFFFF;
- font-weight: bold;
- }
- .restart-test-btn:active {
- opacity: 0.7;
- }
- .view-res-btn {
- width: 336rpx;
- height: 84rpx;
- background: #EFF7FF;
- text-align: center;
- border-radius: 84rpx;
- line-height: 84rpx;
- font-size: 32rpx;
- color: #1E8BFF;
- font-weight: bold;
- }
- .view-res-btn:active {
- opacity: 0.7;
- }
|