/* pages/speechToText/index.wxss */
|
|
.submitButton {
|
position: fixed;
|
bottom: 0;
|
left: 0;
|
right: 0;
|
display: flex;
|
padding: 32rpx var(--padding-my);
|
background-color: #fff;
|
z-index: 99;
|
}
|
|
.speechToText-main {
|
position: relative;
|
}
|
|
.cell-item {
|
padding: 24rpx 32rpx 24rpx 12rpx;
|
background-color: #fff;
|
}
|
|
.cell-title {
|
margin-bottom: 8rpx;
|
display: flex;
|
justify-content: space-between;
|
}
|
|
.cell-required {
|
color: #d1021c;
|
font-size: 30rpx;
|
}
|
|
.textarea-foot {
|
display: flex;
|
justify-content: space-between;
|
background-color: #fff;
|
align-items: center;
|
padding-left: 32rpx;
|
/* margin-bottom: 96rpx; */
|
}
|
|
.textarea-limit {
|
font-size: 28rpx;
|
line-height: 44rpx;
|
color: rgba(23, 26, 29, 0.40);
|
}
|
|
.textarea-ability {
|
display: flex;
|
align-items: center;
|
background-color: rgba(182, 221, 241, 0.46);
|
padding: 16rpx;
|
border-radius: 20px 0px 0px 0px;
|
color: var(--main-color);
|
font-weight: 400;
|
}
|
|
.textarea-img {
|
display: flex;
|
align-items: center;
|
gap: 8rpx;
|
}
|
|
.textarea-img image {
|
width: 28rpx;
|
height: 28rpx;
|
}
|
|
.card {
|
display: flex;
|
flex-direction: column;
|
}
|
|
|
.modal-card {
|
position: absolute;
|
width: 200px;
|
height: 140px;
|
background: rgba(95, 166, 212, 0.80);
|
color: #fff;
|
border-radius: 4px;
|
top: 40%;
|
left: 23%;
|
text-align: center;
|
}
|
|
.modal-img {
|
width: 144px;
|
height: 120px;
|
}
|
|
.modal-title {}
|
|
.time-box {
|
position: relative;
|
height: 120rpx;
|
left: 50%;
|
margin-left: -86rpx;
|
}
|
|
.time-box-top {
|
position: absolute;
|
bottom: 50%;
|
}
|
|
.time-box-bottom {
|
position: absolute;
|
top: 50%;
|
transform: rotateX(180deg);
|
}
|
|
.hr {
|
background-color: red;
|
width: 10rpx;
|
height: 10rpx;
|
bottom: 0;
|
position: absolute;
|
background: #ffffff;
|
animation: bodong 0.5s infinite ease;
|
border-top-left-radius: 5rpx;
|
border-top-right-radius: 5rpx;
|
}
|
|
.hr1 {
|
left: 0;
|
animation-delay: 1s;
|
animation-duration: 1s;
|
}
|
|
.hr2 {
|
left: 18rpx;
|
animation-delay: 0.9s;
|
animation-duration: 0.9s;
|
}
|
|
.hr3 {
|
left: 36rpx;
|
animation-delay: 0.8s;
|
animation-duration: 0.8s;
|
}
|
|
.hr4 {
|
left: 54rpx;
|
animation-delay: 0.7s;
|
animation-duration: 0.7s;
|
}
|
|
.hr5 {
|
left: 72rpx;
|
animation-delay: 0.6s;
|
animation-duration: 0.6s;
|
}
|
|
.hr6 {
|
left: 90rpx;
|
animation-delay: 0.5s;
|
animation-duration: 0.5s;
|
}
|
|
.hr7 {
|
left: 108rpx;
|
animation-delay: 0.7s;
|
animation-duration: 0.7s;
|
}
|
|
.hr8 {
|
left: 126rpx;
|
animation-delay: 0.6s;
|
animation-duration: 0.6s;
|
}
|
|
.hr9 {
|
left: 144rpx;
|
animation-delay: 0.8s;
|
animation-duration: 0.8s;
|
}
|
|
.hr10 {
|
left: 162rpx;
|
animation-delay: 1s;
|
animation-duration: 1s;
|
}
|
|
@keyframes bodong {
|
0% {
|
height: 10rpx;
|
}
|
|
20% {
|
height: 20rpx;
|
}
|
|
30% {
|
height: 30rpx;
|
}
|
|
60% {
|
height: 60rpx;
|
}
|
|
80% {
|
height: 30rpx;
|
}
|
|
100% {
|
height: 10rpx;
|
}
|
}
|
|
.recording {
|
position: absolute;
|
width: 350rpx;
|
padding: 48rpx 0;
|
top: 2%;
|
left: 50%;
|
margin-left: -175rpx;
|
text-align: center;
|
color: #ffffff;
|
font-size: 28rpx;
|
}
|
|
.cell-phone .van-button {
|
color: var(--main-color);
|
border: none !important;
|
padding: 0 !important;
|
}
|