.header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 105px;
}

.header .logo {
    display: block;
    font-size: 0;
    margin-right: 50px;
}

.header .logo img {
    height: 38px;
}

.header ul.menu {
    display: flex;
    align-items: center;
    gap: 30px;
}


.header ul.menu a {
    display: flex;
    align-items: center;
    font-size: 20px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.header ul.menu li a:hover {
    color: var(--themeColor);
}

.header ul.menu a img {
    height: 24px;
    margin-right: 5px;
}

.header ul.menu li.active a {
    height: 60px;
    background: var(--themeColor);
    color: var(--themeColor2);
    padding: 0 20px;
    border-radius: 10px;
}

.header form {
    width: 312px;
    height: 50px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 58px;
}

.header form input {
    width: 100%;
    height: 100%;
    padding: 0 50px 0 28px;
    font-size: 16px;
    background: none;
    border-radius: 25px;
    border: 2px solid var(--themeColor3);
    transition: all 0.3s ease;
}

.header form:hover input,
.header form input:focus {
    border-color: var(--themeColor);
}

.header form button {
    position: absolute;
    right: 30px;
    background: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.header .btn-all {
    display: flex;
    align-items: center;
    height: 50px;
    border: 2px solid var(--themeColor3);
    border-radius: 25px;
    overflow: hidden;
    margin-left: 20px;
}

.header .btn-all a {
    font-size: 18px;
    padding: 0 22px 0 28px;
    border-right: 2px solid var(--themeColor3);
    transition: all 0.3s ease;
}

.header .btn-all a:last-child {
    padding: 0 28px 0 22px;
    border: none;
}

.header .btn-all a:hover {
    color: var(--themeColor);
}

.index-banner .container {
    display: flex;
    padding-top: 50px;
    margin-bottom: 110px;
}

.index-banner .content {
    width: calc(100% - 770px);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.index-banner .content h1 {
    font-size: 76px;
    font-weight: normal;
    margin-bottom: 34px;

}

.index-banner .content p {
    font-size: 30px;
}

.index-banner .btn {
    display: flex;
    gap: 10px;
    margin-top: 56px;
}

.index-banner .btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    height: 80px;
    border-radius: 20px;
    background: var(--themeColor);
    color: #fff;
    padding: 0 40px;
}

.index-banner .btn a.gd {
    padding: 0;
    width: 80px;
}

.index-banner .img {
    width: 770px;
}


.index-list ul.fir-cate {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.index-list ul.fir-cate>li {
    flex: 1;
    position: relative;
}

.index-list ul.fir-cate>li>a {
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid var(--themeColor3);
    padding: 20px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.index-list ul.fir-cate>li:hover>a,
.index-list ul.fir-cate>li.active>a {
    background: var(--themeColor);
    color: var(--themeColor2);
    border-color: var(--themeColor2);
}

.index-list ul.sub-cate {
    border-radius: 20px;
    border: 2px solid #ccc;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    z-index: 10;
    width: 100%;
    background: #fff;
    overflow: hidden;
    display: none;
}

.index-list ul.sub-cate>li>a {
    border-bottom: 2px solid #ccc;
    padding: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.index-list ul.sub-cate>li>a:hover {
    background: var(--themeColor);
    color: var(--themeColor2);
}

.index-list ul.sub-cate>li:last-child>a {
    border: none;
}

.index-list #video-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.index-list #video-list a.item {
    position: relative;
    display: block;
    width: calc(50% - 15px);
    height: 282px;
    border-radius: 20px;
    border: 2px solid var(--themeColor);
    background: #fff;
    padding: 60px;
    transition: all 0.3s ease;
    border-bottom: 8px solid var(--themeColor);
}

.index-list #video-list a.item:hover {
    background: var(--themeColor);
    color: #fff;
    border-color: var(--themeColor2);
}

.index-list #video-list a.item:hover::after {
    background: var(--themeColor2);
}

.index-list #video-list a.item .title {
    font-size: 30px;
    margin-bottom: 20px;
    width: 450px;
}

.index-list #video-list a.item .desc {
    font-size: 20px;
}

.index-list #video-list a.item .date {
    font-size: 18px;
    position: absolute;
    bottom: 55px;
    left: 60px;
}

