body {
    min-width: 1300px;
    margin: 0;
    padding: 0;
}

[v-cloak] {
    display: none;
}

/* 顶部 */
.header {
    height: 80px;
    padding-top: 18px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    min-width: 1080px;
    position: relative;
    z-index: 100;
    box-sizing: border-box;
}

.header * {
    margin: 0;
    padding: 0;
    box-sizing: content-box;
}

.header .logo {
    /*width: 31px;*/
    height: 70px;
    /*margin-right: 4px;*/
    /*padding-left: 20px;*/
    /*vertical-align: top;*/
    flex-shrink: 0;
    box-sizing: content-box;
}

.header .title_box {
    margin-left: 4px;
    flex-shrink: 0;
}

.header .title_box .logo_title {
    font-size: 16px;
    font-weight: 800;
    line-height: 16px;
    margin-top: 0;
}

.header .title_box .message {
    font-size: 10px;
    line-height: 10px;
    margin-top: 3px;
}

.header .tab_box {
    display: flex;
    align-items: center;
    margin-left: 43px;
    flex-shrink: 0;
    position: relative;
}

.header .tab_box .tab {
    margin-left: 20px;
    position: relative;
    font-size: 14px;
    color: #666666;
    line-height: 21px;
    cursor: pointer;
}

.header .tab_box .tab:first-child {
    margin-left: 0;
}

.header .tab_box .tab.active {
    font-weight: bold;
}

.header .tab_box .tab .hot {
    position: absolute;
    width: 35px;
    height: 15px;
    top: -17px;
    right: -7px;
    margin-top: 0;
}

.header .search_box {
    flex: 1;
    height: 46px;
    background: #F7F9F9;
    border-radius: 24px;
    border: 1px solid #E3E6E8;
    margin-left: 35px;
    display: flex;
    align-items: center;
    padding: 0 18px;
}

.header .search_box #search-form {
    display: flex;
}

.header .search_box .icon {
    width: 14px;
    height: 14px;
    margin-right: 6px;
}

.header .search_box input {
    flex: 1;
    height: 100%;
    border: none;
    font-size: 13px;
    line-height: 20px;
}

.header .search_box input::placeholder {
    color: #A2A2A2;
}

.header .btn_start {
    width: 120px;
    height: 48px;
    margin-left: 20px;
    border-radius: 48px;
    background: #7048D9;
    color: #FFFFFF;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header .btn_start .icon {
    width: 16px;
    height: 16px;
    margin-right: 7px;
}

.header .info_box {
    width: 96px;
    height: 48px;
    margin-left: 20px;
    border-radius: 48px;
    background: #F4F4F4;
    color: #999999;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.header .info_box .icon {
    width: 20px;
    height: 20px;
    margin-right: 4px;
}

.header .info_box .avatar {
    width: 36px;
    height: 36px;
    margin-right: 9px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    object-fit: contain;
    object-position: center;
    cursor: pointer;
}

.header .info_box .logout {
    font-size: 12px;
    color: #666666;
}

.header .personal-btn {
    flex-shrink:0;
    width: 80px;
    text-align: center;
    margin-left: 10px;
    font-size: 12px;
    height: 30px;
    line-height: 30px;
    background-color: #7A67F3;
    color: #fff;
    border-radius: 15px;
}

.header .function_box {
    border-left: 1px solid #D8D8D8;
    padding: 0 19px 0 26px;
    margin-left: 16px;
    display: flex;
    width: 180px;
    justify-content: space-between;
    align-items: center;
    height: 22px;
    flex-shrink: 0;
}

.header .function_box .icon1 {
    width: 21px;
    height: 19px;
}

.header .function_box .icon2 {
    width: 15px;
    height: 20px;
}

.header .function_box .icon3 {
    width: 20px;
    height: 19px;
}

.header .function_box .icon4 {
    width: 19px;
    height: 18px;
}

/* 个人信息弹框 */
.popup_box {
    position: absolute;
    top: 58px;
    right: 48px;
    padding: 20px 20px 0;
    background: #FFFFFF;
    box-shadow: 0 10px 24px 0 rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    border: 1px solid #F6F6F6;
    z-index: 1001;
    width: 324px;
    /*box-sizing: n;*/
}

