body {
    /*font-family: Arial, "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "\5FAE\8F6F\96C5\9ED1", sans-serif;*/
    font-family: Arial;
    font-size: 14px;
    line-height: 1.5;
    color: #424242;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    background-color: #F1F3F5;
}

a {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.bg-fff {
    background-color: #fff;
    color: #333;
}

.bg-333 {
    background-color: #101010;
    color: #fff;
}

.mobile {
    display: none !important;
}

.pc {
    display: block;
}
.hide {
    display: none;
}

.animation-up {
    transition: all 0.3s ease;
}
.animation-up:hover {
    transform: translateY(-4px);
}
.animation-left {
    transition: all 0.3s ease;
}
.animation-left:hover {
    transform: translateX(-4px);
}
.animation-right {
    transition: all 0.3s ease;
}
.animation-right:hover {
    transform: translateX(4px);
}
.animation-enlarge {
    transition: transform 0.3s ease;
    will-change: transform;
}
.animation-enlarge:hover {
    transform: scale(1.1);
}
.animation-shadow {
    transition: box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.animation-shadow:hover {
    box-shadow: 0 2px 7px rgba(0, 0, 0, .15);
    border-color: transparent;
}
.mb0 {
    margin-bottom: 0 !important;
}
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(-100px);
    background-color: #fff;
    border-radius: 16px;
    z-index: 10003;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease-out;
    box-shadow: 0 10px 30px 0 rgba(134,144,156,0.35);
}
.popup.popup-w630 {
    width: 630px;
}
.w_773 {
    width: 773px;
}
.popup .close {
    position: absolute;
    right: 19px;
    top: 26px;
    width: 14px;
    cursor: pointer;
}
.popup .title-box {
    border-bottom: 1px solid #DEE1E8;
    font-weight: 600;
    font-size: 18px;
    color: #101010;
    padding: 24px 0;
    margin: 0 20px;
    box-sizing: border-box;
    margin-bottom: 16px;
}
.popup .popup-content {
    min-height: 300px;
    max-height: 600px;
    overflow-y: scroll;
}
.popup .popup-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 0 20px 20px 0;
    box-sizing: border-box;
}
.popup .popup-footer .btn {
    width: 136px;
    height: 50px;
    line-height: 50px;
    background-color: rgba(222,225,232,0.5);
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #101010;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.popup .popup-footer .btn.active {
    background-color: #165DFF;
    color: #fff;
}
.popup .popup-footer .btn:hover {
    background-color: rgba(222,225,232,0.9);
}
.popup .popup-footer .btn.active:hover {
    background-color: rgba(22,93,255,0.8);
}
@keyframes floatUp {
    from {
        transform: translate(-50%, -50%) translateY(100px);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) translateY(0);
        opacity: 1;
    }
}
@keyframes flyLeft {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}
@keyframes flyBottom {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateX(0);
    }
}
@keyframes shrinkAndDisappear {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}
.popup ::-webkit-scrollbar {
    /*display: none;*/
}
.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.page-css .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.page-css .now_page {
    padding: 3px 5px;
    margin: 2px;
    color: red;
    font-weight: bold;
}

.page-css .more_page {
    padding: 3px;
    margin: 2px;
    color: black;
    font-weight: bold;
}

.page-css .title_page {
    padding: 3px;
    margin: 2px;
    color: #0063E3;
    font-weight: bold;
}

.page-css a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #F1F3F5;
    color: #1C2129;
    font-size: 14px;
    border-radius: 8px;
}

.page-css a:link, .page-css a:visited {
    text-decoration: none;
}

.page-css ul li {
    list-style: none;
}

.page-css ul li:first-child a, .page-css ul li:last-child a {
    background-color: #fff;
    color: #333;
}
.page-css li.pageOn a, .page-css a:hover {
    background: #202020;
    color: #fff;
}

.page-css ul li.num {
    line-height: 32px;
    padding-left: 10px;
}

.edit-box {
    line-height: 2;
    overflow: hidden;
}
.edit-box img {
    max-width: 100%;
}

.swiper {
    border-radius: 10px;
    overflow: hidden;
}
.swiper.bigR {
    border-radius: 20px;
}
.swiper .swiper-slide {
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    height: 350px;
}
.swiper.h330 .swiper-slide {
    height: 330px;
}
.swiper.h140 .swiper-slide {
    height: 140px;
}

