123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- .gamelist {
- }
- .gamelist .gamelist_item {
- position: relative;
- }
- .gamelist .gamelist_item .top {
- display: flex;
- align-items: center;
- padding: 34rpx 45rpx 34rpx 38rpx;
- position: relative;
- width: 100%;
- }
- .gamelist .gamelist_item .button {
- position: absolute;
- right: 45rpx;
- top: 72rpx;
- }
- .gamelist .gamelist_item .top::before {
- content: '';
- height: 1px;
- width: 548rpx;
- position: absolute;
- right: 34rpx;
- background-color: #e6e6e6;
- bottom: 0;
- }
- .gamelist_item .icon {
- width: 130rpx;
- height: 130rpx;
- border-radius: 30rpx;
- overflow: hidden;
- margin-right: 24rpx;
- }
- .gamelist_item .info {
- height: 130rpx;
- display: flex;
- max-width: 380rpx;
- align-items: flex-start;
- flex-direction: column;
- justify-content: space-between;
- }
- .gamelist_item .info_name {
- display: flex;
- align-items: center;
- }
- .gamelist_item .info_name .name {
- float: left;
- display: block;
- font-size: 32rpx;
- color: #333;
- max-width: 140px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- line-height: 45rpx;
- font-weight: 700;
- }
- .gamelist_item .info_name .Award {
- float: left;
- height: 36rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 0 10rpx;
- margin-left: 15rpx;
- border-radius: 100px;
- border-bottom-left-radius: 0px;
- background-color: #ff1a19;
- font-size: 18rpx;
- color: #fff;
- }
- .gamelist_item .info_des {
- font-size: 26rpx;
- line-height: 37rpx;
- height: 37rpx;
- width: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- color: #8b8b8b;
- }
- .gamelist_item .info_num {
- font-size: 24rpx;
- line-height: 33rpx;
- color: #e05b10;
- }
- .gamelist .gamelist_item .bottom {
- padding: 0 45rpx 0 38rpx;
- }
- .gamelist .gamelist_item .bottom_cnt {
- height: 85rpx;
- border-top: 2rpx solid #f0f0f0;
- }
- .gamelist .gamelist_item .bottom .left {
- }
- .gamelist .gamelist_item .bottom .left .text {
- font-size: 26rpx;
- float: left;
- color: #333;
- }
- .gamelist .gamelist_item .bottom .left .Award {
- float: left;
- height: 36rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 0 10rpx;
- margin-left: 15rpx;
- background-color: #fff;
- font-size: 20rpx;
- color: #ff1a19;
- box-shadow: 0 2px 4px 0 #ff1a19;
- border-radius: 22px 20px 20px 0;
- }
- .gamelist .gamelist_item .bottom .right {
- font-size: 26rpx;
- color: #ff9500;
- }
|