123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- @charset "UTF-8";
- /* 页面左右间距 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /*颜色*/
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 功能栏字体大小 */
- /*功能栏左侧小图标*/
- .Search-box {
- padding-left: 20rpx;
- padding-right: 20rpx;
- height: 100rpx;
- background: #ffffff;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- }
- .Search-box .Search-box-sort {
- font-size: 30rpx;
- font-weight: 500;
- color: #666666;
- }
- .Search-box .Search-box-sort .sort-text {
- width: 57rpx;
- height: 29rpx;
- font-size: 30rpx;
- font-weight: 500;
- color: #333333;
- line-height: 58rpx;
- margin-right: 19rpx;
- }
- .Search-box .Search-box-sort .sort-img {
- width: 21rpx;
- height: 11rpx;
- margin-bottom: 4rpx;
- }
- .Search-box .Search-box-size {
- width: 630rpx;
- height: 65rpx;
- border-radius: 32rpx;
- background-color: #f1f1f1;
- padding-left: 36rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- }
- .Search-box .Search-box-size .box-img {
- height: 32rpx;
- width: 32rpx;
- margin-right: 16rpx;
- }
- .Search-box .Search-box-size .box-word {
- width: 100%;
- font-size: 22rpx;
- font-weight: 500;
- color: #cdcbcb;
- line-height: 55rpx;
- }
- .content {
- line-height: 1;
- }
- .content .list-box {
- width: 725rpx;
- height: 200rpx;
- margin: 20rpx auto 0;
- background: #FFFFFF;
- box-shadow: 0px 5rpx 5rpx 0px rgba(35, 24, 21, 0.06);
- border-radius: 7rpx;
- padding: 0 20rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- }
- .content .list-box .box-left {
- width: 230rpx;
- height: 145rpx;
- margin-right: 20rpx;
- }
- .content .list-box .box-left .left-img {
- width: 230rpx;
- height: 145rpx;
- }
- .content .list-box .box-right {
- width: 430rpx;
- height: 145rpx;
- }
- .content .list-box .box-right .right-top {
- font-size: 25rpx;
- font-weight: bold;
- color: #333333;
- margin-bottom: 24rpx;
- }
- .content .list-box .box-right .right-center {
- width: 362rpx;
- font-size: 21rpx;
- font-weight: bold;
- color: #999999;
- line-height: 33rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .content .list-box .box-right .right-foot {
- font-size: 21rpx;
- font-weight: bold;
- color: #999999;
- line-height: 31rpx;
- text-align: right;
- margin-top: 13rpx;
- }
|