| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001 |
- .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;
- position: relative;
- z-index: 1;
- margin-top: 20px;
- }
- .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-item-activity {
- position: relative;
- z-index: 10;
- }
- .developer-activity-tips {
- position: absolute;
- z-index: 2;
- left: 0px;
- top: -12px;
- width: 118px;
- height: 40px;
- background: #ff4e33;
- border-radius: 8px 8px 0px 0px;
- padding: 4px 0 0 8px;
- box-sizing: border-box;
- white-space: nowrap;
- font-size: 12px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #ffffff;
- line-height: 17px;
- }
- .developer-order-list {
- &::after {
- content: "";
- display: block;
- clear: both;
- }
- }
- .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;
- position: relative;
- z-index: 3;
- }
- .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;
- overflow: hidden;
- // &-logined{
- // cursor: pointer;
- // }
- }
- .developer-workbench-user-logined {
- cursor: pointer;
- }
- .developer-user-avatar {
- width: 52px;
- height: 52px;
- margin-right: 8px;
- border-radius: 50px;
- background-color: rgba(0, 0, 0, 0.05);
- position: relative;
- img {
- width: 100%;
- height: 100%;
- border-radius: 100%;
- overflow: hidden;
- }
- .developer-flag{
- position: absolute;
- width:16px;
- height:14px;
- right:0;
- bottom:0;
- background-size: cover;
- background-repeat: no-repeat;
- background-position: center;
- }
- .developer-vip-flag{
- background-image: url("~@/assets/img/developer/vip_flag.png");
- }
- .developer-notvip-flag{
- background-image: url("~@/assets/img/developer/notvip_flag.png");
- }
- }
- .developer-user-info {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- }
- .developer-vip-btn-area{
- display:block;
- width: 54px;
- height: 17px;
- // background-color: #f00;
- align-self: center;
- background-repeat: no-repeat;
- background-size: cover;
- background-position: center;
- }
- .developer-vip-renewal-btn{
- background-image: url("~@/assets/img/developer/vip_btn.png")
- }
- .developer-vip-apply-btn{
- background-image: url("~@/assets/img/developer/not_vip_btn.png")
- }
- .developer-user-name {
- font-size: 14px;
- font-weight: 500;
- color: #0b121a;
- font-family: PingFangSC-Medium, PingFang SC;
- line-height: 20px;
- }
- .developer-user-level {
- font-size: 12px;
- font-weight: 400;
- color: #828c99;
- // margin-top: 5px;
- line-height: 1;
- // line-height: 20px;
- cursor: pointer;
- }
- .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 {
- cursor: pointer;
- }
- .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.num {
- 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;
- padding-top: 0px;
- }
- .developer-tab-title-list {
- display: flex;
- position: relative;
- border-bottom: 1px solid rgba(0, 0, 0, 0.05);
- }
- .developer-tab-title-item {
- height: 62px;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-right: 20px;
- font-size: 16px;
- font-weight: 400;
- color: #4b5d73;
- cursor: pointer;
- transition: all 0.5s;
- &.cur {
- font-size: 16px;
- font-weight: 500;
- color: #0b121a;
- border-bottom: 3px #308eff solid;
- }
- }
- .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 {
- 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;
- }
- .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 {
- display: block;
- 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;
- cursor: pointer;
- }
- .dynamic-link-img-area {
- width: 34px;
- height: 34px;
- margin-left: 8px;
- margin-right: 8px;
- }
- .dynamic-link-content {
- a,
- span {
- 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");
- }
- .arrow_icon {
- position: relative;
- &::after {
- content: "";
- position: absolute;
- right: -12px;
- top: 50%;
- width: 8px;
- height: 8px;
- margin-top: -4px;
- border-right: 1px solid #828c99;
- border-bottom: 1px solid #828c99;
- transform: rotate(-45deg);
- }
- }
- .nologin {
- cursor: pointer;
- }
- // 经验等级介绍
- .ma-level-dialog {
- background: #ffffff;
- border-radius: 8px !important;
- }
- .dev-level-container {
- display: flex;
- justify-content: space-between;
- }
- .dev-level-highline {
- color: #308eff;
- }
- .dev-level-detail {
- width: 328px;
- margin-left: 59px;
- }
- .dev-level-introduce {
- width: 360px;
- margin-right: 46px;
- background: #f7f8fa;
- border-radius: 8px;
- padding-bottom: 20px;
- }
- .dev-level-info {
- width: 108px;
- height: 98px;
- margin: 0 auto;
- background: url('"~@/assets/img/developer/level_bg.png') no-repeat 50% 50%;
- background-size: 100% auto;
- position: relative;
- }
- .dev-level-info-tips {
- position: absolute;
- top: 35px;
- left: 50%;
- transform: translateX(-50%);
- font-size: 16px;
- font-family: Arial-BoldMT, Arial;
- font-weight: normal;
- color: #308eff;
- line-height: 18px;
- }
- .dev-level-line-container {
- margin-top: 17px;
- overflow: hidden;
- p {
- font-size: 14px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #666666;
- line-height: 22px;
- margin-top: 6px;
- }
- }
- .dev-level-line {
- height: 6px;
- background: #d8d8d8;
- border-radius: 3px;
- overflow: hidden;
- position: relative;
- span {
- position: absolute;
- left: 0;
- top: 0;
- bottom: 0;
- width: 100%;
- transform: translateX(-100%);
- transition: all 0.8s;
- transition-delay: 0.5s;
- background: #308eff;
- border-radius: 3px;
- }
- }
- .dev-level-line-left {
- float: left;
- }
- .dev-level-line-right {
- float: right;
- }
- .dev-level-details-list {
- margin-top: 31px;
- }
- .dev-level-details-item {
- display: flex;
- margin-bottom: 12px;
- }
- .dev-level-details-tit {
- flex: 1;
- font-size: 14px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #000000;
- line-height: 20px;
- .label {
- color: #999999;
- font-size: 12px;
- margin-left: 12px;
- }
- }
- .dev-level-introduce-section {
- margin-left: 20px;
- margin-right: 20px;
- padding-top: 40px;
- &:nth-child(1) {
- padding-top: 50px;
- }
- h3 {
- font-size: 14px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #308eff;
- line-height: 20px;
- }
- p {
- margin-top: 8px;
- font-size: 14px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #000000;
- line-height: 22px;
- }
- }
- .dev-level-table-container {
- margin-left: 20px;
- margin-right: 20px;
- margin-top: 30px;
- }
- .dev-level-table {
- border-collapse: collapse;
- width: 100%;
- background: #fff;
- th,
- td {
- border: 1px solid #ccc;
- background: #fff;
- color: #000;
- height: 29px;
- vertical-align: middle;
- text-align: left;
- text-indent: 5px;
- }
- }
|