广州矛调粤政易端
xusd
7 days ago d27794814b69d18aeb8ee96a46cae91d5613570c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
.voice-recognition-container {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 56px);
  background-color: #f8f8f8;
  
  /* 输入区域样式 */
  .input-area {
    width: 100%;
    height: 640px;
    background-color: #ffffff;
    padding: 16px;
    box-sizing: border-box;
    
    .form-item {
      display: flex;
      flex-direction: column;
      height: 100%;
      
      .form-label {
        font-size: 15px;
        font-weight: 400;
        color: #171a1d;
        margin-bottom: 12px;
        line-height: 23px;
      }
      
      .textarea-container {
        flex: 1;
        position: relative;
        
        .recognition-textarea {
          width: 100%;
          height: 100%;
          border: none;
          padding: 0;
          
          .dtm-textarea-item-control {
            height: calc(100% - 24px);
            font-size: 15px;
            line-height: 1.5;
            color: #171a1d;
          }
          
          .dtm-textarea-item-desktop {
            padding: 0;
            border: none;
          }
          
          .dtm-textarea-item-count {
            display: none;
          }
        }
      }
      
      .word-count {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        font-size: 12px;
        color: #86909c;
        margin-top: 8px;
        
        .count-wrapper {
          display: flex;
          align-items: center;
        }
        
        .current-count {
          color: #1a6fb8;
          font-weight: 500;
        }
        
        .total-count {
          margin-left: 2px;
        }
      }
    }
  }
  
  /* 按钮功能区域样式 */
  .button-area {
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    height: 68px;
    background-color: #ffffff;
    box-sizing: border-box;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    
    .save-button {
      width: 123px;
      height: 44px;
      background-color: #ffffff;
      color: #1a6fb8;
      border: 1px solid #1a6fb8;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 500;
      margin-left: 0px;
    }
    
    .voice-button {
      width: 204px;
      height: 44px;
      background-color: #1a6fb8;
      color: #ffffff;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 500;
      margin-right: 0px;
      
      &.center {
        width: 204px;
        margin: 0 auto;
      }
    }
  }
}
 
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }