123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- @banner2: banner2;
- .@{banner2} {
- // 如果在第一屏且导航位置为 relative, 一屏为 height: calc(100vh - 64px);
- width: 100%;
- height: ~"calc(100vh - 64px)";
- position: relative;
- border-color: #666;
- background: #fff;
- .banner-anim {
- height: 100%;
- }
- & .queue-anim-leaving {
- position: relative !important;
- width: auto;
- }
- .banner-user-elem {
- height: 100%;
- color: #fff;
- position: relative;
- overflow: hidden;
- }
- .bg {
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
- overflow: hidden;
- background-size: cover;
- }
- .bg0 {
- background: url("https://zos.alipayobjects.com/rmsportal/bXNBIyzSLHaycUGDzwLG.jpg") center;
- background-size: cover;
- height: 100%;
- width: ~"calc(100% + 100px)";
- left: -50px;
- &:before {
- width: 100%;
- height: 100%;
- content: '';
- background: fade(#000, 35);
- display: block;
- }
- }
- .banner-user-elem .banner-user-title {
- font-size: 22px;
- top: 40%;
- }
- .banner-user-elem .banner-user-text {
- top: 40%;
- }
- &-page {
- position: relative;
- top: 20%;
- max-width: 1200px;
- margin: auto;
- }
- &-text-wrapper {
- display: inline-block;
- font-size: 14px;
- color: @template-text-color-light;
- width: 400px;
- text-align: left;
- .@{banner2}-title {
- left: 0;
- margin: auto;
- position: relative;
- font-size: 56px;
- }
- & .@{banner2}-content {
- word-wrap: break-word;
- margin: auto auto 20px;
- font-weight: lighter;
- }
- button {
- border: 1px solid #fff;
- color: #fff;
- background: transparent;
- transition: background .45s @ease-in, border .45s @ease-in;
- line-height: 36px;
- font-size: 16px;
- height: 36px;
- & span {
- text-shadow: 0 0 0 rgba(0, 0, 0, 0);
- transition: text-shadow .45s @ease-out;
- }
- &:hover {
- color: #fff;
- border-color: @primary-color;
- background: @primary-color;
- transition: background .45s @ease-out, border .45s @ease-out;
- & span {
- text-shadow: 1px 1px 3px rgba(0, 0, 0, .35);
- }
- }
- }
- }
- &-icon {
- bottom: 20px;
- font-size: 24px;
- position: absolute;
- z-index: 10;
- left: 50%;
- margin-left: -12px;
- color: @template-text-color-light;
- }
- }
- .banner-anim-thumb-default span {
- width: 10px;
- height: 10px;
- border-radius: 10px;
- background: rgba(255, 255, 255, .5);
- }
- @media screen and (max-width: 414px) {
- .@{banner2} {
- &-text-wrapper {
- width: 90%;
- left: 0;
- margin: auto;
- padding: 0;
- text-align: center;
- display: block;
- .logo {
- width: 90%;
- left: 0;
- }
- }
- }
- }
|