* {
    font-family: misans-medium;
}

@font-face {
    font-family: misans-medium;
    src: url(../font/MiSans-Medium.woff2);
}

/* 选中文字样式 */
::selection {
    background-color: #FF5964;
    color: rgb(255, 255, 255);
}

body {
    background-color: #fafbfc;
}

/* 滑动条隐藏 */
::-webkit-scrollbar {
    width: 0;
}

/* 导航栏 */
.nav {
    display: flex;

    width: 100%;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.1);

    position: fixed;
    top: 0;
}

.nav img {
    width: 250px;
}

.nav-list {
    margin-left: 4vw;

    display: flex;
    align-items: center;
}

.nav-list ul {
    display: flex;
    align-items: center;
    gap: 0 4vw;
}

.nav-list ul li {
    font-size: 24px;

    cursor: pointer;

    transition: all .10s;
}

.nav-list ul li:hover {
    color: #FF5964;
}

/* 引入 */
.main {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100vw;
    height: 80vh;
    overflow: hidden;
    position: relative;
}

.main-banner {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 160vw;
    height: 80vh;
    min-width: 1200px;
    border-radius: 0px 0px 50% 50%;
    border: 10px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(to right, rgb(255, 255, 255), rgb(255, 255, 255)), linear-gradient(121.65deg, rgba(247, 191, 106, 1) 0%, rgba(247, 106, 106, 1) 48.13%, rgba(230, 114, 232, 1) 100%);

    position: absolute;
    top: -20px;
    /* overflow: hidden; */
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
    position: relative;
    z-index: 9999;
    animation: fade 1.3s ease;
}

.main-content img {
    width: 400px;
}

.main-content p {
    margin-top: 24px;

    font-size: 32px;
    color: rgba(0, 0, 0, 0.6);
}

@keyframes fade {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(180deg);
    }

    to {
        transform: rotate(540deg);
    }
}

/* 加入我们 */
.join {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 100px;

    /* position: relative; */
}

.join-button .chap {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 250px;
    height: 90px;
    border: 6px solid transparent;
    border-radius: 100px;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(to right, rgb(255, 255, 255), rgb(255, 255, 255)), linear-gradient(121.65deg, rgba(247, 191, 106, 1) 0%, rgba(247, 106, 106, 1) 48.13%, rgba(230, 114, 232, 1) 100%);

    font-size: 36px;
    
    transition: all .16s ease;
}

.join-button .chap:hover {
    background-image: linear-gradient(121.65deg, rgba(247, 191, 106, 1) 0%, rgba(247, 106, 106, 1) 48.13%, rgba(230, 114, 232, 1) 100%), linear-gradient(121.65deg, rgba(247, 191, 106, 1) 0%, rgba(247, 106, 106, 1) 48.13%, rgba(230, 114, 232, 1) 100%);
    color: #fff;
}

/* 作品 */
.works {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 40px;

    margin: 100px 10vw 0 10vw;
}

.works-item {
    display: flex;
    flex-direction: column;

    padding: 50px 0;

    width: 250px;
    height: 320px;
    border: 6px solid #000;
    border-radius: 20px;
    background-color: #fff;

    position: relative;
    cursor: pointer;

    transition: all 0.5s ease;
}

.works-item-cover {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    transform: scale(90%);
    top: 0;
}

.works-item-cover-img {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 200px;
    height: 120px;
    box-shadow: 0px 0px 0px 5px #000;
    background-color: #fff;
    transform: rotate(-4deg);

    transition: all .34s ease;
}

/* .works-item:nth-of-type(2) .works-item-cover-img {
    box-shadow: none;
    border: 6px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(to right, rgb(255, 255, 255), rgb(255, 255, 255)) , linear-gradient(90deg, rgba(252, 141, 43, 1) 0%, rgba(244, 85, 70, 1) 45.84%, rgba(242, 75, 75, 1) 100%);
} */

