| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /* pages/index/showBoxDetail/showBoxDetail.wxss */
- @import '../statusInfo/statusInfoTemplate.wxss';
- @import '../baseInfo/baseInfoTemplate.wxss';
- @import '../datagramInfo/datagramInfoTemplate.wxss';
- .showBoxDetailContainer {
- width: 100%;
- height: 100%;
- position: fixed;
- display: flex;
- flex-direction: column;
- justify-content: start;
- background-color: white;
- }
- .tab-content{
- width: 90%;
- margin:0 auto;
- height: 100vh;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- }
- .sv{
- height: 1px;
- flex: 1;
- }
- .showBoxDetailContainer .imageBox{
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .label-1, .label-2{
- margin: 30rpx 0;
- }
- .label-3-text{
- color: #576B95;
- font-size: 34rpx;
- }
- .checkbox-3{
- display: block;
- margin: 30rpx 0;
- }
- .publish_button {
- height:80rpx;
- width: 200rpx;
- background-color: wheat;
- border-top-left-radius: 40rpx;
- border-bottom-left-radius: 40rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .publish_button image{
- height: 60rpx;
- width: 60rpx;
- margin-left: 40rpx;
- }
- .publish_button_box{
- height:80rpx;
- width: 200rpx;
- position: absolute;
- right: 0rpx;
- bottom: 40rpx;
- }
- .pulish_button_show{
- animation: move_show 1s 1;
- animation-fill-mode:forwards;
- }
- .pulish_button_hide{
- animation: move_hide 1s 1;
- animation-fill-mode:forwards;
- }
- @keyframes move_show{
- from {right:-200rpx;}
- to {right:0rpx;}
- }
- @keyframes move_hide{
- from {right:0rpx;}
- to {right:-200rpx;}
- }
|