@font-face {
    font-family: 'iconfont';
    src: url('/Public/Home/default/assets/fonts/iconfont.woff2') format('woff2'), url('/Public/Home/default/assets/fonts/iconfont.woff') format('woff'), url('/Public/Home/default/assets/fonts/iconfont.ttf') format('truetype');
}

@font-face {
    font-family: Figtree;
    src: url('/Public/Home/default/assets/fonts/Figtree-VariableFont_wght.ttf');
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html,
body {
    color: #272727;
    font-family: "Î¢ÈíÑÅºÚ", sans-serif;
    overflow: hidden;
}

input,
textarea {
    font-family: Figtree;
}

:root {
    --mainC: #1F4397;
}

.iconfont {
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}


/* ÐÞ¸Ä×ª¶¯ÌõµÄÑùÊ½ */

::-webkit-scrollbar {
    width: 8px;
    /* ×ª¶¯Ìõ¿í¶È */
    height: 8px;
    /* ×ª¶¯Ìõ¸ß¶È */
}


/* ÐÞ¸Ä×ª¶¯Ìõ»¬¿éµÄÑùÊ½ */

::-webkit-scrollbar-thumb {
    background-color: #15743A;
    /* »¬¿éÅä¾°ÑÕÉ« */
    border-radius: 6px;
    /* »¬¿éÔ²½Ç */
}

@keyframes fadeIniup {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.he_fadeup1 {
    -webkit-animation: fadeIniup 1s ease both;
    animation: fadeIniup 1s ease both;
    -ms-animation: fadeInUp 1s ease both;
    animation-delay: 0.3s;
}

.he_fadeup2 {
    -webkit-animation: fadeIniup 1s ease both;
    animation: fadeIniup 1s ease both;
    -ms-animation: fadeInUp 1s ease both;
    animation-delay: 0.5s;
}

.he_fadeup3 {
    -webkit-animation: fadeIniup 1s ease both;
    animation: fadeIniup 1s ease both;
    -ms-animation: fadeInUp 1s ease both;
    animation-delay: 0.7s;
}

.cpthActive.animated {
    -webkit-clip-path: polygon(100% 0, 0 0, 0% 100%, 100% 100%) !important;
}

.cpth {
    -webkit-clip-path: polygon(0% 0, 0 0, 0% 100%, 0% 100%);
    -webkit-transition: 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
}

.lazy-bg {
    width: 100%;
    background-color: #f5f5f5;
    /* Õ¼Î»Åä¾°ÖÂ */
    background-size: cover;
    /* Åä¾°Í¼×ÔË³Ó¦ */
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
    /* ¼ÓÔØ¹ý¶É£¬£¬ÓÅ»¯ÌåÑé */
}

img.lazy {
    width: 100%;
    /* ±ØÉè¿í¸ß£¬£¬·ñÔòÀÁ¼ÓÔØ¼ì²âÊ§Ð§ */
    height: 100%;
    object-fit: cover;
    /* ¼á³Ö±ÈÀý£¬£¬ÆÌÂúÈÝÆ÷ */
    background-color: #f5f5f5;
    /* Õ¼Î»É«£¨¼ÓÔØÇ°ÏÔÊ¾£© */
}


/* ¼ÓÔØÖÐ×´Ì¬£¨¿ÉÑ¡£© */

.lazy-bg.loading::after {
    content: "¼ÓÔØÖÐ...";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

header {
    width: 100%;
    height: 80px;
    position: absolute;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    padding: 20px 8vw;
    bottom: 0;
    transition: 0.3s all ease-in-out;
}

header .logo {
    width: 250px;
}

header .logo img:nth-child(2) {
    display: none;
}

header .right {
    display: flex;
    margin-top: 5px;
}

header .right nav ul {
    display: flex;
    align-items: center;
}

header .right nav ul li {
    width: 8vw;
    position: relative;
    text-align: center;
    color: white;
}

header .right nav ul li a {
    color: white;
    font-size: 20px;
    padding: 27px 0;
    font-weight: 400;
    border-bottom: 3px solid transparent;
}

header .right nav ul li ul {
    width: 100%;
    position: absolute;
    display: block;
    margin-top: 30px;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transition: 0.3s all;
}

header .right nav ul li ul li {
    width: auto;
    position: relative;
    margin: 15px 0;
}

header .right nav ul li ul li a {
    padding: 0;
    font-size: 16px;
    position: relative;
}

header .right nav ul li ul li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: #9bd19d;
    transition: 0.5s all;
    bottom: 0;
}

header .right nav ul li ul li:hover a {
    color: #9bd19d !important;
}

header .right nav ul li ul::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 274px;
    background: #f9f9f9;
    z-index: -1;
    left: 0%;
    opacity: 0;
}

header .right nav ul li ul.active::before {
    opacity: 1;
}

header .right nav ul li .serach {
    width: 0;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: 0.3s all;
}

header .right nav ul li .serach input {
    width: 0;
    border: transparent;
    border-bottom: 1px solid #ffffff;
    background: transparent;
    outline: none;
    font-size: 16px;
    color: #ffffff;
}

header .right nav ul li .serach input::placeholder {
    color: #ffffff;
}

header .right nav ul li .serach input.active {
    width: 100%;
    opacity: 1;
}

header .right nav ul li .serach i {
    user-select: none;
    font-size: 24px;
}

header .right nav ul li .serach.active {
    width: 180px;
}

header .right nav ul li:hover a {
    color: #9bd19d;
    border-bottom: 3px solid #9bd19d;
}

header .right nav ul li:hover ul li a {
    color: #333333;
    border: transparent;
}

header .right nav ul li:last-child {
    width: auto;
}

header::before {
    content: '';
    width: 100%;
    height: 10vw;
    position: absolute;
    left: 0;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
    z-index: -1;
}

header.active {
    height: 80px;
    background: white;
    top: 0;
    bottom: inherit;
}

header.active .logo img:nth-child(1) {
    display: none;
}

header.active .logo img:nth-child(2) {
    display: block;
}

header.active nav ul li {
    color: #333333;
}

header.active nav ul li a {
    color: #333333;
}

header.active nav ul li .serach input {
    border-bottom: 1px solid #333333;
    color: #333333;
}

header.active nav ul li .serach input::placeholder {
    color: #333333;
}

header::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
    top: 80px;
}

header.active::before {
    content: inherit;
}

header.active2 {
    height: 355px;
    background: white;
    box-shadow: 0px 9px 50px 0px rgba(8, 1, 3, 0.05);
}

header.active2 nav ul li {
    color: #333333;
}

header.active2 nav ul li a {
    color: #333333;
}

header.active2 nav ul li ul {
    opacity: 1;
    pointer-events: all;
}

