:root {
    --zhu-color: #42999;
    --wenzi: #fff;
    --zongdian: #d0b484;
    --botton: #0ff;
    --botton-color: #000;
    --neironcolo: #000;
    --biaoti: #37363b;
    --caidan: #fff;
    --tab: #fff;
}

body {
    display: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: var(--wenzi);
    width: 100%;
    overflow-x: hidden;
}
img {
    height: auto;
}
.bj {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    border-radius: 0;
    object-position: left;
}

.top {
    width: 100%;
    height: 60px;
    background-color: var(--zhu-color);
    line-height: 60px;
    font-weight: 800;
    text-align: right;
    display: flex;
}

.guangdai {
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--botton), #00f, var(--botton));
    background-size: 200% 100%;
    background-position: -200% 0;
    animation: electric 2s linear infinite;
}

@keyframes electric {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    z-index: 3;
    display: none;
}

.tab {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    z-index: 3;
}

.tab p {
    border-bottom: 1px solid var(--tab);
    color: var(--tab);
    text-align: center;
    margin: 0;
    padding: 10px 0;
    cursor: pointer;
    font-weight: 900;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 10px;
}
.tab-item {
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid var(--tab);
	color: var(--tab);
	text-align: center;
	margin: 0;
	cursor: pointer;
	font-weight: 900;
	width: 100%;
	gap: 10px;
}
.tab-item-name {
	padding-left: auto;
	text-align: center;
	padding: 10px 0;
}
.tab-item-i {
	padding-right: auto;
	border-left: 1px solid var(--tab);
	width: 50px;
}
.tab i {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--tab);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: rotate(90deg);
}

.top-ss {
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: right;
    position: absolute;
    left: calc(50% - 200px);
}

.icon-sousuo {
    position: relative;
    left: -30px;
    color: var(--zhu-color);
    cursor: pointer;
}

.top-ss input {
    padding-right: 80px;
}

.top img {
    height: 40px;
    margin: 5px;
}

.top i {
    margin-right: 10%;
    cursor: pointer;
}