.index-list #video-list a.item .state {
    font-size: 20px;
    position: absolute;
    top: 54px;
    right: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    background: var(--themeColor);
    color: #fff;
    padding: 0 22px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.index-list #video-list a.item:hover .state {
    background: #fff;
    color: var(--themeColor3);
}

.index-list #video-list a.item img.bg {
    width: 150px;
    position: absolute;
    bottom: 10px;
    right: 20px;
    opacity: 0;
}

.index-list #video-list a.item:hover img.bg {
    opacity: 1;
}

.index-list .pager {
    margin-top: 70px;
    margin-bottom: 60px;
}

.pager {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pager .left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.pager .left a,
.pager .left span {
    display: block;
    font-size: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.pager .left a.active {
    color: var(--themeColor2);
    text-shadow: 2px 2px 0px var(--themeColor);
}

.pager .left a:hover {
    color: var(--themeColor2);
}

.pager .right {
    display: flex;
    align-items: center;
    gap: 60px;
}

.pager .right img {
    width: 120px;
}

.pager .right a:hover img {
    transform: scale(0.9);
}

.footer {
    text-align: center;
    line-height: 1.5;
    background: #F9F9F9;
    font-size: 15px;
    padding: 22px 0;
    border-top: 2px solid #e7e7e7;
    color: #666;
}


.moblic-show {
    display: none !important;
}

@media (max-width: 1000px) {
    .pc-show {
        display: none !important;
    }

    .moblic-show {
        display: block !important;
    }

    html {
        min-width: unset;
        padding-bottom: 23.19vw;
    }

    .header ul.menu,
    .header .btn-all {
        display: none;
    }

    .header {
        justify-content: space-between;
        padding: 3vw 4.5vw;
        height: auto;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 99;
    }

    .header .logo {
        margin: 0;
    }

    .header .logo img {
        height: 4.6vw;
    }

    .header form {
        width: 62vw;
        height: 8vw;
        margin: 0;
    }

    .header form input {
        border-radius: 4vw;
        border: 0.3vw solid var(--themeColor3);
        font-size: 3vw;
        padding: 0 9vw 0 4vw;
    }

    .header form button {
        right: 4vw;
    }

    .header form button img {
        height: 4.2vw;
    }

    .index-banner .content {
        display: none;
    }

    .index-banner .container {
        display: block;
        padding: 0;
        margin-bottom: 6.5vw;
    }

    .index-banner .img {
        width: 100%;
    }

    .index-banner .img img {
        width: 100%;
    }

    .index-list ul.fir-cate {
        justify-content: space-between;
        margin-bottom: 3vw;
        gap: 0;
        padding: 0 1.5vw;
    }

    .index-list ul.fir-cate>li {
        flex: none;
    }

    .index-list ul.fir-cate>li>a {
        height: auto;
        border: none;
        font-size: 3.5vw;
        padding: 0;
    }

    .index-list ul.fir-cate>li:hover>a,
    .index-list ul.fir-cate>li.active>a {
        background: none;
        color: var(--themeColor);
    }

    .index-list ul.fir-cate>li>a img {
        height: 1.3vw;
        margin-left: 1.2vw;
    }

    .index-list ul.fir-cate>li.date>a img {
        height: 2.2vw;
        margin-left: 1.2vw;
    }

    .index-list ul.sub-cate {
        width: auto;
        border-radius: 1.5vw;
        border-width: 1px;
        border-color: var(--themeColor3);
    }

    .index-list ul.sub-cate>li>a {
        border-width: 1px;
        border-color: var(--themeColor3);
        padding: 0 5vw;
        height: 7vw;
        font-size: 3vw;
    }

    .index-list #video-list {
        gap: 2.5vw;
    }

    .index-list #video-list a.item {
        width: 100%;
        border: 0.2vw solid var(--themeColor);
        border-bottom: 1vw solid var(--themeColor);
        height: 21vw;
        padding: 6vw 3vw 4.5vw 5.6vw;
        border-radius: 1.5vw;
    }

    .index-list #video-list a.item .date,
    .index-list #video-list a.item img.bg {
        display: none;
    }

    .index-list #video-list a.item .title {
        font-size: 3.6vw;
        width: 61vw;
        margin-bottom: 2.6vw;
    }

    .index-list #video-list a.item .desc {
        font-size: 3vw;
        width: 61vw;
    }

    .index-list #video-list a.item .state {
        height: 8vw;
        font-size: 3vw;
        padding: 0 3.7vw;
        top: 5.5vw;
        right: 3vw;
    }

    .pager {
        justify-content: center;
        margin: 6vw 0 !important;
    }

    .pager .left {
        gap: 3vw;
    }

    .pager .right {
        display: none;
    }

    .pager .left a,
    .pager .left span {
        font-size: 3.2vw;
        text-shadow: none !important;
    }

    .footer {
        display: none;
    }
}

