123456789101112131415161718192021222324 |
- .active {
- color: #F76260;
- }
- .typeItem {
- width: 25%;
- display: inline-block;
- text-align: center;
- }
- .iconClass {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-direction: row;
- flex-direction: row;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-justify-content: space-around;
- justify-content: space-around;
- }
|