/* 方正兰亭黑 */

/* @font-face {
    font-family: 'fz-lt-black';
    src: url('../font/fz-lt-black.ttf');
} */

/* 方正兰亭黑-细 */

/* @font-face {
    font-family: 'fz-lt-black-light';
    src: url('../font/fz-lt-black-light.ttf');
} */

/* 方正兰亭黑-中黑 */
/* 
@font-face {
    font-family: 'fz-lt-black-middle';
    src: url('../font/fz-lt-black-middle.ttf');
} */

/* 圆体 */

/* @font-face {
    font-family: 'yuanti';
    src: url('../font/yuanti2.ttf');
} */

body {
    color: #333333;
    background-color: white;
    width: 100%;
    /* font-family: 'fz-lt-black'; */
    /* font-family: '-apple-system, "PingFang SC", "Microsoft YaHei", STHeiti, sans-serif'; */
    font-family: "PingFang SC", "Microsoft YaHei", "STHeiti", "sans-serif";
    /* font-family: "Microsoft YaHei", "STHeiti", "sans-serif"; */
}

* {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}


/* box container */

/* .box-container {
    width: 100%;
    display: grid;
    align-items: center;
    justify-content: flex-start;
    grid-template-columns: minmax(80px, 320px) 1280px minmax(80px, 320px);
} */


/* select */
.select {
    padding-right: 20px;
    min-width: fit-content;
    min-width: -moz-fit-content;
    background-image: url(../img/slice20181013/ic-filter-arrow-down.svg);
    background-size: 10px auto;
    background-repeat: no-repeat;
    background-position: right center;
}

select {
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* padding-left: 60px; */
}

/* top tips */

.top-tips {
    width: 100%;
    height: 36px;
    display: grid;
    align-items: center;
    justify-content: flex-start;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1280px 1fr;
    background-color: #F2F2F2;
    font-size: 14px;
    color: #666666;
    z-index: 99999;
}

.top-tips * {
    display: inline-flex;
    align-items: center;
}

.top-tips .ic {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.top-tips .box-container {
    grid-column: 2;
    display: grid;
    align-items: center;
    grid-template-columns: max-content max-content 1fr max-content;
}


.top-tips .tips-from,
.top-tips .tips-number {
    justify-content: flex-start;
}

.top-tips .tips-date,
.top-tips .tips-follow {
    justify-content: flex-end;
}

.top-tips .tips-from,
.top-tips .tips-number {
    padding-right: 55px;
}

.top-tips .tips-date {
    padding-right: 25px;
}

.top-tips .tips-follow .ic {
    margin: 0 15px;
    cursor: pointer;
}

.top-tips .tips-follow svg {
    fill: #4d4d4d;
}

.top-tips .tips-from svg {
    fill: #ed4c5c;
}

.top-tips .tips-follow .follow-one .qr-code {
    display: none;
    position: absolute;
    top: 30px;
    left: -25px;
    z-index: 3;
    width: 80px;
    height: 80px;
    box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.8);
    padding: 5px;
}

.top-tips .tips-follow .follow-one:hover .qr-code {
    display: inherit;
}

/* top head */

.top-head {
    width: 100%;
    background-color: white;
    padding: 16px 0;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: minmax(120px, 18%) 1200px minmax(120px, 18%);
    justify-content: flex-start;
    align-items: center;
    color: #666666;
    z-index: 9999;
}

.top-head .box-container {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr max-content 1fr max-content;

}

.top-head .logo {
    min-width: 420px;
    height: 78px;
    cursor: pointer;
}

.top-head .adv {
    border: 2px solid #C69C6D;
    height: max-content;
    padding: 4px;
    color: #C69C6D;
    text-align: center;
    margin-left: 120px;
    align-self: flex-end;
    font-weight: bold;
}

.top-head .adv .title {
    font-weight: bolder;
    font-size: 20px;
}

.top-head .adv .desc {
    margin-top: 5px;
    font-size: 14px;
}