/* 弹窗 */
.layer-announcement {
    position: fixed;
    left: 0;
    top: 0;
    background: rgb(0, 0, 0, 0.4);
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}




.layer-announcement .content {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    max-width: 325px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-image: url(../images/ok-tanchuang.png);
    background-position: top center;
    background-color: #fff;

}

.layer-announcement .content .title {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    height: 150px;
    padding: 30px;
}

.layer-announcement .content .title h4 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--themeColor);
    font-weight: normal;
}

.layer-announcement .content .title h5 {
    font-weight: normal;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--themeColor);
    color: var(--themeColor2);
    height: 24px;
    padding: 0 10px;
    border-radius: 12px;
}

.layer-announcement .content .desc {
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
    padding: 0 25px 25px;
}

.layer-announcement .content .btn {
    display: flex;
    justify-content: center;
    padding-top: 6px;
    height: 74px;
}

.layer-announcement .content .btn a {
    width: 180px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 10px;
    background: var(--themeColor);
    color: var(--themeColor2);
}

/* 浮窗 */

.fuchuang {
    position: fixed;
    right: 30px;
    top: 30%;
    z-index: 1000;
    transform: translateY(-50%);
    border-radius: 20px;
    border: 2px solid var(--themeColor3);
    overflow: hidden;
    background: #fff;
}

.fuchuang a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 95px;
    height: 102px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.fuchuang a:hover {
    background: var(--themeColor);
    color: var(--themeColor2);
}

.fuchuang a::after {
    content: "";
    position: absolute;
    left: calc(50% - 27px);
    bottom: 0;
    width: 54px;
    height: 2px;
    background: var(--themeColor3);
}

.fuchuang a:last-child:after {
    display: none;
}

.fuchuang a img {
    width: 25px;
    position: relative;
    z-index: 2;
}

.fuchuang a .title {
    font-size: 14px;
    position: relative;
    z-index: 2;
    margin-top: 12px;
}

/* 分类页 */

