﻿/* 模板：Www.AdminBuy.Cn */
html,
body,
div,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
form,
input,
textarea,
th,
td,
select {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei";
    font-size: 14px;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

ul,
ol {
    list-style: none;
}

img {
    display: block;
}

a {
    display: block;
    text-decoration: none;
    color: #383836;
}

i {
    font-style: normal;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input,
textarea {
    outline: none;
    border: none;
}

textarea {
    resize: none;
    overflow: auto;
}

.clearfix {
    zoom: 1;
}

.clearfix::after {
    content: "";
    width: 0;
    height: 0;
    visibility: hidden;
    display: block;
    clear: both;
    overflow: hidden;
}

.fl {
    float: left
}

.fr {
    float: right
}

.tl {
    text-align: left;
}

.tc {
    text-align: center
}

.tr {
    text-align: right;
}

button {
    border: 0;
    outline: none;
    background-color: transparent;
}

.flex {
    display: flex;
    align-items: center; 
}

.ellipse {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ellipse_d {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}


.inline {
    display: inline-block;
    display: inline;
    zoom: 1;
}

select {
    border: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    /*在选择框的最右侧中间显示小箭头图片*/
    background: url("../image/arrow.png") no-repeat scroll right center transparent;
    padding-right: 14px;
}



 /* 全局样式重置 + 基础样式 */
        

        /* 报考流程板块 - 前缀custom- */
        .custom-process-section {
            margin: 40px 0;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
        }

        .custom-process-title {
            font-size: 26px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #2c3e50;
            border-bottom: 2px solid #3498db;
            padding-bottom: 10px;
        }

        .custom-process-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap; margin-top:30px;
            gap: 15px;
            justify-content: center;
        }

        .custom-process-item {
            flex: 1;
            min-width: 180px;
            max-width: 220px;
            padding: 15px;
            background-color: #fff;
            border-radius: 6px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            text-align: center;
            position: relative;font-size:18px;line-height:2;
        }

        /* 流程箭头（移动端小于768px隐藏箭头） */
        .custom-process-item::after {
            content: "→";
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            color: #3498db;
            font-size: 20px;
            font-weight: bold;
        }

        .custom-process-item:last-child::after {
            display: none;
        }

        .custom-process-step {
            font-size: 40px;
            font-weight: bold;
            color: #3498db;
            margin-bottom: 8px; 
        }

        /* 关于我们板块 - 前缀custom- */
        .custom-about-section {
            margin: 40px 0;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
        }
     
        .custom-about-title {
            font-size: 26px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #2c3e50;
            border-bottom: 2px solid #3498db;
            padding-bottom: 10px;
        }

        .custom-about-container {
            display: flex;
            flex-wrap: wrap; margin-top:30px;
            gap: 20px;
            align-items: center;
        }

        .custom-about-img {
            flex: 1;
            min-width: 280px;
            max-width: 600px;
        }

        .custom-about-img img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            object-fit: cover;
        }

        .custom-about-text {
            flex: 2;
            min-width: 280px;
            padding: 10px;
        }

        .custom-about-text p {
            margin-bottom: 15px;
            font-size: 16px;
            color: #555;
        }

        /* 移动端适配（768px以下） */
        @media (max-width: 768px) {
            .custom-process-item {
                min-width: 100%;
                max-width: 100%;
            }

            .custom-process-item::after {
                display: none;
            }

            .custom-about-container {
                flex-direction: column;
            }

            .custom-process-title, .custom-about-title {
                font-size: 20px;
            }

            .custom-about-text p {
                font-size: 14px;
            }
        }