body{
    font-size: 16px;
    min-width: 1272px;
}
.inner {
    width: 1248px;
    margin: auto;
    position: relative;
}

.inner.flex {
    display: flex;
}
.inner.flex-space-between{
    justify-content: space-between;
}
.inner.item-center {
    align-items: center;
}

.header {
    height: 80px;
    width: 100%;
    padding: 0 calc(50% - 624px);
    min-width: 1248px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .05);
    position: fixed;
    top: 0;
    left: 0;
    z-index:3;
    transition: all .3s;
    background: rgba(91,12,16,.9);
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.header.tran{
    background: rgba(0,0,0,0);
}

.header .logo img {
    height: 50px;
}


.nav {
    width: 100%;
    display: flex;
    justify-content: right;
}

.nav li {
    padding-left: 50px;
    position: relative;
    display: flex;
    align-items: center;
}

.nav li i {
    padding-left: 4px;
    transition: all .5s;
    color: #fff;
    font-size: 24px;
}

.nav li .ap {
    line-height: 80px;
    display: block;
    font-size: 20px;
    color: #fff;
}


.nav li .as {
    position: absolute;
    background: rgba(255, 255, 255, .9);
    border-top: 3px solid #cc000a;
    padding: 12px;
    border-radius: 5px;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .05);
    animation-name: animate-dropdown;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    display: none;
    top: 80px;
    z-index: 99;
}

.nav li .as:before {
    position: absolute;
    content: '';
    border-bottom: 6px solid #cc000a;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    top: -9px;
    left: 15px;
}

.nav li .as a {
    white-space: nowrap;
    line-height: 2;
    display: block;
    font-size: 16px;
}