.popup_box .userInfo {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.popup_box .userInfo .avatar {
    width: 46px;
    height: 46px;
}

.popup_box .userInfo .name_box .name {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
}

.popup_box .userInfo .name_box .name .arrow {
    margin-left: 7px;
    width: 6px;
    height: 10px;
}

.popup_box .userInfo .name_box .role_box {
    display: flex;
}

.popup_box .userInfo .name_box .role_box .role {
    padding: 0 4px;
    border-radius: 4px;
    background: #F7F2EC;
    margin-top: 4px;
    font-size: 14px;
    color: #B8855A;
    line-height: 20px;
}

.popup_box .item_box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.popup_box .item_box .item {
    width: 68px;
    text-align: center;
}

.popup_box .item_box .item .value {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    line-height: 22px;
    margin-bottom: 4px;
}

.popup_box .item_box .item .label {
    font-size: 12px;
    color: #666666;
    line-height: 17px;
}

.popup_box .item_box .item .icon_1 {
    width: 14px;
    height: 19px;
    margin-bottom: 5px;
}

.popup_box .item_box .item .icon_2 {
    width: 16px;
    height: 16px;
    margin-bottom: 6px;
}

.popup_box .item_box .item .icon_3 {
    width: 18px;
    height: 16px;
    margin-bottom: 6px;
}

.popup_box .item_box .item .icon_4 {
    width: 18px;
    height: 18px;
    margin-bottom: 5px;
}

.popup_box .title {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    line-height: 20px;
    margin-bottom: 10px;
}

.popup_box .notice_cell {
    height: 37px;
    border-radius: 2px;
    line-height: 37px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 500;
    color: #666666;
    padding: 0 7px;
}

.popup_box .notice_cell:hover {
    background: #F5F1FF;
}

.popup_box .more_btn {
    padding: 12px 0;
    text-align: center;
    border-top: 1px solid #EFEFEF;
    font-size: 14px;
    color: #999999;
    line-height: 20px;
}

/* 选择分类弹框 */
.popup_box.sort {
    width: 900px;
    left: 0;
    top: 34px;
    padding: 0;
    display: flex;
    background: transparent;
}

.popup_box.sort .sort_left {
    width: 160px;
    background: #F6F6F6;
    border-radius: 18px 0 0 18px;
    padding: 10px;
    max-height: calc(100vh - 160px);
    overflow: auto;
    flex-shrink: 0;
}

.popup_box.sort .sort_left .sort_item {
    margin: 0;
    padding: 12px 20px 13px;
    font-size: 14px;
    color: #222222;
    line-height: 20px;
    cursor: pointer;
    display: block;
}

/*.popup_box.sort .sort_left .sort_item:hover,*/
.popup_box.sort .sort_left .sort_item.active {
    background: #7048D9;
    border-radius: 10px;
    color: #FFFFFF;
}

.popup_box.sort .sort_right {
    background: #FFFFFF;
    border-radius: 0 20px 20px 0;
    padding: 0 30px;
    flex: 1;
}

.popup_box.sort .sort_right .sort_right_title {
    padding: 30px 0 25px;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #222222;
    line-height: 25px;
}

.popup_box.sort .sort_right .sort_right_title .icon {
    width: 45px;
    height: 45px;
    margin-right: 8px;
    object-position: center;
    object-fit: contain;
}

.popup_box.sort .sort_right .sort_sub_box {
    height: calc(100% - 115px);
    min-height: 326px;
    padding-bottom: 14px;
}

.popup_box.sort .sort_right .sort_sub_box .sort_sub_left {
    height: 100%;
    overflow-y: auto;
    border-right: 1px solid #D8D8D8;
    width: 150px;
    float: left;
}

.popup_box.sort .sort_right .sort_sub_box .sort_sub_left .sort_sub_left_label {
    height: 45px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #222222;
    line-height: 20px;
    cursor: pointer;
}

.popup_box.sort .sort_right .sort_sub_box .sort_sub_left .sort_sub_left_label:hover,
.popup_box.sort .sort_right .sort_sub_box .sort_sub_left .sort_sub_left_label.active {
    font-weight: 500;
    color: #7048D9;
}

.popup_box.sort .sort_right .sort_sub_box .sort_sub_right .sort_sub_right_box {
    display: flex;
    flex-wrap: wrap;
    padding: 0 30px;
}

.popup_box.sort .sort_right .sort_sub_box .sort_sub_right .sort_sub_right_box .sort_sub_right_label {
    cursor: pointer;
    width: 191px;
    height: 45px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #222222;
    line-height: 20px;
}

/* 底部 */
.footer {
    height: 349px;
    width: 100%;
    background: #141524;
}

.footer .footer_main {
    margin: 0 auto;
    width: 1080px;
    padding-top: 43px;
}

.footer .footer_main .top_box {
    display: flex;
    justify-content: space-between;
}

.footer .footer_main .top_box .item_box {
    display: flex;
}

.footer .footer_main .top_box .item_box .item {
    width: 148px;
}

.footer .footer_main .top_box .item_box .item .title {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 22px;
    margin-bottom: 12px;
}

.footer .footer_main .top_box .item_box .item .link {
    font-size: 14px;
    color: #777777;
    line-height: 24px;
    display: block;
    cursor: pointer;
}

.footer .footer_main .top_box .item_box .item:last-child {
    width: auto;
}

.footer .footer_main .top_box .item_box .item .phone {
    font-size: 30px;
    font-family: DINAlternate-Bold, DINAlternate, serif;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 24px;
    margin-bottom: 7px;
}

.footer .footer_main .top_box .code_box {
    display: flex;
}

.footer .footer_main .top_box .code_box .item {
    margin-left: 30px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 17px;
}

.footer .footer_main .top_box .code_box .item .code {
    width: 88px;
    height: 88px;
    margin-bottom: 9px;
}

.footer .footer_main .bottom_box {
    margin-top: 107px;
    text-align: center;
}

.footer .footer_main .bottom_box .message,
.footer .footer_main .bottom_box .message a {
    font-size: 14px;
    color: #666666;
    line-height: 24px;
}

.footer .footer_main .bottom_box .message .line {
    margin: 0 20px;
}

/* 输入框 */
.input_box {
    display: flex;
    align-items: center;
    height: 50px;
    border: 1px solid #D6D6D6;
    border-radius: 4px;
    padding: 0 15px;
    width: 250px;
}

.input_box.error {
    border: 1px solid #E91A56;
}

.input_error_message {
    font-size: 14px;
    color: #E91A56;
    line-height: 20px;
    padding: 10px 0 0 0;
}

/* 分页 */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0 60px;
}

