@charset "utf-8";

/* 防止用户自定义背景颜色对网页的影响 */
html{
    color:#333333;background:#fff;
}
/* 内外边距重置 */
*{
    margin:0;padding:0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/* 自定义颜色变量 */
:root {
    --shortcut-red: #FF4351;
    --shortcut-purple: #7B72E9;
    --shortcut-blue: #1B9AF7;
    --shortcut-teal: #19BD03;
    --shortcut-orange: #FE9949;
    --shortcut-dark-blue: #3871DE;
}
.layui-tab-card{
    background-color: #ffffff!important;
}
.layui-tab-card>.layui-tab-title {
    background-color: #ffffff!important;
}
/* 卡片样式 */
.shortcut-card {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.shortcut-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* 适配不同颜色的卡片 */
.card-red { background-color: var(--shortcut-red); }
.card-purple { background-color: var(--shortcut-purple); }
.card-blue { background-color: var(--shortcut-blue); }
.card-teal { background-color: var(--shortcut-teal); }
.card-orange { background-color: var(--shortcut-orange); }
.card-dark-blue { background-color: var(--shortcut-dark-blue); }

/* 卡片内容样式 */
.card-content {
    padding: 20px;
    color: white;
}

/* 标签样式 */
.card-tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    background-color: rgba(255,255,255,0.2);
    font-size: 12px;
    margin-bottom: 15px;
}

/* 标题样式 - 保持与原Tailwind版本一致的字体大小 */
.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    min-height: 3em;
}

