123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- .user-nav .nav-resume-tools {
- display: inline-block;
- vertical-align: middle;
- }
- .user-nav .nav-resume-tools > a {
- display: inline-block;
- font-weight: 500;
- color: var(--v-primary-base);
- line-height: 20px;
- height: auto;
- padding: 3px 7px;
- vertical-align: middle;
- border-radius: 4px;
- margin-right: 8px;
- border: 1px solid transparent;
- }
- .banner {
- width: 100%;
- height: 50px;
- z-index: var(--zIndex-nav) !important;
- color: #fff;
- background-color: #d5e6e8;
- padding-left: 0px;
- height: 50px;
- font-size: 14px;
- .left {
- height: 100%;
- display: flex;
- align-items: center;
- font-size: 20px;
- cursor: pointer;
- }
- }
- .hover:hover {
- cursor: pointer;
- background: rgba(0, 0, 0, 0.03);
- }
- .innerBox {
- position: relative;
- width: 1184px;
- max-width: 1184px;
- margin: 0 auto;
- align-items: center;
- }
- .nav-logo {
- float: left;
- }
- .nav-city {
- float: left;
- position: relative;
- cursor: pointer;
- height: 49px;
- line-height: 49px;
- color: var(--v-primary-base);
- margin-left: 50px;
- }
- .nav-city-selected {
- display: inline-block;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- max-width: 95px;
- vertical-align: middle;
- }
- .switchover-city {
- // font-size: 12px;
- color: var(--v-primary-base);
- margin-left: 10px;
- }
- .nav {
- font-size: 0;
- float: left;
- margin-left: 50px;
- height: 49px;
- line-height: 49px;
- }
- .nav ul {
- display: flex;
- white-space: nowrap;
- vertical-align: top;
- }
- .nav ul li {
- text-align: center;
- font-size: 14px;
- margin: 0 5px;
- list-style: none;
- }
- .nav li a {
- display: block;
- padding: 0 5px;
- position: relative;
- text-decoration: none;
- color: var(--v-primary-base);
- }
- .routeActive { // 选中样式
- color: var(--v-error-base) !important;
- .aLink {
- color: var(--v-error-base) !important;
- text-decoration: underline !important; // 多个下划线
- }
- }
- .user-nav {
- // position: absolute;
- // right: 0;
- // display: inline-block;
- color: var(--v-primary-base);
- // height: 49px;
- // line-height: 49px;
- }
- .user-nav .btns .btn-outline {
- border-radius: 8px;
- text-align: center;
- font-size: 14px;
- height: 26px;
- line-height: 26px;
- min-width: 0;
- padding: 0 11px;
- margin-left: 14px;
- background-color: transparent;
- }
- .user-nav .btn {
- display: inline-block;
- box-sizing: content-box;
- border: 1px solid var(--v-primary-base);
- letter-spacing: 1px;
- cursor: pointer;
- }
- .user-nav a {
- text-decoration: none;
- }
|