| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747 |
- .developer-container {
- width: 1100px;
- margin-left: auto;
- margin-right: auto;
- overflow: hidden;
- }
- .block {
- padding: 24px;
- background: #fff;
- border-radius: 6px;
- margin-bottom: 20px;
- }
- .title {
- font-size: 20px;
- font-weight: 400;
- color: #0b121a;
- line-height: 28px;
- }
- .tips {
- margin-top: 2px;
- font-size: 14px;
- font-weight: 400;
- color: #828c99;
- line-height: 21px;
- }
- .developer-left {
- float: left;
- width: 730px;
- }
- .developer-right {
- float: right;
- width: 350px;
- }
- // 接单流程
- .developer-process-list {
- margin-top: 24px;
- display: flex;
- justify-content: space-between;
- }
- .developer-process-item {
- width: 139px;
- flex: 1;
- &:nth-last-child(1) {
- flex: 0;
- }
- &.cur {
- .developer-process-step {
- background-color: #288bff;
- color: #fff;
- }
- .developer-process-step-icon {
- background-image: url("~@/assets/img/developer/process1.png") !important;
- }
- }
- }
- .developer-process-step {
- width: 139px;
- height: 42px;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 4px;
- font-size: 16px;
- font-weight: 400;
- border: 1px solid rgba(0, 0, 0, 0.05);
- background: #ffffff;
- color: #0b121a;
- &.line {
- position: relative;
- &::after {
- position: absolute;
- right: 0;
- top: 50%;
- transform: translate(100%, -50%);
- content: "";
- width: 43px;
- height: 1px;
- // border-top: 1px solid #ced3d9;
- background-color: #ced3d9;
- }
- }
- }
- .developer-process-tips {
- margin-top: 12px;
- width: 139px;
- text-align: center;
- font-size: 13px;
- font-weight: 400;
- color: #828c99;
- line-height: 18px;
- }
- .developer-process-step-icon {
- width: 20px;
- height: 20px;
- background-position: 50% 50%;
- background-repeat: no-repeat;
- background-size: cover;
- margin-right: 8px;
- }
- @for $i from 1 through 4 {
- .developer-process-step-icon.icon-#{$i} {
- background-image: url("~@/assets/img/developer/process#{$i}.png");
- }
- }
- // 新人接单
- .developer-order-list {
- font-size: 0;
- }
- .developer-order-item {
- width: 333px;
- height: 116px;
- background: #ffffff;
- border-radius: 16px;
- border: 1px solid rgba(0, 0, 0, 0.05);
- box-sizing: border-box;
- padding: 16px 16px 0;
- float: left;
- box-sizing: border-box;
- margin-top: 16px;
- &:nth-child(2n + 1) {
- margin-right: 16px;
- }
- }
- .developer-order-list {
- overflow: hidden;
- }
- .developer-order-title-area-wrap {
- display: flex;
- align-items: center;
- }
- .developer-order-title-area {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .developer-order-tips {
- margin-top: 15px;
- font-size: 14px;
- font-weight: 400;
- color: #4b5d73;
- line-height: 20px;
- }
- .developer-order-icon {
- width: 24px;
- height: 24px;
- margin-right: 10px;
- background-position: center;
- background-repeat: no-repeat;
- background-size: cover;
- }
- @for $i from 1 through 5 {
- .developer-order-icon.icon-#{$i} {
- background-image: url("~@/assets/img/developer/order-#{$i}.png");
- }
- }
- .developer-order-title {
- font-size: 16px;
- font-weight: 400;
- color: #0b121a;
- line-height: 22px;
- margin-right: 16px;
- }
- .developer-order-link {
- font-size: 14px;
- font-weight: 400;
- color: #308eff;
- line-height: 20px;
- }
- // 热门课程
- .developer-hot {
- overflow: hidden;
- }
- .developer-hot-class {
- float: left;
- width: 288px;
- // height:100px;
- // background-color: #f00
- }
- .developer-hot-resource {
- float: left;
- width: 288px;
- margin-left: 71px;
- // background-color: #f00;
- // height:100px;
- }
- .developer-hot-list {
- margin-top: 20px;
- height: 160px;
- }
- .developer-hot-item {
- margin-bottom: 12px;
- font-size: 16px;
- font-weight: 400;
- color: #0b121a;
- line-height: 22px;
- padding-left: 21px;
- position: relative;
- a {
- color: #0b121a;
- }
- &:nth-last-child(1) {
- margin-bottom: 0;
- }
- &:nth-child(1) {
- .index {
- background: #ff4e33;
- border-radius: 2px;
- color: #fff;
- font-size: 12px;
- }
- }
- &:nth-child(2) {
- .index {
- background: #ff4e33;
- border-radius: 2px;
- color: #fff;
- font-size: 12px;
- }
- }
- &:nth-child(3) {
- .index {
- background: #ff4e33;
- border-radius: 2px;
- color: #fff;
- font-size: 12px;
- }
- }
- .index {
- position: absolute;
- line-height: 1;
- left: 0;
- top: 50%;
- transform: translateY(-50%);
- width: 16px;
- height: 16px;
- font-size: 16px;
- font-weight: 600;
- color: #4a5d74;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- }
- .developer-workbench-user {
- display: flex;
- }
- .developer-user-avatar {
- width: 48px;
- height: 48px;
- margin-right: 6px;
- border-radius: 50px;
- background-color: rgba(0, 0, 0, 0.05);
- img {
- width: 48px;
- height: 48px;
- border-radius: 100%;
- overflow: hidden;
- }
- }
- .developer-user-info {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- }
- .developer-user-name {
- font-size: 16px;
- font-weight: 500;
- color: #0b121a;
- line-height: 22px;
- }
- .developer-user-level {
- font-size: 14px;
- font-weight: 400;
- color: #828c99;
- line-height: 20px;
- }
- .user-title {
- margin-top: 30px;
- font-size: 16px;
- font-weight: 500;
- color: #0b121a;
- line-height: 22px;
- border-bottom: 1px solid rgba(0, 0, 0, 0.05);
- padding-bottom: 10px;
- }
- .developer-work-list {
- margin-top: 16px;
- display: flex;
- justify-content: space-between;
- }
- .developer-work-item {
- //width: 40px;
- text-align: center;
- cursor: pointer;
- }
- .developer-work-count {
- font-size: 18px;
- font-weight: 500;
- color: #0b121a;
- line-height: 25px;
- padding: 0 15px;
- }
- .developer-work-tips {
- font-size: 13px;
- font-weight: 400;
- color: #828c99;
- line-height: 18px;
- }
- .developer-setting-area {
- margin-top: 36px;
- display: flex;
- position: relative;
- }
- .developer-setting-item {
- flex: 1;
- width: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- cursor: pointer;
- }
- .developer-setting-icon {
- width: 18px;
- height: 18px;
- margin-right: 5px;
- background-repeat: no-repeat;
- background-position: 50% 50%;
- background-size: contain;
- }
- .setting-icon {
- background-image: url("~@/assets/img/developer/setting.png");
- }
- .ping-icon {
- background-image: url("~@/assets/img/developer/ping.png");
- }
- .developer-setting-tips {
- font-size: 14px;
- font-weight: 400;
- color: #0b111a;
- line-height: 21px;
- }
- .developer-setting-line {
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- width: 1px;
- height: 12px;
- background: #aeb6ca;
- // border: 1px solid #AEB6CA;
- }
- .developer-reward-title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- p {
- font-size: 14px;
- font-weight: 400;
- color: #828c99;
- line-height: 20px;
- cursor: pointer;
- }
- }
- .developer-reward-show-setting {
- width: 20px;
- height: 20px;
- // border: 1px solid #aeb6ca;
- background-position: 50% 50%;
- background-repeat: no-repeat;
- background-size: 100% auto;
- cursor: pointer;
- &.show {
- background-image: url("~@/assets/img/developer/show.png");
- }
- &.hide {
- background-image: url("~@/assets/img/developer/hide.png");
- }
- }
- .developer-reward-count {
- margin-top: 8px;
- font-size: 20px;
- font-weight: 500;
- color: #0b121a;
- line-height: 28px;
- }
- .developer-reward-detail {
- margin-top: 22px;
- overflow: hidden;
- }
- .developer-reward-item {
- width: 50%;
- float: left;
- font-size: 13px;
- font-weight: 400;
- color: #828c99;
- line-height: 18px;
- margin-bottom: 10px;
- span {
- margin-left: 6px;
- font-size: 16px;
- font-weight: 400;
- color: #0b121a;
- line-height: 22px;
- }
- }
- .developer-skill.block {
- padding: 0;
- display: flex;
- flex-wrap: wrap;
- }
- .developer-skill-item {
- width: 175px;
- height: 55px;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 14px;
- font-weight: 400;
- color: #0b121a;
- cursor: pointer;
- transition: all 0.3s;
- &:nth-child(2n + 1) {
- border-right: 1px solid #ebeced;
- }
- &:nth-last-child(n + 3) {
- border-bottom: 1px solid #ebeced;
- }
- &.cur {
- color: #288bff;
- }
- &:hover {
- color: #288bff;
- }
- }
- .developer-skill-icon {
- width: 18px;
- height: 18px;
- margin-right: 6px;
- background-size: contain;
- }
- @for $i from 1 through 4 {
- .developer-skill-item {
- .icon#{$i} {
- transition: all 0.3s;
- background-image: url("~@/assets/img/developer/sk_icno_#{$i}.png");
- }
- &:hover,
- &.cur {
- .icon#{$i} {
- background-image: url("~@/assets/img/developer/sk_icno_#{$i}_hover.png");
- }
- }
- }
- }
- .developer-tab {
- background-color: #fff;
- // border-radius: 8px;
- }
- .developer-tab-title-list {
- display: flex;
- position: relative;
- border-bottom: 1px solid rgba(0, 0, 0, 0.05);
- }
- .developer-tab-title-item {
- width: 122px;
- height: 62px;
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 16px;
- font-weight: 400;
- color: #4b5d73;
- cursor: pointer;
- transition: all 0.5s;
- &.cur {
- font-size: 16px;
- font-weight: 500;
- color: #0b121a;
- }
- }
- .developer-tab-title-line {
- position: absolute;
- left: 0;
- bottom: 0;
- width: 24px;
- height: 4px;
- background: #308eff;
- border-radius: 3px;
- transition: all 0.5s;
- }
- .developer-tab-main {
- padding: 24px 0;
- }
- .developer-tab-tips {
- margin-left: 24px;
- padding-left: 24px;
- font-size: 14px;
- font-weight: 400;
- color: #828c99;
- background: url("~@/assets/img/developer/notice.png") no-repeat left 50%;
- background-size: contain;
- }
- .developer-dynamic-list {
- overflow: hidden;
- margin-top: 24px;
- padding-left: 24px;
- padding-right: 24px;
- }
- .dynamic-empty {
- margin-top: 100px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- p {
- margin-top: 24px;
- text-align: center;
- font-size: 14px;
- font-weight: 400;
- color: #828c99;
- line-height: 21px;
- }
- }
- .developer-dynamic-item {
- margin-bottom: 41px;
- border-bottom: 1px solid rgba(0, 0, 0, 0.05);
- &:nth-last-child(1) {
- border-bottom: none;
- }
- }
- .dynamic-user {
- display: flex;
- position: relative;
- // left: -50px;
- }
- .dynamic-user-avatar {
- width: 40px;
- height: 40px;
- font-size: 0;
- margin-right: 10px;
- img {
- width: 40px;
- height: 40px;
- overflow: hidden;
- border-radius: 100%;
- }
- }
- .dynamic-user-info {
- flex: 1;
- display: flex;
- flex-direction: column;
- }
- .dynamic-user-nickname {
- font-size: 14px;
- font-weight: 500;
- color: #0b121a;
- line-height: 20px;
- vertical-align: baseline;
- }
- .dynamic-level {
- display: inline-block;
- margin-left: 8px;
- // width: 26px;
- padding: 0 6px;
- height: 14px;
- background: #4b5d73;
- border-radius: 9px;
- text-align: center;
- line-height: 16px;
- font-size: 10px;
- font-weight: 500;
- color: #ffffff;
- }
- .dynamic-job {
- font-size: 12px;
- font-weight: 400;
- color: #828c99;
- line-height: 17px;
- margin-top: 3px;
- }
- .dynamic-margin {
- margin-left: 50px;
- margin-right: 24px;
- }
- .dynamic-title {
- margin-top: 12px;
- font-size: 14px;
- font-weight: 400;
- color: #0b111a;
- line-height: 21px;
- }
- .dynamic-type-list {
- margin-top: 10px;
- }
- .dynamic-type-item {
- display: inline-block;
- padding: 0 10px;
- height: 23px;
- background: #ebf4ff;
- border-radius: 12px;
- line-height: 23px;
- font-size: 12px;
- font-weight: 400;
- color: #288bff;
- }
- .dynamic-img-area {
- margin-top: 16px;
- overflow: hidden;
- }
- .dynamic-img-item {
- float: left;
- margin-right: 10px;
- width: 90px;
- height: 90px;
- margin-bottom: 10px;
- }
- .dynamic-link-area {
- display: flex;
- height: 50px;
- background: #f7f8fa;
- align-items: center;
- margin-top: 10px;
- }
- .dynamic-link-img-area {
- width: 34px;
- height: 34px;
- margin-left: 8px;
- margin-right: 8px;
- }
- .dynamic-link-content {
- a {
- font-size: 14px;
- font-weight: 400;
- color: #0b111a;
- line-height: 21px;
- }
- }
- .dynamic-control {
- margin-top: 16px;
- margin-bottom: 16px;
- display: flex;
- align-items: center;
- }
- .dynamic-control-item {
- width: 30%;
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: center;
- cursor: pointer;
- font-size: 14px;
- font-weight: 400;
- color: #333333;
- line-height: 20px;
- }
- .dynamic-icon {
- display: inline-block;
- width: 18px;
- height: 18px;
- background-position: center;
- background-repeat: no-repeat;
- background-size: contain;
- margin-right: 6px;
- }
- .icon-share {
- background-image: url("~@/assets/img/developer/ic_ community_share@2x.png");
- }
- .icon-comment {
- background-image: url("~@/assets/img/developer/ic_ community_comment@2x.png");
- }
- .icon-like {
- background-image: url("~@/assets/img/developer/ic_ community_praise_s@2x.png");
- }
|