所有问题全部解决

This commit is contained in:
zhcnyuyang 2025-05-24 03:49:42 +08:00
parent e7ba9860ff
commit 0acf4e869c
3 changed files with 71 additions and 9 deletions

View File

@ -43,12 +43,14 @@ export default {
@include media-breakpoint-between(xs, md) {
background-image: url('/bottom/bg_wep.png');
padding-left: 32px;
padding-right: 32px;
margin-top: 120px;
}
@include media-breakpoint-up(md) {
background-image: url('/bottom/bg_pc.png');
padding-left: 100px;
padding-right: 100px;
}
}

View File

@ -30,6 +30,7 @@ export default {
@include media-breakpoint-between(xs, md) {
background-image: url('/bottom/bg_wep.png');
padding-left: 32px;
padding-right: 32px;
padding-top: 66px;
padding-bottom: 66px;
}
@ -38,6 +39,7 @@ export default {
margin-top: 0px;
background-image: url('/bottom/bg_pc.png');
padding-left: 100px;
padding-right: 100px;
padding-top: 109px;
padding-bottom: 109px;
}

View File

@ -38,7 +38,17 @@
<span class="itemtitle">EMAIL</span>
<br/>
<span class="itemcontent">
kdbd@kdesign.top&nbsp;商务<br/>kdhr@kdesign.top&nbsp; 招聘
<!-- kdbd@kdesign.top&nbsp;商务<br/>kdhr@kdesign.top&nbsp; 招聘-->
<table>
<tr>
<td style="width: 60px;">kdbd@kdesign.top</td>
<td style="width: 50px;">商务</td>
</tr>
<tr>
<td style="width: 60px;">kdhr@kdesign.top</td>
<td style="width: 50px;">招聘</td>
</tr>
</table>
</span>
</div>
<div id="ADDRESS">
@ -99,6 +109,8 @@ export default {
justify-content: flex-start;
color:white;
width: 100%;
//
overflow: hidden;
}
@include media-breakpoint-between(xs, md) {
@ -166,14 +178,60 @@ export default {
#QRCODE2 {
display: flex;
flex-direction: column;
width: 50%;
width: 50%; //
@include media-breakpoint-between(xs, md) {
padding-top: 9px;
justify-content: flex-start;
padding-top: 9px; //
justify-content: flex-start; //
align-items: flex-start; // ()
}
@include media-breakpoint-up(md) {
padding-top: 47px; //
justify-content: flex-end; // ( center)
align-items: center; // ()
}
}
#QRCODE2 > div {
@include media-breakpoint-between(xs, md) {
justify-content: flex-start; // (#wechatpublic) ()
}
@include media-breakpoint-up(md) {
padding-top: 47px;
justify-content: flex-end;
justify-content: center;
}
}
// 3. #QRCODE2 .itemtitle
#QRCODE2 .itemtitle {
// .itemtitle text-align: left
@include media-breakpoint-between(xs, md) {
text-align: left; // ()
}
@include media-breakpoint-up(md) {
text-align: center; // ()
}
}
#QRCODE2 .qritem { // #wechatpublic
@include media-breakpoint-between(xs, md) {
align-items: flex-start; // (img, span.itemcontent) ()
}
@include media-breakpoint-up(md) {
align-items: center; // (img, span.itemcontent) ()
}
}
#QRCODE2 .qritem .itemcontent { // #wechatpublic .itemcontent
// .itemcontent text-align: left
@include media-breakpoint-between(xs, md) {
text-align: left; // ()
}
@include media-breakpoint-up(md) {
text-align: center; // ()
}
}