@font-face {
    font-family: "Alibaba_Light";
    src: url("https://g.alicdn.com/CGW-Developer/fonts/AlibabaPuHuiTi/Alibaba_PuHuiTi_2.0_45_Light_45_Light.woff2") format("woff2");
}
@font-face {
    font-family: "Alibaba_Regular";
    src: url("https://g.alicdn.com/CGW-Developer/fonts/AlibabaPuHuiTi/Alibaba_PuHuiTi_2.0_55_Regular_55_Regular.woff2") format("woff2");
}
@font-face {
    font-family: "Alibaba_Medium";
    src: url("https://g.alicdn.com/CGW-Developer/fonts/AlibabaPuHuiTi/Alibaba_PuHuiTi_2.0_65_Medium_65_Medium.woff2") format("woff2");
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



html {
    color: #fff;
    font-size: 16px;
    scrollbar-highlight-color: rgba(51, 180, 255, 0);
    scrollbar-3dlight-color: rgba(51, 180, 255, 0);
    scrollbar-darkshadow-color: rgba(51, 180, 255, 0);
    scrollbar-shadow-color: rgba(51, 180, 255, 0);
    scrollbar-arrow-color: #333333;
    scrollbar-track-color: rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
    line-height: 1.4;
    background-color: #000;

}

body {
    font-size: 14px;
    font-family: 'Alibaba_Medium', 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;

}

img {
    object-fit: cover;
    max-width: 100%;
    vertical-align: middle
}

a, button {
    -webkit-tap-highlight-color: transparent;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
}


a {
    display: inline-block;
    vertical-align: middle;
    transition: all 0.5s;
    color: #000;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

input {
    outline: none;
}

:root {
    --color: #0075C2;
    --color-z: #333333
}

p,
h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    padding: 0;
    font-weight: 400;
}




input[type="radio"]::before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #999;
    box-sizing: border-box;
    position: absolute;
    top: 48px;
    position: absolute;
    top: 0;
    left: 0;
}

input[type="radio"]:checked::before {
    background-color: var(--color);
    background-clip: content-box;
    border: 1px solid var(--color);
    padding: 1px;
    box-sizing: border-box;
}

input[type="checkbox"] {
    margin-top: 0;
    width: 16px;
    height: 16px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    line-height: 18px;
    position: relative;
}

input[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    border: 1px solid #d9d9d9
}

input[type="checkbox"]:checked::before {
    content: "\2713";
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border: 1px solid var(--color);
    color: var(--color);
    font-size: 16px;
    font-weight: bold;
}

.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bx-text-p2 {
    line-height: 25px;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.bx-text-p3 {
    line-height: 25px;
    height: 75px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.bx-text-p4 {
    line-height: 25px;
    height: 100px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.bx-img-hover:hover img {
    transform: scale(1.1);
    transition: all 0.5s;
}

.bx-img-hover img {
    transition: all .5s
}

.bx-img-hover:hover img {
    transform: scale(1.1)
}

.img-padding {
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
    position: relative
}

.img-padding img {
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%
}

.buts {
    background-color: var(--color);
    border-radius: 50px;
    display: inline-block;
    font-size: 16px;
    line-height: 50px;
    min-width: 130px;
    padding: 0 8px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.5s;
    outline: none;
}

.buts,
.buts i {
    color: #fff !important
}

.buts i {
    font-size: 18px;
    vertical-align: sub
}

.buts:hover {
    color: #fff !important;
    opacity: .8
}
.pt80{
    padding-top: 80px;
}
.pb80{
    padding-bottom: 80px;
}
.p25{
    padding: 25px;
}
.mt50{
    margin-top: 50px;
}
.mt40{
    margin-top: 40px;
}
.mt30{
    margin-top: 30px;
}
.mt20{
    margin-top: 20px;
}
.mt10{
    margin-top: 10px;
}
.max1200 {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.max1000 {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.shadow{
    box-shadow: 0 0 10px rgba(180, 184, 206, 0.14);
}
.ptb25{
    padding-top: 25px;
    padding-bottom: 25px;
}
.plr30{
    padding-left: 30px;
    padding-right: 30px;
}
@media screen and (max-width: 1300px) {
    .max1200{
        max-width: 1020px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .max1000 {
        max-width: 820px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .buts {
        line-height: 40px;
        min-width: 110px;
        font-size: 14px;
    }
    .pt80{
        padding-top: 60px;
    }
    .pb80{
        padding-bottom: 60px;
    }
    .p25{
        padding: 20px;
    }
    .mt50{
        margin-top: 35px;
    }
    .mt40{
        margin-top: 28px;
    }
    .mt30{
        margin-top: 21px;
    }
    .mt20{
        margin-top: 14px;
    }
    .mt10{
        margin-top: 7px;
    }
    .plr30{
        padding-left: 20px;
        padding-right: 20px;
    }
    .ptb25{
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

@media screen and (max-width: 1000px) {
    .max1200, .max1000{
        width: 100%;
    }
    .buts{
        line-height: 34px;
        min-width: 90px;
        font-size: 12px;
    }
    .pt80{
        padding-top: 20px;
    }
    .pb80{
        padding-bottom: 20px;
    }
    .p25{
        padding: 15px;
    }
    .mt50{
        margin-top: 25px;
    }
    .mt40{
        margin-top: 20px;
    }
    .mt30{
        margin-top: 15px;
    }
    .mt20{
        margin-top: 10px;
    }
    .mt10{
        margin-top: 5px;
    }
    .plr30{
        padding-left: 10px;
        padding-right: 10px;
    }
    .ptb25{
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

