12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- .modal {
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- bottom: 0;
- width: 100%;
- height: 100%;
- z-index: 999;
- /*display: flex;
- justify-content: center;
- align-items: center;*/
- }
- .modal-record .modal-body {
- width: 480rpx;
- height: 440rpx;
- background-color: #fff;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- border-radius: 3px;
- box-shadow: 0 0 32rpx rgba(0, 0, 0, 0.15);
- position: fixed;
- bottom: 480rpx;
- left: 50%;
- margin-left: -240rpx;
- }
- .modal-record .desc {
- color: rgb(112, 126, 137);
- font-size: 13px;
- margin-bottom: 40rpx;
- display: block;
- height: 30rpx;
- width: 100%;
- text-align: center;
- }
- .modal-record .dot {
- width: 128rpx;
- height: 128rpx;
- border-radius: 50%;
- background-color: #0873DE;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .dot image {
- width: 44rpx;
- height: 64rpx;
- }
- .sound-waves {
- width: 100%;
- box-sizing: border-box;
- padding-left:10%;
- margin-top: 80rpx;
- height: 80rpx;
- text-align: center;
- }
-
- .sound-waves view {
- transition: all 0.5s;
- width: 1%;
- margin-left: 1.5%;
- margin-right: 1.5%;
- height: 160rpx;
- background-color: #aaa;
- float: left;
- }
|