.nav-box {
    width: 100%;
    height: 60px;
    background-color: #32b16c;
}
.nav-box .nav {
    width: 1200px;
    margin: 0 auto;
    height: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.nav-box .nav .nav-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    text-align: center;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    height: 100%;
}
.nav-box .nav .nav-item.selected {
    background-color: #007357;
}
.nav-box .nav .nav-item:hover {
    background-color: #007357;
}
.nav-box .nav .nav-item .en-text {
    font-size: 12px;
    margin-top: 5px;
}
.main {
    padding-bottom: 45px;
}
.main.selected {
    display: block;
}

/* 轮播图 */
.swiper {
    width: 100%;
}
.swiper .swiper-container {
    width: 100%;
    height: 404px;
}
.swiper .swiper-container a img {
    width: 100%;
    height: 100%;
}
.swiper .swiper-container a {
    display: inline-block;
    height: 100%;
    width: 100%;
}

/* 不同层 */
.floor-item {
    width: 1200px;
    margin: 90px auto 0;
}
.floor-item:first-child {
    margin-top: 50px;
}
.floor-item .floor-item-header {
    font-size: 28px;
    color: #333333;
    text-align: center;
    border-bottom: 1px solid #ececec;
    position: relative;
    padding-bottom: 15px;
}
.floor-item .floor-item-header::after {
    content: "";
    display: inline-block;
    width: 48px;
    height: 2px;
    background-color: #32b16c;
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
}
.floor-item .floor-item-header .en-text {
    font-size: 42px;
}
.floor-item .floor-item-header .more {
    position: absolute;
    right: 7px;
    bottom: 15px;
    font-size: 14px;
    color: #333333;
    cursor: pointer;
    padding: 5px;
}
.floor-item .floor-item-header .more::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    border-left: 1px solid #d2d2d2;
    border-bottom: 1px solid #d2d2d2;
    transform-origin: left bottom;
}
.floor-item .floor-item-header .more:hover::before {
    width: 100%;
    height: 100%;
    animation-name: bordertowh;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    opacity: 1;
}
.floor-item .floor-item-box {
    width: 100%;
    /* height: 480px; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 40px;
}
/* 第一排 */
.floor-item .floor-item-box .floor1type {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
.floor-item .floor-item-box .floor1type .enterprise-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    cursor: pointer;
}
.floor-item .floor-item-box .floor1type .enterprise-item .item-img {
    width: 200px;
    height: 200px;
    border: 1px solid #32b16c;
    padding: 20px;
    overflow: hidden;
}
.floor-item .floor-item-box .floor1type .enterprise-item:hover .item-img>img {
    animation-name: imgscale;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}
.floor-item .floor-item-box .floor1type .enterprise-item .item-img>img {
    width: 100%;
    height: 100%;
}
.floor-item .floor-item-box .floor1type .enterprise-item .item-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    background-color: #007357;
    font-size: 21px;
    color: #fff;
    position: relative;
}
.floor-item .floor-item-box .floor1type .enterprise-item .item-text::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-right: 14px solid #007357;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
}
.floor-item .floor-item-box .floor1type .enterprise-item .item-text p:last-child {
    position: relative;
}
.floor-item .floor-item-box .floor1type .enterprise-item .item-text p:last-child::after {
    content: "";
    display: inline-block;
    width: 46px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.floor-item .floor-item-box .floor1type .enterprise-item .item-text .en-text {
    font-size: 12px;
    margin-top: 30px;
    position: relative;
}
.floor-item .floor-item-box .floor1type .enterprise-item .item-text .en-text::after {
    content: "";
    display: inline-block;
    width: 46px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}
/* 第二排 */
.floor-item .floor-item-box .floor2type {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
.floor-item .floor-item-box .floor2type .enterprise-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row-reverse;
    cursor: pointer;
}
.floor-item .floor-item-box .floor2type .enterprise-item .item-img {
    width: 200px;
    height: 200px;
    border: 1px solid #32b16c;
    padding: 20px;
    overflow: hidden;
}
.floor-item .floor-item-box .floor2type .enterprise-item .item-img>img {
    width: 100%;
    height: 100%;
}
.floor-item .floor-item-box .floor2type .enterprise-item:hover .item-img>img {
    animation-name: imgscale;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}
.floor-item .floor-item-box .floor2type .enterprise-item .item-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    background-color: #32b16c;
    font-size: 21px;
    color: #fff;
    position: relative;
}
.floor-item .floor-item-box .floor2type .enterprise-item .item-text::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 14px solid #32b16c;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
}
.floor-item .floor-item-box .floor2type .enterprise-item .item-text p:last-child {
    position: relative;
}
.floor-item .floor-item-box .floor2type .enterprise-item .item-text p:last-child::after {
    content: "";
    display: inline-block;
    width: 46px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.floor-item .floor-item-box .floor2type .enterprise-item .item-text .en-text {
    font-size: 12px;
    margin-top: 30px;
    position: relative;
}
.floor-item .floor-item-box .floor2type .enterprise-item .item-text .en-text::after {
    content: "";
    display: inline-block;
    width: 46px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}


.type {
    width: 1200px;
    margin: 55px auto 0;
}
.type .type-header {
    font-size: 28px;
    color: #333333;
    border-bottom: 1px solid #ececec;
    position: relative;
    padding-bottom: 15px;
    padding-left: 25px;
}
.type .type-header::after {
    content: "";
    display: inline-block;
    width: 48px;
    height: 2px;
    background-color: #32b16c;
    position: absolute;
    bottom: -1px;
    left: 25px;
}
.type .type-header .en-text {
    font-size: 42px;
}
.type .type-header .more {
    position: absolute;
    right: 7px;
    bottom: 15px;
    font-size: 14px;
    color: #333333;
}
.type .type-box {
    width: 100%;
    /* height: 480px; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 40px;
}
/* 第一排 */
.type .type-box .floor1type {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
.type .type-box .floor1type .enterprise-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    cursor: pointer;
}
.type .type-box .floor1type .enterprise-item .item-img {
    width: 200px;
    height: 200px;
    border: 1px solid #32b16c;
    padding: 20px;
    overflow: hidden;
}
.type .type-box .floor1type .enterprise-item .item-img>img {
    width: 100%;
    height: 100%;
}
.type .type-box .floor1type .enterprise-item:hover .item-img>img {
    animation-name: imgscale;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}
.type .type-box .floor1type .enterprise-item .item-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    background-color: #007357;
    font-size: 21px;
    color: #fff;
    position: relative;
}
.type .type-box .floor1type .enterprise-item .item-text::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-right: 14px solid #007357;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
}
.type .type-box .floor1type .enterprise-item .item-text p:last-child {
    position: relative;
}
.type .type-box .floor1type .enterprise-item .item-text p:last-child::after {
    content: "";
    display: inline-block;
    width: 46px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.type .type-box .floor1type .enterprise-item .item-text .en-text {
    font-size: 12px;
    margin-top: 30px;
    position: relative;
}
.type .type-box .floor1type .enterprise-item .item-text .en-text::after {
    content: "";
    display: inline-block;
    width: 46px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}
/* 第二排 */
.type .type-box .floor2type {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
.type .type-box .floor2type .enterprise-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row-reverse;
    cursor: pointer;
}
.type .type-box .floor2type .enterprise-item .item-img {
    width: 200px;
    height: 200px;
    border: 1px solid #32b16c;
    padding: 20px;
    overflow: hidden;
}
.type .type-box .floor2type .enterprise-item .item-img>img {
    width: 100%;
    height: 100%;
}
.type .type-box .floor2type .enterprise-item:hover .item-img>img {
    animation-name: imgscale;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}
.type .type-box .floor2type .enterprise-item .item-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    background-color: #32b16c;
    font-size: 21px;
    color: #fff;
    position: relative;
}
.type .type-box .floor2type .enterprise-item .item-text::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 14px solid #32b16c;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
}
.type .type-box .floor2type .enterprise-item .item-text p:last-child {
    position: relative;
}
.type .type-box .floor2type .enterprise-item .item-text p:last-child::after {
    content: "";
    display: inline-block;
    width: 46px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.type .type-box .floor2type .enterprise-item .item-text .en-text {
    font-size: 12px;
    margin-top: 30px;
    position: relative;
}
.type .type-box .floor2type .enterprise-item .item-text .en-text::after {
    content: "";
    display: inline-block;
    width: 46px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.details {
    width: 1200px;
    margin: 55px auto 55px;
}
.details .details-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.details .details-top .details-top-left {
    width: 35%;
    margin-right: 5%;
}
.details .details-top .details-top-left .details-title {
    font-size: 28px;
    color: #333333;
    border-bottom: 1px solid #ececec;
    padding-left: 15px;
    padding-bottom: 15px;
    position: relative;
}
.details .details-top .details-top-left .details-title::after {
    content: "";
    display: inline-block;
    width: 48px;
    height: 2px;
    background-color: #32b16c;
    position: absolute;
    bottom: -1px;
    left: 15px;
}
.details .details-top .details-top-left .basic-information {
    padding: 0 15px;
    height: 425px;
    overflow-x: hidden;
    /* overflow-y: scroll; */
    overflow-y: hidden;
}
.details .details-top .details-top-left .basic-information:hover {
    overflow-y: auto;
}
/* .details .details-top .details-top-left .basic-information::-webkit-scrollbar {
    display: none;
} */
/*修改滚动条样式*/
.details .details-top .details-top-left .basic-information::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.details .details-top .details-top-left .basic-information::-webkit-scrollbar-track {
    background: rgb(239, 239, 239);
    border-radius: 2px;
}
.details .details-top .details-top-left .basic-information::-webkit-scrollbar-thumb {
    background: #bfbfbf;
    border-radius: 5px;
}
.details .details-top .details-top-left .basic-information::-webkit-scrollbar-thumb:hover {
    background: #535353;
}
/* .details .details-top .details-top-left .basic-information::-webkit-scrollbar-corner{
    background: #179a16;
} */
/*修改滚动条样式*/
.details .details-top .details-top-left .basic-information .infor-name {
    font-size: 21px;
    font-weight: 600;
    padding: 10px 0;
}
.details .details-top .details-top-left .basic-information .infor-item {
    padding: 5px 0;
    font-size: 18px;
}
.details .details-top .details-top-left .basic-information .infor-item>span {
    color: #535353;
}
.details .details-top .details-top-right {
    width: 60%;
}
.details .details-top .details-top-right .details-title {
    font-size: 28px;
    color: #333333;
    border-bottom: 1px solid #ececec;
    padding-left: 15px;
    padding-bottom: 15px;
    position: relative;
}
.details .details-top .details-top-right .details-title::after {
    content: "";
    display: inline-block;
    width: 48px;
    height: 2px;
    background-color: #32b16c;
    position: absolute;
    bottom: -1px;
    left: 15px;
}
.details .details-top .details-top-right .company-profile {
    font-size: 18px;
    padding: 15px;
    line-height: 2;
    text-indent: 2em;
    max-height: 425px;
    overflow-x: hidden;
    /* overflow-y: scroll; */
    overflow-y: hidden;
}
.details .details-top .details-top-right .company-profile .company-profile-box {
    padding-right: 5px;
}
.details .details-top .details-top-right .company-profile:hover {
    overflow-y: auto;
}
.details .details-top .details-top-right .company-profile:hover .company-profile-box {
    padding-right: 0;
}
/* .details .details-top .details-top-right .company-profile::-webkit-scrollbar {
    display: none;
} */
/*修改滚动条样式*/
.details .details-top .details-top-right .company-profile::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.details .details-top .details-top-right .company-profile::-webkit-scrollbar-track {
    background: rgb(239, 239, 239);
    border-radius: 2px;
}
.details .details-top .details-top-right .company-profile::-webkit-scrollbar-thumb {
    background: #bfbfbf;
    border-radius: 5px;
}
.details .details-top .details-top-right .company-profile::-webkit-scrollbar-thumb:hover {
    background: #535353;
}
/* .details .details-top .details-top-right .company-profile::-webkit-scrollbar-corner {
    background: #179a16;
} */
/*修改滚动条样式*/
.details .details-bottom {
    margin-top: 50px;
}
.details .details-bottom .details-title {
    font-size: 28px;
    color: #333333;
    border-bottom: 1px solid #ececec;
    padding-left: 15px;
    padding-bottom: 15px;
    position: relative;
}
.details .details-bottom .details-title::after {
    content: "";
    display: inline-block;
    width: 48px;
    height: 2px;
    background-color: #32b16c;
    position: absolute;
    bottom: -1px;
    left: 15px;
}
.pic-swiper {
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin-top: 20px;
}
.pic-swiper .pic-swiper-container {
    width: 100%;
    height: 320px;
}
.pic-swiper .swiper-slide {
    width: 20%;
    height: 320px;
    position: relative;
}
.pic-swiper .swiper-slide img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
}