1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /* pages/previousEditions/index.wxss */
- .scrollarea {
- width: 100%;
- height: 100%;
- }
- .index_main {
- background-image: url("https://cxzx.smcic.net/topic/tool/img/%E5%B0%91%E5%84%BF%E4%B9%A6%E7%94%BB%E5%A4%A7%E8%B5%9B/home_top.png");
- background-repeat: no-repeat;
- background-size: 100%;
- padding-top: 955rpx;
- padding-bottom: 45rpx;
- box-sizing: border-box;
- }
- .list{
- width: 618rpx;
- margin: 0 auto;
- }
- .list .item {
- width: 100%;
- height: 335rpx;
- background-color: #000;
- position: relative;
- }
- .item_image{
- width: 100%;
- height: 335rpx;
- }
- .list .title {
- color: #fff;
- position: absolute;
- bottom: 0;
- width: 100%;
- background-color: #00000090;
- height: 1.5em;
- line-height: 1.5em;
- padding: 0 10rpx;
- box-sizing: border-box;
- font-size: 30rpx;
- white-space: nowrap; /* 防止文本换行 */
- overflow: hidden; /* 隐藏超出容器的内容 */
- text-overflow: ellipsis; /* 在超出内容的地方显示省略号 */
- }
- .item_bg {
- margin-bottom: 15rpx;
- }
- .item_bg:last-child{
- margin-bottom: 0;
- }
- .image {
- width: 507rpx;
- display: block;
- margin: 55rpx auto 0 auto;
- }
- .image:last-child {
- display: none;
- }
|