1234567891011121314151617181920212223242526272829303132333435 |
- .analysis {
- padding: 15px;
- font-family: PingFangSC-Regular, PingFang SC;
- &-header {
- background-color: #fff;
- border-radius: 5px;
- padding: 15px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 10px;
- &-right {
- .tab {
- display: flex;
- border: solid 1px #1767f2;
- &-item {
- width: 40px;
- height: 28px;
- line-height: 28px;
- text-align: center;
- border-right: solid 1px #1767f2;
- color: #1767f2;
- font-size: 16px;
- &:last-child {
- border-right: none;
- }
- }
- .active {
- background-color: #1767f2;
- color: #fff;
- }
- }
- }
- }
- }
|