.cbox1 {
    margin-top: 2rem;
    margin-bottom: 1.2rem;
}
.cbox1-top {
    margin: 0.2rem 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cbox1-top .item {
    width: 49%;
}
.cbox1-top .item .pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.3rem;
}
.cbox1-top .item .tit {
    margin: 0.16rem 0 0.08rem;
}
.cbox1-top .item .addr {
    display: flex;
    align-items: center;
}
.cbox1-top .item .addr .icon {
    width: auto;
    height: 0.22rem;
    margin-right: 0.08rem;
}
.cbox1-top .item .addr .txt {
    line-height: 1;
}
.cbox1-bot {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 0.75rem;
}
.cbox1-bot .item {
    width: calc((100% - 1.5rem)/3);
    background: #fafafa;
    border-radius: 0.2rem;
    padding: 0 0.2rem;
}
.cbox1-bot .item h3 {
    padding: 0.16rem 0.4rem;
}
.cbox1-bot .item .ul {
    padding: 0.2rem 0;
    border-top: 1px solid #E3E3E3;
}
.cbox1-bot .item .ul .li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.1rem;
}
.cbox1-bot .item .ul .li:last-child {
    margin-bottom: 0;
}
.cbox1-bot .item .ul .li .icon {
    width: 0.24rem;
    margin-right: 0.1rem;
}
.cbox2 {
    padding: 0.8rem 0 1rem;
    background: #fafafa;
}
.cbox2 .w1680 {
    background: #fff;
    padding: 0;
    margin: 0 1.2rem;
}
.cbox2 .cbox2-table {
    margin-top: 0.45rem;
}
.cbox2 .cbox2-table .table-wrap {
    display: flex;
    min-height: 0.8rem;
}
.cbox2 .cbox2-table .table-header {
    background: var(--color-primary);
    border-radius: 0.2rem 0.2rem 0 0;
}
.cbox2 .cbox2-table .table-wrap .item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    word-break: break-all;
    text-align: center;
    padding: 0.2rem 0.16rem;
    border-right: 1px solid #EEF2F4;
}
.cbox2 .cbox2-table .table-wrap .item:last-child {
    border-right: none;
}
.cbox2 .cbox2-table .table-body .item {
    border-bottom: 1px solid #EEF2F4;
}

.cbox3 {
    margin-top: 0.8rem;
    padding-bottom: 1.5rem;
}
.cbox3 .bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cbox3 .w1680 {
    position: relative;
}
.cbox3 .cbox3-form {
    position: absolute;
    bottom: -1.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 78%;
    padding: 0.8rem;
    background: linear-gradient(to bottom, #FFFFFF 0%, #f5fbfe 100%);
    border-radius: 0.2rem;
    box-shadow: 0px 0px 33.8px 0px #011F3029;
}
.cbox3 .cbox3-form h3 {
    line-height: 1;
    margin-bottom: 0.5rem;
}
.cbox3 .cbox3-form .form-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 0.3rem;
    margin-bottom: 0.2rem;
}
.cbox3 .cbox3-form .form-item .item {
    flex: 1;
    height: 0.6rem;
    padding: 0.2rem;
    background: inherit;
    border: 1px solid #F3F3F3;
}
.cbox3 .cbox3-form .form-item .item:focus::placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cbox3 .cbox3-form .form-item textarea.item {
    height: 1.2rem;
}
.cbox3 .cbox3-form .form-item textarea.item:focus::placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cbox3 .cbox3-form .form-item .select-wrap {
    position: relative;
    padding: 0;
}
.cbox3 .cbox3-form .form-item .select-wrap .select {
    padding: 0 0.2rem;
    width: 100%;
    height: 100%;
    border: none;
    background: inherit;
}
.cbox3 .cbox3-form .form-item .select-wrap .select:focus option[disabled] {
    display: none;
}
.cbox3 .cbox3-form .form-item .select-wrap::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0.2rem;
    width: 0.1rem;
    height: 0.1rem;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: translateY(-50%) rotate(135deg);
}

/* 分页 */
/* pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.16rem;
    padding: 0.5rem 0;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0.56rem;
    height: 0.56rem;
    border-radius: 50%;
    color: #D1D1D1;
}

.pagination a img {
    width: 0.06rem;
}

.pagination a.prev {
    margin-right: 0.16rem;
    transform: rotate(180deg);
}

.pagination a.next {
    margin-left: 0.16rem;
}

.pagination a.disabled img {
    filter: var(--imggray);
}

.pagination a.dots {
    line-height: 1;
}

.pagination a.active {
    background: var(--color-primary);
    color: #fff;
}

.pagination a.page:hover {
    background: var(--color-primary);
    color: #fff;
}

/* pagination */

/* 按钮 */
.mbtn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0.5rem auto;
    margin-bottom: 0;
    border: none;
    background: inherit;
    cursor: pointer;
}
.web_btn {
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 0.04rem 0.04rem 0.04rem 0.18rem;
    border-radius: 0.4rem;
}

.web_btn .bxt {
    line-height: 0.3rem;
}

.web_btn .arr {
    margin-left: 0.25rem;
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 0.3rem;
}
.web_btn_vi {
    border: 1px solid #E8E8E8;
    background: #fff;
}

.web_btn_vi .bxt {
    color: var(--color-primary);
}

.web_btn_vi .arr {
    background: var(--color-primary);
}

.web_btn_vi:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
}

.web_btn_vi:hover .bxt {
    color: #fff;
}

.web_btn_vi:hover .arr {
    background: #fff;
}

.web_btn_vi:not(:hover) .arr img {
    filter: var(--imgwhite);
}
@media screen and (max-width: 1280px) {
    .web_btn_vi .tit-14 {
        font-size: .18rem;
    }
}