.transition-all {
    transition-duration: .3s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

input {
    width: 100%;
    border: none;
    padding: 10px;
    border-radius: 5px;
    border-bottom: 3px solid rgba(0, 0, 0, 0);
}

input:focus {
    outline: none;
    border: none;
    border-bottom: 3px solid skyblue;
    animation: yundon 3s linear infinite;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

@keyframes yundon {
    0% {
        border-color: #f1f1f1;
    }
    50% {
        border-color: skyblue;
    }
    100% {
        border-color: #f1f1f1;
    }
}

.box {
    max-width: 1000px;
    width: 86%;
    margin: 0 auto;
    background-color: var(--biaoti);
    /* padding-top: 80px; */
}

.set-info {
    background-color: #000;
    padding-top: 30px;
}

.title {
    text-align: center;
    padding: 0 5%;
    padding-top: 80px;
}

.title-ren {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5%;
    color: var(--zongdian);
    flex-wrap: wrap;
}

.title-ren i {
    margin-right: 10px;
}

a {
    font-weight: 900;
    color: var(--zongdian);
    text-decoration: none;
    text-transform: uppercase;
}

a:hover {
    border-bottom: 2px solid var(--zongdian);
}

h1 {
    margin: 0 auto;
    text-align: center;
    font-size: 64px;
}

.box-box {
    width: 90%;
    padding: 20px 5%;
    background-color: var(--neironcolo);
}

.bottom {
    margin-top: 5vh;
}

.hr {
    color: #828282;
    background: linear-gradient(to left, currentColor calc(50% - 16px), transparent calc(50% - 16px), transparent calc(50% + 16px), currentColor calc(50% + 16px));
    background-color: transparent !important;
    border: none;
    height: 0.1rem;
    overflow: visible;
    position: relative;
}

*,
*::before,
*::after {
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    word-break: break-word;
    word-wrap: break-word;
}

.hr::before {
    left: calc(50% - 0.5rem);
    background: #828282;
    content: "";
    display: block;
    height: 1.6rem;
    position: absolute;
    top: calc(50% - 0.8rem);
    transform: rotate(22.5deg);
    width: 0.1rem;
}

.hr::after {
    right: calc(50% - 0.5rem);
    background: currentColor;
    content: "";
    display: block;
    height: 1.6rem;
    position: absolute;
    top: calc(50% - 0.8rem);
    transform: rotate(22.5deg);
    width: 0.1rem;
}

.box-box-bottom {
    display: flex;
    align-items: center;
}

.box-box-bottom a {
    color: var(--botton);
}

.box-box-bottom a:hover {
    border: none;
    color: #f1f1f1;
}

.box-box-bottom a:active {
    transform: scale(0.98);
}

.box-box-bottom p {
    display: flex;
    flex: 1;
    justify-content: center;
    gap: 15px;
}

.box-box-bottom p a {
    /* flex: 1; */
    text-align: center;
}

.zhon {
    color: var(--zhu-color) !important;
}

.bottom {
    background-color: var(--zhu-color);
    min-height: 35vh;
}

.bottom .box {
    /* background: var(--zhu-color); */
    display: flex;
    flex-wrap: wrap;
    min-height: calc(100% - 80px);
}

.bottom-bottom {
    display: flex;
    align-items: center;
    width: 100%;
}

.bottom-bottom p {
    font-weight: 900;
    flex: 1;
}

.bottom-bottom a {
    color: #fff;
    border-color: #fff;
}

.pcn {
    font-weight: 200;
    margin-left: 15px;
}

.pcy {
    display: none;
}

.snowflake {
    position: fixed;
    color: #fff;
    font-size: 20px;
    pointer-events: none;
    opacity: .95;
    height: auto;
}

.huihua {
    width: 60%;
    margin: 0px auto;
    padding: 30px 0;
}

.huihua h2 {
    text-align: center;
}

.huihua div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.huihua div p {
    flex: 1;
}

.huihua span {
    text-align: center;
    color: #828282;
}

section {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

section p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

section input {
    width: auto;
    cursor: pointer;
}

.botton {
    background-color: var(--botton);
    width: 200px;
    text-align: center;
    line-height: 60px;
    font-size: 20px;
    color: var(--botton-color) !important;
    border-radius: 5px;
    cursor: pointer;
    transition-duration: .15s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

.botton:hover {
    opacity: 0.9;
}

.botton:active {
    transform: scale(0.98);
}

.tabbox {
    height: calc(100vh - 44px);
    overflow-y: auto;
}

@media screen and (max-width:1000px) {
    /* .tabbox {
		height: calc(100vh - 80px);

	}

	.tab i {
		width: 30px;
		height: 30px;
	}

	.huihua {
		width: 90%;
	}

	.pcy {
		font-weight: 200;
		margin-left: 15px;
		display: block;
	}

	.pcn {
		display: none;
	}

	.iconfont {
		font-size: 50px !important;
	}

	body {
		font-size: 30px;
	}

	.icon-sousuo {
		left: -70px;
	}

	.top-ss {
		width: 500px;
		left: 35%;
	}

	input {
		font-size: 30px;
		padding: 0px;
		height: 70px;
	}

	.top img {
		height: 120px;
	}

	.tab {
		width: 60%;
		right: -60%;
	}

	.top {
		height: 120px;
		line-height: 120px;
	}


	.tab p {
		line-height: 60px;
		font-size: 40px;
	} */
    .box {
        width: 95%;
    }
    .title {
        padding-top: 1.5rem;
    }
    .top {
        position: relative;
        height: 100px;
    }
    .top .top-ss {
        width: 100%;
        padding: 0 10px;
        bottom: .1rem;
        box-sizing: border-box;
        left: 0;
    }
    .bottom .box {
        width: 90%;
    }
}