header.active2::before {
    content: inherit;
}

.index {
    width: 100%;
    height: 100vh;
    position: relative;
}

.index .fullpage-swiper {
    width: 100%;
    height: 100vh;
}

.index .fullpage-swiper .swiper-slide {
    width: 100%;
    overflow: hidden;
    background: white;
}

.index .fullpage-swiper .page {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.index .fullpage-swiper .page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index .fullpage-swiper .fullpage-pagination {
    position: fixed;
    right: 20px;
    top: 50%;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 99;
}

.index .fullpage-swiper .fullpage-pagination .swiper-pagination-bullet {
    width: 0.7vw !important;
    height: 0.7vw !important;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    opacity: 0.4;
    transition: all 0.5s;
    color: white;
    font-size: 0.85vw;
}

.index .fullpage-swiper .fullpage-pagination .swiper-pagination-bullet font {
    margin-left: 1vw;
    position: relative;
    top: -0.3vw;
}

.index .fullpage-swiper .fullpage-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.index .fullpage-swiper .fullpage-pagination .swiper-pagination-bullet:nth-child(1) {
    top: -9vw;
    left: -1.45vw;
    position: absolute;
}

.index .fullpage-swiper .fullpage-pagination .swiper-pagination-bullet:nth-child(2) {
    top: -6.5vw;
    left: -2.5vw;
    position: absolute;
}

.index .fullpage-swiper .fullpage-pagination .swiper-pagination-bullet:nth-child(3) {
    top: -4vw;
    left: -3.2vw;
    position: absolute;
}

.index .fullpage-swiper .fullpage-pagination .swiper-pagination-bullet:nth-child(4) {
    top: -1.5vw;
    left: -3.5vw;
    position: absolute;
}

.index .fullpage-swiper .fullpage-pagination .swiper-pagination-bullet:nth-child(5) {
    top: 1vw;
    left: -3.45vw;
    position: absolute;
}

.index .fullpage-swiper .fullpage-pagination .swiper-pagination-bullet:nth-child(6) {
    top: 3.5vw;
    left: -3vw;
    position: absolute;
}

.index .fullpage-swiper .fullpage-pagination .swiper-pagination-bullet:nth-child(7) {
    top: 6vw;
    left: -2.25vw;
    position: absolute;
}

.index .fullpage-swiper .fullpage-pagination::before {
    content: '';
    position: absolute;
    width: 35vw;
    height: 35vw;
    border: 2px dashed rgba(255, 255, 255, 0.7);
    position: fixed;
    right: -32vw;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    pointer-events: none;
    transition: 0.5s all;
}

.index .fullpage-swiper .fullpage-pagination.active::before {
    border: 2px dashed rgba(16, 119, 50, 0.7);
}

.index .fullpage-swiper .fullpage-pagination.active .swiper-pagination-bullet {
    background: #107732;
    color: #107732;
}

.index .fullpage-swiper .fullpage-pagination2 {
    position: fixed;
    right: 3vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
}

.index .fullpage-swiper .fullpage-pagination2 .swiper-pagination-bullet {
    width: 0.7vw !important;
    height: 0.7vw !important;
    border-radius: 50%;
    background: #CCCCCC;
    cursor: pointer;
    transition: all 0.5s;
    color: white;
    font-size: 0.85vw;
    margin: 2vw 0;
    opacity: 1;
    transform: scale(0.9);
}

.index .fullpage-swiper .fullpage-pagination2 .swiper-pagination-bullet font {
    margin-left: 1vw;
    position: relative;
    top: -0.3vw;
}

.index .fullpage-swiper .fullpage-pagination2 .swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.1);
}

.index .fullpage-swiper .fullpage-pagination2::before {
    content: '';
    position: absolute;
    width: 0;
    height: 15.6vw;
    border: 1px solid rgba(255, 255, 255, 0.7);
    position: fixed;
    right: 0.31vw;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: 0.5s all;
    z-index: -1;
}

.index .fullpage-swiper .fullpage-pagination2.active::before {
    border: 1px solid #BED753;
}

.index .fullpage-swiper .fullpage-pagination2.active .swiper-pagination-bullet {
    background: #BED753;
    color: #BED753;
}

.index .fullpage-swiper .fullpage-pagination2.active .swiper-pagination-bullet-active {
    background: #1e924a;
    color: #1e924a;
    transform: scale(1.1);
}

.index .titBox {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.index .titBox .tit {
    position: relative;
}

.index .titBox .tit .cn {
    color: #333333;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 400;
}

.index .titBox .tit .en {
    position: relative;
    color: #999999;
    font-size: 20px;
    font-family: Figtree;
}

.index .titBox .tit .en::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: url('/Public/Home/default/assets/images/icon5.png') center no-repeat;
    background-size: cover !important;
    right: 0;
    top: 0.2vw;
}

.index .more {
    display: inline-block;
    border-radius: 5vw;
    border: 1px solid #333333;
    padding: 0.5vw 1.2vw;
    font-size: 14px;
    position: relative;
    box-sizing: border-box;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.7s cubic-bezier(0.435, 0.25, 0.15, 0.965);
}

.index .more .txt {
    position: relative;
    z-index: 10;
    line-height: 1;
}

.index .more i {
    margin-left: 0.5vw;
    font-size: 12px;
    position: relative;
    top: -1px;
}

.index .more:after {
    content: "";
    width: calc(100% + 1.56vw);
    height: calc(100% + 1.56vw);
    z-index: 2;
    background: linear-gradient(90deg, #6BAC6E 50%, #9ECC76 100%);
    border-radius: 5.21vw;
    transition: transform 0.7s cubic-bezier(0.435, 0.25, 0.15, 0.965);
    position: absolute;
    top: -0.78vw;
    left: -0.78vw;
    transform: translate(-101%);
}

.index .more:hover {
    border: 1px solid #6BAC6E;
}

.index .more:hover .txt {
    color: white;
}

.index .more:hover:after {
    transform: translate(0%);
}

.index .f1 {
    width: 100%;
    height: 100vh;
    position: relative;
}

.index .f1 .f1Swiper {
    width: 100%;
    height: 100vh;
}

.index .f1 .f1Swiper .swiper-slide {
    background: white;
}

.index .f1 .f1Swiper .swiper-slide .textImg {
    width: 80%;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    transition: 1s all;
    pointer-events: none;
}

.index .f1 .f1Swiper .swiper-slide .textImg .t {
    font-weight: 100;
}

.index .f1 .f1Swiper .swiper-slide .textImg .d {
    font-weight: bold;
}

.index .f1 .f1Swiper .swiper-slide .textImg2 {
    width: 70%;
    top: 45%;
}

.index .f1 .f1Swiper .swiper-slide .img {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    transform: scale(1.1);
    transition: 3s all;
    position: relative;
    z-index: 1;
}

.index .f1 .f1Swiper .swiper-slide-active .textImg {
    top: 45%;
}

.index .f1 .f1Swiper .swiper-slide-active .textImg2 {
    top: 35%;
}

.index .f1 .f1Swiper .swiper-slide-active .img {
    transform: scale(1);
}

.index .f1 .f1Swiper .swiper-pagination {
    bottom: 5vw;
}

.index .f1 .f1Swiper .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: white;
    margin: 0 0.2vw;
    opacity: 1;
    transition: 0.3s all ease;
}

