Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d7cb06f4a9 | |||
| 40d4a41461 | |||
| 84a5e319cb | |||
| 456b2ede8a | |||
| 8daf4d0696 | |||
| 322cfad5d9 | |||
| 2b2dc2021a | |||
| 9b732b19dc |
File diff suppressed because it is too large
Load Diff
@@ -4,7 +4,10 @@
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
font-family: '微软雅黑', sans-serif;
|
font-family: '微软雅黑', sans-serif;
|
||||||
}
|
}
|
||||||
|
html {
|
||||||
|
overflow-y: scroll;
|
||||||
|
scrollbar-gutter: stable ;
|
||||||
|
}
|
||||||
body {
|
body {
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
|
|
||||||
@@ -41,7 +44,7 @@ a {
|
|||||||
.header-nav-bar {
|
.header-nav-bar {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 1520px;
|
max-width: 1520px;
|
||||||
height: 4em;
|
height:64px;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
@@ -256,25 +259,36 @@ a {
|
|||||||
|
|
||||||
/* ========== 以下为原有样式,保持不变 ========== */
|
/* ========== 以下为原有样式,保持不变 ========== */
|
||||||
|
|
||||||
/* 原有的下拉框样式 */
|
/* 原有的下拉框样式 - 带动画效果 */
|
||||||
.header-dropdown {
|
.header-dropdown {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
max-width: 1920px;
|
max-width: 1920px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 4em;
|
top: 64px;
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
z-index: 199;
|
z-index: 999;
|
||||||
border-top: none;
|
border-top: none;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding-bottom: 2.375em;
|
padding-bottom: 2.375em;
|
||||||
display: none;
|
opacity: 0;
|
||||||
|
transform: translateY(-1.25em);
|
||||||
|
pointer-events: none;
|
||||||
|
transition: opacity 0.3s ease, transform 0.3s ease;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-nav-item:hover .header-dropdown {
|
/* .header-nav-item:hover .header-dropdown {
|
||||||
display: block;
|
opacity: 1;
|
||||||
|
transform: translateY(0);
|
||||||
|
pointer-events: auto;
|
||||||
|
} */
|
||||||
|
|
||||||
|
/* 添加动画锁定时的不响应状态 */
|
||||||
|
.header-dropdown.animating-out {
|
||||||
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tabs切换栏:居中,宽度100%(基于下拉框内容区) */
|
/* Tabs切换栏:居中,宽度100%(基于下拉框内容区) */
|
||||||
@@ -325,7 +339,7 @@ a {
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
max-width: 48%;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -340,10 +354,7 @@ a {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 单个分类区块 */
|
|
||||||
.header-category-block {
|
|
||||||
/* flex: 1; */
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.header-category-title {
|
.header-category-title {
|
||||||
@@ -385,13 +396,14 @@ a {
|
|||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
|
font-size: 16px;
|
||||||
|
max-width: 748px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.header-product-card {
|
.header-product-card {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
width: calc(50% - 0.75em);
|
width: calc(50% - 0.75em);
|
||||||
max-width: 22.625em;
|
max-width: 22.625em;
|
||||||
flex-shrink: 1;
|
flex-shrink: 1;
|
||||||
@@ -415,12 +427,12 @@ a {
|
|||||||
transform: translateY(-2px)
|
transform: translateY(-2px)
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-product-card:nth-child(1) {
|
/* .header-product-card:nth-child(1) {
|
||||||
margin-right: 1.5em;
|
|
||||||
}
|
} */
|
||||||
|
|
||||||
.header-product-card:nth-child(3) {
|
.header-product-card:nth-child(3) {
|
||||||
margin-right: 1.5em;
|
|
||||||
margin-top: 1.5em;
|
margin-top: 1.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -428,20 +440,7 @@ a {
|
|||||||
margin-top: 1.5em;
|
margin-top: 1.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*.header-product-img {*/
|
|
||||||
/* width: 22.625em;*/
|
|
||||||
/* height: 12.25em;*/
|
|
||||||
/* background-color: #f5f5f5;*/
|
|
||||||
/* display: flex;*/
|
|
||||||
/* align-items: center;*/
|
|
||||||
/* justify-content: center;*/
|
|
||||||
/* color: #999;*/
|
|
||||||
/*}*/
|
|
||||||
|
|
||||||
/*.header-product-img img {*/
|
|
||||||
/* width: 22.625em;*/
|
|
||||||
/* height: 12.25em;*/
|
|
||||||
/*}*/
|
|
||||||
.header-product-img {
|
.header-product-img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
aspect-ratio: 22.625 / 12.25;
|
aspect-ratio: 22.625 / 12.25;
|
||||||
@@ -451,7 +450,6 @@ a {
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
color: #999;
|
color: #999;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
/* border-radius: 0.5em; */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-product-img img {
|
.header-product-img img {
|
||||||
@@ -952,7 +950,7 @@ a {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.header-dropdown-content1 {
|
.header-dropdown-content1 {
|
||||||
padding: 0 12em;
|
padding: 2em 12em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-buy-dropdown {
|
.header-buy-dropdown {
|
||||||
@@ -980,7 +978,7 @@ a {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.header-dropdown-content1 {
|
.header-dropdown-content1 {
|
||||||
padding: 0 10em;
|
padding: 2em 10em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-buy-dropdown {
|
.header-buy-dropdown {
|
||||||
@@ -1008,7 +1006,7 @@ a {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.header-dropdown-content1 {
|
.header-dropdown-content1 {
|
||||||
padding: 0 8em;
|
padding: 2em 8em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-buy-dropdown {
|
.header-buy-dropdown {
|
||||||
@@ -1020,6 +1018,7 @@ a {
|
|||||||
row-gap: 60px;
|
row-gap: 60px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/* 蒙版层样式 */
|
||||||
#mhk {
|
#mhk {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
@@ -1028,6 +1027,7 @@ a {
|
|||||||
left: 0;
|
left: 0;
|
||||||
backdrop-filter: blur(5px);
|
backdrop-filter: blur(5px);
|
||||||
background-color: rgba(0, 0, 0, 0.5);
|
background-color: rgba(0, 0, 0, 0.5);
|
||||||
z-index: 88;
|
z-index: 90;
|
||||||
display: none;
|
display: none;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user