.page-fenlei {
    padding: 80px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.nochildids {
    padding-top: 80px;
}

.page-fenlei a {
    width: 110px;
    height: 60px;
    border-radius: 10px;
    background: #fff;
    border: 2px solid var(--themeColor3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.page-fenlei a.active,
.page-fenlei a:hover {
    border-color: var(--themeColor);
    background: var(--themeColor);
    color: var(--themeColor2);
}

@media (max-width: 1000px) {
    .header.style {
        position: static;
        background: linear-gradient(106deg, rgb(242, 255, 243) 0%, rgb(225, 250, 251) 87%);
    }

    .page-fenlei {
        padding: 4vw 5vw;
        white-space: nowrap;
        overflow-x: auto;
        display: block;
        font-size: 0;
    }

    .nochildids {
        padding-top: 4vw;
    }

    .page-fenlei a {
        width: 15.63vw;
        height: 8.06vw;
        font-size: 3.02vw;
        display: inline-flex;
        margin-right: 2.42vw;
        border-radius: 1.2vw;
        border-width: 0.3vw;
    }
}


/* 搜索页 */
.page-sousuo {
    padding: 80px 0;

}

.page-sousuo .sousuo-box {
    margin: 0 100px;
    height: 60px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 16px;
    border: 2px solid var(--themeColor3);
}

.page-sousuo .num {
    width: 225px;
    color: var(--themeColor);
    line-height: 28px;
    border-right: 2px solid var(--themeColor);
}

.page-sousuo .desc {
    width: calc(100% - 225px);
}



/* 详情页 */

.page-xiangqing {
    padding-top: 85px;
    padding-bottom: 40px;
}

.xiangqing-top {
    display: flex;
    align-items: flex-start;
}

.xiangqing-top .img {
    width: 480px;
    padding: 0 40px 0 0;
}

.xiangqing-top .img img {
    width: 100%;
    height: 555px;
    object-fit: cover;
    border-radius: 20px;
}

.xiangqing-top .info {
    width: calc(100% - 480px);
    border: 2px solid var(--themeColor3);
    border-radius: 20px;
    padding: 40px 60px 50px;
    position: relative;
    background: #fff;
    border-bottom: 8px solid var(--themeColor3);
    height: 555px;
}

.xiangqing-top .info h1 {
    display: flex;
    align-items: center;
    font-size: 40px;
    font-weight: normal;
}

.xiangqing-top .info h1 span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    white-space: nowrap;
    height: 42px;
    border-radius: 10px;
    font-size: 20px;
    color: var(--themeColor);
    background: rgb(227, 241, 237);
    margin-left: 10px;
}

.xiangqing-top .info .otherinfo {
    display: flex;
    flex-wrap: wrap;
    padding-top: 36px;
}

.xiangqing-top .info .otherinfo .once {
    width: 50%;
    margin-bottom: 32px;
    font-size: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.xiangqing-top .info .otherinfo .once .split-line {
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    width: 1px;
    height: 16px;
    vertical-align: -2px;
    background-color: #1F1F1F;
}

.xiangqing-top .info .otherinfo .once .split-line:last-child {
    display: none;
}

.xiangqing-top .info .otherinfo .once span,
.xiangqing-top .info .actor span {
    color: #666;
}

.xiangqing-top .info .actor {
    font-size: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.xiangqing-top .info .otherinfo .once:last-child {
    margin-bottom: 0 !important;
}

.xiangqing-top .info .tag {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #666;
    margin-top: 30px;
}

.xiangqing-top .info .tag a {
    padding: 4px;
    background: rgb(227, 241, 237);
    color: var(--themeColor);
    margin-right: 6px;
    font-size: 16px;
}

.xiangqing-top .info .description {
    line-height: 1.5;
    font-size: 18px;
    margin-top: 36px;
}

.xiangqing-top .info .description .title {
    color: #666;
}

.xiangqing-top .info .description p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
}

.xiangqing-bottom {
    margin-top: 50px;
}

.xiangqing-bottom .section {
    padding: 40px 60px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 2px solid var(--themeColor);
    background: #fff;
    position: relative;
    border-bottom: 8px solid var(--themeColor);
}

.xiangqing-bottom .section:last-child {
    margin-bottom: 0;
}

.xiangqing-bottom .section .once-title {
    font-size: 20px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.xiangqing-bottom .section .once-title span {
    font-size: 18px;
    color: #999;
    cursor: pointer;
}

.xiangqing-bottom .section .once-title span .txt2 {
    display: none;
}

.xiangqing-bottom .section .item {
    margin-bottom: 20px;
    border-radius: 10px;
    height: 80px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 17px;
    border: 2px solid var(--themeColor);
}

.xiangqing-bottom .section .item:last-child {
    margin-bottom: 0;
}

.xiangqing-bottom .section .item:hover {
    background: var(--themeColor);
    color: #fff;
}

.xiangqing-bottom .section .item .num {
    padding: 0 20px;
    white-space: nowrap;
}

.xiangqing-bottom .section .item .link {
    width: calc(100% - 240px);
    display: block;
    padding: 0 20px;
}

.xiangqing-bottom .section .item a {
    width: 90px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--themeColor);
    position: absolute;
    right: 20px;
    color: #fff;
    transition: all 0.3s ease;
}

.xiangqing-bottom .section .item:hover a {
    background: #fff;
    color: var(--themeColor3);
    transition: all 0.3s ease;
}

.xiangqing-bottom .section .item a img {
    display: none;
}

.xiangqing-top .img span {
    display: none;
}

/* 播放页 */
.page-bofang .play {
    padding: 10px;
    border-radius: 20px;
    font-size: 0;
    border: 2px solid var(--themeColor3);
    position: relative;
    background: #fff;
    border-bottom: 8px solid var(--themeColor3);
}

.page-bofang #play_box {
    padding-bottom: 56%;
    position: relative;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
}

.page-bofang .MacPlayer {
    position: absolute
}


.page-bofang .content {
    margin-top: 40px;
}

.page-bofang .content .title {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
}

.page-bofang .content p {
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 1000px) {
    .xiangqing-top .img {
        padding: 0;
        width: 33.67vw;
        padding-right: 5.54vw;
        position: relative;
    }

    .xiangqing-top .img span {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 2vw;
        height: 4.5vw;
        border-radius: 0.81vw;
        font-size: 2.8vw;
        color: #73baa7;
        background: #3e494a;
        position: absolute;
        left: 1.01vw;
        top: 1.01vw;
    }

    .xiangqing-top .img img {
        width: 28.23vw;
        height: 37.80vw;
        border-radius: 1.51vw;
        transition: none;
    }

    .xiangqing-top .info {
        width: calc(100% - 33.67vw);
        padding: 0;
        border: none;
        height: auto;
    }

    .xiangqing-top {
        margin-top: 4.03vw;
    }

    .xiangqing-top .info .actor,
    .xiangqing-top .info .tag,
    .xiangqing-top .info h1 {
        display: none;
    }

    .xiangqing-top .info .otherinfo {
        padding-top: 2.22vw;
        display: block;
        min-height: 37.80vw;
    }

    .xiangqing-top .info .otherinfo .once {
        width: 100%;
        font-size: 3.02vw;
        margin-bottom: 3.5vw;
    }

    .xiangqing-top .info .otherinfo .once .split-line {
        height: 2.8vw;
        margin-left: 1.3vw;
        margin-right: 1.3vw;
    }

    .xiangqing-top .info .description {
        margin-left: -33.67vw;
        font-size: 3.1vw;
        position: relative;
        z-index: 99;
        margin-top: 5.04vw;
        line-height: 1.9;
        padding-right: 0;
    }

    .xiangqing-top .info .description .title {
        margin-bottom: 0.81vw;
    }

    .xiangqing-top .info .description p {
        font-size: 3.1vw;
    }

    .page-xiangqing,
    .page-bofang {
        padding: 0;
    }

    .page-bofang .play {
        margin: 0 -5.04vw;
        border: none;
        padding: 0;
    }

    .page-bofang #play_box {
        border-radius: 0 !important;
    }

    .page-bofang .content .title {
        font-size: 3.2vw;
        margin-bottom: 3.02vw;
    }

    .page-bofang .content p {
        font-size: 3.2vw;
    }

    .xiangqing-bottom {
        padding: 0;
        border-radius: 0;
        background: none;
        margin-top: 6vw;
    }

    .xiangqing-bottom .section {
        padding: 6.55vw 2.52vw;
        border-radius: 2vw;
        margin-bottom: 4vw;
        border-width: 0.3vw;
        border-bottom-width: 0.8vw;
    }

    .xiangqing-bottom .section .item {
        height: 16.13vw;
        margin-bottom: 3.02vw;
        border-width: 0.3vw;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 0 3.83vw;
        position: relative;
        border-radius: 1.51vw;
    }

    /*.xiangqing-bottom .section .item .num {*/
    /*    padding: 0;*/
    /*    font-size: 3.63vw;*/
    /*    margin-bottom: 3.02vw;*/
    /*}*/

    .xiangqing-bottom .section .item .link {
        font-size: 3.23vw;
        text-overflow: ellipsis;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        width: 95%;
        padding: 0;
        line-height: 6.02vw;
    }

    .xiangqing-bottom .section .once-title {
        font-size: 3.63vw;
        margin-bottom: 4vw;
        justify-content: space-between;
    }

    .xiangqing-bottom .section .once-title .title {
        display: none;
    }

    .xiangqing-bottom .section .once-title span {
        font-size: 3.23vw;
        color: var(--themeColor);
    }

    .xiangqing-bottom .section .once-title span .txt1 {
        display: none;
    }

    .xiangqing-bottom .section .once-title span .txt2 {
        display: block;
    }

    .xiangqing-bottom .section .item a {
        height: auto;
        width: auto;
        background: none;
        position: absolute;
        right: 3.63vw;
        top: 2.62vw;
    }

    .xiangqing-bottom .section .item a span {
        display: none;
    }

    .xiangqing-bottom .section .item a img {
        display: block;
        height: 4.84vw;
    }
}


/* 留言区 */


.page-liuyan .bg-banner {
    margin-bottom: 40px;
}


.liuyan-sec1 {
    margin: 0 40px;
    margin-bottom: 40px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 16px;
    border: 2px solid #999;
}

.liuyan-sec1 .num {
    width: 90px;
    border-right: 2px solid var(--themeColor);
}

.liuyan-sec1 .desc {
    width: calc(100% - 90px);
}

.liuyan-sec2 {}

.liuyan-sec2 .box {
    overflow: hidden;
}

.liuyan-sec2 .box textarea {
    display: block;
    padding: 20px;
    font-size: 20px;
    background: #fff;
    height: 240px;
    width: 100%;
    border: 2px solid var(--themeColor);
    border-radius: 10px 10px 0 0;

}

.liuyan-sec2 .box .tishi {
    font-size: 18px;
    color: var(--themeColor);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    padding: 0 20px;
    background: rgb(227, 241, 237);
    border-radius: 0 0 10px 10px;
    border-top: none !important;
    border: 2px solid var(--themeColor);
}

.liuyan-sec2 .box .tishi .gbook_submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 60px;
    border-radius: 10px;
    background: var(--themeColor);
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}


