12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- .tabs {
- position:fixed;
- width:100%;
- bottom:0vw;
- z-index:100;
- display : flex;
- justify-content : space-evenly;
- height : 13.3333vw;
- background-color: #fff;
- color : #808080;
- box-shadow: rgba(17, 17, 26, 0.1) 0px -1px 0px;
- border-radius: 10px 10px 0 0;
- .buttom {
- display : flex;
- flex-direction : column;
- align-items : center;
- justify-content: space-evenly;
- font-size : 3.2vw;
- font-family : Source Han Sans CN;
- font-weight : 400;
- .icon-img {
- width : 5.3333vw;
- height: 5.3333vw;
- }
- }
- .center {
- margin-top: -10.6667vw;
- z-index : 99;
- // img{
- // width: 60px;
- // height: 52px;
- // }
- .box-icon {
- width : 16vw !important;
- height: 16vw !important;
- border-radius: 50%;
- box-shadow: 0 1.3333vw 4vw -1.3333vw rgb(251 251 251 / 50%);
- }
- }
- }
|