.swiper.swiper-custom .swiper-horizontal > .swiper-pagination-bullets,
.swiper.swiper-custom .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper.swiper-custom .swiper-pagination-custom,
.swiper.swiper-custom .swiper-pagination-fraction {
    left: 30px !important;
    width: auto !important;
    bottom: 20px !important;
}

.swiper.swiper-custom .swiper-pagination-bullet {
    width: 40px !important;;
    height: 2px !important;;
    border-radius: 1px !important;;
    background: rgba(255, 255, 255, 0.8) !important;;
}

.swiper.swiper-custom .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 1) !important;;
}
.hr-line {
    border-bottom: 1px solid #E8EAEF;
}
.total {
    font-weight: 600;
    font-size: 17px;
    color: #101010;
    line-height: 18px;
    margin: 20px 0 16px 0;
}
.total span {
    color: #165DFF;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #fff;
    -webkit-box-shadow: inset 0 0 6px #fff;
    border-radius: 10px;
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(136, 136, 136, 0.42);
    -webkit-box-shadow: inset 0 0 6px rgba(136, 136, 136, 0.42);
    background-color: rgba(136, 136, 136, 0.42);
}

.main-box {
    width: 1200px;
    margin: 0 auto;
}

.desc-box {
    padding: 26px 20px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 16px;
    margin-top: 16px;
}

.desc-box .title {
    font-weight: 600;
    font-size: 18px;
    color: #101010;
}

.desc-box p {
    font-weight: 400;
    font-size: 13px;
    color: #4E5968;
    line-height: 24px;
    margin-top: 8px;
}

.nav-menu {
    background-color: #fff;
    border-radius: 9px;
    height: 53px;
    line-height: 53px;
    display: flex;
    gap: 40px;
    padding: 0 20px;
    box-sizing: border-box;
}
.nav-menu.style1 {
    border-bottom: 1px solid #E8EAEF;
    border-radius: 0;
    padding: 0;
}

.nav-menu .it {
    font-weight: 500;
    font-size: 14px;
    color: #86909C;
    position: relative;
    white-space: nowrap;
}
.nav-menu .it.active, .nav-menu .it:hover {
    font-weight: 600;
    color: #101010;
}

.nav-menu .it.active::before {
    position: absolute;
    content: '';
    width: 28px;
    height: 2px;
    bottom: 0;
    background-color: #101010;
    left: 50%;
    transform: translateX(-50%);
}
.nav-menu .it.more {
    margin-left: auto;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 12px;
    color: #86909C
}
.nav-menu .it.more img {
    width: 12px;
}
.nav-menu-group {

}
.nav-menu-group .item {

}
.publish-btn {
    width: 100%;
    height: 56px;
    line-height: 56px;
    background: #165DFF;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    color: #FFFFFF;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.publish-btn.small {
    height: 50px;
    line-height: 50px;
}
.publish-btn:hover {
    background-color: rgba(22,93,255,0.9);
}
.publish-btn.gray {
    background-color: rgba(0,0,0,0.4);
    cursor: unset;
}
.check-menu {
    display: flex;
    align-items: center;
    margin-right: 56px;
}

