@font-face {
    font-family: "OPPOSans";
    src: url("../font/OPPOSans-B.ttf") format("truetype");
}

* {
    padding: 0px;
    margin: 0px;
    text-align: center;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    font-size: 0px;
    font-family: "OPPOSans", "PingFang SC", "Helvetica Neue", "Helvetica",
        "Arial", sans-serif;
}

div,
a,
span,
li,
video,
img,
header,
button,
input {
    display: inline-block;
    position: relative;
    outline: none;
    border: 0px;
    background-color: rgba(255, 255, 255, 0);
}

/* div:not(.vxe-table){
    display: inline-block;
    position: relative;
    outline: none;
    border: 0px;
    background-color: rgba(255, 255, 255, 0);
} */


/* .customer-size-container div,
.customer-size-container span {
    display: block;
    position: initial;
}*/

.vxe-table div {
    display: block;
    position: initial;
} 
div.vxe-loading  {
    display: none;
    position: absolute;
} 

.vxe-table--checkbox-range{
    border:none !important;
}

select {
    outline: none;
}

iframe {
    border: 0px;
}

div,
iframe,
canvas,
header,
footer {
    width: 100%;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

em {
    font-style: normal;
}

span,
p,
a {
    cursor: default;
}

button {
    cursor: pointer;
}

#loading {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 1000;
    text-align: center;
    vertical-align: middle;
    background-color: rgba(128, 128, 128, 0.6);
}

#loading img {
    width: 100px;
    height: 100px;
    vertical-align: middle;
    top: 45%;
}

.notice-content {
    padding: 5px;
    cursor: pointer;
}

.notice-content label {
    margin-bottom: 0;
}

.notice-item {
    position: relative;
    padding: 4px 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0px 1px 1px #cccccc70;
    border: 1px solid #eeee;
}

.notice-item-active .read {
    color: #28a745 !important;
}

.notice-item-active::after {
    content: "";
    border-radius: 50%;
    position: absolute;
    width: 8px;
    height: 8px;
    background: #28a745;
    right: -2px;
    top: -3px;
}

.notice-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.notice-item-header .title {
    font-size: 1.2rem;
}

.notice-item-header .sub {
    color: #aaa;
    width: 30%;
    min-width: 120px;
    text-align: right;
}

.notice-item-header .sub div {
    text-align: inherit;
    color: #aaa;
    font-size: 0.8rem;
}

.notice-item-content {
    text-align: left;
    font-size: 0.8rem;
    color: #aaa;
}