.top-head .fn {
    margin-right: 40px;
    /* font-family: 'yuanti'; */
    font-size: 14px;
}

.top-head .fn,
.top-head .user-info {
    display: inline-flex;
    align-self: center;
    justify-self: flex-end;
}

.top-head .fn div {
    display: inline-flex;
    align-self: center;
    padding: 0 5px;
}

.top-head .fn .btn {
    cursor: pointer;
}

.top-head .fn .ic {
    width: 32px;
}

.top-head .fn .btn.search {
    height: 45px;
    border-left: 1px solid #666666;
}

.top-head .user-info .ic {
    width: 50px;
    height: 50px;
    border-radius: 10000px;
    overflow: hidden;
    cursor: pointer;
    box-sizing: border-box;
    opacity: 0.8;
}

.top-head .user-info .user-photo.active {
    border: 1px solid #666666;
    opacity: 1;
}

.top-head .user-info .ic img {
    object-fit: cover;
}

/* nav */

.nav {
    width: 100%;
    height: 48px;
    line-height: 48px;
    background-color: #4D4D4D;
    font-size: 18px;
    /* font-family: 'yuanti'; */
    color: white;
    display: grid;
    grid-template-columns: 1fr 1280px 1fr;
    align-items: center;
    z-index: 999;
}


.nav .box-container {
    width: 100%;
    height: 100%;
    grid-column: 2;
    display: grid;
    grid-template-columns: minmax(60px, 70px) minmax(60px, 70px) minmax(60px, 70px) minmax(60px, 70px) minmax(60px, 70px) minmax(60px, 70px) minmax(60px, 70px) minmax(60px, 70px) minmax(60px, 70px) minmax(60px, 70px) minmax(60px, 70px) minmax(60px, 70px) minmax(60px, 70px);
    grid-column-gap: 18px;
}

.nav .nav-btn:nth-child(1) {
    grid-column: 1;
}

.nav .nav-btn {
    display: inline-flex;
    align-content: center;
    justify-content: center;
    cursor: pointer;
    min-width: 60px;
    font-weight: normal;
    color: #f4f4ff;
}

.nav .nav-btn:hover {
    color: white;
    font-weight: bolder;
}

.nav .nav-btn .ic {
    width: 12px;
    margin-left: 4px;
    top: 1px;
}

.nav .nav-btn-home .ic {
    width: 28px;
    margin: 0;
}

.nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.8);
}

.nav .nav-btn-user-state {
    height: 100%;
    display: none;
}

.nav .nav-btn-user-state .btn-login-register {}

.nav .nav-btn-user-state .user-photo {
    display: none;
    width: 35px;
    height: 35px;
    border-radius: 10000px;
    overflow: hidden;
    border: 1px solid #666666;
    box-sizing: border-box;
    top: 6px;
}

.nav .nav-btn-user-state .user-photo img {
    object-fit: cover;

}

.nav .nav-btn-user-state.active .user-photo {
    display: initial;
}

.nav .nav-btn-user-state.active .btn-login-register {
    display: none;
}

.nav .nav-btn-ad {
    border: 2px solid #C69C6D;
    height: max-content;
    padding: 4px;
    color: #C69C6D;
    /* font-family: 'fz-lt-black-middle'; */
    align-self: center;
    max-width: fit-content;
    max-width: -moz-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    display: none;
}

.nav .nav-btn-ad .title {
    font-size: 8px;
    line-height: 10px;
    font-weight: bolder;
}

.nav .nav-btn-ad .desc {
    margin-top: 5px;
    font-size: 6px;
    line-height: 8px;
}

/* box news symbol */

.box-news-symbol .label-theme {
    grid-column: 1 / 6 !important;
    height: fit-content;
    height: -moz-fit-content;
}

.box-news-symbol {
    grid-template-columns: 1fr 1280px 1fr;
    width: 100%;
}

.box-news-symbol .box-container {
    grid-column: 2;
    display: grid;
    width: 100%;
}

.box-news-symbol .picks-list {
    grid-column: 1 / 6;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 25px;
    width: 100%;
}

