123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- /* pages/home/home.wxss */
- *{
- margin: 0;
- padding: 0;
- }
- .heads{
- padding: 40px 30px 0px 30px;
- overflow: hidden;
- }
- .heads-left{
- color: #3399FF;
- }
- .heads-right{
- width: 60px;
- height: 60px;
- }
- .heads-right image{
- width: 100%;
- height: 100%;
- }
- .left{
- float: left;
- }
- .right{
- float: right;
- }
- #wine{
- width: 100%;
- height: 100%;
- }
- .canvas{
- width: 80%;
- height: 100%;
- position: absolute;
- left: 10%;
- border-radius: 10px;
- overflow: hidden;
- top: 5%;
- z-index: -1;
- }
- .canvasfalse{
- width: 80%;
- height: 90%;
- position: fixed;
- left: 10%;
- border-radius: 20px;
- overflow: hidden;
- top: 5%;
- z-index: -1;
- background:rgba(255,255,255,1);
- box-shadow:0px 0px 100px rgba(0,0,0,0.15);
- }
- .canvas image{
- width: 100%;
- height: 100%;
- }
- .camvas-head{
- position: absolute;
- top: 0;
- height: 57px;
- width: 95%;
- background:rgba(0,0,0,0.4);
- font-size: 14px;
- padding: 10px 10px 0px 10px;
- color:rgba(255,255,255,1);
-
-
- }
- .canvastime{
- font-size: 12px;
- margin-top: 10px;
- }
- .addto {
- width: 60px;
- height: 60px;
- position: absolute;
- z-index: 99;
- top: 181px;
- right: 3px;
- }
- .addto img{
- width: 100%;
- height: 100%;
- }
- .help{
- width: 77px;
- height: 30px;
- background: rgba(187,187,187,1);
- border-radius: 30px 0px 0px 30px;
- font-size: 13px;
- line-height: 30px;
- color: rgba(255,255,255,1);
- position: absolute;
- right: -4rem;
- bottom: 181px;
- text-align: center; transition: all 0.2s ease-in;
- }
- /* 没登录状态 */
- .notLoggedin{
- width: 87%;
- height: 36%;
- margin: 0 auto;
- margin-top: 38%;
- }
- .notLoggedin img{
- width: 100%;
- height: 100%;
- margin: 0 auto;
- }
- .notLoggedin-text{
- font-size: 16px;
- color: #FDB456;
- margin-top: 8px;
- text-align: center;
- }
- .notLoggedin-bt{
- width: 153px;
- height: 45px;
- line-height: 45px;
- background: linear-gradient(272deg,rgba(255,201,133,1) 0%,rgba(255,177,78,1) 100%);
- box-shadow: 0px 4px 8px rgba(251,145,11,0.2);
- opacity: 1;
- border-radius: 10px;
- font-size: 16px;
- color: #D17F00;
- text-align: center;
- margin: 0 auto;
- margin-top: 22px;
- }
- .vip image{
- width:60px;
- height: 30px;
- margin-left: 10px;
- }
- .tips{
- position: fixed;
- width: 100%;
- height: 100%;
- bottom: 0;
- background: rgba(0,0,0,0.8);
- z-index:511;
- }
- .tipsMane{
- width: 70%;
- height:326px;
- background: #fff;
- z-index: 999;
- position: absolute;
- top: 30%;
- left: 15%;
- border-radius:10px;
- }
- .tipsTitle{
- padding: 30px 0;
- text-align: center;
- font-size:32px;
- }
- .tipsTEXT{
- font-size: 28px;
- text-align: center;
- color: #333333;
- }
- .tipsBt{
- width: 80%;
- height: 80px;
- line-height: 80px;
- background:#0886F5;
- text-align: center;
- font-size: 32px;
- margin: 0 auto;
- color: #fff;
- border-radius:10px;
- margin-top: 35px;
- }
- .tipsimg{
- width: 68px;
- height: 68px;
- background: #fff;
- position: absolute;
- z-index: 999;
- top: 350px;
- border-radius:50%;
- left: 44%;
- }
- .tipsimg img{
- width: 100%;
- height: 100%;
- }
- .vipimg{
- width: 24px;
- height: 18px;
- }
|