123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- .pageHome {
- width: 100%;
- height: 100vh;
- overflow: hidden;
- .pageIndex {
- width: 100%;
- height: calc(100vh - 380rpx);
- box-sizing: border-box;
- background-color: #fff;
- .tabs {
- height: 80rpx;
- border-bottom: 2rpx solid #f0f0f0;
- color: #333;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .tab {
- width: 50%;
- display: flex;
- justify-content: center;
- height: 100%;
- font-size: 28rpx;
- line-height: 80rpx;
- font-weight: 600;
- text {
- position: relative;
- height: 100%;
- &:before {
- content: '';
- position: absolute;
- bottom: -2rpx;
- left: 0;
- right: 0;
- height: 4rpx;
- background-color: #EB5A10;
- visibility: hidden;
- }
- }
- }
- .active {
- color: #EB5A10;
- text {
- &:before {
- visibility: visible;
- }
- }
- }
- }
- .search {
- margin: 20rpx 0;
- padding: 0 20rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .icon {
- width: 60rpx;
- height: 60rpx;
- margin-left: 12rpx;
- }
- }
- .content {
- height: calc(100% - 180rpx);
- box-sizing: border-box;
- overflow-y: auto;
- -webkit-overflow-scrolling: touch;
- .none {
- height: 320rpx;
- margin-top: 30%;
- }
- .main {
- display: grid;
- grid-template-columns: 1fr 1fr;
- align-items: start;
- gap: 20rpx;
- padding: 0 20rpx 10rpx;
- }
- .infoList {
- border-radius: 20rpx;
- background-color: #fff;
- box-sizing: border-box;
- overflow: hidden;
- box-shadow: 0 0 8rpx 0 #e6e6e6;
- position: relative;
- font-size: 0;
- .infoImg {
- width: 100%;
- height: 190rpx;
- }
- .info-box {
- line-height: 40rpx;
- font-size: 24rpx;
- color: #999999;
- padding: 0 20rpx 10rpx;
- position: relative;
- border-top: 1rpx solid #f3f3f3;
- .name {
- line-height: 56rpx;
- font-size: 28rpx;
- font-weight: 600;
- color: #161616;
- overflow: hidden; //超出隐藏
- text-overflow: ellipsis; //超出文本设置为...
- white-space: nowrap;
- }
- .describe {
- height: 40rpx;
- overflow: hidden; //超出隐藏
- text-overflow: ellipsis; //超出文本设置为...
- white-space: nowrap;
- }
- .info {
- height: 40rpx;
- display: flex;
- justify-content: space-between;
- align-content: center;
- }
- }
- .tags {
- position: absolute;
- left: 0;
- width: 100%;
- overflow: hidden;
- padding: 0;
- top: 0;
- text-align: right;
- box-sizing: border-box;
- line-height: 32rpx;
- .tag {
- display: inline-block;
- width: 84rpx;
- line-height: 32rpx;
- margin-right: 20rpx;
- margin-top: 20rpx;
- border-radius: 16rpx;
- text-align: center;
- font-size: 24rpx;
- font-weight: 400;
- color: #fff;
- }
- }
- }
- }
- }
- }
|