.box-news-symbol .picks-list .list-one:nth-child(1) {
    grid-column: 1;
}

.box-news-symbol .picks-list .list-one {
    width: 100%;
    cursor: pointer;
    background-color: #f2f2f2;
    display: grid;
    grid-template-rows: max-content 1fr;
}

.box-news-symbol .picks-list .list-one:hover {
    /* box-shadow: 0 2px 4px 0px rgba(77, 77, 77, 0.5); */
    box-shadow: 0 2px 6px 0px rgba(226, 226, 226, 1);
}

.box-news-symbol .picks-list .list-one .bg {
    width: 100%;
    height: 200px;
}

.box-news-symbol .picks-list .list-one .bg img {
    object-fit: cover;
}

.box-news-symbol .picks-list .list-one .time-video {
    color: white;
    font-size: 20px;
    text-align: right;
    position: absolute;
    right: 20px;
    bottom: 15px;
    z-index: 2;
}

.box-news-symbol .picks-list .list-one .info {
    color: #33343b;
    font-size: 14px;
    height: auto;
    display: grid;
}

.box-news-symbol .picks-list .list-one .info .title {
    padding: 15px 20px 10px 20px;
}

.box-news-symbol .picks-list .list-one .info .title .value {
    font-size: 20px;
    font-weight: bold;

    max-width: 370px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    /* -o-text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -moz-box;
    -moz-line-clamp: 1;
    -moz-box-orient: vertical; */
}

.box-news-symbol .picks-list .list-one .info .title .desc {
    color: #808080;
    margin-top: 8px;
}

.box-news-symbol .picks-list .list-one .info .uploader {
    padding: 12px 20px;
    display: flex;
    align-self: flex-end;
    align-items: center;
    border-top: 1px solid rgba(204, 204, 204, 1);
}

.box-news-symbol .picks-list .list-one .info .uploader .ic {
    width: 28px;
    height: 28px;
    margin-right: 8px;
}

.box-news-symbol .picks-list .list-one .info .uploader>div {
    display: inline-block;
    vertical-align: middle;
}

.box-news-symbol .picks-list .list-one .info .uploader .user-level {
    color: #808080;
    margin-left: 20px;
}

/* footer */

.footer {
    width: 100%;
    background-color: rgba(242, 242, 242, 1);
    padding: 40px 0 35px 0;
}


.footer .label-01 {
    display: grid;
    grid-template-columns: 1fr 1280px 1fr;
}

.footer .label-01 .box-container {
    grid-column: 2;
    display: grid;
    grid-template-columns: 600px 1fr;
    align-items: flex-end;

}

.footer .label-01 .about-us {
    grid-column: 1;
}

.footer .label-01 .about-us .theme {
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: bold;
    text-align: left;
}

.footer .label-01 .about-us .theme div {
    display: inline-block;
    vertical-align: middle;
}

.footer .label-01 .about-us .theme .logo {
    width: 76px;
    height: 76px;
    margin-right: 30px;
}

.footer .label-01 .about-us .info {
    font-size: 15px;
    color: #808080;
    line-height: 25px;
}

.footer .label-01 .nav-link {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 100px;
    justify-self: flex-end;
}

.footer .label-01 .nav-link .box-link {
    color: #808080;
    font-size: 15px;
    justify-self: space-evenly;
}

.footer .label-01 .nav-link .box-link .title {
    font-size: 20px;
    font-weight: bold;
    /* font-family: 'fz-lt-black-middle'; */
    color: #33343b;
    margin-bottom: 30px;
}

.footer .label-01 .nav-link .box-link .link-list>div:not(:last-child) {
    margin-bottom: 15px;
}


.footer .label-02 {
    border-top: 1px solid #CCCCCC;
    margin-top: 30px;
    padding-top: 25px;
    font-size: 15px;
    color: #808080;
    align-content: center;
    display: grid;
    grid-template-columns: 1fr 1280px 1fr;
}

.footer .label-02 .box-container {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr max-content;

}

