.main {
    background-size: 100% 100%;
    background-image: url("/static/web/images/template2/news-bg.png");
}

.nav {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 50px;
    background: rgba(241, 241, 241, 1);
}

.nav .nav-block {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: rgba(51, 51, 51, 1);
    width: 1200px;
    height: 50px;
}

.nav .nav-block .nav-item {
    display: block;
    font-size: 14px;
    color: rgba(51, 51, 51, 1);
}

.nav .nav-block .nav-item .iconfont {
    font-size: 14px;
    color: rgba(51, 51, 51, 1);
}

.container {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    height: auto;
    margin: 20px auto;
}

.container .sub-nav {
    width: 230px;
    height: auto;
    background: rgba(241, 241, 241, 1);
    border-radius: 10px 10px 0 0;
}

.container .sub-nav .title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
}

.container .sub-nav .title .pic {
    width: 28px;
    height: 26px;
    margin-right: 10px;
    background-image: url("/static/web/images/template3/news-title.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.container .sub-nav .title .pic2 {
    width: 29px;
    height: 26px;
    margin-right: 10px;
    background-image: url("/static/web/images/template3/service.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.container .sub-nav .title .pic3 {
    width: 29px;
    height: 26px;
    margin-right: 10px;
    background-image: url("/static/web/images/template3/about.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.container .sub-nav .title .text {
    font-size: 26px;
    color: rgba(51, 51, 51, 1);
    font-weight: bold;
}

.container .sub-nav .list {
    width: 100%;
}

.container .sub-nav .list .item {
    display: block;
    width: 100%;
    padding-bottom: 10px;
    cursor: pointer;
    background: rgba(255, 255, 255, 1);
}

.container .sub-nav .list .item:first-child {
    padding-top: 10px;
}

.container .sub-nav .list .item .item-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    font-size: 22px;
    color: rgba(51, 51, 51, 1);
    background: rgba(241, 241, 241, 1);
}

.container .sub-nav .list .item .item-wrapper .iconfont {
    font-size: 22px;
    transition: all .3s;
}

.container .sub-nav .list .item .item-wrapper .rotate {
    transform: rotate(90deg);
}

.container .sub-nav .list .item .active {
    color: rgba(255, 255, 255, 1);
    background: rgba(139, 44, 40, 1);
}

.container .sub-nav .list .item .item-child {
    display: none;
    justify-content: center;
    align-items: center;
    width: 210px;
    height: 50px;
    font-size: 18px;
    color: rgba(51, 51, 51, 1);
    background: rgba(241, 241, 241, 1);
    border-style: solid;
    border-color: rgba(241, 241, 241, 1);
    border-width: 5px 10px;
}

.container .sub-nav .list .item .item-child:after {
    content: '';
    position: relative;
    left: -90px;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(241, 241, 241, 1);
}

.container .sub-nav .list .item .item-child-active {
    background: rgba(147, 102, 71, 1);
    color: rgba(255, 255, 255, 1);
}

.container .sub-nav .list .item .item-child-active:after {
    background: rgba(255, 255, 255, 1);
}

.container .news-list {
    position: relative;
    width: 940px;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 2px 34px 0 rgba(153, 153, 153, 0.28);
    background: rgba(255, 255, 255, 1);
}

.container .news-list .title {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    border-bottom: 2px solid rgba(226, 226, 226, 1);
}

.container .news-list .title .text {
    display: flex;
    align-items: center;
    width: auto;
    height: 100%;
    font-size: 22px;
    color: rgba(139, 44, 40, 1);
    border-bottom: 2px solid rgba(139, 44, 40, 1);
    margin-top: 2px;
}

.container .news-list .title .total {
    margin-left: auto;
    font-size: 14px;
    color: rgba(153, 153, 153, 1);
}

.container .news-list .list {
    width: 100%;
    padding: 20px 0 20px 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.container .news-list .list .line {
    width: 100%;
    height: 0;
    margin: 10px 0;
    border-top: 1px dashed rgba(226, 226, 226, 1);
}

.container .news-list .list .item {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    font-size: 16px;
}

.container .news-list .list .item:before {
    content: '';
    position: absolute;
    left: -20px;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: rgba(190, 190, 190, 1);
}

.container .news-list .list .item:hover:before {
    background: rgba(139, 44, 40, 1);
}

.container .news-list .list .item .news {
    flex: 1;
    color: rgba(51, 51, 51, 1);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.container .news-list .list .item:hover .news {
    color: rgba(139, 44, 40, 1);
}

.container .news-list .list .item .date {
    padding-left: 10px;
    color: rgba(153, 153, 153, 1);
}

.container .news-list .page {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 26px;
    font-size: 14px;
    color: rgba(51, 51, 51, 1);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container .news-list .page .prev {
    margin-right: 10px;
    cursor: pointer;
}

.container .news-list .page .next {
    margin-left: 10px;
    margin-right: 30px;
    cursor: pointer;
}

.container .news-list .page .item {
    display: flex;
    justify-content: center;
    width: 26px;
    height: 26px;
    line-height: 26px;
    margin: 0 10px;
    border-radius: 50%;
    cursor: pointer;
}

.container .news-list .page .active {
    color: rgba(255, 255, 255, 1);
    background: rgba(139, 44, 40, 1);
}

.container .news-list .page .slightly {
    display: flex;
    justify-content: center;
}
.container .news-list .none {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 60px 0;
    font-size: 14px;
    color: rgba(153, 153, 153, 1);
}

.msg-desc {
    width: 1200px;
    background: rgba(255, 255, 255, 1);
    border-radius: 10px;
}

.msg-desc .msg-desc-header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 76px;
    padding: 0 20px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(226, 226, 226, 1);
}

.msg-desc .msg-desc-header .title {
    width: 1128px;
    text-align: center;
    font-size: 26px;
    color: rgba(51, 51, 51, 1);
    font-weight: bold;
}

.msg-desc .msg-desc-header .close-btn {
    width: 32px;
    height: 32px;
    margin-left: auto;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url("/static/web/images/template1/close-btn.png");
}

.msg-desc-body {
    width: 100%;
}

.msg-desc-body .title {
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    padding: 0 90px;
    box-sizing: border-box;
    font-size: 20px;
    color: rgba(51, 51, 51, 1);
}

.msg-desc-body .title .ico {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url("/static/web/images/template3/question-ico.png");
}

.msg-desc-body .title .ico1 {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url("/static/web/images/template3/answer-ico.png");
}

.msg-desc-body .desc-line {
    display: flex;
    width: 1020px;
    min-height: 50px;
    margin: 0 auto;
    border-right: 1px solid rgba(203, 204, 205, 1);
}

.msg-desc-body .desc-line .label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    font-size: 16px;
    font-weight: bold;
    color: rgba(51, 51, 51, 1);
    background: rgba(241, 241, 241, 1);
    border-top: 1px solid rgba(203, 204, 205, 1);
    border-left: 1px solid rgba(203, 204, 205, 1);
}

.msg-desc-body .desc-line .value {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    font-size: 16px;
    color: rgba(51, 51, 51, 1);
    border-top: 1px solid rgba(203, 204, 205, 1);
    border-left: 1px solid rgba(203, 204, 205, 1);
}