123456789101112131415161718192021222324252627282930313233343536 |
- .Example {
- width: 100%;
- margin-top: 100px;
- /* padding: 0 100px; */
- background-image: url('../img/初级back.png');
- h1 {
- position: relative;
- top: 0;
- display: inline-block;
- font-size: 64px;
- font-weight: 500;
- line-height: 92.67px;
- padding-left: 100px;
- /* background: linear-gradient(to right,#3681FC,#fff); */
- z-index: 10;
- }
- h1::after {
- content: '';
- width: 100%;
- padding: 12px 0;
- background: linear-gradient(to right, rgba(54, 129, 252, 1), rgba(54, 129, 252, 0));
- position: absolute;
- top: 72px;
- left: 0;
- z-index: -1;
- }
- .Example_content{
- .contentStyle{
- img{
- width: 100%;
- }
- }
- }
- }
|