.capital {
    width: 100%;
    background-color: #fff;
}

.topBar {
    position: relative;
    width: 100%;
    height: 1rem;
    font-size: var(--sizeXL, .35rem);
    font-weight: 700;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    margin-bottom: 0.18rem;
    padding: 0.18rem;
    padding-left: 0.5rem;
    box-sizing: border-box;
}

.border {
    border-bottom: 0.018rem solid #ddd;
    border-radius: 0 !important;
}

.topBar:before {
    display: block;
    content: "";
    width: 0.1rem;
    height: 0.4rem;
    position: absolute;
    top: 50%;
    left: 1%;
    transform: translateY(-50%);
    background: #1e9fff;
    border-radius: 0.1rem;
}

.capital .flex-box {
    margin: 5px auto;
    width: 98%;
    display: flex;
    border-bottom: 1px double #b7b7b7;
    padding-bottom: 10px;
}

.flex-box .input {
    width: 60%;
    display: flex;
    flex-direction: column;
}

.flex-box .input>div {
    display: flex;
    margin: 5px 0;
    position: relative;
}

.flex-box .input label {
    margin: 0;
    display: flex;
    align-items: center;
    min-width: 90px;
}

.flex-box .input input {
    width: 100%;
    min-width: 400px;
}

.flex-box .bttn {
    border-left: 1px solid #c6c6c6;
    margin-left: 10px;
    padding: 5px;
    position: relative;
    width: 30%;
}

.flex-box .bttn>div {
    padding: 5px 10px;
}

.flex-box .bttn>div>span {
    cursor: pointer;
}

.flex-box .bttn>div>span:hover {
    color: #4a8cff;
}

.address-list {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    gap: 10px;
}

.address-list .address {
    flex: 1 1 100%;
    display: flex;
    height: 2.5rem;
    background: #f9f9fa;
    border-radius: 0.18rem;
    font-size: 20px;
    border: 2px solid #bababa;
}

.address-list .address:has(.tail.edit) {
    border: 2px solid #8ad6ff;
}

.address-list .head {
    width: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.address-list .head>span {
    width: 65px;
    height: 65px;
    background: #68caff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    padding-right: unset;
    color: #fff;
}

.address-list .centre {
    width: auto;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.address-list .centre span {
    padding-right: 5px;
}

.address-list .tail {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 15px;
    font-size: 17px;
}

.address-list .tail>span {
    cursor: pointer;
}

.address-list .tail>span:hover {
    color: rgb(255, 65, 65);
}

.address-list .tail>i {
    cursor: pointer;
}

.address-list .tail>i:hover {
    opacity: 0.7;
}

input.area {
    background-color: #fff !important;
    cursor: pointer;
}

.address-select {
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    left: 5%;
    width: 90%;
    top: 90%;
    z-index: 1;
}

.address-select .address-title {
    display: flex;
    height: 30px;
    line-height: 30px;
    border-bottom: 1px solid #ccc;
}

.address-select .address-title>li {
    color: #999;
    background: #f0f0f0;
    cursor: pointer;
    text-align: center;
    height: 100%;
    width: 33.3%;
}

.address-select .address-title>li.active {
    color: #4a4a4a;
    margin-left: 0;
    background: #fff;
    border-bottom: 1px solid #fff;
    border-top: none;
    font-weight: 700;
    cursor: default;
}

.address-select .address-content {
    margin: 5px 10px;
    overflow-y: scroll;
    overflow-x: scroll;
    height: 320px;
}

.address-select .address-content li {
    color: #000;
    padding: 10px 5px;
    cursor: pointer;
}

.address-select .address-content li:hover {
    color: #4a8cff;
}






.layui-form-label {
    width: 90px;
}

.layui-input-block {
    margin-left: 90px;
    min-height: 36px;
}