/* 摘要样式 - 保持与原Tailwind版本一致的字体大小 */
.card-summary {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    margin-bottom: 15px;
    height: 6em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* 阅读更多按钮 */
.card-more {
    color: white;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.card-more:hover {
    text-decoration: underline;
}

/* 日期样式 */
.card-date {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .card-title {
        /*font-size: 1.25rem;*/
    }
}
/* 调整标签页高度和字体 */
.custom-tab .layui-tab-title {
    height: 70px; /* 标签高度 */
}

.custom-tab .layui-tab-title li {
    line-height: 70px; /* 垂直居中 */
    font-size: 18px; /* 字体大小 */
    padding: 0 30px; /* 左右内边距 */
    font-weight: 500; /* 字体粗细 */
}

/* 选中状态样式优化 */
.custom-tab .layui-tab-title .layui-this {
    color: #1B9AF7; /* 选中颜色（与主题色一致） */
    border-bottom: 3px solid #1B9AF7; /* 底部边框 */
}

/* 鼠标悬停效果 */
.custom-tab .layui-tab-title li:hover {
    color: #333;
    cursor: pointer;
}
.index-news{
    margin-top: 18px;
}
.home-tab-title .layui-this:after {
    height: 70px!important;
}
/* 适配移动端 */
@media (max-width: 768px) {
    .custom-tab .layui-tab-title li {
        font-size: 16px;
        padding: 0 15px;
    }
}
html,body{
    font-family:Arial, sans-serif,'Microsoft Yahei', '微软雅黑';
    word-wrap: break-word;
    color: #333;
    line-height: 1.6;
    padding-top:36px;
}
@media screen and (max-width: 767px) {
    html,body{
        font-size: 14px;
        padding-top: 0; /* 移除移动端的padding-top */
    }
}
input,select,textarea{
    font-size:100%;
}
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,a:visited,a:focus,a:hover{
  text-decoration:none;
  outline: none;
}
a:hover{
    color: #074F98;
}

.clearB{
    clear: both;
}
.layui-btn{
    background: #074F98;
}
.layui-btn-primary{
    background: inherit;
}
.layui-btn-primary:hover{
    border-color: #074F98;
}

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


.block img{
    /*width: 100%;*/
}
.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-btn-lg{
    padding: 18px 100px;
    height: auto;
    line-height: 1;
}
@media screen and (max-width: 567px) {
    .layui-btn-lg{
        width: 100%;
    }
}
@media (min-width: 1400px){
    .layui-container {
        width: 1260px;
    }
}
@media screen and (min-width: 1921px) {
    .layui-container{
        width: 1500px;
    }
}
/*basic END*/
/*页面详情样式*/
/*page-content*/
.page-content{
    color: #4d4d4f;
    font-size: 16px;
    line-height: 1.8;
}
.page-content h1,.page-content h2,.page-content h3,.page-content h4{
    margin-top: 25px;
    position: relative;
    line-height: 160%;
    color: #333;
    margin-bottom: 10px;
}
.page-content h1{
    font-size: 28px;
    margin-bottom: 30px;
}
.page-content h2{
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 30px;
    padding-left: 15px;
}

.page-content h2:after{
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    background: #D93E2E;
    border-radius: 2px;
}
.page-content h3{
    font-size: 22px;
}
.page-content h4{
    font-size: 18px;
}
.page-content h1+h2,
.page-content h1+h3,
.page-content h1+h4,
.page-content h1+h5,
.page-content h1+h6,
.page-content h2+h3,
.page-content h2+h4,
.page-content h2+h5,
.page-content h2+h6,
.page-content h3+h4,
.page-content h3+h5,
.page-content h3+h6,
.page-content h4+h5,
.page-content h4+h6,
.page-content h5+h6{
    margin-top: 0;
}
.page-content>*:nth-child(1) {
    margin-top: 0;
}
.page-content p,.page-content li{
    margin-bottom: 10px;
}
.page-content ul,
.page-content ol{
    padding-left: 18px;
}
.page-content ul,.page-content ul li{
    list-style: disc outside;
}
.page-content ol,.page-content ol li{
    list-style: decimal outside;
}
.page-content img{
    max-width: 100%;
    height: auto!important;
}
.page-content a:not(.more-btn){
    color: inherit;
    text-decoration: underline;
}
.page-content a:hover{
    color: #074F98;
    text-decoration: underline;
}
@media screen and (max-width: 767px) {
    .page-content h1{
        font-size: 24px;
    }
    .page-content h2{
        font-size: 22px;
    }
    .page-content h3{
        font-size: 18px;
    }
    .page-content h4{
        font-size: 16px;
    }
}

/*page-content END


/*more-btn*/
.more-btn ,
a.more-btn {
    display: inline-block;
    line-height: 1.5;
    padding: 10px 28px;
    color: #fff;
    background: #074F98;
    overflow: hidden;
    position: relative;
    border-radius: 0px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 25px;
    margin-top: 30px;
    text-align: center;
}
.more-btn.btn-small ,
a.more-btn.btn-small {
    padding: 6px 18px;
}
.more-btn.btn-small ,
a.more-btn.btn-small{
    border-width: 1px!important;
}
.more-btn:hover,
a.more-btn:hover{
    background-color: #074F98;
    text-decoration: none;
    color: #fff;
}
.more-btn.btn-red,
a.more-btn.btn-red{
    background: #D93E2E;
}
.more-btn.btn-white,
a.more-btn.btn-white{
    background: #fff;
    color: #074F98;
}
.more-btn.border-white,
a.more-btn.border-white{
    background: none;
    border: 1.5px solid rgba(255,255,255,.75);
    color: rgba(255,255,255,.85);
}
.more-btn.border-white:hover,
a.more-btn.border-white:hover{
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,1)
}

.more-btn.border-blue,
a.more-btn.border-blue{
    background: none;
    border: 1.5px solid rgba(7,79,152,.75);
    color: rgba(7,79,152,.85);
}
.more-btn.border-blue:hover,
a.more-btn.border-blue:hover{
    background: rgba(7,79,152,.15);
    color: rgba(7,79,152,1);
}
.more-btn.border-red,
a.more-btn.border-red{
    background: none;
    border: 1.5px solid rgba(217,62,46,.75);
    color: rgba(217,62,46,.85);
}
.more-btn.border-red:hover,
a.more-btn.border-red:hover{
    background: rgba(217,62,46,.15);
    color: rgba(217,62,46,1);
}
.more-btn.border-grey,
a.more-btn.border-grey{
    background: none;
    border: 1.5px solid rgba(155,155,155,.75);
    color: rgba(155,155,155,.85);
    color: #333;
}
.more-btn.border-grey:hover,
a.more-btn.border-grey:hover{
    background: rgba(7,79,152,1);
    border-color: rgba(7,79,152,1);
    color: #fff;
}
.more-btn.btn-disabled,
a.more-btn.btn-disabled{
    background-color: #e9e9eb;
    border-color: #e9e9eb;
    color: #bcbec2;
    cursor: not-allowed;
}


/*more-btn END*/


/*single-link*/
.single-link,
a.single-link{
    display: block;
    /*font-weight: bold;*/
    color: #888;
    font-size: 12px;
    margin-top: 15px;
}
.single-link .iconfont{
    margin-right: 5px;
}
.single-link:hover,
a.single-link:hover{
    color: #074F98;
}
/*single-link END*/


/*blockquote*/
blockquote {
    font-size: inherit;
    background: #f4f5f6;
    padding: 20px;
    margin-bottom: 15px;
    margin-top: 25px;
    border-left: 5px solid #e2e2e2;
}
blockquote>*:last-child{
    margin-bottom: 0;
}
@media screen and (max-width: 767px) {
    blockquote{
        padding: 20px 15px;
    }
}
/*blockquote END*/

/*block-box*/
.block-box{
    background: #f4f5f6;
    padding: 40px 30px;
    margin: 15px 0;
    border: 1px solid #e2e2e2;
}
.block-box .block-title{
    font-size: 20px;
    color: #074F98;
    margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
    .block-box{
        padding: 20px 15px;
    }
}
/*block-box END*/


/*折叠面板*/
.slide-door{
    margin-bottom: 1px;
}
.slide-door .accordion-title{
    color: inherit;
    padding: 15px 50px 15px 15px;
    margin: 0;
    position: relative;
    cursor: pointer;
    font-weight: normal;
    background: #f4f5f6;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    /*font-size: 16px;*/
    color: #333;
}
.slide-door .accordion-title:after{
    content: "\e9cd";
    position: absolute;
    font-family: 'iconfont';
    right: 15px;
    top: 50%;
    margin-top: -10px;
    font-weight: bold;
    font-size: 18px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 18px;
    font-weight: lighter;
    border-radius: 2px;
}

.slide-door.open .accordion-title:after{
    font-family: 'iconfont';
    content: "\e8c3";
}

.slide-door.open .accordion-title,
.slide-door .accordion-title:hover{
    background-color: #074F98;
    color: #fff;
}
.slide-door.open .accordion-title:hover{
    background-color: #074F98;
}

.slide-door .accordion-content{
    padding: 20px 15px;
    display: none;
    background: #f9f9f9;
    border-top: 0;
}
.slide-door .accordion-content>*:last-child{
    margin-bottom: 0;
}

.slide-box .slide-door .accordion-title{
    border-left: 0;
}

.slide-door blockquote{
    background: #f0f0f0;
}
/*slide-door END*/


/*table,*/
table{
    max-width: 100%;
    width: 100%;
    margin: 20px 0;
}
table td{
    padding: 10px 5px;
}
table th>*:last-child, table td>*:last-child {
    margin-bottom: 0;
}


/*media*/
.media{
    margin: 20px 0;
    display: block;
    padding: 20px;
    background: #f4f5f6;
    border-top: 2px solid #074F98;
    border-bottom: 2px solid #074F98;
    position: relative;
}
.media:after{
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    width: 60px;
    height: 3px;
    background: #074F98;
}
.media .media-left .media-img{
    width: 200px;
}
.media .media-body .media-name{
    font-size: 20px;
    color: #333;
    line-height: 1.5;
}
.media .media-body .media-title{
    margin-top: 10px;
}
.media .media-body .media-desc{
    margin-top: 10px;
}
.media .media-body .media-title .iconfont{
    color: #074F98;
    font-weight: bold;
    margin-right: 5px;
}

@media screen and (min-width: 768px) {
    .media{
        display: -webkit-box;
        display: -ms-flexbox;
        display: -moz-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        -webkit-align-items: stretch;
        align-items: stretch;
        justify-content: space-between;
    }
    .media .media-left{
        padding-right: 30px;
    }
    .media .media-body{
        -webkit-flex: 1;
        -moz-flex: 1;
        -ms-flex: 1;
        -o-flex: 1;
        flex: 1;
    }
}
@media screen and (max-width: 767px){
    .media .media-left .media-img{
        width: 140px;
        height: 140px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto;
        margin-bottom: 15px;
    }
    .media .media-left .media-img img{
        width: 100%;
    }
    .media .media-body .media-name,
    .media .media-body .media-title{
        text-align: center;
    }

}
/*media END*/

.page-content .row-flex{
    margin: 12px 0;
}

.red{
    color: red;
}
