|
1234567891011121314151617181920212223242526272829303132333435 |
- .menu {
- display: flex;
- align-items: center;
- justify-content: center;
- background: #FFFFFF;
- position: relative;
- }
-
- .menu>a:first-child {
- width: 10px;
- position: absolute;
- left: 15px;
- display: block;
- line-height: 0;
- }
- .menu>div:first-child {
- width: 10px;
- position: absolute;
- left: 15px;
- display: block;
- line-height: 0;
- }
- .menu>div:first-child>img{
- width: 100%;
- }
- .menu>a:first-child>img{
- width: 100%;
- }
-
- .menu>div:last-child {
- font-weight: 400;
- color: #414141;
- font-size: 16px;
- font-family: Microsoft YaHei;
- }
|