index.wxss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /* page/findmore/index.wxss */
  2. page{
  3. background: #FFF;
  4. }
  5. .banner{
  6. width: 750rpx;
  7. height: 210rpx;
  8. }
  9. .banner>image{
  10. width: 750rpx;
  11. height: 210rpx;
  12. }
  13. .region-title{
  14. width: 690rpx;
  15. font-family: PingFangSC-Semibold;
  16. font-size:38rpx;
  17. font-weight:700;
  18. color: #333333;
  19. padding:40rpx 30rpx;
  20. padding-bottom:30rpx;
  21. }
  22. .service{
  23. display: flex;
  24. flex-flow: row wrap;
  25. margin: 0 30rpx;
  26. width: 690rpx;
  27. justify-content: space-between;
  28. }
  29. .service-one{
  30. display: flex;
  31. flex-direction: row;
  32. width: 334rpx;
  33. height: 127rpx;
  34. border: 1px solid #EFEFEF;
  35. box-shadow: 0 0 12px 0 #EFEDFF;
  36. border-radius: 4px;
  37. margin-bottom: 20rpx;
  38. }
  39. .checkcontent{
  40. background-color: #F5F5F5;
  41. }
  42. .service-one>image:first-child{
  43. width: 64rpx;
  44. height: 64rpx;
  45. margin: 30rpx 20rpx;
  46. border-radius: 50%;
  47. }
  48. .service-one>view:nth-child(2){
  49. display: flex;
  50. flex-direction: column;
  51. margin: 20rpx 0;
  52. }
  53. .service-one>view:nth-child(2)>text:nth-child(1){
  54. font-family: PingFangSC-Medium;
  55. font-size: 28rpx;
  56. line-height: 50rpx;
  57. font-weight: 600;
  58. color: #333333;
  59. text-align: left;
  60. }
  61. .service-one>view:nth-child(2)>text:nth-child(2){
  62. font-family: PingFangSC-Regular;
  63. font-size: 24rpx;
  64. color: #999999;
  65. text-align: left;
  66. }