123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- .container {
- width: 100%;
- background-color: #fff;
- }
- .top {
- position: fixed;
- top: 0;
- left: 0;
- height: 100px;
- width: 100%;
- z-index: 999;
- background-color: #fff;
- }
- .tabsBox {
- width: 100%;
- border-bottom: 1px solid #d3d3d3;
- display: flex;
- }
- .tab {
- width: 25%;
- }
- .text {
- display: block;
- width: 80%;
- margin: 0 auto;
- text-align: center;
- }
- .current {
- color: #ff9302;
- border-bottom: 1px solid #ff9302;
- }
- .search {
- width: 90%;
- height: 2em;
- border: 1px solid #f3f3f3;
- background-color: #fff !important;
- border-radius: 12px;
- display: flex;
- margin: 20px auto;
- }
- .uni-easyinput {
- width: 70%;
- margin-left: 5%;
- height: 100%;
- font-size: 14px;
- }
- .uni-easyinput .uni-easyinput__content {
- border: none !important;
- height: 100%;
- line-height: 2em;
- }
- .searchBtn {
- width: 20%;
- background-color: #ff9302 !important;
- border: none;
- color: #fff !important;
- height: 2em;
- margin-top: 0.2em;
- margin-left: 4%;
- border-radius: 12px;
- }
- .list {
- display: block;
- /* width: 90%; */
- /* margin: 0 auto; */
- margin-top: 100px;
- }
|