.msg-code {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.msg-code #verify_img,
.msg-code .form-control {
    width: 138px;
    height: 60px;
    border-radius: 10px;
}

.msg-code .form-control {
    background: none;
    border: 1px solid var(--themeColor);
    text-align: center;
    margin: 0 10px 0 10px;
    transition: all 0.3s ease;
    font-size: 16px;
}


.liuyan-sec3 {
    margin-top: 40px;
    padding-bottom: 50px;
}

.liuyan-sec3 .item {
    padding: 30px 30px 20px;
    background: #fff;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 2px solid var(--themeColor);
    position: relative;
    border-bottom: 8px solid var(--themeColor);
}

.liuyan-sec3 .item:last-child {
    margin-bottom: 0;
}

.liuyan-sec3 .userinfo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.liuyan-sec3 .userinfo img {
    border: 1px solid var(--themeColor);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.liuyan-sec3 .userinfo .name {
    font-size: 18px;
}

.liuyan-sec3 .userinfo span {
    font-size: 14px;
    color: #666;
}

.liuyan-sec3 .desc {
    display: block;
    margin-left: 50px;
    border-bottom: 1px solid var(--themeColor);
    line-height: 1.5;
    font-size: 20px;
    margin-top: 24px;
    padding-bottom: 20px;
}


.liuyan-footer {
    background: rgb(250, 250, 250);
    padding-top: 40px;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

.liuyan-footer .footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
}

.liuyan-footer .footer-top .logo img {
    height: 44px;
}

.liuyan-footer .footer-top .desc {
    margin-top: 10px;
    padding-left: 60px;
}

.liuyan-footer .footer-top .contact {
    display: flex;
    gap: 220px;
    margin-top: 60px;
    padding-left: 40px;
    color: var(--themeColor3);
}

.liuyan-footer .footer-top .contact .title {
    font-size: 18px;
    margin-bottom: 18px;
}

.liuyan-footer .footer-top .right .title {
    font-size: 18px;
    margin-bottom: 22px;
}

.liuyan-footer .footer-top .right p {
    margin-top: 16px;
    color: var(--themeColor3);
}

.liuyan-footer .cop {
    text-align: center;
    border-top: 1px solid #e1e1e1;
    font-size: 14px;
    padding: 22px 0;
    color: #999;
}

.liuyan-sec3 .reply {
    padding-top: 21px;
    line-height: 21px;
    margin-left: 50px;
    font-size: 18px;
    color: var(--themeColor);
}

@media (max-width: 1000px) {
    .page-sousuo {
        display: none !important;
    }

    .page-liuyan .bg-banner {
        margin-bottom: 3.02vw;
    }

    .page-liuyan .bg-banner img {
        width: 100%;
    }

    .liuyan-sec1 {
        margin: 0 0 3.02vw;
        height: 10.69vw;
        border-radius: 2vw;
        padding: 0.20vw;
        position: relative;
        border-width: 0.3vw;
    }

    .liuyan-sec1 .num {
        width: 8.57vw;
    }

    .liuyan-sec1 .num img {
        height: 4.03vw;
    }

    .liuyan-sec1 .desc {
        width: calc(100% - 8.57vw);
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 3.02vw;
        padding-left: 2.42vw;
    }

    .liuyan-sec2 {
        padding: 0;
    }

    .liuyan-sec2 .box {
        position: relative;
    }

    .liuyan-sec2 .box textarea {
        height: 30.24vw;
        border-radius: 2vw;
        font-size: 3.02vw;
        border-width: 0.3vw;
        padding: 2vw;
    }

    .liuyan-sec2 .box .tishi {
        display: inline-block;
        width: auto;
        height: auto;
        padding: 0;
        border: none;
        position: absolute;
        right: 3.23vw;
        bottom: 3.23vw;
        background: none;
    }

    .liuyan-sec2 .box .tishi span {
        display: none;
    }

    .liuyan-sec2 .box .tishi .gbook_submit,
    .msg-code #verify_img,
    .msg-code .form-control {
        width: 15.73vw;
        height: 8.06vw;
        border-radius: 1.01vw;
        font-size: 2.42vw;
    }
    
    .msg-code .form-control{
        margin: 0 1.5vw 0 1.5vw;
    }
    
    .liuyan-sec3 {
        padding: 0;
        background: none;
        border-radius: 0px;
        margin-top: 2.42vw;
    }

    .liuyan-sec3 .item {
        margin-bottom: 2.42vw;
        border-radius: 1.01vw;
        padding: 3.23vw 4.64vw;
        border-width: 0.3vw;
        border-bottom-width: 0.8vw;
        border-radius: 2vw;
    }

    .liuyan-sec3 .desc {
        font-size: 2.82vw;
        margin: 5.04vw 0 0 7.06vw;
        padding-bottom: 5.04vw;
    }

    .liuyan-sec3 .reply {
        margin-left: 7.06vw;
        font-size: 2.82vw;
        padding-top: 3vw;
        line-height: 3vw;
    }

    .liuyan-sec3 .userinfo img {
        width: 6.05vw;
        height: 6.05vw;
    }

    .liuyan-sec3 .userinfo .name {
        font-size: 2.82vw;
    }

    .liuyan-sec3 .userinfo span {
        font-size: 2.42vw;
    }

    .liuyan-footer {
        display: none;
    }
}


/* 帮助中心 */

.help-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 58px;
    height: 106px;
    position: relative;
}

.help-nav a.logo {
    position: absolute;
    left: 30px;
}

.help-nav a.logo img {
    height: 38px;
}

.help-nav a {
    font-size: 20px;
    transition: all 0.3s ease;
}

.help-nav .active a,
.help-nav li:hover a {
    color: var(--themeColor);
}

.page-help {
    padding-bottom: 50px;
}

.page-help-box .b-title {
    padding-left: 78px;
    padding-top: 20px;
}

.page-help-box .b-title img {
    width: 779px;
}

.page-help-box .help-sec1 {
    border-radius: 20px;
    padding: 60px 60px 40px;
    margin-top: 40px;
    border: 2px solid var(--themeColor);
    position: relative;
    background: #fff;
    border-bottom: 8px solid var(--themeColor);
}

.page-help-box .help-sec1 .help-sec1-title {
    font-size: 20px;
    color: #999;
    line-height: 1.5;
    margin-bottom: 30px;
}

.page-help-box .help-sec1 .help-sec1-title h3 {
    font-weight: normal;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--themeColor3);
}

