12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- @charset "UTF-8";
- /* 页面左右间距 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /*颜色*/
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 功能栏字体大小 */
- /*功能栏左侧小图标*/
- .row {
- display: flex;
- align-items: center;
- position: relative;
- padding: 0 30rpx;
- height: 110rpx;
- background: #fff;
- }
- .row .tit {
- flex-shrink: 0;
- width: 200rpx;
- font-size: 30rpx;
- color: #303133;
- }
- .row .input {
- flex-grow: 1;
- font-size: 30rpx;
- color: #303133;
- text-align: right;
- line-height: 110rpx;
- }
- .row .item-val {
- width: 490rpx;
- height: 110rpx;
- line-height: 120rpx;
- text-align: right;
- color: #000;
- }
- .row .iconlocation {
- font-size: 36rpx;
- color: #909399;
- }
- .add-btn {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 690rpx;
- height: 80rpx;
- margin: 60rpx auto;
- font-size: 32rpx;
- color: #fff;
- background-color: #ff4e4a;
- border-radius: 10rpx;
- }
|