/* 第一屏 */
.assets-banner{
    position: relative;
    width: 100%;
    height: 900rem;
    background: url('../jpg/01-bannerfcb2.jpg') no-repeat center top;
    background-size: cover;
}
.banner-img,.banner-mask{
    width: 100%;
    height: 100%;
}
.banner-inner {
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.banner-title-box{
    position: absolute;
    top: 45%;
    left: 0;
    /* transform: translateY(-50%); */
    width: 748rem;
    font-size: 16rem;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
    line-height: 22rem;
    z-index: 1;
}
.banner-title {
    color:#fff;
    position: relative;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transition: transform 2s cubic-bezier(.19,1,.22,1);
    -webkit-transition: transform 2s cubic-bezier(.19,1,.22,1);
}
.banner-title h2{
    font-size: 30rem;
    color: #FF7E30;
    line-height: 44rem;
}
.banner-title h3{
    font-size: 64rem;
    color: #FFFFFF;
    line-height: 93rem;
}

/* .banner-title h2,.banner-title h3,.banner-title p,.banner-title span {
    opacity: 0;
    animation: slide-up-fade-in 2s ease-out forwards;
} */
.banner-title p {
    font-size: 22rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    line-height: 33rem;
    margin: 10rem 0 40rem;
}
.banner-title span {
    /* animation-delay: 2s; */
    display: block;
    font-weight: 400;
    font-size: 16rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 22rem;
}

.fade-out {
    animation: fadeOut 1s forwards;
}

.animation-content {
    opacity: 0;
    animation: 1200ms ease 300ms bottom-fade-in;
    -webkit-animation: 1200ms ease 300ms bottom-fade-in;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
/* 表单提交 */
.assets-form{
    position: relative;
    width: 480rem;
    background: #FFFFFF;
    padding: 30rem 40rem 17rem;
    box-sizing: border-box;
    z-index: 1;
    top: 120rem;
}
.form-title{
    font-size: 24rem;
    color: #222222;
    line-height: 33rem;
    font-weight: bold;
}
.form-title span{
    font-size: 24rem;
    color: #FF7E30;
}
.form-content{
    margin: 10rem 0 8rem;
}
.province{
    cursor: pointer;
}
.province-city{
    width: 100%;
    height: 100%;
    position: relative;
}
.province-city .title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.province-city span{
    font-weight: 400;
    font-size: 20rem;
    color: #BCBCBC;
    line-height: 27rem;
    text-align: left;
}
.select-icon{
    width: 21rem;
    height: 12rem;
    background: url('https://vky-oss.inboyu.com/pc/assets/icon-bottom.svg') no-repeat right center;
    background-size: cover;
}
.select-icon.active{
    background: url('https://vky-oss.inboyu.com/pc/assets/icon-top.svg') no-repeat right center;
    background-size: cover;
}
.province-city-box{
    position: absolute;
    left: 0;
    top: 66rem;
    z-index: 1;
    display: flex;
}
.province-box{
    width: 200rem;
    height: 236rem;
    border: 2rem solid #222222;
    padding: 6rem 4rem 6rem 6rem;
    background-color: #ffffff;
    overflow-y: auto;
}
.province-box::-webkit-scrollbar {
    display: none;
}
.provinces.active{
    /* border-right: 2rem solid rgba(34,34,34,0.1); */
    border-right: 0;
    position: relative;
}
.province-box.provinces.active::after {
    content: '';
    width: 2px;
    height: 99%;
    background: rgba(34,34,34,0.1);
    position: absolute;
    top: 0px;
    right: 0;
}
.city-box.active{
    border-left: 0;
}
.select-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9rem 0 9rem 9rem;
    margin-bottom: 6rem;
}
.select-item span{
    font-weight: 400;
    font-size: 16rem;
    color: rgba(34,34,34,0.6);
    line-height: 22rem;
    text-align: left;
}
.select-item .active{
    color: #FF7E30;
}
.select-item:hover{
    background: #FFF9F5;
}
.select-item img{
    width: 12rem;
    height: 21rem;
}
.hide{
    display: none;
}
.contact-cooperation-box-form .form-group {
    width: 100%;
    height: 68rem;
    box-sizing: border-box;
    text-align: left;
    border-bottom: 2rem solid rgba(34,34,34,0.05);
    margin-bottom: 16rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form-group.has-value {
    border-bottom: 2rem solid #222222; /* 有值时的边框颜色 */
}
.contact-cooperation-box-form .form-group input,
.contact-cooperation-box-form .form-group textarea {
    width: 100%;
}
.contact-cooperation-box-form .form-group.error {
    border-bottom: 2rem solid  #F34747;
    position: relative;
}
.contact-cooperation-box-form .form-group.error .error-message {
    font-size: 14rem;
    font-weight: 400;
    color: #F34747;
    position: absolute;
    right: 0;
}
.contact-cooperation-box-form .province.error .error-message{
    right: 26rem;
}
.contact-cooperation-box-form .form-group.error select ~ .error-message {
    right: 40rem;
}
input, select, textarea, button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    border: none;
    background: none;
}
/* 移除IE和Edge中的清除按钮 */
input::-ms-clear {
    display: none;
}

input, select, textarea {
    font-size: 20rem;
    color: #222222;
}
input::placeholder, textarea::placeholder {
    font-size: 20rem;
    color: #BCBCBC;
    opacity: 1;
}
::-ms-input-placeholder, ::-ms-textarea-placeholder {
    color: #BCBCBC;
}
/* Microsoft Edge */
::-ms-input-placeholder {
    color: #BCBCBC;
}
.select2-container .select2-selection--single {
    border: none;
    background: url('https://vky-oss.inboyu.com/pc/assets/icon-bottom.svg') no-repeat right center;
    background-size: 21rem 12rem;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-size: 20rem;
    color: #BCBCBC;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 20rem;
    color: #222;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}
.select2-container.select2-container--open.select2-container--focus .select2-selection--single {
    background: none;
}
.select2-container.select2-container--open.select2-container--focus {
    border: none;
    background: url('https://vky-oss.inboyu.com/pc/assets/icon-top.svg') no-repeat right center;
    background-size: 21rem 12rem;
}
.select2-container.select2-container--open.select2-container--focus .select2-selection__placeholder {
    color: #222;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
}
.select2-container--open .select2-dropdown--below {
    /* width: 202rem !important; */
    height: 216rem;
    top: 16rem;
    border: 2rem solid #222222;
}
.select2-dropdown {
    border: 1rem solid #222222;
    padding: 6rem;
    height: 236rem;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.select2-dropdown::-webkit-scrollbar {
    display: none;
}
.select2-results__option {
    padding: 9rem 10rem;
    font-size: 16rem;
    color: rgba(34,34,34,0.6);
    height: 22rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.select2-container--default .select2-results>.select2-results__options {
    /* max-height: 236rem; */
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
    display: none;
}
.select2-container--default .select2-results__option--highlighted[aria-selected=false]  {
    background: #FFF9F5;
    color: rgba(34,34,34,0.6);
}
.select2-container--default .select2-results__option--highlighted[aria-selected=true]::after,
.select2-container--default .select2-results__option[aria-selected=true]::after {
    content: url('https://vky-oss.inboyu.com/pc/assets/selected.svg');
    position: absolute;
    top: 0;
    right: 9rem;
    width: 12rem;
    height: 21rem;
}
.select2-container--default .select2-results__option--highlighted[aria-selected=true],
.select2-container--default .select2-results__option[aria-selected=true] {
    color: #FF7E30;
    background-color: #fff;
    position: relative;
}
.submit-btn{
    width: 100%;
    height: 68rem;
    background: #222222;
    font-size: 24rem;
    color: #FFFFFF;
    line-height: 68rem;
    text-align: center;
    margin-top: 4rem;
    transition: background 1s;
    background-size: 200% 100%;
    background-image: linear-gradient(to right, #222 50%, #FF7E30 50%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.submit-btn:active, .submit-btn.button-disabled {
    background: #FF7E30;
}
.submit-btn:hover {
    background-position: -100% 0;
}
.form-phone{
    font-size: 18rem;
    color: rgba(34,34,34,0.6);
    line-height: 25rem;
    text-align: center;
}
.banner-mask{
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.7);
}
/* 第二屏 */
.assets-cooperate{
    width: 100%;
    /* height: 680rem; */
    background: #FFFFFF;
    padding-bottom: 116rem;
}
.cooperate-title{
    display: flex;
    justify-content: center;
    padding: 90rem 0;
}
.title-item{
    display: flex;
    align-items: center;
    margin-right: 180rem;
}
.cooperate-title h2{
    font-size: 36rem;
    color: #222222;
    line-height: 50rem;
}
.cooperate-title img{
    width: 64rem;
    height: 64rem;
    margin-right: 30rem;
}
.second-container {
    width: calc(100% -200rem);
    overflow: hidden;
    animation-delay: 2s;
}
.cooperate-title, .second-container {
    opacity: 0;
}
.swiper-slide .nested-swiper {
    display: none;
}
.swiper-slide .fold-container {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}
.slide-num{
    position: absolute;
    z-index: 2;
    left: 30rem;
    top: 86rem;
    font-size: 48rem;
    color: rgba(34,34,34,0.06);
    line-height: 65rem;
    font-weight: bold;
}
.fold-banner-title {
    position: absolute;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 30rem;
    color: #222222;
    line-height: 42rem;
}
.swiper-slide-active .nested-swiper,
.swiper-slide:hover .nested-swiper {
    display: block;
    width: 100%;
    height: 100%;
}
.swiper-slide-active .fold-container,
.swiper-slide:hover .fold-container {
    display: none;
}
.swiper-slide.second-outside-item {
    position: relative;
    /* width: 180rem; */
    width: 12.86%;
    height: 320rem;
    box-sizing: border-box;
    margin-left: 14rem;
    margin-bottom: 16px;
    overflow: hidden;
    cursor: pointer;
    opacity: 1;
    transition: width 0.6s ease 0s, opacity 1s ease 0.2s;
}
.swiper-slide.second-outside-item:first-child {
    margin-left: 0;
}
.swiper-slide.second-outside-item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    background: linear-gradient(180deg, #FAFDFF 0%, #F9FCFF 100%);
}
.swiper-slide.second-outside-item.swiper-slide-active::after {
    content: '';
    display: none;
}
.swiper-slide.second-outside-item:last-child {
    margin-right: 0;
}
.swiper-slide.second-outside-item.swiper-slide-active {
    /* width: 800rem; */
    width: 57.14%;
    background: linear-gradient(180deg, #FAFCFF 0%, #FFFFFF 100%);
    box-shadow: 0px 2px 16px 0px rgba(75,83,104,0.04);
}

.nested-swiper .banner-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.num-box .card-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}
.num-box .card-row.two-column {
    padding: 0 140rem;
}
.card-col {
    flex-shrink: 0;
}
.col-small-title {
    color: rgba(34,34,34,0.6);
    font-size: 16rem;
}
.col-number-unit {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
}
.num-inner, .number-dot {
    color: #FF7E30;
    font-size: 68rem;
}
.col-unit {
    font-size: 22rem;
    line-height: 1;
    margin-left: 8px;
}
.card-col {
    margin-right: 60rem;
}
.card-col:last-child {
    margin-right: 0;
}
.banner-item .slide-num{
    top: 30rem;
    left: 40rem;
}
.inner-banner-title {
    position: absolute;
    z-index: 2;
    left: 40rem;
    top: 62rem;
    font-size: 30rem;
    color: #222222;
    line-height: 42rem;
}
.num-box {
    padding: 136rem 55rem 0 55rem
}
.num-item {
    margin-right: 60rem;
}
.num-item .num-small-title {
    font-size: 16rem;
    color: rgba(34,34,34,0.6);
}
.num-item:last-child{
    margin-right: 0;
}
.num-name{
    display: flex;
    align-items: flex-end;
}
.num-name span {
    font-size: 14px;
    color: #000;
}
.num-box .num{
    position: relative;
    min-width: 82rem;
    height: 72rem;
    font-size: 20rem;
    font-weight: 600;
    line-height: 27rem;
    margin-right: 4rem;
}

.num-inner div {
    margin-top: 16rem;
    height: 72rem;
    line-height: 72rem;
    font-size: 68rem;
    box-sizing: border-box;
}
.num-unit{
    font-size: 68rem;
    color: #FF7E30;
    line-height: 72rem;
    text-align: left;
    font-weight: 600;
    margin-top: 16rem;
}
.point{
    position: absolute;
    left: 40rem;
    bottom: -8rem;
    font-size: 68rem;
    color: #FF7E30;
    line-height: 72rem;
}
/* 第三屏 */
.third-screen-container {
    width: 100%;
    height: 900rem;
    box-sizing: border-box;
    position: relative;
    background: url('../jpg/02-bannerfcb2.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.screen-image, .image-cover {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-cover {
    position: relative;
}
.equity-info-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.third-title {
    height: 65rem;
    font-size: 48rem;
    color: #FBFCFD;
    line-height: 65rem;
    margin-bottom: 8rem;
}
.third-desc {
    height: 34rem;
    font-size: 24rem;
    color: rgba(255,255,255,0.6);
    line-height: 33rem;
}
.equity-list-title{
    display: flex;
    align-items: center;
    margin: 30rem 0 122rem 30rem;
    flex-wrap: wrap;
    animation-duration: 1s;
}
.equity-list-title h4{
    font-size: 30rem;
    color: #FFFFFF;
}
.title-box{
    display: flex;
    align-items: center;
    width: 27%;
    margin-bottom: 10rem;
    margin-right: 80rem;
}
.text-icon{
    width: 10rem;
    height: 10rem;
    background: #FFFFFF;
    margin-right: 16rem;
}
.equity-list-box {
    width: 1400rem;
    padding: 20rem 20rem 30rem 20rem;
    box-sizing: border-box;
    animation-duration: 2s;
    background: rgba(255,255,255,0.1);
    -webkit-backdrop-filter: blur(10rem);
    -moz-backdrop-filter: blur(10rem);
    -ms-backdrop-filter: blur(10rem);
    backdrop-filter: blur(10px);
    border-radius: 10rem;
}
.third-title,.third-desc,.equity-list-title,.equity-list-box{
    opacity: 0;
}
.equity-list-box h3{
    margin-bottom: 20rem;
    font-size: 24rem;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 33rem;
}
.equity-box {
    position: relative;
    width: 100%;
    height: 162rem;
}
.equity-box .swiper-wrapper{
    align-items: center;
    display: flex;
    justify-content: center;
}
.second-container .swiper-wrapper {
    align-items: center;
    display: flex;
    justify-content: center;
}

.equity-slide{
    /* width: 225rem; */
    width: 14.14%;
    height: 142rem;
    /* background: rgba(255,255,255,0.2); */
    background-color: rgba(255,255,255,0.1);
    margin-right: 10rem;
    cursor: pointer;
    position: relative;
}

.equity-slide:last-child{
    margin-right: 0;
}
.int-equity{
    position: absolute;
    left: 30rem;
    bottom: 20rem;
    font-size: 16rem;
    color: rgba(255,255,255,0.4);
}
.equity-title {
    font-size: 18rem;
    color: #FFFFFF;
    line-height: 25rem;
}
.last-equity{
    width: 100%;
    height: 100%;
    left: unset;
    bottom: unset;
    padding: 20rem 30rem;
    display: none;
    box-sizing: border-box;
}
.equity-slide .pagination-icon {
    display: none;
    position: absolute;
    bottom: 0;
    left: 30rem;
    background: url('https://vky-oss.inboyu.com/pc/homepage/arrow.svg') no-repeat center;
    width: 16rem;
    height: 8rem;
    margin-top: 6rem;
    background-size: cover;
}
.equity-slide-active{
    width: 25%;
    background: none;
}
.last-equity-active{
    background: rgba(255,255,255,0.2);
    z-index: 2;
}

.advantage-ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.advantage-li {
    width: 198rem;
    height: 142rem;
    background: rgba(255,255,255,0.1);
    position: relative;
    margin-right: 10rem;
    overflow: hidden;
    cursor: pointer;
}
.advantage-li:last-child{
    margin-right: 0;
}

.advantage-short-card {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: 30rem 30rem 20rem 30rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}
.advantage-num {
    font-size: 16rem;
    line-height: 22rem;
    color: rgba(255,255,255,0.4);
}

.advantage-name {
    font-size: 18rem;
    line-height: 25rem;
    color: #FFFFFF;
}

.advantage-desc {
    font-size: 16rem;
    line-height: 22rem;
    color: rgba(255,255,255,0.4);
    margin-top: 8rem;
}

.advantage-detail-card {
    position: absolute;
    bottom: -214rem;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 20rem 30rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: rgba(255,255,255,0.1);
    transition: all .5s;
}

.advantage-li.li-active {
    width: 316rem;
}
.advantage-li.li-active .advantage-short-card {
    opacity: 0;
}
.advantage-li.li-active .advantage-detail-card {
    bottom: 0;
    opacity: 1;
}
.container-arrow {
    width: 128rem;
    height: 120rem;
    background: url('https://vky-oss.inboyu.com/pc/quote.svg') no-repeat;
    background-size: cover;
    margin-left: 72rem;
}
.display-flex{
    display: flex;
    align-items: flex-end;
}
/* 第四屏 */
.property-type{
    width: 100%;
    height: 876rem;
    padding: 80rem 0;
    background: #FFFFFF;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* .property-type-inner-wrap {
    width: calc(100% - 260px);
    padding-left: 260px;
    margin: 0 auto;
} */
.property-title{
    font-size: 48rem;
    color: #222222;
    line-height: 72rem;
}
.type-box{
    margin-top: 40rem;
}
.name-swiper-pagination{
    display: flex;
    align-items: center;
    justify-content: center;
}
.name-swiper-pagination .swiper-pagination-bullet{
    width: 454rem;
    height: 80rem;
    margin: 0 2% 0 0;
    background: #FFFFFF;
    border: 2rem solid #222222;
    font-size: 30rem;
    color: #000000;
    line-height: 80rem;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 10rem;
    opacity: 1;
}
.name-swiper-pagination .swiper-pagination-bullet:last-child{
    margin-right: 0;
}
.name-swiper-pagination .swiper-pagination-bullet-active{
    background: #222222;
    color: #FFFFFF;
}
.type-content{
    /* margin: 50rem 0 0 260rem; */
    margin-top: 50rem;
}
.type-slide{
    display: flex;
}
.type-dec{
    width: 700rem;
    margin-right: 32rem;
}
.type-dec h3{
    margin-top: 60rem;
    font-weight: 500;
    font-size: 30rem;
    color: #FF7E30;
    line-height: 42rem;
    text-align: left;
}
.type-dec h4{
    margin: 8rem 0;
    font-size: 48rem;
    color: #222222;
    line-height: 65rem;
    text-align: left;
}
.type-dec p{
    font-weight: 400;
    font-size: 24rem;
    color: rgba(34,34,34,0.4);
    line-height: 33rem;
    text-align: left;
}
.type-img{
    width: 640rem;
    position: relative;
    border-radius: 10rem;
    margin: 0;
}
.img-list{
    position: relative;
}
.img-list,.img-list img{
    width: 100%;
    height: 368rem;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0) 0%, rgba(0,0,0,0) 29%, rgba(0,0,0,0.6) 100%);
    z-index: 1; /* 确保遮罩层在图片上方 */
}
.img-name{
    position: absolute;
    bottom: 30rem;
    left: 30rem;
    z-index: 2;
    width: 100%;
    font-weight: 500;
    font-size: 30rem;
    color: #FFFFFF;
    line-height: 42rem;
    text-align: left;
}
.type-content>.type-swiper-pagination.swiper-pagination-bullets {
    position: absolute;
    height: 60rem;
    z-index: 2;
    left: 0;
    bottom: 30rem;
    display: flex;
    align-items: flex-end;
}
.type-content>.swiper-pagination-bullets.type-swiper-pagination .swiper-pagination-bullet
{
    position: relative;
    background: none;
    display: block;
    margin-right: 20rem;
    background: none;
    width: fit-content;
    min-width: 220rem;
    max-width: 620rem;
    height: auto;
    opacity: 1;
    text-align: left;
}
.type-swiper-pagination .swiper-pagination-bullet .pagination-bullet-text {
    height: 33rem;
    font-size: 24rem;
    font-weight: 400;
    color: rgba(34,34,34,0.6);
    line-height: 33rem;
    position: relative;
}
.type-swiper-pagination .swiper-pagination-bullet .pagination-bullet-text::before {
    content: '';
    position: absolute;
    bottom: -10rem;
    left: 2rem;
    width: 100%;
    height: 2rem;
    background: #EBEBEB;
}
.type-swiper-pagination .swiper-pagination-bullet .pagination-bullet-text .process {
    display: block;
    position: absolute;
    bottom: -10rem;
    left: 2rem;
    width: 0;
    opacity: 0;
    height: 2rem;
    background: #FF7E30;
    transition-property: width;
    transition-timing-function: linear;
}
.type-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .pagination-bullet-text .process {
    width: 100%;
    opacity: 1;
}
.type-swiper-pagination .swiper-pagination-bullet .pagination-icon {
    opacity: 0;
}
.type-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: none;
}
.type-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .pagination-bullet-text {
    color: #FF7E30;
}
.type-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .pagination-bullet-text::after {
    background: #fff;
}
.type-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .pagination-icon {
    position: absolute;
    left: 10rem;
    bottom: -26rem;
    opacity: 1;
    width: 0;
    height: 0;
    border-left: 10rem solid transparent;
    border-right: 10rem solid transparent;
    border-bottom: 8rem solid #FF7E30;
    background: none;
    margin-top: 20rem;
}
.swiper-pagination-bullets.fourth-swiper-pagination {
    position: absolute;
    bottom: 12rem;
    left: 30rem;
    z-index: 2;
    text-align: left;
}
.swiper-pagination-bullets.fourth-swiper-pagination .swiper-pagination-bullet {
    width: 60rem;
    height: 4rem;
    background: rgba(255,255,255,0.6);
    margin-right: 10rem;
    border-radius: 0 !important;
}
.swiper-pagination-bullets.fourth-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #FF7E30;
}
/* 第五屏 */
.six-screen-container {
    width: 100%;
    height: 880rem;
    box-sizing: border-box;
    position: relative;
    background: url('../png/03-banner.png') no-repeat center;
    background-size: cover;
    /* padding: 80rem 260rem 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.six-inner-screen {
    height: 100%;
    margin: 0 auto;
    position: relative;
}
.six-top-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 80rem;
}
.six-title {
    font-size: 36rem;
    color: #FF7E30;
    line-height: 72rem;
}
.six-p {
    display: flex;
    justify-content: center;
    margin: 34rem 0 40rem;
}
.six-p span {
    margin: 0 20rem;
    font-size: 35rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 42rem;
}
.six-p img {
    width: 44rem;
    height: 32rem;
}
.next-icon{
    width: 80rem;
    height: 80rem;
    cursor: pointer;
}
.swiper-container.six-swiper {
    width: 774rem;
    height: 480rem;
    overflow: hidden;
    margin: 0;
}
.swiper-container.six-swiper.six-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.six-swiper-flex{
    display: flex;
    justify-content: center;
    align-items: center;
}
.good-project-information {
    /* position: absolute;
    top: 290rem;
    left: 0; */
    width: 628rem;
    height: 450rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
    border-radius: 10rem 0 0 10rem;
}
.project-info {
    position: absolute;
    opacity: 0;
    top: 40rem;
    left: 40rem;
    right: 40rem;
}
.project-info.active {
    opacity: 1;
    transition: opacity 2s;
}
.project-info .six-item-title {
    height: 50rem;
    font-size: 36rem;
    color: #FFFFFF;
    line-height: 50rem;
    margin-bottom: 20rem;
}
.project-info .six-item-desc {
    font-size: 24rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    line-height: 33rem;
}
.six-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10rem;
}
.swiper-pagination-bullets.six-swiper-pagination {
    width: 491rem;
    bottom: 55rem;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}
