123456789101112131415161718192021222324252627282930313233343536 |
- .components.Adv {
- width: 100%;
- position: fixed;
- top: 0;
- left: 0;
- bottom: 0;
- z-index: 1000;
- background: rgba(0, 0, 0, 0.6);
- >view {
- width: 100%;
- >view {
- padding: 0 134px;
- position: relative;
- overflow: hidden;
- text-align: center;
- >.Img {
- width: 100%;
- position: relative;
- overflow: hidden;
- padding-bottom: 150%;
- background: #eee;
- border-radius: 24px;
- >image {
- width: 100%;
- height: 100%;
- }
- }
- >text {
- display: inline-block;
- font-size: 60px;
- color: #fff;
- margin-top: 30px;
- }
- }
- }
- }
|