12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- /* miniprogram/pages/home/index.wxss */
- .home {
- padding: 10rpx;
- }
- .br {
- height: 1em;
- }
- .home .title {
- font-size: 16px;
- text-indent: 2em;
- }
- .home .subTitle {
- font-size: 12px;
- margin: 10rpx 0;
- color: #999;
- }
- .icon_container {
- width: 750rpx;
- margin-left: -10rpx;
- font-size: 12px;
- color: #666;
- }
- .icon_container .icon_item_cell {
- box-sizing: border-box;
- display: inline-block;
- width: 250rpx;
- padding: 5rpx;
- }
- .icon_container .icon_content {
- text-align: center;
- border-radius: 10rpx;
- padding: 46rpx 0 20rpx 0;
- box-shadow: 3rpx 3rpx 20rpx rgba(0, 0, 0, .1);
- }
- .icon_container .icon_title {
- padding: 15rpx 0;
- }
- .icon_container .img {
- width: 4em;
- height: 4em;
- }
- .videoList {
- margin-bottom: 20rpx;
- }
- .videoList .title {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .newList {
- width: 100%;
- font-size: 0;
- height: 240rpx;
- overflow: hidden;
- margin-bottom: 20rpx;
- border-radius: 22.5rpx;
- box-shadow: 3rpx 3rpx 20rpx rgba(0, 0, 0, .1);
- }
- .newList .newsImg {
- width: 240rpx;
- height: 240rpx;
- }
- .newList .newsTitle {
- width: 100%;
- height: 240rpx;
- font-size: 14px;
- margin-top: -240rpx;
- padding: 20rpx 10rpx 20rpx 250rpx;
- box-sizing: border-box;
- }
- .newList .top {
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 3;
- overflow: hidden;
- }
|