123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- .container {
- width: 100%;
- background-color: #fff;
- }
- .top {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 120px;
- z-index: 999;
- background-color: #fff;
- }
- .searchBox {
- width: 90%;
- margin: 10px auto;
- border: 1px solid #999;
- }
- .tabsBox {
- width: 90%;
- margin: 10px auto;
- display: flex;
- }
- .tab {
- width: 22%;
- margin: 1%;
- text-align: center;
- border: 1px solid #d3d3d3;
- border-radius: 15px;
- font-size: 13px;
- padding: 8px;
- }
- .current {
- color: #fff !important;
- background-color: #ff9302;
- border: none;
- }
- .cardBox {
- margin-top: 110px;
- display: block;
- padding: 10px 0;
- }
- .uni-card__header-content-title {
- font-weight: 800;
- font-size: 18px !important;
- }
|