*{
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    outline: none;
}

body{
    width: 100%;
    overflow-x: hidden;
}

*, *::after, *::before {
    box-sizing: border-box;
}

::-webkit-scrollbar{
    width: 0;
}

#my-scrollbar {
    height: 100vh;
}

.scrollbar-track-y{
    z-index: 9999!important;
}

.scrollbar-track {
    background-color: transparent !important;
    right: 4px !important;
}

.scrollbar-track:hover {
    cursor: grab;
}

img{
    object-fit: cover;
}
header {
    width: 100%;
    height: 100px;
    background: #000000;
    position: fixed;
    z-index: 19991209;
}
header .header {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0 250px;
    align-items: center;
    justify-content: space-between;
}
header .header .logo svg {
    width: auto!important;
    height: 35px;
    fill: #ffffff!important;
}
header .header nav a {
    font-size: 14px;
    font-family: Arial;
    font-weight: bold;
    color: #FFFFFF;
    margin-right: 60px;
    position: relative;
    transition: 0.6s;
}
header .header nav a:after {
    content: "";
    width: 100%;
    height: 3px;
    background: #DB011C;
    position: absolute;
    bottom: -13px;
    left: 0;
    opacity: 0;
    transition: 0.6s;
}
header .header nav a:hover::after {
    opacity: 1;
}
header .header nav a:nth-last-child(1) {
    margin-right: 0;
}
header .header nav a:hover {
    color: #DB011C;
}
header .header nav a.on {
    color: #DB011C;
}
header .header nav a.on:after {
    opacity: 1;
}
header .header .search {
    cursor: pointer;
}
header .header .search .iconfont {
    font-size: 20px;
    color: #FFFFFF;
}
.scroll-content {
    overflow: hidden;
}
.banner {
    width: 100%;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}
.banner .img {
    width: 100%;
}
.banner .img img {
    width: 100%;
    display: block;
}
.banner .text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 140px;
    background: rgba(26,26,26,0.6);
}
.banner .text p {
    text-transform: uppercase;
    font-size: 40px;
    font-family: Arial;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 140px;
    text-align: center;
}
footer {
    width: 100%;
    overflow: hidden;
    background-image: url(/static/images/bg.png);
}
footer .footer {
    width: 1420px;
    margin: auto;
    padding-top: 96px;
}
footer .footer .top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 120px;
}
footer .footer .top .link2 {
    display: flex;
}
footer .footer .top .link2 .item {
    display: flex;
    align-items: center;
    margin-right: 90px;
}
footer .footer .top .link2 .item .box {
    width: 26px;
    height: 26px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: 0.6s;
}
footer .footer .top .link2 .item .box .iconfont {
    font-size: 14px;
    color: #000000;
    transition: 0.6s;
}
footer .footer .top .link2 .item p {
    font-size: 14px;
    font-family: Arial;
    font-weight: normal;
    color: #FFFFFF;
    line-height: 26px;
    opacity: 0.5;
    transition: 0.6s;
}
footer .footer .top .link2 .item:hover p {
    color: #DB011C;
}
footer .footer .top .link2 .item:hover .box {
    background: #DB011C;
}
footer .footer .top .link2 .item:hover .box .iconfont {
    color: #FFFFFF;
}
footer .footer .top .goTop {
    display: flex;
    align-items: center;
}
footer .footer .top .goTop p {
    font-size: 14px;
    font-family: Arial;
    font-weight: normal;
    color: #FF0000;
}
footer .footer .top .goTop .iconfont {
    transform: rotate(-90deg);
    font-size: 30px;
    color: #DB011C;
}
footer .footer .bottom {
    display: flex;
    justify-content: space-between;
    margin-bottom: 90px;
    align-items: flex-end;
}
footer .footer .bottom p {
    font-size: 12px;
    font-family: Arial;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 26px;
}
footer .footer .bottom .right {
    font-size: 14px;
    font-family: Arial;
    font-weight: normal;
    color: #FFFFFF;
    line-height: 26px;
    opacity: 0.5;
}
footer .footer .bottom .left p:nth-child(1) {
    margin-bottom: 30px;
}
