12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /* pages/subject/subject.wxss */
- .top{
- padding: 12px;
- }
- .top text{
- width:60px;
- height:28px;
- border-radius:16px;
- border:1px solid rgba(153,153,153,1);
- text-align: center;
- line-height: 28px;
- float: right;
- position: relative;
- top: -3px;
- }
- .count{
- position: absolute;
- top: 55px;
- right: 12px;
- color: #358BFF;
- text-align: right;
- }
- .content{
- padding: 0 12px;
- transition: all .3s linear;
- }
- .num{
- margin: 12px 0;
- }
- .num image{
- width: 38px;
- position: relative;
- top: 2px;
- }
- .ques{
- margin-bottom: 120rpx;
- }
- .ans view{
- margin-bottom: 24px;
- padding-left: 10px;
- }
- .btn{
- position: fixed;
- width: 100%;
- left: 0;
- z-index: 9;
- bottom: 80rpx;
- display: flex;
- justify-content: space-between;
- padding: 0 24px;
- }
- .btn text{
- width:100px;
- height:40px;
- background:rgba(212,230,255,1);
- border-radius:31px;
- display: block;
- text-align: center;
- line-height: 40px;
- }
- .btn .hide{
- visibility: hidden;
- }
|