.nav li:hover .ap {
    color: #cc000a;
    font-weight: bold;
    animation-name: animate-flop;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

.nav li:hover i {
    color: #cc000a;
    transform: rotateX(180deg);
}

.nav li:hover .as {
    display: block;
}

.home-banner img {
    width: 100%;
}
.footer {
    background: #444;
    padding: 24px calc(50% - 624px);
}

.footer-end {
    align-items: center;
    justify-content: space-between;
    display: flex;
}

.footer-end .end-item .logo {
    padding-bottom: 20px;
    height: 80px;
}

.footer-end .end-item .qrcode {
    width: 80px;
    margin-left: auto;
    border-radius: 3px;
}


.footer-end .end-item a {
    color: rgba(255, 255, 255, .8);
    padding-left: 12px;
}

.footer-end .end-item a:hover {
    color: #fff;
}

.footer-end .end-item p {
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    line-height: 25px;
    padding-left: 75px;
}

.footer-end .end-item:nth-child(2) {
    text-align: right;
}


.home-title{
    padding: 24px 0;
    text-align: center;
}
.home-title:after{
    content: ' ';
    height: 9px;
    width: 100%;
    display: block;
    background-image: url("../images/home-title-bg.png");
    background-size: auto 9px;
    background-repeat: no-repeat;
    background-position: center;
}
.home-title .en{
    font-size: 14px;
    font-family: num,sans-serif;
    font-weight: 600;
    color: #555;
    display: block;
    line-height: 1;
}
.home-title .zh{
    font-size: 32px;
    font-weight: 700;
    display: block;
    color: #cc000a;
}
.home-title.white .en,
.home-title.white .zh{
    color: #fff;
}

.home-plate{
    width: 100%;
    padding: 48px calc(50% - 624px) 72px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.home-plate.white{
    background: #fff;
}

.home-intro p{
    padding: 6px 0;
}

.home-product{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}
.home-product a{
    display: block;
    border-radius: 5px;
    overflow: hidden;
}
.home-product a img{
    width: 100%;
    height: 200px;
}
.home-product a span{
    display: block;
    text-align: center;
    line-height: 48px;
    background: #fff;
}
.home-news {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.home-news a {
    display: flex;
    margin: 12px 0;
    width: calc(50% - 12px);
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    transition: all .3s;
    padding: 18px;
    background: #fff;
}

.home-news a .thumb {
    width: 140px;
    height: 140px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.home-news a img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    transition: all .5s;
}

.home-news a .text {
    padding-left: 12px;
    width: 100%;
    overflow: hidden;
}

.home-news a .text .title {

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.home-news a .text .detail {
    display: flex;
    color: #999;
    padding-top: 12px;
    align-items: center;
    font-size: 14px;
}

.home-news a .text .detail span{
    font-weight: normal;
    padding-right: 24px;
}

.home-news a .text p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 50px;
    line-height: 25px;
    font-size: 14px;
    margin-top: 12px;
    color: #666;
}
.home-news a:hover img {
    transform: scale(1.2);
}


.banner{
    height: 300px;
    background-image: url(../images/sub.jpg);
    background-size: cover;
    background-position: bottom;
    min-width: 1248px;
    color: #fff;
    line-height: 1.8;
    display: flex;
    padding-top: 80px;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.news-list {
    width: 1248px;
    margin: 24px auto;
    border-radius:3px;
    background: #fff;
    overflow: hidden;
}

.news-list li {
    overflow: hidden;
    display: flex;
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
}
.news-list li:nth-child(2n){
    background: #fbfbfb;
}
.news-list li:last-child{
    border-bottom: none;
}

.news-list li .img {
    width: 240px;
    height: 135px;
    overflow: hidden;
    border-radius:3px;
}

.news-list li .img img {
    width: 240px;
    height: 135px;
    transition: all 1s;
}

.news-list li:hover .img img {
    transform: scale(1.1);
}
.news-list li:hover a b{
    color: #ff5065;
}

.news-list li .text {
    width: 100%;
    padding-left: 24px;
}

.news-list li .text b {
    display: block;
    height: 24px;
    line-height: 24px;
    font-size: 20px;
    overflow: hidden;
    font-weight: normal;
    margin-bottom: 12px;
    color: #333;
}

.news-list li .text p {
    height: 40px;
    line-height: 20px;
    display: block;
    overflow: hidden;
    color: #666;
    font-size: 14px;
}

.news-list li .text span {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 12px;
}

.news-list li .text span .fa {
    font-size: 16px;
    margin-right: 6px;
}

.news-list li .text span .fa:nth-child(2) {
    padding-left: 24px;
}

.se-header {
    padding: 0 calc(50% - 624px);
    min-width: 1248px;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
    height: 64px;
    background: #fff;

}

.se-header .title {
    width: auto;
    font-size: 30px;
    font-weight: 400;
    white-space: nowrap;
}

.se-header .place {
    width: auto;
    color: #666;
    white-space: nowrap;
}

.se-header .place a,.se-header .place span {
    color: #666;
    background-image: url("../images/right.svg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 10px 10px;
    padding-left: 20px;
    padding-right: 10px;
}
.se-header .place a:first-child{
    background-image: url("../images/home.svg");
    background-size: 13px 13px;
}

.se-header .place a:hover {
    color: #cc000a;
}

.se-header .more {
    width: 100%;
    display: flex;
    justify-content: flex-end;

}

.se-header .more a {
    display: block;
    line-height: 30px;
    padding: 0 18px;
    color: #cc000a;
    border: 1px solid #cc000a;
    transition: all .5s;
    margin-left: 18px;
    background-color: #fff;
    border-radius:15px;
}

.se-header .more a:hover, .se-header .more a.active {
    color: #fff;
    background-color: #cc000a;
}

.pages {
    display: flex;
    padding: 0 24px;
}

.pages a {
    border: #f0f0f0 1px solid;
    padding: 3px 12px;
    margin-right: 12px;
    background: #fafafa;
    display: block;
    border-radius: 2px;
    color: #333;
}
.pages a:hover{
    background: #fff;
}

.pages span {
    padding: 3px 12px;
    background: #cc000a;
    color: #fff;
    border: #cc000a 1px solid;
    margin-right: 12px;
    display: block;
    border-radius: 3px;
}

.pages span em {
    font-style: normal;
}

.pages a, .pages span {
    margin: 24px 12px 24px 0;
}


.content {
    width: 1248px;
    margin: 24px auto;
    border-radius:3px;
    background: #fff;
    overflow: hidden;
}
.content .detail{
    padding: 24px;
    line-height: 2;
}
.content .detail img{
    max-width: 100%;
    height: auto;
}
.content .detail p{
    padding: 6px 0;
}
.content .detail-title{
    font-size: 24px;
    line-height: 1.2;
    padding: 24px 24px 0 24px;
}
.content .detail-info{
    border-bottom: 1px dotted #f0f0f0;
    display: flex;
    align-items: center;
    color: #555;
    font-size: 14px;
    line-height: 24px;
    padding: 12px 0;
    margin: 0 24px;
}

.content .detail-info .fa {
    font-size: 16px;
    margin-right: 6px;
}

.content .detail-info .fa:nth-child(2) {
    padding-left: 24px;
}

.content h1,
.content h2,
.content h3,
.content h4{
    color: #cc000a;
}

.pro-table{
    width: 100%;
    border-top: 1px solid #f0f0f0;
    border-left: 1px solid #f0f0f0;
    margin: 0;
    border-collapse: separate;

}
.pro-table tr:nth-child(1){
    font-weight: bold;
    background: #f8f8f8;
}
.pro-table td{
    padding: 6px 12px;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}



.contact{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact li{
    width: calc(50% - 12px);
    border-radius: 5px;
    background: #fff;
    padding: 24px;
    border: 1px solid #f0f0f0;
    margin: 24px 0 0 0;
    position: relative;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .05);
}
.contact li:nth-child(1),
.contact li:nth-child(2){
    margin-top: 0;
}


.guests-list li {
    overflow: hidden;
    display: flex;
    padding: 24px;
    align-items: flex-start;
    border-radius: 5px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .05);
    margin-top: 24px;
}
.guests-list li:first-child{
    margin-top: 0;
}
.guests-list li:nth-child(2n){
    background: #fbfbfb;
}
.guests-list li:last-child{
    border-bottom: none;
}

.guests-list li img {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 50%;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .05);
    border: 3px solid #fff;
}

.guests-list li .text {
    width: 100%;
    padding-left: 24px;
}
.guests-list li .text .pos{
    font-size: 20px;
    color: #cc000a;
    font-weight: bold;
}
.guests-list li .text .name{
    color: rgba(1,9,56,.9);
    font-weight: bold;
}
.guests-list li .text .des{
    color: #666;
}


.agenda-content{
    margin: 0;
    padding: 0;
    list-style: none;
}
.agenda-content li{
    margin: 24px 0;
    border: 1px solid #f0f0f0;
    position: relative;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .05);
    border-radius: 5px;
    padding-bottom: 24px;
}
.agenda-content .date{
    color: #cc000a;
    font-size: 20px;
    padding: 12px 24px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: bold;
}
.agenda-content .address{
    padding: 24px 24px 0 24px;
}
.agenda-content .time-item{
    padding: 24px 24px 0 24px;
    display: flex;
}
.agenda-content .time-item .time{
    width: 120px;
    color: #cc000a;
}
.agenda-content .time-item .item{
    margin-left: 48px;
}




.home-banner {
    width: 100%;
    height: 800px;
    background-color: #fff;
    position: relative;
}


.home-banner .swiper-button-next,
.home-banner .swiper-button-prev {
    bottom: 0 !important;
    display: none;
}

.home-banner:hover .swiper-button-next,
.home-banner:hover .swiper-button-prev {
    display: block;
    animation-name: animate-dropdown;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

.home-banner .swiper-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 800px;
}

.more{
    background: #cc000a;
    color: #fff;
    width: 120px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    display: block;
    font-size: 14px;
    margin: 48px auto 0;
}
.more:hover{
    background: #f0101b;
    color: #fff;
}
.row-left {
    width: 220px;
    background: #fff;
    margin-right: 24px;
    flex-shrink: 0;
    border-radius: 5px;
    margin-bottom: 24px;
}

.row-right {
    width: 100%;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 24px;
}

.row-left .row-nav {
    padding: 24px;
}

.row-left .row-nav a {
    display: block;
    line-height: 40px;
    border: 1px solid #f0f0f0;
    text-align: center;
    margin-bottom: 24px;
    background: #f8f8f8;
    color: #333;
    border-radius: 3px;
}

.row-left .row-nav a:hover {
    background: #fff;
}

.row-left .row-nav a.active {
    background: #cc000a;
    color: #fff;
    border: 1px solid #cc000a;
}

.row-title {
    height: 64px;
    font-size: 20px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: bold;
    padding: 0 24px;
    display: flex;
    align-items: center;
    position: relative;
    color: #cc000a;
}

.row-content {
    padding: 24px;
    line-height: 1.8;
}


.row-content img,
.row-content video{
    max-width: 100%;
    height: auto;
    border-radius: 2px;
}
.row-content p{
    padding: 12px 0;
}
.article-deatil-title {
    font-size: 24px;
    line-height: 1.2;
    padding: 24px 24px 0 24px;
    font-weight: bold;
    text-align: center;
}

.article-deatil-info {
    border-bottom: 1px dotted #f0f0f0;
    display: flex;
    align-items: center;
    color: #555;
    font-size: 14px;
    line-height: 24px;
    padding: 12px 0;
    margin: 0 24px;
    justify-content: center;
}

.article-deatil-info .iconfont {
    font-size: 16px;
}

.article-deatil-info .iconfont:nth-child(2) {
    padding-left: 24px;
}

.paging {
    display: flex;
    padding: 24px;
    justify-content: center;
    align-items: center;
}

.paging a, .paging span {
    border: #f0f0f0 1px solid;
    padding: 6px 12px;
    margin: 0 6px;
    background: #fafafa;
    display: block;
    border-radius: 2px;
    min-width: 36px;
    text-align: center;
    font-size: 14px;
}

.paging a:hover {
    background: #fff;
}

.paging .curr, .paging .active {
    background: #cc000a;
    color: #fff;
    border: #cc000a 1px solid;
}

.paging span {
    margin: 0 6px;
    display: block;
}


.text-list li {
    display: flex;
    border-bottom: 1px dotted #f0f0f0;
    line-height: 48px;
    width: 100%;

}

.text-list li i {
    font-size: 24px;
    color: #0c4e9f;
}

.text-list li a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
}

.text-list li span {
    color: #999;
    width: 100px;
    flex-shrink: 0;
    text-align: right;
    margin-left: auto;
}

.album-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.album-list a {
    width: 100%;
    margin: 0 0 24px 0;
    display: block;
}

.album-list a img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 5px;
}
.album-list a img.scale-down{
    object-fit: scale-down;
    height: 293px;
}

