style.scss 935 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /* 容器 */
  2. .add-address-container{
  3. padding-top: 30upx;
  4. min-height: 100%;
  5. }
  6. /* 容器 */
  7. /* 添加地址 */
  8. .add-address-group{
  9. background-color: #fff;
  10. padding: 0 30upx;
  11. }
  12. .address-item{
  13. height: 105upx;
  14. border-bottom: 1upx solid #EEEEEE;
  15. }
  16. .address-item:last-of-type{
  17. border-bottom: none;
  18. }
  19. .address-label{
  20. width: 180upx;
  21. }
  22. .address-label,.address-input{
  23. font-size: 28upx;
  24. line-height: 34upx;
  25. color: #333;
  26. }
  27. .address-input{
  28. height: 34upx;
  29. width: 100%;
  30. }
  31. /deep/.address-placeholder{
  32. color: #999999;
  33. }
  34. .address-more{
  35. font-size: 30upx;
  36. color: #999999;
  37. }
  38. /* 添加地址 */
  39. /* 地址按钮 */
  40. .button-container{
  41. margin-bottom: 20upx;
  42. }
  43. .add-address-button {
  44. margin-top: 30upx;
  45. width: 600upx;
  46. height: 80upx;
  47. border-radius: 40upx;
  48. background-color: #41AE3C;
  49. font-size: 30upx;
  50. color: #fff;
  51. line-height: 40upx;
  52. }
  53. .add-address-button-delete{
  54. background-color: #FD3232;
  55. }
  56. /* 地址按钮 */