123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- #app {
- width: 100%;
- }
- .headerView {
- padding: 0 6.25rem;
- height: 4.5rem;
- margin: auto;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .headerView-left,
- .headerView-right {
- display: flex;
- flex-direction: row;
- align-items: center;
- height: 100%;
- .header-logo {
- width: 6.875rem;
- padding-right: 5.625rem;
- }
- .header-list {
- display: flex;
- align-items: center;
- height: 100%;
- margin-left: 2rem;
- .header-item {
- margin-right: 3.75rem;
- font-size: 1rem;
- height: 100%;
- display: flex;
- align-items: center;
- box-sizing: border-box;
- a {
- display: block;
- display: flex;
- align-items: center;
- height: 3.5rem;
- border-bottom: .0125rem solid rgba(0, 0, 0, 0);
- }
- &::last-child {
- margin-right: 0;
- }
- }
- .productRectangle {
- span {
- display: block;
- display: flex;
- align-items: center;
- height: 3.5rem;
- border-bottom: .0125rem solid rgba(0, 0, 0, 0);
- }
- }
- .item-hover {
- color: #3396FB;
- border-bottom: 0.125rem solid #3396FB !important;
- }
- a {
- display: block;
- height: 100%;
- color: inherit;
- text-decoration: none;
- }
- }
- }
- .img {
- width: 100%;
- height: 100%;
- }
- }
- .headerProduct {
- width: 16.5rem;
- padding-bottom: 20px;
- background: #fff;
- border: 1px solid #FFFFFF;
- box-shadow: 0px 0px 20px 0px #00000019;
- position: relative;
- left: 320px;
- .content {
- width: 100%;
- .product {
- width: 100%;
- font-size: 1.125rem;
- .product-title {
- color: #3396FB;
- font-family: Microsoft YaHei UI;
- font-weight: bold;
- font-size: 1rem;
- line-height: normal;
- letter-spacing: 0px;
- padding: 1rem 0 1.125rem 1.125rem;
- }
- .hove {
- background: #3396FB;
- color: #fff;
- }
- .product-item {
- width: 100%;
- height: 2.625rem;
- display: flex;
- align-items: center;
- font-size: 1rem;
- padding-left: 1.375rem;
- box-sizing: border-box;
- img {
- width: 1.25rem;
- height: 1.25rem;
- padding-right: .625rem;
- }
- a {
- display: block;
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- color: inherit;
- text-decoration: none;
- }
- }
- }
- }
- }
- ::-webkit-scrollbar {
- width: 0px; /* 设置滚动条宽度 */
- }
- ::-webkit-scrollbar-button {
- height: 0;
- background-color: #ccc; /* 按钮背景颜色 */
- }
- ::-webkit-scrollbar-track {
- background-color: #f1f1f1;
- }
- ::-webkit-scrollbar-thumb {
- background-color: #888;
- border-radius: 5px;
- }
- ::-webkit-scrollbar-thumb:hover {
- background-color: #555;
- }
- ::-webkit-scrollbar-thumb:active {
- background-color: #333;
- }
|