123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- .operation {
- padding: 15px;
- font-family: PingFangSC-Regular, PingFang SC;
- &-header {
- width: 100%;
- border: solid 1px #fff;
- display: flex;
- justify-content: space-between;
- border-radius: 5px;
- margin-bottom: 18px;
- &-item {
- width: 50%;
- text-align: center;
- line-height: 49px;
- color: #fff;
- font-size: 20px;
- font-family: PingFangSC-Regular, PingFang SC;
- }
- .active {
- background-color: #fff;
- color: #434343;
- }
- }
- &-main {
- padding: 30px 15px 0;
- background-color: #fff;
- border-radius: 5px;
- &-menu {
- display: flex;
- flex-wrap: wrap;
- &-item {
- width: calc(33% - 20px);
- text-align: center;
- margin-right: 30px;
- margin-bottom: 29px;
- &:nth-child(3n) {
- margin-right: 0;
- }
- .image {
- width: 88px;
- margin: 0 auto 16px;
- }
- .name {
- // white-space: nowrap;
- // overflow: hidden;
- // text-overflow: ellipsis;
- color: #393939;
- font-family: PingFangSC-Regular, PingFang SC;
- font-size: 20px;
- }
- }
- }
- }
- }
|