| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- @import "../scssCommon";
- .companyList {
- .contentArea {
- background-color: #f7f7f7;
- width: 1000px;
- margin: 0 auto;
- box-sizing: border-box;
- .filter-box {
- margin-top: 20px;
- padding: 20px;
- background: #ffffff;
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- .filter-title {
- font-weight: 600;
- font-size: 15px;
- padding: 0;
- margin: 20px 0 14px;
- line-height: 20px;
- }
- .filter-content {
- margin-top: 20px;
- display: flex;
- flex-flow: row wrap;
- a {
- width: 66px;
- height: 30px;
- line-height: 30px;
- text-align: center;
- font-size: 13px;
- &:hover {
- color: #00b2f3;
- outline: none;
- }
- }
- .notOn {
- color: #555555;
- }
- .on {
- border: 1px solid #308EFF;
- border-radius: 3px;
- color: #258fe6;
- line-height: 28px;
- }
- }
- }
- .company-list-wrapper {
- margin-top: 10px;
- background: #ffffff;
- display: flex;
- flex-direction: column;
- .company-item {
- padding: 0 20px;
- height: 100px;
- display: flex;
- align-items: center;
- text-decoration: none;
- .logo {
- width: 60px;
- height: 60px;
- border-radius: 5px;
- }
- .company-info {
- margin-left: 20px;
- flex-grow: 1;
- max-width: calc(100% - 130px);
- .name {
- font-size: 18px;
- height: 25px;
- line-height: 25px;
- color: #222222;
- margin: 0;
- font-weight: 700;
- }
- .intro {
- margin-right: 20px;
- height: 17px;
- line-height: 17px;
- color: #666666;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- }
- .recruit-info {
- flex-shrink: 0;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- .num {
- font-size: 25px;
- height: 30px;
- line-height: 30px;
- font-weight: 700;
- color: #308eff;
- margin: 0;
- }
- .title {
- font-size: 12px;
- color: #666666;
- }
- }
- }
- }
- }
- .pagination {
- margin: 0 auto;
- padding: 30px 0 30px;
- background: #f7f7f7;
- text-align: center;
- }
- }
|