1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .page.ZiXunXiangQing {
- width: 100%;
- height: 100%;
- overflow-y: scroll;
- background: #fff;
- > .MainTitle {
- position: relative;
- overflow: hidden;
- margin-top: 20px;
- > text {
- &:nth-child(1) {
- display: block;
- text-align: center;
- font-size: 52px;
- font-weight: bold;
- line-height: 80px;
- z-index: 1;
- position: relative;
- }
- &:nth-child(2) {
- font-size: 24px;
- display: inline-block;
- position: absolute;
- z-index: 2;
- right: 40px;
- top: 50%;
- transform: translateY(-50%);
- -webkit-transform: translateY(-50%);
- }
- }
- }
- > .Container {
- margin-top: 40px;
- padding: 0 20px;
- padding-bottom: 40px;
- > image {
- width: 100%;
- }
- > text {
- display: block;
- font-size: 28px;
- line-break: 40px;
- color: #666;
- margin-top: 20px;
- }
- }
- }
|