.footer .label-02 .contact {
    grid-column: 1;
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-row-gap: 8px;
    align-items: center;
    justify-content: flex-start;
}

.footer .label-02 .contact .label {
    display: flex;
    align-items: center;
    line-height: 20px;
}

.footer .label-02 .contact .label div {
    display: inline-flex;
    align-content: center;
    justify-self: flex-start;
}

.footer .label-02 .contact .label>div {
    margin-right: 20px;
}

.footer .label-02 .contact .label .ic {
    margin: 0 8px;
}

.footer .label-02 .follow {
    grid-column: 2;
    align-self: center;
    justify-self: flex-end;
}

.footer .label-02 .follow .follow-one {
    display: inline-flex;
    align-content: center;
    margin-left: 35px;
    cursor: pointer;
}

.footer .label-02 .follow .follow-one .ic {
    max-width: 25px;
    height: 25px;
}

.footer .label-02 .follow .follow-one .name {
    font-size: 14px;
    color: #4d4d4d;
    display: inline-flex;
    align-self: center;
    margin-left: 4px;
}

.footer .label-02 .follow .follow-one .qr-code {
    display: none;
    position: absolute;
    bottom: 30px;
    left: -35px;
    z-index: 3;
    width: 80px;
    height: 80px;
    box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.8);
    padding: 5px;
}

.footer .label-02 .follow .follow-one:hover .qr-code {
    display: inherit;
}

@media screen and (max-width: 1440px) {
    .footer .label-02 .contact {
        grid-row-gap: 0px;
    }

    .footer .label-02 .contact .label:nth-child(2) {
        align-self: flex-start;
    }

    .footer .label-02 .contact .label>div {
        margin-right: 20px;
        margin-bottom: 8px;
    }
}

/* page turning */

.page-turning {
    margin: 40px auto 50px auto;
    display: grid;
    grid-template-columns: 1fr 1280px 1fr;
    color: #999999;
    font-size: 20px;

}

.page-turning .box-container {
    grid-column: 2;
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: max-content max-content max-content max-content max-content max-content max-content max-content max-content max-content max-content max-content max-content max-content;
    grid-column-gap: 5px;
}

.page-turning .go-page {
    display: inline-flex;
    cursor: pointer;
    padding: 0 5px;
}

.page-turning .go-page:hover {
    color: #33343b;
}

.page-turning .go-page-first,
.page-turning .go-page-pre {
    display: none;
}

/* banner picture */

.banner-pic {
    width: 100%;
    height: 210px;
}

.banner-pic .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-pic .bg img {
    width: 100%;
    object-fit: cover;
}

.banner-pic .content {
    z-index: 2;
    top: 50%;
    left: 50%;
    max-width: fit-content;
    max-height: fit-content;
    max-width: -moz-fit-content;
    max-height: -moz-fit-content;
    transform: translate(-50%, -50%);
    margin-left: -300px;
    color: white;
    /* font-family: 'fz-lt-black-light'; */
}

.banner-pic .content .h1 {
    font-size: 31px;
}

.banner-pic .content .h2 {
    font-size: 43px;
    margin-top: 20px;
}

/* nav sub */

.nav-sub {
    grid-column: 2;
    width: calc(100% - 40px);
    height: 66px;
    line-height: 66px;
    background-color: #F0F0F0;
    text-align: center;
    margin: 30px auto;
    font-size: 22px;
    color: #666666;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    align-items: center;
    justify-items: center;
    justify-content: center;
}

.nav-sub .tag {
    width: fit-content;
    width: -moz-fit-content;
    height: 38px;
    line-height: 38px;
    text-align: center;
    display: inline-block;
    margin: 0 10px;
    cursor: pointer;
}

.nav-sub .tag.active {
    background-color: #E84D2D;
    border-radius: 6px;
    color: white;
}

/* nav class */

.nav-class {
    grid-column: 2;
    height: 40px;
    line-height: 40px;
    background-color: #f0f0f0;
    font-size: 14px;
    color: #808080;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-class .tag {
    margin: 0 30px;
    display: inline-flex;
    align-self: center;
    cursor: pointer;
}