.index .f1 .f1Swiper .swiper-pagination .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 3px;
    background-color: white;
}

.index .f2 {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    padding: 15vh 8vw 0 8vw;
}

.index .f2 .f2Box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 2vw;
}

.index .f2 .f2Box .f2Swiper {
    width: 50%;
    height: 30vw;
    overflow: hidden;
    border-radius: 10px;
    margin: 0;
}

.index .f2 .f2Box .f2Swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.index .f2 .f2Box .f2Swiper .swiper-slide .img {
    width: 100%;
    height: 100%;
    transition: 0.5s all;
    background-size: cover !important;
}

.index .f2 .f2Box .f2Swiper .swiper-slide .text {
    width: 100%;
    color: white;
    position: absolute;
    border-radius: 0vw 0vw 10px 10px;
    background: rgba(0, 0, 0, 0.4);
    bottom: 0;
    font-size: 16px;
    padding: 1vw 2vw;
}

.index .f2 .f2Box .f2Swiper .swiper-slide:hover .img {
    transform: scale(1.1);
}

.index .f2 .f2Box .f2Swiper .swiper-pagination {
    width: auto;
    background: black;
    right: 1vw;
    left: inherit;
    border-radius: 15px;
    padding: 0.5vw 10px;
    display: flex;
    bottom: 0.8vw;
    align-items: center;
}

.index .f2 .f2Box .f2Swiper .swiper-pagination .swiper-pagination-bullet {
    background: white;
}

.index .f2 .f2Box .f2ItemBox {
    width: 48%;
    height: 30vw;
    box-shadow: 0vw 0vw 3vw 0vw rgba(8, 1, 3, 0.15);
    border-radius: 10px;
    background: white;
    overflow: hidden;
}

.index .f2 .f2Box .f2ItemBox .f2Tab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0vw 1vw 1vw 0vw rgba(8, 1, 3, 0.03);
}

.index .f2 .f2Box .f2ItemBox .f2Tab .tab {
    width: 33%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333333;
    padding: 1vw 0;
    font-size: 20px;
    cursor: pointer;
}

.index .f2 .f2Box .f2ItemBox .f2Tab .tab img {
    width: 22px;
    height: 22px;
    margin-right: 0.5vw;
}

.index .f2 .f2Box .f2ItemBox .f2Tab .tab.active {
    background: url('/Public/Home/default/assets/images/icon6.jpg') center no-repeat;
    background-size: cover !important;
    color: white;
    border-radius: 5px 5px 0px 0px;
}

.index .f2 .f2Box .f2ItemBox .f2Tab .tab.active img {
    filter: invert(1);
}

.index .f2 .f2Box .f2ItemBox .f2Item {
    padding: 0 2vw;
    display: none;
}

.index .f2 .f2Box .f2ItemBox .f2Item .itemBox {
    display: block;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.index .f2 .f2Box .f2ItemBox .f2Item .itemBox .itemFirst {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 1.5vw 0;
    position: relative;
}

.index .f2 .f2Box .f2ItemBox .f2Item .itemBox .itemFirst .imgBox {
    width: 10vw;
    height: 6vw;
    border-radius: 5px;
    overflow: hidden;
}

.index .f2 .f2Box .f2ItemBox .f2Item .itemBox .itemFirst .imgBox .img {
    width: 100%;
    height: 100%;
    transition: 0.5s all;
    background-size: cover !important;
}

.index .f2 .f2Box .f2ItemBox .f2Item .itemBox .itemFirst .imgBox:hover .img {
    transform: scale(1.15);
}

.index .f2 .f2Box .f2ItemBox .f2Item .itemBox .itemFirst .text {
    width: 21vw;
    border-right: 1px solid #f0f0f0;
    padding: 0 1vw;
    line-height: 1.6;
}

.index .f2 .f2Box .f2ItemBox .f2Item .itemBox .itemFirst .text .tit {
    color: #434343;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.index .f2 .f2Box .f2ItemBox .f2Item .itemBox .itemFirst .text .des {
    color: #999999;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-top: 0.5vw;
}

.index .f2 .f2Box .f2ItemBox .f2Item .itemBox .itemFirst .time {
    font-family: Figtree;
    color: #999999;
    text-align: center;
    padding-left: 1vw;
}

.index .f2 .f2Box .f2ItemBox .f2Item .itemBox .itemFirst .time .day {
    font-size: 2vw;
    font-weight: bold;
}

.index .f2 .f2Box .f2ItemBox .f2Item .itemBox .itemFirst .time .year {
    font-size: 16px;
}

.index .f2 .f2Box .f2ItemBox .f2Item .itemBox .itemFirst:hover .time {
    color: #34b734;
}

.index .f2 .f2Box .f2ItemBox .f2Item .itemBox .item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    padding: 0.95vw 0;
    position: relative;
}

.index .f2 .f2Box .f2ItemBox .f2Item .itemBox .item .text {
    width: 80%;
    color: #434343;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.index .f2 .f2Box .f2ItemBox .f2Item .itemBox .item .time {
    color: #999999;
    font-size: 16px;
}

.index .f2 .f2Box .f2ItemBox .f2Item .itemBox .item:hover .time {
    color: #34b734;
}

.index .f2 .f2Box .f2ItemBox .f2Item .itemBox::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    background: #34b734;
    bottom: 0;
    transition: 0.5s all;
}

.index .f2 .f2Box .f2ItemBox .f2Item .itemBox:hover::before {
    width: 100%;
}

.index .f2 .f2Box .f2ItemBox .f2Item .itemBox.active .itemFirst {
    display: flex;
}

.index .f2 .f2Box .f2ItemBox .f2Item .itemBox.active .item {
    display: none;
}

.index .f2 .f2Box .f2ItemBox .f2Item.active {
    display: block;
}

