.about-block .text p strong {
    display: block;
    margin-bottom: 1.5rem;
}

.industry-solutions-block .arrow a.no_data {
    background: rgba(204, 204, 204, 0.72);
}

footer .copyrights a {
    color: rgba(255, 255, 255, 0.5);
}

footer .copyrights a:hover {
    color: #fff;
}

.more span a {
    color: #fff;
}

body h3.white a {
    color: #ffffff
}


/***弹窗****/



.modal-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.layer-msg {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 25px 30px;
    color: white;
    font-size: 14px;
    max-width: 70%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: layerIn 0.3s ease;
    pointer-events: auto;
    transition: all 0.3s ease;
    position: relative;
}

.layer-msg.success {
    background-color: rgba(3, 55, 124, 0.9);
    box-shadow: 0 5px 15px rgba(3, 55, 124, 0.3);
}

.layer-msg.error {
    background-color: rgba(244, 67, 54, 0.9);
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.3);
}

.layer-msg.info {
    background-color: rgba(33, 150, 243, 0.9);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.layer-content {
    padding: 5px 0;
}

.layer-msg p {
    margin: 0;
    line-height: 1.5;
    color: white;
    font-weight: normal;
}


/* 右上角圓形關閉按鈕 */

.layer-close-btn {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 28px;
    height: 28px;
    background-color: #fff;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: #333;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.layer-close-btn:hover {
    background-color: #f5f5f5;
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.layer-close-btn:active {
    transform: scale(0.95);
}


/* 根據彈窗類型設置關閉按鈕顏色 */

.layer-msg.success .layer-close-btn {
    background-color: #fff;
    color: #03377C;
    border-color: #03377C;
}

.layer-msg.error .layer-close-btn {
    background-color: #fff;
    color: #f44336;
    border-color: #f44336;
}

.layer-msg.info .layer-close-btn {
    background-color: #fff;
    color: #2196F3;
    border-color: #2196F3;
}

.layer-msg.success .layer-close-btn:hover {
    background-color: #4CAF50;
    color: white;
}

.layer-msg.error .layer-close-btn:hover {
    background-color: #f44336;
    color: white;
}

.layer-msg.info .layer-close-btn:hover {
    background-color: #2196F3;
    color: white;
}

@keyframes layerIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes layerOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.searchform {
    transition: opacity 0.3s ease, visibility 0.3s ease;
    /* background-color: rgba(0, 0, 0, 0.7); */
    /* 半透明遮罩背景 */
}

.searchform.show {
    opacity: 1;
    visibility: visible;
}

.searchform form .form-group .btn {
    min-width: 100px;
}

#mapContainer {
    width: 100%;      /* 确保有宽度 */
    height: 400px;    /* 确保有高度 */
    min-height: 400px; /* 最小高度 */
    border: 1px solid #ccc;
    position: relative; /* 添加定位 */
}

/**新聞圖集***/
.img_lists {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px; /* 只设置列间距 */
    row-gap: 0; /* 行间距设为0 */
}

.img_lists .img_item {
    width: 100%;
    margin-bottom: 0; /* 确保没有额外的下边距 */
}

.img_lists .img_item .boximg {
    width: 100%;
    border-radius: 0px;
    overflow: hidden;
}

.img_lists .img_item .boximg img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0px;
}

@media (max-width: 767px) {
  .img_lists {
        display: block; /* 或者 flex: column */
        grid-template-columns: 1fr; /* 改为一列 */
    }
    
    .img_lists .img_item {
        width: 100%;
        margin-bottom: 10px; /* 添加下边距分隔 */
    }
    
    .img_lists .img_item:last-child {
        margin-bottom: 0; /* 最后一个不要下边距 */
    }
}

/**招聘**/
.industry-solutions-block .cont,
.industry-solutions-block .detail.cont{
    color: #5C5B5B;
}
.industry-solutions-block h3{

    color:#000;
}
.common_info ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 创建两列 */
    gap: 12px 24px; /* 行间距12px，列间距24px */
    list-style: none; /* 移除默认列表样式 */
    padding: 0;
    margin: 0;
}

.common_info ul li {
    display: flex;
    align-items: center;
    min-height: 30px; /* 设置最小高度保持对齐 */
    padding: 10px 0;
    border-bottom: 1px solid #eee; /* 可选：添加分隔线 */
}

.common_info ul li:last-child:nth-child(odd) {
    /* 如果最后一个项目单独在一行，可以特殊处理 */
    grid-column: span 2; /* 占满整行 */
    
}

/* 标签和内容的样式 */
.common_info ul li {
    
  color: #5C5B5B;
}
.common_info ul li .left{

    padding-right:5px;
    color:#000000;

}
.common_info ul li a {
    margin-left: 8px;
    color: #5C5B5B;
    text-decoration: none;
}

.common_info ul li a:hover {
    color: #000000;
}
/* 响应式设计 - 768px以下变成一行一个 */
@media (max-width: 768px) {
    .common_info ul {
        grid-template-columns: 1fr; /* 改为单列 */
        gap: 8px; /* 调整间距 */
    }
    
    .common_info ul li:last-child:nth-child(odd) {
        grid-column: auto; /* 重置为自动，取消跨列 */
        justify-content: flex-start; /* 恢复左对齐 */
    }
    
    .common_info ul li {
        padding: 8px 0; /* 调整内边距 */
    }
}

.check_list {
    display: flex;
    align-items: center;
        gap: 10px;
}

.check_list button.btn {
    display: inline-block;
    background: #03377C;
    padding: 5px 5px;
    border: none;
    color: #ffffff;
    border-radius: 0;
}

/*******/
.download-res{
    display:none !important;
}
#download-resources{
    display:none;
}

.search_form form  input {
    border: 1px solid #ced4da;
}
.search_form form  .btn {
    background: #DA352D;
    color: #ffffff;
    padding: 1rem;
    border-radius: 0;
    text-transform: uppercase;
}