.works-item-cover-img img {
    width: 166px;
    height: auto;
}

.works-item-cover-shadow {
    width: 190px;
    height: 110px;
    background-color: #D1D1D1;
    transform: rotate(4deg);
    position: absolute;
    top: -14px;
    z-index: -10;

    transition: all .34s ease;
}

.works-item-content {
    margin: 20px 26px 0 26px;
}

.works-item-ti {
    display: flex;
}

.works-item-ti p {
    font-size: 24px;

    color: #000;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.works-item-ti-doing {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 64px;
    height: 26px;
    border-radius: 6px;
    background-color: rgb(234, 198, 69);

    color: #fff;
    font-size: 2px;
}

.works-item:nth-of-type(2) .works-item-ti-doing {
    background-image: linear-gradient(139.94deg, rgba(247, 172, 106, 1) 0%, rgba(245, 107, 119, 1) 50%, rgba(236, 111, 190, 1) 100%);
}

.works-item-text {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
}

/* 成员 */
.member {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    margin-top: 100px;
}

.member-item {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 450px;
    height: 150px;
    border-radius: 20px;

    cursor: pointer;
    transition: transform .5s ease;
}

.member-item-content {
    margin-left: 20px;
}

.member-item-hd {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 6px solid #000;

    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.member-item-shanzhu .member-item-hd {
    background-image: url(../image/山竹头像.png);
}

.member-item-lanmao .member-item-hd {
    background-image: url(../image/头像.png);
}
.iconx{
    margin-left: 40px;
    margin-right: 4px;
    margin-top: -2px;
    display: inline-block;
    width: 18px;
    height: 20px;
    vertical-align: middle;
    background: url(../image/gabaicon.png) no-repeat 0 0;
    background-size: 100% 100%;
}

.member-item-welcome .member-item-hd img {
    width: 64px;
    position: absolute;
    top: -14px;
    right: 0;
}

.member-item-welcome .member-item-hd {
    position: relative;
}

.member-item-ti p {
    font-size: 26px;
}

.member-item-text {
    font-size: 20px;
}

.member-item.active {
    /* transform: translate(-50%, -50%); */
    background-color: #fff;
    border: 6px solid #000;

    position: absolute;
    z-index: 99;
}

.member-item.prev {
    display: none;
}

.member-item.next {
    z-index: 2;
    background-color: #656565;
    border: none;
    transform: translate(5px, 16px) scale(0.9);

    >div {
        display: none;
    }
}

.member-left,
.member-right {
    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0 10px;

    width: 36px;
    height: 36px;
    border-radius: 20px;
    background-color: #000;

    cursor: pointer;
    user-select: none;
}

.member-left img,
.member-right img {
    width: 10px;
}

@media (max-width: 580px) {
    .member-left,
    .member-right {
        display: none;
    }

    .member {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px 0;
    }

    .member-item {
        display: flex;
        justify-content: flex-start;

        padding: 0 20px;
    }

    .member-item.active,
    .member-item.next {
        width: 300px;
        height: 120px;
        border-radius: 20px;
        background-color: #fff;
        border: 6px solid #000;
        position: static;
        transform: none;
    }

    .member-item.next div {
        display: block;
        
    }

    .member-item-welcome {
        display: none;
    }

    .member-item-hd {
        width: 70px;
        height: 70px;
    }

    .member-item-ti p {
        font-size: 22px;
    }
    
    .member-item-text {
        font-size: 16px;
    }
}

/* 页脚 */
.footer {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 100px;
    padding: 50px 70px;

    border-top: 6px solid #000;
    background-color: #fff;
}
.main-text{
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    width: 800px;
    text-align: center;
    margin: auto;
}
.bah{
    background-color: #fff;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #e6e6e6;
  }
.bah a{
    color: #999;
    font-size: 12px;
}
.bah a:hover{
    color: #999;
    text-decoration: underline;
}