.index .f3 {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    padding: 0 8vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.index .f3 .f3Text {
    width: 32vw;
}

.index .f3 .f3Text .des {
    font-size: 16px;
    line-height: 2;
    margin: 2vw 0;
    text-align: justify;
}

.index .f3 .f3Video {
    width: 48vw;
    height: 27vw;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.index .f3 .f3Video video,
.index .f3 .f3Video iframe{
    margin:0 auto;
    width: 100%;
    height: 100%;
    /*object-fit: cover;
    transition: 0.5s all ease;*/
}

.index .f3 .f3Video .pv-video-player{width:100% !important;height:27vw !important;}


.index .f3 .f3Video .play {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    text-align: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 9;
}

.index .f3 .f3Video .play img {
    width: 3.5vw;
    margin: 0 auto 1vw auto;
    transition: 0.5s all ease;
}
/*
.index .f3 .f3Video .play:hover img {
    transform: scale(1.2);
}

.index .f3 .f3Video:hover video {
    transform: scale(1.1);
}
*/
.index .f4 {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    padding: 2vw 8vw 0 8vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.index .f4 .f4Swiper {
    width: 48vw;
    height: 36.3vw;
    overflow: hidden;
    border-radius: 10px;
    margin: 0;
    box-shadow: 0vw 0vw 1vw 0vw rgba(8, 1, 3, 0.22);
}

.index .f4 .f4Swiper .swiper-slide {
    position: relative;
}

.index .f4 .f4Swiper .swiper-slide .img {
    width: 100%;
    height: 100%;
    transition: 0.5s all;
    background-size: cover !important;
}

.index .f4 .f4Swiper .swiper-slide .text {
    width: 100%;
    color: white;
    position: absolute;
    border-radius: 0vw 0vw 10px 10px;
    background: rgba(0, 0, 0, 0.4);
    bottom: 0;
    font-size: 16px;
    padding: 1vw 2vw;
}

.index .f4 .f4Swiper .swiper-slide:hover .img {
    transform: scale(1.1);
}

.index .f4 .f4Swiper .swiper-pagination {
    width: auto;
    background: black;
    right: 3vw;
    left: inherit;
    border-radius: 15px;
    padding: 0.5vw 10px;
    display: flex;
    bottom: 0.8vw;
    align-items: center;
}

.index .f4 .f4Swiper .swiper-pagination .swiper-pagination-bullet {
    background: white;
}

.index .f4 .f4Box {
    width: 35vw;
    height: 35vw;
    position: relative;
    z-index: 2;
}

.index .f4 .f4Box .titBox {
    padding-left: 2vw;
}

.index .f4 .f4Box .titBox .tit .en::before {
    right: -2vw;
}

.index .f4 .f4Box .f4Item {
    background-color: #f9f9f9;
    box-shadow: 0vw 0vw 3vw 0vw rgba(8, 1, 3, 0.15);
    border-radius: 10px;
    margin-top: 2vw;
    padding: 0 1vw;
}

.index .f4 .f4Box .f4Item .item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #E9F3EA;
    padding: 0.73vw 0;
}

.index .f4 .f4Box .f4Item .item .icon {
    color: white;
    position: absolute;
    z-index: 2;
    left: -4vw;
    font-size: 2vw;
    opacity: 0;
    transform: scale(0);
    transition: 0.5s all;
}

.index .f4 .f4Box .f4Item .item .imgBox {
    width: 7vw;
    height: 4.5vw;
    border-radius: 5px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid #d1d1d1;
}

.index .f4 .f4Box .f4Item .item .imgBox .img {
    width: 100%;
    height: 100%;
    transition: 0.5s all;
    background-size: cover !important;
}

.index .f4 .f4Box .f4Item .item .text {
    width: 25vw;
    position: relative;
    z-index: 2;
}

.index .f4 .f4Box .f4Item .item .text .t {
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.index .f4 .f4Box .f4Item .item .text .d {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    color: #999999;
    margin-top: 0.3vw;
}

.index .f4 .f4Box .f4Item .item:hover .img {
    transform: scale(1.1);
}

.index .f4 .f4Box .f4Item .item:first-child {
    padding-top: 0.65vw;
}

.index .f4 .f4Box .f4Item .item:last-child {
    padding-bottom: 0.65vw;
    border: transparent;
}

.index .f4 .f4Box .f4Item .item.active::before {
    content: '';
    position: absolute;
    width: 118%;
    height: 100%;
    background: linear-gradient(90deg, #6BAC6E 50%, #9ECC76 100%);
    z-index: 1;
    right: -1vw;
    top: 0;
    border-radius: 10px;
    border: 1px solid white;
    opacity: 0.9;
}

.index .f4 .f4Box .f4Item .item.active .icon {
    opacity: 1;
    transform: scale(1);
}

.index .f4 .f4Box .f4Item .item.active .text {
    color: white;
}

.index .f4 .f4Box .f4Item .item.active .text .d {
    color: white;
}

.index .f5 {
    width: 100%;
    height: 100%;
    background-size: cover !important;
}

.index .f5 .titBox {
    padding: 10vw 8vw 0 8vw;
    position: absolute;
    z-index: 2;
}

.index .f5 .titBox .tit .cn {
    color: white;
}

.index .f5 .titBox .tit .en {
    color: white;
}

.index .f5 .f5Swiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.index .f5 .f5Swiper .swiper-slide .slide-inner {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.2) !important;
}

.index .f5 .f5Swiper .swiper-slide .slide-inner .text {
    color: white;
    width: 50vw;
    padding-left: 8vw;
    padding-top: 16vw;
}

.index .f5 .f5Swiper .swiper-slide .slide-inner .text .t {
    font-size: 30px;
}

.index .f5 .f5Swiper .swiper-slide .slide-inner .text .d {
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
    margin: 1vw 0 2vw 0;
}

.index .f5 .f5Swiper .swiper-slide .slide-inner .text .more {
    color: white;
    border: 1px solid white;
}

.index .f5 .f5Box {
    width: 100%;
    position: absolute;
    bottom: 10vh;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 8vw;
}

.index .f5 .f5Box .item {
    color: white;
    font-size: 20px;
    position: relative;
    cursor: pointer;
    opacity: 0.5;
}

.index .f5 .f5Box .item::before {
    content: '';
    position: absolute;
    width: 3vw;
    height: 3vw;
    border: 1px solid white;
    border-radius: 50%;
    left: 50%;
    margin-top: -4vw;
    transform: translateX(-50%);
}

.index .f5 .f5Box .item::after {
    content: '';
    position: absolute;
    width: 1vw;
    height: 1vw;
    background: white;
    border-radius: 50%;
    left: 50%;
    margin-top: -3vw;
    transform: translateX(-50%);
}

.index .f5 .f5Box .item.active::after {
    content: '';
    position: absolute;
    width: 1vw;
    height: 1vw;
    background: url('/Public/Home/default/assets/images/icon1.png') center no-repeat;
    background-size: contain !important;
    border-radius: 50%;
    left: 50%;
    margin-top: -3vw;
    transform: translateX(-50%);
}

.index .f5 .f5Box .active {
    opacity: 1;
}

.index .f5 .f5Box::before {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    margin-top: -2.5vw;
    border: 1px dashed rgba(255, 255, 255, 0.7);
}

.index .f6 {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    padding: 2vw 8vw 0 8vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.index .f6 .f6Box {
    width: 26.5vw;
    height: 35vw;
    box-shadow: 0vw 0vw 3vw 0vw rgba(8, 1, 3, 0.15);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.index .f6 .f6Box .img {
    width: 100%;
    height: 12vw;
    position: absolute;
    transition: 0.5s all;
    overflow: hidden;
}

.index .f6 .f6Box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
}

.index .f6 .f6Box .itemBox {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 2vw;
    transform: translateY(12vw);
    transition: 0.5s all;
}

.index .f6 .f6Box .itemBox .titBox {
    margin-bottom: 1vw;
}

.index .f6 .f6Box .itemBox .titBox .tit {
    color: #34b734;
    font-size: 24px;
    font-weight: 400;
}

.index .f6 .f6Box .itemBox .titBox .mores {
    color: #999999;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.index .f6 .f6Box .itemBox .titBox .mores i {
    font-size: 12px;
    margin-left: 0.5vw;
    position: relative;
}

.index .f6 .f6Box .itemBox .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    padding: 0.6vw 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.index .f6 .f6Box .itemBox .item .name {
    width: 75%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.index .f6 .f6Box .itemBox .item .time {
    color: #999999;
    font-size: 16px;
}

.index .f6 .f6Box .itemBox .item::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    background: white;
    bottom: 0;
    transition: 0.5s all;
}

.index .f6 .f6Box .itemBox .item:nth-child(n+8) {
    display: none;
}

.index .f6 .active .img {
    height: 100%;
}

.index .f6 .active .itemBox {
    background: linear-gradient(180deg, rgba(107, 172, 110, 0.9) 50%, rgba(158, 204, 118, 0.9) 100%);
    transform: translateY(0);
}

.index .f6 .active .itemBox .titBox .tit {
    color: white;
}

.index .f6 .active .itemBox .titBox .mores {
    color: white;
}

.index .f6 .active .itemBox .item .name {
    color: white;
}

.index .f6 .active .itemBox .item .time {
    color: white;
}

.index .f6 .active .itemBox .item:hover::before {
    width: 100%;
}

.index .f6 .active .itemBox .item:nth-child(n+8) {
    display: flex;
}

.footer {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    padding: 12vw 8vw 2vw 8vw;
    color: white;
}

.footer .footerHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .footerHeader .tit {
    font-size: 28px;
    font-weight: 400;
}

.footer .footerHeader .backTops {
    text-align: center;
    cursor: pointer;
}

.footer .footerHeader .backTops i {
    font-size: 3vw;
}

.footer .footerHeader .backTops p {
    margin-top: 0.5vw;
    font-size: 16px;
}

.footer .footerContent {
    width: 100%;
    position: relative;
    padding: 2vw 0 4vw 0;
    margin-top: 1vw;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: space-between;
}

.footer .footerContent .footerNav {
    /* width: 50vw; */
}

.footer .footerContent .footerNav ul {
    display: flex;
}

.footer .footerContent .footerNav ul li {
    display: block;
    margin-right: 5vw;
}

.footer .footerContent .footerNav ul li a {
    color: white;
    display: table;
    opacity: 0.9;
    font-size: 16px;
    margin-top: 0.7vw;
    position: relative;
}

.footer .footerContent .footerNav ul li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: white;
    transition: 0.5s all;
    bottom: 0;
}

.footer .footerContent .footerNav ul li a:first-child {
    font-size: 20px;
    opacity: 1;
    margin-top: 0;
    margin-bottom: 1.5vw;
}

.footer .footerContent .footerNav ul li a:hover::before {
    width: 100%;
}

.footer .footerContent .footerNav ul li:last-child {
    margin-right: 0;
}

.footer .footerContent .qrcodeBox {
    width: 18vw;
}

.footer .footerContent .qrcodeBox .qrcodeItem {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
}

.footer .footerContent .qrcodeBox .qrcodeItem .qrcode {
    text-align: center;
    font-size: 14px;
    margin-bottom: 1vw;
    margin-left: 1vw;
}

.footer .footerContent .qrcodeBox .qrcodeItem .qrcode img {
    width: 5vw;
    margin: 0 auto 0.5vw auto;
}

.footer .footerContent .friendsBox {
    position: absolute;
    bottom: 1vw;
}

.footer .footerContent .friendsBox select {
    font-size: 16px;
    background: transparent;
    border: transparent;
    border-bottom: 1px solid white;
    color: white;
    outline: none;
}

.footer .footerContent .friendsBox select option {
    color: #333333;
}

.footer .footerBottom {
    text-align: center;
    padding: 1vw 0;
}

.footer .footerBottom .info {
    font-size: 16px;
    opacity: 0.8;
    line-height: 2;
    display: flex;
    justify-content: center;
}

.footer .footerBottom .info font {
    margin: 0 1vw;
}

.footer .footerBottom .info a {
    color: white;
    display: block;
    margin-left: 10px;
}

.pc {
    display: block;
}

.mobile {
    display: none;
}

@media screen and (max-width: 1660px) {
    .index .f2 .f2Box .f2ItemBox .f2Item .itemBox .itemFirst {
        padding: 1vw 0;
    }
    .index .f2 .f2Box .f2ItemBox .f2Item .item {
        padding: 0.78vw 0;
    }
    .index .f4 .f4Box .f4Item .item {
        padding: 0.65vw 0;
    }
    .footer .footerContent .qrcodeBox {
        width: 23vw;
    }
    .index .f2 .f2Box .f2ItemBox .f2Item .itemBox .itemFirst .text .des {
        -webkit-line-clamp: 1;
    }
    .footer .footerContent .footerNav ul li a {
        font-size: 14px;
    }
    .footer .footerContent .footerNav ul li a:first-child {
        font-size: 18px;
    }
    .footer .footerContent .footerNav ul li {
        margin-right: 3vw;
    }
    .index .f6 .f6Box .itemBox .item {
        padding: 0.6vw 0;
    }
}

@media screen and (max-width: 1440px) {
    header .right nav ul li ul li {
        margin: 12px 0;
    }
    .index .f2 .f2Box .f2ItemBox .f2Item .itemBox.active .item {
        display: none;
    }
    .index .f2 .f2Box .f2ItemBox .f2Item .itemBox .itemFirst {
        padding: 1vw 0;
    }
    .index .f2 .f2Box .f2ItemBox .f2Item .itemBox .item {
        padding: 0.8vw 0;
    }
    .index .f4 .f4Box .f4Item .item {
        padding: 0.6vw 0;
    }
    .index .f6 .f6Box {
        height: 39vw;
    }
    .index .f6 .f6Box .itemBox .item {
        padding: 0.8vw 0;
    }
    .index .f6 .f6Box.active .itemBox .item {
        padding: 0.75vw 0;
    }
    .footer .footerContent {
        padding: 2vw 0 5vw 0;
    }
    .footer .footerContent .footerNav ul li {
        margin-right: 3vw;
    }
    .footer .footerContent .qrcodeBox {
        width: 25vw;
    }
    .index .f6 .f6Box .itemBox .titBox {
        margin-bottom: 1vw;
    }
    .index .f6 .f6Box .itemBox .titBox .mores {
        font-size: 14px;
    }
    .index .f6 .f6Box .itemBox .titBox .mores i {
        top: 0;
    }
    .index .f5 .f5Box {
        bottom: 5vh;
    }
    .index .f3 .f3Text {
        width: 40vw;
    }
    .index .f3 .f3Video {
        width: 42vw;
    }
}

@media screen and (max-width: 1366px) {
    .index .f2 .f2Box .f2ItemBox .f2Item .item {
        padding: 0.7vw 0;
    }
    .index .f6 .f6Box .img {
        height: 13vw;
    }
    .index .f6 .f6Box .itemBox {
        transform: translateY(13vw);
    }
    .index .f6 .f6Box.active .itemBox {
        transform: translateY(0);
    }
    .index .f6 .f6Box.active .itemBox .item {
        padding: 0.7vw 0;
    }
    .index .f6 .active .img {
        height: 100%;
    }
    .index .f4 .f4Box .f4Item {
        margin-top: 1.5vw;
    }
    .index .f6 .f6Box .itemBox .item {
        padding: 0.7vw 0;
    }
    .footer .footerContent .footerNav ul li {
        margin-right: 3vw;
    }
    .footer .footerContent .qrcodeBox {
        width: 22vw;
    }
}

@media screen and (max-width: 900px) {
    .pc {
        display: none;
    }
    .mobile {
        display: block;
    }
    .index .f1 .f1Swiper .swiper-slide .textImg {
        width: 90%;
    }
    .index .fullpage-swiper .fullpage-pagination2 {
        right: 1vw;
    }
    .index .f1 .f1Swiper .swiper-pagination .swiper-pagination-bullet {
        margin: 0 1vw;
    }
    .index .fullpage-swiper .fullpage-pagination2 .swiper-pagination-bullet {
        width: 10px !important;
        height: 10px !important;
        margin: 3vw 0;
    }
    .index .fullpage-swiper .fullpage-pagination2::before {
        height: 32vw;
        right: 1.1vw;
    }
    .index .fullpage-swiper .fullpage-pagination2 .swiper-pagination-bullet font {
        display: none;
    }
    .sp_header {
        background: #ffffff;
        height: 50px;
        overflow: hidden;
        position: fixed;
        z-index: 990;
        width: 100%;
        top: 0;
        transition: 0.3s all ease-in-out;
    }
    .sp_header.active {
        background: rgba(0, 0, 0, 0.7);
    }
    .sp_logo {
        padding: 9px 15px;
        float: left;
    }
    .sp_logo img {
        margin: auto;
        width: 200px;
        transition: 0.35s all ease-in-out;
    }
    .sp_nav {
        width: 50px;
        height: 50px;
        float: right;
        position: relative;
        cursor: pointer;
        margin: 0 2vw;
    }
    .sp_nav span {
        display: block;
        background: #15743A;
        width: 30px;
        height: 2px;
        position: absolute;
        left: 10px;
        transition: all ease 0.35s;
    }
    .sp_nav span:nth-of-type(1) {
        top: 15px;
    }
    .sp_nav span:nth-of-type(2) {
        top: 25px;
    }
    .sp_nav span:nth-of-type(3) {
        top: 35px;
    }
    .sp_nav_se span:nth-of-type(1) {
        top: 25px;
        transform: rotate(45deg);
    }
    .sp_nav_se span:nth-of-type(2) {
        width: 0;
    }
    .sp_nav_se span:nth-of-type(3) {
        top: 25px;
        transform: rotate(-45deg);
    }
    .nav_sp_logo {
        width: 40px !important;
        position: fixed;
        z-index: 999;
    }
    .sp_flex {
        display: flex;
    }
    .sp_black {
        width: 50px;
        height: 100%;
        position: fixed;
        background: black;
        right: -100%;
        top: 0;
        transition: top ease 0.35s;
    }
    .sjj_nav {
        position: fixed;
        z-index: 999;
        background: white;
        width: 85%;
        height: 100%;
        font-size: 14px;
        line-height: 40px;
        top: 0;
        right: -100%;
        padding-top: 22vw;
        overflow: auto;
        overflow-x: hidden;
        transition: right ease 0.35s;
    }
    .sp_flex .mengBan {
        width: 15%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        position: fixed;
        z-index: 999;
        top: 0;
        right: -100%;
        transition: right ease 0.35s;
    }
    .nav_show2 {
        right: 85% !important;
    }
    .nav_show {
        right: 0;
    }
    .sp_bottom {
        width: 100%;
        margin: 8vw auto;
        display: inline-block;
        text-align: center;
    }
    .sp_bottom .sp_serach {
        width: 31vw;
        height: 12vw;
        background-color: #ffffff;
        border-radius: 30px;
        border: 1px solid #777777;
        display: inline-block;
        text-align: center;
        font-size: 14px;
        margin-right: 5vw;
    }
    .sp_bottom .sp_serach i {
        color: black;
        font-size: 16px;
        margin-right: 2vw;
    }
    .sp_bottom .sp_lag {
        width: 31vw;
        height: 12vw;
        display: inline-block;
        background-color: #ffffff;
        border-radius: 30px;
        border: 1px solid #777777;
        text-align: center;
    }
    .sp_bottom .sp_lag i {
        color: black;
        font-size: 16px;
        margin-right: 2vw;
    }
    .sjj_nav>ul>li:first-child {
        overflow: hidden;
        border-top: 0;
    }
    .sjj_nav>ul>li:first-child>a {
        /*float: left;*/
        /*width: calc(100% - 70px)*/
    }
    .sjj_nav>ul>li:first-child .language {
        float: right;
        width: 70px;
        overflow: hidden;
        line-height: 30px;
        margin-top: 5px;
    }
    .sjj_nav>ul>li:first-child .language a {
        width: 35px;
        float: left;
        border-left: 1px #ddd solid;
        text-align: center;
        color: #999;
    }
    .sjj_nav ul li i {
        position: absolute;
        top: 17px;
        right: 0;
        height: 30px;
        padding: 0 7px;
    }
    .sjj_nav ul li i svg {
        display: block;
        opacity: 1;
        transform: rotate(-90deg);
        transition: all ease 0.35s;
    }
    .sjj_nav ul li .sjj_nav_i_se svg {
        display: block;
        opacity: 1;
        transform: rotate(0);
    }
    .sjj_nav ul li {
        border-top: 1px #ddd solid;
        position: relative;
        line-height: 55px;
        font-size: 14px;
    }
    .sjj_nav ul li.active {
        background: #f3f3f3;
    }
    .sjj_nav>ul>li:last-child {
        border-bottom: 1px #ddd solid;
    }
    .sjj_nav ul li ul {
        background: #f3f3f3;
        display: none;
        border-top: 1px #ddd solid;
        padding: 10px 0;
    }
    .sjj_nav ul li a {
        color: rgba(0, 0, 0, 0.8);
        width: 80%;
        display: block;
        font-size: 16px;
        padding-left: 25px;
    }
    .sjj_nav ul li ul li {
        border: transparent;
        line-height: 30px;
    }
    .sjj_nav ul li ul li a {
        color: rgba(0, 0, 0, 0.5);
        display: block;
        text-align: left;
        font-size: 14px;
        padding-left: 45px;
    }
    .sjj_nav ul li i svg {
        width: 20px;
        height: 20px;
        fill: #15743A;
    }
    .sjj_nav ul li .sjj_nav_i_se svg {
        fill: #15743A;
    }
    .sjj_nav ul li ul li>ul {
        margin-left: 10px;
    }
    .sjj_nav .iconBox {
        width: 100%;
        display: inline-block;
        text-align: center;
        margin-top: 15vw;
    }
    .sjj_nav .iconBox .icon {
        width: 50px;
        margin: 0 3vw;
        display: inline-block;
    }
    .sp_flex .sjj_nav .close {
        font-size: 36px;
        position: absolute;
        right: 2vw;
        top: 2vw;
        color: #15743A;
    }
    .sp_flex .sjj_nav .bgImg {
        position: absolute;
        width: 70vw;
        top: 60vw;
        z-index: -1;
        right: 0;
    }
    .index .titBox .tit .cn {
        font-size: 22px;
    }
    .index .titBox .tit .en {
        font-size: 14px;
    }
    .index .f2 {
        padding: 10vw 5vw;
    }
    .index .titBox .tit .en::before {
        width: 11px;
        height: 11px;
        right: -5vw;
        top: 0.5vw;
    }
    .index .more {
        font-size: 14px;
        padding: 5px 10px;
    }
    
    .index .f2 .f2Box {
        display: block;
        margin-top: 5vw;
    }
    .index .f2 .f2Box .f2Swiper {
        width: 100%;
        height: 50vw;
        border-radius: 5px;
    }
    .index .f2 .f2Box .f2Swiper .swiper-wrapper {
        display: flex;
    }
    .index .f2 .f2Box .f2Swiper .swiper-slide .text {
        font-size: 14px;
        padding: 3vw;
    }
    .index .f2 .f2Box .f2ItemBox {
        width: 100%;
        height: auto;
        border-radius: 5px;
        margin-top: 5vw;
    }
    .index .f2 .f2Box .f2ItemBox .f2Tab .tab {
        font-size: 16px;
        padding: 2vw 0;
    }
    .index .f2 .f2Box .f2ItemBox .f2Tab .tab img {
        width: 16px;
        height: 16px;
        margin-right: 1vw;
    }
    .index .f2 .f2Box .f2ItemBox .f2Item {
        padding: 3vw;
    }
    .index .f2 .f2Box .f2ItemBox .f2Item .itemFirst {
        display: none;
    }
    .index .f2 .f2Box .f2ItemBox .f2Item .itemBox .item {
        font-size: 14px;
        padding: 3vw 0;
    }
    .index .f2 .f2Box .f2ItemBox .f2Item .itemBox .item .text {
        width: 78%;
    }
    .index .f2 .f2Box .f2ItemBox .f2Item .itemBox .item .time {
        font-size: 12px;
    }
    .index .f2 .f2Box .f2Swiper .swiper-pagination {
        bottom: 3vw;
        right: 1vw;
        padding: 5px;
    }
    .index .f2 .f2Box .f2Swiper .swiper-pagination .swiper-pagination-bullet {
        width: 5px;
        height: 5px;
    }
    .index .f3 {
        padding: 10vw 5vw;
        display: block;
    }
    .index .f3 .f3Text {
        width: 100%;
    }
    .index .f3 .f3Text .des {
        font-size: 14px;
    }
    .index .f3 .f3Text .more {
        margin: 5vw 0;
    }
    .index .f3 .f3Video {
        width: 100%;
        height: 50vw;
        margin-top: 5vw;
        border-radius: 5px;
    }
    
    .index .f3 .f3Video .plv-player-container{width:100% !important;height:50vw !important;}
    .index .f3 .f3Video .play img {
        width: 40px;
    }
    .index .f3 .f3Video .play {
        font-size: 14px;
    }
    .index .f4 {
        padding: 10vw 5vw;
        display: block;
    }
    .index .f4 .f4Swiper {
        display: none;
    }
    .index .f4 .f4Box {
        width: 100%;
        height: auto;
        margin-top: 5vw;
    }
    .index .f4 .f4Box .titBox .tit .en::before {
        right: -5vw;
    }
    .index .f4 .f4Box .f4Item {
        box-shadow: inherit;
        margin-top: 5vw;
        border-radius: 0;
    }
    .index .f4 .f4Box .f4Item .item:first-child {
        padding: 0;
        display: block;
        margin-bottom: 2vw;
    }
    .index .f4 .f4Box .f4Item .item.active::before {
        content: inherit;
    }
    .index .f4 .f4Box .f4Item .item:first-child .imgBox {
        width: 100%;
        height: 50vw;
        border: transparent;
    }
    .index .f4 .f4Box .f4Item .item:first-child .text {
        width: 100%;
        position: absolute;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        padding: 3vw;
        color: white;
    }
    .index .f4 .f4Box .f4Item .item {
        padding: 3vw 0;
    }
    .index .f4 .f4Box .f4Item .item .imgBox {
        width: 30vw;
        height: 18vw;
    }
    .index .f4 .f4Box .f4Item .item .text {
        width: 55vw;
    }
    .index .f4 .f4Box .f4Item .item .text .t {
        font-size: 14px;
        -webkit-line-clamp: 1;
    }
    .index .f4 .f4Box .f4Item .item .text .d {
        font-size: 12px;
        margin-top: 15px;
        -webkit-line-clamp: 1;
    }
    .index .f5 .titBox {
        padding-top: 10vw;
        padding-left: 5vw;
    }
    .index .f5 .f5Swiper .swiper-slide .slide-inner .text {
        width: 95%;
        padding-left: 5vw;
        padding-top: 30vw;
    }
    .index .f5 .f5Swiper .swiper-slide .slide-inner .text .t {
        font-size: 18px;
    }
    .index .f5 .f5Swiper .swiper-slide .slide-inner .text .d {
        font-size: 14px;
        margin: 5vw 0;
    }
    .index .f5 .f5Box .item {
        font-size: 16px;
    }
    .index .f5 .f5Box::before {
        top: -3.5vw;
    }
    .index .f5 .f5Box .item::before {
        width: 8vw;
        height: 8vw;
        margin-top: -10vw;
    }
    .index .f5 .f5Box .item.active::after {
        width: 3vw;
        height: 3vw;
        margin-top: -7vw;
    }
    .index .f5 .f5Box .item::after {
        width: 2vw;
        height: 2vw;
        margin-top: -6.5vw;
    }
    .index .f6 {
        padding: 10vw 5vw;
        display: block;
    }
    .index .f6 .f6Box {
        width: 100%;
        height: 125vw;
        margin-bottom: 5vw;
        border-radius: 5px;
        overflow: hidden;
    }
    .index .f6 .f6Box .img {
        height: 45vw;
    }
    .index .f6 .active .img {
        height: 100%;
    }
    .index .f6 .f6Box .itemBox {
        padding: 5vw;
        height: 100%;
        transform: translateY(45vw);
    }
    .index .f6 .f6Box .itemBox .titBox {
        margin-bottom: 2vw;
    }
    .index .f6 .f6Box .itemBox .titBox .tit {
        font-size: 20px;
    }
    .index .f6 .f6Box .itemBox .item {
        font-size: 14px;
        padding: 2.5vw 0;
    }
    .index .f6 .f6Box .itemBox .item:nth-child(n+8) {
        display: none;
    }
    .index .f6 .f6Box.active .itemBox .item {
        padding: 2.5vw 0;
    }
    .index .f6 .f6Box.active .itemBox .item:nth-child(n+8) {
        display: flex;
    }
    .index .f6 .f6Box .itemBox .item .name {
        width: 75%;
        font-size: 14px;
    }
    .index .f6 .f6Box .itemBox .item .time {
        font-size: 12px;
    }
    .index .f6 .f6Box .itemBox .titBox .mores {
        font-size: 14px;
    }
    .index .f6 .f6Box .itemBox .titBox .mores i {
        font-size: 12px;
        top: 0.3vw;
    }
    .footer {
        padding: 10vw 2vw 5vw 2vw;
    }
    .footer .footerHeader .tit {
        font-size: 18px;
    }
    .footer .footerHeader .backTops {
        display: none;
    }
    .footer .footerContent {
        padding: 5vw 0;
        margin-top: 5vw;
        display: block;
    }
    .footer .footerContent .footerNav {
        display: none;
    }
    .footer .footerContent .qrcodeBox {
        width: 100%;
    }
    .footer .footerContent .qrcodeBox .tit {
        font-size: 16px;
    }
    .footer .footerContent .qrcodeBox .qrcodeItem .qrcode {
        width: 30%;
        font-size: 12px;
        margin-top: 5vw;
    }
    .footer .footerContent .qrcodeBox .qrcodeItem .qrcode img {
        width: 20vw;
    }
    .footer .footerContent .friendsBox {
        position: relative;
        bottom: inherit;
        margin-top: 5vw;
    }
    .footer .footerContent .friendsBox select {
        font-size: 14px;
    }
    .footer .footerBottom {
        padding: 3vw 0;
    }
    .footer .footerBottom .info {
        font-size: 12px;
        display: block;
        line-height: 1.7;
    }
    .footer .footerBottom .info font {
        display: none;
    }
    .footer .footerBottom .info a {
        margin-left: 0;
    }
    html,
    body {
        overflow: inherit;
    }
    .index {
        height: auto;
    }
    .index .fullpage-swiper {
        height: auto;
        overflow: inherit;
        margin-top: 50px;
    }
    .index .fullpage-swiper .swiper-wrapper {
        display: block;
    }
    .index .f1 {
        height: 80vw;
    }
    .index .f1 .f1Swiper {
        height: 100%;
    }
    .index .f1 .f1Swiper .swiper-wrapper {
        display: flex;
    }
    .index .fullpage-swiper .fullpage-pagination2 {
        display: none;
    }
    .index .f5 .f5Swiper .swiper-wrapper {
        display: flex;
    }
    .index .f5 {
        height: 90vh;
    }
    .index .f5 .f5Box {
        padding: 0 5vw;
        bottom: 10vw;
    }
    .index .f2 .f2Box .f2ItemBox .f2Item .item .text {
        font-size: 14px;
    }
    .index .f2 .f2Box .f2ItemBox .f2Item .itemBox.active .itemFirst {
        display: flex;
    }
    .index .f2 .f2Box .f2ItemBox .f2Item .itemBox .itemFirst .imgBox {
        width: 26vw;
        height: 16vw;
    }
    .index .f2 .f2Box .f2ItemBox .f2Item .itemBox .itemFirst .text {
        width: 42vw;
        padding: 0 2vw 0 1vw;
    }
    .index .f2 .f2Box .f2ItemBox .f2Item .itemBox .itemFirst .text .tit {
        font-size: 14px;
        line-height: 2;
    }
    .index .f2 .f2Box .f2ItemBox .f2Item .itemBox .itemFirst .text .des {
        display: none;
    }
    .index .f2 .f2Box .f2ItemBox .f2Item .itemBox .itemFirst .time .day {
        font-size: 16px;
    }
    .index .f2 .f2Box .f2ItemBox .f2Item .itemBox .itemFirst .time .year {
        font-size: 12px;
    }
    .index .f2 .f2Box .f2ItemBox .f2Item .itemBox .itemFirst {
        display: none;
    }
    .index .f2 .f2Box .f2ItemBox .f2Item .itemBox.active .item {
        display: flex;
    }
    .footer .footerContent .qrcodeBox .qrcodeItem {
        justify-content: center;
    }
}<!--ºÄÊ±1767331665.8506Ãë-->