137 lines
2.3 KiB
Plaintext
137 lines
2.3 KiB
Plaintext
/* navigationBar.wxss */
|
|
.navigation-container {
|
|
position: fixed;
|
|
width: 100%;
|
|
z-index: 99;
|
|
top: 0;
|
|
left: 0;
|
|
background-color: rgba(0,0,0,0);
|
|
}
|
|
.navigation-bar {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
.navigation-buttons {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-left: 10px;
|
|
border: 1px solid rgba(0, 0, 0, 0.05);
|
|
box-sizing: border-box;
|
|
border-radius: 15px;
|
|
background-color: rgba(0,0,0,0);
|
|
}
|
|
.nav-img{
|
|
height: 16px;
|
|
width: 16px;
|
|
}
|
|
.navigation-title {
|
|
position: absolute;
|
|
left: 104px;
|
|
right: 104px;
|
|
text-align: center;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
color: #fff;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
/* pages/index.wxss */
|
|
.container{
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
/* background-image:url("~@/img/banner.png");
|
|
background-repeat: no-repeat;
|
|
background-size: 100%; */
|
|
/* background:red; */
|
|
|
|
position: relative;
|
|
padding-top: 20rpx;
|
|
|
|
}
|
|
.container .bac_img{
|
|
width:100%;
|
|
height: 911rpx;
|
|
margin:auto;
|
|
position: absolute;
|
|
z-index: 1;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
.container .content{
|
|
width:100%;
|
|
height: 911rpx;
|
|
margin:auto;
|
|
position: relative;
|
|
z-index: 1;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
|
|
.page-title{
|
|
color: #fff;
|
|
text-align: center;
|
|
padding:100rpx 0;
|
|
}
|
|
.page-title1{
|
|
margin-top: 50rpx;
|
|
color: #fff;
|
|
font-size: 36rpx;
|
|
width: 90%;
|
|
margin: auto;
|
|
padding:10rpx 20rpx;
|
|
padding-top: 100rpx;
|
|
}
|
|
.page-title2{
|
|
color: #fff;
|
|
font-weight: bold;
|
|
font-size: 54rpx;
|
|
width: 90%;
|
|
margin: auto;
|
|
padding:10rpx 20rpx;
|
|
}
|
|
.page-title3{
|
|
color: #fff;
|
|
background:#14c121;
|
|
padding:10rpx 20rpx;
|
|
width: 90%;
|
|
margin:20rpx auto;
|
|
font-weight: bold;
|
|
font-size: 36rpx;
|
|
border-radius: 10rpx;
|
|
}
|
|
.page-url{
|
|
position: relative;
|
|
top: 70rpx;
|
|
width: 100%;
|
|
height: auto;
|
|
/* height: 500rpx; */
|
|
/* background: red; */
|
|
text-align: center;
|
|
}
|
|
.page-url .page-url-img{
|
|
width:120rpx;
|
|
margin:auto auto 50rpx auto;
|
|
height: 120rpx;
|
|
}
|
|
|
|
.page-url-title{
|
|
padding: 20rpx 0;
|
|
/* border-bottom: 10rpx solid #14c121; */
|
|
/* display: inline; */
|
|
/* width: 100%; */
|
|
/* margin: auto; */
|
|
}
|
|
.page-url-title-border{
|
|
margin: 20rpx 0;
|
|
top: 10rpx;
|
|
border-bottom: 6rpx solid #14c121;
|
|
width: 35%;
|
|
border-radius: 10rpx;
|
|
/* display: inline; */
|
|
margin: auto;
|
|
} |