.swiper-container {
    width: 100%;
}

.swiper-home {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.swiper-slide-home::after {
    content: " ";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
}
.swiper-slide-home img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    transition: 1s linear 2s;
    transform: scale(1.1, 1.1);
}
.swiper-home .swiper-slide-active img,
.swiper-home .swiper-slide-duplicate-active img {
    transition: 5s linear;
    transform: scale(1, 1);
}

.swiper-banner {
    position: relative;
}

.swiper-layout {
    position: absolute;
    z-index: 2000;
    left: 0;
    top: 15%;
    right: 0px;
}

.swiper-title {
    color: #fff;
    font-size: 26px;
    line-height: 60px;
    font-weight: normal;
}

.swiper-subtitle {
    color: #fff;
    font-size: 14px;
    line-height: 28px;
    padding-top: 30px;
    margin-top: 0px;
    font-weight: normal;
}

@media (min-width: 576px) {
    .swiper-layout {
        top: 26%;
    }

    .swiper-title {
        font-size: 34px;
        line-height: 68px;
    }

    .swiper-subtitle {
        font-size: 15px;
        line-height: 36px;
        padding-top: 32px;
    }
}

@media (min-width: 768px) {
    .swiper-layout {
        top: 25%;
    }

    .swiper-title {
        font-size: 36px;
        line-height: 72px;
    }

    .swiper-subtitle {
        font-size: 16px;
        line-height: 38px;
        padding-top: 34px;
    }
}

@media (min-width: 992px) {
    .swiper-layout {
        top: 26%;
    }

    .swiper-title {
        font-size: 40px;
        line-height: 80px;
    }

    .swiper-subtitle {
        font-size: 17px;
        line-height: 40px;
        padding-top: 36px;
    }
}

@media (min-width: 1200px) {
    .swiper-layout {
        top: 35%;
    }

    .swiper-title {
        font-size: 46px;
        line-height: 92px;
    }

    .swiper-subtitle {
        float: right;
        font-size: 18px;
        line-height: 42px;
        padding-top: 10px;
        transform: translate3d(-100px, 0, 0);
    }
}

.explore-container {
    position: relative;
}

.swiper-explore {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.explore-layout {
    display: flex;
    height: 100vh;
    flex-direction: column;
}

.explore-layout-item {
    width: 100%;
    height: 50%;
    overflow: hidden;
}

.explore-layout-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: inline-block;
}

@keyframes move1 {
    0% {
        transform: scale(1.3) translateY(-50px);
    }
    50% {
        transform: scale(1.3) translateY(0px);
    }
    100% {
        transform: scale(1.3) translateY(-50px);
    }
}

@keyframes move2 {
    0% {
        transform: scale(1.3) translateY(50px);
    }
    50% {
        transform: scale(1.3) translateY(0px);
    }
    100% {
        transform: scale(1.3) translateY(50px);
    }
}

@keyframes move3 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes move4 {
    0% {
        transform: scale(1.3) translateX(-50px);
    }
    50% {
        transform: scale(1.3) translateX(0px);
    }
    100% {
        transform: scale(1.3) translateX(-50px);
    }
}

@keyframes move5 {
    0% {
        transform: scale(1.3) translateX(50px);
    }
    50% {
        transform: scale(1.3) translateX(0px);
    }
    100% {
        transform: scale(1.3) translateX(50px);
    }
}

.explore-layout img.left {
    transform: scale(1.3);
    animation: move4 10s 1.5s infinite alternate linear;
}

.explore-layout img.right {
    transform: scale(1.3);
    animation: move5 10s 1.5s infinite alternate linear;
}

.explore-layout img.move-last {
    animation: move3 10s 1.5s infinite alternate linear;
}

.explore-layout-item img.left {
    transform: scale(1.3) translateY(-50px);
}

.explore-layout-item img.right {
    transform: scale(1.3) translateY(50px);
}

.explore-layout-flag {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.explore-layout-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: inline-block;
}

