123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- @import '@css/mixin.scss';
- .scoped-header {
- position: relative;
- height: 500px;
- .view-num {
- position: absolute;
- bottom: 20px;
- left: 10px;
- width: 90px;
- height: 30px;
- border-radius: 20px;
- overflow: hidden;
- .bg {
- position: absolute;
- top: 0;
- left: 0;
- width: 90px;
- height: 30px;
- background: #000;
- opacity: .6;
- z-index: 1;
- }
- .content {
- position: absolute;
- top: 0;
- left: 0;
- width: 90px;
- height: 30px;
- z-index: 2;
- text-align: center;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .i {
- width: 22px;
- height: 22px;
- margin-right: 2px;
- }
- .t {
- color: #bfbfbf;
- font-size: 20px;
- }
- }
- .sh-nav {
- text-align: center;
- position: absolute;
- bottom: 20px;
- left: 50%;
- &.t2 {
- .main {
- width: 180px;
- }
- .bg, .content {
- width: 180px;
- margin-left: -90px;
- }
- }
- .main {
- display: inline-block;
- width: 260px;
- height: 50px;
- }
- .bg {
- position: absolute;
- bottom: 0;
- left: 0;
- margin-left: -130px;
- z-index: 1;
- width: 260px;
- height: 50px;
- background: #000;
- opacity: .6;
- border-radius: 20px;
- }
- .content {
- position: absolute;
- bottom: 0;
- left: 0;
- margin-left: -130px;
- z-index: 2;
- width: 260px;
- height: 50px;
- color: #fff;
- font-size: 24px;
- border-radius: 20px;
- display: flex;
- justify-content: center;
- align-items: center;
- .op {
- display: inline-block;
- vertical-align: middle;
- border-radius: 10px;
- width: 80px;
- height: 40px;
- margin-right: 10px;
- line-height: 40px;
- text-align: center;
- font-size: 22px;
- &:last-child {
- margin-right: 0;
- }
- &.cur {
- background: $mainColor;
- }
- }
- }
- }
- .sh-img {
- width: 100%;
- height: 500px;
- position: relative;
- .icon {
- position: absolute;
- left: 50%;
- top: 160px;
- width: 120px;
- height: 120px;
- margin-left: -60px;
- .i {
- width: 120px;
- height: 120px;
- position: absolute;
- left: 0;
- top: 0;
- &.i1 {
- z-index: 11;
- }
- &.i2 {
- z-index: 12;
- }
- }
- }
- .img {
- width: 100%;
- height: 500px;
- }
- }
- .sh-icon-right {
- position: absolute;
- right: 20px;
- bottom: 180px;
- width: 80px;
- height: 80px;
- z-index: 99;
- &.pk {
- bottom: 290px;
- }
- .img {
- width: 80px;
- height: 80px;
- }
- }
- }
- .scoped-hx-vr {
- position: absolute;
- top: 60px;
- left: 0;
- z-index: 999;
- .i {
- position: absolute;
- bottom: 0;
- right: 0;
- width: 50px;
- height: 50px;
- }
- .text {
- height: 50px;
- line-height: 50px;
- position: relative;
- width: 140px;
- border-radius: 0 50px 50px 0;
- overflow: hidden;
- .bg {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: #000;
- opacity: .5;
- z-index: 1;
- }
- .t {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- color: #fff;
- font-weight: bold;
- font-size: 24px;
- z-index: 2;
- padding-left: 10px;
- }
- }
- }
|