1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /* components/popup-textarea/popup-textarea.wxss */
- .scc-popup {
- position: fixed;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.5);
- z-index: 999;
- }
- .scc-popup-container {
- position: absolute;
- left: 50%;
- top: 50%;
- width: 520rpx;
- border-radius: 8rpx;
- box-sizing: bordre-box;
- transform: translate(-50%, -50%);
- background: #fff;
- }
- .scc-popup-box {
- margin-top: 20rpx;
- padding: 0 20rpx;
- }
- .scc-popup-box view {
- padding: 20rpx 0;
- }
- .scc-popup-box textarea {
- width: calc(100% - 44rpx);
- height: 212rpx;
- border-radius: 8rpx;
- border: 2rpx solid rgba(238, 238, 238, 1);
- padding: 20rpx;
- }
- .scc-popup-btn {
- display: flex;
- justify-content: space-around;
- width: 100%;
- border-radius: 0 0 8rpx 8rpx;
- overflow: hidden;
- margin-top: 20rpx;
- }
- .scc-popup-btn text {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 50%;
- height: 80rpx;
- border-top: 1rpx solid #eee;
- font-size: 28rpx;
- font-family: PingFangSC;
- font-weight: 300;
- line-height: 40px;
- }
- .scc-popup-btn .scc-btn-confirm {
- color: #0091ff;
- border-left: 1rpx solid #eee;
- }
|