123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- /* pages/home/detail/detail.wxss */
- page{
- background: #5864E6;
- }
- .bg-scroll-view {
- width: 100%;
- height: 100%;
- }
- .bg{
- width: 750rpx;
- }
- .top-image{
- width: 750rpx;
- height: 310rpx;
- margin-bottom: -12rpx;
- }
- .content{
- width: 690rpx;
- height: auto;
- border-radius: 10rpx;
- background: #FFF;
- display: flex;
- flex-direction: column;
- margin: 0 30rpx 20rpx;
- padding-top: 48rpx;
- }
- .content-h1{
- width: 630rpx;
- margin: 0 30rpx 30rpx;
- font-family: PingFang-SC-Bold;
- font-size: 38rpx;
- color: #333333;
- text-align: center;
- font-weight: 700;
- }
- .content-h2{
- width: 420rpx;
- height: 55rpx;
- line-height: 55rpx;
- font-family: PingFangSC-Semibold;
- font-size: 32rpx;
- font-weight:700;
- color: #FFF;
- text-align: center;
- z-index: 999;
- padding-top: 9rpx;
- margin: 0 auto;
- overflow:hidden;
- text-overflow:ellipsis;
- white-space:nowrap;
- }
- .title-bg{
- width: 690rpx;
- display: flex;
- }
- .title-bg>image{
- width: 536rpx;
- height: 64rpx;
- z-index: 888;
- margin: 0 auto;
- margin-top: -64rpx;
- }
- .content-text{
- width: 602rpx;
- font-family: PingFangSC-Regular;
- font-size: 32rpx;
- color: #333333;
- letter-spacing: 0;
- word-wrap: break-word;
- line-height: 48rpx;
- margin: 38rpx 44rpx 44rpx;
- }
- .posterror{
- width: 750rpx;
- height: 60rpx;
- color: #DADDFF;
- margin: 34rpx 0;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- }
- .posterror>text{
- height: 60rpx;
- line-height: 60rpx;
- font-family: PingFang-SC-Medium;
- font-size: 32rpx;
- color: #DADDFF;
- text-align: center;
- }
- .posterror>image{
- width: 16rpx;
- height: 26rpx;
- margin: auto 0rpx auto 10rpx;
- }
- .backhome{
- width: 106rpx;
- height: 106rpx;
- border-radius: 50%;
- position: fixed;
- bottom: 120rpx;
- right: 32rpx;
- background: #fff;
- }
- .backhome>image{
- width: 106rpx;
- height: 106rpx;
- background: #fff;
- border-radius: 50%;
- }
|