@charset "UTF-8";

.mainBox > .newsListBox {
    position: relative;
    display: block;
    width: 100%;
}
.mainBox > .newsListBox > li {
    position: relative;
    display: block;
    width: 100%;
    border-bottom: 1px solid #888;
    font-size: 0;
    line-height: 0;
    letter-spacing: 0;
    padding: 30px 0 30px 0;
    text-align: center;
}
.mainBox > .newsListBox > li > a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top:0;
}
.mainBox > .newsListBox > li > .imgBox {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 400px;
    height: 60vw;
    max-height: 250px;
    overflow: hidden;
    background: #ddd;
}
.mainBox > .newsListBox > li > .imgBox img {
    position: absolute;
    display: block;
    width: auto;
    height: 100%;
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%) scale(1);
    -webkit-transform: translate(-50%,-50%) scale(1);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.mainBox > .newsListBox > li:hover > .imgBox img {
    transform: translate(-50%,-50%) scale(1.1);
    -webkit-transform: translate(-50%,-50%) scale(1.1);
}
.mainBox > .newsListBox > li > .textBox {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 400px);
    padding: 0 0 0 30px;
    text-align: left;
}
.mainBox > .newsListBox > li > .textBox > h2 {
    position: relative;
    display: block;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 2px;
    color:#333;
    margin: 0 0 20px 0;
}
.mainBox > .newsListBox > li > .textBox > h2 span {
    position: relative;
    display: inline-block;
    border-left: 1px solid #000;
    padding: 0 0 0 15px;
    margin: 0 0 0 15px;
}
.mainBox > .newsListBox > li > .textBox > h2.live {
    color:#9c0000;
    padding: 0 0 0 15px
}
.mainBox > .newsListBox > li > .textBox > h2.live::before {
    content: "";
    position: absolute;
    display: inline-block;
    height: 10px;
    width: 10px;
    left: 0;
    top:2px;
    background: #9c0000;
    border-radius: 50%;
}
.mainBox > .newsListBox > li > .textBox > h1 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 1px;
    color:#000;
    margin: 0 0 20px 0;
    font-weight: bold;
}
.mainBox > .newsListBox > li > .textBox > p {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 1px;
    color:#333;
    margin: 0 0 10px 0;
}
.mainBox > .newsListBox > li > .textBox > span {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 1px;
    color:#c9a063;
    margin: 0 0 20px 0;
}
@media screen and (max-width: 900px) {
    .mainBox > .newsListBox > li > .imgBox {
        width: 60%;
        height: 35vw;
        max-height: none;
    }
    .mainBox > .newsListBox > li > .textBox {
        width: 60%;
        padding: 20px 0 0 0;
    }
}
@media screen and (max-width: 700px) {
    .mainBox > .newsListBox > li > .imgBox {
        width: 100%;
        height: 55vw;
        max-height: none;
    }
    .mainBox > .newsListBox > li > .textBox {
        width: 100%;
        padding: 20px 0 0 0;
    }
}