.swiper-pagination-bullets.six-swiper-pagination .swiper-pagination-bullet {
    width: 56rem;
    height: 4px;
    background: rgba(255,255,255,0.6);
    border: 0;
    border-radius: 0 !important;
    margin-right: 6rem;
}
.swiper-pagination-bullets.six-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #FF7E30;
}
.swiper-pagination-info {
    position: absolute;
    z-index: 2;
    bottom: 40rem;
    /* right: 714rem; */
    right: calc(50% - 266rem);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.swiper-pagination-current {
    height: 33rem;
    font-size: 24rem;
    font-weight: bold;
    color: #FF7E30;
    line-height: 33rem;
}
.swiper-pagination-total {
    height: 22rem;
    font-size: 16rem;
    color: #EBEBEB;
    line-height: 22rem;
}
.side-fixed-box {
    position: fixed;
    bottom: 72rem;
    right: 30rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
    opacity: 0;
}
.go-contact {
    background: url('https://vky-oss.inboyu.com/pc/assets/go-contact.svg');
}
.go-top {
    background: url('https://vky-oss.inboyu.com/pc/enterprise/go-top.svg');

}
.side-fixed {
    width: 54px;
    height: 54px;
    background-size: 34px 34px;
    background-color: #161616;
    background-repeat: no-repeat;
    background-position: center;
}
.side-fixed:hover {
    background-color: #FF7E30;
}
.contact-box{
    position: fixed;
    bottom: 90rem;
    right: 94rem;
    border-radius: 8rem;
    text-align: center;
    z-index: 99;
}
.contact-box .assets-form{
    position: unset;
    right: unset;
    top: unset;
    transform: none;
    background: linear-gradient(151deg, rgba(255, 232, 218, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%), #FFFFFF;
}
.close-form{
    position: absolute;
    top: -20rem;
    right: -34rem;
    width: 34rem;
    height: 34rem;
    cursor: pointer;
    background: #FFFFFF;
    border-radius: 50%;
    margin: 17rem;
}
.close-form img{
    width: 100%;
    height: 100%;
}
.global-error-toast {
    position: absolute;
    bottom: 128rem;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 12px 20px;
    background: #FEF0F0;
    border-radius: 4px;
    border: 1px solid #FFD3D3;
    display: flex;
    align-items: center;
    min-width: 330rem;
    z-index: 2;
    display: none;
  }
.global-error-toast .toast-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url('https://vky-oss.inboyu.com/pc/homepage/error-arrow.svg') no-repeat center;
    background-size: 14px 14px;
    margin-right: 10px;
    vertical-align: middle;
}
.global-error-toast .toast-content {
    font-size: 14px;
    line-height: 20px;
    color: #F34747;
    vertical-align: middle;
}

.second-container.mini-container {
    opacity: 1;
    width: 100%;
    /* padding-left: 30px; */
    box-sizing: border-box;
}
.second-container.mini-container .swiper-wrapper {
    /* display: block; */
    justify-content: flex-start;
    transform: translate3d(0, 0, 0);
    transition: transform 400ms ease;
}
.second-mini-container {
    margin-left: 30px;
    box-sizing: border-box;
}
.swiper-mini-content {
    overflow: hidden;
    /* width: calc(100% - 30px); */
}
.second-mini-container .swiper-slide {
    width: 629px;
    height: 180px;
    background: linear-gradient(180deg, #FAFCFF 0%, #FFFFFF 100%);
    /* background-color: lightcyan; */
    box-shadow: 0px 2px 16px 0px rgba(75,83,104,0.04);
    margin-bottom: 16px;
    margin-right: 20px;
    cursor: pointer;
}
.second-mini-container .banner-item {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}
.second-mini-container .num-box {
    padding: 76px 30px 30px;
}


/* 动画 */
@keyframes slide-show {
    0% {
      opacity: 0;
    }
    50%{
        opacity: 0.5;
    }
    100% {
      opacity: 1;
    }
}
.animate-slide{
    animation: slide-show 2s ease-out forwards;
}
/* 动画 */
@keyframes slide-up-fade-in {
    0% {
      opacity: 0;
      transform: translateY(100%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}

@-webkit-keyframes bottom-fade-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes bottom-fade-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.animate{
    animation: slide-up-fade-in 2s ease-out forwards;
}

@media screen and (max-width: 965px),
       screen and (min-device-width: 720px) and (max-device-width: 1366px),
       screen and (min-device-width: 768px) and (max-device-width: 1024px){
    .banner-title h2 {
        font-size: 14px;
    }
    .banner-title h3 {
        font-size: 32px;
        line-height: 1.5;
    }
    .banner-title p,
    .banner-title span {
        font-size: 12px;
        line-height: 1.5;
    }
    .banner-title-box {
        left: 60px;
        width: 370px;
    }
    .form-title, .form-title span {
        font-size: 16px;
    }
    .contact-cooperation-box-form .form-group {
        height: 46rem;
        margin-bottom: 4px;
    }
    input, select, textarea,
    .province-city span,
    .select2-container--default .select2-selection--single .select2-selection__placeholder,
    .select2-container--default .select2-selection--single .select2-selection__rendered,
    .select2-results__option,
    .form-phone,.col-small-title,
    input::placeholder, select::placeholder, textarea::placeholder {
        font-size: 12px;
    }
    .select2-results__option {
        height: 20px;
    }
    .select2-container .select2-selection--single  {
        background-size: 9px 5px;
    }
    .select-icon {
        width: 9px;
        height: 5px;
    }
    .submit-btn {
        height: 36px;
        font-size: 12px;
        margin-bottom: 4px;
    }
    .form-phone {
        line-height: 1.5;
    }
    .province-city-box {
        top: 45rem;
    }


    .province-box {
        width: 100px;
    }
    .num-item .num-small-title {
        font-size: 12px;
        height: 28px;
        vertical-align: text-bottom;
    }
    .banner-title span {
        font-size: 12px;
    }
    .num-item {
        margin-right: 15px;
    }
    .num-box {
        bottom: 80rem;
    }
    .col-unit {
        font-size: 16px;
    }

    .swiper-slide.second-outside-item {
        height: 180px;
    }
    .swiper-slide.second-outside-item.swiper-slide-active {
        width: 558px;
    }
    .screen-inner {
        width: calc(100% - 60px);
        margin: 0 30px;
        box-sizing: border-box;
    }
    .third-title {
        font-size: 24px;
    }
    .third-desc, .equity-list-box h3 {
        font-size: 14px;
    }
    .equity-list-title h4 {
        font-size: 16px;
    }
}
.screen-inner {
    width: calc(100% - 200rem);
    position: relative;
    box-sizing: border-box;
}

.none {
    display: none !important;
}

@media screen and (min-width: 1400px){
    .banner-inner {
        width: 1400rem;
        margin: 0 auto;
    }
    .second-container, .property-type {
        width: 1400rem;
        margin: 0 auto;
    }
    .screen-inner,
    .six-inner-screen{
        width: 1400rem;
        position: relative;
        /* padding: 0 120px; */
        box-sizing: border-box;
    }
}
@media screen and (max-width: 1400px){
    .banner-inner {
        width: calc(100% - 200rem);
        padding: 0 100rem;
    }
    .property-type-inner-wrap, .six-inner-screen {
        width: calc(100% - 520rem);
        padding: 0 260rem;
    }
    .banner-title-box, .good-project-information {
        left: 100rem;
    }
    .slide-num{
        left: 62rem;
        top: 60rem;
    }
}
@media screen and (max-width: 1200px){
    .num-item {
        margin-right: 15px;
    }
    .num-item .num-small-title {
        font-size: 12px;
        height: 28px;
        vertical-align: text-bottom;
    }
    input, select, textarea,
    .province-city span,
    .select2-container--default .select2-selection--single .select2-selection__placeholder,
    .select2-container--default .select2-selection--single .select2-selection__rendered,
    .select2-results__option,
    .form-phone,
    input::placeholder, select::placeholder, textarea::placeholder,
    .col-small-title,
    .equity-num,
    .equity-title,
    .type-dec p,
    .project-info .six-item-desc,
    .type-swiper-pagination .swiper-pagination-bullet .pagination-bullet-text,
    .banner-title span {
        font-size: 12px;
    }
    .equity-box {
        height: 280rem;
    }
    .equity-slide .pagination-icon {
        width: 10px;
        height: 5px;
    }
    .equity-slide {
        height: 270rem;
    }
    .num-box {
        bottom: 70rem;
    }
    .col-unit {
        font-size: 16px;
    }
    .screen-inner {
        width: calc(100% - 60px);
        margin: 0 30px;
        box-sizing: border-box;
    }
}
@media screen and (max-width: 1225px){
    .col-small-title {
        font-size: 12px;
    }
}
