*{
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
    color: white;
}

/* 滚动条整体样式 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* 滚动条滑块部分 */
::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 4px;
}

@media screen and (max-width: 750px) {
    /* 手机端 */
    .nav{
        display: none !important;
    }

    .login{
        display: none !important;
    }

    .hamburger {
        display: inline !important;
    }
    main{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    .banner{
        width: 100% !important;
        height: 80% !important;
    }
    .main-left{
        display: none !important;
    }
    .main-right ul{
        display: flex;
    }
    .main-right li{
        border-right: none !important;
        border-bottom: 2px solid rgba(232, 234, 233, .5) !important;
    }
    .banner-content {
        font-size: 50px !important;
    }
    .container-one img {
        width: 120px !important;
        height: auto !important;
    }
    .image-mobile{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .container-one span:nth-child(1) {
        font-size: 80px !important;
    }
    .container-content h1{
        font-size: 24px !important;
    }
    .container-text {
        width: 80% !important;
    }
    .container-content p{
        font-size: 10px !important;
        font-weight: normal !important;
    }
    .container-more{
        font-size: 14px !important;
    }
    .footer-left h1 {
        font-size: 14px !important;
    }
    .footer-center{
        height: 80% !important;
    }
    .footer-center h1{
        font-size: 14px !important;
    }
    .footer-center li{
        font-size: 14px !important;
    }
}

@media screen and (min-width: 751px) and (max-width: 1023px) {
    /* 平板 */
}

@media screen and (min-width: 1024px) {
    /* 网页 */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(150px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInBTN {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



a:active{
   color: rgba(255, 255, 255, .5);
    transform: scale(0.9);
}
.bg-video{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}
.container{
    width: 95%;
    margin: auto;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    opacity: 1;
}
header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: inline-block;
}
.nav{
    width: 20%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hamburger {
    cursor: pointer;
    display: none;
    position: relative;
}

.card-active{
    display: flex !important;
    flex-direction: column;
    gap: 10px;
}

.hamburger input {
    display: none;
}

.hamburger svg {
    height: 3em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
    fill: none;
    stroke: white;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
    stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
    transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

.card {
    width: 200px;
    background-color: rgba(36, 40, 50, 0.5);
    background-image: linear-gradient(
            139deg,
            rgba(36, 40, 50, 0.5) 0%,
            rgba(36, 40, 50, 0.5) 0%,
            rgba(37, 28, 40, 0.5) 100%
    );

    border-radius: 10px;
    padding: 15px 0;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 1;
    display: none;
}

.card .separator {
    border-top: 1.5px solid #7d7e86;
}

.card .list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 10px;
}

.card .list .element {
    display: flex;
    align-items: center;
    color: #7e8590;
    gap: 10px;
    transition: all 0.3s ease-out;
    padding: 4px 7px;
    border-radius: 6px;
    cursor: pointer;
}

.card .list .element svg {
    width: 19px;
    height: 19px;
    transition: all 0.3s ease-out;
}

.card .list .element .label {
    font-weight: 600;
}

.card .list .element:hover {
    background-color: rgb(161, 121, 255);
    color: #ffffff;
    transform: translate(1px, -1px);
}

.card .list .element:active {
    transform: scale(0.99);
}

.card .list:not(:last-child) .element:hover svg {
    stroke: #ffffff;
}

.card .list:last-child svg {
    stroke: #bd89ff;
}
.card .list:last-child .element {
    color: #bd89ff;
}

.card .list:last-child .element:hover {
    background-color: rgba(56, 45, 71, 0.836);
}

main{
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner{
    width: 50%;
    height: 50%;
    overflow: hidden;
    user-select: none;
}

.title-line{
    width: 70px;
    height: 2px;
    background-color: rgba(251, 215, 132, 1);
}

.banner-title{
    height: 100px;
    opacity: 1;
    font-size: 18px;
    letter-spacing: 6px;
    color: rgba(251, 215, 132, 1);
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    animation: fadeIn 1s ease-out forwards;
}

.banner-content {
    opacity: 1;
    font-size: 88px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    animation: fadeInUp 1s ease-out forwards;

}

.main-left ul{
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.main-left img{
    width: 25px;
    height: 25px;
}
.main-left li {
    user-select: none;
    display: flex;
    cursor: pointer;
    flex-direction: column;
}
.main-left li:active{
    color: #d7d4d4;
    transform: scale(0.9);
}
.main-left li p{
    transform: rotate(90deg);
    transform-origin: center center;
}
.main-right li{
    height: 60px;
    cursor: pointer;
    user-select: none;
    line-height: 60px;
    text-align: center;
    padding: 0 20px;
    border-right: 2px solid rgba(232, 234, 233, .5);
}
.liActive-pc{
    border-right: 2px solid rgb(255, 255, 255) !important;
    animation: fadeInBTN 1s ease-out forwards;
}

.liActive-mobile{
    border-bottom: 2px solid rgb(255, 255, 255) !important;
    animation: fadeInBTN 1s ease-out forwards;
}

.liActive-Tablet{

}

.container-one{
    width: 100%;
    margin: 20px auto;
    position: relative;
    display: flex;
    user-select: none;
}

.container-one img {
    width: 566px;
    height: 720px;
    object-fit: cover;
}

.container-one span:nth-child(1) {
    position: absolute;
    left: 40px;
    top: 38px;
    opacity: 0.1;
    font-size: 240px;
    font-weight: bold;
    color: rgba(255, 255, 255, 1);
}

.container-one .numberTwo{
    position: absolute;
    top: 0;
    left: 0;

}

.container-more{
    opacity: 1;
    font-size: 18px;
    font-weight: bold;
    color: rgba(251, 215, 132, 1);
    user-select: text;
    cursor: pointer;
}

.container-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.container-text{
    width: 50%;
    margin: auto;
}

.container-content h1{
    opacity: 1;
    font-size: 64px;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
}

.container-content p{
    opacity: 1;
    display: flex;
    font-size: 18px;
    font-weight: bold;
    color: rgba(255, 255, 255, 1);
    margin: 20px 0;
}

footer{
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 30px auto;
}

.footer-left{
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.footer-left img {
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: inline-block;
}

.icp-mobile{
    opacity: 0.5;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
}

.footer-left h1 {
    opacity: 1;
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
}

.footer-center{
    height: 100%;
}

.footer-center h1{
    height: 15%;
    opacity: 1;
    font-size: 24px;
    font-weight: 700;
    color: rgba(251, 215, 132, 1);

}

.footer-center ul{
    height: 85%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-center li{
    opacity: 1;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
}
