123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- .container {
- background-color: #F6F7F8;
- }
- .headerBox {
- line-height: 0;
- background-color: #fff;
- }
- .searchBox {
- padding: 20rpx;
- position: relative;
- }
- .searchIcon {
- position: absolute;
- top: 40rpx;
- left: 50rpx;
- }
- .searchInput {
- background-color: #F6F7F8;
- border-radius: 30rpx;
- padding: 10rpx 110rpx 10rpx 80rpx;
- width: calc(100% - 190rpx);
- height: 46rpx;
- line-height: 46rpx;
- }
- .searchBtn {
- position: absolute;
- line-height: 48rpx;
- top: 28rpx;
- right: 28rpx;
- background-color: #E5F7FF;
- color: #3e6ffd;
- font-size: 28rpx;
- padding: 2rpx 20rpx;
- border-radius: 30rpx;
- }
- .tabBox {
- padding: 0;
- line-height: 48rpx;
- }
- .tabItem {
- padding: 20rpx 0 30rpx;
- display: inline-block;
- width: calc(25%);
- text-align: center;
- color: #333333;
- font-size: 28rpx;
- position: relative;
- }
- .active {
- color: #3e6ffd;
- }
- .active::after {
- content: " ";
- width: 52rpx;
- height: 6rpx;
- background-color: #3e6ffd;
- position: absolute;
- bottom: 0;
- left: calc(50% - 26rpx);
- }
- .contentBox {
- position: relative;
- height: calc(100% - 180rpx);
- }
- .listInfo {
- margin: 20rpx;
- padding: 30rpx 20rpx;
- border-radius: 20rpx;
- background-color: #fff;
- }
- .listCode {
- padding-bottom: 30rpx;
- border-bottom: 2rpx #EEEEEE solid;
- }
- .codeTextBox {
- width: calc(100% - 120rpx);
- display: inline-block;
- font-size: 28rpx;
- color: #666666;
- vertical-align: middle;
- }
- .codeText {
- color: #000006;
- }
- .codeType {
- padding: 2rpx 6rpx 4rpx;
- margin-left: 20rpx;
- border: 2rpx #3e6ffd solid;
- border-radius: 10rpx;
- color: #3e6ffd;
- font-size: 24rpx;
- }
- .codeStatus {
- width: calc(120rpx);
- display: inline-block;
- color: #3e6ffd;
- font-size: 28rpx;
- text-align: right;
- vertical-align: middle;
- }
- .listTitle {
- color: #000405;
- font-size: 32rpx;
- line-height: 46rpx;
- white-space: pre-line;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- /*行向垂直排列*/
- -webkit-line-clamp: 2;
- width: 100%;
- padding-top: 20rpx;
- }
- .listDetailBox {
- color: #666666;
- font-size: 24rpx;
- padding-top: 30rpx;
- display: block;
- }
- .listArea {
- font-size: 24rpx;
- margin-right: 20rpx;
- }
- .listDate {
- font-size: 24rpx;
- }
|