12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /* 容器 */
- .add-address-container{
- padding-top: 30upx;
- min-height: 100%;
- }
- /* 容器 */
- /* 添加地址 */
- .add-address-group{
- background-color: #fff;
- padding: 0 30upx;
- }
- .address-item{
- height: 105upx;
- border-bottom: 1upx solid #EEEEEE;
- }
- .address-item:last-of-type{
- border-bottom: none;
- }
- .address-label{
- width: 180upx;
- }
- .address-label,.address-input{
- font-size: 28upx;
- line-height: 34upx;
- color: #333;
- }
- .address-input{
- height: 34upx;
- width: 100%;
- }
- /deep/.address-placeholder{
- color: #999999;
- }
- .address-more{
- font-size: 30upx;
- color: #999999;
- }
- /* 添加地址 */
- /* 地址按钮 */
- .button-container{
- margin-bottom: 20upx;
- }
- .add-address-button {
- margin-top: 30upx;
- width: 600upx;
- height: 80upx;
- border-radius: 40upx;
- background-color: #41AE3C;
- font-size: 30upx;
- color: #fff;
- line-height: 40upx;
- }
- .add-address-button-delete{
- background-color: #FD3232;
- }
- /* 地址按钮 */
|