<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* el */

.Layer-view .input--at input {
    letter-spacing: -0.8px;
}

.Layer-view .input.w100,
.Layer-view .textarea.w100 {
    box-sizing: border-box;
    width: 100%;
}

.Layer-view .view__textarea--editor {
    border: 0 !important;
}

.Layer-view .view__textarea--editor,
.Layer-view .view__textarea--html {
    box-sizing: border-box;
    width: 100% !important;
    height: 100% !important;
}

.Layer-view .view__textarea--editor textarea,
.Layer-view .view__textarea--html textarea {
    box-sizing: border-box;
    width: 100% !important;
    height: 500px !important;
}

.Layer-view textarea::placeholder,
.Layer-view textarea::-webkit-input-placeholder,
.Layer-view input::placeholder,
.Layer-view input::-webkit-input-placeholder {
    color: #ccc !important;
    opacity: 1;
}

.Layer-view input[readonly],
.Layer-view textarea[readonly] {
    background-color: #F8F8F8;
    color: #BBBBBB;
}

.Layer-view input[disabled],
.Layer-view textarea[disabled] {
    background-color: #F8F8F8;
    color: #BBBBBB;
}

/* view__checkbox */

.Layer-view .view__checkbox {
    width: auto !important;
    height: 20px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.Layer-view .checkbox__label {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.Layer-view .checkbox__text {
    margin-left: 30px;
    line-height: 1.6;
    font-weight: 400;
    font-size: 14px;
    color: #999;
}

.Layer-view .view__checkbox input:checked + .checkbox__label .checkbox__text {
    color: #333;
}

/* view__radio */

.Layer-view .view__radio {
    width: auto !important;
    height: 20px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.Layer-view .radio__label {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.Layer-view .radio__text {
    margin-left: 25px;
    line-height: 1.6;
    font-weight: 400;
    font-size: 14px;
    color: #999;
}

.Layer-view .view__radio input:checked + .radio__label .radio__text {
    color: #333;
}

/* gap */

.Layer-view .view__gap--1 {
    gap: 1px;
}

.Layer-view .view__gap--2 {
    gap: 2px;
}

.Layer-view .view__gap--3 {
    gap: 3px;
}

.Layer-view .view__gap--4 {
    gap: 4px;
}

.Layer-view .view__gap--5 {
    gap: 5px;
}

.Layer-view .view__gap--6 {
    gap: 6px;
}

.Layer-view .view__gap--7 {
    gap: 7px;
}

.Layer-view .view__gap--8 {
    gap: 8px;
}

.Layer-view .view__gap--9 {
    gap: 9px;
}

.Layer-view .view__gap--10 {
    gap: 10px;
}

.Layer-view .view__gap--11 {
    gap: 11px;
}

.Layer-view .view__gap--12 {
    gap: 12px;
}

.Layer-view .view__gap--13 {
    gap: 13px;
}

.Layer-view .view__gap--14 {
    gap: 14px;
}

.Layer-view .view__gap--15 {
    gap: 15px;
}

.Layer-view .view__gap--16 {
    gap: 16px;
}

.Layer-view .view__gap--17 {
    gap: 17px;
}

.Layer-view .view__gap--18 {
    gap: 18px;
}

.Layer-view .view__gap--19 {
    gap: 19px;
}

.Layer-view .view__gap--20 {
    gap: 20px;
}

.Layer-view .view__gap--25 {
    gap: 25px;
}

.Layer-view .view__gap--30 {
    gap: 30px;
}

.Layer-view .view__gap--35 {
    gap: 35px;
}

.Layer-view .view__gap--40 {
    gap: 40px;
}

.Layer-view .view__gap--45 {
    gap: 45px;
}

.Layer-view .view__gap--50 {
    gap: 50px;
}

.Layer-view .view__gap--60 {
    gap: 60px;
}

.Layer-view .view__gap--70 {
    gap: 70px;
}

.Layer-view .view__gap--80 {
    gap: 80px;
}

.Layer-view .view__gap--90 {
    gap: 90px;
}

.Layer-view .view__gap--100 {
    gap: 100px;
}

/* view__table */

.Layer-view .view__group {
    box-sizing: border-box;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
}

.Layer-view .view__table {
    width: 100%;
    table-layout: fixed;
}

.Layer-view .view__table th:first-child,
.Layer-view .view__table td:first-child {
    border-left: 1px solid #ebedf1;
}

.Layer-view .view__table th:last-child,
.Layer-view .view__table td:last-child {
    border-right: 1px solid #ebedf1;
}

.Layer-view .view__table .table__row td:first-child {
    border-left: 0;
}

.Layer-view .view__table th {
    padding: 10px 0;
    border-top: 1px solid #ebedf1;
    background: #f9fafb;
    color: #757c88;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
}

.Layer-view .view__table th,
.Layer-view .view__table td {
    position: relative;
    border-bottom: 1px solid #ebedf1;
    text-align: center;
    vertical-align: middle;
}

.Layer-view .view__table td {
    padding: 5px 5px;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
}

.Layer-view .view__table-group td {
    height: 40px;
}

.Layer-view .view__table th:after,
.Layer-view .view__table td:after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background: #ebedf1;
    position: absolute;
    top: 0;
    right: 0;
}

.Layer-view .view__table th:last-child:after,
.Layer-view .view__table td:last-child:after {
    display: none;
}

.Layer-view .view__table th,
.Layer-view .view__table td {
    word-break: break-all;
}

.Layer-view .view__table th {
}

.Layer-view .view__table-not {
    height: 100px;
}

.Layer-view .view__table-group--active .view__table-item--view td {
    background-color: rgba(56, 140, 241, 0.1);
}

.Layer-view .main--table {
    display: table;
}

/* view__tab */

.Layer-view .view__tab {
    position: absolute;
    z-index: 3;
    width: calc(100% - 97px);
    padding: 20px 40px 9px 40px;
    left: 0;
    right: 0;
    top: 55px;
}

.Layer-view .view__tab:before {
    z-index: -1;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 16px);
    height: calc(100% - 9px);
    background-color: #fff;
}

.Layer-view .view__tab ul {
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #ffffff;
    width: 100%;
    height: 46px;
    border-radius: 4px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}

.Layer-view .view__tab li {
    flex: 1;
    box-sizing: border-box;
    border: 1px solid #ebedf1;
    border-right: 0;
    text-align: center;
    font-size: 14px;
    color: #999;
    font-family: var(--family-medium);
    font-weight: var(--weight-medium);
    line-height: 46px;
    height: 46px;
    cursor: pointer;
}

.Layer-view .view__tab li:first-child {
    border-radius: 4px 0 0 4px;
}

.Layer-view .view__tab li:last-child {
    border-radius: 0 4px 4px 0;
}

.Layer-view .view__tab li:hover {
    color: #000;
}

.Layer-view .view__tab li.focus {
    background-color: #283241;
    color: #fff;
    text-decoration: none;
}

.Layer-view .view__tab li.focus {
    border-color: var(--order-color1);
    background-color: var(--order-color2);
}

.Layer-view .view__tab li.focus:hover {
    text-decoration: none;
    color: #fff;
}

/* view__header */

.Layer-view .view__header {
    display: flex;
    position: relative;
    align-items: center;
    padding-bottom: 10px;
}

.Layer-view .view__header-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: #2d3539;
}

.Layer-view .view__header-side {
    margin-left: auto;
}

/* view__items */

.Layer-view .view__items {
    box-sizing: border-box;
    border-top: 1px solid #ebedf1;
    width: 100%;
    display: flex;
}

.Layer-view .view__items--last,
.Layer-view .view__items:last-child {
    border-bottom: 1px solid #ebedf1;
}

.Layer-view .view__items &gt; li:nth-child(2n+1) {
    width: 130px;
}

.Layer-view .view__items &gt; li:nth-child(2n+2) {
    width: calc(100% - 130px);
}

.Layer-view .view__items--col2 &gt; li:nth-child(2n+2) {
    width: calc(50% - 130px);
}

.Layer-view .view__items--col3 &gt; li:nth-child(2n+2) {
    width: calc(33.333% - 130px);
}

.Layer-view .view__items--col2r12 &gt; li:nth-child(2) {
    width: calc(33.333% - 130px);
}

.Layer-view .view__items--col2r12 &gt; li:nth-child(4) {
    width: calc(66.666% - 130px);
}

.Layer-view .view__items &gt; li {
    box-sizing: border-box;
    border-left: 1px solid #ebedf1;
    display: flex;
    align-items: center;
    min-height: 56px;
}

.Layer-view .view__items &gt; li:last-child {
    border-right: 1px solid #ebedf1;
}

.Layer-view .view__items &gt; li:nth-child(2n+1) {
    background: #f9fafb;
    justify-content: center;
    padding: 10px 0;
}

.Layer-view .view__items &gt; li:nth-child(2n+2) {
    padding: 10px 10px;
}

.Layer-view .view__name {
    font-size: 14px;
    line-height: 1.6;
    color: #757c88;
}

.Layer-view .view__text {
    line-height: 1.5;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
}

.Layer-view .view__link {
    cursor: pointer;
    line-height: 1.5;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
}

.Layer-view .view__guide {
    line-height: 1.6;
    font-weight: 400;
    font-size: 12px;
    color: #969a9c;
}

.Layer-view .view__link:hover {
    color: var(--adm-color);
    text-decoration: underline;
}

.Layer-view .view__link--theme {
    color: var(--adm-color);
}

.Layer-view .view__button {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
    background-color: #757c88;
    padding: 0 10px;
    min-width: 60px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}

.Layer-view .view__button--zipcode {
    min-width: 80px;
}

.Layer-view .view__button--right {
    margin-left: auto;
}

.Layer-view .view__button:hover {
    background-color: #388cf1;
}

.Layer-view .view__footer-guide {
    margin-top: 10px;
    display: flex;
    align-items: center;
    line-height: 1.6;
    font-weight: 400;
    font-size: 12px;
    color: #969a9c;
}

/* etc */

.Layer-view .view__flex {
    display: flex;
    align-items: center;
}

.Layer-view .view__auto {
    display: flex;
    align-items: center;
    width: 100%;
}

.Layer-view .view__size--auto {
    flex: 1 1 auto;
}

.Layer-view .view__size--auto.input {
    box-sizing: border-box;
}

.Layer-view .view__size--auto.input input {
    width: 100%;
    box-sizing: border-box;
}

.Layer-view .view__col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.Layer-view .view__required {
    animation-name: required-animation;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.Layer-view .view__required--div {
    z-index: 1;
    position: relative;
}

.Layer-view .view__required--div:before {
    z-index: -1;
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    opacity: 0.8;
    animation-name: view__required--animation;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes view__required--animation {
    0% {
        background-color: transparent;
    }
    25% {
        background-color: #fdfbd8;
    }
    50% {
        background-color: transparent;
    }
    75% {
        background-color: #fdfbd8;
    }
    100% {
        background-color: transparent;
    }
}

/* Layer-goodsView */

.Layer-goodsView .main {
    padding-top: 80px !important;
    position: relative;
}

.Layer-goodsView .goods-images {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}

.Layer-goodsView .goods-images img {
    width: 100px;
    max-width: 100%;
}

.Layer-goodsView .view__group {
    margin-top: 10px;
}

/* view__table--transport */

.Layer-goodsView .view__table--transport .field__id {
    width: 80px;
}

.Layer-goodsView .view__table--transport .field__status {
    width: 100px;
}

.Layer-goodsView .view__table--transport .field__type {
    width: 70px;
}

.Layer-goodsView .view__table--transport .field__title {
    width: 300px;
}

.Layer-goodsView .view__table--transport .view__table-group .field__title {
    text-align: left;
    padding: 10px;
}

.Layer-goodsView .view__table--transport .field__weight {
    width: 70px;
}

.Layer-goodsView .view__table--transport .field__quantity {
    width: 70px;
}

.Layer-goodsView .view__table--transport .field__amount {
    width: 120px;
}

.Layer-goodsView .view__table--transport .field__price {
    width: 100px;
}

.Layer-goodsView .view__table--transport .field__rate {
    width: 80px;
}

/* view__table--payment */

.Layer-goodsView .view__table--payment .field__option {
    width: 80px;
}

.Layer-goodsView .view__table--payment .option-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Layer-goodsView .view__table--payment .field__number {
    width: 50px;
}

.Layer-goodsView .view__table--payment .field__status {
    width: 100px;
}

.Layer-goodsView .view__table--payment .field__method {
    width: 100px;
}

.Layer-goodsView .view__table--payment .field__price {
    width: 100px;
}

.Layer-goodsView .view__table--payment .field__confirm_at {
    width: 150px;
}

.Layer-goodsView .view__table--payment .field__pg {
    width: 100px;
}

.Layer-goodsView .view__table--payment .field__no {
    width: 100px;
}

.Layer-goodsView .view__table--payment .field__auth {
    width: 100px;
}

.Layer-goodsView .view__table--payment .view__table-group .field__price {
    text-align: right;
    padding-right: 10px;
}

/* Layer-logsView */

.Layer-logsView .field__at {
    width: 120px;
}

.Layer-logsView .field__field {
}

.Layer-logsView .field__a {
    width: 200px;
}

.Layer-logsView .field__b {
    width: 200px;
}

.Layer-logsView .field__name {
    width: 100px;
}

.Layer-logsView .field__ip {
    width: 120px;
}

.Layer-logsView .view__table-not {
    height: 100px;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: #333;
}

/* Layer-goodsGroup */

.Layer-goodsGroup .view__message {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #2d3539;
}

.Layer-goodsGroup .view__table {
    margin-top: 10px;
}

.Layer-goodsGroup .view__checkbox {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    top: 0 !important;
}

.Layer-goodsGroup .view__checkbox label:before {
    left: calc(50% - 10px) !important;
    top: calc(50% - 10px) !important;
}

.Layer-goodsGroup .field__checkbox {
    position: relative;
    width: 50px;
}

.Layer-goodsGroup .field__id {
    width: 80px;
}

.Layer-goodsGroup .field__status {
    width: 100px;
}

.Layer-goodsGroup .field__type {
    width: 70px;
}

.Layer-goodsGroup .field__title {
    width: 300px;
}

.Layer-goodsGroup td.field__title {
    text-align: left;
    padding: 10px;
}

.Layer-goodsGroup .field__weight {
    width: 70px;
}

.Layer-goodsGroup .field__quantity {
    width: 70px;
}

.Layer-goodsGroup .field__amount {
    width: 100px;
}

.Layer-goodsGroup td.field__amount {
    text-align: right;
    padding: 10px;
}

/* Layer-paymentView */

.Layer-paymentView .view__table--product .field__id {
    width: 80px;
}

.Layer-paymentView .view__table--product .field__status {
    width: 120px;
}

.Layer-paymentView .view__table--product .field__goods {
}

.Layer-paymentView .view__table--product .field__price {
    width: 120px;
}

.Layer-paymentView .view__table--product .view__table-group .field__goods {
    text-align: left;
    padding: 10px;
}

.Layer-paymentView .view__table--product .view__table-group .field__price {
    padding: 10px;
}

.Layer-paymentView .view__table--product .view__table-group .field__price input {
    text-align: right;
}

.Layer-paymentView .view__table--cancel .field__option {
    width: 80px;
}

.Layer-paymentView .view__table--cancel .option-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Layer-paymentView .view__table--cancel .field__at {
    width: 150px;
}

.Layer-paymentView .view__table--cancel .field__price {
    width: 100px;
}

.Layer-paymentView .view__table--cancel .field__no {
    width: 100px;
}

.Layer-paymentView .view__table--cancel .field__memo {
    width: 200px;
}

.Layer-paymentView .view__table--cancel .field__bill {
    width: 230px;
}

.Layer-paymentView .view__table--cancel .view__table-group .field__price {
    text-align: right;
    padding-right: 10px;
}

/* Layer-CreditWithdrawView */

.Layer-CreditWithdrawView .view__table--payment .field__option {
    width: 100px;
}

.Layer-CreditWithdrawView .view__table--payment .option-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Layer-CreditWithdrawView .view__table--payment .field__number {
    width: 80px;
}

.Layer-CreditWithdrawView .view__table--payment .field__status {
    width: 100px;
}

.Layer-CreditWithdrawView .view__table--payment .field__method {
    width: 100px;
}

.Layer-CreditWithdrawView .view__table--payment .field__price {
    width: 100px;
}

.Layer-CreditWithdrawView .view__table--payment .field__confirm_at {
    width: 150px;
}

.Layer-CreditWithdrawView .view__table--payment .field__pg {
    width: 100px;
}

.Layer-CreditWithdrawView .view__table--payment .field__no {
    width: 100px;
}

.Layer-CreditWithdrawView .view__table--payment .field__auth {
    width: 100px;
}

.Layer-CreditWithdrawView .view__table--payment .view__table-group .field__price {
    text-align: right;
    padding-right: 10px;
}

/* Layer-goodsWrite */

.Layer-goodsWrite .goods-images {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}

.Layer-goodsWrite .goods-images img {
    width: 100px;
    max-width: 100%;
}

/* Layer-errorView */

.Layer-errorView .field__at {
    width: 120px;
}

.Layer-errorView .field__message {
}

.Layer-errorView .field__read {
    width: 100px;
}

.Layer-errorView .view__table-not {
    height: 100px;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: #333;
}
</pre></body></html>