|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- /* pages/star/star.wxss */
-
- .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: #fff;
- 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: #fff;
- font-size: 21rpx;
- border-radius: 15rpx;
- }
-
- .mask {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: rgba(0, 0, 0, 0.5);
- }
-
- .mask>.ruleContent {
- position: relative;
- width: 562rpx;
- height: 971rpx;
- border-radius: 20rpx;
- }
-
- .mask>.ruleContent>.rule {
- position: relative;
- width: 100%;
- height: 100%;
- }
-
- .closeBtn {
- background: none;
- border: 2rpx solid #fff;
- color: #fff;
- border-radius: 50%;
- text-align: center;
- height: 40rpx;
- line-height: 40rpx;
- width: 40rpx;
- font-size: 30rpx;
- padding: 2rpx;
- position: absolute;
- }
-
- /* use cross as close button */
-
- .closeBtn::before {
- content: "\2716";
- }
|