.page-help-box .help-sec1 .item {
    margin-bottom: 20px;
    border-radius: 10px;
    background: #fff;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 17px;
    padding: 20px;
    line-height: 1.5;
    border: 2px solid var(--themeColor);
    transition: all 0.3s ease;
}

.page-help-box .help-sec1 .item:last-child {
    margin-bottom: 0;
}

.page-help-box .help-sec1 .item:hover {
    background: var(--themeColor);
    color: #fff;
}

.page-help-box .help-sec1 .tishi {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 40px;
}

.page-help-box .help-sec1 .tishi h3 {
    font-weight: normal;
    font-size: 20px;
    color: var(--themeColor);
    margin-bottom: 20px;
}

.help-sec2 {
    display: flex;
    margin-top: 48px;
}

.help-sec2 .anquan {
    width: 400px;
    border-radius: 20px;
    background: var(--themeColor);
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    padding: 0 30px 30px;
    position: relative;
    border-bottom: 8px solid var(--themeColor2);
}

.help-sec2 .anquan img {
    display: block;
    width: 136px;
    margin: -30px auto 0;
}

.help-sec2 .qqqun {
    width: calc(100% - 420px);
    margin-left: 20px;
    display: flex;
    border-radius: 20px;
    background: var(--themeColor2);
    padding: 20px 20px 28px;
    gap: 18px;
    position: relative;
    z-index: 2;
}

