| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- /* pages/home/index.less */
- .top-view {
- position: sticky;
- top: 0px;
- z-index: 999;
- }
- .banner-bg {
- display: flex;
- flex-direction: column;
- align-content: center;
- align-items: center;
- &__top {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- padding: 20px 10px;
- align-content: center;
- width: 95%;
- }
- .banner {
- height: 210px;
- width: 92%;
- .swiper-item {
- image {
- width: 100%;
- border-radius: 10px;
- }
- width: 100%;
- }
- }
- }
- .statistics {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- margin: 15px;
- padding-top: 15px;
- background-color: #fff;
- border-radius: 10px;
- &__top {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-content: center;
- align-items: center;
- border-radius: 0px 0px 10px 10px;
- .statistics-item {
- display: flex;
- flex-direction: column;
- justify-content: center;
- width: 100%;
-
- text:nth-child(1) {
- color: #333;
- font-size: 30rpx;
- font-weight: bold;
- text-align: center;
- padding-right: 10px;
- }
-
- text:nth-child(2) {
- color: #333;
- font-size: 24rpx;
- text-align: center;
- padding-right: 10px;
- }
- }
- }
- &__rate {
- background-color: #9DBAD6;
- display: flex;
- flex-direction: row;
- align-content: center;
- align-items: center;
- margin-top: 10px;
- border-radius: 0px 0px 10px 10px;
-
- .exchangerate {
- color: #fff;
- font-size: 13px;
- height: 25px;
- width: 100%;
- text-align: center;
- padding-top: 5px;
- border-radius: 10px 0px 10px 0px ;
- }
- }
- }
- .memberinfo {
- display: flex;
- flex-direction: column;
- &__top {
- display: flex;
- flex-direction: row;
- width: 100%;
- height: 44px;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1px solid #f0f0f0;
- .title {
- margin-left: 10px;
- color: #000;
- font-size: 14px;
- text-align: center;
- border-left: 5px solid #407DB8;
- width: 80px;
- }
- .more {
- color: #4C4C4E;
- font-size: 12px;
- margin-right: 10px;
- }
- }
- &__list {
- display: flex;
- flex-direction: column;
- width: 100%;
- align-content: center;
- align-items: center;
- &__item {
- display: flex;
- flex-direction: row;
- align-content: center;
- align-items: center;
- justify-content: space-around;
- width: 95%;
- border-bottom: 1px solid #f0f0f0;
- padding: 10px 0px;
- &__right {
- display: flex;
- flex-direction: column;
- width: 100%;
- align-content: center;
- align-items: center;
- margin-left: 10px;
- height: 100%;
- &__top, &__btm {
- height: 35px;
- }
- &__top, &__mid {
- display: flex;
- flex-direction: row;
- justify-content: start;
- align-items: center;
- width: 100%;
- .goodsname, .username {
- color: #000000;
- font-size: 15px;
- margin-right: 10px;
- font-weight: bold;
- }
- .tag {
- background-color: #407DB8;
- padding: 2.5px 10px;
- border-radius: 10px;
- color: #fff;
- font-size: 11px;
- margin-right: 5px;
- }
- }
- &__mid {
- height: 100%;
- }
- &__btm {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- .mobile, .wechat {
- font-size: 13px;
- color: #000;
- }
- }
- }
- }
- }
- }
|