.album-list a span {
    display: block;
    font-size: 16px;
    height: 36px;
    line-height: 36px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.article-list {
    background: #fff;
    overflow: hidden;
}

.article-list li {
    overflow: hidden;
    display: flex;
    padding: 24px 0;
    border-bottom: 1px solid #f0f0f0;
}

.article-list li:nth-child(1) {
    padding-top: 0;
}

.article-list li:last-child {
    border-bottom: none;
}

.article-list li .img {
    width: 240px;
    height: 135px;
    overflow: hidden;
    border-radius: 5px;
}

.article-list li .img img {
    width: 240px;
    height: 135px;
    transition: all 1s;
    object-fit: cover;
}

.article-list li:hover .img img {
    transform: scale(1.1);
}

.article-list li:hover a b {
    color: #ff5065;
}

.article-list li .text {
    width: 100%;
    padding-left: 24px;
}

.article-list li .text b {
    display: block;
    height: 24px;
    line-height: 24px;
    font-size: 20px;
    overflow: hidden;
    font-weight: normal;
    margin-bottom: 12px;
    color: #333;
}

.article-list li .text p {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 璁剧疆涓�2琛� */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666;
    padding: 0;
}
.article-list li .text p .action{
    height: 32px;
    width: 120px;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    margin-right: 24px;
}
.article-list li .text p .action:nth-child(1){
    background: #093160;
}
.article-list li .text p .action:nth-child(2){
    background: #ff6600;
}
.article-list li .text p .action:hover{
    opacity: .8;
}
.article-list li .text span {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 12px;
}

.article-list li .text span .iconfont {
    font-size: 20px;
}
.article-list li .text span.passed{
    color: #00c261;
}
.article-list li .text span .iconfont:nth-child(2) {
    padding-left: 24px;
}

.sub-banner{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 24px;
    height: 300px;
}


.home-honor .swiper-container {
    width: 1248px;
    perspective: 1248px;
}

.home-honor .swiper-slide {
    background-size: cover;
    transform-style: preserve-3d;
}

.home-honor .swiper-slide img {
    width: 100%;
}

