| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- /* pages/home/home.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: 5px;
- 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;
- }
- }
- .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 {
- width: 23px;
- text-align: center;
- display: flex;
- align-items: center;
- font-size: 12px;
- margin: 3px;
- color: #fff;
- border-radius: 5px;
- position: fixed;
- z-index: 1;
- box-shadow: 3px 3px 3px #aaa;
- bottom: 12%;
- height: 90px;
- }
- .certsearch {
- right: 5px;
- background-color: lightcoral;
- bottom: 25%;
- }
- .calculator {
- right: 5px;
- background-color: hotpink;
- }
|