@charset "utf-8";
/*列表通用 index、news*/
.news-list.type3:before{
    background: #fff;
}
.news-list .pic:before{
    display: none;
}
.news-list .item .box{
    position: relative;
    box-sizing: border-box;
    padding: 0 15px;
    transition: all .5s ease;
}
.news-list .item .pic {
    position: relative;
    box-sizing: border-box;
}
.news-list .item .name{
    color: #060601;
}
.news-list .item .description{
    color: #777;
}
.news-list .item .date {
    color: #060601;
    font-family: 'Cormorant Infant',serif;
}
/* type2 */
.news-list.type2 .item {
    border-bottom: 1px solid #e6e6e6;
}
/* end type2 */
/* type3 */
.news-list.type3{
    margin: 0 -25px;
    max-width: calc(100% + 50px);
    margin: 0;
}
.news-list.type3 .item{
    border-color: #e6e6e6;
    padding: 0;
}
.news-list.type3 .item .box{
    padding: 35px;
    margin: 0 auto;
}
.news-list.type3 .item .box::before{
    content: '';
    position: absolute;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    margin: auto;
    top: -10px;
    left: -10px;
    right: 0;
    bottom: 0;
    transition: all 0.5s ease;
    z-index: 1;
    transform: scaleY(0);
}
.news-list.type3 .item .box:hover:before{
    background: #fff;
    transform: scaleY(1);
    -webkit-box-shadow: 0 0 24px rgba(0,0,0,.1);
    box-shadow: 0 0 24px rgba(0,0,0,.1);
}
.news-list.type3 .date{
    color: #060601;
    font-family: 'Cormorant Infant',serif;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
}
.news-list.type3 .date::before{
    content: '';
    position: absolute;
    top: -14px;
    left: -17px;
    bottom: 0;
    right: 0;
    width: 115px;
    height: 115px;
    background: #F6F868;
    border-radius: 100%;
    z-index: -1;
    transform: scale(0);
    transition: all 0.5s ease;
}
.news-list.type3 .box:hover .date::before{
    transform: scale(1);
}
.news-list.type3 .day {
    font-size: 56px;
    line-height: 0.7;
    order: 3;
}
.news-list.type3 .month {
    font-size: 30px;
    position: relative;
    line-height: 1.2;
    order: 1;
}
.news-list.type3 .years{
    font-size: 14px;
    line-height: 0.7;
    order: 3;
    position: absolute;
    bottom: 0;
    padding-left: 55px;
}
.news-list.type3 .date .month::before{
    content: '';
    position: absolute;
    top: calc(50% - 10px);
    left: 40px;
    width: 1px;
    height: 20px;
    background: #060601;
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
    opacity: 0.5;
}
.news-list.type3 .date .day:before{
    display: none;
}
.news-list.type3 .txt {
    position: relative;
    z-index: 2;
}
.news-list.type3 .btn.more {
    position: relative;
    display: block;
    background: transparent;
    color: #060601;
    font-family: 'Cormorant Infant',serif;
    margin: 15px 0 0 5px;
    width: auto;
    bottom: unset;
    text-align: left;
    width: 75px;
    transition: all 0.5s ease;
    overflow-x: unset;
    z-index: 1;
    display: none;
}
.news-list.type3 .btn.more em {
    display: none;
}
.news-list .box:hover .btn.more{
    background: transparent;
    color: #060601;
}
.news-list.type3 .btn.more i {
    position: absolute;
    top: 5px;
    right: 0;
    width: 40px;
    height: 40px;
    transition: all .5s ease;
}
.news-list.type3 .btn.more i:after,
.news-list.type3 .btn.more i:before {
    content: "";
    position: absolute;
    display: block;
    background: url(../../../images/layout03-1/common/index/arr_b_r.svg) no-repeat 50% 40%;
    background-size: contain;
    height: 75%;
    width: 75%;
    bottom: 0;
    display: block;
    margin: auto;
    right: 0;
    top: 0;
    left: 0;
    transform: translateX(0);
    transition: transform .4s ease-in-out,opacity .2s ease-in-out .2s;
}
.news-list.type3 .btn.more i:before {
    opacity: 0;
    transform: translateX(-100%);
    transition: transform .4s ease-in-out,opacity .2s ease-in-out;
}
.news-list.type3 .box:hover .btn.more i:before {
    opacity: 1;
    transform: translateX(0);
    transition: transform .4s ease-in-out,opacity .2s ease-in-out .2s;
}
.news-list.type3 .box:hover .btn.more i:after {
    opacity: 0;
    transform: translateX(100%);
    transition: transform .4s ease-in-out,opacity .2s ease-in-out;
}
/* end type3 */
/* type4 */
.news-list.type4 .item .box {
    border: none;
    margin-top: 115px;
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    padding: 10px;
}
.news-list.type4 .box:hover {
    background: #060601;
}
.news-list.type4 .item .pic {
    margin-top: -115px;
    position: relative;
}
.news-list.type4 .txt {
    padding: 0 10px 10px 10px;
}
.news-list.type4 .item .box:hover .name{
    color: #FFF;
}
.news-list.type4 .item .date,
.news-date {
    border-radius: 0;
    color: #fff;
    font-family: 'Cormorant Infant',serif;
    font-weight: 500;
    background: #060601;
    transition: all .5s ease;
}
.news-list.type4 .item .date {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: -31px 0px 13px;
    padding: 0;
    line-height: 1;
}
.news-list.type4 .item .date .day{
    display: block;
    width: 100%;
    line-height: 0.8;
    margin-bottom: -15px;
    font-size: 35px;
}
.news-list.type4 .item .box:hover .date{
    background: #F6F868;
    color: #060601;
}
/* end type4 */
.news-list.type2 .btn.more{
    z-index: 5;
    overflow-x: hidden;
    color: #fff;
    background: #060601;
    bottom: 10px;
    border-radius: 0;
    font-family: 'Cormorant Infant',serif;
    transition: all .5s ease;
}
.news-list.type2 .box:hover .btn.more {
    background: #777;
    color: #fff;
}
/*!列表通用 index、news*/
/*瀑布流*/
.masonry-list .item:nth-child(n),
.has-side .masonry-list .item:nth-child(n){
    clear: none!important;
}
/*!瀑布流*/
/*------------ detail-main ------------*/
.share_box{
    text-align: left;
    order: 3;
    border: 1px dashed #ddd;
    border-width: 1px 0;
    padding: 10px 0;
    position: relative;
    width: 100%;
}
.news-header{
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    padding-bottom: 5px;
    margin-bottom: 30px;
}
.news-date{
    width: 100%;
    margin: 0px auto;
    color: #060601;
    background: none;
    font-size: 17px;
    font-weight: normal;
    line-height: 26px;
    text-align: left;
    display: flex;
}
.news-date .day{
    order:3;
}
.news-date .month{
    order:2;
}
.news-date .month:before,.news-date .day:before{
    content: '-';
    display: inline-block;
}
.news-title{
    font-weight: bold !important;
    font-size: 22px;
    font-weight: normal;
    text-align: left;
    margin: 1px auto;
    padding-bottom: 10px;
    width: 100%;
    color: #060601;
}
.btn-box{
    text-align: left;
}
/*------------ rwd ------------*/
