@import "header.css";
@import "../iconfont/iconfont.css";
@import "../fonts/fonts.css";

body, ul, li, p, a {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: Arial, Microsoft YaHei, sans-serif, PingFangSC-Regular;
}

/*::-webkit-scrollbar{width:0;}*/
a {
    text-decoration: none;
}

* {
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
    vertical-align: middle;
}


/*以下为main部分*/

.home {
    position: relative;
}

.home .main {
    width: 90%;
    margin: 182px auto;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.home .main .lNav {
    width: 300px;
    opacity: 0;
}

.home .main .lNav .item {
    width: 240px;
    background: rgba(9, 148, 215, 0.05);
    margin-bottom: 10px;
    display: flex;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 600ms;
}

.home .main .lNav .item .pic {
    position: relative;
}

.home .main .lNav .item .pic img {
    transition: all 600ms;
}

.home .main .lNav .item .pic img:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.home .main .lNav .item p {
    margin-left: 20px;
    color: #333333;
    font-size: 20px;
    transition: all 600ms;
}

/*.home .main .lNav .item:hover {
  background: #0994D7;
}
.home .main .lNav .item:hover p {
  color: white;
}
.home .main .lNav .item:hover .pic img:nth-child(1) {
  opacity: 0;
}
.home .main .lNav .item:hover .pic img:nth-child(2) {
  opacity: 1;
}*/
/*.home .main .lNav .active {
  background: #0994D7;
}
.home .main .lNav .active p {
  color: white;
}
.home .main .lNav .active .pic img:nth-child(1) {
  opacity: 0;
}
.home .main .lNav .active .pic img:nth-child(2) {
  opacity: 1;
}*/
.home .main .content {
    width: calc(95% - 300px);
}

.home .main .content .dom1 {
    margin-bottom: 80px;
}

.home .main .content .dom1 .p1, .home .main .content .dom1 h1 {

    font-size: 50px;
    margin-bottom: 40px;
}

.home .main .content h1 {
    color: #333333;
    font-size: 50px;
    margin-bottom: 40px;
}

.home .main .content img {
    max-width: 100%
}

.home .main .content .dom1 .des {
    font-size: 20px;
    color: #333333;
    line-height: 2;
    font-weight: lighter;
}

.home .main .content .dom2 {
    margin-bottom: 80px;
}

.home .main .content .dom2 .p1 {
    color: #0994D7;
    font-size: 50px;
    margin-bottom: 40px;
}

.home .main .content ul li {
    list-style: auto
}

/*.home .main .content .dom2 .pic {
  text-align: center;
  margin-bottom: 40px;
}
.home .main .content .dom2 .pic img {
  max-width: 100%;
  display: block;
  object-fit: contain;
}*/
.home .main .content .dom2 .allItems {
    margin-bottom: 60px;
}

.home .main .content .dom2 .allItems p {
    display: flex;
    align-items: center;
    color: #333333;
    margin-bottom: 20px;
    font-weight: lighter;
}

.home .main .content .dom2 .allItems p::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border: 2px solid #22A6E9;
    border-radius: 50%;
}

.home .main .content .dom2 .allItems p span {
    width: calc(98% - 10px);
    margin-left: 10px;
}

.home .main .content .dom2 .p2 {
    color: #111111;
    font-size: 30px;
    margin-bottom: 30px;
}

.home .main .content .dom2 .echarts {
    width: 100%;
    height: 400px;
}

.home .main .content .dom2 .tags {
    display: flex;
    flex-wrap: wrap;
}

.home .main .content .dom2 .tags p {
    width: 18%;
    padding: 20px 0;
    background: #F9FBFF;
    margin-right: 2%;
    text-align: center;
    margin-bottom: 20px;
}

.home .main .content .dom3 .p1 {
    color: #0994D7;
    font-size: 50px;
    margin-bottom: 40px;
}

.home .main .content .dom3 .allItems {
    display: flex;
    justify-content: space-between;
}

.home .main .content .dom3 .allItems .item {
    width: 32%;
}

.home .main .content .dom3 .allItems .item .pic {
    overflow: hidden;
}

.home .main .content .dom3 .allItems .item .pic img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: all 600ms;
}

.home .main .content .dom3 .allItems .item p {
    text-align: center;
    color: #111111;
    font-weight: lighter;
    margin-top: 20px;
    transition: all 600ms;
}

.home .main .content .dom3 .allItems .item:hover .pic img {
    transform: scale(1.05);
}

.home .main .content .dom3 .allItems .item:hover p {
    color: #0090D7;
}

@media screen and (max-width: 1024px) {
    .home .main {
        flex-direction: column;
        margin-bottom: 60px;
        margin-top: 75px;
    }

    .home .main .lNav {
        width: 100%;
        margin-bottom: 30px;
        opacity: 1;
    }

    .home .main .lNav .item {
        width: 90%;
        padding: 20px 5%;
    }

    .home .main .content {
        width: 100%;
    }

    .home .main .content .dom1, .home .main .content .dom2, .home .main .content .dom3 {
        margin-bottom: 40px;
    }

    .home .main .content .dom1 .p1, .home .main .content .dom2 .p1, .home .main .content .dom3 .p1, .home .main .content .dom1 h1, .home .main .content .dom2 h1, .home .main .content .dom3 h {
        font-size: 24px;
        margin-bottom: 30px;
    }


    .home .main .content .dom1 .p2, .home .main .content .dom2 .p2, .home .main .content .dom3 .p2, .home .main .content .dom1 h3, .home .main .content .dom2 h3, .home .main .content .dom3 h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .home .main .content .dom1 .tags, .home .main .content .dom2 .tags, .home .main .content .dom3 .tags {
        justify-content: space-between;
    }

    .home .main .content .dom1 .tags p, .home .main .content .dom2 .tags p, .home .main .content .dom3 .tags p {
        width: 48%;
        margin-right: 0;
    }

    .home .main .content .dom3 .allItems {
        flex-wrap: wrap;
    }

    .home .main .content .dom3 .allItems .item {
        width: 100%;
        margin-bottom: 20px;
    }
}

/*# sourceMappingURL=ybk.css.map */
