|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /* pages/star/star.wxss */
- .showView{
- height: calc(100vh - 153rpx);
- background-color: #ffffff
- }
- .home{
- position: relative;
- height: 100%;
- overflow: hidden;
- }
- .home>.bg{
- position: absolute;
- bottom: 0;
- width: 750rpx;
- height: 1353rpx;
- }
- .home>.logo1{
- position: absolute;
- top: 0;
- left: 60rpx;
- width: 175rpx;
- height: 150rpx;
- }
- .home>.logo2{
- position: absolute;
- top: 46rpx;
- right: 34rpx;
- width: 204rpx;
- height: 40rpx;
- }
- .ruleBtn{
- position: absolute;
- width: 153rpx;
- height: 46rpx;
- line-height: 46rpx;
- font-size: 24rpx;
- right: 0;
- top: 196rpx;
- color: #ffffff;
- background-color: rgba(35, 24, 21, 0.63);
- border-top-left-radius: 20rpx;
- border-bottom-left-radius: 20rpx;
- padding-left: 20rpx;
- box-sizing: border-box;
- }
- .propagandaBox{
- position: absolute;
- width: 100%;
- height: 76rpx;
- bottom: 457rpx;
- left: 0;
- text-align: center;
- background-color: rgba(11, 40, 109, 0.79);
- }
- .home>.btnBox{
- position: absolute;
- width: 100%;
- text-align: center;
- left: 0;
- bottom: 15rpx;
- }
- .home>.btnBox>.btn{
- width: 278rpx;
- height: 47rpx;
- line-height: 47rpx;
- display: inline-block;
- background-color: #345489;
- margin: 0 10rpx;
- color: #ffffff;
- font-size: 21rpx;
- border-radius: 15rpx;
- }
|