12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- header {
- width: 100%;
- height: 48px;
- background: #FFFFFF;
- font-size: 14px;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- .content {
- width: 100%;
- background: #fff;
- padding: 20px 16px;
- box-sizing: border-box;
- margin-bottom: 10px;
- }
- .title-box {
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- height: 36px;
- box-sizing: border-box;
- }
- .title {
- position: relative;
- font-size: 14px;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- padding-left: 11px;
- }
- .title::after {
- position: absolute;
- content: '';
- display: block;
- width: 4px;
- height: 20px;
- background: #3874F6;
- top: 0;
- left: 0;
- }
|