body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
/* 头部样式 */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 10px 20px;
}
.home-header-title{
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    /* 主题色 */
    color: #2975DE;
    text-align: center;
}
.logo {
    height: 50px;
}
.search-icon {font-size: 20px;}
.search-icon img{
    width: 24px;
}

.main-body{
    background: linear-gradient(180deg, #FFFFFF 0%, #E4FCFF 36%, #E6F9FB 100%);
}

/* banner */
.home-banner{
    padding: 20px;
}
.home-banner img{
    width: 100%;
    height: 160px;
    border-radius: 12px;
    opacity: 1;
}
/* 功能按钮区样式 */
.function-area {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    gap: 10px;
}
.function-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;

}
.function-button img{
    border-radius: 8PX;
}
.function-button span{
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    color: #131313;
    padding: 6px;
}
/* 信息资讯区样式 */
.info-area {
    padding: 20px;
}
.info-title {
    display: flex;
    align-items: center;
    margin-bottom: 2px;
    font-size: 18px;
    font-weight: bold;
    line-height: normal;
}
.info-title h2 {
    margin: 0;
    font-size: 20px;
    color: #2975DE; /* 深蓝色 */
}
.info-title a {
    text-decoration: none;
    color: #A6B1C0;
    padding-left: 10px;
    font-size: 12px;
    font-weight: bold;
}
.news-item {
    background: linear-gradient(90deg, #FFFFFF 0%, #E3FFE6 100%);
    padding: 14px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    display: flex;

}
.news-item img {
    width: 100%;
    height: 70px;
    margin-bottom: 5px;
    border-radius: 8px;
}
.news-meta{
    flex: 2;
}
.news-meta h3{
    font-size: 13px;
    font-weight: 600;
    line-height: 19px;
    text-transform: uppercase;
    color: #131313;
    margin-bottom: 20px;
}
.news-meta span{
    font-size: 11px;
    font-weight: normal;
    line-height: 16px;
    text-transform: uppercase;
    color: #9C9C9C;
}
.news-img{
    flex: 1;
}
.more{
    text-align: center;

}
.more a{
    font-size: 12px;
    font-weight: normal;
    line-height: normal;
    color: #6D6D6D;
}

.half-item{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}
.half-item-item{
    background: linear-gradient(90deg, #00CAE9 0%, #005DFF 100%);
    padding: 16px;
    border-radius: 8px;
}
.half-item-text{
    flex: 1;
    display: flex;
    align-items: center;
}
.half-item-img{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.half-item-img img{
    height: 48px;
}
.half-item-item h3{
    font-size: 14px;
    font-weight: bold;
    line-height: normal;
    color: #FFFFFF;
}

.half-item-item1{
    border-radius: 8px;
    padding: 12px 34px;
    background-image: url("/storage/images/1433/bg.png");
    background-size: cover; /* 使背景图片覆盖整个元素 */
    background-repeat: no-repeat; /* 禁止背景图片重复 */
    background-position: center; /* 让背景图片在元素中居中显示 */
}
.half-item-text1 h3{
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    color: #FFFFFF;
    margin-bottom: 10px;
}
.half-item-text2 h3{
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    line-height: normal;
    color: #FFFFFF;
}
.half-item-text3 h3{
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    color: #131313;
}

/*// 内页*/
.innner-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 25px 20px;

}
.inner-header-title{
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    color: #131313;
}
.inner-main-body{
    background: linear-gradient(180deg, #FFFFFF 0%, #E4FCFF 36%, #E6F9FB 100%);
}
.cate-header{
    padding: 30px 150px;
    background: linear-gradient(180deg, #E6F9FB 0%, #FFFFFF 100%);
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: normal;
    color: #2975DE;
}
.links-section {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.link-item {
    display: flex;
    align-items: center;
    background-color: #e6f7ff;
    padding: 20px 15px;
    margin-bottom: 10px;
    text-decoration: none;
    color: #000;
}

.icon-placeholder {
    width: 80px;
    height: 80px;
    margin-right: 15px;
}
.icon-placeholder img{
    width: 100%!important;
    height: auto!important;
    padding: 10px;
}

.link-item img {
    width: 20px;
    height: 20px;
    margin-left: auto;
}

/* 文章卡片样式 */
.policy-article {
    background: linear-gradient(90deg, #FFFFFF 0%, #E3FFE6 100%);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.policy-article a{

    display: flex;
}

.policy-article:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* 文章内容区域 */
.policy-article .sub{
    font-size: 11px;
    font-weight: normal;
    line-height: normal;
    color: #6D6D6D;
    margin-bottom: 2px;
    margin-left: 3px;
}
.article-content {
    padding: 16px;
    flex: 2;
}

.article-content p {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    margin-right: 12px;
    flex: 1;

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

.article-content time {
    color: #666;
    font-size: 14px;
    white-space: nowrap;
}

/* 文章图片区域 */
.article-img {
    flex: 1;
    padding: 20px;
    overflow: hidden;
    position: relative;
}

.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 8px;
}

.article-img img:hover {
    transform: scale(1.05);
}

.inner-article h2{
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 0em;
    color: #131313;
}
.inner-time{
    font-size: 11px;
    font-weight: normal;
    line-height: 16px;
    text-transform: uppercase;
    color: #9C9C9C;
    margin-bottom: 10px;
}
.event-article {
    background: linear-gradient(90deg, #FFFFFF 0%, #CCEDFE 100%);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.event-article a{
    width: 100%;
}

.event-article h2 {
    color: #131313;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.event-article img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 5px;
}

.event-meta {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.event-meta img {
    width: 10px;
    height: 10px;
    margin-top: 10px;
}
.detail-content{
    padding-top: 70px;
}
.contact-header{
    padding: 20px;
    background: linear-gradient(180deg, #E6F9FB 0%, #FFFFFF 100%);

    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-text{
    flex: 2;
}
.contact-text p{
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    color: #131313;
}
.contact-text .sub-text{
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    color: #A6B1C0;
}
.contact-text .sub-text1{
    font-size: 12px;
    font-weight: normal;
    line-height: normal;
    color: #6D6D6D;
}
.contact-img{
    flex: 1;
    text-align: center;
}
.consult-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #e0e6ed;
    border-radius: 4px;
    background-color: #f4f9ff;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.form-actions input[type="reset"] {
    background-color: #e0e6ed;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    color: #333;
}

.form-actions input[type="submit"] {
    background-color: #00a5e0;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    color: white;
}
.info-box {
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    padding: 10px;
    margin-top: 10px;
}
.blue-text{
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    color: #003C90;
    padding-top: 40px;
}
.eng{
    font-size: 7px;
font-weight: 600;
line-height: normal;
text-align: center;
color: #A6B1C0;
}
.info-sub-title{
    font-size: 12px;
font-weight: 600;
line-height: normal;
text-transform: uppercase;
color: #A6B1C0;
margin-bottom: 16px;
}
.half-item-text2 img{
    width:38px;
}
.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}
.card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: 80px;
}

.card h3 {
    text-align: center;
    padding: 10px;
    margin: 0;
    font-size: 14px;
}