.mainBox > .pageListBox {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    margin: 30px 0 30px 0;
}
.mainBox > .pageListBox ul {
    position: relative;
    display: inline-block;
}
.mainBox > .pageListBox ul li {
    position: relative;
    display: inline-block;
    padding: 5px 10px 5px 10px;
    font-size: 18px;
    line-height: 18px;
    color: #c9a063;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    margin: 0 3px 0 3px;
}
.mainBox > .pageListBox ul li:hover {
    color:#fff;
    background: #f0c078;
}
.mainBox > .pageListBox ul li.current {
    color:#fff;
    background: #c9a063;
}
.mainBox > .pageListBox li.backwardBtnTen {
    color:rgba(0,0,0,0);
}
.mainBox > .pageListBox li.backwardBtnTen:hover {
    color:rgba(0,0,0,0);
}
.mainBox > .pageListBox li.backwardBtnTen::before {
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    top:10px;
    left: 14px;
    border-left: 2px solid #c9a063;
    border-bottom: 2px solid #c9a063;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.mainBox > .pageListBox li.backwardBtnTen::after {
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    top:10px;
    left: 7px;
    border-left: 2px solid #c9a063;
    border-bottom: 2px solid #c9a063;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.mainBox > .pageListBox li.backwardBtnTen:hover::before {
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.mainBox > .pageListBox li.backwardBtnTen:hover::after {
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.mainBox > .pageListBox li.backwardBtnOne {
    color:rgba(0,0,0,0);
}
.mainBox > .pageListBox li.backwardBtnOne:hover {
    color:rgba(0,0,0,0);
}
.mainBox > .pageListBox li.backwardBtnOne::before {
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    top:10px;
    left: 10px;
    border-left: 2px solid #c9a063;
    border-bottom: 2px solid #c9a063;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.mainBox > .pageListBox li.backwardBtnOne:hover::before {
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.mainBox > .pageListBox li.forwardBtnTen {
    color:rgba(0,0,0,0);
}
.mainBox > .pageListBox li.forwardBtnTen:hover {
    color:rgba(0,0,0,0);
}
.mainBox > .pageListBox li.forwardBtnTen::before {
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    top:10px;
    left: 10px;
    border-left: 2px solid #c9a063;
    border-bottom: 2px solid #c9a063;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}
.mainBox > .pageListBox li.forwardBtnTen::after {
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    top:10px;
    left: 3px;
    border-left: 2px solid #c9a063;
    border-bottom: 2px solid #c9a063;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}
.mainBox > .pageListBox li.forwardBtnTen:hover::before {
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.mainBox > .pageListBox li.forwardBtnTen:hover::after {
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.mainBox > .pageListBox li.forwardBtnOne {
    color:rgba(0,0,0,0);
}
.mainBox > .pageListBox li.forwardBtnOne:hover {
    color:rgba(0,0,0,0);
}
.mainBox > .pageListBox li.forwardBtnOne::before {
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    top:10px;
    left: 7px;
    border-left: 2px solid #c9a063;
    border-bottom: 2px solid #c9a063;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}
.mainBox > .pageListBox li.forwardBtnOne:hover::before {
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
}


@media screen and (max-width: 600px) {
    .mainBox > .pageListBox ul {
        margin: 0 0 50px 0;
    }
    .mainBox > .pageListBox ul li {
        padding: 5px 10px 5px 10px;
        font-size: 13px;
        line-height: 18px;
        margin: 0 2px 0 2px;
    }
    .mainBox > .pageListBox li.backwardBtnOne {
        position: absolute;
        top:30px;
        left: 50%;
        margin: 0 0 0 -50px;
    }
    .mainBox > .pageListBox li.backwardBtnTen {
        position: absolute;
        top:30px;
        left: 50%;
        margin: 0 0 0 -90px;
    }
    .mainBox > .pageListBox li.forwardBtnOne {
        position: absolute;
        top:30px;
        left: 50%;
        margin: 0 0 0 40px;
    }
    .mainBox > .pageListBox li.forwardBtnTen {
        position: absolute;
        top:30px;
        left: 50%;
        margin: 0 0 0 80px;
    }
}
@media screen and (max-width: 450px) {
    .mainBox > .pageListBox ul {
        display: block;
        width: 100%;
        letter-spacing: 0;
        font-size: 0;
    }
    .mainBox > .pageListBox ul li.numberBtn {
        width: calc(100% / 10 - 10px);
        padding: 0;
        font-size: 13px;
        line-height: 18px;
        margin: 0 5px 0 5px;
    }
}


.mainBox > .newsContentHeader {
    position: relative;
    display: block;
    width: 100%;
    border-bottom: 1px solid #888;
}
.mainBox > .newsContentHeader h1 {
    position: relative;
    display: block;
    width: 100%;
    font-size: 36px;
    text-align: center;
    line-height: 40px;
    color: #000;
}
.mainBox > .newsContentHeader h2 {
    position: relative;
    display: block;
    width: 100%;
    font-size: 15px;
    text-align: center;
    line-height: 15px;
    color:#888;
    padding: 15px 0 15px 0;
}
@media screen and (max-width:700px) {
    .mainBox > .newsContentHeader h1 {
        font-size: 24px;
        line-height: 30px;
    }
}

.mainBox > .newsContentBox {
    position: relative;
    display: block;
    width: 100%;
    padding: 30px 0 30px 0;
}
.mainBox > .newsContentBox > .newsEditBox {
    position: relative;
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 1px;
}
.mainBox > .newsContentFooter {
    position: relative;
    display: block;
    width: 100%;
}
.mainBox > .newsContentFooter > .backBtn {
    position: relative;
    display: block;
    width: 90px;
    height: 90px;
    background: #c9a063;
    border-radius: 50%;
    left: 50%;
    margin: 0 0 0 -45px;
    color:#fff;
    font-size: 15px;
    line-height: 90px;
    text-align: center;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
}
.mainBox > .newsContentFooter > .backBtn:hover {
    background: #f0c078;
}
.mainBox > .newsContentFooter > .backBtn a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.mainBox > .newsContentFooter > .otherNewsBox {
    position: relative;
    display: block;
    width: 100%;
    margin: 30px 0 40px 0;
    border-top:1px solid #888;
    font-size: 0;
    line-height: 0;
    letter-spacing: 0;
}
.mainBox > .newsContentFooter > .otherNewsBox > h1 {
    position: relative;
    display: block;
    width: 100%;
    font-size: 20px;
    line-height: 22px;
    color:#c9a063;
    text-align: left;
    letter-spacing: 2px;
    padding: 20px 0 0 0;
}
.mainBox > .newsContentFooter > .otherNewsBox > .otherNewsList {
    position: relative;
    display: inline-block;
    width: calc(100% - 400px);
    padding: 10px 30px 0 0;
    vertical-align: top;
    text-align: left;
    min-height: 270px;
}
.mainBox > .newsContentFooter > .otherNewsBox > .otherNewsList > li {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1px;
    padding: 10px 0 10px 20px;
    border-bottom: 1px solid #ddd;
    color: #000;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.mainBox > .newsContentFooter > .otherNewsBox > .otherNewsList > li a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.mainBox > .newsContentFooter > .otherNewsBox > .otherNewsList > li:hover {
    color:#c9a063;
}
.mainBox > .newsContentFooter > .otherNewsBox > .otherNewsList > li::before {
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    left: 0;
    top:18px;
    background: #c9a063;
    border-radius: 50%;
}
.mainBox > .newsContentFooter > .otherNewsBox > .otherNewsList > .moreBtn {
    position: relative;
    display: block;
    width: 100%;
    text-align:right;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1px;
    margin: 10px 0 0 0;
    color:#c9a063;
}
.mainBox > .newsContentFooter > .otherNewsBox > .hotNews {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 400px;
    height:270px;
    padding: 10px 0 0 0;
    text-align: left;
    float: right;
}
.mainBox > .newsContentFooter > .otherNewsBox > .hotNews > .imgBox {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.mainBox > .newsContentFooter > .otherNewsBox > .hotNews > .imgBox img {
    position: absolute;
    display: block;
    width: auto;
    height: 100%;
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%) scale(1);
    -webkit-transform: translate(-50%,-50%) scale(1);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.mainBox > .newsContentFooter > .otherNewsBox > .hotNews:hover > .imgBox img {
    transform: translate(-50%,-50%) scale(1.1);
    -webkit-transform: translate(-50%,-50%) scale(1.1);
}
.mainBox > .newsContentFooter > .otherNewsBox > .hotNews > .textBox {
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 1px;
    color:#fff;
    padding: 10px;
    background: rgba(0,0,0,0.7);
}
.mainBox > .newsContentFooter > .otherNewsBox > .hotNews > .icon {
    position: absolute;
    display: block;
    width: 60px;
    height: 20px;
    left: -5px;
    top:20px;
}
.mainBox > .newsContentFooter > .otherNewsBox > .hotNews > .icon::before {
    content: "";
    position: absolute;
    display: block;
    width: 5px;
    height: 100%;
    background: #560000;
    top:0;
    left: 0;
    transform-origin:0 0;
    -webkit-transform-origin:0 0;
    transform: skewY(45deg);
    -webkit-transform: skewY(45deg);
}
.mainBox > .newsContentFooter > .otherNewsBox > .hotNews > .icon span {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top:0;
    font-size: 15px;
    line-height: 18px;
    color:#fff;
    letter-spacing: 2px;
    background: #820000;
    text-align: center;
}
@media screen and (max-width:1200px) {
    .newsContent iframe{
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 850px){
    .newsEditBox > table > tbody > tr > td{
        width: 50%;
        /*display: table-row;*/
    }
    .newsEditBox table.style1 > tbody > tr > td{
        width: auto;
    }
    .newsEditBox img{
        min-width: 70%;
        height: auto;
        max-width: 100%;
    }
}
@media screen and (max-width:800px) {
    .mainBox > .newsContentFooter > .otherNewsBox {
        text-align: center;
    }
    .mainBox > .newsContentFooter > .otherNewsBox > .hotNews {
        width: 100%;
        height: 60vw;
        float: none;
    }
    .mainBox > .newsContentFooter > .otherNewsBox > .otherNewsList {
        width: 100%;
        padding: 10px 0 0 0;
        min-height: inherit;
    }
}

@media screen and (max-width: 640px){
/*    tr{
        display: table;
        width: 100%;
    }*/
    .newsEditBox > table > tbody > tr{
        width: 100%;
        display: table-row;
    }
    .newsEditBox > table > tbody > tr > td{
        width: 100%;
        display: table-row;
    }
    .newsEditBox img{
        min-width: 50% !important;
        height: auto !important;
        max-width: 100% !important;
    }

    .newsEditBox > table > tbody table > tbody img{
        min-width: 50%;
        height: auto;
        max-width: 100%;
        width: 75%;
    }
    .newsEditBox > table > tbody > tr.tr2{
        display: table;
    }
        
}
@media screen and (max-width:600px) {
    .mainBox > .newsContentFooter > .otherNewsBox > .otherNewsList > li {
        font-size: 15px;
        line-height: 24px;
    }
}