.pagination .item {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 14px;
    color: rgba(0, 0, 0, 0.65);
    line-height: 22px;
    margin-right: 8px;
    border-radius: 2px;
}

.pagination .item.stop {
    pointer-events: none
}

.pagination .item.active {
    background: #7048D9;
    color: #FFFFFF;
    border: 1px solid #7048D9;
    pointer-events: none
}

.pagination .item .arrow {
    width: 9px;
    height: 12px;
}

.pagination .ellipsis {
    width: 17px;
    height: 3px;
    margin-right: 8px;
}


/* 轮播图 */
.banner_box {
    width: 100%;
    height: 340px;
    margin-top: 20px;
}

.banner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.banner .item-list {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.banner.slide3d .item-list li {
    width: 1080px;
    height: 340px;
    transition: all 0.5s ease-out;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.banner.slide2d .item-list li {
    width: 1080px;
    height: 340px;
    transition: all 0.5s ease-out;
    position: absolute;
    top: 0;
    left: 0;
}

.banner .item-list .item-content {
    width: 100%;
    height: 100%;
}

.banner .item-list .item-content a {
    display: block;
    width: 100%;
    height: 100%;
}

.banner .item-list .item-content a .cover-img {
    width: 100%;
    height: 100%;
    /*object-position: center;*/
    /*object-fit: cover;*/
    border-radius: 18px;
}

.banner .count {
    position: absolute;
    z-index: 1;
    right: 20px;
    bottom: -150px;
    width: 35px;
    height: 22px;
    border-radius: 22px;
    text-align: center;
    line-height: 22px;
    background: rgba(0, 0, 0, 0.7);
    font-size: 12px;
    color: #FFFFFF;
}

.banner .arrows {
    position: absolute;
    width: 1080px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}

.banner .arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
}

.banner .arrow img {
    width: 100%;
    height: 100%;
}

.banner .arrow.arrow-r {
    right: 20px;
}


.banner .arrow.arrow-l {
    left: 20px;
}

.banner .mask {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* 页面右侧众筹浮框 */
.crowd_right {
    float: right;
    width: 258px;
    background: #F5F1FF;
    border-radius: 10px;
}

.crowd_right .right_bcg {
    border-radius: 10px 10px 0 0;
    padding: 15px 0 20px;
    position: relative;
}

.crowd_right .right_bcg .bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #7048D9 0%, #F5F1FF 100%);
    border-radius: 10px 10px 0 0;
    height: 167px;
}

.crowd_right .right_top {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
    margin-left: 15px;
    position: relative;
}

.crowd_right .right_main_top {
    position: relative;
    flex-direction: column;
    height: 349px;
    background: #FFFFFF;
    border-radius: 10px;
    margin: 0 12px 10px;
    padding: 11px;
    display: block;
}

.crowd_right .right_main_top:first-child {
    margin-top: 17px;
}

.crowd_right .right_main_top:last-child {
    margin-bottom: 0;
}

/* 图片 */
.crowd_right .right_main_top_img {
    position: relative;
    width: 210px;
    height: 210px;
    /*background: #D8D8D8;*/
    border-radius: 10px;
    overflow: hidden;
}

.crowd_right .right_main_top_img_image {
    width: 100%;
}

/* 图片中的价格 */
.crowd_right .right_main_top_img_price {
    display: flex;
    position: absolute;
    bottom: 0;
    width: 210px;
    height: 30px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 0px 0px 10px 10px;
}

/* 总价格 */
.crowd_right .right_main_top_img_price_toal {
    margin-top: 7px;
    margin-left: 12px;
    height: 16px;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 16px;
}

.crowd_right .right_main_top_img_price_toal span {
    margin-right: 5px;
}

/* 众筹后的价格 */
.crowd_right .right_main_top_img_price_discountPrice {
    margin: 6px 0px 9px 1px;
    height: 12px;
    font-size: 12px;
    color: #FFFFFF;
}

/* 文字 */
.crowd_right .right_main_top_text {
    padding-top: 10px;
    width: 210px;
    height: 48px;
    font-size: 14px;
    color: #000000;
    /* 溢出内容隐藏 */
    overflow: hidden;
    /* 文本溢出部分用省略号表示 */
    text-overflow: ellipsis;
    /* 特别显示模式 */
    display: -webkit-box;
    /* 行数 */
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* 盒子中内容竖直排列 */
    -webkit-box-orient: vertical;
}

/* 公司名称 */
.crowd_right .right_main_top_corporate {
    margin-top: 12px;
    /* width: 146px; */
    display: inline-block;
    padding: 0px 6px;
    background: #F3F1F1;
    border-radius: 9px;
    text-align: center;
    line-height: 18px;
}

.crowd_right .right_main_top_corporate span {
    font-size: 12px;
    color: #999999;
}

/* 头像 */
.crowd_right .right_main_top_bottom {
    /* display: flex; */
    /* flex-direction: row; */
    /* margin-top: 30px; */
    /* width: 120px; */
    margin-top: 12px;
    height: 22px;
    /* flex-wrap: nowrap; */
    /* ps */
    /* background-color: #7048D9; */
    display: flex;
}

.crowd_right .right_main__top_bottom_image {
    /*width: 62px;*/
    /*background-color: red;*/
    /*position: relative;*/
    /*margin-right: 67px;*/
    display: flex;
    align-items: center;
    padding-left: 8px;
}

.crowd_right .right_main__top_bottom_image div img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-left: -8px;
}

