html, body {
    font-size: 14px;
    background: #FFF;
    color: #333;
    font-family: Helvetica Neue, Helvetica, PingFang SC, Tahoma, Arial, sans-serif;
}

blockquote, body, button, dd, div, dl, dt, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

ul, li {
    list-style: none;
}

a, a:hover {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

img {
    width: 100%;
    object-fit: fill;
}

.w1680 {
    width: 1680px;
    margin: 0 auto;
}

.w1440 {
    width: 1440px;
    margin: 0 auto;
}

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

.clip.active {
    -webkit-clip-path: polygon(0% -50%, 100% 0, 100% 100%, 0% 115%);
    clip-path: polygon(0% -50%, 100% 0, 100% 100%, 0% 115%);
}

.btn {
    display: flex;
    width: fit-content;
    font-size: 16px;
    padding: 8px 24px;
    color: #FFF;
    background: #1856bd;
    border-radius: 20px;
    border: 1px solid #1856bd;
}

a.btn:not([href]) {
    color: #FFF;
}

.btn i {
    margin-left: 10px;
}

.btn.btn-primary {
    color: #1856bd;
    background: #FFF;
}

.btn:hover {
    background-color: rgba(24, 86, 189, .8);
    color: #FFF;
}

.btn.btn-primary:hover {
    background-color: #1856bd;
    color: #FFF;
}

.swiper-next {
    transform: rotate(180deg);
}

.swiper-prev, .swiper-next {
    line-height: normal;
    cursor: pointer;
}

.head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    white-space: nowrap;
}

.head .logo-box {
    display: flex;
    align-items: center;
}

.head .logo-box img {
    max-width: 120px;
}

.head .logo-box .title {
    font-size: 22px;
    font-weight: 650;
    padding-left: 10px;
}

.head .nav-box {
    display: flex;
    padding: 0 10px;
    height: 100%;
}

.head .nav-box .first-nav {
    position: relative;
}

.head .nav-box .first-nav > a {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 18px;
    overflow: hidden;
}

.head .nav-box .first-nav > a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 14px solid #1856bd;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    z-index: 15;
}

.head .nav-box .first-nav > a:hover::before {
    bottom: 0.5px;
}

.head .nav-box .first-nav > a span {
    padding: 0 20px;
}

.head .nav-box .first-nav.active > a span {
    background-color: #1856bd;
    color: #fff;
    font-size: 15px;
    padding: 8px 20px;
    border-radius: 20px;
    line-height: 1;
}

.head .nav-box .first-nav:not(.active):hover > a span {
    color: #1856bd;
}

.head .nav-box .second-nav {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 10;
    display: none;
    background-color: #f9f9f9;
    box-shadow: inset 0px 15px 6px -15px rgba(0, 0, 0, 0.25);
}

.head .nav-box .second-nav > a {
    display: block;
    padding: 20px 30px;
    font-size: 15px;
    color: #333;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.head .nav-box .second-nav > a:hover {
    transform: translateX(4px);
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transition: all .4s;
    color: #df002c;
}

.head .search-tel-box {
    display: flex;
    align-items: center;
    color: #666;
}

.head .search-tel-box .search-box {
    position: relative;
}

