12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- .Container {
- opacity: 0;
- z-index: -9999;
- display: flex;
- flex-direction: column;
- width: 100%;
- height: 100%;
- position: fixed;
- left: 0;
- top: 0;
- }
- .Container-show {
- position: fixed;
- left: 0;
- top: 0;
- background: #000;
- display: flex;
- width: 100%;
- height: 100%;
- flex-direction: column;
- opacity: 1;
- z-index: 999;
- }
- .imgContainer {
- height: 100%;
- width: 100%;
- position: relative;
- }
- .settingContainer {
- background: #000;
- padding: 40rpx 0;
- z-index: 10000;
- }
- .rotateContainer {
- display: flex;
- flex-direction: row;
- align-items: center;
- padding: 0px 40rpx;
- margin-bottom: 190rpx;
- }
- .btnContainer {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- padding: 40rpx;
- }
- .imgCanvas {
- position: absolute;
- top: -9999px;
- width: 600rpx;
- height: 600rpx;
- }
|