123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- /**index.wxss**/
- .caption-wrap {
- background-color: white;
- margin-top: 15px;
- }
- .caption-title {
- background-color: #f7f7f7;
- display: block;
- margin-left: 5px;
- }
- .index-collapse {
- font-size: 14px;
- line-height: 24px;
- }
- .index-collapse-item {
- padding: 8px 15px !important;
- border: 0px !important;
- }
- .slide-image {
- width: 100%;
- height: 150px;
- }
- .index-cell {
- padding: 5px 15px !important;
- }
- /*
- 列表展示
- */
- .guess-section {
- display: -webkit-box;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- -webkit-flex-wrap: wrap;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- padding: 20rpx;
- background: #fff;
- }
- .guess-section .guess-item {
- margin-top: 40rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- -ms-flex-direction: column;
- flex-direction: column;
- width: 48%;
- border-radius: 80rpx;
- padding-bottom: 40rpx;
- }
- .guess-section .guess-item:nth-child(2n+1) {
- margin-right: 4%;
- }
- .guess-section .image-wrapper {
- width: 100%;
- height: 210rpx;
- border-radius: 3px;
- overflow: hidden;
- }
- .guess-section .image-wrapper image {
- width: 100%;
- height: 100%;
- opacity: 1;
- }
- .guess-section .title {
- font-size: 26rpx;
- color: #303133;
- font-weight: 700;
- }
- .guess-section .info {
- padding: 0rpx 20rpx;
- float: left;
- margin-left: 0rpx;
- }
- .guess-section .info .price {
- font-size: 26rpx;
- float: left;
- }
- .guess-section .info .contact {
- font-size: 26rpx;
- float: right;
- padding:0;
- background: #fff;
- margin-top:20rpx;
- }
- .guess-section .info .xs {
- font-size: 26rpx;
- margin-left: 20rpx;
- float: left;
- }
- .item-img{
- height: 388rpx;
- position: relative;
- }
- .circle {
- border-radius: 50px;
- height: 50px;
- position: absolute;
- width: 50px;
- z-index: 9998;
- color: #fff;
- background: #000;
- opacity: 0.6;
- left: 50%;
- margin-left: -50rpx;
- text-align: center;
- margin-top: -160rpx;
- }
- .circle_inner_play {
- content: "";
- display: block;
- width: 0;
- height: 0;
- border-style: solid;
- border-width: 10px 0 10px 20px;
- border-color: transparent transparent transparent #fff;
- position: absolute;
- top: 50%;
- left: 50%;
- margin: -10px 0 0 -7px;
- }
|