1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /* pages/myWork/myWork.wxss */
- .myWork{
- padding: 0 25rpx;
- /* height: 100vh; */
- }
- .head{
- background-color: var(--themeColor);
- text-align: center;
- line-height: 80rpx;
- color: #ffffff;
- font-weight: bolder;
- border-radius: 10rpx;
- }
- .main{
- flex: 1;
- overflow-y: hidden;
- /* height: calc(100vh - 300rpx); */
- box-sizing: border-box;
- }
- .head_left{
- color: var(--themeColor);
- font-weight: bold;
- }
- .content_item{
- margin: 5px 0;
- color: var(--themeColor);
- }
- .card_body{
- position: relative;
- }
- .price{
- position: absolute;
- bottom: 0px;
- right: 10px;
- color: red;
- }
- .img_item{
- width: 100px;
- height: 100px;
- }
- .workData{
- border-radius: 10px;
- border: 1px solid var(--themeColor);
- padding: 0 10px;
- margin: 5px 0;
- color: var(--themeColor);
- }
- .workData_head{
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 10px 0;
- }
- .workData_head_left{
- display: flex;
- align-items: center;
- font-weight: bold;
- font-size: 16px;
- }
- .workData_head_right{
- font-size: 14px;
- color: #767676;
- }
- .workData_content{
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 0 10px 0;
- font-size: 14px;
- }
- .workData_foot{
- display: flex;
- flex-direction: row-reverse;
- padding: 0 0 10px 0;
- }
- .btns{
- display: flex;
- align-items: center;
- }
- .btn_item{
- margin-left: 10px;
- }
|