@font-face {
    font-family: 'Alibaba_PuHuiT';
    src: url('../../../static/fonts/AlibabaPuHui/Alibaba_PuHuiTi_2.0_55_Regular_55_Regular.ttf') format('truetype'); /* 也可以是其他格式，如 'woff', 'woff2' */
}
@font-face {
    font-family: 'Alibaba_PuHuiT';
    src: url('../../../static/fonts/AlibabaPuHui/Alibaba_PuHuiTi_2.0_65_Medium_65_Medium.ttf') format('truetype');
    font-weight: 500;
}
@font-face {
    font-family: 'Alibaba_PuHuiT';
    src: url('../../../static/fonts/AlibabaPuHui/Alibaba_PuHuiTi_2.0_55_Regular_85_Bold.ttf') format('truetype');
    font-weight: bold;
}

* {
    margin: 0px;
    padding: 0px;
    font-family: 'Alibaba_PuHuiT';
}
body,html{
    padding: 0;
    margin: 0;
}
:root{
    --color-primary: #F26417;
    --color-bg: rgba(52,39,30, 0.7);
    --color-dropdown-item-hover-bg:rgba(242,100,23,0.1);
    --padding-height:60px;
}
*, ::after, ::before{
    box-sizing: border-box;
    transition: all .2s;
}
img:not([src]):not([alt]){
    background: #FFDBC7;
}
ul li{
    text-decoration: none;
    list-style: none;
}
ul,li{
    list-style-type: none;
}
a{
    text-decoration: none;
}
a:hover{
    text-decoration: none !important;
}
.color-primary{
    color: var(--color-primary);
}
.color-white{
    color: #ffffff !important;
}
.d-flex{
    display: flex;
}
.align-c{
    align-items: center;
}
.d-flex-center{
    display: flex;
    justify-content: center;
}
.d-flex-between{
    display: flex;
    justify-content: space-between;
}
.flex-col{
    flex-direction: column;
}
.flex-wrap{
    flex-wrap: wrap;
}
.w-1200{
    width: 1228px;
    margin: auto;
    padding: 0 16px;
}
.top-sticky{
    position: sticky;
    top: 0;
    z-index: 3;
}
.btm-btns{
    z-index: 2;
    flex-wrap: wrap;
}
.el-btn{
    background: var( --color-primary);
    border: 1px solid var( --color-primary);
    min-width: 120px;
    padding: 0 24px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    cursor: pointer;
    width: fit-content;
    position: relative;
    white-space: nowrap;
    text-decoration: none;
    border-radius: 48px;
}
.el-btn .el-iconfont{
    font-size: 12px;
    margin-left: 8px;
    color: #FFFFFF;
}
.el-btn:hover{
    background: #fff;
    color: var( --color-primary);
}
.el-btn:hover .el-iconfont{
    color: var( --color-primary);
}
.el-btn-radius{
    border-radius: 40px;
}
.el-btn-outline{
    border: 1px solid var( --color-primary);
    color: var( --color-primary);
    background: transparent;
}
.el-btn-outline .el-iconfont{
    color: var( --color-primary);
}
.el-btn-white{
    background: #FFFFFF;
    color: var( --color-primary);
    border: 1px solid transparent;
}
.el-btn-white .el-iconfont{
    color: var( --color-primary);

}
.el-btn-white:hover{
    color: var( --color-primary);
    border: 1px solid  var( --color-primary);
}
.el-btn-white:hover .el-iconfont{
    color: var( --color-primary);
}
.text-c{
    text-align: center;
}
.e-grid{
    display: grid;
    grid-gap: 16px;
}
.e-grid-2{
   grid-template-columns: repeat(2,1fr);
}
.e-grid-3{
   grid-template-columns: repeat(3,1fr);
}
.e-grid-4{
    grid-template-columns: repeat(4,1fr);
}
.m-auto{
    margin: auto;
}
.mt-20{
    margin-top: 20px;
}
.mb-10{
    margin-bottom: 10px;
}
.mb-14{
    margin-bottom: 14px;
}
.mb-20{
    margin-bottom: 20px;
}
.mb-30{
    margin-bottom: 30px;
}
.mb-40{
    margin-bottom: 40px;
}
.mt-40{
    margin-top: 40px;
}
.mt-60{
    margin-top: 60px;
}
.mb-60{
    margin-bottom: 60px;
}
.pb-60{
    padding-bottom: 60px;
}
.pt-60{
    padding-top: 60px;
}
.pb-80{
    padding-bottom: 80px;
}
.pt-80{
    padding-top: 80px;
}
.mr-20{margin-right: 20px;}
.bg-grey{
    background: #F5F5F5;
}
.limit{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.limit2{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.preview-img{
    position: relative;
    width: 100px;
    height: 100px;
    border: 1px solid #eee;
}
.preview-img input{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.preview-img .preview-add{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 100px;
    color: #666;
    font-size: 30px;
    pointer-events: none;
    z-index: 2;
    background: #fff;
}
.preview-img img,.preview-img video{
    width: 100px;
    height: 100px;
    object-fit: contain;
    position: relative;
    z-index: 3;
    background: #fff;
}
.preview-img .preview-close,.preview-img .preview-video-close{
    cursor: pointer;
    position: absolute;
    color: #fff;
    right: 0;
    top: 0;
    width: 30px;
    height: 30px;
    font-size: 20px;
    text-align: center;
    line-height: 30px;
    background: rgba(0,0,0,.4);
    z-index: 4;
}
.p-t{
    padding-top: var(--padding-height);
}
.p-b{
    padding-bottom: var(--padding-height);
}
.en-btm-btn{
    position: sticky;
    bottom: 0;
    z-index: 3;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}
.edit-text img{
    max-width: 100%;
    object-fit: contain;
}
@media (min-width: 768px) {
    .en-btm-btn{
        display: none;
    }
}


@media (max-width: 1227px) {
    .w-1200{
        width: 100%;
    }
}

@media (max-width: 1024px) {

}

@media (max-width: 800px) {
    .e-grid-m-2{
        grid-template-columns: repeat(2,1fr);
    }

}

@media (max-width: 608px) {
    .e-grid-s-1{
        grid-template-columns: repeat(1,1fr);
    }
    .e-grid-s-1{
        grid-template-columns: repeat(1,1fr);
    }
}