.check-menu .li {
    font-weight: 500;
    font-size: 14px;
    color: #86909C;
    margin-right: 24px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.check-menu .m {
    cursor: pointer;
}

.check-menu .li.tit {
    font-weight: 500;
    color: #101010;
}

.check-menu .m.active, .check-menu .m:hover {
    height: 24px;
    line-height: 24px;
    background: #165DFF;
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
    color: #FFFFFF;
    padding: 0 10px;
    box-sizing: border-box;
}
.com-btn {
    padding: 0 20px;
    height: 50px;
    line-height: 50px;
    background-color: #165DFF;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.com-btn.small {
    height: 35px;
    line-height: 36px;
    font-size: 13px;
    padding: 0 14px;
}
.com-btn.blank {
    background-color: unset;
    color: #FF9900;
}
.layui-layer-btn .layui-layer-btn0 {
    border-color: #165DFF !important;
    background-color: #165DFF !important;
}
.tag {
    border-radius: 3px;
    height: 24px;
    line-height: 24px;
    padding: 0 8px;
    box-sizing: border-box;
    margin-right: 10px;
    display: inline-flex;
    font-weight: 600;
    font-size: 10px;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.tag.mr0 {
    margin-right: 0;
}
.tag img {
    width: 8px;
}
.tag.big {
    height: 28px;
    line-height: 29px;
}

.tag.color1 {
    background-color: rgba(22, 93, 255, 0.11);
    color: #165DFF;
}

.tag.color2 {
    background-color: rgba(128, 193, 6, 0.11);
    color: #80C106;
}

.tag.color3 {
    background-color: #DEE1E8;
    color: #101010;
}

.border-16 {
    border-radius: 9px;
    padding: 20px;
    box-sizing: border-box;
    background-color: #fff;
}
.border-16.pb0 {
    padding-bottom: 0;
}
.border-16.pt5 {
    padding-top: 5px;
}
.border-16.bg1 {
    background: linear-gradient(to bottom, #C8E8FF, #FFFFFF) top / 100% 140px no-repeat,#fff;
}
.border-16.bg2 {
    background: linear-gradient(to bottom, #E1F2FE, #FFFFFF) top / 100% 140px no-repeat,#fff;
}
.border-16.bg3 {
    background: linear-gradient(to bottom, #C5EFE4, #FFFFFF) top / 100% 140px no-repeat,#fff;
}
.border-16.bg4 {
    background: linear-gradient(to bottom, #FFDED6, #FFFFFF) top / 100% 140px no-repeat,#fff;
}
.border-16.bg5 {
    background: linear-gradient(to bottom, #EAE3FF, #FFFFFF) top / 100% 140px no-repeat,#fff;
}
.border-16.bg6 {
    background: linear-gradient(to bottom, #ACE6C5, #FAFEFC) top / 100% 220px no-repeat,#fff;
}
.border-16 .title {
    font-weight: bold;
    font-size: 17px;
    color: #101010;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DEE1E8;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.border-16 .title.nob {
    border-bottom: none;
    margin-bottom: 0;
}
.border-16 .title .more {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 12px;
    color: #86909C;
}
.border-16 .title .more:hover {
    color: #165DFF;
}
.border-16 .title .more img {
    width: 12px;
}
.tag-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.tag-group.left {
    justify-content: flex-start;
}
.tag-group .item {
    flex: 1 1 calc(33.333% - 10px);
    height: 32px;
    line-height: 32px;
    border-radius: 6px;
    background-color: #DEE1E8;
    font-size: 13px;
    color: #101010;
    text-align: center;
}
.author-group {

}
.author-group .item {
    display: flex;
    align-items:  center;
    justify-content: space-between;
    border-bottom: 1px solid #DEE1E8;
    padding-bottom: 16px;
    margin-bottom: 16px;
    gap: 16px;
}
.author-group .item:last-child {
    border-bottom: none;
    margin-bottom: -10px;
}
.author-group .item .logo {
    width: 40px;
    height: 40px;
    border-radius: 20px;
}
.author-group .item .name {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: #212429;
}
.author-group .item .name .img {
    width: 16px;
    margin-left: 5px;
}
.author-group .item .desc {
    font-weight: 400;
    font-size: 12px;
    color: #4E5968;
    line-height: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.author-group .item .num {
    font-weight: 400;
    font-size: 12px;
    color: #86909C;
    line-height: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 7px;
}
.author-group .item .btn {
    margin-left: auto;
    background: linear-gradient(135deg, #8e99f3, #4a76d8);
    width: 50px;
    height: 24px;
    line-height: 24px;
    font-weight: 600;
    font-size: 10px;
    color: #FFFFFF;
    text-align: center;
    border-radius: 5px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.2s;
}
.author-group .item .btn:hover {
    opacity: 0.8;
}
.bread-box {
}
.bread-box a {
    font-weight: 500;
    font-size: 13px;
    color: #86909C;
}
.bread-box span {
    margin: 0 5px;
}
.author-box {
    text-align: center;
    padding: 30px 20px;
    box-sizing: border-box;
}
.author-box .tit {
    font-weight: bold;
    font-size: 17px;
    color: #101010;
    text-align: left;
    margin-bottom: 24px;
}
.author-box .logo-box {
    position: relative;
    width: 87px;
    height: 87px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    margin: 0 auto;
}
.author-box .logo-box .cover {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: 10;
    top: 0;
    left: 0;
}
.author-box .logo-box .logo {
    width: 87px;
    height: 87px;
    border-radius: 50%;
    box-sizing: border-box;
}
.author-box .logo-box .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    z-index: 11;
}
.author-box .logo-box .edit {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.23);
    color: #fff;
    font-size: 12px;
    padding: 2px 0;
    box-sizing: border-box;
}
.author-box .name {
    margin: 16px 0;
    font-weight: 600;
    font-size: 18px;
    color: #101010;
    display: flex;
    align-items: center;
    justify-content: center;
}
.author-box .name img {
    width: 16px;
}
.author-box .desc {
    font-weight: 400;
    font-size: 12px;
    color: #4E5968;
    line-height: 20px;
    text-align: left;
}
.author-box .num {
    padding: 16px 0 24px 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.author-box .num .item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 400;
    font-size: 12px;
    color: #86909C;
    line-height: 12px;
}
.author-box .num .item img {
    width: 14px;
}
.author-box .num2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 65px;
    font-weight: 400;
    font-size: 12px;
    color: #86909C;
    line-height: 12px;
    border-top: 1px solid #DEE1E8;
    margin-top: 16px;
    padding-top: 16px;
}
.author-box .num2 .t {
    font-weight: 600;
    font-size: 16px;
    color: #212429;
    line-height: 16px;
    margin-bottom: 10px;
}
.author-box .btn-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.author-box .btn-box .item {
    width: 107px;
    height: 32px;
    line-height: 32px;
    background: #DEE1E8;
    font-weight: 500;
    font-size: 13px;
    color: #101010;
    border-radius: 6px;
}
.author-box .btn-box .item.active {
    background-color: #165DFF;
    color: #fff;
}
.banner-box {
    height: 340px;
    text-align: center;
    background-repeat: no-repeat;
    position: relative;
    background-size: auto 100%;
    background-position: center center;
}
.banner-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.banner-box>* {
    position: relative;
    z-index: 2;
}
.banner-box .title {
    font-weight: 600;
    font-size: 40px;
    color: #FFFFFF;
    line-height: 42px;
    padding-top: 90px;
}
.banner-box .tip {
    font-weight: 400;
    font-size: 23px;
    color: rgba(255,255,255,0.8);
    line-height: 24px;
    padding: 26px 0;
    box-sizing: border-box;
}
.banner-box .search {
    width: 884px;
    height: 56px;
    line-height: 56px;
    background: #F5F7FB;
    border-radius: 10px;
    border: 1px solid #DEE1E8;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
    position: relative;
}
.banner-box .search img {
    position: absolute;
    top: 19px;
    left: 16px;
    width: 18px;
    z-index: 2;
}
.banner-box .search input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 56px;
    outline: none;
    border: none;
    border-radius: 10px;
    padding-left: 40px;
    padding-right: 120px;
    box-sizing: border-box;
    z-index: 1;
}
.banner-box .search .btn {
    position: absolute;
    right: 8px;
    top: 6px;
    width: 100px;
    height: 42px;
    line-height: 42px;
    background: #165DFF;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    color: #FFFFFF;
    z-index: 2;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}
.banner-box .search .btn:hover {
    background-color: rgba(22, 93, 255, 0.9);
}
.rec-list {

}
.rec-list .item {
    border-bottom: 1px solid #DEE1E8;
    padding-bottom: 16px;
    margin-bottom: 16px;
    display: flex;
    /*align-items: center;*/
}
.rec-list .item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.rec-list .item .img {
    width: 83px;
    height: 65px;
    overflow: hidden;
    border-radius: 5px;
    margin-right: 7px;
    flex-shrink: 0;
}
.rec-list .item .img img {
    height: 100%;
}
.rec-list .item .tit {
    font-weight: 600;
    font-size: 13px;
    color: #212429;
    line-height: 22px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.rec-list .item .tip {
    font-weight: 400;
    font-size: 12px;
    color: #86909C;
    margin-top: 2px;
}
.rec-list .item .time {
    font-weight: 400;
    font-size: 12px;
    color: #86909C;
    line-height: 20px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.rec-list .item .time img {
    width: 14px;
}
.icon-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.icon-list .item {
    text-align: center;
    position: relative;
}
.icon-list .item img {
    width: 42px;
    height: 42px;
}
.icon-list .item .txt {
    font-weight: 500;
    font-size: 13px;
    color: #101010;
    margin-top: 5px;
}
.icon-list .item .drop-down {
    display: none;
    position: absolute;
    left: -140px;
    top: 0;
    z-index: 10;
    background: #FFFFFF;
    box-shadow: 0 20px 30px 0 rgba(134,144,156,0.21);
    border-radius: 10px;
    padding: 23px 20px 16px 20px;
    box-sizing: border-box;
}
.icon-list .item:hover .drop-down {
    display: block;
}
.icon-list.style2 {
    display: inline-block;
}
.icon-list.style2 .item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.icon-list.style2 .item:last-child {
    margin-bottom: 0;
}
.icon-list.style2 .item img {
    width: 18px;
    height: 18px;
}
.icon-list.style2 .item .txt {
    font-weight: 500;
    font-size: 14px;
    color: #101010;
    line-height: 20px;
    margin-top: 0;
    text-align: left;
}
.warn-box {
    background-color: rgba(255, 154, 46, 0.15);
    display: flex;
    align-items: flex-start;
    padding: 16px 20px;
    box-sizing: border-box;
    border-left: 4px solid #FF7D00;
    font-weight: 400;
    font-size: 14px;
    color: #4E5968;
    line-height: 22px;
}
.warn-box img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    margin-top: 3px;
}
.form-box-out {
    background: #FFFFFF;
    border-radius: 15px;
}
.form-box-out .out-body {
    display: flex;
}
.form-box-out .out-tit {
    font-weight: 600;
    font-size: 23px;
    color: #101010;
    border-bottom: 1px solid #DEE1E8;
    padding: 25px 19px;
    box-sizing: border-box;
}
.form-box-out .out-left {
    width: 885px;
    border-right: 1px solid #DEE1E8;
    box-sizing: border-box;
}
.form-box-out .out-right {
    width: 315px;
}
.form-box {
    width: 100%;
    background-color: #fff;
    border-radius: 16px;
    box-sizing: border-box;
    padding-bottom: 40px;
    display: inline-block;
}
.form-box .notice-box {
    background: #DEE1E8;
    border-radius: 9px;
    padding: 15px;
    box-sizing: border-box;
}
.form-box .notice-box .tit {
    font-weight: 500;
    font-size: 15px;
    color: #101010;
    display: flex;
    align-items: center;
    gap: 4px;
}
.form-box .notice-box .tip {
    font-size: 13px;
    color: #86909C;
    line-height: 21px;
    margin-top: 6px;
    padding-left: 28px;
}
.form-box>.title {
    font-weight: bold;
    font-size: 17px;
    color: #101010;
    margin: 20px;
    padding-left: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DEE1E8;
    position: relative;
}
.form-box>.title.nob {
    margin: 20px 20px 0 20px;
}
.form-box>.title::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 4px;
    height: 22px;
    background: #165DFF;
    left: 0;
}
.form-box .inline {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.form-box .item {
    margin-bottom: 20px;
    padding: 0 20px;
    box-sizing: border-box;
}
.form-box .item:last-child {
    margin-bottom: 0;
}
.form-box .inline .item {
    flex: 1;
    margin-bottom: 0;
}
.form-box .item .ls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DEE1E8;
    padding: 20px 0;
}
.form-box .item .ls .l {

}
.form-box .item .ls .l .t1 {
    font-weight: 500;
    font-size: 16px;
    color: #101010;
}
.form-box .item .ls .l .t2 {
    font-weight: 500;
    font-size: 12px;
    color: #86909C;
}
.form-box .item .ls .r {
    font-weight: 500;
    font-size: 14px;
    color: #165DFF;
    position: relative;
}
.form-box .item .ls .r .qrcode-box {
    position: absolute;
    padding: 15px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 10px;
    right: -15px;
    z-index: 10;
    display: none;
}
.form-box .item .ls .r:hover .qrcode-box {
    display: block;
}
.form-box .item .label {
    font-size: 14px;
    color: #101010;
    font-weight: 500;
}
.form-box .item .value {
    margin-top: 10px;
    position: relative;
}
.form-box .item .value p {
    font-weight: 400;
    font-size: 11px;
    color: #4E5968;
    margin-top: 5px;
    line-height: 21px;
}
.form-box .item .value .input {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #DEE1E8;
    box-sizing: border-box;
}
.form-box .item .value .s-btn {
    font-size: 13px;
    color: #666;
    position: absolute;
    right: 10px;
    top: 20px;
    cursor: pointer;
}
.form-box .item .value .t-btn {
    font-size: 13px;
    color: #666;
    position: absolute;
    right: 4px;
    top: 3px;
    cursor: pointer;
}
.form-box .item .value .t-btn img {
    border-radius: 0;
}
.form-box .item .value .input.small {
    height: 35px;
    /*line-height: 36px;*/
}
.form-box .item .value .input input {
    width: 100%;
    height: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    outline: none;
    border: none;
    border-radius: 8px;
}
.form-box .item .value .select {
    height: 45px;
    border-radius: 8px;
    border: 1px solid #DEE1E8;
    padding-right: 16px;
    box-sizing: border-box;
}
.form-box .item .value .select select {
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
    box-sizing: border-box;
    padding: 0 10px;
}
.form-box .item .value .text {
    height: 150px;
    border-radius: 8px;
    border: 1px solid #DEE1E8;
    box-sizing: border-box;
}
.form-box .item .value .text textarea {
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    outline: none;
    border: none;
    border-radius: 8px;
}
.form-box .item .btn-box {
    gap: 10px;
}
.form-box .item .btn-box .btn {
    width: 100%;
    height: 47px;
    line-height: 48px;
    border: 1px solid #DEE1E8;
    border-radius: 9px;
    font-weight: 600;
    font-size: 15px;
    color: #202020;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.form-box .item .btn-box .btn:hover {
    background: #f6f4f4;
}
.form-box .item .btn-box .btn.active {
    background: #165DFF;
    color: #FFFFFF;
}
.form-box .item .btn-box .btn.active:hover {
    background: #064ff5;
}
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 20px;
}

.switch label::before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input[type=checkbox]:checked + label {
    background-color: #165DFF;
}

input[type=checkbox]:checked + label::before {
    transform: translateX(20px);
}
.raido-group {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.raido-group label {
    cursor: pointer;
    margin-right: 20px;
    font-weight: 500;
    font-size: 12px;
    color: #202020;
}
.raido-group label::after {
    content: '';
    margin-left: 5px;
}
.raido-group input[type="radio"] {
    margin-right: 5px;
}
.raido-group input[type="radio"]:checked + label {
    color: #165DFF;
}

.form-box .item .agree {
    font-weight: 500;
    font-size: 14px;
    color: #101010;
    line-height: 14px;
    display: flex;
    align-items: center;
}
.form-box .item .agree img {
    width: 18px;
    margin-right: 6px;
}
.form-box .item .agree a {
    color: #165DFF;
}
.form-box .item .qrcode {
    text-align: center;
}
.form-box .item .qrcode .img {
    width: 158px;
    height: 158px;
    background-color: rgba(222, 225, 232,0.39);
    padding: 15px;
    box-sizing: border-box;
    margin: 0 auto;
}
.form-box .item .qrcode img {
    width: 100%;
}
.form-box .item .qrcode .t1 {
    font-weight: 500;
    font-size: 14px;
    color: #101010;
    line-height: 24px;
    margin-top: 16px;
    margin-bottom: 4px;
}
.form-box .item .qrcode .t1 span {
    color: #F54343;
}
.form-box .item .qrcode .t2 {
    font-weight: 400;
    font-size: 12px;
    color: #101010;
    line-height: 20px;
}
.bar-menu {
    height: 56px;
    line-height: 56px;
    border-bottom: 1px solid #DEE1E8;
    display: flex;
    gap: 40px;
}
.bar-menu .item {
    font-weight: 500;
    font-size: 14px;
    color: #86909C;
    position: relative;
}
.bar-menu .item.active {
    font-weight: 600;
    color: #101010;
}
.bar-menu .item.active:after {
    position: absolute;
    content: '';
    width: 50%;
    height: 2px;
    background-color: #101010;
    display: inline-block;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.bar-menu .item:hover {
    color: #3b3a3a;
}
.button-menu {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E8EAEF;
    padding-bottom: 16px;
}
.button-menu .item {
    min-width: 80px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    color: #86909C;
}
.button-menu .item.active {
    background-color: #165DFF;
    color: #fff;
    border-radius: 16px;
}
.button-menu .item:hover {
    color: #3b3a3a;
}
.button-menu .item.active:hover {
    color: #fff;
}
.no-data {
    text-align: center;
    padding-top: 140px;
    padding-bottom: 250px;
}
.no-data img {
    width: 134px;
    margin-bottom: 16px;
}
.the-list {
    display: flex;
    gap: 20px;
    position: relative;
}
.the-list img {
    width: 63px;
    height: 63px;
}
.the-list .circle {
    border-radius: 50%;
}
.the-list .tit {
    font-weight: 600;
    font-size: 21px;
    color: #101010;
}
.the-list .sub-tit {
    font-weight: 500;
    font-size: 13px;
    color: #101010;
    margin-top: 8px;
}
.the-list .tip {
    font-weight: 400;
    font-size: 12px;
    color: #4E5968;
    line-height: 18px;
    margin-top: 8px;
}
.the-list .btn {
    height: 30px;
    line-height: 30px;
    background: #165DFF;
    border-radius: 6px;
    font-weight: 500;
    font-size: 13px;
    color: #FFFFFF;
    padding: 0 15px;
    position: absolute;
    right: 0;
    top: 10px;
    cursor: pointer;
}
.the-list .btn:hover {
    background-color: #0c4cdc;
}
.video-box {
    border-radius: 5px;
    overflow: hidden;
}
.video-box video {
    max-height: 450px;
}
.search-box-2 {
    height: 53px;
    background: #FFFFFF;
    border-radius: 9px;
    border: 2px solid #165DFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.search-box-2.noborder {
    border: 2px solid #fff;
}
.search-box-2 .input-box {
    font-weight: 500;
    font-size: 15px;
    color: #101010;
    width: 100%;
}
.search-box-2 .input-box input {
    outline: none;
    border: none;
    padding-left: 15px;
    box-sizing: border-box;
    width: 100%;
}
.search-box-2 .btn {
    height: 40px;
    line-height: 40px;
    background: #165DFF;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    color: #FFFFFF;
    padding: 0 30px;
    margin-right: 8px;
    flex-shrink: 0;
    border: none;
}
.hot-word {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.hot-word .item {
    font-weight: 400;
    font-size: 13px;
    color: #4E5968;
    white-space: nowrap;
}
.hot-word .item.active {
    font-weight: 500;
    font-size: 13px;
    color: #101010;
}
.hot-word a:hover {
    color: #000;
}
.footer-more {
    text-align: center;
}
.footer-more a {
    font-weight: 500;
    font-size: 13px;
    color: #165DFF;
}
.footer-more a:hover {
    color: #0b44c4;
}
.publish-pic {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F7FB;
    border-radius: 8px;
    border: 1px solid #DEE1E8;
    cursor: pointer;
    overflow: hidden;
}
.publish-pic.size21 {
    height: 120px;
}
.publish-pic.size11 {
    height: 277px;
}
.publish-pic .logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.publish-pic .ico {
    width: 23px;
    margin-right: 6px;
}
.catelogue-list {

}
.catelogue-list.style1 {
    margin-left: -20px;
    margin-right: -20px;
}
.catelogue-list .item {
    display: flex;
    gap: 9px;
    border-bottom: 1px solid #DEE1E8;
    padding: 15px 0;
    box-sizing: border-box;
}
.catelogue-list.style1 .item {
    padding: 15px 20px;
    box-sizing: border-box;
}
.catelogue-list .item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    /*padding-bottom: 0;*/
}
.catelogue-list .item .num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    background-color: #DEE1E8;
    color: #333;
    border-radius: 50%;
    flex-shrink: 0;
}
.catelogue-list .item.active {
    background-color: rgba(22, 93, 255, 0.06);
    border-bottom: none;
}
.catelogue-list .item.active .num {
    background-color: #165DFF;
    color: #fff;
}
.catelogue-list .item .b {

}
.catelogue-list .item .b .tit {
    font-weight: 600;
    font-size: 15px;
    color: #212429;
}
.catelogue-list .item .b .time {
    font-weight: 400;
    font-size: 13px;
    color: #86909C;
    display: flex;
    align-items: center;
    line-height: 1;
    margin-top: 6px;
}
.catelogue-list .item .b .time img {
    width: 15px;
    margin-right: 2px;
}
.img-bk {
    position: relative;
}
.img-bk img {
    width: 100%;
    cursor: pointer;
}
.img-bk .icon {
    position: absolute;
    width: 80px;
    height: 80px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.img-bk .mask {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
}
