.Page {
    min-height: 100vh;
    min-width: 1440px;
    display: flex;
    flex-direction: column;
}

/* 头部 */
.layout_header {
    position: sticky;
    top: 0;
    z-index: 999;
    height: 78px;
    background: #FFFFFF;
    border-bottom: 1px solid #E8E9EB;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}
.header_main {
    min-width: 1200px;
    width: 90%;
    background: #ffffff;
    padding: 0 24px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_main .l {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.header_main .tvlogo{
    color: #131313;
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 16px;
    text-align: center;
    margin-top: 4px;
    letter-spacing: 0px;
    margin-left: 16px;
}
.header_main .r {
    flex: 0 0 280px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}
.header_main .carmulogo {
    height: 20px;
    font-size: 20px;
    color: #131212;
}
.header_main .search {
    position: relative;
    z-index: 1;
    margin-left: 64px;
    width: 400px;
    height: 40px;
    padding-right: 86px;
    border: 1px solid #264AFF;
    border-radius: 3px;
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    transition: .5s;
}
.header_main .search.active {
    box-shadow: 0px 0px 0px 2px #DEE8FA;
}
.header_main .search input {
    height: 100%;
    background: none;
    padding: 0 12px;
    border: none;
    flex-grow: 1;
}
.header_main .search input::placeholder {
    color: #8D8E99;
}
.header_main .search i {
    margin: 0 12px;
    font-size: 14px;
    color: #131212;
    cursor: pointer;
    display: none;
}
.header_main .search i:hover {
    opacity: 0.65;
}
.header_main .search button {
    position: absolute;
    width: 86px;
    height: 38px;
    line-height: 38px;
    top: 0;
    right: -1px;
    background: #264AFF;
    border-radius: 0 3px 3px 0;
    font-size: 16px;
    text-align: center;
    color: #FFFFFF;
}
.header_main .search .searchList {
    position: absolute;
    left: -1px;
    top: 48px;
    z-index: 1;
    width: 400px;
    max-height: 376px;
    padding: 8px 0 8px 8px;
    background: #FFFFFF;
    border-radius: 3px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.08), 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
    box-sizing: border-box;
    display: none;
    overflow-x: hidden;
    overflow-y: scroll;
    flex-direction: column;
}
.header_main .search .searchList::-webkit-scrollbar {
    width: 15px;
}
.header_main .search .searchList:hover::-webkit-scrollbar-thumb {
    width: 5px;
    background: #8D8E99;
    border-radius: 15px;
    border: 5px solid #FFFFFF;
}
.header_main .search .searchList .item {
    height: 36px;
    line-height: 36px;
    padding: 0 8px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    word-break: break-all;
}
.header_main .search .searchList .item:hover {
    background: #DEE8FA;
    border-radius: 3px;
}
.header_main .search .searchList .item span {
    color: #264AFF;
}
.header_main .search .searchList .aa::-webkit-scrollbar-track {
    background: #E8E9EB;
    border-radius: 6px;
}
.header_main .tab {
    margin-left: 92px;
    display: flex;
    flex-direction: row;
}
.header_main .tab a {
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
    margin-right: 40px;
    height: 54px;
    font-size: 16px;
    color: #5E5E66;
    display: flex;
    align-items: center;
}
.header_main .tab a:hover {
    color: #264AFF;
}
.header_main .tab a.active {
    font-weight: bold;
    color: #264AFF;
}
.header_main .tab a .line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #264AFF;
    border-radius: 2px;
    display: none;
}
.header_main .tab a.active .line {
    display: block;
}
.header_main .tab a span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    word-break: break-all;
}
.header_main .message,
.header_main .user {
    position: relative;
    z-index: 1;
    margin-right: 24px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.header_main .message i {
    font-size: 16px;
    color: #8D8E99;
}
.header_main .user i {
    font-size: 16px;
    color: #8D8E99;
    transition: all 0.5s;
}
.header_main .user.active span {
    color: #264AFF;
}
.header_main .user.active .carmuarrowDown {
    color: #264AFF;
    transform: rotateZ(180deg);
}
.header_main .user_name {
    margin-left: 8px;
    max-width: 120px;
    height: 40px;
    font-size: 12px;
    color: #5E5E66;
    display: flex;
    align-items: center;
}
.header_main .user_name span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    word-break: break-all;
}
.header_main .user_list {
    position: absolute;
    right: 0;
    top: 40px;
    z-index: 2000;
    min-width: 128px;
    padding: 8px;
    background: #FFFFFF;
    border-radius: 3px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.08), 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
    box-sizing: border-box;
    overflow: hidden;
    display: none;
    opacity: 0;
    flex-direction: column;
}
.header_main .user_list a {
    height: 36px;
    line-height: 36px;
    padding: 0 8px;
    border-radius: 3px;
    font-size: 14px;
    color: #131212;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}
.header_main .user_list a:hover {
    background: #DEE8FA;
}
.header_main .service {
    width: 88px;
    height: 32px;
    background: #FFFFFF;
    border: 1px solid #264AFF;
    border-radius: 3px;
    font-size: 14px;
    color: #264AFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* 尾部 */
.layout_footer {
    width: 100%;
    min-width: 1200px;
    background: #333333;
    padding: 48px 0;
    display: flex;
    justify-content: center;
}
.footer_main {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: #FFFFFF;
}
.footer_main .nav {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.footer_main .content{
    display: flex;
    margin-bottom: 50px;
}
.footer_main .content .logoRoom{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 280px;

}

.footer_main .content .logoRoom .ic_logo{
    width: 96px;
    height: 20px;
}

.footer_main .content .logoRoom .desc{
   font-size: 14px;
   color: #fff;
   margin-top: 12px;
}
.footer_main .content .emailRoom{
    display: flex;
    justify-content: center;
}
.footer_main .content .emailRoom .ic_email{
    width: 50px;
    height: 50px;
}
.footer_main .content .emailRoom .textRoom{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 6px;
}
.footer_main .content .emailRoom .textRoom .text{
    font-size: 14px;
}
.footer_main .content .emailRoom .textRoom .email{
    font-size: 14px;
    margin-top: 4px;
}
.footer_main .nav .logo {
}
.footer_main .nav .tel,
.footer_main .nav .download {
    margin-right: 64px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.footer_main .nav .tel i,
.footer_main .nav .download i {
    margin-right: 6px;
    font-size: 18px;
    font-weight: normal;
}
.footer_main .nav .link {
    font-size: 14px;
    font-weight: bold;
}
.footer_main .nav .link a {
    margin-right: 64px;
}
.footer_main .nav .link a:last-child {
    margin-right: 0;
}
.footer_main a{
    text-decoration: underline;
}
.footer_main .icp {
    margin-top: 40px;
    color: #B0B1B8;
    font-size: 12px;
      text-decoration: none;
}
.footer_main .icp span {
    margin-left: 24px;
}

/* 中间 */
.layout_default_main {
    margin: 0 auto;
    width: 1200px;
    /* padding-bottom: 100px; */
    /* background: url('../img/index/index_bg.png') top center no-repeat; */

    background-size: contain;
    /* height: 300px; */
}
.layout_main {
    margin: 0 auto;
    width: 1200px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
}

/* 消息 */
.layout_message {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1;
    width: 240px;
    height: 40px;
    padding: 11px 12px;
    background: #FFFFFF;
    border-radius: 3px;
    border: 1px solid #D3D4D6;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.layout_message .carmumessage {
    position: relative;
    z-index: 1;
    margin-right: 6px;
    color: #5E5E66;
    font-size: 16px;
}
.layout_message .carmumessage span {
    position: absolute;
    right: -3px;
    bottom: 0;
    z-index: 1;
    width: 7px;
    height: 7px;
    background: #06BF7F;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    box-sizing: border-box;
}
.layout_message .text {
    color: #5E5E66;
    font-size: 16px;
}
.layout_message .number {
    margin-left: 6px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #F01D24;
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
.layout_message .carmuarrowDown {
    position: absolute;
    right: 0;
    font-size: 16px;
    color: #131212;
    transform: rotateZ(180deg);
}

/* 一次性弹框 */
.layout_once {
    position: fixed;
    right: 16px;
    bottom: 62px;
    z-index: 1;
    width: 360px;
    padding: 16px;
    background: #FFFFFF;
    border-radius: 3px;
    border: 1px solid #D3D4D6;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.layout_once .img {
    flex: 0 0 48px;
    margin-right: 16px;
    width: 48px;
    height: 48px;
    background: url('../img/logo.png') left top / 100% 100% no-repeat;
}
.layout_once p {
    line-height: 22px;
    font-size: 14px;
    color: #5E5E66;
}

/* 返回顶部按钮 */
.layout_top {
    position: fixed;
    right: 16px;
    bottom: 196px;
    z-index: 1;
    height: 56px;
    padding: 0 10px;
    background: rgba(0, 0, 0, .4);
    border-radius: 3px;
    box-sizing: border-box;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.layout_top i {
    font-size: 24px;
    color: #FFFFFF;
    transform: rotateZ(180deg);
}
.layout_top span {
    font-size: 14px;
    color: #FFFFFF;
}

/* 小标题 */
.layout_title {
    height: 28px;
    display: flex;
    justify-content:space-between;
    align-items: center;
}
.layout_title .l {
    display: flex;
    align-items: center;
}
.layout_title .l h2 {
    font-size: 22px;
    font-weight: bold;
}
.layout_title .l i {
    margin-left: 18px;
    font-size: 16px;
    color: #5E5E66;
}
.layout_title .l span {
    margin-left: 4px;
    font-size: 14px;
    font-weight: bold;
    color: #5E5E66;
}
.layout_title .more {
    font-size: 14px;
    color: #264aff;
    display: flex;
    align-items: center;
}
.layout_title .more:hover {
    color: #264AFF;
}
.layout_title .more i {
    font-size: 16px;
    color: #264aff;
}

/* 黑色蒙版 */
.layout_masking {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .45);
    display: none;
}

/* 左右布局 */
.layout_row {
    display: flex;
    justify-content: space-between;
}
.layout_left {
    width: 790px;
}
.layout_right {
    width: 394px;
}

/* tabs切换 */
.tabs {
    position: relative;
    z-index: 1;
    height: 44px;
    /* border-bottom: 1px solid #E8E9EB; */
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.tabs .tab {
    height: 100%;
    color: #5E5E66;
    cursor: pointer;
    display: flex;
    margin-right: 20px;
    align-items: center;
    font-size: 14px;
}
.tabs .tab.active {
    color: #264AFF;
    font-weight: bold;
}
.tabs i {
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 2px;
    background: #264AFF;
}
.tabBox {
    display: none;
}

/* select选择器 */
.layout_select {
    position: relative;
    z-index: 2;
    left: 0;
    top: 0;
}
.layout_select .selectItem {
    position: relative;
    /* z-index: 1; */
    margin-right: 16px;
    width: 320px;
}
.layout_select .selectItem.width_186 {
    width: 185.6px;
}
.layout_select .selectItem input {
    width: 100%;
    height: 48px;
    padding: 0 36px 0 12px;
    background: #FAFAFA;
    border-radius: 3px;
    border: 1px solid #D3D4D6;
    color: #8D8E99;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: .5s;
}
.layout_select .selectItem.isValue input {
    border: 1px solid #264AFF;
    box-shadow: 0px 0px 0px 2px #DEE8FA;
    color: #264AFF;
}
.layout_select .selectItem.isValue .carmuarrowDown {
    color: #264AFF;
    transform: translateY(50%);
}
.layout_select .selectItem.active input {
    border: 1px solid #264AFF;
    box-shadow: 0px 0px 0px 2px #DEE8FA;
}
.layout_select .selectItem.hasValue input {
    background: #FFFFFF;
}
.layout_select .selectItem input::-moz-placeholder {
    color: #B0B1B8;
}
.layout_select .selectItem input::-webkit-input-placeholder {
    color: #B0B1B8;
}
.layout_select .selectItem input:-ms-input-placeholder {
    color: #B0B1B8;
}
.layout_select .selectItem .carmuarrowDown {
    position: absolute;
    right: 4px;
    top: 3px;
    color: #B0B1B8;
    transform: translateY(70%);
    transition: .5s;
    cursor: pointer;
}
.layout_select .selectItem.active .carmuarrowDown {
    color: #264AFF;
    transform: rotateZ(180deg) translateY(-70%);
}
.layout_select .selectItem .tag {
    position: absolute;
    left: 6px;
    top: 6px;
    width: calc(100% - 30px);
    background: #FFFFFF;
    padding: 0;
    box-sizing: border-box;
    display: none;
    align-items: center;
}
.layout_select .selectItem .tag .tag_item {
    flex: 0 1 auto;
    height: 24px;
    line-height: 24px;
    padding-right: 6px;
    background: #E8E9EB;
    padding: 0 4px 0 8px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.layout_select .selectItem .tag .tag_item span {
    margin-right: 6px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    word-break: break-all;
}
.layout_select .selectItem .tag .tag_item i {
    color: #8D8E99;
    cursor: pointer;
}
.layout_select .selectItem .tag .tag_item i:hover {
    color: #264AFF;
}
.layout_select .selectItem .tag .tag_more {
    flex: 0 0 auto;
    height: 24px;
    line-height: 24px;
    padding-left: 6px;
    font-size: 12px;
    white-space: nowrap;
}
.layout_select .selectButton {
    min-width: 60px;
    height: 36px;
    padding: 0 16px;
    background: #264AFF;
    border-radius: 3px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.layout_select .selectButton.default {
    margin: 0 16px 16px 451px;
    background: #FFFFFF;
    border: 1px solid #264AFF;
    color: #264AFF;
}
.layout_selectBox {
    display: none;
}

/* 面包屑 */
.layout_crumb {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.layout_crumb .crumb {
    display: flex;
    align-items: center;
}
.layout_crumb .crumb a {
    color: #5E5E66;
}
.layout_crumb .crumb a:hover {
    color: #264AFF;
}
.layout_crumb .crumb i {
    margin: 0 4px;
    color: #D3D4D6;
}
.layout_crumb .menu {
    display: flex;
}
.layout_crumb .menu .download {
    margin-right: 24px;
    padding: 10px 0;
    color: #5E5E66;
}
.layout_crumb .menu .language {
    position: relative;
    z-index: 1;
    padding: 10px 0;
    display: flex;
    align-items: center;
    color: #5E5E66;
    cursor: pointer;
}
.layout_crumb .menu .language i {
    font-size: 16px;
}
.layout_crumb .menu .language_list {
    position: absolute;
    right: 0;
    top: 38px;
    z-index: 1;
    width: 128px;
    padding: 8px;
    background: #FFFFFF;
    border-radius: 3px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.08), 0 4px 16px 0 rgba(0, 0, 0, 0.16);
    box-sizing: border-box;
    overflow: hidden;
    display: none;
    opacity: 1;
    flex-direction: column;
}
.layout_crumb .menu .language_list .item {
    height: 36px;
    line-height: 36px;
    padding: 0 8px;
    border-radius: 3px;
    color: #131212;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    word-break: break-all;
}
.layout_crumb .menu .language_list .item.active {
    background: #DEE8FA;
}
.layout_crumb .menu .language_list .item.active:hover {
    color: #131212;
}
.layout_crumb .menu .language_list .item:hover {
    color: #264AFF;
}

/* 分页模块 && 发布 */
.layout_pagination {
    margin-top: 50px;
    height: 64px;
    background: #FFFFFF;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.layout_pagination .release {
    flex: 0 1 auto;
    color: #5E5E66;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    word-break: break-all;
}
.layout_pagination .release a {
    color: #264AFF;
}

/* 分页 */
.pagination {
    flex: 0 0 auto;
    padding-left: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.pagination .total {
    margin-right: 24px;
    color: #5E5E66;
}
.pagination .number {
    display: flex;
    align-items: center;
}
.pagination .number .iconfont {
    padding: 0;
    border: none;
    color: #B0B1B8;
}
.pagination .number .prev {
    transform: rotateZ(180deg);
}
.pagination .number a.iconfont {
    color: #5E5E66;
}
.pagination .number a.iconfont:hover {
    border: none;
}
.pagination .number span,
.pagination .number a {
    margin: 0 4px;
    height: 32px;
    line-height: 30px;
    padding: 0 12px 0 11px;
    border: 1px solid #D3D4D6;
    border-radius: 3px;
    color: #5E5E66;
    box-sizing: border-box;
}
.pagination .number a:hover {
    border: 1px solid #264AFF;
    color: #264AFF;
}
.pagination .number .active {
    background: #264AFF;
    border: 1px solid #264AFF;
    color: #FFFFFF;
}
.pagination .number span.more {
    padding: 0;
    border: none;
    line-height: 3;
}
.pagination .size {
    margin: 0 16px;
    position: relative;
    z-index: 1;
    width: 102px;
    height: 32px;
    padding: 0 6px 0 16px;
    border: 1px solid #D3D4D6;
    border-radius: 3px;
    color: #5E5E66;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: .5s;
}
.pagination .size i {
    transition: .5s;
}
.pagination .size.active {
    border: 1px solid #264AFF;
    color: #264AFF;
}
.pagination .size.active i {
    color: #264AFF;
    transform: rotateZ(180deg);
}
.pagination .size input {
    width: 100%;
    cursor: pointer;
}
.pagination .size .sizeList {
    position: absolute;
    right: -1px;
    top: 42px;
    z-index: 1;
    width: 102px;
    padding: 8px;
    background: #FFFFFF;
    border-radius: 3px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.08), 0 4px 16px 0 rgba(0, 0, 0, 0.16);
    box-sizing: border-box;
    overflow: hidden;
    display: none;
    opacity: 1;
    flex-direction: column;
}
.pagination .size .sizeList .item {
    height: 36px;
    line-height: 36px;
    padding: 0 8px;
    border-radius: 3px;
    color: #131212;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    word-break: break-all;
}
.pagination .size .sizeList .item.active {
    background: #DEE8FA;
}
.pagination .size .sizeList .item.active:hover {
    color: #131212;
}
.pagination .size .sizeList .item:hover {
    color: #264AFF;
}
.pagination .jump input {
    margin: 0 8px;
    width: 48px;
    height: 32px;
    border: 1px solid #D3D4D6;
    border-radius: 3px;
    color: #5E5E66;
    text-align: center;
    box-sizing: border-box;
}

.login{
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: fixed;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.65);
}

.loginContent{
    background: white;
    border-radius: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 396px;
}

.skip{
    position:absolute;
    top:16px;
    right: 20px;
    width: 40px;
    height: 24px;
    border-radius: 3px;
    line-height: 24px;
    text-align: center;
 }

 .paddingTopBottom{
    padding-top: 48px;
    padding-bottom: 40px;
    padding-left: 48px;
    padding-right: 48px;
}

.submitBtn{
    margin-top: 20px;
    border-radius: 12px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    font-size: 16px;
    background: #264AFF;
    color: white;
}


/**
*/
.text_lin1{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    word-break: break-all;
}

/* 询盘弹框 */
.layout_inquiry {
    position: fixed;
    left: 50%;
    top: 0;
    z-index: 1001;
    width: 723px;
    background: #FFFFFF;
    border-radius: 3px;
    border: 2px solid #D3D4D6;
    transform: translate(-50%, -50%);
    display: none;
    flex-direction: column;
}
.layout_inquiry .title {
    flex: 0 0 48px;
    height: 48px;
    padding: 12px;
    background: #E8E9EB;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.layout_inquiry .title h2 {
    font-size: 16px;
    font-weight: bold;
}
.layout_inquiry .title i {
    font-size: 24px;
    color: #131212;
    cursor: pointer;
}
.layout_inquiry .content {
    flex: 1;
    padding: 24px 24px 40px;
    border: 2px solid #D3D4D6;
    box-sizing: border-box;
}
.layout_inquiry .inquiry_tips {
    padding: 10px 16px;
    background: #DEE8FA;
    border-radius: 3px;
    line-height: 22px;
    font-size: 14px;
    font-family: 'PingFang SC';
    color: #131212;
    word-break: keep-all;
}
.layout_inquiry .inquiry_content {
    margin-top: 16px;
    width: 100%;
    padding: 13px 12px;
    line-height: 20px;
    background: #FFFFFF;
    border-radius: 3px;
    border: 1px solid #D3D4D6;
    box-sizing: border-box;
    resize: none;
}
.layout_inquiry .inquiry_input {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    width: 100%;
    height: 46px;
    line-height: 20px;
    background: #FFFFFF;
    border-radius: 3px;
    border: 1px solid #D3D4D6;
}
.layout_inquiry .inquiry_input h5 {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 12px;
    transform: translate(0, -50%);
}
.layout_inquiry .inquiry_text {
    width: 100%;
    padding: 13px 12px 13px 140px;
    box-sizing: border-box;
}
.layout_inquiry .inquiry_acceptable:nth-of-type(3) {
    margin-top: 32px;
}
.layout_inquiry .inquiry_acceptable {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
}
.layout_inquiry .inquiry_acceptable label {
    margin: 7px 20px 7px 0;
    line-height: 22px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.layout_inquiry .inquiry_acceptable label input {
    display: none;
}
.layout_inquiry .inquiry_acceptable label .item_select {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    border: 1px solid #D3D4D6;
    background: #FFFFFF;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.layout_inquiry .inquiry_acceptable label .item_select i {
    color: #FFFFFF;
}
.layout_inquiry .inquiry_acceptable label.active .item_select {
    background: #264AFF;
    border: 1px solid #264AFF;
}
.layout_inquiry .button {
    margin-top: 16px;
    height: 40px;
    background: #264AFF;
    border-radius: 3px;
    color: #FFFFFF;
    font-size: 16px;
    font-family: 'PingFang SC';
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.5s all;
}
.layout_inquiry .button:active {
    background: rgba(38, 74, 255, 0.85);
}


.vipRoom{
    background: #0000009e;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    display: none;
}
 .vipRoom .btns{
    width: 232px;
    height: 60px;
    border-radius: 4px;
    box-sizing: border-box;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #264AFF;
    font-size: 16px;
    text-align: center;
    margin-top: 16px;
    font-weight: 600;
    cursor: pointer;
    flex-direction: column;
}
.vipRoom .btns h1{
    font-size: 24px;
    color: #ffffff;
    font-weight:600;
}
 .vipRoom .btns span{
        margin-top: 4px;
    font-size: 14px;
    color: #CEE3FF;
}

/* Toast 基础样式 */
.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 精确居中 */
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px 25px;
  border-radius: 5px;
  display: none; /* 默认隐藏 */
  z-index: 9999;
  animation: fadeIn 0.3s; /* 淡入动画 */
}

/* 淡入动画 */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


.tipDialog{
    display: none;
    position: absolute;
    background: #ECF5FF;
    border-radius: 3px;
    left: 100%;
    margin-left: 10px;
    width: 380px;
    padding: 16px;
    top: 0%;
    font-size: 14px;
    line-height: 22px;
    z-index: 1000;
    box-shadow: 0 0 .27rem rgba(0, 0, 0, .15);
}
.tipDialog .title{
    font-weight: 500;
    margin-bottom: 5px;
}