123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- /* 返回 */
- .nav {
- background-color: #101010;
- z-index: 3;
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- /* height: 10%; */
- height: .88rem;
- display: flex;
- }
- .back{
- position: absolute;
- left: 0;
- top: 0;
- z-index: 3;
- width: 10%;
- height: .88rem;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .back img {
- width: .18rem;
- }
- /* 页面标题 */
- .pageTitle {
- height: .88rem;
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .pageTitle img {
- width: 1.6rem;
- height: .8rem;
- }
- /* 主要展示区 */
- .main {
- padding: 1rem .26rem;
- }
- h2{
- margin: .3rem 0;
- }
- .img {
- width: 100%;
- margin-bottom: .2rem;
- border-radius: .08rem;
- background-color: #1C1A1B;
- /* background: url('//Public/bibidd/images/nv2.png');
- background-repeat: no-repeat;
- background-position-x: center;
- background-position-y: center;
- background-size: cover; */
-
- }
- .shop {
- border: .02rem solid #000;
- margin-top: .6rem;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .shop p {
- text-align: center;
- margin-left: .2rem;
- }
- .fabulous,.collection {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 3.34rem;
- height: .8rem;
- background-color: #1C1A1B;
- border-radius: .16rem;
- }
- .fabulous img {
- width: .28rem;
- }
- .collection img {
- width: .32rem;
- }
- .details {
- border: .02rem solid #000;
- padding: .2rem;
- margin: .2rem .32rem;
- display: flex;
- }
- .details p {
- min-width: .8rem;
- /* float: left; */
- }
- .backToTop {
- position: fixed;
- bottom: 2.3rem;
- right: .3rem;
- width: .68rem;
- height: .68rem;
- display: none;
- }
- .backToTopImg {
- width: 100%;
- height: 100%;
- opacity: .5;
- }
- .imgBackground {
- width: 100%;
- height: 10rem;
- margin-bottom: .2rem;
- border-radius: .08rem;
- background-color: #1C1A1B;
- }
- .tip {
- width: 6rem;
- height: 1rem;
- color: #fff;
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%,-50%);
- display: none;
- }
- .textwrap {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .tiptext {
- background-color: #000;
- border-radius: .1rem;
- text-align: center;
- padding: .1rem .2rem;
- }
- /* 大图展示背景板 */
- .bigImgWrap {
- position: fixed;
- z-index:99;
- top: 0;
- left: 0;
- height: 100vh;
- background-color: rgba(0, 0, 0, .5);
- display: none;
- }
- .bigwrap {
- float: left;
- width: 100vw;
- height: 100vh;
- display: flex;
- flex-direction: column;
- display: -moz-flex;
- display: -o-flex;
- display: -webkit-flex;
- display: -ms-flex;
- justify-content:center;
- /* flex-direction: row-reverse; */
- align-items: center;
- }
- .guanbiBigImg {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- width: 95%;
- height: .7rem;
- }
- .guanbiBigImgb {
- width: .5rem;
- height: .5rem;
- }
- .bigImg {
- width:95%;
- z-index: 100;
- border-radius: .2rem;
- }
|