123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- .HomePage {
- padding: 16px;
- height: 100%;
- padding-bottom: 36px;
- background: #fff;
- overflow-y: scroll;
- .tabWrap {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- background: #F7F9FC;
- border-radius: 4px;
- padding: 16px 28px;
- margin-top: 16px;
- .tab {
- position: relative;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- width: 88px;
- height: 88px;
- cursor: pointer;
- .index {
- position: relative;
- width: 32px;
- height: 32px;
- border-radius: 8px;
- text-align: center;
- line-height: 32px;
- font-size: 16px;
- font-family: Roboto-Bold, Roboto;
- font-weight: bold;
- color: #FFF;
- margin-bottom: 16px;
- background: #CFD6E6;
- .point {
- position: absolute;
- width: 8px;
- height: 8px;
- top: -2px;
- right: -2px;
- background: #FFC34D;
- border-radius: 2px;
- border: 2px solid #FFF;
- }
- &.active {
- background: #37F;
- }
- }
- .name {
- font-size: 12px;
- font-family: SourceHanSansCN-Medium, SourceHanSansCN;
- font-weight: 500;
- color: #7A8599;
- }
- // &::after {
- // right: -79%;
- // top: -1px;
- // position: absolute;
- // display: block;
- // content: '...';
- // font-size: 33px;
- // color: #DAE2F2;
- // }
- &.on {
- background: #FAFCFF;
- border-radius: 8px;
- border: 1px solid #DAE2F2;
- }
- &.active {
- &::after {
- color: #37F;
- }
- }
- &:last-child {
- &::after {
- display: none;
- }
- }
- }
- .point {
- position: relative;
- top: -7px;
- // right:-22.5px;
- font-size: 33px;
- color: #DAE2F2;
- }
- }
- .tabRelaContent {
- margin-top: 24px;
- min-height: 80px;
- .step {
- padding: 0 8px;
- cursor: pointer;
- .title {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- height: 17px;
- font-size: 16px;
- cursor: pointer;
- font-family: SourceHanSansCN-Medium, SourceHanSansCN;
- font-weight: 500;
- color: #17181A;
- line-height: 17px;
- margin-bottom: 10px;
- &>span {
- display: inline-block;
- font-size: 14px;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- cursor: pointer;
- margin-left: 8px;
- }
- }
- .detail {
- height: 42px;
- font-size: 14px;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #525866;
- line-height: 21px;
- word-break: break-all;
- text-overflow: ellipsis;
- display: box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- /* 这里是超出几行省略 */
- overflow: hidden;
-
- }
- &.active {
- &:hover {
- .title {
- color: rgb(51 119 255 / 100%);
- &>span {
- color: rgb(51 119 255 / 100%);
- }
- }
- }
-
- }
- }
- .multiStep {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: flex-start;
- padding: 0 8px;
- .block {
- width: 28%;
- cursor: pointer;
- .title {
- cursor: pointer;
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- height: 17px;
- font-size: 16px;
- font-family: SourceHanSansCN-Medium, SourceHanSansCN;
- font-weight: 500;
- color: #17181A;
- line-height: 17px;
- margin-bottom: 10px;
- &>span {
- display: inline-block;
- font-size: 14px;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- cursor: pointer;
- margin-left: 8px;
- }
- }
- .detail {
- font-size: 14px;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #525866;
- line-height: 21px;
- word-break: break-all;
- text-overflow: ellipsis;
- display: box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
-
- /* 这里是超出几行省略 */
- overflow: hidden;
- }
- &.active {
- &:hover {
- .title {
- color: rgb(51 119 255 / 100%);
-
- &>span {
- color: rgb(51 119 255 / 100%);
- }
- }
-
-
- }
- }
- }
-
- }
- }
- .map {
- display: flex;
- justify-content: center;
- align-items: center;
- // border:1px solid red;
- background: url('../../../static/shouyechatu.png');
- // background-size: 50vw 25vw;
- background-size: 850px 425px;
- background-repeat: no-repeat;
- background-position: center;
- &>img {
-
- }
- }
- }
|