123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- /* 企业列表 */
- .enterprose-list {
- background-color: #f2f2f2;
- min-height: calc(100vh - 44px);
- /* 搜索 */
- &-search {
- width: calc(100% - 60rpx);
- margin: 0 auto;
- padding: 29rpx 0;
- }
- /* tab */
- &-tab {
- background-color: #fff;
- border-top-left-radius: 5px;
- border-top-right-radius: 5px;
- padding: 5px 0;
- }
- /* 列表 */
- &-content {
- &-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 40rpx 30rpx;
- background-color: #fff;
- margin-bottom: 20rpx;
- border-radius: 10rpx;
- &:first-child {
- border-top: solid 1px #DBDBDB;
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- }
- &-left {
- display: flex;
- align-items: center;
- .image {
- margin-right: 22rpx;
- image {
- width: 112rpx;
- height: 112rpx;
- border: solid 1px #E1E1E1;
- border-radius: 10rpx;
- }
- }
- .info {
- font-family: 'PingFangSC-Regular, PingFang SC;';
- color: #000;
- font-size: 32rpx;
- font-weight: 600;
- .company {
- display: flex;
- font-size: 24rpx;
- color: #6F6F6F;
- margin-top: 18rpx;
- .icon {
- margin-right: 83rpx;
- view:first-child {
- margin-right: 10rpx;
- }
- }
- }
- }
- }
- }
- }
- }
|