12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /* student/pages/workDetail.wxss */
- .correct-detail {
- position: relative;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- padding: 0 10px;
- height: 100vh;
- }
- .correct-detail .detail-title {
- display: flex;
- justify-content: space-between;
- width: 95%;
- /* padding: 10px; */
- padding: 10px 15px 0 15px;
- font-size: 14px;
- }
- .correct-detail .detail-title .van-button {
- border-radius: 5px;
- margin-top: 10px;
- }
- .correct-detail .detail-title text {
- width: 80%;
- white-space: normal;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .correct-detail .work-body {
- width: 100%;
- }
- .correct-detail .cell-style {
- border: 1px solid #333;
- }
- .img-content {
- display: flex;
- flex-direction: column;
- align-items: center;
- height: 78%;
- width: 95%;
- background-color: #f8f9fb;
- margin-top: 10px;
- }
- .img-content .img {
- margin-top: 60rpx;
- width: 90%;
- height: 75%;
- }
- .teacher-text {
- width: 90%;
- margin-top: 20px;
- }
- .title-cfg {
- display: flex;
- flex-direction: column;
- width:200px;
- padding-left: 35px;
- padding-top: 10px;
- }
- .title-cfg text:last-child {
- margin-top:10px;
- color: #999;
- }
- .title-cfg:first-child {
- font-size: 16px;
- }
|