|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- /* pages/detailContent/detailContent.wxss */
-
- .body-box {
- padding: 0 24rpx;
- width: 100%;
- box-sizing: border-box;
- }
-
- .head-title {
- height: 98rpx;
- width: 100%;
- line-height: 98rpx;
- color: #333333;
- font-size: 30rpx;
- font-weight: 500;
- }
-
- .swiper-box {
- width: 100%;
- height: 539rpx;
- border-radius: 16rpx;
- overflow: hidden;
- }
-
- .swiper {
- width: 100%;
- height: 100%;
- }
-
- .imageUrl {
- width: 100%;
- height: 100%;
- }
-
- .imageUrl-box {
- position: relative;
- width: 100%;
- height: 100%;
- }
-
- .swiper .itemTitle {
- position: absolute;
- z-index: 9;
- bottom: 20rpx;
- left: 0rpx;
- right: 0rpx;
- margin: 0 auto;
- text-align: center;
- color: #F85E4C;
- font-size: 24rpx;
- }
-
- .scroll-view {
- padding-left: 24rpx;
- white-space: nowrap;
- height: 209rpx;
- width: 100%;
- box-sizing: border-box;
- }
-
- .scroll-view-box {
- display: inline-block;
- width: 160rpx;
- height: 209rpx;
- border-radius: 16rpx;
- margin-right: 16rpx;
- overflow: hidden;
- }
-
-
-
-
-
- .scroll-view-box>image {
- width: 160rpx;
- height: 160rpx;
- vertical-align: middle;
- }
-
- .scroll-view-box>.itemTitle {
- text-align: center;
- color: #333333;
- width: 100%;
- height: 49rpx;
- line-height: 49rpx;
- font-size: 24rpx;
- background: #F1F1F1;
- font-weight: 500;
- }
-
- .scroll-view-box>.itemColor {
- text-align: center;
- color: #FFF;
- width: 100%;
- height: 49rpx;
- line-height: 49rpx;
- font-size: 24rpx;
- background: #F96956;
- font-weight: 500;
- }
-
-
- .bottom-box {
- width: 100%;
- padding: 0 24rpx;
- margin-top: 52rpx;
- box-sizing: border-box;
- }
-
- .input-box {
- width: 100%;
- background-color: #FFF;
- height: 88rpx;
- border-radius: 16rpx;
- vertical-align: middle;
- position: relative;
- text-align: center;
-
- }
-
- .inputItem {
- display: inline-block;
- height:100%;
- color: #333333;
- font-size: 30rpx;
- font-weight: 500;
- }
-
-
- .text-g {
- position: absolute;
- color: #999999;
- font-size: 30rpx;
- line-height: 88rpx;
- right: 30rpx;
- top: 0;
- }
-
-
- .button-box {
- width: 100%;
- height: 88rpx;
- line-height: 88rpx;
- text-align: center;
- color: #FFF;
- margin-top: 24rpx;
- background: #F85E4C;
- box-shadow: 0rpx 4rpx 20rpx 0px #FFB9B1;
- border-radius: 16rpx;
- font-size: 24rpx;
- font-weight: 500;
- }
-
- .serch-n {
- width: 26rpx;
- margin-right: 10rpx;
- vertical-align: -4rpx;
-
- }
|