* {
    padding: 0;
    margin: 0;
}

html,
body {
    height: 100%;
}

body {
    background: #fcfcfc;
    font-size: 14px;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, Arial, PingFang SC, Hiragino Sans GB, Microsoft YaHei, sans-serif;
    letter-spacing: 0.1px;
    width: 100%;
    overflow: hidden;
}

[v-cloak] {
    display: none;
}

.sad {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-filter: grey;
    filter: gray;
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
}

@media (max-width: 1024px) {
    body {
        background-color: #fff;
    }
}

a {
    color: #262626;
    text-decoration: none;
}

a:hover {
    color: #00abd9;
}

input {
    outline: none;
}

.iconfont {
    margin-right: 5px;
}

.center {
    text-align: center;
}

.left {
    float: left;
}

.right {
    float: right;
}

ol,
ul {
    list-style-position: inside;
}

/* 滚动条底色 */

::-webkit-scrollbar-track {
    background-color: #f8faff;
    border-radius: 20px;
}

/* 滚动条颜色 */

::-webkit-scrollbar-thumb {
    background-color: #d9d9d9;
    border-radius: 20px;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: #d9d9d9;
    opacity: 0;
    border-radius: 20px;
}

.btn {
    cursor: pointer;
    color: #fff;
    background-color: #67c23a;
    border: 1px solid #67c23a;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
}

.btn:focus,
.btn:hover {
    color: #fff;
    background: #85ce61;
    border-color: #85ce61;
}

.btn:active {
    color: #fff;
    background: #5daf34;
    border-color: #5daf34;
}

.menu-panel {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    line-height: 100px;
    z-index: 99;
    transition: top 0.3s;
}

.hideScroll .menu-panel {
    top: -100px;
}

@media (max-width: 1024px) {
    .menu-panel {
        height: 35px;
        line-height: 35px;
        background-color: #3385ff;
    }
}

.menu-panel .menu-pc {
    height: 100%;
    text-align: right;
    padding-right: 3%;
}

@media (max-width: 1024px) {
    .menu-panel .menu-pc {
        display: none;
    }
}

.menu-panel .menu-pc li {
    display: inline-block;
    list-style: none;
    margin: 0 5px;
    font-size: 19px;
}

.menu-panel .menu-pc li>a {
    padding: 5px 15px;
    border-radius: 24px;
}

.menu-panel .menu-pc li>a:hover,
.search-btn:hover {
    color: #1da1f2;
    background-color: #e8f5fe;
}

.welcome-login {
    display: none;
    position: absolute;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    top: 75px;
    right: 3%;
    background: rgba(50, 50, 50, 0.8);
    border-radius: 3px;
    color: #fff;
    font-size: 14px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.welcome-login::before {
    content: "";
    display: block;
    position: absolute;
    right: 15px;
    bottom: 100%;
    width: 0;
    height: 0;
    border: 3px solid transparent;
    border-bottom-color: rgba(50, 50, 50, 0.8);
}

.welcome-login>a {
    color: #ff6231;
    margin: 0 4px;
}

@media (max-width: 1024px) {
    .welcome-login {
        width: max-content;
        top: 40px;
        right: 15%;
    }
}

.mtc-btn {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 35px;
    visibility: hidden;
}

.mt-user {
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
    height: 35px;
    visibility: hidden;
}

.mt-user .icon-me {
    height: 25px;
    width: 25px;
    display: block;
    background-size: cover;
    border-radius: 51px;
    margin: 5px 0 0 5px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    position: relative;
    overflow: hidden;
}

.mt-user .icon-me::before {
    content: "";
    width: 31px;
    height: 31px;
    top: 0;
    left: 0;
    opacity: 0.5;
    position: absolute;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), #ffffff, rgba(255, 255, 255, 0));
    -webkit-animation: walking_lantern 3s ease infinite;
    animation: walking_lantern 3s ease infinite;
}

.mt-user .myInfo .icon-me::before {
    display: none;
}

.mt-user .user-rd-num {
    left: -25%;
    top: 22%;
    display: none;
}

