/* 通用样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: #c9a961;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
}

ul, ol, li {
    list-style: none;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* 通用按钮 */
.btn {
    display: inline-block;
    padding: 10px 30px;
    font-size: 14px;
    color: #fff;
    background: #c9a961;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    background: #b8954e;
    color: #fff;
}

/* 通用标题 */
.section_title {
    text-align: center;
    margin-bottom: 40px;
}

.section_title h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.section_title p {
    font-size: 14px;
    color: #999;
}

/* 响应式 */
@media (max-width: 1200px) {
    .container {
        width: 96%;
        padding: 0 2%;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 13px;
    }
    
    .section_title h2 {
        font-size: 24px;
    }
}
