﻿.wow {
    opacity: 0;
}

.mobile {
    width: 100%;
}

.mobile-inner {
    margin-right: auto;
    margin-left: auto;
    background-color: ;
    position: relative;
}

.mobile-inner img {}

.mobile-inner p {
    color: #676767;
    line-height: 25px;
    font-size: 16px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 0px;
}

.mobile-inner-header {
    /* background-color:rgb(255,255,255); */
    width: 100%;
    height: 50px;
    position: relative;
    top: 0px;
    z-index: 33;
    left: 0px;
}

.mobile-inner-header-icon {
    color: #ffffff;
    height: 50px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 50px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: rgb(199, 34, 27);
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    overflow: auto;
    max-height: calc(100vh - 50px);
}

.mobile-inner-nav {
    background-color: hsla(224, 27%, 35%, .6);
    width: 100%;
    position: absolute;
    top: 50px;
    padding-bottom: 0%;
    display: none;
    z-index: 444;
}

.mobile-inner-nav a {
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    color: #fff;
    transition: all 0.5s;
}

.mobile-inner-nav dl {
    display: none;
}

.mobile-inner-nav dl dd {
    line-height: 33px;
    text-decoration: none;
    text-indent: 3em;
    font-size: 16px;
    color: #FFFFFF;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
    font-size: 14px;
}

.mobile-inner-nav li {
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    line-height: 53px;
    text-indent: 20px;
}

