body * {
    box-sizing: border-box;
    /*flex-shrink: 0;*/
}

body {
    font-family: "PingFang SC Regular", "Microsoft YaHei", Helvetica, Arial, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #333;
    font-size: 0;
    margin: 0;
    padding: 0;
    min-width: 1280px; /* 小于1500px，用1200px内容宽度，两边最小间距40px； */
}

p,
ul {
    padding: 0;
    margin: 0;
}

input {
    background-color: transparent;
    border: 0;
    color: #333;
}

input::placeholder {
    color: #BBB;
}

input:focus {
    border-color: #DCAE60;
    outline: none;
}

button {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    background-color: transparent;
}

a {
    text-decoration: none;
    outline: none;
    color: #333;
}

ol,
ul {
    list-style: none
}

.pointer {
    cursor: pointer;
}

.nds {
    display: none
}

.nvs {
    visibility: hidden
}

.text-green {
    color: #009966;
}

.text-red {
    color: #F4333C;
}

.text-primary {
    color: #ddaf59;
}

.text-gold {
    color: #DCAE60;
}

.text-grey {
    color: #666
}

.text-light-grey {
    color: #888
}

.text-black {
    color: #333
}

.text-white {
    color: #fff
}

.block {
    display: block;
}

.inline-block {
    display: inline-block
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.f0 {
    font-size: 0
}

.f12 {
    font-size: 12px
}

.f13 {
    font-size: 13px
}

.f14 {
    font-size: 14px
}

.f16 {
    font-size: 16px
}

.f18 {
    font-size: 18px
}

.f20 {
    font-size: 20px
}

.f24 {
    font-size: 24px
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.h-full {
    height: 100%;
}

.w-full {
    width: 100%;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.flex {
    display: flex;
}

.flex-1 {
    flex: 1;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-wrap {
    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;
}

.items-start {
    display: flex;
    align-items: flex-start;
}

.items-center {
    display: flex;
    align-items: center;
}

.align-end {
    display: flex;
    align-items: flex-end;
}

.content-page {
    width: 1400px;
}

@media (max-width: 1499px) {
    .content-page {
        width: 1200px;
    }
}

.object-cover {
    object-fit: cover;
}

.overflow-hidden {
    overflow: hidden;
}

.padding-header {
    padding-top: 134px;
}
