| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- @charset "UTF-8";
- /* 页面左右间距 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /*颜色*/
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 功能栏字体大小 */
- /*功能栏左侧小图标*/
- .content {
- background-color: #f8f8f8;
- }
- .content .header {
- background-color: #FFFFFF;
- height: 90rpx;
- }
- .content .header .header-box {
- font-size: 28rpx;
- padding: 0 32rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- height: 70rpx;
- background-color: #d32d26;
- color: #FFFFFF;
- }
- .content .header .header-box .homeicon {
- width: 40rpx;
- height: 40rpx;
- }
- .content .header .header-box .homeicon image {
- width: 40rpx;
- height: 40rpx;
- }
- .content .header .header-box .cancel {
- width: 40rpx;
- height: 40rpx;
- }
- .content .header .header-box .cancel image {
- width: 40rpx;
- height: 40rpx;
- }
- .content .list {
- margin-top: 24rpx;
- width: 100%;
- height: 100%;
- background-color: #fff;
- }
- .content .list .list-item {
- width: 100%;
- height: 100%;
- padding: 0 24rpx;
- font-size: 28rpx;
- background-color: #fff;
- }
- .content .list .list-item ._a {
- text-decoration: none;
- display: block;
- color: #333;
- }
- .content .list .list-item .box-1 {
- height: 80rpx;
- font-weight: 300;
- line-height: 80rpx;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- justify-content: space-between;
- border-bottom: 1rpx solid #F1F1F1;
- }
- .content .list .list-item .box-1 .icon {
- width: 34rpx;
- height: 34rpx;
- }
- .content .list .list-item .box-1 .icon image {
- width: 34rpx;
- height: 34rpx;
- display: inline;
- }
|