.head .search-box .icon {
    font-size: 18px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.head .search-box .icon i {
    z-index: 1;
    margin-right: 5px;
    font-size: 18px;
    padding-left: 10px;
}

.head .search-box form {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.head .search-box form input {
    position: absolute;
    left: 0;
    z-index: 0;
    border: none;
    background-color: transparent;
    color: #fff;
    line-height: 40px;
    border-radius: 20px;
    font-size: 12px;
    padding: 0 20px 0 40px;
    width: 0;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.head .search-box form .btn {
    position: absolute;
    z-index: 2;
    right: 0;
    padding: 0;
    width: 40px !important;
    background-color: transparent !important;
}

.head .search-box:hover .icon i {
    color: #FFF;
}

.head .search-box:hover form input {
    background-color: #273e82;
    width: 300px;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.head .search-box:hover form input::placeholder{
    color: #FFF;
}

.head .search-tel-box .line {
    background-color: #cfcfcf;
    width: 2px;
    height: 20px;
    margin: 0 10px;
}

.head .search-tel-box .tel-box a {
    display: flex;
    align-items: center;
}

.head .search-tel-box .tel-box a span {
    font-size: 26px;
    font-weight: bold;
    color: #cc0000;
    margin-left: 5px;
}

.head .search-tel-box .tel-box a:hover img {
    animation: rotates 1s linear infinite;
    -webkit-animation: rotates 1s linear infinite;
}

.sidebar-nav {
    width: 26px;
    height: 26px;
    cursor: pointer;
    display: none;
}

.sidebar-nav .icon {
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 2px;
    margin: auto;
    position: relative;
    
}

.sidebar-nav .icon::before, .sidebar-nav .icon::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 2px;
    left: 0;
    background-color: #1E1E1E;
    -webkit-transition-duration: 0.3s, 0.3s;
    -moz-transition-duration: 0.3s, 0.3s;
    -ms-transition-duration: 0.3s, 0.3s;
    -o-transition-duration: 0.3s, 0.3s;
    transition-duration: 0.3s, 0.3s;
    -webkit-transition-delay: 0.3s, 0s;
    -moz-transition-delay: 0.3s, 0s;
    -ms-transition-delay: 0.3s, 0s;
    -o-transition-delay: 0.3s, 0s;
    transition-delay: 0.3s, 0s;
}

.sidebar-nav .icon::before {
    top: -6px;
    -webkit-transition-property: top, transform;
    -moz-transition-property: top,transform;
    -ms-transition-property: top,transform;
    -o-transition-property: top,transform;
    transition-property: top, transform;
}

.sidebar-nav .icon::after {
    bottom: -6px;
    -webkit-transition-property: bottom, transform;
    -moz-transition-property: bottom,transform;
    -ms-transition-property: bottom,transform;
    -o-transition-property: bottom,transform;
    transition-property: bottom, transform;
}

.sidebar-nav.active .icon::before, .sidebar-nav.active .icon::after {
    -webkit-transition-delay: 0s, 0.3s;
    -moz-transition-delay: 0s, 0.3s;
    -ms-transition-delay: 0s, 0.3s;
    -o-transition-delay: 0s, 0.3s;
    transition-delay: 0s, 0.3s;
}

.sidebar-nav.active .icon::before {
    top: 0px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sidebar-nav.active .icon::after {
    bottom: 0px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.sidebar {
    position: fixed;
    right: -100%;
    top: 70px;
    bottom: 0px;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #eee;
    transition: right 0.3s ease;
    z-index: 9999;
}

.sidebar.open {
    right: 0;
}

.sidebar .wrapper {
    height: 100%;
    padding: 30px 5%;
    overflow-y: auto;
}

.sidebar a {
    display: block;
}

.sidebar .first-nav {
    font-size: 18px;
    margin-bottom: 20px;
}

.sidebar .first-nav > a {
    margin-bottom: 20px;
}

.sidebar .second-nav {
    font-size: 16px;
    text-indent: 1em;
}

.sidebar .second-nav a {
    padding: 10px 0;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.banner a {
    display: block;
}

.banner .banner-pagination {
    position: absolute;
    z-index: 1;
    text-align: center;
}

.banner-pagination .swiper-pagination-bullet {
    width: 25px;
    height: 5px;
    border-radius: 20px;
    background: #FFF;
}

.product .series {
    display: flex;
}

.series .item {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    font-size: 24px;
    cursor: pointer;
    border-right: 1px solid #e6e6e6;
}

.series .item:last-child {
    border: none;
}

.series .item i {
    font-size: 24px;
}

.series .item.active {
    background-color: #1856bd;
    color: #FFF;
    transition: all .4s;
}

.series .item.active i {
    color: #FFF;
}

.series .item.active::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 14px solid #1856bd;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    z-index: 15;
}

.product .series-product {
    background-image: url('../images/product-background.png');
    background-size: cover;
    padding: 50px 0;
}

.series-product .item {
    display: none;
}

.series-product .item.active {
    display: block;
}

.series-product .item .product-box {
    /*display: flex;*/
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.series-product .item .product-box .product-item {
    overflow: hidden;
    border-radius: 5px;
}

.series-product .item .product-box a {
    display: block;
    overflow: hidden;
}

.series-product .item .product-box .product-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.series-product .item .product-box .product-item:hover img {
    transform: scale(1.2);
}

.series-product .item .product-box .product-title {
    text-align: center;
    padding: 10px;
    font-size: 16px;
    background-color: #FFF;
    border-top: 1px solid #eee;
}

.series-product .item .product-box .product-item:hover .product-title {
    background-color: #1856bd;
    color: #FFF;
}

/*.series-product .product-box > div {*/
/*    width: 50%;*/
/*}*/

.product-swiper .product-controller {
    position: absolute;
    right: 5%;
    bottom: 10%;
    /*transform: translate(-50%);*/
    z-index: 1;
    display: flex;
    align-items: center;
}

.product-swiper .product-controller .swiper-prev,
.product-swiper .product-controller .swiper-next {
    height: 21px;
    line-height: normal;
    margin: 0 5px;
    color: #1856bd;
}

.product-swiper .product-controller .swiper-prev.swiper-button-disabled,
.product-swiper .product-controller .swiper-next.swiper-button-disabled {
    color: #999;
}

.product-swiper .product-controller .swiper-prev i,
.product-swiper .product-controller .swiper-next i {
    font-size: 20px;
}

.product-swiper .swiper-container .product-pagination {
    width: fit-content;
    line-height: normal;
}

.product-pagination .swiper-pagination-bullet {
    width: auto;
    height: auto;
    color: #999999;
    background: none;
    font-size: 16px;
    margin: 0 5px;
    opacity: 1;
}

.product-pagination .swiper-pagination-bullet-active {
    background: transparent;
    color: #094cb8;
}

.series-product .product-box .details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, .5);
    padding: 50px 80px;
}

.product-box .details .details-item {
    display: none;
}

.product-box .details .details-item.active {
    display: contents;
}

.product-box .details .product-title {
    font-size: 48px;
    font-weight: 650;
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e2e2;
}

.product-box .details .description {
    font-size: 24px;
}

.product-box .details .common .title {
    color: #e8362e;
    font-size: 24px;
    margin-bottom: 30px;
}

.product-box .details .advantage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.advantage .adv-item {
    padding: 20px;
    border-radius: 10px;
    background-color: #1856bd;
    color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
}

.advantage .adv-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
}

.company {
    background: url('../images/company-background.png');
    padding: 100px 0 50px 0;
}

.company .content-box {
    display: flex;
}

.company .content-box > div {
    width: 50%;
}

.company .content-box .text-box {
    color: #fff;
    padding-right: 50px;
}

.company .content-box .text-box .first-title {
    font-size: 48px;
    font-weight: 650;
}

.company .content-box .text-box .first-title .highlight {
    color: #e9362e;
}

.company .content-box .text-box .second-title {
    font-size: 48px;
    font-weight: 650;
}

.company .content-box .text-box .line {
    width: 44px;
    margin: 20px 0;
    border-bottom: 2px solid #FFF;
}

.company .paragraph {
    font-size: 16px;
    margin-bottom: 30px;
}

.company .video-box {
    position: relative;
}

.company .video-box .background {
    position: absolute;
    right: 0;
    width: 70%;
    height: 320px;
    border-radius: 20px;
    background: #1355bd;
    z-index: 1;
}

.company .video-box video {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 70%;
    height: 320px;
    border-radius: 20px;
    background: #000;
    z-index: 2;
}

.company .data-box {
    display: flex;
    padding-top: 120px;
    color: #FFF;
}

.company .data-box .data-item {
    text-align: center;
    flex: 1;
}

.company .data-box .data-item .data {
    font-size: 48px;
    font-weight: bold;
}

.company .data-box .data-item .label {
    font-size: 16px;
}

.news {
    background-image: url('../images/news-background.png');
    padding: 50px 0 50px 0;
}

.news .header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 10px 0;
}

.news .header .title {
    font-size: 48px;
    font-weight: bold;
}

.news .header .more {
    font-size: 16px;
}

.news .header .more:hover {
    transform: translateX(4px);
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transition: all .4s;
    color: #084bb8;
}

.news .news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news .news-list .list-item {
    position: relative;
}

.news-list .list-item .stack-2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
}

.news-list .list-item .contents {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: transparent;
    padding: 30px 20px;
    transition: all .8s;
}

.news-list .list-item .contents.active {
    color: #FFF;
    transition: all .4s;
}

.news-list .list-item .contents .swiper-container {
    flex: 1;
    width: 100%;
}

.news-list .list-item .contents .title {
    font-size: 16px;
}

.news-list .list-item .contents .art-title {
    width: 100%;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    font-size: 24px;
    line-height: 1.2;
    font-weight: bold;
    padding: 20px 0;
}

.news-list .list-item .contents .art-description {
    font-size: 16px;
    width: 100%;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
}

.news-list .list-item .contents .keywords {
    display: flex;
    margin-top: 30px;
}

.news-list .list-item .contents .keywords span {
    padding: 2px 15px;
    color: #074ab7;
    border-radius: 20px;
    border: 1px solid #074ab7;
    margin-right: 10px;
    transition: all .8s;
}

.news-list .list-item .contents .keywords span:last-child {
    margin-right: 0;
}

.news-list .list-item .contents.active .keywords span {
    color: #FFF;
    border: 1px solid #FFF;
    transition: all .4s;
}

.news-list .list-item .contents .art-controller {
    display: flex;
    justify-content: end;
}

.art-controller .swiper-prev, 
.art-controller .swiper-next {
    margin: 0 5px;
}

.art-controller .swiper-prev i,
.art-controller .swiper-next i {
    font-size: 30px;
}

.art-controller .swiper-prev.swiper-button-disabled, 
.art-controller .swiper-next.swiper-button-disabled {
    color: #858d99;
}

.news-list .list-item .contents .line {
    border-bottom: 1px solid #858d99;
    margin: 10px 0;
}

.news-list .list-item .contents .date {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.news-list .list-item .contents .date .day {
    font-size: 48px;
    font-weight: bold;
    line-height: normal;
    color: #084bb8;
    transition: all .8s;
}

.news-list .list-item .contents.active .date .day {
    color: #FFF;
    transition: all .4s;
}

.news-list .list-item .contents .date .year {
    font-size: 16px;
}

@keyframes clockwise-spin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes anticlockwise-spin {
  to {
    transform: rotate(-1turn);
  }
}

.cooperative {
    position: relative;
    height: 980px;
    background: url('../images/main6-bg.jpg') no-repeat center;
    background-size: cover;
}

.cooperative .title {
    white-space: nowrap;
    font-size: 48px;
    font-weight: bold;
    position: absolute;
    top: 6%;
    left: 50%;
    transform: translateX(-50%);
}

.cooperative .bubble {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.56);
    transform-origin: 30% 30px;
    border-radius: 50%;
    animation: 8s linear 0s infinite normal none running clockwise-spin;
}

.cooperative .bubble1 {
    width: 22px;
    height: 22px;
    top: 15.5%;
    left: 16.9%;
}

.cooperative .bubble2 {
    width: 48px;
    height: 48px;
    top: 20.8%;
    left: 33.8%;
    animation: 8s linear 0s infinite normal none running anticlockwise-spin;
}

.cooperative .bubble3 {
    width: 22px;
    height: 22px;
    bottom: 38.8%;
    left: 28.8%;
}

.cooperative .bubble4 {
    width: 42px;
    height: 42px;
    top: 29.3%;
    right: 30.4%;
}

.cooperative .bubble5 {
    width: 42px;
    height: 42px;
    top: 8.5%;
    right: 10.1%;
}

.cooperative .bubble6 {
    width: 110px;
    height: 110px;
    top: 48%;
    left: 9%;
}

.cooperative .bubble7 {
    width: 90px;
    height: 90px;
    bottom: 11.6%;
    left: 16.6%;
    animation: 8s linear 0s infinite normal none running anticlockwise-spin;
}

.cooperative .bubble8 {
    right: 20.2%;
    bottom: 26.4%;
    width: 80px;
    height: 80px;
    animation: 8s linear 0s infinite normal none running anticlockwise-spin;
}

.cooperative .bubble9 {
    width: 120px;
    height: 120px;
    right: 8.1%;
    top: 35.3%;
}

.cooperative .circle-box {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 20.8%;
    width: 614px;
    height: 614px;
}

.cooperative .circle-box .circle {
    border-radius: 50%;
    position: absolute;
}

.cooperative .circle-box .circle-1 {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(29, 32, 136, 0.44);
    border-image: initial;
    animation: clockwise-spin 10s infinite linear;
}

.cooperative .circle-box .circle .drop {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: rgb(29, 32, 136);
    border-radius: 50%;
}

.cooperative .circle-box .circle-2 {
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(29, 32, 136, 0.1);
    border-image: initial;
    animation: anticlockwise-spin 11s infinite linear;
}

.cooperative .circle-box .circle-1 .drop {
    left: 23.9%;
    bottom: 5.3%;
}

.cooperative .circle-box .circle-2 .drop {
    right: 26%;
    top: 4.3%;
}

.cooperative .circle-box .text-box {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.cooperative .circle-box .text-box .p1 {
    font-size: 40px;
    line-height: 1.3;
}

.cooperative .circle-box .text-box .nums {
    margin-top: 20px;
    font-size: 100px;
    line-height: 1.2;
    color: rgb(29, 32, 136);
    font-weight: bold;
}

.cooperative .circle-box .text-box .p2 {
    font-size: 18px;
}

.cooperative .cooperative-enterprise .item {
    position: absolute;
    background-color: #FFF;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

.cooperative .cooperative-enterprise .ce-1 {
    top: 22.1%;
    left: 8.1%;
    width: 150px;
    height: 150px;
}

.cooperative .cooperative-enterprise .ce-1 img {
    width: 80%;
}

.cooperative .cooperative-enterprise .ce-2 {
    width: 170px;
    height: 170px;
    top: 28.4%;
    left: 20.2%;
}

.cooperative .cooperative-enterprise .ce-2 img {
    width: 60%;
}

.cooperative .cooperative-enterprise .ce-3 {
    width: 168px;
    height: 168px;
    top: 54.8%;
    left: 16.3%;
}

.cooperative .cooperative-enterprise .ce-3 img {
    width: 60%;
}

.cooperative .cooperative-enterprise .ce-4 {
    width: 152px;
    height: 152px;
    bottom: 16.5%;
    left: 3.6%;
}

.cooperative .cooperative-enterprise .ce-4 img {
    width: 80%;
}

.cooperative .cooperative-enterprise .ce-5 {
    width: 90px;
    height: 90px;
    bottom: 18.1%;
    left: 27.8%
}

.cooperative .cooperative-enterprise .ce-5 img {
    width: 90%;
}

.cooperative .cooperative-enterprise .ce-6 {
    width: 170px;
    height: 170px;
    right: 20.1%;
    top: 41%;
}

.cooperative .cooperative-enterprise .ce-6 img {
    width: 80%;
}

.cooperative .cooperative-enterprise .ce-7 {
    width: 137px;
    height: 137px;
    right: 17%;
    top: 17.4%;
    font-size: 18px;
}

.cooperative .cooperative-enterprise .ce-8 {
    width: 106px;
    height: 106px;
    right: 27.1%;
    bottom: 13.5%;
    font-size: 18px;
}

.cooperative .cooperative-enterprise .ce-9 {
    width: 150px;
    height: 150px;
    right: 9.5%;
    bottom: 12.6%;
}

.cooperative .cooperative-enterprise .ce-9 img {
    width: 70%;
}

.cooperative .cooperative-enterprise .ce-10 {
    width: 110px;
    height: 110px;
    right: 7.3%;
    top: 54.1%;
}

.foot {
    padding: 50px 0;
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
}

.foot .company-info {
    display: flex;
}

.foot .company-info .logo {
    width: 120px;
}

.foot .company-info .info-text {
    padding-left: 20px;
}

.foot .company-info .info-text .service {
    font-size: 18px;
}

.foot .company-info .info-text .phone {
    font-size: 26px;
    font-weight: bold;
    color: #e63926;
    margin-bottom: 20px;
}

.foot .company-info .info-text .email, 
.foot .company-info .info-text .address {
    font-size: 16px;
}

.foot-nav {
    display: flex;
}

.foot-nav .nav-item {
    padding: 0 40px;
}

.foot-nav .first-nav {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.foot-nav .second-nav {
    margin-bottom: 20px;
    font-size: 16px;
}

.foot-nav .second-nav a {
    display: block;
}

.foot-nav .second-nav a:hover {
    transform: translateX(4px);
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transition: all .4s;
    color: #084bb8;
}

.bottom {
    background-color: #0c4eba;
    color: #FFF;
    padding: 30px 0;
}

.bottom a {
    color: #fff;
}
