123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- .button-wrap {
- display: -webkit-flex;
- display: flex;
- -webkit-justify-content: center;
- justify-content: center;
- }
- .button-wrap-shadow {
- box-shadow: -1px 1px 7px 0 rgba(0,0,0,0.13);
- }
- .img-big-wrap {
- width: 100%;
- display: -webkit-flex;
- display: flex;
- background: #FAFAFA;
- }
- .input-language {
- position: absolute;
- right: 50%;
- bottom: 60rpx;
- height: 159rpx;
- width: 230rpx;
- display: flex;
- display: -webkit-flex;
- align-items: center;
- justify-content: center;
- box-sizing: border-box;
- }
- .output-language{
- position: absolute;
- left: 50%;
- bottom: 60rpx;
- height: 159rpx;
- width: 230rpx;
- display: flex;
- display: -webkit-flex;
- align-items: center;
- justify-content: center;
- }
- .normal-record-icon {
- height: 30rpx;
- width: 20rpx;
- }
- .normal-record-text {
- color: #9B9B9B;
- font-size: 24rpx;
- margin: 0 10rpx;
- }
- .press-record-icon {
- height: 32rpx;
- width: 20rpx;
- }
- .press-record-text {
- color: #4A90E2;
- font-size: 32rpx;
- margin: 0 10rpx;
- }
- .record-text {
- color: #9B9B9B;
- font-size:24rpx;
- text-align:center;
- position:absolute;
- left:50%;
- margin-left:-160rpx;
- width:320rpx;
- bottom:229rpx;/*159 + 60 + 10*/
- }
- .keyboard-button {
- height:40rpx;
- width:48rpx;
- position:absolute;
- left:50%;
- margin-left:-302rpx;/*-254 - 48*/
- bottom:120rpx;
- }
- .keyboard-text {
- color: #4A4A4A;
- font-size:32rpx;
- text-align:center;
- position:absolute;
- left:80%;
- margin-left:-135rpx;
- width:320rpx;
- top:175rpx;
- }
- .button-container{
- display: flex;
- display: -webkit-flex;
- height: 100%;
- width: 100%;
- box-sizing: border-box;
- justify-content: space-between;
- -webkit-justify-content: space-between;
- align-items: center;
- -webkit-align-items:center;
- margin: 0 calc( (100% - 240rpx * 2) / 3 );
- margin-bottom: 20px;
- padding: 50rpx 0 38rpx 0;
- }
- .button-item {
- display: flex;
- display: -webkit-flex;
- flex-direction: column;
- -webkit-flex-direction: column;
- justify-content: flex-start;
- -webkit-justify-content: flex-start;
- align-items: center;
- -webkit-align-items: center;
- width: 240rpx;
- box-sizing: border-box;
- }
- .button-label {
- font-size: 30rpx;
- color: #9B9B9B;
- letter-spacing: 0;
- margin: 15rpx 0 0 0;
- }
- .button-press {
- position: relative;
- display: flex;
- display: -webkit-flex;
- height: 100rpx;
- /* width: 240rpx; */
- width: 100%;
- border-radius: 100rpx;
- justify-content: center;
- -webkit-justify-content: center;
- align-items: center;
- -wekbit-align-items:center;
- }
- .button-background {
- position: absolute;
- height: 100rpx;
- width: 100%;
- border-radius: 100rpx;
- left: 0;
- z-index: 1;
- }
- .text-in-button {
- font-weight: bold;
- font-size: 34rpx;
- color: #FFFFFF;
- z-index: 2;
- }
- .text-in-button.text-press {
- opacity: 0.6;
- }
|