
.home .main .lNav {
    width: 240px;
    opacity: 1
}

.home .main .lNav .item {
    width: 200px;
    background: rgba(9, 148, 215, 0.05);
    margin-bottom: 10px;
    display: flex;
    padding: 20px 20px;
    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 .lNav .search {
    width: 200px;
    background: rgba(9, 148, 215, 0.05);
    margin-bottom: 10px;
    padding: 20px 20px;
}

.home .main .lNav .search .pt {
    color: #333333;
    font-size: 20px;
    margin-bottom: 15px;
}

.home .main .lNav .search .ss {
    position: relative;
}

.home .main .lNav .search .ss input {
    width: 100%;
    background: white;
    outline: none;
    border: none;
    color: #999999;
    font-size: 14px;
    text-indent: 10px;
    padding: 10px 0;
}

/*.home .main .lNav .search .ss img {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}*/
.home .main .lNav .search .ss button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.home .main .lNav .search .ss .close {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
}

.home .main .lNav .search .ss .close img {
    position: static;
    transform: translateY(0);
    width: 15px;
}

.home .main .lNav .recommend {
    width: 200px;
    background: rgba(9, 148, 215, 0.05);
    margin-bottom: 10px;
    padding: 20px 20px;
}

.home .main .lNav .recommend .pt {
    color: #333333;
    font-size: 20px;
    margin-bottom: 15px;
}

.home .main .lNav .recommend .anews a {
    display: block;
    margin-bottom: 15px;
}

.home .main .lNav .recommend .anews a .p1 {
    color: #666666;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
    transition: all 600ms;
    line-height: 1.6;
}

.home .main .lNav .recommend .anews a .time {
    color: #999999;
}

.home .main .lNav .recommend .anews a:hover .p1 {
    color: #0994D7;
}

.home .main .content {
    width: calc(95% - 300px);
}

.home .main .content .dom1 {
    margin-bottom: 80px;
}

.home .main .content .dom1 .p1 {
    color: #0994D7;
    font-size: 50px;
    margin-bottom: 30px;
}

.home .main .content .dom1 .allItems {
    width: 100%;
    margin-bottom: 40px;
}

.home .main .content .dom1 .allItems a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(238, 238, 238, 0.4);
}

.home .main .content .dom1 .allItems a .pic {
 /*  overflow: hidden; */
    min-width: 260px;
    max-width: 340px;
    background: #ddd;
    min-height: 180px;
    max-height: 260px;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    flex-direction: column;
}

.home .main .content .dom1 .allItems a .pic img {
    /*width: 340px;
    width: 265px;*/
    display: block;
    object-fit: cover;
    transition: all 600ms;
}

.home .main .content .dom1 .allItems a .info {
    width: calc(95% - 400px);
}

.home .main .content .dom1 .allItems a.aaa .info {
    width: 95%
}

.home .main .content .dom1 .allItems a .info .st1 {
    color: #333333;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 600ms;
}

.home .main .content .dom1 .allItems a .info .des {
    color: #666666;
    font-weight: lighter;
    line-height: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 30px;
}

.home .main .content .dom1 .allItems a .info .time {
    color: #999999;
    font-family: "DIN-Bold";
}

.home .main .content .dom1 .allItems a .icon {
    width: 61px;
    position: relative;
}

.home .main .content .dom1 .allItems a .icon img {
    transition: all 600ms;
}

.home .main .content .dom1 .allItems a .icon img:nth-child(2) {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.home .main .content .dom1 .allItems a:hover .pic img {
    transform: scale(1.05);
}

.home .main .content .dom1 .allItems a:hover .info .st1 {
    color: #0994D7;
}

.home .main .content .dom1 .allItems a:hover .icon img:nth-child(1) {
    opacity: 0;
}

.home .main .content .dom1 .allItems a:hover .icon img:nth-child(2) {
    opacity: 1;
}

.home .main .content .dom1 .pager {
    display: flex;
    justify-content: center;
}

.home .main .content .dom1 .pager a {
    color: #666666;
    font-size: 18px;
    margin: 0 15px;
    transition: all 600ms;
    position: relative;
    padding-bottom: 15px;
}

.home .main .content .dom1 .pager a::after {
    content: "";
    display: block;
    background: #0090D8;
    height: 2px;
    width: 0;
    transition: all 600ms;
    position: absolute;
    left: 0;
    bottom: 0;
}

.home .main .content .dom1 .pager a:hover {
    color: #0090D8;
}

.home .main .content .dom1 .pager a:hover::after {
    width: 100%;
}

.home .main .content .dom1 .pager .active {
    color: #0090D8;
}

.home .main .content .dom1 .pager .active::after {
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .home .main {
        flex-direction: column;
        margin-top: 75px;
    }

    .home .main .lNav {
        width: 100%;
        margin-bottom: 30px;
        opacity: 1;
    }

    .home .main .lNav .item {
        width: 90%;
        padding: 20px 5%;
    }

    .home .main .lNav .search, .home .main .lNav .recommend {
        width: 90%;
        padding: 20px 5%;
    }

    .home .main .content {
        width: 100%;
    }

    .home .main .content .dom1 {
        margin-bottom: 40px;
    }

    .home .main .content .dom1 .p1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .home .main .content .dom1 .allItems a {
        flex-direction: column;
    }

    .home .main .content .dom1 .allItems a .pic {
        width: 100%;
    }

    .home .main .content .dom1 .allItems a .info {
        width: 100%;
        margin-top: 20px;
    }

    .home .main .content .dom1 .allItems a .info .st1 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .home .main .content .dom1 .allItems a .info .des {
        margin-bottom: 15px;
    }
}

/*# sourceMappingURL=news.css.map */