.nav-class .tag .ic {
    width: 14px;
    margin-right: 8px;
}

.nav-class .tag.active {
    color: #e84d2d;
}

.nav-class .tag.tag-hot .ic {
    background-image: url(../img/slice20181013/ic-class-hot.svg)
}

.nav-class .tag.tag-hot.active .ic {
    background-image: url(../img/slice20181013/ic-class-hot-active.svg)
}

.nav-class .tag.tag-best .ic {
    background-image: url(../img/slice20181013/ic-class-best.svg)
}

.nav-class .tag.tag-best.active .ic {
    background-image: url(../img/slice20181013/ic-class-best-active.svg)
}

.nav-class .tag.tag-time .ic {
    background-image: url(../img/slice20181013/ic-class-time.svg)
}

.nav-class .tag.tag-time.active .ic {
    background-image: url(../img/slice20181013/ic-class-time-active.svg)
}

.nav-class .tag.tag-praise .ic {
    background-image: url(../img/slice20181013/ic-class-praise.svg)
}

.nav-class .tag.tag-praise.active .ic {
    background-image: url(../img/slice20181013/ic-class-praise-active.svg)
}

/* box commend */

.box-commend {
    grid-column: 2;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid #F2F2F2;
    width: 100%;
}

.box-commend .commend-send .theme {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr max-content;
    grid-template-rows: 1fr;
    align-items: center;
    margin-bottom: 30px;
}

.box-commend .commend-send .theme .title {
    font-size: 22px;
    font-weight: bold;
    text-align: left;
    color: #33343b;
}

.box-commend .commend-send .theme .title span.light {
    color: #e84d2d;

}

.box-commend .commend-send .theme .commend-num {
    font-size: 16px;
    text-align: right;
    color: #666666;
    justify-self: flex-end;
}

.box-commend .commend-send .commend-textarea {
    width: calc(100% - 60px);
    height: 190px;
    padding: 30px;
    background-color: #F2F2F2;
    margin: 30px auto;
}

.box-commend .commend-send .commend-textarea textarea {
    width: 100%;
    height: 100%;
    vertical-align: top;
    font-size: 16px;
    line-height: 2;
    text-align: justify;
    color: #33343b;

}

.box-commend .commend-send .commend-textarea textarea::placeholder {
    color: #666666;
}

.box-commend .fn {
    width: 100%;
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr max-content max-content;
    grid-column-gap: 30px;
    align-items: center;
}

.box-commend .fn .code-identifying {
    grid-column: 2;
    display: grid;
    grid-template-columns: max-content max-content;
    grid-column-gap: 30px;
}

.box-commend .fn .code-identifying .value {
    grid-column: 1;
    width: 170px;
    height: 38px;
    line-height: 38px;
    border: 1px solid #A8A8A8;
    border-radius: 6px;
}

.box-commend .fn .code-identifying .value input {
    width: 100%;
    height: 100%;
    padding: 0 10px;
    color: #33343b;
}

.box-commend .fn .code-identifying .value input::placeholder {
    color: #808080;
}

.box-commend .fn .code-identifying .code {
    grid-column: 2;
    width: 100px;
    height: 38px;
}

.box-commend .fn .code-identifying .code img {
    object-fit: cover;
}

.box-commend .fn button {
    width: 108px;
    height: 38px;
    background-color: #E84D2D;
    font-size: 22px;
    text-align: center;
    color: #ffffff;
    border-radius: 6px;
}

.box-commend .commend-list {
    grid-column: 2;
    margin-top: 30px;
    border-top: 1px solid #F2F2F2;
    width: 100%;
}

.box-commend .commend-list .commend-one {
    width: 100%;
    display: grid;
    grid-template-columns: max-content 1fr;
    grid-template-rows: 100px;
    grid-column-gap: 10px;
    margin: 30px 0;
}

.box-commend .commend-list .commend-one .user-photo {
    width: 100px;
    height: 100px;
}

