123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- .wrap {
- // margin-top: 20px;
- padding: 0 2px 0 0;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- .wrapLeft {
- display: flex;
- flex-direction: row;
- align-items: center;
- .hotIcon {
- width: 24px;
- height: 24px;
- margin-right: 6px;
- }
- .tagWrap {
- display: flex;
- flex-direction: row;
- }
- h5 {
- font-size: 18px;
- font-weight: 400;
- color: #000000;
- line-height: 25px;
- }
- }
- .wrapRight {
- display: flex;
- flex-direction: row;
- cursor: pointer;
- font-size: 16px;
- align-items: center;
- span {
- color: #666;
- }
- .arrow {
- width: 16px;
- height: 16px;
- margin-left: 4px;
- }
- }
- .searchWrap {
- width: 90px;
- height: 36px;
- cursor: pointer;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- border-radius: 18px;
- background-color: #2dc7aa;
- // border: 1px solid #e5e5e5;
- // padding: 0 8px;
- span {
- color: #fff;
- line-height: 24px;
- font-size: 16px;
- }
- .search {
- width: 16px;
- height: 16px;
- margin-left: 8px;
- }
- &:hover {
- background-color: #fff;
- box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.1000);
- span {
- color: #2dc7aa;
- }
- }
- }
- }
- .searchDetail {
- .searchResult {
- // height: 58px;
- line-height: 24px;
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-bottom: 18px;
- .resultTitle {
- // padding: 0 20px 0 14px;
- width: 80px;
- display: flex;
- flex-direction: row;
- align-items: center;
- color: #999;
- font-size: 16px;
- // img {
- // width: 14px;
- // height: 14px;
- // margin-left: 4px;
- // }
- }
- .tagList {
- width: 931px;
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .searchResultRight {
- display: flex;
- flex-direction: row;
- // align-items: center;
- .clearBtn {
- margin-left: 8px;
- line-height: 24px;
- height: 24px;
- cursor: pointer;
- display: flex;
- flex-direction: row;
- align-items: center;
- border-radius: 2px;
- border: 1px solid #e5e5e5;
- padding: 0 8px;
- span {
- color: #666 !important;
- line-height: 24px;
- font-size: 13px;
- }
- .clearIcon {
- width: 14px;
- height: 14px;
- margin-left: 6px;
- }
- }
- }
- }
- .searchChioseWrap {
- background-color: #fff;
- border-radius: 8px;
- padding: 20px 20px 5px;
- .chioseLineWrap {
- // border-bottom: 1px solid #ededed;
- .chioseRow {
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-bottom: 30px;
- p {
- line-height: 48px;
- width: 112px;
- text-align: center;
- margin-right: 5px;
- }
- .chioseTagWrap {
- flex: 1;
- &::before {
- position: absolute;
- content: '';
- width: 1px;
- height: 100%;
- // height: calc(100% - 14px);
- background: #ededed;
- left: 0;
- }
- position: relative;
- padding-left: 20px;
- /deep/.el-tag {
- margin-bottom: 14px;
- }
- }
- .tags {
- // height: 24px;
- background: #e0f7f3;
- line-height: 24px;
- display: inline-block;
- margin-right: 40px;
- color: #2dc7aa;
- padding: 2px 11px;
- border-radius: 6px;
- font-size: 15px;
- }
- .tagText {
- margin-right: 40px;
- display: inline-block;
- line-height: 24px;
- font-size: 15px;
- color: #666;
- cursor: pointer;
- }
- }
- }
- }
- .submitBtn {
- width: 194px;
- height: 42px;
- background: #2dc7aa;
- border-radius: 23px;
- text-align: center;
- line-height: 42px;
- margin: 18px auto 0;
- color: #fff;
- cursor: pointer;
- }
- }
- :global {
- .el-tag--Light,
- .el-tag--light {
- border: 1px solid #2dc7aa;
- font-size: 14px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #2dc7aa;
- line-height: 20px;
- border-radius: 6px;
- }
- .chioseTagWrap {
- .el-tag {
- margin-bottom: 14px;
- margin-right: 12px;
- cursor: pointer;
- &:last-child {
- margin-right: 0 !important;
- }
- }
- }
- .chioseTag {
- margin-right: 14px;
- }
- }
|