| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- /* pages/home/index.less */
- .banner {
- height: 210px;
-
- .swiper-item, image {
- width: 100%;
- }
- }
- .statistics {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- margin: 10px;
- background-color: #f0f0f0;
- padding: 15px;
- border-radius: 10px;
- box-shadow: 5px 5px 5px #aaa;
- .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;
- }
- .exchangerate:nth-child(1) {
- color: #fff;
- font-size: 30rpx;
- font-weight: bold;
- text-align: center;
- padding-left: 10px;
- }
- .exchangerate:nth-child(2) {
- font-size: 22rpx;
- color: #fff;
- text-align: center;
- padding-left: 10px;
- }
- }
- }
- .gird-view {
- display: flex;
- flex-direction: row;
- align-items: center;
- align-content: center;
- justify-content: space-between;
- border-radius: 10px;
- background-color: #f0f0f0;
- padding: 10px 0px;
- &__item {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- align-content: center;
- width: 100%;
- &__icon {
- width: 60px;
- height: 60px;
- }
- &__title {
- color: #4D565D;
- font-size: 24rpx;
- width: 100%;
- text-align: center;
- }
- }
- }
- .msg-view {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- align-content: center;
- justify-content: center;
- &__top {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- width: 95%;
- align-items: center;
- align-content: center;
- van-tabs {
- width: 100px;
- }
- &__more {
- width: 20px;
- height: 20px;
- }
- }
- .view_top_content {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
-
- .msg_date {
- font-size: 22rpx;
- color: #999999;
- text-align: left;
- width: 120px;
- }
-
- .msg_title {
- font-size: 28rpx;
- color: #333333;
- text-align: left;
- }
- }
- }
- .certsearch, .calculator {
- display: flex;
- align-items: center;
- margin: 3px;
- border-radius: 5px;
- position: fixed;
- z-index: 999;
- bottom: 10%;
-
- background-image: url('../../images/home-zscx.png');
- background-size: 100% 100%;
- height: 50px;
- width: 50px;
- }
- .certsearch, .calculator {
- background-size: 100% 100%;
- width: 50px;
- height: 50px;
- }
- .certsearch {
- right: 5px;
- bottom: 16%;
- }
- .calculator {
- right: 5px;
- }
|