| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- /* 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: grid;
- justify-content: center;
- text-align: center;
- }
- text {
- margin-top: 5px;
- font-size: 26rpx;
- color: #fff;
- }
- }
- .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: #333;
- 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 {
- right: 5px;
- bottom: 18%;
- }
- .calculator {
- right: 5px;
- }
|