.help-sec2 .qqqun .once {
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--themeColor);
    position: relative;
    width: calc(25% - 13.5px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-bottom: 8px solid var(--themeColor);
}

.help-sec2 .qqqun .once h5 {
    font-size: 20px;
    font-weight: normal;
    margin-top: 20px;
}

.help-sec2 .qqqun .once h3 {
    font-size: 32px;
    font-weight: normal;
    margin-top: 10px;
    color: var(--themeColor);
    white-space: nowrap;
}

@media (max-width: 1000px) {
    .help-nav a.logo {
        display: none;
    }

    .help-nav {
        display: block;
        background: none;
        overflow-x: auto;
        font-size: 0;
        white-space: nowrap;
        padding: 0 5.04vw;
        margin-top: 3.63vw;
        height: auto;
    }

    .help-nav li {
        display: inline-block;
        margin-right: 2.62vw;
    }

    .help-nav a {
        padding: 3.43vw 3.02vw;
        display: block;
        font-size: 3.02vw;
        border-radius: 1.5vw;
        border: 0.3vw solid var(--themeColor3);
    }

    .help-nav .active a,
    .help-nav li:hover a {
        color: var(--themeColor2);
        border-color: var(--themeColor);
        background: var(--themeColor);
    }

    .page-help-box {
        padding: 0;
        background: none;
    }

    .page-help {
        padding-top: 2.4vw;
    }

    .page-help-box .b-title {
        padding: 0;
        text-align: center
    }

    .page-help-box .b-title img {
        width: 60vw;
    }

    .page-help-box .help-sec1 {
        margin-top: 1.4vw;
        border-radius: 1.51vw;
        padding: 8.06vw 3.02vw;
        border-width: 0.3vw;
        border-bottom-width: 0.8vw;
    }

    .page-help-box .help-sec1 .help-sec1-title {
        font-size: 3.02vw;
        margin-bottom: 5vw;
    }

    .page-help-box .help-sec1 .help-sec1-title h3 {
        font-size: 3.02vw;
        margin-bottom: 4.03vw;
    }

    .page-help-box .help-sec1 .item {
        border-radius: 1.51vw;
        height: auto;
        font-size: 3.63vw;
        padding: 3.63vw 4.23vw;
        border-radius: 1.51vw;
        display: block;
        border-width: 0.3vw;
        margin-bottom: 3vw;
    }

    .page-help-box .help-sec1 .tishi {
        font-size: 3.63vw;
        margin-top: 4.03vw;
    }

    .page-help-box .help-sec1 .tishi h3 {
        font-size: 3.63vw;
        margin-bottom: 2.02vw;
    }

    .help-sec2 {
        display: block;
        margin-top: 3vw;
    }

    .help-sec2 .anquan {
        width: 100%;
        padding: 3vw 4vw 3vw 26vw;
        border-radius: 2vw;
        position: relative;
        font-size: 3vw;
        min-height: 36vw;
        border-bottom-width: 0.8vw;
        margin-bottom: 2.4vw;
    }

    .help-sec2 .anquan img {
        position: absolute;
        left: 2vw;
        top: 6.5vw;
        margin: 0;
        width: 21.5vw;
    }

    .help-sec2 .qqqun {
        width: 100%;
        margin: 0;
        padding: 0;
        border-radius: 0;
        background: none;
        gap: 2vw;
    }

    .help-sec2 .qqqun .once {
        height: 25vw;
        width: auto;
        flex: 1;
        border-radius: 1.5vw;
    }

    .help-sec2 .qqqun .once img {
        width: 9vw;
    }

    .help-sec2 .qqqun .once h5,
    .help-sec2 .qqqun .once h3 {
        font-size: 2.6vw;
        margin-top: 2vw;
    }
}