123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /* student/pages/workDetail.wxss */
- .work-detail {
- position: relative;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- padding: 0 10px;
- height: 100vh;
- }
- .work-detail .detail-title {
- display: flex;
- justify-content: space-between;
- width: 90%;
- padding: 10px;
- padding-left: 15px;
- padding-right: 15px;
- font-size: 14px;
- }
- .work-detail .detail-title .van-button {
- border-radius: 5px;
- }
- .work-detail .detail-title text {
- display: inline-block;
- width: 70%;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .work-detail .work-body {
- width: 100%;
- }
- .work-detail .cell-style {
- border: 1px solid #333;
- }
- .work-detail .toWorkEdit {
- position: absolute;
- bottom: 30px;
- width: 70%;
- border-radius: 10px;
- }
- .wrapper {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 100%;
- }
- .content {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- width: 260px;
- padding: 30px 25px;
- background-color: #fff;
- border-radius: 20px;
- position: relative;
- }
- .content text {
- margin-bottom: 20px;
- }
- .content .body {
- max-height: 240px;
- }
- .content .close {
- position: absolute;
- top: 15px;
- right: 20px;
- }
- /* .work-body {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- } */
- .pull-work {
- /* display: flex; */
- margin-top: 20px;
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
- padding: 0 20px;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- width: 90%;
- }
- .pull-work text {
- display: inline-block;
- width: 80%;
- height: 40px;
- line-height: 41px;
- }
|