1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /* teacher/pages/workDetail/workDetail.wxss */
- .work-detail {
- height: calc(100vh - 50px);
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
- padding: 20rpx;
- }
- .work-header {
- display: flex;
- width: 100%;
- justify-content: flex-start;
- flex-direction: column;
- padding-left: 120rpx;
- margin-bottom: 5px;
- }
- .work-header text {
- font-size: 14px;
- margin-bottom: 5px;
- color: #999;
- letter-spacing: 1px;
- display: inline-block;
- width: 80%;
- }
- .work-header text:nth-child(1) {
- font-size: 16px;
- color: #333;
- }
- canvas {
- width: 100%;
- height: 100%;
- }
- .work-body {
- width: 600rpx;
- height: 850rpx;
- margin: 20rpx 30rpx;
- }
- .work-body {
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
- }
- .work-body van-image {
- width: 100rpx;
- height: 100rpx;
- }
- .over {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .over canvas {
- background: #fafafa;
- margin-bottom: 20rpx;
- }
- .over van-button {
- width: 40%;
- }
- .over van-button button {
- width: 100%;
- }
- .over .btn-attr {
- width: 80%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
|