.explore-layout-mask {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    justify-content: center;
    position: absolute;
    overflow: hidden;
    display: flex;
    z-index: 100;
}

.explore-layout-body {
    padding-top: 5vh;
}

.explore-layout-body h2 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 35px;
}

.explore-layout-body p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: left;
    line-height: 2.7vh;
}

.explore-biuff {
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    z-index: 100;
}

.explore-title {
    width: 240px;
    height: 52px;
    color: #fff;
    font-size: 22px;
    line-height: 52px;
    text-align: center;
    transform-origin: center;
    transition: transform 0.3s;
    cursor: pointer;
}

.explore-title:hover {
    color: #fff;
    text-decoration: none;
    transform: scale(1.2);
}

@media (min-width: 576px) {
    .explore-layout {
        flex-direction: column;
    }
    .explore-layout-item {
        width: 100%;
        height: 50%;
    }
    .explore-title {
        width: 260px;
        height: 54px;
        color: #fff;
        font-size: 22px;
        line-height: 54px;
    }
    .explore-layout-body h2 {
        font-size: 42px;
    }

    .explore-layout-body p {
        font-size: 17px;
    }
}

@media (min-width: 768px) {
    .explore-layout {
        flex-direction: column;
    }

    .explore-layout-item {
        width: 100%;
        height: 50%;
    }
    .explore-title {
        width: 260px;
        height: 52px;
        color: #fff;
        font-size: 23px;
        line-height: 52px;
    }
    .explore-layout-body h2 {
        font-size: 44px;
    }

    .explore-layout-body p {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .explore-layout {
        flex-direction: row;
    }

    .explore-layout-item {
        width: 50%;
        height: 100%;
    }
    .explore-title {
        width: 280px;
        height: 56px;
        color: #fff;
        font-size: 24px;
        line-height: 56px;
    }
    .explore-layout-body h2 {
        font-size: 46px;
    }

    .explore-layout-body p {
        font-size: 19px;
    }

    .explore-layout img.left {
        animation: move1 10s 1.5s infinite alternate linear;
    }

    .explore-layout img.right {
        animation: move2 10s 1.5s infinite alternate linear;
    }
}

@media (min-width: 1200px) {
    .explore-layout {
        flex-direction: row;
    }

    .explore-layout-item {
        width: 50%;
        height: 100%;
    }

    .explore-title {
        width: 300px;
        height: 60px;
        color: #fff;
        font-size: 25px;
        line-height: 60px;
    }

    .explore-layout-body h2 {
        font-size: 48px;
    }

    .explore-layout-body p {
        font-size: 20px;
    }
}

.product-container {
    position: relative;
    padding-bottom: 80px;
}

.product-container h2 {
    color: #fff;
    padding-top: 50px;
    font-weight: normal;
    padding-bottom: 50px;
    font-size: 38px;
}

.tabnav-link {
    min-width: 105px;
    height: 57px;
    margin-right: 1px;
    padding: 0px 5px 12px !important;
    background: url("https://cdn.all-soon.com/fosun_fam/image/v2/tabnav-bg1.png")
        no-repeat center top;
    background-size: 100% 88%;
    border: none;
    color: #ffffff;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex !important;
}

.tabnav-link span {
    font-size: 12px !important;
}

.tabnav-link img {
    height: 18px;
    margin-bottom: 3px;
    display: inline-block;
}

.tabnav-link.active {
    background-image: url("https://cdn.all-soon.com/fosun_fam/image/v2/tabnav-bg2.png");
    background-size: 100% 100%;
}

.product-tablist {
    color: #fff;
    margin-top: 50px;
}

.product-tablist h3 {
    margin-bottom: 30px;
    position: relative;
}

.product-tablist h3 span {
    font-size: 26px;
    padding-bottom: 8px;
}

.product-tablist h3::before {
    content: "";
    height: 2px;
    left: 0px;
    bottom: 0px;
    width: 100%;
    background-color: #5ccce9;
    position: absolute;
}

.product-tablist h3 span {
    height: 100%;
    position: relative;
    display: inline-block;
}

.product-tablist h3 span::before {
    content: "";
    height: 2px;
    width: 100%;
    left: 0px;
    bottom: 0px;
    background-color: #ffc819;
    display: inline-block;
    position: absolute;
}

.product-tablist p {
    font-size: 14px;
}

.product-tablist img {
    width: 100%;
    height: auto;
    min-height: 100%;
}

@media (min-width: 576px) {
    .product-container h2 {
        font-size: 40px;
    }
    .tabnav-link {
        height: 66px;
        min-width: 123px;
        padding: 0px 5px 12px !important;
    }

    .tabnav-link span {
        font-size: 13px !important;
    }

    .tabnav-link img {
        height: 21px;
        margin-bottom: 5px;
    }
    .product-tablist h3 span {
        font-size: 28px;
    }
    .product-tablist p {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .product-container h2 {
        font-size: 42px;
    }
    .tabnav-link {
        min-width: 140px;
        height: 76px;
        padding: 0px 5px 12px !important;
    }

    .tabnav-link span {
        font-size: 14px !important;
    }

    .tabnav-link img {
        height: 24px;
        margin-bottom: 7px;
    }

    .product-tablist h3 span {
        font-size: 32px;
    }
    .product-tablist p {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .product-container h2 {
        font-size: 44px;
    }
    .tabnav-link {
        min-width: 148px;
        height: 85px;
    }

    .tabnav-link img {
        height: 27px;
        margin-bottom: 9px;
    }

    .product-tablist h3 span {
        font-size: 36px;
    }
    .product-tablist p {
        font-size: 18px;
    }
}

@media (min-width: 1200px) {
    .product-container h2 {
        font-size: 46px;
    }
    .tabnav-link {
        min-width: 176px;
        height: 95px;
    }

    .tabnav-link img {
        height: 30px;
        margin-bottom: 12px;
    }

    .product-tablist h3 span {
        font-size: 40px;
    }
    .product-tablist p {
        font-size: 20px;
    }
}

.contact-container {
    position: relative;
    padding-bottom: 50px;
}

.contact-container h2 {
    color: #fff;
    padding-top: 50px;
    font-weight: normal;
    padding-bottom: 50px;
    font-size: 38px;
}

.contact-info {
    color: #fff;
    font-size: 14px;
    margin-bottom: 30px;
}

.contact-info a {
    color: #fff;
    font-size: 14px;
}

.contact-info img {
    height: 14px;
    margin-right: 8px;
    vertical-align: middle;
}

.contact-map {
    height: 400px;
}

.common-block {
    background: url("https://cdn.all-soon.com/fosun_fam/image/v2/comm-bg.png")
        no-repeat center center;
    background-size: cover;
}

@media (min-width: 576px) {
    .contact-container h2 {
        font-size: 40px;
    }
    .contact-info {
        font-size: 15px;
    }
    .contact-info a {
        font-size: 15px;
    }
    .contact-info img {
        height: 15px;
    }
}

@media (min-width: 768px) {
    .contact-container h2 {
        font-size: 42px;
    }
    .contact-info {
        font-size: 16px;
    }
    .contact-info a {
        font-size: 16px;
    }
    .contact-info img {
        height: 16px;
    }
}

@media (min-width: 992px) {
    .contact-container h2 {
        font-size: 44px;
    }
    .contact-info {
        font-size: 17px;
    }
    .contact-info a {
        font-size: 17px;
    }
    .contact-info img {
        height: 17px;
    }
}

@media (min-width: 1200px) {
    .contact-container h2 {
        font-size: 46px;
    }

    .contact-info {
        font-size: 18px;
    }

    .contact-info a {
        font-size: 18px;
    }

    .contact-info img {
        height: 18px;
    }
}