.mobile-inner-nav h2.h2tit {
    line-height: 50px;
    text-decoration: none;
    text-indent: 2em;
    font-size: 16px;
    color: #FFFFFF;
    /* border-bottom:solid 1px rgba(255,255,255,0.3);*/
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.mobile-inner-nav h2.h2tit a {
    color: #FFFFFF;
}

.mobile-inner-nav a {
    border-bottom: none;
}

.mobile-inner-nav li {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
}

@-webkit-keyframes resize {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5, 5);
        transform: scale(5, 5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes resize {

    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5, 5);
        transform: scale(5, 5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@-webkit-keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.mobile-inner-nav li:last-child h2.h2tit {
    border-bottom: none;
}

.mobile-inner-nav li .h3tit {
    height: 50px;
    position: relative;
    background: url(https://bomeai.xyz/images/51_icon_search@2x.png) no-repeat 30px center;
    background-size: 17px;
}

.mobile-inner-nav li .words {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    text-indent: 60px;
    font-size: 15px;
    color: #fff;
    background: url(https://bomeai.xyz/images/search2.png) no-repeat 30px center;
    background-size: 20px;
}

.mobile-inner-nav li:last-child {
    border-bottom: none;
}

.mobile-inner-nav li form {
    display: block;
    width: 100%;
    height: 100%;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.hinge {
    animation-duration: 2s;
}

.fadeInUp {
    animation-duration: 1.76s;
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

* {}

body,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
ul,
ol,
li,
th,
td,
p,
blockquote,
pre,
form,
fieldset,
legend,
input,
button,
textarea,
hr,
span {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.4rem;
}

html,
body {
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

body {
    font-family: "AkzidenzGroteskBQ" ! important;
    color: #000000;
    background: #fff;
    margin: 0 auto;
    padding: 0px;
}

body {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
}

input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="text"] {
    -webkit-appearance: none;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer;
}

input {
    -webkit-appearance: none;
}

input {
    -webkit-appearance: none !important;
    border-radius: 0;
}

button {
    cursor: pointer;
}

textarea {
    -webkit-appearance: none;
}

a {
    text-decoration: none;
    color: #235aa7;
    outline: none;
}

a:active {
    star: expression(this.onFocus=this.blur());
}

img {
    border: 0px;
    vertical-align: middle;
}

li {
    list-style: none;
}

* {
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

.loading {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
}

.loadingfa {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 29px;
    color: #1f8adf;
    position: absolute;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    top: 50%;
}

html {
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: none;
}

html {
    -webkit-tap-highlight-color: transparent;
}

body {
    -webkit-overflow-scrolling: touch;
}

* {
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg)
    }

    to {
        -moz-transform: rotate(360deg)
    }
}

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(0deg)
    }

    to {
        -ms-transform: rotate(360deg)
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(0deg)
    }

    to {
        -o-transform: rotate(360deg)
    }
}

.xuanzhuan {
    animation: 2s linear 0s normal forwards infinite rotate;
    -webkit-animation: 2s linear 0s normal forwards infinite rotate;
    -moz-animation: 2s linear 0s normal forwards infinite rotate;
    -o-animation: 2s linear 0s normal forwards infinite rotate;
}

.xuanzhuan img {
    display: block;
    width: 100%;
}

.pc {
    display: block;
}

.wap {
    display: none;
}

.clearflex:after {
    content: "";
    display: table;
    clear: both;
}

body {
    background: url(../image/bg.jpg) no-repeat center 0;
    background-size: cover;
}

.head {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    padding-top: calc(32/1920*100vw);
    z-index: 5555;
    padding-left: calc(32/1920*100vw);
    padding-right: calc(46/1920*100vw);
}

.head .logo {
    float: left;
}

.head .logo a {}

.head .logo img {
    width: calc(73/1920*100vw);
}

.head .nav {
    float: left;
    padding-left: calc(12/1920*100vw);
}

.head .nav ul {}

.head .nav ul li:last-child {
    margin-right: 0px;
}

.head .nav ul li {
    float: left;
    margin-left: calc(82/1920*100vw);
    /* margin-right:calc(70/1920*100vw);*/
}

.head .nav ul li .h2tit {}

.head .nav ul li .h2tit a {
    font-size: calc(36/1920*100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #FFFFFF;
    line-height: calc(73/1920*100vw);
    display: block;
}

.head .more {
    width: calc(235/1920*100vw);
    line-height: calc(45/1920*100vw);
    background: #8CC571;
    border: calc(5/1920*100vw) solid #05551F;
    border-radius: calc(28/1920*100vw);
    float: right;
    margin-top: calc(12/1920*100vw);
    text-align: center;
    font-size: calc(36/1920*100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #05551F;
}

.index {
    line-height: 1;
}

.section1 {
    position: relative;
    overflow: hidden;
}

.section1 .aniimg {}

.section1 .aniimg img.animg1 {
    width: calc(380/1920*100vw);
    position: absolute;
    top: calc(135/1920*100vw);
    left: calc(32/1920*100vw);
    z-index: 5;
}

.section1 .aniimg img.animg2 {
    width: calc(435/1920*100vw);
    right: calc(291/1920*100vw);
    position: absolute;
    top: calc(177/1920*100vw);
}

.section1 .content {
    text-transform: uppercase;
    padding-top: calc(260/1920*100vw);
    position: relative;
    z-index: 4;
    padding-left: calc(360/1920*100vw);
}

.section1 .content .title1 {
    font-size: calc(68/1920*100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #000000;
    line-height: 1;
    /* text-shadow: 0px calc(8/1920*100vw) 0px #134824; */
}

.section1 .content .title2 {
    font-size: calc(228/1920*100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #000000;
    line-height: 1;
    /* text-shadow: 0px calc(24/1920*100vw) 0px #1F703A; */
}

.section1 .content .animgpic {}

.section1 .content .animgpic img.ani1 {
    position: absolute;
    top: calc(115/1920*100vw);
    width: calc(160/1920*100vw);
    left: calc(790/1920*100vw);
}

.section1 .content .animgpic img.ani2 {
    width: calc(128/1920*100vw);
    left: calc(1026/1920*100vw);
    position: absolute;
    top: calc(461/1920*100vw);
}

.section1 .content .animgpic img.ani3 {
    width: calc(118/1920*100vw);
    position: absolute;
    left: calc(878/1920*100vw);
    top: calc(630/1920*100vw);
}

.section1 .content .link {
    padding-top: calc(40/1920*100vw);
    padding-bottom: calc(40/1920*100vw);
}

.section1 .content .link a {}

.section1 .content .link a img {
    width: calc(75/1920*100vw);
    margin-right: calc(27/1920*100vw);
    opacity: 1;
}

.section1 .content .search {
    font-size: 0;
}

.section1 .content .search input.words {
    width: calc(595/1920*100vw);
    height: calc(77/1920*100vw);
    background: rgba(0, 0, 0, 0.5);
    border: calc(5/1920*100vw) solid #f3ba2d;
    border-radius: calc(10/1920*100vw);
    color: #fff;
    font-size: calc(20/1920*100vw);
    padding: 0 calc(20/1920*100vw);
    border-right: none;
    vertical-align: middle;
}

.section1 .content .search input.send {
    width: calc(165/1920*100vw);
    height: calc(77/1920*100vw);
    background: #f3ba2d;
    border-radius: calc(10/1920*100vw);
    border: none;
    vertical-align: middle;
    margin-left: calc(-14/1920*100vw);
    font-size: calc(36/1920*100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #000000;
    text-transform: uppercase;
}

.bg1 {
    background: url(../image/bgimg1.png) no-repeat center bottom;
    background-size: cover;
    margin-top: calc(-215/1920*100vw);
    padding-top: calc(215/1920*100vw);
    /* padding-bottom:calc(55/1920*100vw);*/
}

.bg2 {
    background: url(../image/bgimg2.png) no-repeat center center;
    background-size: cover;
}

.bg3 {
    background: url(../image/bgimg3.jpg) no-repeat center 0;
    background-size: cover;
}

.bg4 {
    background: url(../image/bgimg5.png) no-repeat center 0;
    background-size: cover;
}

.section2 {}

.wrap:after {
    content: "";
    display: table;
    clear: both;
}

.section2 .wrap {
    padding-left: calc(210/1920*100vw);
    padding-right: calc(236/1920*100vw);
    padding-top: calc(358/1920*100vw);
    display: flex;
    align-items: center;
    padding-bottom: calc(236/1920*100vw);
}

.section2 .wrap .left {}

.section2 .wrap .left img {
    width: calc(637/1920*100vw);
}

.section2 .wrap .right {
    padding-left: calc(53/1920*100vw);
}

.section2 .wrap .right .title {
    font-size: calc(79/1920*100vw);
    /*  font-family: MiSans;  */
    font-weight: 400;
    color: #000;
}

.section2 .wrap .right .dec {
    font-size: calc(30/1920*100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #000000;
    line-height: calc(33/1920*100vw);
    padding-top: calc(99/1920*100vw);
    padding-bottom: calc(39/1920*100vw);
}

.section2 .wrap .right a.more {
    display: block;
    width: calc(200/1920*100vw);
    height: calc(55/1920*100vw);
    text-align: center;
    line-height: calc(55/1920*100vw);
    background: url(../image/more.png) no-repeat center center;
    background-size: 100% 100%;
    font-size: calc(36/1920*100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #05551F;
    padding-left: calc(38/1920*100vw);
    text-align: left;
}

.section2 .wrap .right a.more span {}

.section3 {}

.titlemodel {
    text-align: center;
    font-size: calc(100/1920*100vw);
    /* font-family: MiSans; */
    font-weight: 400;
    color: #000;
    line-height: 1;
}

.section3 .list {
    padding-left: calc(292/1920*100vw);
    padding-right: calc(352/1920*100vw);
}

.section3 .list .wrap {}

.section3 .list .wrap .item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: calc(60/1920*100vw);
}

.section3 .list .wrap .item .imgbox {
    flex: 1;
    text-align: center;
    opacity: 1;
}

.section3 .list .wrap .item .imgbox img {
    max-width: 100%;
}

.section3 .list .wrap .item .con {
    font-size: calc(30/1920*100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #000000;
    line-height: calc(33/1920*100vw);
    position: relative;
    width: calc(890/1920*100vw);
    margin-left: calc(99/1920*100vw);
    background: url(../image/line.png) no-repeat right bottom;
    padding-right: calc(60/1920*100vw);
    flex: 1.5;
}

.section3 .list .wrap .item .con p:last-child {
    /* padding:0px;*/
}

.section3 .list .wrap .item .con p {
    padding-bottom: calc(47/1920*100vw);
}

.section4 {
    padding-top: calc(60/1920*100vw);
}

.section4 .titlemodel {}

.section4 .list {
    padding: calc(0/1920*100vw) calc(175/1920*100vw);
    zoom: 1;
    overflow: hidden;
}

.section4 .list .item:nth-child(4n) {
    margin-right: 0px;
}

.section4 .list .item {
    float: left;
    background: url(../image/bgh.png) no-repeat center center;
    background-size: 100% 100%;
    width: calc((100% - calc(69/1920*100vw))/4);
    margin-right: calc(23/1920*100vw);
    height: calc(359/1920*100vw);
    margin-top: calc(100/1920*100vw);
}

.section4 .list .item .imgbox {
    padding-top: calc(28/1920*100vw);
}

.section4 .list .item .imgbox img {
    height: calc(180/1920*100vw);
    display: block;
    margin: auto;
    opacity: 1;
}

.section4 .list .item .title {
    font-size: calc(37/1920*100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #000000;
    line-height: calc(41/1920*100vw);
    padding-top: calc(51/1920*100vw);
    text-align: center;
    opacity: 1;
}

.section5 {
    padding-left: calc(289/1920*100vw);
    padding-top: calc(292/1920*100vw);
    display: flex;
    position: relative;
    padding-bottom: calc(119/1920*100vw);
}

.section5 .title {
    font-size: calc(109/1920*100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #FFFFFF;
}

.section5 .con {}

.section6 .con {
    padding-left: calc(40/1920*100vw);
}

.index * {
    opacity: 1;
}

.section5 .icon {
    opacity: 1;
}

.section5 .icon img {
    width: calc(368/1920*100vw);
}

.section5 .more {
    width: calc(386/1920*100vw);
    background: #05551F;
    border-radius: calc(22/1920*100vw);
    display: block;
    margin: auto;
    margin-top: calc(228/1920*100vw);
    text-align: center;
    line-height: calc(118/1920*100vw);
    font-size: calc(48/1920*100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #FFFFFF;
    text-transform: uppercase;
}

.section5 .link {
    position: absolute;
    right: calc(121/1920*100vw);
    top: calc(283/1920*100vw);
}

.section5 .link a {
    display: block;
    margin-bottom: calc(32/1920*100vw);
}

.section5 .link a img {
    width: calc(192/1920*100vw);
}

.section6 {
    padding-top: calc(352/1920*100vw);
    padding-left: calc(328/1920*100vw);
    display: flex;
    position: relative;
    align-items: center;
    padding-bottom: calc(80/1920*100vw);
}

.section6 .title {
    font-size: calc(109/1920*100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #000;
}

.section6 .icon {
    position: relative;
}

.section6 .icon img.im1 {
    width: calc(268/1920*100vw);
    position: relative;
}

.section6 .icon img.im2 {
    position: absolute;
    width: calc(616/1920*100vw);
    left: calc(-188/1920*100vw);
    top: calc(-210/1920*100vw);
}

.section6 .more {
    width: calc(386/1920*100vw);
    line-height: calc(118/1920*100vw);
    background: #05551F;
    border-radius: calc(22/1920*100vw);
    display: block;
    margin: auto;
    margin-top: calc(125/1920*100vw);
    text-align: center;
    font-size: calc(48/1920*100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #FFFFFF;
    text-transform: uppercase;
}

.section7 {
    padding-top: calc(176/1920*100vw);
}

.section7 .titlemodel {}

.section7 .content1 {
    padding-top: calc(182/1920*100vw);
    padding-left: calc(234/1920*100vw);
    padding-right: calc(174/1920*100vw);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: calc(214/1920*100vw);
}

.section7 .content1 .con {
    width: calc(832/1920*100vw);
    /* height:calc(468/1920*100vw);*/
    background: #f3ba2d;
    border: calc(8/1920*100vw) solid #df8347;
    border-radius: calc(50/1920*100vw);
    position: relative;
    display: flex;
    padding-top: calc(37/1920*100vw);
    padding-left: calc(42/1920*100vw);
}

.section7 .content1 .con .icon {}

.section7 .content1 .con .icon img {
    width: calc(73/1920*100vw);
    height: calc(72/1920*100vw);
}

.section7 .content1 .con .ri {
    padding-left: calc(25/1920*100vw);
}

.section7 .content1 .con .ri .title1 {
    font-size: calc(30/1920*100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #05551F;
}

.section7 .content1 .con .ri .title1 .tit {
    display: inline-block;
}

.section7 .content1 .con .ri .title1 .val {
    font-size: calc(60/1920*100vw);
    color: #fff;
    font-weight: bold;
    display: inline-block;
}

.section7 .content1 .con .ri .title2 {
    font-size: calc(55/1920*100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #FFFFFF;
    padding-top: calc(46/1920*100vw);
    padding-bottom: calc(35/1920*100vw);
}

.section7 .content1 .con .lis {}

.section7 .content1 .con .lis .p {
    width: calc(299/1920*100vw);
    line-height: calc(58/1920*100vw);
    background: #f69e27;
    border: calc(5/1920*100vw) solid #f69e27;
    border-radius: calc(27/1920*100vw);
    margin-bottom: calc(29/1920*100vw);
    font-size: calc(30/1920*100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #000000;
    text-transform: uppercase;
    text-align: center;
}

.section7 .content1 .con .lis .p2 {
    background: #71C5B1;
    border: calc(5/1920*100vw) solid #053455;
}

.section7 .content1 .con .ic {}

.section7 .content1 .con .ic img {
    position: absolute;
    width: calc(300/1920*100vw);
    top: calc(61/1920*100vw);
    right: calc(25/1920*100vw);
}

.section7 .content1 .imgbox {}

.section7 .content1 .imgbox img {
    width: calc(560/1920*100vw);
    animation: 2s linear 0s normal forwards infinite rotate;
    -webkit-animation: 2s linear 0s normal forwards infinite rotate;
    -moz-animation: 2s linear 0s normal forwards infinite rotate;
    -o-animation: 2s linear 0s normal forwards infinite rotate;
}

.section7 .content2:after {
    content: "";
    display: table;
    clear: both;
}

.section7 .content2 {
    padding-left: calc(85/1920*100vw);
    padding-right: calc(115/1920*100vw);
}

.section7 .content2 .item {
    position: relative;
    float: left;
    width: 25%;
    /* background:url(../image/lx.png) no-repeat center center;*/
    /* background-size:100% 100%;*/
    /* height:242px;*/
}

.section7 .content2 .item .con {
    font-size: calc(20/1920*100vw);
    font-family: Adobe Heiti Std;
    font-weight: normal;
    color: #fff;
    background: url(../image/lx.png) no-repeat center center;
    background-size: 100% 100%;
    height: calc(242/1920*100vw);
    padding-left: calc(50/1920*100vw);
    padding-right: calc(50/1920*100vw);
    padding-top: calc(39/1920*100vw);
    line-height: 1;
}

.section7 .content2 .item .con p:nth-child(1) {
    padding-left: calc(53/1920*100vw);
    white-space: nowrap;
    padding-right: calc(50/1920*100vw);
}

.section7 .content2 .item .con p:nth-child(2) {
    padding-left: calc(39/1920*100vw);
}

.section7 .content2 .item .con p:nth-child(3) {
    padding-left: calc(26/1920*100vw);
}

.section7 .content2 .item .con p:nth-child(4) {
    padding-left: calc(13/1920*100vw);
}

.section7 .content2 .item .con p:nth-child(5) {}

.section7 .content2 .item .con p:nth-child(6) {}

.section7 .content2 .item .con p b {
    color: #f3ba2d;
    font-size: calc(30/1920*100vw);
    vertical-align: middle;
    position: relative;
    top: calc(-3/1920*100vw);
    margin-right: calc(7/1920*100vw);
}

.section7 .content2 .item .line {
    line-height: 1;
    padding-top: calc(280/1920*100vw);
    background: url(../image/yq.png) no-repeat center 0;
    background-size: calc(38/1920*100vw);
    margin-top: calc(-24/1920*100vw);
}

.section7 .content2 .item .line .tit {
    font-size: calc(82/1920*100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #df8347;
    text-align: center;
}

.section7 .content2 .item .line .tit b {
    font-weight: normal;
    color: #fff;
}

.section7 .lines {
    height: calc(208/1920*100vw);
    position: relative;
    background: url(../image/dl.png) no-repeat center center;
    background-size: 100% 100%;
    margin-top: calc(111/1920*100vw);
}

.section7 .lines img.ani1 {
    width: calc(448/1920*100vw);
    position: absolute;
    left: 0;
    bottom: calc(40/1920*100vw);
    left: 0;
}

.section8 {}

.section8 .titlemodel {
    padding-top: calc(210/1920*100vw);
}

.section8 .dec {
    font-size: calc(36/1920*100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #FFFFFF;
    padding-top: calc(41/1920*100vw);
    padding-bottom: calc(201/1920*100vw);
    text-align: center;
    line-height: 1;
}

.section8 .list:after {
    content: "";
    display: table;
    clear: both;
}

.section8 .list {
    padding-left: calc(321/1920*100vw);
    padding-right: calc(321/1920*100vw);
}

.section8 .list .item {
    margin-bottom: calc(165/1920*100vw);
    float: left;
    width: calc((100% - calc(50/1920*100vw))/2);
    height: calc(403/1920*100vw);
    background: #8CC571;
    border-radius: calc(50/1920*100vw);
    position: relative;
    padding-top: calc(50/1920*100vw);
    padding-left: calc(48/1920*100vw);
    padding-right: calc(98/1920*100vw);
    box-shadow: 0px 0px calc(10/1920*100vw) #44911f;
}

.section8 .list .item:nth-child(2n) {
    float: right;
}

.section8 .list .item .icon {
    position: absolute;
    max-width: 40%;
    right: calc(-30/1920*100vw);
    top: calc(-100/1920*100vw);
}

.section8 .list .item .icon img {}

.section8 .list .item .title {
    font-size: calc(55/1920*100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #000000;
    position: relative;
    z-index: 4;
}

.section8 .list .item .dec {
    font-size: calc(30/1920*100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #FFFFFF;
    line-height: calc(33/1920*100vw);
    text-shadow: 0px calc(1/1920*100vw) calc(8/1920*100vw) #000000;
    text-align: left;
    padding: 0;
    padding-top: calc(40/1920*100vw);
}

.section8 .list .item .dec p {
    padding-bottom: calc(26/1920*100vw);
}

.section9 {}

.section9 .titlemodel {}

.section9 .titlemodel img {
    height: calc(129/1920*100vw);
    vertical-align: middle;
}

.section9 .list {
    width: calc(1735/1920*100vw);
    height: calc(871/1920*100vw);
    background: url(../image/list.png) no-repeat center center;
    margin: auto;
    padding: calc(164/1920*100vw);
}

.section9 .list .item {
    float: left;
    width: 33.333%;
    height: 33.333%;
}

.section9 .list .item a {
    display: block;
    height: 100%;
}

.footer {}

.footer .title {
    font-size: calc(67/1920*100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #FFFFFF;
    text-align: center;
    background: url(../image/footer1.png) no-repeat center center;
    background-size: cover;
    padding: calc(20/1920*100vw) 0px;
    text-transform: uppercase;
}

.footer .link {
    background: url(../image/footer2.png) no-repeat center 0;
    background-size: cover;
    text-align: center;
    padding-bottom: calc(212/1920*100vw);
    padding-top: calc(67/1920*100vw);
}

.footer .link a:nth-child(2n) {
    background: url(../image/iurf2.png) no-repeat center center;
    background-size: 100% 100%;
}

.footer .link a {
    display: inline-block;
    width: calc(345/1920*100vw);
    line-height: calc(106/1920*100vw);
    font-size: calc(36/1920*100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #000000;
    background: url(../image/iurf1.png) no-repeat center center;
    background-size: 100% 100%;
    margin: calc(0/1920*100vw) calc(61/1920*100vw);
}

.footer .link a span {}

@font-face {
    font-family: 'AkzidenzGroteskBQ';
    src: url('https://bomeai.xyz/fonts/AkzidenzGrotesk-BoldCond.otf');
}

.head,
.head *,
.index,
.index * {

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;

}

.index {
    overflow-x: hidden;
}

.section2 .wrap .right a.more:hover {
    opacity: .5;
    transform: translate(0%, -10px);
}

@keyframes backInUp {
    0% {
        opacity: .7;
        -webkit-transform: translateY(1200px) scale(.7);
        transform: translateY(1200px) scale(.7)
    }

    80% {
        opacity: .7;
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.backInUp {
    -webkit-animation-name: backInUp;
    animation-name: backInUp
}




@keyframes moveCar {
    0% {

        transform: translateX(0)
    }

    100% {
        transform: translateX(100vw)
    }
}

.section7 .lines img.ani1 {

    animation: moveCar 5.5s linear infinite;
}


@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}


.heartBeat {
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-duration: calc(var(--animate-duration)*1.3);
    animation-duration: calc(var(--animate-duration)*1.3);
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

@keyframes jackInTheBox {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) rotate(30deg);
        transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.jackInTheBox {
    -webkit-animation-name: jackInTheBox;
    animation-name: jackInTheBox
}