123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432 |
- @charset "UTF-8";
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .address-manage {
- height: 100%;
- box-sizing: border-box;
- flex-direction: column;
- background: #F2F2F2;
- display: flex;
- justify-content: space-between;
- flex-direction: column;
- }
- .address-manage .content {
- flex: 1;
- height: 100%;
- position: relative;
- box-sizing: border-box;
- }
- .address-manage .AddressTop {
- display: flex;
- align-items: center;
- justify-content: space-between;
- background: #ffffff;
- width: 100%;
- padding: 30rpx;
- box-sizing: border-box;
- }
- .address-manage .AddressTop-left {
- flex: 1;
- overflow: hidden;
- margin-right: 30rpx;
- height: 80rpx;
- box-sizing: border-box;
- border: 1px solid #CCCCCC;
- border-radius: 80rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 20rpx 30rpx;
- }
- .address-manage .AddressTop-left-search {
- display: block;
- width: 40rpx;
- height: 40rpx;
- }
- .address-manage .AddressTop-left-input {
- flex: 1;
- overflow: hidden;
- font-size: 28rpx;
- color: #333333;
- margin: 0 10rpx;
- }
- .address-manage .AddressTop-left-clear {
- display: block;
- width: 32rpx;
- height: 32rpx;
- }
- .address-manage .AddressTop-right {
- width: 132rpx;
- height: 64rpx;
- border-radius: 64rpx;
- background: linear-gradient(92deg, #FE4815 0%, #F30000 100%);
- color: #FFFFFF;
- font-size: 28rpx;
- text-align: center;
- line-height: 64rpx;
- }
- .address-manage .AddressList {
- width: 100%;
- padding: 30rpx;
- box-sizing: border-box;
- flex: 1;
- overflow: hidden;
- }
- .address-manage .AddressList-item {
- padding: 30rpx;
- background: #ffffff;
- margin-bottom: 30rpx;
- position: relative;
- border-radius: 24rpx;
- }
- .address-manage .AddressList-item.active {
- background: linear-gradient(to right, #F97C55, #F44545);
- }
- .address-manage .AddressList-item.active-set .set-used {
- background: #ffffff !important;
- }
- .address-manage .AddressList-item.active .level {
- background: linear-gradient(203deg, #FBDCAC 0%, #FFEFD7 31%, #FFDCA5 55%, #FEEACB 90%, #F9D193 100%) !important;
- color: #F44545 !important;
- }
- .address-manage .AddressList-item.active .color {
- color: #ffffff !important;
- }
- .address-manage .AddressList-item-title {
- color: #999999;
- font-size: 28rpx;
- margin-bottom: 20rpx;
- }
- .address-manage .AddressList-item-title .spec {
- color: #333333;
- font-size: 32rpx;
- margin-right: 20rpx;
- }
- .address-manage .AddressList-item-desc {
- color: #999999;
- font-size: 28rpx;
- margin-bottom: 30rpx;
- }
- .address-manage .AddressList-item-info {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding-bottom: 30rpx;
- margin-bottom: 30rpx;
- border-bottom: 1px solid #E9E9E9;
- }
- .address-manage .AddressList-item-info .info-text {
- color: #333333;
- font-size: 28rpx;
- flex: 1;
- overflow: hidden;
- margin-right: 40rpx;
- }
- .address-manage .AddressList-item-info .info-arrow {
- display: block;
- width: 30rpx;
- height: 30rpx;
- }
- .address-manage .AddressList-item-set {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- }
- .address-manage .AddressList-item-set .get-used {
- color: #EA4A41;
- font-size: 24rpx;
- width: 136rpx;
- height: 50rpx;
- border-radius: 8rpx;
- background: #FFF4F3;
- text-align: center;
- line-height: 50rpx;
- margin-left: auto;
- }
- .address-manage .AddressList-item-set .set-used {
- color: #333;
- font-size: 24rpx;
- width: 136rpx;
- height: 50rpx;
- border-radius: 8rpx;
- background: #F8F8F8;
- text-align: center;
- line-height: 50rpx;
- margin-left: auto;
- }
- .address-manage .AddressList-item-set .set-control {
- color: #333333;
- font-size: 24rpx;
- width: 112rpx;
- height: 50rpx;
- border-radius: 50rpx;
- background: #F8F8F8;
- text-align: center;
- line-height: 50rpx;
- }
- .address-manage .AddressList-item-set .set-control:nth-of-type(1) {
- margin-right: 20rpx;
- }
- .address-manage .AddressList-item-level {
- position: absolute;
- top: 30rpx;
- right: 30rpx;
- -webkit-transform: translate(30rpx, 14rpx);
- transform: translate(30rpx, 14rpx);
- width: 156rpx;
- height: 50rpx;
- border-top-left-radius: 50rpx;
- border-bottom-left-radius: 50rpx;
- background: linear-gradient(92deg, #FE4815 0%, #F30000 100%);
- color: #FFFFFF;
- font-size: 24rpx;
- text-align: center;
- line-height: 50rpx;
- }
- .address-manage .address_search {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 12rpx 30rpx;
- box-sizing: border-box;
- color: #333333;
- background-color: #FFFFFF;
- margin-bottom: 1px;
- }
- .address-manage .address_search .address_search_main {
- width: calc(100% - 106rpx);
- background-color: #F2F4F5;
- height: 64rpx;
- padding: 0 22px;
- border-radius: 64rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .address-manage .address_search .address_search_main::before {
- content: "";
- display: block;
- width: 36rpx;
- height: 36rpx;
- background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAAXNSR0IArs4c6QAAAfJQTFRF////////////29vb39/f5ubm0dHR6Ojo2NjYyMjI29vbzMzM3d3dz8/P1dXV19fXzMzMzs7O0dHR09PTysrK1dXVzMzMzs7O2NjY0NDQ0dHRz8/P0dHR0tLSzMzM09PTz8/P0NDQzc3N0NDQ0tLSzc3N0dHRzs7Oz8/Py8vLzc3N0dHRzs7OzMzMysrKzMzMzs7Ozs7OysrKzc3Ny8vLzMzMz8/Pzs7Oz8/Pzc3NysrKzc3Ny8vLzc3Ny8vLzc3Nzs7OzMzMzMzMy8vLzc3Nzc3NzMzMzs7OzMzMzMzMzc3NzMzMzMzMzMzMz8/Pzc3NzMzMzMzMy8vLzMzMzMzMzMzMzs7OzMzMzc3NzMzMzMzMzMzMzc3NzMzMzMzMzMzMzMzMzc3NzMzMy8vLzc3Ny8vLzc3Nzc3NzMzMzc3NzMzMzMzMzc3Ny8vLzc3NzMzMzMzMzMzMzc3NzMzMy8vLy8vLzMzMzc3Nzc3NzMzMy8vLy8vLzc3Ny8vLzMzMzMzMzMzMzc3NzMzMzMzMy8vLzMzMzMzMzMzMzMzMzMzMzc3NzMzMzMzMy8vLzMzMzc3NzMzMzMzMzMzMzMzMzMzMzMzMzMzMy8vLzMzMzMzMzMzMzMzMy8vLzMzMzMzMzMzMy8vLzMzMy8vLzMzMzMzMzMzMzQV9fwAAAKV0Uk5TAwQGBwgKCwsNDg4PDxASExQVFhcYGBkaGhscICEiIyMlJikrLS4yNDU2ODg5PD5GSU5SUlRVVVlfYGFhYmZnZ2hpamtrbG1tbm9xcnN0dHV4eXt9foKCg4SGh4iJjJGSoaOlpqeoqKyurq+wsbKyuLm6vb/AwcTFxsjJysrLzc/Q0NHW19rb3N7f3+Hi4+Pk5+jr7O/w8fLz9PX29/j5+vv7/Pz9Xg6IhAAAAktJREFUGBndwelDiwEAx/FfVpMhFENIhDRXOZ7c5Eip5L5SJOROjty3HGU5Kq0Je6zv/+l5RM/WtofeeOHz0T83d8eZW+2hUPutM9vz9EfTTrwgxvO6HLlJr+llhN7qdKU04z5J3PMrhcIgtq/XtgXmZGbOCWxr/YotWKikSvqx9B+dpGGTj4ex9JcoiaIwlka/4kxvwhJerAQz3gHRKiXYMwh0zdQIaQ+B6CrZvBuaO0KhjnMbvLKtjgJ30xRvI5Zq2Uo7+KWjVLYaLGsVJyMInJXFU0eMOo8sZ4FOr2LtBfpzZaklTq0suWGgVrHeAodlawEGGop8vqKGAaBFtkPAa8UoAMwpsq0webNIPy16g7lCtmwTmC9HFXBdQxaWZemXrLKFGnIDqJTjKrBTLiqAS3I8ApbKxTLggRydQJ5c5AOv5fgMjJWL8UBIjhAwTi58QEiOV0C+XMwDXspxG1gmF8uBNjkuAOVyUQk0y7EfaJGLVmCfHAuALz6lNOEbUKAYL4EqpVQLtCvWMaAnWylM+wQcUaysbuCUUjgNfJyoOJVYdimp3VgqFM/zDPi+UkmsGQQeezTC7A9AtFoJagaB7llKsGQAS+NUxfE3YYsYSlQSxtJ3IFPDMg+GGBIxlKgwiK3v/KbAbK8vL7DlYh+29yYQMZTIf5ck7vgNE4gYSuTZ2sUIwc0eyTCBiKEkMiraogz73laeIZthAhFDSeWsP3nlaW/Pk8sn12XrN8MEIob+nmECkWL9PcMEbmoUDBPqNRrFN+vH6D/xA0qDV4C8g9YxAAAAAElFTkSuQmCC);
- background-size: 100% 100%;
- margin-right: 26rpx;
- }
- .address-manage .address_search .address_search_main .address_search_input {
- flex: 1;
- }
- .address-manage .address_search .address_search_btn {
- font-size: 32rpx;
- width: 80rpx;
- }
- .address-manage .content .item {
- background: #FFFFFF;
- border-bottom: 20rpx solid #F2F2F2;
- box-sizing: border-box;
- padding: 0 30rpx;
- }
- .address-manage .content .item .fixed_title {
- height: 74rpx;
- line-height: 74rpx;
- color: #333333;
- font-size: 28rpx;
- }
- .address-manage .content .item .item_main {
- padding: 18rpx 0;
- border-bottom: 1px solid #D7D7D7;
- }
- .address-manage .content .item .item_main .label {
- width: 120rpx;
- text-align: left;
- }
- .address-manage .content .item .item_main .item_main_agent {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 30rpx;
- }
- .address-manage .content .item .item_main .item_main_agent .item_agent_info {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- color: #333333;
- font-size: 28rpx;
- width: calc(100% - 118rpx);
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .address-manage .content .item .item_main .item_main_agent .item_agent_level {
- color: #FFFFFF;
- font-size: 24rpx;
- background-color: #F76454;
- border-radius: 4rpx;
- height: 36rpx;
- line-height: 36rpx;
- width: 108rpx;
- text-align: center;
- }
- .address-manage .content .item .item_main .item_main_user {
- color: #333333;
- font-size: 28rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 20rpx;
- }
- .address-manage .content .item .item_main .item_main_user .item_main_user_left {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- }
- .address-manage .content .item .item_main .item_main_user .item_main_user_right {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 42rpx;
- border-radius: 42rpx;
- background-color: #F76454;
- color: #FFFFFF;
- padding: 0 15rpx;
- }
- .address-manage .content .item .item_main .item_main_address {
- width: 100%;
- display: flex;
- justify-content: flex-end;
- align-items: center;
- }
- .address-manage .content .item .item_main .item_main_address .address_text {
- width: 100%;
- color: #999999;
- font-size: 28rpx;
- line-height: 38rpx;
- }
- .address-manage .content .item .item_set_footer {
- height: 77rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- color: #333333;
- font-size: 24rpx !important;
- }
- .address-manage .content .item .item_set_footer .check {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- }
- .address-manage .content .item .item_set_footer .check::before {
- content: "";
- display: block;
- width: 36rpx;
- height: 36rpx;
- box-sizing: border-box;
- border: 2rpx solid #F76454;
- text-align: center;
- line-height: 34rpx;
- border-radius: 50%;
- color: #FFFFFF;
- margin-right: 17rpx;
- }
- .address-manage .content .item .item_set_footer .checked::before {
- content: "\2714";
- background-color: #F76454;
- }
- .address-manage .content .item .item_set_footer .item_set_footer_right .edit-del {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- height: 100%;
- width: 268rpx;
- color: #999999;
- justify-content: space-between;
- }
- .address-manage .content .item .item_set_footer .item_set_footer_right .edit-del .edit,
- .address-manage .content .item .item_set_footer .item_set_footer_right .edit-del .del {
- flex: 1;
- height: 100%;
- text-align: center;
- }
- .address-manage .content .item .item_set_footer .item_set_footer_right .edit-del .edit.del,
- .address-manage .content .item .item_set_footer .item_set_footer_right .edit-del .del.del {
- text-align: right;
- }
- .address-manage .content .bottom {
- height: 88rpx;
- }
- .address-manage .noaddress {
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: row;
- color: #999999;
- padding-top: 200rpx;
- }
- .address-manage .add-address {
- left: 0;
- bottom: 0;
- margin: 0;
- width: 100%;
- position: fixed;
- border-radius: 0;
- }
- .address-manage .bottom {
- height: 60rpx;
- }
- .address-manage .adress_bottom {
- left: 0;
- bottom: 0;
- margin: 0;
- width: 100%;
- position: fixed;
- border-radius: 0;
- height: 88rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .address-manage .adress_bottom .add-address {
- text-align: center;
- flex: 1;
- line-height: 88rpx;
- position: relative;
- background: #FB231F;
- color: #fff;
- }
- .address-manage .adress_bottom .new_address {
- text-align: center;
- border: none;
- background-color: #FFFFFF;
- color: #FB231F;
- }
- .address-manage .userLevel {
- font-size: 24rpx !important;
- color: #F76454;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
|