/*.crowd_right .right_main__top_bottom_image div:nth-child(1) {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    border-radius: 50%;*/
/*    border: 1px solid #FFFFFF;*/
/*    !* ps *!*/
/*    !*background-color: aqua;*!*/
/*}*/

/*.crowd_right .right_main__top_bottom_image div:nth-child(2) {*/
/*    position: absolute;*/
/*    left: 16px;*/
/*    border-radius: 50%;*/
/*    border: 1px solid #FFFFFF;*/
/*    !* ps *!*/
/*    !*background-color: orange;*!*/
/*}*/

/*.crowd_right .right_main__top_bottom_image div:nth-child(3) {*/
/*    position: absolute;*/
/*    left: 33px;*/
/*    border-radius: 50%;*/
/*    border: 1px solid #FFFFFF;*/
/*    !* ps *!*/
/*    !*background-color: #666666;*!*/
/*}*/

/*.crowd_right .right_main__top_bottom_image div:nth-child(1),*/
/*.crowd_right .right_main__top_bottom_image div:nth-child(2),*/
/*.crowd_right .right_main__top_bottom_image div:nth-child(3) {*/
/*    width: 22px;*/
/*    height: 22px;*/
/*    !*overflow: hidden;*!*/
/*}*/

/*.crowd_right .right_main__top_bottom_image div:nth-child(1) img,*/
/*.crowd_right .right_main__top_bottom_image div:nth-child(2) img,*/
/*.crowd_right .right_main__top_bottom_image div:nth-child(3) img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    border-radius: 50%;*/
/*}*/

/* 支持者人数 */
.crowd_right .right_main_top_bottom_textZhichizhe {
    display: flex;
    flex: 1;
    justify-content: flex-start;
    margin-left: 5px;
    word-break: keep-all;
    width: 50px;
    font-size: 12px;
    color: #777777;
    line-height: 22px;
}

.crowd_right .right-progress {
    font-size: 12px;
    color: #777777;
    line-height: 22px;
}

/* 支持进度 */
.crowd_right .right_main_top_bottom_jinDu {
    margin-left: 31px;
}

/* 底部更多详情 */
.crowd_right .right_bottom {
    display: block;
    margin-left: 101px;
    margin-top: 20px;
    color: #7048D9;
    font-size: 12px;
}

.crowd_right .right_bottom img {
    padding-top: 1px;
    margin-left: 2px;
    width: 6px;
    height: 10px;
    color: #7048D9;
}

.no-data-list {
    text-align: center;
    font-size: 22px;
    padding: 40px;
    color: #999;
}

.no-page-data {
    padding: 100px 50px;
    text-align: center;
    font-size: 18px;
    color: #999;
}

.no-page-data div {
    padding: 10px;
}

.no-page-data img {
    width: 100px;
}

.one-line {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.two-line {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.three-line {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.xc-page-box {
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}