@media (max-width: 1024px) {
    .mt-user .user-rd-num.show {
        display: block;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        -ms-transform: scale(0.3);
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.logo-box {
    height: 35px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
}

.logo-mt {
    margin: 0 auto;
    display: block;
    height: 35px;
    width: 120px;
    background: url("/static/index/img/logo-mt.png") center;
    background-size: cover;
    position: relative;
}

.logo-mt>a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

@media (max-width: 1024px) {
    .mtc-btn {
        visibility: visible;
    }

    .logo-box {
        visibility: visible;
    }

    .mt-user {
        visibility: visible;
    }
}

.navi-icon {
    width: 20px;
    height: 2px;
    display: block;
    vertical-align: middle;
    background: #000;
    transition: all 0.2s;
    position: absolute;
    left: 15px;
    top: 16px;
}

.navi-icon:before,
.navi-icon:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    transition: all 0.2s;
}

@media (max-width: 1024px) {

    .navi-icon,
    .navi-icon:before,
    .navi-icon:after {
        background: #fff;
    }
}

.navi-icon:before {
    transform: translateY(-8px);
}

.navi-icon:after {
    transform: translateY(8px);
}

.menu-panel.show-menu .navi-icon {
    background: transparent;
}

.menu-panel.show-menu .navi-icon:before {
    transform: rotate(45deg) translateY(0);
}

.menu-panel.show-menu .navi-icon:after {
    transform: rotate(-45deg) translateY(0);
}

.menu-mt {
    display: none;
    width: 100%;
    height: 100vh;
    background-color: white;
    position: absolute;
    top: 35px;
    transform: translateX(-100%);
    transition: all 0.2s;
    z-index: 3;
}

@keyframes fadeShow {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mask-layer {
    display: none;
    position: absolute;
    width: 100%;
    top: 35px;
    z-index: 1;
    height: calc(100vh - 35px);
    background-color: rgba(0, 0, 0, 0.4);
    animation: fadeShow 0.3s;
    -webkit-backdrop-filter: saturate(180%) blur(50px);
    backdrop-filter: saturate(180%) blur(50px);
}

@media (max-width: 1024px) {
    .menu-panel.show-menu .mask-layer {
        display: block;
    }

    .menu-mt {
        display: block;
    }
}

.menu-panel.show-menu .menu-mt {
    /* transform: translateX(-2px);
    width: calc(100% - 80px); */
    transform: translateX(0);
    width: 100%;
    /* width少10px避免露出黑边 */
}

.menu-panel .menu-mt ul {
    padding: 0 20px;
}

.menu-panel .menu-mt li {
    color: #262626;
    list-style: none;
    max-height: 55px;
    overflow: hidden;
    transition: max-height .3s;
}

.menu-panel .menu-mt li.open {
    max-height: 1000px;
}

.menu-panel .menu-mt li.open .mt-switch {
    transform: rotate(180deg);
}

.menu-title-mt {
    line-height: 55px;
    position: relative;
}

.menu-panel .menu-mt li a {
    font-size: 16px;
}

.menu-panel .menu-mt li .mt-switch {
    position: absolute;
    right: 10px;
    top: 0;
    height: 55px;
    font-size: 24px;
    transition: all .3s;
}

.sub-menu-mt {
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
    padding: 5px;
}

.sub-menu-mt a {
    color: #2196F3;
    width: 50%;
    float: left;
    display: block;
}

.menu-panel .menu-mt li a:hover {
    color: #262626;
}

.menu-mt .iconfont {
    margin-right: 10px;
    color: #909090;
}


.copyright-mt {
    width: 100%;
    margin-top: 60px;
}

.copyright-mt p {
    color: #cccccc;
    text-align: center;
}

.cover,
.container {
    float: left;
    height: 100%;
    transition: width 0.3s;
}

.cover {
    width: 25%;
    background-size: cover;
}

.cover .cover-bg {
    width: 100%;
    height: 100%;
    background: url("/static/index/img/feature-bg.jpg") center;
    background-size: cover;
    position: relative;
    background-color: #c8c8c8;
}

.copyright-panel p {
    color: white;
    margin: 0;
    font-size: 12px;
}

.record-panel a,
.record-panel a:hover,
.record-panel a:focus {
    color: #ffffff73;
    font-size: 12px;
}

.big-gta-logo {
    background-image: url("/static/index/img/gta_logo.png");
    width: 77px;
    height: 120px;
    background-size: cover;
    margin: 0 auto;
    display: block;
}

.container {
    width: 75%;
    overflow-y: auto;
    position: relative;
}

.container::before {
    position: fixed;
    content: "";
    width: 100%;
    height: 100px;
    z-index: 9;
    background: rgba(252, 252, 252, 0.9);
    -webkit-backdrop-filter: saturate(180%) blur(6px);
    backdrop-filter: saturate(180%) blur(6px);
    top: 0;
    transition: top 0.3s;
}

.hideScroll .container::before {
    top: -100px;
}

@media (max-width: 1024px) {
    .container::before {
        display: none;
    }
}

.content {
    padding: 100px 9% 20px 7%;
}

@media (max-width: 1024px) {
    .cover {
        display: none;
    }

    .container {
        width: 100%;
        /* padding: 2%; */
    }

    .content {
        padding: 35px 0 0 0;
    }
}

.search-box {
    padding: 15px 25px;
    position: relative;
}

.search-box form {
    position: relative;
}

.search-box input[name="wd"] {
    display: block;
    box-sizing: border-box;
    background: #f7f7f7;
    padding: 10px 50px 10px 15px;
    border-radius: 20px;
    width: 100%;
    height: 40px;
    line-height: 20px;
    color: #888;
    font-size: 14px;
    border: none;
}

.search-box button[type="submit"] {
    display: block;
    position: absolute;
    right: 6px;
    top: 4px;
    border: none;
    background: transparent;
    width: 42px;
    height: 32px;
    overflow: hidden;
    text-align: center;
    outline: none;
    color: #888;
}

.search-btn {
    font-size: 20px;
    cursor: pointer;
    padding: 7px;
    border-radius: 24px;
    user-select: none;
}

.login-show>a {
    position: relative;
    top: 13px;
    padding: 0 !important;
    border: none;
}

@-webkit-keyframes walking_lantern {
    0% {
        background-position: 0;
    }

    to {
        background-position: 60px;
    }
}

@keyframes walking_lantern {
    0% {
        background-position: 0;
    }

    to {
        background-position: 60px;
    }
}

.login-show a i {
    width: 31px;
    height: 31px;
    display: block;
    background-size: cover;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid #a9e3ff;
    position: relative;
}

.login-show a i::before {
    content: "";
    width: 31px;
    height: 31px;
    top: 0;
    left: 0;
    opacity: 0.5;
    position: absolute;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), #ffffff, rgba(255, 255, 255, 0));
    -webkit-animation: walking_lantern 3s ease infinite;
    animation: walking_lantern 3s ease infinite;
}

.login-show a.myInfo i::before {
    display: none;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        -ms-transform: scale(0.3);
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.user-rd-num {
    display: none;
    position: absolute;
    text-align: center;
    color: white;
    background-color: #4bd428;
    border-radius: 32px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    bottom: 20px;
    right: -12px;
    z-index: 2;
    animation: bounceIn 1s;
}

.menu-pc .user-rd-num.show {
    display: block;
}

.copyright-panel {
    display: block;
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    padding-bottom: 20px;
}

.float-layer {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: flex;
    align-items: center;
    animation: fadeIn 0.5s;
    -webkit-backdrop-filter: saturate(180%) blur(50px);
    backdrop-filter: saturate(180%) blur(50px);
}

.title-panel {
    font-size: 16px;
    margin-bottom: 20px;
    color: #7b7b7b;
}

.title-p {
    font-weight: 600;
}

.hideIt {
    display: none !important;
}

.serach-panel {
    height: 100%;
    width: 100%;
    z-index: 9;
    background-color: hsla(0, 0%, 0%, 0.38);
    position: fixed;
    display: none;
    animation-fill-mode: forwards;
    animation: fadeIn 1s;
}

.serach-panel.active {
    display: block;
}

.serach-panel .form-input {
    position: relative;
}

@media (max-width: 1024px) {

    .serach-panel,
    .serach-panel.active {
        display: none;
    }
}

@keyframes serach-show {
    from {
        transform: translateY(-600px);
    }

    to {
        transform: translateY(0);
    }
}

.serach-box {
    position: absolute;
    height: auto;
    width: calc(100% - 18% - 7%);
    top: 0;
    left: 0;
    background-color: white;
    border-radius: 0 0 4px 4px;
    transition: all 0.3s;
    padding: 100px 7% 20px 7%;
    box-sizing: border-box;
    animation-fill-mode: forwards;
    animation: serach-show 1s;
}

.search-b-box {
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    position: relative;
}

.cue-word-panel {
    position: absolute;
    top: 38px;
    left: 0;
    background-color: #ffffff;
    border: 1px solid #03a9f4;
    width: 100%;
    height: 305px;
    z-index: 10;
    box-sizing: border-box;
    overflow-y: auto;
    display: none;
}

.cue-word-item {
    height: 40px;
    line-height: 40px;
    position: relative;
    padding-left: 60px;
    cursor: pointer;
}

.cue-word-item:hover {
    background-color: #ebf7fd;
    color: #03a9f4;
}

.word-img {
    position: absolute;
    left: 20px;
    top: 5px;
    width: 30px;
    height: 30px;
    background-color: #efefef;
    border-radius: 40px;
    background-size: cover;
}

.stay-champion-panel {
    position: absolute;
    top: 38px;
    left: 0;
    background-color: #ffffff;
    border: 1px solid #03a9f4;
    width: 100%;
    height: 305px;
    z-index: 9;
    box-sizing: border-box;
    display: none;
}

.stay-champion-panel.show {
    display: block;
}

.stay-champion-class-list {
    float: left;
    width: 100px;
    height: 100%;
    background-color: #f9fdfd;
    text-align: center;
    padding-top: 30px;
    box-sizing: border-box;
}

.scc-item {
    padding: 7px 0;
    cursor: pointer;
    color: grey;
}

.scc-item:hover {
    color: #03a9f4;
}

.scc-item.active {
    color: #03a9f4;
    background-color: #fff;
}

.stay-champion-content {
    float: left;
    width: calc(100% - 100px);
    box-sizing: border-box;
    padding-left: 15px;
}

.stay-champion-tag-list {
    margin: 10px 0 10px;
    overflow: hidden;
}

.stay-champion-box {
    overflow-y: auto;
    height: 260px;
}

.sct-item {
    float: left;
    margin-right: 10px;
    color: #868686;
    cursor: pointer;
}

.sct-item:hover {
    color: #03a9f4;
}

.sct-item.active {
    color: #03a9f4;
}

.sc-item {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    background-color: #dce4e4;
    float: left;
    margin: 0 8px 5px 0;
    background-size: 120% 120%;
    background-position: -5px -5px;
    cursor: pointer;
}

.serach-title-tab {
    margin-bottom: 6px;
}

.serach-title-tab .serach-t-tab {
    font-size: 16px;
    margin-right: 10px;
    color: #787878;
    cursor: pointer;
    position: relative;
}

.serach-title-tab .serach-t-tab.active {
    font-size: 26px;
    color: #03a9f4;
}

.serach-title-tab .serach-t-tab::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-width: 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent #03a9f4;
    opacity: 0;
}

.serach-title-tab .serach-t-tab.active::after {
    opacity: 1;
}

.search-b-input,
.serach-btn-submit {
    float: left;
    height: 40px;
    box-sizing: border-box;
}

.search-b-input {
    width: calc(100% - 120px);
}

.serach-btn-submit {
    text-align: center;
    width: 120px;
    line-height: 40px;
    color: #fff;
    background-color: #03a9f4;
    border: 1px solid #03a9f4;
    user-select: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 0 4px 4px 0;
}

.serach-btn-submit:hover {
    background-color: #049bdf;
}

#search-from input {
    border-color: #03a9f4;
    max-width: 100%;
    border-radius: 4px 0 0 4px;
}

