Connect.wxss 984 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* pages/mine/wxml/Connect/Connect.wxss */
  2. .container{
  3. width: 100%;
  4. box-sizing: border-box;
  5. }
  6. #container{
  7. width: 90%;
  8. }
  9. .header{
  10. width: 100%;
  11. font-size: 40rpx;
  12. padding: 20rpx 0;
  13. margin: 0 auto;
  14. }
  15. .count{
  16. width: 100%;
  17. }
  18. .phone::after{
  19. content: '';
  20. display: block;
  21. clear: both;
  22. }
  23. .phone{
  24. width: 100%;
  25. padding: 20rpx 0;
  26. border-bottom: 1rpx solid #ececec;
  27. }
  28. .phone text{
  29. font-size: 30rpx;
  30. float: left;
  31. line-height: 60rpx;
  32. color: #333;
  33. }
  34. .phone button{
  35. height: 60rpx;
  36. box-sizing: border-box;
  37. font-size: 28rpx;
  38. float: right;
  39. padding: 10rpx;
  40. color: #fff;
  41. background: #999;
  42. line-height: 40rpx;
  43. }
  44. .phone input{
  45. width: 300rpx;
  46. font-size: 30rpx;
  47. display: block;
  48. float: left;
  49. height: 60rpx;
  50. margin-left: 50rpx;
  51. }
  52. .btn{
  53. color: #fff;
  54. background: #fb752c;
  55. border-radius: 6rpx;
  56. font-size: 32rpx;
  57. }
  58. .tip{
  59. margin: 30rpx 0;
  60. }
  61. .tip text{
  62. display: block;
  63. font-size: 28rpx;
  64. color: #999;
  65. width: 100%;
  66. text-align: center;
  67. }