
input {
    background-color: transparent;
    border: 0;
}
button {
    margin: 0;
    padding: 0;
    border: 1px solid transparent;
    outline: none;
    background-color: transparent;
}

button:active {
    opacity: 0.6;
}
.flex-col {
    display: flex;
    flex-direction: column;
}
.flex-row {
    display: flex;
    flex-direction: row;
}
.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}
.justify-start {
    display: flex;
    justify-content: flex-start;
}
.justify-center {
    display: flex;
    justify-content: center;
}

.justify-end {
    display: flex;
    justify-content: flex-end;
}
.justify-evenly {
    display: flex;
    justify-content: space-evenly;
}
.justify-around {
    display: flex;
    justify-content: space-around;
}
.justify-between {
    display: flex;
    justify-content: space-between;
}
.align-start {
    display: flex;
    align-items: flex-start;
}
.align-center {
    display: flex;
    align-items: center;
}
.align-end {
    display: flex;
    align-items: flex-end;
}
.gap-5 {
    gap: 5px;
}

.flex-1 {
    flex: 1;
}
.min-w-0 {
    min-width: 0;
}

.font-bold {
    font-weight: bold !important;
}

.text-wrapper_8 {
    height: 20px;
    overflow-wrap: break-word;
    font-size: 0;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: normal;
    text-align: left;
    white-space: nowrap;
    line-height: 20px;
    margin: 2px 0 2px 0;
}
.text_18 {
    overflow-wrap: break-word;
    color: rgba(246, 80, 49, 1);
    font-size: 14px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: bold;
    text-align: left;
    white-space: nowrap;
    line-height: 20px;
}

.text_19 {
    overflow-wrap: break-word;
    color: rgba(246, 80, 49, 1);
    font-size: 20px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: bold;
    text-align: left;
    white-space: nowrap;
    line-height: 20px;
}

.text_20 {
    overflow-wrap: break-word;
    color: rgba(246, 80, 49, 1);
    font-size: 14px;
    font-family: Alibaba-PuHuiTi-M;
    font-weight: bold;
    text-align: left;
    white-space: nowrap;
    line-height: 20px;
}
.detail_text_18 {
    overflow-wrap: break-word;
    color: rgba(246, 80, 49, 1);
    font-size: 18px;
    font-family: Alibaba-PuHuiTi-M;
    text-align: left;
    white-space: nowrap;
    line-height: 20px;
}

.detail_text_19 {
    overflow-wrap: break-word;
    color: rgba(246, 80, 49, 1);
    font-size: 25px;
    font-family: Alibaba-PuHuiTi-M;
    text-align: left;
    white-space: nowrap;
    line-height: 20px;
}

.detail_text_20 {
    overflow-wrap: break-word;
    color: rgba(246, 80, 49, 1);
    font-size: 18px;
    font-family: Alibaba-PuHuiTi-M;
    text-align: left;
    white-space: nowrap;
    line-height: 20px;
}

.h-11 {
    height: 11px;
}

.gap-10 {
    gap: 10px;
}

.text-right {
    text-align: right;
}

.one_line_hide {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.two_line_hide {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-word;
}
.h-full{
    height: 100%;
}

.w-full {
    width: 100%;
}

.icon_store {
    width: 20px;
    height: 20px;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.color_primary {
    color: #F65031;
}

textarea:focus {
    outline: none;
    border: none;
    box-shadow: none;
}