#search-from input:hover {
    border-color: #03a9f4;
}

.hot-tag {
    margin-bottom: 15px;
}

.tag-i-a {
    background-color: #4caf50;
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 18px;
    font-size: 12px;
    display: inline-block;
    margin: 0 5px 5px 0;
}

.tag-i-a:hover {
    color: #fff;
    background-color: #32aa37;
}

.feature-i {
    float: left;
    width: 150px;
    height: 200px;
    margin-right: 20px;
    margin-bottom: 10px;
    position: relative;
    transition: all 0.3s;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.feature-i.big {
    width: 300px;
}

.feature-i:nth-child(1) {
    box-shadow: 0 3px 20px -6px #91263a;
}

.feature-i:nth-child(1):hover {
    box-shadow: 0 10px 20px -6px #91263a;
}

.feature-i:nth-child(2) {
    box-shadow: 0 3px 20px -6px #2783ea;
}

.feature-i:nth-child(2):hover {
    box-shadow: 0 10px 20px -6px #2783ea;
}

.feature-i:nth-child(3) {
    box-shadow: 0 3px 20px -6px #773a97;
}

.feature-i:nth-child(3):hover {
    box-shadow: 0 10px 20px -6px #773a97;
}

.feature-i:nth-child(4) {
    box-shadow: 0 3px 20px -6px #0fa068;
}

.feature-i:nth-child(4):hover {
    box-shadow: 0 10px 20px -6px #0fa068;
}

.feature-i a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.serach-title-sub {
    font-size: 20px;
    margin-bottom: 10px;
}

.login-bg {
    background-color: rgba(8, 34, 53, 0.77);
}

.title-form {
    margin-bottom: 20px;
    font-size: 20px;
}

.form-input input[type="text"],
.form-input input[type="password"] {
    width: 100%;
    max-width: 100%;
    height: 40px;
    display: block;
    outline: none;
    padding-left: 10px;
    border: 1px solid #e1e1e1;
    transition: all 0.3s;
    font-size: 18px;
    box-sizing: border-box;
    border-radius: 4px;
}

.form-input input[type="text"]:hover,
.form-input input[type="text"]:active,
.form-input input[type="password"]:hover,
.form-input input[type="password"]:active {
    border-color: #82ccbb;
}

.form-input button {
    width: 100%;
    height: 40px;
    border: none;
    color: #fff;
    font-size: 18px;
    background-color: #03a9f4;
    margin: 0 auto;
    display: block;
    cursor: pointer;
    border-radius: 38px;
}

.form-input button:hover {
    background-color: #2196f3;
}

@-webkit-keyframes light-cool {
    0% {
        transform: translateX(0) skewX(-25deg);
    }

    75% {
        transform: translateX(150%) skewX(-25deg);
    }

    to {
        transform: translateX(150%) skewX(-25deg);
    }
}

@keyframes light-cool {
    0% {
        transform: translateX(0) skewX(-25deg);
    }

    75% {
        transform: translateX(150%) skewX(-25deg);
    }

    to {
        transform: translateX(150%) skewX(-25deg);
    }
}

@-webkit-keyframes rotate-loop {
    0% {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.linear-btn {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #00c6ff), to(#0096ff));
    background-image: linear-gradient(90deg, #00c6ff, #0096ff);
}

.linear-btn:hover {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #00c6ff), color-stop(120%, #0096ff));
    background-image: linear-gradient(90deg, #00c6ff, #0096ff 120%);
}

.cool-btn {
    position: relative;
    overflow: hidden;
}

.cool-btn::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    top: 0;
    left: -150%;
    overflow: hidden;
    background: linear-gradient(270deg, hsla(0, 0%, 100%, 0) 30%, hsla(0, 0%, 100%, 0.5) 50%, hsla(0, 0%, 100%, 0) 70%);
    transform: skewX(-25deg);
    -webkit-animation: light-cool 3s ease-in-out infinite;
    animation: light-cool 3s ease-in-out infinite;
}

.group-item {
    overflow: hidden;
    margin-bottom: 15px;
}

@media (max-width: 1024px) {
    .form-input button {
        width: 100%;
    }

    .group-item {
        margin-bottom: 5px;
    }
}

.group-i-r {
    text-align: left;
    margin-bottom: 5px;
}

.group-item .radio-form {
    position: relative;
    float: left;
}

.group-item .radio-form label {
    cursor: pointer;
    height: 25px;
    line-height: 25px;
    margin: 4px;
    float: left;
    padding-right: 10px;
}

.radio-form:hover input[type="radio"],
.radio-form:hover input[type="checkbox"] {
    border-color: #82ccbb;
}

input[type="radio"],
input[type="checkbox"] {
    -webkit-appearance: none;
    width: 25px;
    height: 25px;
    border: 1px solid #e1e1e1;
    cursor: pointer;
    position: relative;
    margin: 4px;
    float: left;
    transition: all 0.3s;
}

input[type="radio"] {
    border-radius: 50%;
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
    border-color: #82ccbb;
}

input[type="radio"]:checked::after,
input[type="checkbox"]:checked::after {
    content: "";
    width: 10px;
    height: 5px;
    position: absolute;
    top: 6px;
    left: 5px;
    border: 3px solid #82ccbb;
    border-top: none;
    border-right: none;
    background: rgba(0, 0, 0, 0);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.magnify-stage {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-width: 0;
}

.notice-info {
    position: fixed;
    margin: 10px auto;
    left: 0;
    right: 0;
    z-index: 9999999;
    display: inline-block;
    width: 50%;
    max-width: 465px;
    border-radius: 16px;
    text-align: center;
    color: #fff;
    background-color: #4caf50;
    box-shadow: 0 10px 20px -6px rgba(76, 175, 80, 0.82);
    animation: bounceIn 1s;
    display: none;
}

.notice-info.t-orange {
    background-color: #ff9800;
    box-shadow: 0 10px 20px -6px #ff9800c2;
}

.notice-info.t-red {
    background-color: #da6f4d;
    box-shadow: 0 10px 20px -6px #da6f4dcf;
}

.notice-info.active {
    display: block;
}

.notice-title {
    padding: 10px 0;
    font-size: 16px;
}

.notice-info .iconfont {
    font-size: 30px;
    margin: 0;
}

.notice-p {
    padding: 15px 20px;
    margin: 0 25px;
    border-radius: 12px;
    font-size: 16px;
    text-align: left;
    background-color: rgb(255 255 255 / 14%);
    letter-spacing: 1px;
    text-indent: 26px;
    text-align: justify;
}

.notice-btn {
    width: 100%;
    float: left;
    cursor: pointer;
    text-align: center;
    padding: 10px 0;
    color: #fff;
    border-radius: 16px;
}

.notice-btn:hover {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.06);
}

.btn-2 .notice-btn {
    width: 50%;
    color: #ffffffab;
}

.btn-2 .notice-btn.reco-btn {
    color: #fff;
}

.btn-2 .notice-btn:nth-child(1) {
    border-radius: 16px 0 0 16px;
}

.btn-2 .notice-btn:nth-child(2) {
    border-radius: 0 16px 16px 0;
}

@media (max-width: 1024px) {
    .notice-info {
        margin: 50px auto;
        width: 90%;
    }

    .notice-p {
        font-size: 14px;
        padding: 10px 7px;
        margin: 0 10px;
    }
}

.pager {
    text-align: center;
    height: 40px;
    margin-bottom: 15px;
    display: block;
    width: 100%;
    margin: 50px 0;
}

.pager li {
    background-color: #34a9ff;
    display: inline-block;
    margin: 0 10px;
    position: relative;
    text-align: center;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    transition: all 0.3s;
}

.pager li:hover {
    background-color: #149bff;
}

.pager li.disabled,
.pager li.disabled:hover {
    cursor: default;
    background-color: #b6d1ff;
}

.pager a,
.pager span {
    position: absolute;
    font-size: 24px;
    color: #fff;
    display: block;
    width: 50px;
    height: 50px;
    line-height: 45px;
    text-align: center;
    left: 0;
    top: 0;
}

/* 消息框 */

.zbox-popup {
    position: fixed;
    z-index: 10000;
    top: 50%;
    left: 50%;
    display: none;
    overflow: hidden;
    width: 270px;
    -webkit-transition-property: -webkit-transform, opacity;
    transition-property: transform, opacity;
    -webkit-transform: perspective(1200px) translate3d(-50%, -50%, 0) scale(1.2);
    transform: perspective(1200px) translate3d(-50%, -50%, 0) scale(1.2);
    text-align: center;
    opacity: 0;
    color: #000;
    border-radius: 3px;
    z-index: 10000;
    -webkit-perspective: 1200px;
    -moz-perspective: 1200px;
    -ms-perspective: 1200px;
    -o-perspective: 1200px;
    perspective: 1200px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-font-smoothing: antialiased;
}

.zbox-popup.zbox-popup-in {
    display: block;
    transition-property: all;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    -webkit-transform: perspective(1200px) translate3d(-50%, -50%, 0) scale(1);
    transform: perspective(1200px) translate3d(-50%, -50%, 0) scale(1);
    opacity: 1;
}

.zbox-popup-inner {
    position: relative;
    padding: 15px;
    border-radius: 3px 3px 0 0;
    background: rgba(255, 255, 255, 0.95);
}

.zbox-popup-inner:after {
    position: absolute;
    z-index: 15;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    content: "";
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.zbox-popup-title {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #4a4a4a;
}

.zbox-popup-title+.zbox-popup-text {
    font-family: inherit;
    font-size: 16px;
    margin: 5px 0 0;
    color: #4a4a4a;
    line-height: 1.75;
}

.zbox-popup-buttons {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    height: 44px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.zbox-popup-button {
    font-size: 16px;
    line-height: 44px;
    position: relative;
    display: block;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    height: 44px;
    padding: 0 5px;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #666666;
    background: #ffffff;
    -webkit-box-flex: 1;
}

.zbox-popup-button.R {
    color: white;
    background-color: #08cc78;
}

.zbox-popup-button:first-child:last-child {
    border-radius: 0 0 3px 3px;
}

.zbox-popup-button.zbox-popup-button-bold {
    font-weight: 600;
}

.zbox-popup-button:after {
    position: absolute;
    z-index: 15;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    display: block;
    width: 1px;
    height: 100%;
    content: "";
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    background-color: rgba(0, 0, 0, 0.2);
}

.zbox-popup-backdrop.zbox-active {
    opacity: 1;
}

.zbox-popup-backdrop {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    opacity: 0;
    background: rgba(0, 0, 0, 0.4);
    /* -webkit-backdrop-filter: saturate(180%) blur(50px);
    backdrop-filter: saturate(180%) blur(50px); */
}

.zbox-toast-container {
    position: fixed;
    z-index: 999999;
    bottom: 30px;
    width: 100%;
    opacity: 0;
    left: 0;
    transition: all 0.3s;
}

.zbox-toast-container.zbox-active {
    opacity: 1;
    bottom: 60px;
}

.zbox-toast-message {
    font-size: 14px;
    margin: 0 auto;
    display: table;
    padding: 10px 25px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
}

.d-bg {
    background-color: rgba(0, 0, 0, 0.95);
}

.r-bg {
    background-color: rgba(247, 47, 47, 0.95);
}

.g-bg {
    background-color: rgba(0, 218, 24, 0.95);
}

.zbox-btn-outlined.zbox-btn-blue,
.zbox-btn-outlined.zbox-btn-primary {
    color: #007aff;
}

.zbox-btn-outlined {
    background-color: transparent;
}

.zbox-btn-blue,
.zbox-btn-primary,
input[type="submit"] {
    color: #fff;
    border: 1px solid #007aff;
    background-color: #007aff;
}

.zbox-btn,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    padding: 6px 12px;
    cursor: pointer;
    transition: all;
    transition-timing-function: linear;
    transition-duration: 0.2s;
    text-align: center;
    vertical-align: top;
    white-space: nowrap;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    background-clip: padding-box;
}

.zbox-btn {
    display: block;
    width: 120px;
    margin: 10px auto;
}

.zbox-loading {
    background-color: white;
    padding: 20px;
}

.zbox-loading p {
    margin-top: 10px;
}

.sk-spinner-rotating-plane.sk-spinner {
    width: 30px;
    height: 30px;
    background-color: #1ab394;
    margin: 0 auto;
    -webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
    animation: sk-rotatePlane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotatePlane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }

    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

@keyframes sk-rotatePlane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }

    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

/* 消息框 */

.close-this {
    color: #3a3a3a;
    font-size: 25px;
    cursor: pointer;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-family: SimSun;
    float: right;
}

.close-this:hover {
    background-color: #f4f4f4;
}

/* 右下角侧边工具条 */
.portal-floatbar {
    position: fixed;
    right: 30px;
    bottom: 40px;
    box-shadow: -2px 1px 20px 1px rgba(166, 224, 255, 0.4);
    border-radius: 24px;
    background: #fff;
    z-index: 100;
}

.kit-item {
    cursor: pointer;
    width: 36px;
    height: 36px;
    line-height: 36px;
    display: block;
    text-align: center;
    color: #37a0cc;
    border-radius: 25px;
    transition: all .3s;
}

.kit-item:hover {
    background-color: #03A9F4;
    color: #fff;
}

.kit-item .iconfont {
    margin: 0;
}

.kit-item.sup .iconfont {
    color: #ff6f6f;
}

.kit-item.sup:hover {
    background-color: #ff6f6f;
}

.kit-item.sup:hover .iconfont {
    color: #fff;
}

#tl-gotoTop {
    display: none;
}

.portal-floatbar.active #tl-gotoTop {
    display: block;
}

/* 右下角侧边工具条 */

.main-info {
    margin-bottom: 20px;
}

.main-title {
    font-size: 20px;
    font-weight: 600;
    color: #676767;
}

.main-content {
    padding: 0;
}

@media (max-width: 1024px) {
    .main-info {
        background-color: #fff;
        padding: 10px 10px 10px;
        margin-bottom: 0;
    }

    .main-content {
        padding: 0 10px;
        overflow: hidden;
    }

}

.limit-content {
    font-size: 14px;
    line-height: 27px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

@media (min-width: 1024px) {
    .limit-content {
        max-width: 700px;
    }
}

@media (max-width: 1024px) {
    .limit-content {
        background-color: #fff;
        padding: 0 10px;
        margin-bottom: 10px;
    }
}

.limit-content img {
    max-width: 100% !important;
    max-height: 100% !important;
    height: auto;
}

.tag-i {
    background-color: #4caf50;
    color: #fff;
    padding: 3px 10px;
    border-radius: 18px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 2px;
}

.tag-i:hover {
    color: #fff;
}

.t-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.t-ellipsis-2 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.menu-list {
    position: absolute;
    background-color: white;
    border: 1px solid #d5d5d5;
    top: 40px;
    right: 0;
    width: 150px;
    border-radius: 3px;
    display: none;
    z-index: 9;
    color: #000;
    cursor: default;
}

/* .menu-list p {
    color: #5f5f5f;
    text-align: left;
    padding-left: 10px;
    height: 30px;
    margin-bottom: 0;
}

.menu-list a {
    width: 100%;
    display: block;
    text-align: center;
    color: #363636;
    border-top: 1px solid #f2f2f2;
}

.menu-list a:hover {
    background-color: #f3f3f3;
} */

.menu-list.active {
    display: block;
}

.menu-item:hover {
    background-color: #f3f3f3;
}

@media (max-width: 1024px) {
    .menu-item {
        height: 66px;
    }

    .menu-list {
        position: fixed;
        top: unset;
        bottom: -10px;
        width: 100%;
        border: none;
        border-radius: 10px 10px 0 0;
        padding: 40px 0 10px;
        z-index: 99;
        animation: fadeInUp 0.45s cubic-bezier(0, 0, 0, 1.09);
    }
}

.menu-list a:hover {
    color: #262626;
}

.menu-title {
    padding-left: 10px;
}

.menu-des {
    font-size: 12px;
    padding: 0 10px;
    line-height: 18px;
    color: #fb3c00;
}

.menu-i-icon,
.menu-i-info {
    float: left;
}

.menu-i-icon {
    width: 60px;
    height: 100%;
    text-align: center;
    line-height: 60px;
    display: none;
}

.menu-i-icon .iconfont {
    font-size: 30px;
    color: #646464;
}

.menu-i-info {
    width: 100%;
    border-bottom: 1px solid #e6e6e6;
    padding: 5px 0 5px 10px;
    box-sizing: border-box;
}

.menu-i-info:hover {
    background-color: #f3f3f3;
}

.model-info p.menu-i-t,
.model-info p.menu-i-p {
    text-align: left;
    margin-bottom: 0;
    max-height: 24px;
    line-height: 24px;
}

.model-info p.menu-title {
    text-align: left;
    padding-left: 10px;
    margin-bottom: 0;
}

.model-info p.menu-des {
    font-size: 12px;
    padding: 0 10px;
    line-height: 16px;
    color: #FF5722;
    margin-bottom: 0;
}

.menu-i-p {
    color: #939393;
}

@media (max-width: 1024px) {
    .model-info p.menu-title {
        font-weight: 600;
        text-align: center;
        padding: 0;
        font-size: 16px;
    }

    .menu-i-icon {
        display: block;
    }

    .menu-i-t {
        padding: 6px 0 0;
    }

    .menu-i-info {
        width: calc(100% - 60px);
        height: 66px;
    }
}

.menu-mask {
    display: none;
    position: fixed;
    width: 100%;
    top: 35px;
    z-index: 1;
    height: calc(100vh - 35px);
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
}

@media (max-width: 1024px) {
    .menu-mask.active {
        display: block;
    }
}

@keyframes like-click {
    0% {
        top: 0px;
    }

    50% {
        top: -5px;
    }

    100% {
        top: 0px;
    }
}

@keyframes bubble {
    0% {
        top: 0px;
        opacity: 0;
        transform: scale(0.6);
    }

    5% {
        top: 0px;
        opacity: 1;
        transform: scale(0.6);
    }

    100% {
        top: -20px;
        opacity: 0;
        transform: scale(1.2);
    }
}

.like-btn::before,
.like-btn::after {
    content: "";
    border-radius: 50%;
    position: absolute;
}

.like-btn.liked-click i::before {
    position: relative;
    animation: like-click 0.3s;
}

.like-btn.liked-click::before,
.like-btn.liked-click::after {
    opacity: 0;
}

.like-btn.liked-click::before {
    left: 10px;
    width: 10px;
    height: 10px;
    background-color: #ffeb3b;
    animation: bubble 1s 0.3s 3;
}

.like-btn.liked-click::after {
    left: 12px;
    width: 8px;
    height: 8px;
    background-color: #ff9800;
    animation: bubble 1.3s 0.3s 3;
}

.like-btn i:before {
    margin-right: 5px;
}

.person-pic {
    width: 80px;
    height: 80px;
    float: left;
    position: relative;
    z-index: 2;
}

.person-pic a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.person-border {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.33);
    overflow: hidden;
}

.person-border img {
    width: 100%;
    height: 100%;
}

.offi::after {
    content: "";
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    color: #4ac7ff;
    font-size: 19px;
    border: 2px solid #f9f9f9;
    z-index: 1;
    background-image: url(/static/common/img/admin-icon.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.don::after {
    content: "";
    position: absolute;
    /* background-color: #ff000099; */
    background-size: cover;
    width: 60px;
    height: 60px;
    left: -7px;
    top: -7px;
}

.d-lv1::after {
    background-image: url(/static/user/img/t/don-1.png);
}

.d-lv2::after {
    background-image: url(/static/user/img/t/don-2.png);
}

.d-lv3::after {
    background-image: url(/static/user/img/t/don-3.png);
}

.d-lvn::after {
    background-image: url(/static/user/img/t/don-n.png);
}

#cnzz_stat_icon_1259919941 {
    display: none;
}

.tip {
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #fff;
    margin: 10px 0;
}

.tip-green {
    color: #209a00;
    background-color: #ecffe7;
}

.tip-red {
    color: #ff6262;
    background-color: #fff0ee;
}

.tip-orange {
    color: #ff861a;
    background-color: #fff0e3;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* 头像挂件 */

.don-80 .don::after {
    width: 100px;
    height: 100px;
    left: -10px;
    top: -10px;
}

@media (max-width: 1024px) {
    .don-80 .don::after {
        width: 75px;
        height: 75px;
        left: -8px;
        top: -6px;
    }
}

/* 头像挂件 */

.p-tip-text {
    text-align: center;
    padding: 10px 0 30px;
    color: #939393;
    font-size: 12px;
}

.shine {
    position: relative;
    overflow: hidden;
}

.shine::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    top: 0;
    left: -150%;
    overflow: hidden;
    background: linear-gradient(270deg, hsla(0, 0%, 100%, 0) 30%, hsla(0, 0%, 100%, 0.5) 50%, hsla(0, 0%, 100%, 0) 70%);
    transform: skewX(-25deg);
    -webkit-animation: light-cool 4s ease-in-out infinite;
    animation: light-cool 4s ease-in-out infinite;
    z-index: 2;
}

.cover-toggle {
    position: absolute;
    left: 0;
    width: 20px;
    height: 80px;
    line-height: 80px;
    background: #e4e4e4;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.8;
    transition: right 0.1s linear;
    z-index: 1;
    border-radius: 0px 5px 5px 0;
}

.cover-toggle .iconfont {
    transform: rotate(180deg);
    position: absolute;
}

.cover-hide .cover {
    width: 0;
}

.cover-hide .container {
    width: 100%;
}

.cover-hide .content {
    padding: 100px 0 0 0;
}

.cover-hide .cover-toggle .iconfont {
    transform: rotate(0);
}

.cover-hide .main-info {
    padding: 0 20px 0 20px;
}

.pack-btn {
    color: #e9bb76;
    background-color: #343434;
    margin-left: 10px;
    padding: 4px 10px;
    border-radius: 18px;
    font-size: 12px;
}

.pack-btn:hover {
    color: #e9bb76;
}

.pack-download {
    /* display: none; */
}

.magnify-footer {
    line-height: 0;
}

.tools-bar {
    overflow: hidden;
    margin-top: 10px;
}

.tool-serach-box {
    position: relative;
    width: 240px;
    float: left;
    margin-right: 10px;
}

@media(max-width:1024px) {
    .tool-serach-box {
        width: 100%;
        margin-bottom: 10px;
    }
}

.tool-serach-box input {
    width: 100%;
    height: 30px;
    border: 1px solid #2196f3;
    padding: 0 15px;
    border-radius: 27px;
    box-sizing: border-box;
}

.tool-serach-btn {
    position: absolute;
}

.tool-serach-btn {
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    width: 40px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    cursor: pointer;
    background-color: #2196f3;
    border-radius: 27px;
}

.tool-serach-btn i {
    margin: 0;
}

.switch-item {
    float: left;
    font-size: 14px;
    cursor: pointer;
    line-height: 25px;
    margin-top: 1px;
}

@media(max-width:1024px) {
    .switch-item {
        float: left;
    }
}

.switch-view {
    width: 50px;
    height: 25px;
    background-color: #e2e8ed;
    border-radius: 45px;
    float: left;
    margin-right: 5px;
    position: relative;
}

.switch-view::after {
    position: absolute;
    top: 2px;
    left: 5px;
    content: "";
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 24px;
    transition: left .3s;
}

.switch-item.active .switch-view {
    background-color: #03a9f4;
}

.switch-item.active .switch-view::after {
    left: 25px;
}

.ad-box {
    width: 100%;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.ad-box a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.ad-box img {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 1024px) {
    .ad-box {
        margin: 0 10px 20px;
        width: calc(100% - 20px);
    }
}