This commit is contained in:
duanliang
2025-06-25 18:39:12 +08:00
parent 668a13dcdc
commit 721cb76057
2 changed files with 11 additions and 5 deletions

View File

@@ -461,7 +461,6 @@
.video-box { .video-box {
display: flex; display: flex;
flex: 1; flex: 1;
flex: 1;
height: vh(950); height: vh(950);
margin-top: vh(120); margin-top: vh(120);
margin-left: vw(10); margin-left: vw(10);
@@ -481,6 +480,7 @@
box-sizing: border-box; box-sizing: border-box;
background-image: url('@/assets/images/item-primary.png'); background-image: url('@/assets/images/item-primary.png');
background-size: 100% 100%; background-size: 100% 100%;
margin-bottom:vh(10);
> img { > img {
width: 100%; width: 100%;
height: 100%; height: 100%;
@@ -557,7 +557,7 @@
height: vh(275); height: vh(275);
padding: vh(10) vw(10); padding: vh(10) vw(10);
box-sizing: border-box; box-sizing: border-box;
// margin-bottom:1%; margin-bottom:vh(6);
background-image: url('/src/assets/images/item-primary.png'); background-image: url('/src/assets/images/item-primary.png');
background-size: 100% 100%; background-size: 100% 100%;
&:hover { &:hover {

View File

@@ -533,20 +533,26 @@ import PubSub from 'pubsub-js'
} }
.tabs-box{ .tabs-box{
display:flex; display:flex;
padding:vh(10);
padding-bottom:0;
.tabs-list{ .tabs-list{
flex:1; flex:1;
display:flex; display:flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
.t-item{ .t-item{
margin:0 vw(10); // margin:0 vw(10);
font-size:vw(18); font-size:vw(18);
color:#fff; color:#fff;
padding:vh(5) 0; padding:vh(5) 0;
background: url('@/assets/images/title-2.png') no-repeat center 100%;
background-size:100% 100%;
padding:vw(10) vw(35);
} }
.tabs-active{ .tabs-active{
color:#409eff; // color:#409eff;
border-bottom:1px solid #409eff; background: url('@/assets/images/title-2-select.png') no-repeat center 100%;
background-size:100% 100%;
} }
} }