|
1 | 1 | #oy {
|
2 |
| - margin: 5em auto; |
| 2 | + margin: 2em auto; |
3 | 3 | display: flex;
|
4 | 4 | flex-direction: column;
|
5 | 5 | justify-content: space-around;
|
|
8 | 8 |
|
9 | 9 | #oyy {
|
10 | 10 | width: 300px;
|
11 |
| - max-height: 40px; |
| 11 | + max-height: 70px; |
12 | 12 | cursor: pointer;
|
13 | 13 | box-shadow: 2px 2px 10px rgb(0 0 0 / 15%);
|
14 | 14 | border-radius: 2px;
|
|
31 | 31 | max-width: 800px;
|
32 | 32 | width: 80%;
|
33 | 33 | max-height: 1000px;
|
34 |
| - height: 400px; |
35 | 34 | cursor: default;
|
36 | 35 | transition-property: width, max-height;
|
37 |
| - transition-duration: 0.5s, 0.2s; |
38 |
| - transition-delay: 0s, 0.5s; |
| 36 | + transition-duration: 0.1s, 0.1s; |
| 37 | + transition-delay: 0, 0.1s; |
39 | 38 | transition-timing-function: ease-in;
|
40 | 39 | }
|
41 | 40 |
|
42 | 41 | #oyytitle {
|
43 | 42 | width: 100%;
|
44 |
| - height: 40px; |
| 43 | + height: 70px; |
45 | 44 | display: flex;
|
46 | 45 | justify-content: center;
|
47 | 46 | align-items: center;
|
48 |
| - border-bottom: 1px solid rgb(0 0 0 / 15%); |
49 | 47 | }
|
50 | 48 |
|
51 |
| -#oyyfc { |
| 49 | +#oyytabs { |
52 | 50 | display: flex;
|
53 |
| - justify-content: center; |
54 | 51 | flex-wrap: wrap;
|
55 |
| - margin: 1em 0; |
| 52 | + width: 100%; |
56 | 53 | }
|
57 | 54 |
|
58 |
| -#oyyft { |
59 |
| - position: relative; |
| 55 | +#oyytabs input[type="radio"] { |
| 56 | + display: none; |
| 57 | +} |
| 58 | + |
| 59 | +.oyy_tablabel { |
60 | 60 | display: flex;
|
61 | 61 | justify-content: center;
|
| 62 | + align-items: center; |
| 63 | + cursor: pointer; |
| 64 | + width: 33%; |
| 65 | + height: 40px; |
| 66 | + opacity: 0.5; |
| 67 | + border-bottom: 1px solid rgb(0 0 0 / 15%); |
| 68 | + transition-property: opacity, background-color; |
| 69 | + transition-duration: 0.3s; |
| 70 | + transition-timing-function: ease-in; |
| 71 | +} |
| 72 | + |
| 73 | +.oyy_tablabel.sol { |
| 74 | + border-left: none; |
| 75 | +} |
| 76 | + |
| 77 | +@media (max-width: 320px) { |
| 78 | + .oyy_tablabel { |
| 79 | + font-size: 10pt; |
| 80 | + } |
| 81 | +} |
| 82 | + |
| 83 | +.oyytab { |
62 | 84 | width: 100%;
|
| 85 | + padding: 2em; |
| 86 | + display: none; |
| 87 | + order: 1; |
| 88 | + justify-content: center; |
| 89 | + flex-wrap: wrap; |
| 90 | + align-items: center; |
63 | 91 | }
|
64 | 92 |
|
65 |
| -#oyydb { |
66 |
| - display: flex; |
67 |
| - cursor: pointer; |
68 |
| - justify-content: space-around; |
| 93 | +#oyytabs input[type="radio"]:checked + .oyy_tablabel { |
| 94 | + opacity: 1; |
69 | 95 | border: 1px solid rgb(0 0 0 / 15%);
|
70 |
| - border-radius: 5px; |
71 |
| - padding: 0.5em; |
72 |
| - width: 170px; |
73 |
| - background-color: rgb(255 255 255); |
| 96 | + border-bottom: none; |
74 | 97 | }
|
75 | 98 |
|
76 |
| -#oyydb:hover { |
77 |
| - background-color: rgb(255 255 255 / 30%); |
| 99 | +#oyytabs input[type="radio"]:checked + .oyy_tablabel.sol { |
| 100 | + border-left: none; |
| 101 | + border-top-right-radius: 10px; |
78 | 102 | }
|
79 | 103 |
|
80 |
| -#oytri { |
81 |
| - width: 0; |
82 |
| - height: 0; |
83 |
| - margin-left: 5px; |
84 |
| - border-top: 5px solid rgb(0 0 0); |
85 |
| - opacity: 0.5; |
86 |
| - border-left: 5px solid transparent; |
87 |
| - border-right: 5px solid transparent; |
88 |
| - cursor: pointer; |
89 |
| - transform: translateY(7.5px); |
| 104 | +#oyytabs input[type="radio"]:checked + .oyy_tablabel.orta { |
| 105 | + border-top-left-radius: 10px; |
| 106 | + border-top-right-radius: 10px; |
90 | 107 | }
|
91 | 108 |
|
92 |
| -#oytri.up { |
93 |
| - transform: translateY(7.5px) rotate(180deg); |
| 109 | +#oyytabs input[type="radio"]:checked + .oyy_tablabel.sag { |
| 110 | + border-right: none; |
| 111 | + border-top-left-radius: 10px; |
94 | 112 | }
|
95 | 113 |
|
96 |
| -#oyydd { |
97 |
| - position: absolute; |
98 |
| - top: 30px; |
99 |
| - cursor: pointer; |
100 |
| - margin: 10px 0; |
101 |
| - padding: 0; |
102 |
| - background-color: #fff; |
103 |
| - border: 1px solid #f8f8f8; |
104 |
| - border-radius: 5px; |
105 |
| - box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.2); |
106 |
| - display: block; |
107 |
| - animation: growDown 300ms ease-in-out forwards; |
108 |
| - transform-origin: top center; |
109 |
| - list-style: none; |
110 |
| - z-index: 20; |
111 |
| -} |
112 |
| - |
113 |
| -#oyydd li { |
114 |
| - height: 35px; |
115 |
| - margin: 1px; |
116 |
| - padding: 3px 10px; |
| 114 | +#oyytabs input[type="radio"]:checked + label + .oyytab { |
117 | 115 | display: flex;
|
118 |
| - align-items: center; |
119 |
| - justify-content: left; |
120 | 116 | }
|
121 | 117 |
|
122 |
| -#oyydd li:hover { |
123 |
| - background-color: #f2f2f2; |
| 118 | +#oyypc { |
| 119 | + width: 50%; |
| 120 | + display: flex; |
124 | 121 | }
|
125 | 122 |
|
126 |
| -#oyyform { |
127 |
| - width: 100%; |
128 |
| - padding: 0 1em; |
| 123 | +#oyypc input::-webkit-outer-spin-button, |
| 124 | +#oyypc input::-webkit-inner-spin-button { |
| 125 | + -webkit-appearance: none; |
| 126 | + margin: 0; |
| 127 | +} |
| 128 | + |
| 129 | +#oyytc { |
| 130 | + width: 50%; |
| 131 | + display: flex; |
| 132 | + justify-content: space-between; |
| 133 | +} |
| 134 | + |
| 135 | +#oyytcsol { |
| 136 | + display: flex; |
| 137 | + flex-direction: column; |
| 138 | +} |
| 139 | + |
| 140 | +#oyytcsag { |
| 141 | + display: flex; |
| 142 | + flex-direction: column; |
| 143 | + justify-content: center; |
| 144 | +} |
| 145 | + |
| 146 | +#oyytcsol input[type="radio"]:checked + label { |
| 147 | + border: 1px solid rgb(0 0 0 / 15%); |
| 148 | + background-color: rgb(0 0 0 / 15%); |
129 | 149 | }
|
130 | 150 |
|
131 | 151 | .oyyfi {
|
132 |
| - width: 100%; |
133 |
| - height: 35px; |
| 152 | + width: 50%; |
| 153 | + height: 25px; |
134 | 154 | font-size: 13pt;
|
135 |
| - border: 1px solid rgb(0 0 0 / 15%); |
136 |
| - border-radius: 5px; |
137 |
| - margin: 0.5em 0; |
| 155 | + margin: 0.5em; |
| 156 | + border: none; |
138 | 157 | outline: none;
|
139 | 158 | }
|
140 | 159 |
|
141 |
| -.oyyfi:hover, |
142 |
| -.oyyfi:focus { |
143 |
| - box-shadow: 2px 2px 10px rgb(0 0 0 / 15%); |
| 160 | +.oyyfi::placeholder { |
| 161 | + opacity: 0.4; |
144 | 162 | }
|
145 | 163 |
|
146 |
| -.oyyfi::placeholder { |
147 |
| - opacity: 0.3; |
148 |
| - font-family: monospace; |
| 164 | +.oyy_toklabel { |
| 165 | + display: flex; |
| 166 | + justify-content: start; |
| 167 | + align-items: center; |
| 168 | + cursor: pointer; |
| 169 | + height: 30px; |
| 170 | + margin: 0.3em 0.3em 0.3em 1em; |
| 171 | + border-radius: 16px; |
| 172 | + padding: 0 1em; |
| 173 | + width: 80px; |
| 174 | + font-weight: 600; |
| 175 | + background-color: #fff; |
| 176 | + border: 1px solid rgb(0 0 0 / 5%); |
| 177 | +} |
| 178 | + |
| 179 | +.oyy_toklabel:hover { |
| 180 | + border: 1px solid rgb(0 0 0 / 15%); |
| 181 | + background-color: rgb(0 0 0 / 15%); |
| 182 | +} |
| 183 | + |
| 184 | +.oyy_tsel { |
| 185 | + display: flex; |
| 186 | + align-items: center; |
| 187 | + font-size: 13pt; |
149 | 188 | }
|
150 | 189 |
|
151 |
| -.oyyfsc { |
152 |
| - margin: 2em 0; |
| 190 | +#oyyfsc { |
| 191 | + margin: 1em 0; |
153 | 192 | }
|
154 | 193 |
|
155 | 194 | .oyc {
|
|
167 | 206 | font-size: 11pt;
|
168 | 207 | color: #888;
|
169 | 208 | border-bottom: 1px solid rgba(0 0 0 / 10%);
|
| 209 | + border-bottom: 1px solid rgba(0 0 0 / 10%); |
170 | 210 | }
|
171 | 211 |
|
172 | 212 | .oyok {
|
|
175 | 215 | cursor: pointer;
|
176 | 216 | overflow: hidden;
|
177 | 217 | transition-property: max-height;
|
178 |
| - transition-duration: 1s; |
| 218 | + transition-duration: 0.3s; |
179 | 219 | transition-timing-function: ease-in;
|
180 | 220 | border-bottom: 1px solid rgba(0 0 0 / 10%);
|
181 | 221 | border-radius: 2px;
|
|
200 | 240 | display: flex;
|
201 | 241 | justify-content: space-between;
|
202 | 242 | width: 100%;
|
| 243 | + width: 100%; |
203 | 244 | }
|
204 | 245 |
|
205 | 246 | .oyaotitle {
|
|
211 | 252 | .oyaotb {
|
212 | 253 | position: relative;
|
213 | 254 | cursor: pointer;
|
| 255 | + cursor: pointer; |
214 | 256 | width: 25px;
|
215 | 257 | height: 20px;
|
216 | 258 | opacity: 0.3;
|
|
239 | 281 | .oyao_middle {
|
240 | 282 | display: flex;
|
241 | 283 | width: 100%;
|
| 284 | + width: 100%; |
242 | 285 | }
|
243 | 286 |
|
244 | 287 | @media (max-width: 425px) {
|
|
332 | 375 | display: flex;
|
333 | 376 | justify-content: center;
|
334 | 377 | margin-bottom: 1em;
|
| 378 | + justify-content: center; |
| 379 | + margin-bottom: 1em; |
335 | 380 | }
|
336 | 381 |
|
337 | 382 | .chartbtn {
|
|
396 | 441 | margin-top: 3em;
|
397 | 442 | }
|
398 | 443 |
|
| 444 | +.oybdis { |
| 445 | + margin: 1em 0; |
| 446 | + cursor: pointer; |
| 447 | + color: #2ec479; |
| 448 | + |
| 449 | +} |
| 450 | + |
| 451 | +.oyao_bottom { |
| 452 | + width: 100%; |
| 453 | + margin-top: 3em; |
| 454 | +} |
| 455 | + |
399 | 456 | .oybdis {
|
400 | 457 | margin: 1em 0;
|
401 | 458 | cursor: pointer;
|
|
0 commit comments