.box-commend .commend-list .commend-one .user-photo img {
    object-fit: cover;
}

.box-commend .commend-list .commend-one .commend-content {
    justify-self: flex-end;
    width: calc(100% - 75px);
    height: calc(100% - 45px);
    padding: 25px 30px 20px 30px;
    position: relative;
    background-color: white;
    border: 1px solid #F2F2F2;
}


.box-commend .commend-list .commend-one .commend-content:before {
    content: url(../img/slice20181013/ic-comment-arrow-left.svg);
    position: absolute;
    right: 99.8%;
    top: 36px;
}

.box-commend .commend-list .commend-one .commend-content .desc {
    display: grid;
    grid-template-columns: max-content max-content 1fr;
    grid-template-rows: max-content;
    grid-column-gap: 40px;
    align-items: center;
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
}

.box-commend .commend-list .commend-one .commend-content .desc>div {
    display: flex;
}

.box-commend .commend-list .commend-one .commend-content .desc .user-name {
    grid-column: 1;
}

.box-commend .commend-list .commend-one .commend-content .desc .btn-replay {
    justify-self: flex-end;
}

.box-commend .commend-list .commend-one .commend-content .commend-value {
    font-size: 16px;
    line-height: 2;
    color: #33343b;
}

.box-commend .commend-list .commend-one.commend-replay {
    width: calc(100% - 130px);
    margin-left: 130px;
    font-size: 16px;
    line-height: 2;
}

.box-commend .commend-list .commend-one.commend-replay .commend-content {
    display: flex;
    align-items: center;
}



.box-commend .commend-list .commend-one.commend-replay .commend-content {
    justify-self: flex-end;
    width: calc(100% - 75px);
    height: calc(100% - 45px);
    padding: 25px 30px 20px 30px;
    position: relative;
    background-color: #F2F2F2;
    border: 1px solid #F2F2F2;
}


.box-commend .commend-list .commend-one.commend-replay .commend-content:before {
    content: '';
    position: absolute;
    right: 100%;
    top: 38px;
    border-top: 12px solid transparent;
    border-right: 15px solid #f2f2f2;
    border-bottom: 12px solid transparent;
}

.box-commend .commend-list .commend-one.commend-replay .commend-content div {
    display: inline-flex;
    align-self: center;
}

.box-commend .commend-list .commend-one.commend-replay .commend-content .commend-value .user-name.replied {
    color: #666666;
    margin: 20px;
}

.box-commend .commend-list .commend-one.commend-replay .btn-replay {
    grid-column: 2;
    display: flex;
    justify-self: flex-end;
    justify-content: center;
    width: 108px;
    height: 40px;
    line-height: 40px;
    background-color: #E84D2D;
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    border-radius: 6px;
    margin-top: 30px;
}

/* btn */

.btn {
    cursor: pointer;
}

button {
    cursor: pointer;
}

/* nav theme */

.nav-theme {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    color: #33343b;
    margin: 30px 0;

}

.nav-theme .ic {
    width: 20px;
    height: 20px;
    margin-right: 20px;
}

/* input important */

.input-important {
    position: absolute;
    right: 15px;
    top: 0;
    height: 100%;
    vertical-align: middle;
    font-size: 14px;
    color: red;
    text-align: right;
}


/* box news only text */
.box-news .news-list .news-one.only-text {
    grid-template-columns: 1fr !important;
    padding-left: 30px;
    padding-right: 30px;
    max-width: calc(100% - 60px);
}

.box-news .news-list .news-one.only-text .ic-tips,
.box-news .news-list .news-one.only-text .bg {
    display: none;
}

.box-news .news-list .news-one.only-text .info {
    grid-column: 1 !important;
    max-width: 100%;
}

/* en */

.en {
    /* font-size: 25px; */
    line-height: 1px;
    font-weight: 300;
    display: flex;
    align-self: center;
}

.box-container.small {
    display: grid;
    grid-template-columns: 1fr 735px 1fr;
}