.w-max-full {
    width: max-content;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.check-icon {
    background-color: #0872fc;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* #region selectable */
.selectable {
    border: 2px solid rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    position: relative;
    width: max-content;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.selectable.disabled {
    filter: opacity(0.5);
    cursor: not-allowed;
}

.selectable.disabled::before {
    content: none;
}

.selectable::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transition: all 0.2s;
}

.selectable::after {
    display: block;
    width: 25px;
    height: 25px;
    content: none;

    background: url(../image/fast/select.png) no-repeat;
    background-size: 25px 25px;

    position: absolute;
    bottom: 0;
    right: 0;
}

.selectable.small-select::after {
    width: 15px;
    height: 15px;

    background-size: 15px 15px;
}

.selectable:hover::before {
    background-color: rgba(0, 0, 0, 0.2);
}

.selectable.selected {
    border: 2px solid #b59c5c;
}

.selectable.selected::after {
    content: "";
}

.selectable.no-padding {
    padding: 0;
}

.select-imgbox.no-bottom {
    margin: 0;
}

/* #endregion selectable */

/* #region select-item */
.select-item {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.select-imgbox {
    flex: 1;
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.select-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.select-title {
    cursor: pointer;
    text-align: center;
    margin: 0;
}

/* #endregion select-item */

/* #region select-card */

.select-card .card-body {
    display: grid;
    grid-gap: 20px;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.card-body .select-item {
    width: 100%;
}

[lg] .select-card .card-body {
    grid-template-columns: repeat(3, 1fr);
}

[xxl] .select-card .card-body {
    grid-template-columns: repeat(4, 1fr);
}

/* #endregion clothes-style */

/* #region collapse */
.collapse-icon {
    transition: all 0.3s;
    transform: rotate(180deg);
}

.collapsed .collapse-icon {
    transform: rotate(0deg);
}

/* #endregion collapse */

/* #region checkbox */
.checkbox {
    cursor: pointer;
    border: 1px solid #000;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.checkbox.checked,
.checkbox.half-checked {
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkbox.half-checked::after {
    content: "■";
}

.checkbox.checked {
    background-color: black;
    color: white;
}

.checkbox.checked::after {
    content: "✔";
}

/* #endregion checkbox */

/* #region rate-rectangle */
.rate-rectangle {
}

.rate-rectangle_container {
    padding-bottom: 100%;
    height: 0;
    position: relative;
}

/* #endregion rate-rectangle */

.luthai-collapse .card-header {
    background-color: #f6f6f6;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clothes-partial .card-body {
    padding: 10px;
}

.clothes-partial-data_row {
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(24, 1fr);
}

.grid {
    display: grid;
}

.grid-layout-24 {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
}

.grid-layout-20 {
    display: grid;
    grid-template-columns: repeat(20, 1fr);
}


/* #region 最小尺寸 */
.grid-col-1 {
    grid-column: span 1;
}
.grid-col-2 {
    grid-column: span 2;
}
.grid-col-3 {
    grid-column: span 3;
}
.grid-col-4 {
    grid-column: span 4;
}
.grid-col-5 {
    grid-column: span 5;
}
.grid-col-6 {
    grid-column: span 6;
}
.grid-col-7 {
    grid-column: span 7;
}
.grid-col-8 {
    grid-column: span 8;
}
.grid-col-9 {
    grid-column: span 9;
}
.grid-col-10 {
    grid-column: span 10;
}
.grid-col-11 {
    grid-column: span 11;
}
.grid-col-12 {
    grid-column: span 12;
}
.grid-col-13 {
    grid-column: span 13;
}
.grid-col-14 {
    grid-column: span 14;
}
.grid-col-15 {
    grid-column: span 15;
}
.grid-col-16 {
    grid-column: span 16;
}
.grid-col-17 {
    grid-column: span 17;
}
.grid-col-18 {
    grid-column: span 18;
}
.grid-col-19 {
    grid-column: span 19;
}
.grid-col-20 {
    grid-column: span 20;
}
.grid-col-21 {
    grid-column: span 21;
}
.grid-col-22 {
    grid-column: span 22;
}
.grid-col-23 {
    grid-column: span 23;
}
.grid-col-24 {
    grid-column: span 24;
}
/* #endregion */

/* #region sm尺寸 */
[sm] .sm\:grid-col-1 {
    grid-column: span 1;
}
[sm] .sm\:grid-col-2 {
    grid-column: span 2;
}
[sm] .sm\:grid-col-3 {
    grid-column: span 3;
}
[sm] .sm\:grid-col-4 {
    grid-column: span 4;
}
[sm] .sm\:grid-col-5 {
    grid-column: span 5;
}
[sm] .sm\:grid-col-6 {
    grid-column: span 6;
}
[sm] .sm\:grid-col-7 {
    grid-column: span 7;
}
[sm] .sm\:grid-col-8 {
    grid-column: span 8;
}
[sm] .sm\:grid-col-9 {
    grid-column: span 9;
}
[sm] .sm\:grid-col-10 {
    grid-column: span 10;
}
[sm] .sm\:grid-col-11 {
    grid-column: span 11;
}
[sm] .sm\:grid-col-12 {
    grid-column: span 12;
}
[sm] .sm\:grid-col-13 {
    grid-column: span 13;
}
[sm] .sm\:grid-col-14 {
    grid-column: span 14;
}
[sm] .sm\:grid-col-15 {
    grid-column: span 15;
}
[sm] .sm\:grid-col-16 {
    grid-column: span 16;
}
[sm] .sm\:grid-col-17 {
    grid-column: span 17;
}
[sm] .sm\:grid-col-18 {
    grid-column: span 18;
}
[sm] .sm\:grid-col-19 {
    grid-column: span 19;
}
[sm] .sm\:grid-col-20 {
    grid-column: span 20;
}
[sm] .sm\:grid-col-21 {
    grid-column: span 21;
}
[sm] .sm\:grid-col-22 {
    grid-column: span 22;
}
[sm] .sm\:grid-col-23 {
    grid-column: span 23;
}
[sm] .sm\:grid-col-24 {
    grid-column: span 24;
}
/* #endregion */

/* #region md尺寸 */
[md] .md\:grid-col-1 {
    grid-column: span 1;
}
[md] .md\:grid-col-2 {
    grid-column: span 2;
}
[md] .md\:grid-col-3 {
    grid-column: span 3;
}
[md] .md\:grid-col-4 {
    grid-column: span 4;
}
[md] .md\:grid-col-5 {
    grid-column: span 5;
}
[md] .md\:grid-col-6 {
    grid-column: span 6;
}
[md] .md\:grid-col-7 {
    grid-column: span 7;
}
[md] .md\:grid-col-8 {
    grid-column: span 8;
}
[md] .md\:grid-col-9 {
    grid-column: span 9;
}
[md] .md\:grid-col-10 {
    grid-column: span 10;
}
[md] .md\:grid-col-11 {
    grid-column: span 11;
}
[md] .md\:grid-col-12 {
    grid-column: span 12;
}
[md] .md\:grid-col-13 {
    grid-column: span 13;
}
[md] .md\:grid-col-14 {
    grid-column: span 14;
}
[md] .md\:grid-col-15 {
    grid-column: span 15;
}
[md] .md\:grid-col-16 {
    grid-column: span 16;
}
[md] .md\:grid-col-17 {
    grid-column: span 17;
}
[md] .md\:grid-col-18 {
    grid-column: span 18;
}
[md] .md\:grid-col-19 {
    grid-column: span 19;
}
[md] .md\:grid-col-20 {
    grid-column: span 20;
}
[md] .md\:grid-col-21 {
    grid-column: span 21;
}
[md] .md\:grid-col-22 {
    grid-column: span 22;
}
[md] .md\:grid-col-23 {
    grid-column: span 23;
}
[md] .md\:grid-col-24 {
    grid-column: span 24;
}
/* #endregion */

/* #region lg尺寸 */
[lg] .lg\:grid-col-1 {
    grid-column: span 1;
}
[lg] .lg\:grid-col-2 {
    grid-column: span 2;
}
[lg] .lg\:grid-col-3 {
    grid-column: span 3;
}
[lg] .lg\:grid-col-4 {
    grid-column: span 4;
}
[lg] .lg\:grid-col-5 {
    grid-column: span 5;
}
[lg] .lg\:grid-col-6 {
    grid-column: span 6;
}
[lg] .lg\:grid-col-7 {
    grid-column: span 7;
}
[lg] .lg\:grid-col-8 {
    grid-column: span 8;
}
[lg] .lg\:grid-col-9 {
    grid-column: span 9;
}
[lg] .lg\:grid-col-10 {
    grid-column: span 10;
}
[lg] .lg\:grid-col-11 {
    grid-column: span 11;
}
[lg] .lg\:grid-col-12 {
    grid-column: span 12;
}
[lg] .lg\:grid-col-13 {
    grid-column: span 13;
}
[lg] .lg\:grid-col-14 {
    grid-column: span 14;
}
[lg] .lg\:grid-col-15 {
    grid-column: span 15;
}
[lg] .lg\:grid-col-16 {
    grid-column: span 16;
}
[lg] .lg\:grid-col-17 {
    grid-column: span 17;
}
[lg] .lg\:grid-col-18 {
    grid-column: span 18;
}
[lg] .lg\:grid-col-19 {
    grid-column: span 19;
}
[lg] .lg\:grid-col-20 {
    grid-column: span 20;
}
[lg] .lg\:grid-col-21 {
    grid-column: span 21;
}
[lg] .lg\:grid-col-22 {
    grid-column: span 22;
}
[lg] .lg\:grid-col-23 {
    grid-column: span 23;
}
[lg] .lg\:grid-col-24 {
    grid-column: span 24;
}
/* #endregion */

/* #region xl尺寸 */
[xl] .xl\:grid-col-1 {
    grid-column: span 1;
}
[xl] .xl\:grid-col-2 {
    grid-column: span 2;
}
[xl] .xl\:grid-col-3 {
    grid-column: span 3;
}
[xl] .xl\:grid-col-4 {
    grid-column: span 4;
}
[xl] .xl\:grid-col-5 {
    grid-column: span 5;
}
[xl] .xl\:grid-col-6 {
    grid-column: span 6;
}
[xl] .xl\:grid-col-7 {
    grid-column: span 7;
}
[xl] .xl\:grid-col-8 {
    grid-column: span 8;
}
[xl] .xl\:grid-col-9 {
    grid-column: span 9;
}
[xl] .xl\:grid-col-10 {
    grid-column: span 10;
}
[xl] .xl\:grid-col-11 {
    grid-column: span 11;
}
[xl] .xl\:grid-col-12 {
    grid-column: span 12;
}
[xl] .xl\:grid-col-13 {
    grid-column: span 13;
}
[xl] .xl\:grid-col-14 {
    grid-column: span 14;
}
[xl] .xl\:grid-col-15 {
    grid-column: span 15;
}
[xl] .xl\:grid-col-16 {
    grid-column: span 16;
}
[xl] .xl\:grid-col-17 {
    grid-column: span 17;
}
[xl] .xl\:grid-col-18 {
    grid-column: span 18;
}
[xl] .xl\:grid-col-19 {
    grid-column: span 19;
}
[xl] .xl\:grid-col-20 {
    grid-column: span 20;
}
[xl] .xl\:grid-col-21 {
    grid-column: span 21;
}
[xl] .xl\:grid-col-22 {
    grid-column: span 22;
}
[xl] .xl\:grid-col-23 {
    grid-column: span 23;
}
[xl] .xl\:grid-col-24 {
    grid-column: span 24;
}
/* #endregion */

/* #region xxl尺寸 */
[xxl] .xxl\:grid-col-1 {
    grid-column: span 1;
}
[xxl] .xxl\:grid-col-2 {
    grid-column: span 2;
}
[xxl] .xxl\:grid-col-3 {
    grid-column: span 3;
}
[xxl] .xxl\:grid-col-4 {
    grid-column: span 4;
}
[xxl] .xxl\:grid-col-5 {
    grid-column: span 5;
}
[xxl] .xxl\:grid-col-6 {
    grid-column: span 6;
}
[xxl] .xxl\:grid-col-7 {
    grid-column: span 7;
}
[xxl] .xxl\:grid-col-8 {
    grid-column: span 8;
}
[xxl] .xxl\:grid-col-9 {
    grid-column: span 9;
}
[xxl] .xxl\:grid-col-10 {
    grid-column: span 10;
}
[xxl] .xxl\:grid-col-11 {
    grid-column: span 11;
}
[xxl] .xxl\:grid-col-12 {
    grid-column: span 12;
}
[xxl] .xxl\:grid-col-13 {
    grid-column: span 13;
}
[xxl] .xxl\:grid-col-14 {
    grid-column: span 14;
}
[xxl] .xxl\:grid-col-15 {
    grid-column: span 15;
}
[xxl] .xxl\:grid-col-16 {
    grid-column: span 16;
}
[xxl] .xxl\:grid-col-17 {
    grid-column: span 17;
}
[xxl] .xxl\:grid-col-18 {
    grid-column: span 18;
}
[xxl] .xxl\:grid-col-19 {
    grid-column: span 19;
}
[xxl] .xxl\:grid-col-20 {
    grid-column: span 20;
}
[xxl] .xxl\:grid-col-21 {
    grid-column: span 21;
}
[xxl] .xxl\:grid-col-22 {
    grid-column: span 22;
}
[xxl] .xxl\:grid-col-23 {
    grid-column: span 23;
}
[xxl] .xxl\:grid-col-24 {
    grid-column: span 24;
}
/* #endregion */

.flex-col-left {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.flex {
    display: flex;
}

.w-auto {
    width: auto;
}

.w-full {
    width: 100%;
}

.cursor-pointer {
    cursor: pointer;
}

body .big-modal {
    background-color: rgba(0, 0, 0, 0.5);
}

body .big-modal .modal-dialog {
    width: 100%;
    height: 100%;
}

body[md] .big-modal .modal-dialog {
    width: 80%;
    max-width: none;
}

.customer-size div {
    width: auto;
}

.tag {
    width: max-content;
    max-width: 100%;
    padding: 8px 24px;
    border: 1px solid gray;
    border-radius: 4px;

    display: flex;
    align-items: center;

}

.tag .close{
    font-size: 1.15em;
    margin-left: 5px;
    cursor: pointer;
}

.flex-1 {
    flex: 1 1 0%;
}

[md] .md\:w-\[70\%\] {
    width: 70%;
}

[lg] .lg\:w-1\/2,
[lg] .lg\:w-\[50\%\]
{
    width: 50%;
}
.checkAll{
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 10px;
}
