body {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

p {
    margin: 0;
}

a:focus,
a:hover {
    color: white;
}

.computerdiv {
    display: block;
}

.mobilediv {
    display: none;
}

@media screen and (max-width: 1024px) {
    .computerdiv {
        display: none !important;
    }

    .mobilediv {
        display: block !important;
    }

}

.swiper-index {
    width: 100%;
    overflow: hidden;
}

.swiper-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* header */
.header {
    width: 100%;
    height: 69px;
    position: absolute;
    z-index: 2;
    transition: 0.3s;
}

.head {
    width: 1530px;
    height: 100%;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    display: flex;
    justify-content: space-between;
}

.head-logo {
    margin-top: 14px;
    height: 41px;
}

.a-name {
    font-size: 14px;
    color: white;
}

.menu-a {
    margin: 0 14px;
    display: inline-block;
    overflow: hidden;
    margin-top: 24px;
}

.a-search {
    margin-top: 22px;
}

.a-border {
    width: 16px;
    height: 4px;
    display: block;
    margin: auto;
    border-radius: 10px;
    margin-top: 4px;
}

.menu-active .a-border {
    background: #d75eeb;
}

.search-img {
    margin-left: 7px;
    cursor: pointer;
}

.header:hover {
    background: black;
}

.shuzi {
    display: block;
    width: 150px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    box-sizing: border-box;
    font-size: 14px;
    color: #a6a9ac;
    cursor: pointer;
    background: #29323a;
}

.shuzi:hover {
    color: white;
    background: #1d2429;
}

.down-menu {
    position: absolute;
    left: 0px;
    transition: all 0.5s ease-in-out;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    margin-top: 17px;
    background: rgba(0, 0, 0, .74);
    backdrop-filter: blur(30px);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.menu-list {
    display: inline-block;
    float: left;
    position: relative;
    cursor: pointer;
}

.menu-list:hover .down-menu {
    visibility: visible;
    opacity: 1;
}

.search {
    width: 100%;
    height: 0px;
    background: rgb(0, 0, 0, 0.7);
    overflow: hidden;
    transition: 1s;
}

.search-input {
    background: none;
    border: none;
    border-bottom: 1px solid #d2d0d0;
    width: 69%;
    height: 50px;
    color: white;
    margin-left: 10%;
    outline: none;
    font-size: 20px;
    margin-top: 4px;
    margin-right: 5%;
}

.search-button {
    font-size: 18px;
    width: 5%;
    height: 40px;
    margin-top: 14px;
    background: #eae8e8;
    border: none;
    border-radius: 5px
}

.mobile-search{
    width: 80%;
    margin-left: 10%;
    height: 52px;
    margin-top: 16px;
    line-height: 52px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}

.mobile-input{
    width: 80%;
    height: 51px;
    line-height: 51px;
    border: none;
    background: none;
}

.mobile-button{
    width: 15%;
    float: right;
    background: none;
    border: honeydew;
    margin-top: 14px;
}

/* header */

/* footer */
.footer {
    width: 100%;
    height: 169px;
    background: #232425;
}

.footer-title {
    font-size: 12px;
    background: #343537;
    display: inline-block;
    width: 115px;
    height: 33px;
    line-height: 33px;
    color: #a1a1a1;
    border-radius: 20px;
    text-align: center;
}

.footer-detail {
    display: inline-block;
    color: #a1a1a1;
    line-height: 30px;
    margin-left: 17px;
    font-size: 12px;
}

.footer-content {
    display: inline-block;
    left: 50%;
    transform: translate(-50%, 0%);
    margin-top: 41px;
    position: relative;
}

.footer-company {
    text-align: center;
    font-size: 12px;
    color: #9e9e9f;
    margin-top: 16px;
}

.detail-more {
    width: 186px;
    height: 44px;
    line-height: 44px;
    display: block;
    border-radius: 30px;
    border: none;
    color: white;
    background-image: linear-gradient(to right, #d75eeb, #6f1da9);
    text-align: center;
    margin-top: 103px;
    float: right;
    margin-right: 28px;
}

.more-span {
    font-size: 16px;
    cursor: pointer;
}

/* footer */

@media screen and (max-width: 1600px) {
    .head {
        width: 1400px;
    }
}

@media screen and (max-width: 1460px) {
    .head {
        width: 1200px;
    }
}

@media screen and (max-width: 1360px) {
    .head {
        width: 1000px;
    }
}

@media screen and (max-width: 768px) {
    .head {
        width: 750px;
    }

    .head-logo {
        height: 36px;
    }

    .menu-a {
        margin: 0 7px;
        margin-top: 24px;
    }

    .footer-content {
        width: 95%;
    }

    .footer-detail {
        width: 590px;
        font-size: 9px;
    }
}

@media screen and (max-width: 420px) {
    .footer-detail {
        width: 90%;
        line-height: 20px;
        margin-top: 12px;
        font-size: 11px;
    }

    .footer-company {
        margin-top: 12px;
    }

    .footer-content {
        margin-top: 22px;
    }

    .footer-title {
        margin-left: 50%;
        transform: translate(-50%, 0%);
    }
}