123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- [v-cloak] {
- opacity: 0;
- }
- #login_header{
- width: 100vw;
- display: flex;
- justify-content: center;
- height: 7vh;
- position: fixed;
- top: 0;
- left: 0;
- background: #fff;
- }
- #login_header_container{
- width: 95vw;
- display: flex;
- border: 1px solid #ccc;
- align-items: center;
- }
- .img_logo {
- display: flex;
- align-items: center;
- }
- .img_logo .logo {
- width: 5.5vw;
- height: 4vh;
- background: url("/img/supplier-login/logo.png") no-repeat;
- }
- .text {
- font-size: 1.2vw;
- font-weight: 400;
- color: #272727;
- }
- .header_link{
- align-items: center;
- position: relative;
- width: 49vw;
- height: 100%;
- display: flex;
- justify-content: space-between;
- }
- .header_link .nav_link {
- position: absolute;
- left: 0;
- top: 0;
- display: flex;
- justify-content: center;
- align-items: end;
- width: 7vw;
- height: 100%;
- transition: .3s;
- }
- .header_link .nav_link .nav_link_item{
- width: 1.2vw;
- height: 0.2vh;
- background: #FF5B00;
- border-radius: 8px;
- margin-bottom: 1vh;
- }
- .header_link .header_link_itme {
- cursor: pointer;
- font-size: 0.84vw;
- width: 7vw;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- z-index: 1;
- }
- .header_link .header_link_itme:hover{
- color: #FF5B00;
- transform: scale(1.1);
- }
- .header_link_itme:nth-child(2):hover ~ .nav_link {
- left: 7vw;
- }
- .header_link_itme:nth-child(3):hover ~ .nav_link {
- left: 14vw;
- }
- .header_link_itme:nth-child(4):hover ~ .nav_link {
- left: 21vw;
- }
- .header_link_itme:nth-child(5):hover ~ .nav_link {
- left: 28vw;
- }
- .header_link_itme:nth-child(6):hover ~ .nav_link {
- left: 35vw;
- }
- .header_link_itme:nth-child(7):hover ~ .nav_link {
- left: 42vw;
- }
- .isActiveLink {
- color: #FF5B00;
- transform: scale(1.1);
- }
|