This commit is contained in:
duanxiaohai 2024-09-04 11:41:42 +08:00
parent 3c311f4e92
commit 0516a59045
3 changed files with 47 additions and 55 deletions

BIN
dist.zip

Binary file not shown.

View File

@ -1650,14 +1650,14 @@ onMounted(() => {
display: flex;
flex-direction: column;
align-items: center;
padding-left: 6px;
// padding-left: 6px;
.fundingContent {
display: flex;
align-items: center;
justify-content: space-around;
margin-top: 10px;
width: 93.2%;
width: 99%;
// min-height: 34px;
padding: 4px 0;
box-sizing: border-box;
@ -1675,6 +1675,26 @@ onMounted(() => {
padding-left: 50px;
}
}
/* 滚动条整体部分 */
&::-webkit-scrollbar {
width: 5px;
// height: 10px;
}
/* 滚动槽 */
&::-webkit-scrollbar-track {
border-radius: 1px;
background: rgba(0, 128, 231, 0.56);
-webkit-box-shadow: inset 0 0 6px rgba(139, 139, 139, 0.3);
}
/* 滚动条滑块样式 */
&::-webkit-scrollbar-thumb {
background-clip: content-box;
border-radius: 6px;
background: rgba(0, 162, 231, 1);
-webkit-box-shadow: inset 0 0 6px rgba(20, 20, 20, 0.3);
}
}
}
@ -1747,27 +1767,6 @@ onMounted(() => {
/* Chrome Safari */
}
/* 滚动条整体部分 */
.rolling::-webkit-scrollbar {
width: 5px;
// height: 10px;
}
/* 滚动槽 */
.rolling::-webkit-scrollbar-track {
border-radius: 1px;
background: rgba(0, 128, 231, 0.56);
-webkit-box-shadow: inset 0 0 6px rgba(139, 139, 139, 0.3);
}
/* 滚动条滑块样式 */
.rolling::-webkit-scrollbar-thumb {
background-clip: content-box;
border-radius: 6px;
background: rgba(0, 162, 231, 1);
-webkit-box-shadow: inset 0 0 6px rgba(20, 20, 20, 0.3);
}
.t_1 {
margin: 10px auto;
width: 100%;

View File

@ -1148,10 +1148,9 @@ onBeforeUnmount(() => {
align-items: center;
.funding {
width: 520px;
width: 500px;
height: 34px;
margin-top: 20px;
// padding: 10px 0 14px 0;
box-sizing: border-box;
background-image: url(@/assets/eduImg/jyImg17.png);
background-repeat: no-repeat;
@ -1159,11 +1158,6 @@ onBeforeUnmount(() => {
display: flex;
align-items: center;
justify-content: space-around;
// align-items: center;
// justify-content: center;
// flex-direction: column;
// justify-content: space-between;
span {
font-family: PingFangSC, PingFang SC;
font-weight: 500;
@ -1182,14 +1176,14 @@ onBeforeUnmount(() => {
display: flex;
flex-direction: column;
align-items: center;
padding-left: 6px;
// padding-left: 6px;
.fundingContent {
display: flex;
align-items: center;
justify-content: space-around;
margin-top: 10px;
width: 92%;
width: 99%;
// height: 34px;
padding: 4px 0;
box-sizing: border-box;
@ -1212,6 +1206,26 @@ onBeforeUnmount(() => {
// padding-left: 50px;
}
}
/* 滚动条整体部分 */
&::-webkit-scrollbar {
width: 5px;
// height: 10px;
}
/* 滚动槽 */
&::-webkit-scrollbar-track {
border-radius: 1px;
background: rgba(0, 128, 231, 0.56);
-webkit-box-shadow: inset 0 0 6px rgba(139, 139, 139, 0.3);
}
/* 滚动条滑块样式 */
&::-webkit-scrollbar-thumb {
background-clip: content-box;
border-radius: 6px;
background: rgba(0, 162, 231, 1);
-webkit-box-shadow: inset 0 0 6px rgba(20, 20, 20, 0.3);
}
}
}
@ -1283,25 +1297,4 @@ onBeforeUnmount(() => {
display: none;
/* Chrome Safari */
}
/* 滚动条整体部分 */
.rolling::-webkit-scrollbar {
width: 5px;
// height: 10px;
}
/* 滚动槽 */
.rolling::-webkit-scrollbar-track {
border-radius: 1px;
background: rgba(0, 128, 231, 0.56);
-webkit-box-shadow: inset 0 0 6px rgba(139, 139, 139, 0.3);
}
/* 滚动条滑块样式 */
.rolling::-webkit-scrollbar-thumb {
background-clip: content-box;
border-radius: 6px;
background: rgba(0, 162, 231, 1);
-webkit-box-shadow: inset 0 0 6px rgba(20, 20, 20, 0.3);
}
</style>