12345678910111213141516171819202122232425262728293031 |
- @charset "UTF-8";
- /* 水平间距 */
- /* 水平间距 */
- .tabs .one {
- padding: 2vw;
- }
- .tabs .one .scrollView {
- display: flex;
- white-space: nowrap;
- text-align: center;
- }
- .tabs .one .list {
- display: inline-block;
- padding: 2vw;
- margin: 0 1.5vw;
- text-align: center;
- border-radius: 5px;
- }
- .tabs .one .list .active_1 {
- color: #000000;
- border-bottom: 4px solid #007AFF;
- border-radius: 5px;
- }
- .tabs .one .list .active_2 {
- color: #999999;
- }
- .tabs .one .list text {
- font-weight: bold;
- font-size: 14px;
- }
|